@charset "UTF-8";
@keyframes pulsation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1.04);
  }
}

@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  16.6% {
    transform: translate(0, -20px);
    animation-timing-function: ease-in;
  }
  33.3% {
    transform: translate(0, 0);
  }
  49.8% {
    transform: translate(0, -14px);
    animation-timing-function: ease-in;
  }
  66.4% {
    transform: translate(0, 0);
  }
  83% {
    transform: translate(0, -4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate(0, 0);
  }
}

.leftin {
  font-size: 40px;
  opacity: 0;
  animation-name: leftIn;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

@keyframes leftIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.action {
  animation: pulsation .7s alternate infinite;
}

.adjust_color-b {
  color: #32AEC2;
}

body#about {
  display: none;
}

body#service {
  display: none;
}

h2 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 400;
  margin: 0 0 40px;
  color: #545D5E;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 580px) {
  h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}

h4 {
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 580px) {
  h4 {
    font-size: 1rem;
    text-align: left;
  }
}

h5 {
  font-size: 1.3rem;
  margin: 15px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

button,
header {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

button {
  font-family: 'Noto Sans JP', sans-serif;
}

nav a,
h2,
h3,
h4,
button {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
  color: #545D5E;
}

.adjust-margin-b {
  margin-bottom: 60px;
}

@media (max-width: 580px) {
  .adjust-margin-b {
    margin-bottom: 30px;
  }
}

.area_contact {
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .area_contact {
    margin-bottom: 80px;
  }
}

@media (max-width: 580px) {
  .area_contact {
    margin-bottom: 60px;
  }
}

.area_contact a {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  font-family: 'Noto Sans JP', sans-serif;
  padding: 15px 40px;
  background-color: #FFC31F;
  border-radius: 45px;
  color: #fff;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .area_contact a {
    font-size: 1.5rem;
  }
}

@media (max-width: 580px) {
  .area_contact a {
    font-size: 1rem;
  }
}

.area_sns {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

@media (max-width: 580px) {
  .area_sns {
    margin-bottom: 30px;
  }
}

.area_sns .wrap-sns {
  width: 60px;
}

.area_sns .wrap-sns:nth-of-type(2) {
  margin: 0 25px;
}

.area_sns .wrap-sns:hover {
  opacity: 0.7;
  transition: 1s;
}

header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  z-index: 1;
}

header .header_wrap {
  display: flex;
  margin: 0 auto;
  height: 90px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 580px) {
  header .header_wrap {
    height: 50px;
  }
}

header .header_wrap .area_logo {
  width: 15%;
}

@media (max-width: 580px) {
  header .header_wrap .area_logo {
    width: 30%;
  }
}

header .header_wrap nav.pc-nav {
  width: 70%;
  height: 100%;
}

@media (max-width: 580px) {
  header .header_wrap nav.pc-nav {
    display: none;
  }
}

header .header_wrap nav.pc-nav ul {
  display: flex;
  padding: 0;
  justify-content: end;
  position: relative;
  margin: 0;
  height: 100%;
  align-items: center;
}

header .header_wrap nav.pc-nav ul li {
  font-size: 1.5rem;
  margin-left: 30px;
  height: 100%;
  position: relative;
}

@media (max-width: 768px) {
  header .header_wrap nav.pc-nav ul li {
    font-size: 1rem;
  }
}

header .header_wrap nav.pc-nav ul li a {
  z-index: auto;
  height: 100%;
  display: block;
  line-height: 90px;
  transition: .5s;
}

header .header_wrap nav.pc-nav ul li a:hover {
  opacity: 0.6;
}

header .header_wrap nav.pc-nav ul li.contact a {
  color: #fff;
  padding-left: 40px;
  padding-right: 30px;
}

header .header_wrap nav.pc-nav ul li.contact a::before {
  content: '';
  background-color: #FB9787;
  position: absolute;
  top: 58%;
  right: -72px;
  width: 145px;
  height: 71px;
  transform: translate(-50%, -50%) skewX(-45deg);
  z-index: -2;
}

@media (max-width: 768px) {
  header .header_wrap nav.pc-nav ul li.contact a::before {
    width: 125px;
    height: 50px;
  }
}

header .header_wrap nav.pc-nav ul li.contact a::after {
  content: '';
  background-color: #FFC31F;
  position: absolute;
  top: 50%;
  right: -70px;
  width: 145px;
  height: 70px;
  transform: translate(-50%, -50%) skewX(-45deg);
  z-index: -1;
}

@media (max-width: 768px) {
  header .header_wrap nav.pc-nav ul li.contact a::after {
    width: 125px;
    height: 50px;
  }
}

@media (max-width: 580px) {
  header .header_wrap nav.pc-nav ul li {
    font-size: 1vw;
  }
}

header .header_wrap nav.pc-nav ul li:last-of-type {
  margin-right: 0;
}

header .header_wrap .area_sp-nav {
  display: none;
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav {
    display: block;
  }
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav .btn-gnavi {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 5;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  header .header_wrap .area_sp-nav .btn-gnavi.open {
    transform: rotate(180deg);
  }
  header .header_wrap .area_sp-nav .btn-gnavi.open span {
    background-color: #fff;
  }
  header .header_wrap .area_sp-nav .btn-gnavi span {
    position: absolute;
    width: 25px;
    height: 3px;
    background: #545D5E;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
}

@media (max-width: 580px) and (max-width: 580px) {
  header .header_wrap .area_sp-nav .btn-gnavi span:nth-child(1) {
    top: 0;
  }
}

@media (max-width: 580px) and (max-width: 580px) {
  header .header_wrap .area_sp-nav .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
}

@media (max-width: 580px) and (max-width: 580px) {
  header .header_wrap .area_sp-nav .btn-gnavi span:nth-child(3) {
    top: 20px;
  }
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav .sp-nav {
    top: 0;
    position: fixed;
    width: 300px;
    right: -300px;
    height: 100%;
    background-color: rgba(84, 93, 94, 0.97);
    z-index: 3;
    padding-top: 80px;
  }
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav .sp-nav ul {
    display: block;
    padding: 0;
  }
}

header .header_wrap .area_sp-nav .sp-nav ul li {
  position: relative;
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav .sp-nav ul li {
    font-size: 1.8rem;
    padding: 8px 10px;
  }
}

header .header_wrap .area_sp-nav .sp-nav ul li a {
  color: #fff;
}

@media (max-width: 580px) {
  header .header_wrap .area_sp-nav .sp-nav ul li a {
    display: block;
    position: relative;
  }
  header .header_wrap .area_sp-nav .sp-nav ul li a i.fas {
    font-weight: 600;
    position: absolute;
    font-size: large;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  header .header_wrap .area_sp-nav .sp-nav ul li a span.form {
    font-size: small;
  }
}

.area_mv {
  width: 100%;
  height: 700px;
  position: relative;
  background: url(../img/main_mv.png);
  background-size: cover;
  background-position: bottom;
  margin-bottom: 60px;
}

@media (min-width: 1500px) {
  .area_mv {
    max-width: 1600px;
    margin: 0 auto 60px;
  }
}

@media (max-width: 1024px) {
  .area_mv {
    width: 1024px;
    margin: 0 auto 60px;
  }
}

@media (max-width: 768px) {
  .area_mv {
    background-position: bottom right;
    height: 550px;
    margin-bottom: 60px;
    width: 100%;
  }
}

@media (max-width: 580px) {
  .area_mv {
    height: 350px;
    margin-bottom: 20px;
  }
}

.area_mv .area_catch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
}

@media (max-width: 768px) {
  .area_mv .area_catch {
    top: 38%;
    left: 3%;
  }
}

@media (max-width: 580px) {
  .area_mv .area_catch {
    top: 24%;
    left: 1%;
  }
}

.area_mv .area_catch h1 {
  font-family: 'Merriweather', 'Noto Serif JP', serif;
  font-size: 4vw;
  text-align: right;
  color: #545D5E;
  line-height: 1.4;
}

@media (min-width: 1200px) {
  .area_mv .area_catch h1 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .area_mv .area_catch h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .area_mv .area_catch h1 {
    font-size: 3.2vw;
  }
}

@media (max-width: 580px) {
  .area_mv .area_catch h1 {
    font-size: 4vw;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .contents-wrapper {
    width: 1024px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contents-wrapper {
    width: 100%;
  }
}

.contents-wrapper main .area_about {
  background: url(../img/about_back.png) no-repeat;
  background-size: 200% 110%;
  background-position: center bottom 80%;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about {
    margin-bottom: 120px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about {
    background-position: center bottom 140%;
    height: 300px;
    background-size: 200% 110%;
    background-position: center bottom 80%;
    margin-bottom: 60px;
  }
}

.contents-wrapper main .area_about .area_about-wrap {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap {
    padding: 0 8px;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_img {
  width: 30%;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_img {
    width: 25%;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_text {
  width: 70%;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text {
    width: 75%;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text {
    padding-left: 1%;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_text h3 {
  font-size: 2rem;
  color: #545D5E;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text h3 {
    font-size: 1.3rem;
    margin-top: 0;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text h3 {
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_text p {
  font-size: 1.3rem;
  color: #545D5E;
  line-height: 1.4;
  letter-spacing: 1px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text p {
    font-size: 1rem;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text p {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  .contents-wrapper main .area_about .area_about-wrap .area_text p {
    font-size: 0.785rem;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_button {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button {
    bottom: 5%;
  }
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button {
    bottom: -5%;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button {
    bottom: -40px;
  }
}

.contents-wrapper main .area_about .area_about-wrap .area_button a {
  display: block;
}

.contents-wrapper main .area_about .area_about-wrap .area_button a button {
  padding: 15px 25px;
  border-radius: 45px;
  border: none;
  background-color: #FFA698;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
}

.contents-wrapper main .area_about .area_about-wrap .area_button a button:hover {
  animation: bounce 0.9s ease-out;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button a button {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button a button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 360px) {
  .contents-wrapper main .area_about .area_about-wrap .area_button a button {
    font-size: 0.8rem;
  }
}

.contents-wrapper main .area_banner {
  width: 640px;
  margin: 0 auto 80px;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_banner {
    width: 100%;
    padding: 0 8px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_banner {
    margin-bottom: 55px;
  }
}

.contents-wrapper main .area_banner a {
  transition: 1s;
}

.contents-wrapper main .area_banner a:hover {
  opacity: 0.5;
}

.contents-wrapper main .area_service {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_service {
    margin-bottom: 60px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service {
    margin-bottom: 75px;
  }
}

.contents-wrapper main .area_service .area_service-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap h4 {
    padding: 0 8px;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents {
  background-color: #FFA698;
  padding: 30px 8px;
  border-radius: 4px;
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-left: 0;
  margin: 0;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul {
    display: block;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li {
  width: 30%;
  background-color: #ffcdc5;
  color: #545D5E;
  border-radius: 5px;
  padding-top: 15px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li {
    width: 100%;
    display: flex;
    padding: 0 8px;
    margin-bottom: 25px;
    border-radius: 0;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li .img_wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li .img_wrap {
    margin: auto;
    width: 20%;
    height: auto;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li .img_wrap img {
  border-radius: 5px;
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  text-align: left;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li p {
    font-size: 1rem;
    margin-top: 0;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li p {
    padding: 0;
    font-size: 0.87rem;
    margin: 0 0 8%;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li .text_wrap {
  text-align: center;
  padding: 0 15px 25px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li .text_wrap {
    padding: 0 0 3% 2%;
    width: 75%;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents ul li .text_wrap h5 {
  font-size: 1.3rem;
  margin: 15px 0;
  font-family: 'Noto Sans JP', sans-serif;
  border-bottom: 3px solid #fff;
  display: block;
  padding-bottom: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li .text_wrap h5 {
    font-size: 1.125rem;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents ul li .text_wrap h5 {
    margin: 4% 0;
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more {
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more {
    padding-top: 5px;
  }
}

.contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more button {
  padding: 15px 65px;
  border-radius: 45px;
  border: none;
  background-color: #10F3ED;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: .6s;
}

.contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more button:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more button {
    font-size: 1.125rem;
    padding: 10px 45px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_service .area_service-wrap .area_contents div.area_more button {
    font-size: 1rem;
  }
}

.contents-wrapper main .area_schedule {
  background-size: 200% 110%;
  background-position: center bottom 80%;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule {
    margin-bottom: 60px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule {
    background-position: center bottom 140%;
    background-size: 200% 110%;
    background-position: center bottom 80%;
    margin-bottom: 75px;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap {
    padding: 0 8px;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp {
  width: 100%;
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp ul {
  padding: 0;
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp ul li {
  margin-bottom: 20px;
  transition: 1s;
  border-bottom: 1px dotted #7e8586;
  padding-bottom: 15px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp ul li {
    margin-bottom: 15px;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp ul li:hover {
  opacity: .6;
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp ul li:hover .area_thumbnail-wp img {
  transform: scale(1.1);
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap {
  transition: 0.8s;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap {
    display: block;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_thumbnail-wp {
  overflow: hidden;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_thumbnail-wp {
    padding: 0 60px 15px;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_thumbnail-wp img {
  border-radius: 10px;
  transition: 0.8s;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_thumbnail-wp img {
    width: 100% !important;
    height: auto !important;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #545D5E;
  transition: 0.8s;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info {
    width: 70%;
    margin-left: 2%;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info {
    width: 100%;
    display: block;
    margin: 0;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .date {
  width: 14%;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .date {
    width: 100%;
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .titleWrap {
  margin: 8px 0;
  width: 31%;
  text-align: center;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .titleWrap {
    width: 100%;
    text-align: left;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .titleWrap .title {
  font-weight: bold;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .titleWrap .title {
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .text {
  width: 36%;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .text {
    width: 100%;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .text p {
  margin: 12px 0;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .text p {
    font-size: 1rem;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .text p {
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .button_info {
  width: 14%;
  text-align: right;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .button_info {
    padding: 0 8px;
    width: 100%;
    font-size: 1rem;
  }
}

.contents-wrapper main .area_schedule .area_schedule-wrap #area_wp .wp-wrap .area_info .button_info span {
  display: inline-block;
  transition: 0.8s;
}

.contents-wrapper main .area_schedule .area_schedule-wrap .area_button {
  text-align: center;
}

.contents-wrapper main .area_schedule .area_schedule-wrap .area_button a {
  display: block;
}

.contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button {
  padding: 15px 25px;
  border-radius: 45px;
  border: none;
  background-color: #FFA698;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: .6s;
}

.contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button {
    font-size: 1.1rem;
    padding: 10px 14px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button {
    font-size: 1rem;
    padding: 10px 14px;
  }
}

@media (max-width: 360px) {
  .contents-wrapper main .area_schedule .area_schedule-wrap .area_button a button {
    font-size: 0.8rem;
  }
}

.contents-wrapper main .area_information {
  background: url(../img/about_back.png) no-repeat;
  background-size: 200% 110%;
  background-position: center bottom 80%;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information {
    margin-bottom: 60px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information {
    background-position: center bottom 140%;
    background-size: 200% 110%;
    background-position: center bottom 80%;
    margin-bottom: 75px;
  }
}

.contents-wrapper main .area_information .area_information-wrap {
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information .area_information-wrap {
    padding: 0 8px;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp {
  width: 100%;
}

.contents-wrapper main .area_information .area_information-wrap #area_wp ul {
  padding: 0;
}

.contents-wrapper main .area_information .area_information-wrap #area_wp ul li {
  margin-bottom: 20px;
  transition: 1s;
  border-bottom: 1px dotted #7e8586;
  padding-bottom: 15px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp ul li {
    margin-bottom: 15px;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp ul li:hover {
  opacity: .6;
}

.contents-wrapper main .area_information .area_information-wrap #area_wp ul li:hover .area_thumbnail-wp img {
  transform: scale(1.1);
}

.contents-wrapper main .area_information .area_information-wrap #area_wp ul li:hover .button_info span {
  transform: scale(1.1);
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap {
  display: flex;
  justify-content: space-between;
  transition: 0.8s;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap {
    display: block;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_thumbnail-wp {
  overflow: hidden;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_thumbnail-wp {
    padding: 0 60px 15px;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_thumbnail-wp img {
  border-radius: 10px;
  transition: 0.8s;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_thumbnail-wp img {
    width: 100% !important;
    height: auto !important;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info {
  width: 700px;
  color: #545D5E;
  transition: 0.8s;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info {
    width: 70%;
    margin-left: 2%;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info {
    width: 100%;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .titleWrap {
  margin: 8px 0;
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .titleWrap .title {
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .titleWrap .title {
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .text p {
  font-size: 1.125rem;
  margin: 12px 0;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .text p {
    font-size: 1rem;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .text p {
    font-size: 0.9rem;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .button_info {
  text-align: right;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .button_info {
    padding: 0 8px;
    font-size: 0.975rem;
  }
}

.contents-wrapper main .area_information .area_information-wrap #area_wp .wp-wrap .area_info .button_info span {
  display: inline-block;
  transition: 0.8s;
}

.contents-wrapper main .area_information .area_information-wrap .area_button {
  text-align: center;
}

.contents-wrapper main .area_information .area_information-wrap .area_button a {
  display: block;
}

.contents-wrapper main .area_information .area_information-wrap .area_button a button {
  padding: 15px 25px;
  border-radius: 45px;
  border: none;
  background-color: #FFA698;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: .6s;
}

.contents-wrapper main .area_information .area_information-wrap .area_button a button:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_information .area_information-wrap .area_button a button {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_information .area_information-wrap .area_button a button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 360px) {
  .contents-wrapper main .area_information .area_information-wrap .area_button a button {
    font-size: 0.8rem;
  }
}

.contents-wrapper main .area_address h2 {
  font-size: 2.2rem;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_address h2 {
    font-size: 1.7rem;
    line-height: 1;
  }
}

.contents-wrapper main .area_address h2 span {
  font-size: 1.5rem;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_address h2 span {
    font-size: 1.2rem;
  }
}

.contents-wrapper main .area_address table {
  margin: 0 auto 60px;
}

@media (max-width: 580px) {
  .contents-wrapper main .area_address table {
    margin-bottom: 10%;
  }
}

.contents-wrapper main .area_address table tr {
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 768px) {
  .contents-wrapper main .area_address table tr {
    font-size: 1.5rem;
  }
}

@media (max-width: 580px) {
  .contents-wrapper main .area_address table tr {
    font-size: 1rem;
  }
}

.contents-wrapper main .area_address table tr th {
  text-align: left;
  vertical-align: baseline;
}

.contents-wrapper main .area_address table tr th,
.contents-wrapper main .area_address table tr td {
  color: #545D5E;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

.contents-wrapper footer {
  background: url(../img/footer_back.png) no-repeat;
  background-size: cover;
  background-position: center;
  height: 80px;
  width: 100%;
}

@media (max-width: 768px) {
  .contents-wrapper footer {
    height: 60px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper footer {
    height: 40px;
  }
}

.contents-wrapper footer p {
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  line-height: 80px;
}

@media (max-width: 768px) {
  .contents-wrapper footer p {
    position: static;
    transform: none;
    font-size: 1rem;
    text-align: center;
    line-height: 60px;
  }
}

@media (max-width: 580px) {
  .contents-wrapper footer p {
    font-size: 0.9rem;
    line-height: 40px;
  }
}

#about .area_mv {
  background: url(../img/about_mv.png) no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 700px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  #about .area_mv {
    background-position: bottom right -185px;
  }
}

@media (max-width: 580px) {
  #about .area_mv {
    height: 350px;
    background-position: bottom 0 right -80px;
    margin-bottom: 20px;
  }
}

#about .area_mv h2 {
  padding-top: 120px;
}

@media (max-width: 580px) {
  #about .area_mv h2 {
    padding-top: 65px;
  }
}

#about .area_mv .area_catch {
  width: 50%;
  left: 7%;
  padding: 5px 20px;
  top: 63%;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  #about .area_mv .area_catch {
    left: 3%;
  }
}

@media (max-width: 580px) {
  #about .area_mv .area_catch {
    top: 55%;
    padding: 5px;
    left: 6%;
  }
}

#about .area_mv .area_catch h1 {
  text-align: left;
  margin: 2% 0;
  position: relative;
  font-size: 42px;
}

@media (max-width: 768px) {
  #about .area_mv .area_catch h1 {
    font-size: 3.5vw;
  }
}

@media (max-width: 580px) {
  #about .area_mv .area_catch h1 {
    font-size: 4vw;
  }
}

#about .area_mv .area_catch h1::after {
  content: '';
  width: 85px;
  height: 1px;
  background-color: #545D5E;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 6px;
}

@media (max-width: 580px) {
  #about .area_mv .area_catch h1::after {
    width: 15%;
    margin-left: 3px;
  }
}

#about .area_mv .area_catch .text {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #545D5E;
}

@media (max-width: 580px) {
  #about .area_mv .area_catch .text {
    display: none;
  }
}

#about .area_mv .area_catch .text p {
  margin: 8px 0;
}

@media (max-width: 580px) {
  #about .area_mv .area_catch .text p {
    display: none;
  }
}

#about .area_mv .area_catch .text dl {
  margin: 8px 0;
}

@media (max-width: 580px) {
  #about .area_mv .area_catch .text dl {
    line-height: 1.2;
    margin: 0;
  }
}

@media (max-width: 580px) {
  #about .area_mv .area_catch .text dl dt,
  #about .area_mv .area_catch .text dl dd {
    font-size: 0.85rem;
  }
}

#about .area_mv .area_catch .text dl dt.about_title {
  font-weight: 600;
  border-bottom: 1px dotted;
}

#about .area_mv .area_catch .text dl dd {
  margin: 0;
}

#about .contents-wrapper .area_catch-sp {
  display: none;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_catch-sp {
    display: block;
    padding: 0 8px;
    margin-bottom: 40px;
  }
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_catch-sp p {
    line-height: 1.4;
    font-size: 0.875rem;
  }
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_catch-sp dd {
    margin: 0;
    font-size: 0.875rem;
  }
}

#about .contents-wrapper .area_message {
  width: 1024px;
  margin: 0 auto 120px;
  text-align: center;
}

@media (max-width: 768px) {
  #about .contents-wrapper .area_message {
    width: 100%;
    padding: 0 8px;
  }
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_message {
    margin-bottom: 40px;
  }
}

#about .contents-wrapper .area_message h2 {
  font-size: 2.5rem;
  border-left: 15px solid #FFA698;
  padding-left: 9px;
  display: inline-block;
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_message h2 {
    font-size: 1.5rem;
  }
}

#about .contents-wrapper .area_message .area_message-wrap {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #about .contents-wrapper .area_message .area_message-wrap {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #about .contents-wrapper .area_message .area_message-wrap .area_contents iframe {
    width: 100%;
  }
}

@media (max-width: 580px) {
  #about .contents-wrapper .area_message .area_message-wrap .area_contents iframe {
    width: 100%;
    height: 250px;
  }
}

#service .area_mv {
  background: url(../img/service_mv.png) no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  #service .area_mv {
    background-position: -140px;
  }
}

@media (max-width: 580px) {
  #service .area_mv {
    background-position: bottom left -90px;
  }
}

#service .area_mv .area_catch {
  width: 50%;
  left: auto;
  right: 7%;
  padding: 5px 20px;
  top: 60%;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  #service .area_mv .area_catch {
    right: 3%;
  }
}

@media (max-width: 580px) {
  #service .area_mv .area_catch {
    top: 55%;
    padding: 5px;
    left: auto;
    right: 3%;
  }
}

#service .area_mv .area_catch h1 {
  text-align: left;
  margin: 3% 0;
  position: relative;
  font-size: 42px;
}

@media (max-width: 768px) {
  #service .area_mv .area_catch h1 {
    font-size: 3.5vw;
  }
}

@media (max-width: 580px) {
  #service .area_mv .area_catch h1 {
    font-size: 4vw;
  }
}

#service .area_mv .area_catch h1::after {
  content: '';
  width: 85px;
  height: 1px;
  background-color: #545D5E;
  position: absolute;
  top: 76%;
  transform: translateY(-50%);
  margin-left: 6px;
}

@media (max-width: 580px) {
  #service .area_mv .area_catch h1::after {
    width: 15%;
    margin-left: 3px;
  }
}

#service .area_mv .area_catch .text {
  font-size: 1.125rem;
  line-height: 1.6;
}

#service .area_mv .area_catch .text p {
  margin: 8px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #545D5E;
}

@media (max-width: 580px) {
  #service .area_mv .area_catch .text p {
    display: none;
  }
}

#service .area_mv h2 {
  padding-top: 120px;
}

@media (max-width: 580px) {
  #service .area_mv h2 {
    padding-top: 65px;
  }
}

#service .contents-wrapper .area_catch-sp {
  display: none;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_catch-sp {
    display: block;
    padding: 0 8px;
    margin-bottom: 40px;
  }
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_catch-sp p {
    line-height: 1.4;
    font-size: 0.875rem;
  }
}

#service .contents-wrapper .area_about {
  background: unset;
  max-width: 1024px;
  margin: 0 auto 80px;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about {
    margin-bottom: 40px;
    height: auto;
  }
}

#service .contents-wrapper .area_about.adjust-margin-b {
  margin: 0 auto 120px;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about.adjust-margin-b {
    margin-bottom: 60px;
  }
}

#service .contents-wrapper .area_about .area_about-wrap .area_text {
  width: 100%;
  background-color: #ffe0db;
  border-radius: 5px;
  padding: 25px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about .area_about-wrap .area_text {
    padding: 15px;
  }
}

#service .contents-wrapper .area_about .area_about-wrap .area_text h3 {
  margin-top: 0;
  text-shadow: unset;
}

#service .contents-wrapper .area_about .area_about-wrap .area_text dl {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #545D5E;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about .area_about-wrap .area_text dl {
    font-size: 1rem;
  }
}

#service .contents-wrapper .area_about .area_about-wrap .area_text dl dt {
  margin-bottom: 25px;
  border-bottom: 2px dotted;
  padding-bottom: 12px;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about .area_about-wrap .area_text dl dt {
    margin-bottom: 15px;
  }
}

#service .contents-wrapper .area_about .area_about-wrap .area_text dl dd {
  margin: 0;
}

#service .contents-wrapper .area_about div.title-wrap {
  text-align: center;
}

#service .contents-wrapper .area_about div.title-wrap h2 {
  font-size: 2.5rem;
  display: inline-block;
}

@media (max-width: 580px) {
  #service .contents-wrapper .area_about div.title-wrap h2 {
    font-size: 1rem;
  }
}

#page_top {
  width: 70px;
  height: 70px;
  position: fixed;
  right: -70px;
  bottom: 90px;
  background: #FFA698;
  /* opacity: 0.6; */
  border-radius: 50%;
}

@media (max-width: 580px) {
  #page_top {
    width: 50px;
    height: 50px;
    right: 10px !important;
    bottom: 40px;
  }
}

#page_top a {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
}

@media (max-width: 580px) {
  #page_top a {
    width: 50px;
    height: 50px;
  }
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.active.change {
  color: #32AEC2;
}

.active.change::before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #32AEC2;
  position: absolute;
  bottom: 20px;
  border-radius: 15px;
}

@media (max-width: 580px) {
  .active.change::before {
    width: 100%;
    bottom: -5px;
    height: 3px;
  }
}

.area_fadein-logo {
  width: 100vw;
  height: 100vh;
  transition: all 2s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.area_fadein-logo.adjust_op {
  opacity: 0;
  visibility: hidden;
}

.fadein-logo {
  width: 100vw;
  height: 100vh;
  transition: all 2s;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  width: 15%;
  transform: translate(-50%, -50%);
  position: relative;
  top: 50%;
  left: 50%;
}

.fadein-logo.adjust_op {
  opacity: 1;
  visibility: visible;
}

.heading12 {
  position: relative;
  font-size: 26px;
}

.heading12::before {
  content: attr(data-number);
  display: inline-block;
  margin-right: 20px;
  color: #FFA698;
  font-size: 3rem;
  border-bottom: 1px solid #FFA698;
}

@media (max-width: 580px) {
  .heading12::before {
    font-size: 1.4rem;
    margin-right: 8px;
  }
}

/*========= スクロールダウンのためのCSS ===============*/
/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 2s ease-in-out infinite;
}

@media (max-width: 580px) {
  .scrolldown4 {
    right: 20px;
  }
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}

/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #707070;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 2px;
  height: 20px;
  background: #707070;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 2px;
  height: 50px;
  background: #707070;
}

/*# sourceMappingURL=map/style.css.map */
