@charset "UTF-8";
/* 文字コードの指定 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
body {
  font-size: 1.6rem;
  color: #2c49a7;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  background: #fcf5e2;
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

.flex {
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* コンテンツ幅 */
.content-width {
  max-width: 102.4rem;
  margin: 0 auto;
}

/* アニメーション */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.3s;
}

.delay-time03 {
  animation-delay: 0.6s;
}

.delay-time04 {
  animation-delay: 0.9s;
}

/* セクションタイトル */
.section-ttl {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-ttl {
    text-align: center;
    font-size: 2rem;
  }
}

.section-ttl--en {
  color: #5d945b;
  font-size: 2rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 3.6rem;
}
@media (max-width: 767px) {
  .section-ttl--en {
    font-size: 1.8rem;
  }
}

/* ロゴ共通 */
.logo-wrap {
  text-align: center;
  margin-top: 5rem;
}
.logo-wrap .logo {
  width: 42.8rem;
}
@media (max-width: 767px) {
  .logo-wrap .logo {
    width: 100%;
    max-width: 24.4rem;
  }
}
.logo-wrap p {
  font-size: 2rem;
  color: #502922;
  margin-top: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

/* 上ロゴ */
.logo-top .logo-name {
  font-size: 3rem;
  color: #502922;
  margin-top: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .logo-top .logo-name {
    font-size: 2rem;
  }
}

/* 下ロゴ */
.logo-bottom {
  padding: 0 0 10rem;
}

/* 追従ナビ */
.nav_button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
}
.nav_button ul {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  .nav_button ul {
    gap: 0.5rem;
  }
}
.nav_button ul li {
  width: 33.3333333333%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .nav_button ul li {
    font-size: 1.4rem;
  }
}
.nav_button ul li a {
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .nav_button ul li a {
    padding: 0.5rem 0;
  }
}
.nav_button ul li .button_tel {
  background: #e84949;
}
.nav_button ul li .button_mail {
  background: #5d945b;
}
.nav_button ul li .button_blog {
  background: #2c49a7;
}
.nav_button ul li i {
  margin-right: 1rem;
}

.mv {
  padding: 11rem 0 6rem;
  position: relative;
  margin-top: 5rem;
  /* サイトタイトル */
}
@media (max-width: 767px) {
  .mv {
    padding: 7rem 0 0;
  }
}
.mv::before {
  position: absolute;
  content: "";
  background-image: url(../images/bird-flag.png);
  background-size: contain;
  width: 25.3rem;
  height: 19.1rem;
  top: 5rem;
  left: 0;
}
@media (max-width: 767px) {
  .mv::before {
    width: 11.2rem;
    height: 8.5rem;
    top: 0;
  }
}
.mv .curve_txt {
  width: 40.8rem;
  margin: 3rem auto;
  position: relative;
}
@media (max-width: 767px) {
  .mv .curve_txt {
    width: 26.3rem;
    margin: 3rem auto 1rem;
  }
}
.mv .curve_txt::after {
  position: absolute;
  content: "";
  background-image: url(../images/free.svg);
  background-size: contain;
  width: 12.5rem;
  height: 11.8rem;
  top: 1rem;
  right: -17rem;
}
@media (max-width: 767px) {
  .mv .curve_txt::after {
    width: 8.6rem;
    height: 8.1rem;
    top: -8rem;
    right: -4rem;
  }
}
.mv .title {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .mv .title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.mv .top-txt {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .mv .top-txt {
    font-size: 2.4rem;
  }
}
.mv .top-txt::before {
  position: absolute;
  content: "";
  background-image: url(../images/leaf.png);
  background-size: contain;
  width: 58.1rem;
  height: 7.6rem;
  top: 0;
  left: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 767px) {
  .mv .top-txt::before {
    width: 25.9rem;
    height: 3.4rem;
    top: 2rem;
  }
}

.about {
  padding: 6rem 0 0;
}
@media (max-width: 767px) {
  .about {
    padding: 6rem 1.5rem 9rem;
  }
}
.about .about__list li {
  margin-bottom: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .about .about__list li {
    margin-bottom: 6rem;
  }
}
.about .about__list li:nth-child(1) .img-circle {
  width: 100%;
  max-width: 17.6rem;
  margin-right: 4%;
}
@media (max-width: 767px) {
  .about .about__list li:nth-child(1) .img-circle {
    margin-right: 0;
    width: 9.6rem;
    margin-bottom: 2rem;
  }
}
.about .about__list li:nth-child(1) .flag-r {
  width: 100%;
  max-width: 23.4rem;
}
@media (max-width: 767px) {
  .about .about__list li:nth-child(1) .flag-r {
    display: none;
  }
}
.about .about__list li:nth-child(2) {
  margin-left: 3%;
}
@media (max-width: 767px) {
  .about .about__list li:nth-child(2) {
    margin-left: 0;
  }
}
.about .about__list li:nth-child(2) .img-circle {
  width: 100%;
  max-width: 17.3rem;
  margin-left: 2%;
}
@media (max-width: 767px) {
  .about .about__list li:nth-child(2) .img-circle {
    width: 9.6rem;
    margin-left: 0;
    margin-top: 3rem;
  }
}
.about .about__list li:nth-child(2) .flag-l {
  width: 100%;
  max-width: 20.9rem;
  margin-right: 2%;
}
@media (max-width: 767px) {
  .about .about__list li:nth-child(2) .flag-l {
    display: none;
  }
}
.about .bottom-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin-top: 10rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .about .bottom-txt {
    margin-top: 6rem;
    text-align: center;
    font-size: 2rem;
  }
}

.active {
  padding: 35rem 2rem 40rem;
  background: #fff;
  position: relative;
}
@media (min-width: 1921px) {
  .active {
    padding: 28vw 2rem 28vw;
  }
}
@media (max-width: 767px) {
  .active {
    padding: 36vw 2rem 40vw;
  }
}
.active::before, .active::after {
  position: absolute;
  content: "";
  background-size: cover;
  width: 100%;
  left: 0;
}
.active::before {
  background-image: url(../images/nami-bottom.svg);
  height: 16.77vw;
  top: -0.5rem;
}
@media (min-width: 1921px) {
  .active::before {
    height: 16.77vw;
  }
}
@media (max-width: 767px) {
  .active::before {
    background-image: url(../images/sp-nami-bottom.svg);
    height: 19vw;
  }
}
.active::after {
  background-image: url(../images/nami-top.svg);
  background-position: bottom;
  height: 16.77vw;
  bottom: -0.5rem;
}
@media (min-width: 1921px) {
  .active::after {
    height: 16.77vw;
  }
}
@media (max-width: 767px) {
  .active::after {
    background-image: url(../images/sp-nami-top.svg);
    height: 21vw;
  }
}
.active .section-ttl--en {
  position: relative;
}
.active .section-ttl--en::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg-activity-1.png);
  background-size: contain;
  width: 108.8rem;
  height: 13.9rem;
  top: 0;
  left: -9rem;
}
@media (max-width: 1200px) {
  .active .section-ttl--en::before {
    width: 95%;
    height: 12.9rem;
    top: 0;
    left: -2rem;
  }
}
@media (max-width: 767px) {
  .active .section-ttl--en::before {
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    top: -2rem;
    background-image: url(../images/sp-bg-activity-1.png);
    width: 34.4rem;
    height: 5.8rem;
  }
}
.active .section-ttl {
  text-align: center;
}
.active .line {
  width: 33.6rem;
  display: block;
  margin: 4.6rem auto;
}
@media (max-width: 767px) {
  .active .line {
    width: 17.6rem;
    margin: 3.6rem auto;
  }
}
.active .section-txt {
  line-height: 2.125;
  position: relative;
}
.active .section-txt::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg-activity-2.png);
  background-size: contain;
  width: 102.4rem;
  height: 15.4rem;
  bottom: -17rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1200px) {
  .active .section-txt::before {
    width: 95%;
    height: 10.4rem;
  }
}
@media (max-width: 767px) {
  .active .section-txt::before {
    width: 34.5rem;
    height: 3.5rem;
    bottom: -6rem;
    background-image: url(../images/sp-bg-activity-2.png);
    width: 30.1rem;
    height: 5.2rem;
  }
}

.access {
  padding: 8rem 0 0;
}
@media (max-width: 767px) {
  .access {
    padding: 5rem 0 0;
  }
}
@media (max-width: 767px) {
  .access .section-ttl--en {
    margin-bottom: 1.5rem;
  }
}
.access .section-ttl {
  text-align: center;
  margin-bottom: 3.5rem;
}
.access .info__list {
  margin: 8rem 0 9rem;
}
@media (max-width: 767px) {
  .access .info__list {
    padding: 0 1.5rem;
    margin-top: 5rem;
  }
}
.access .info__list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: dashed 1px #162a62;
  padding: 3rem;
}
@media (max-width: 767px) {
  .access .info__list li {
    padding: 3rem 2rem;
  }
}
.access .info__list li:first-child {
  border-top: dashed 1px #162a62;
}
.access .info__list li .info-name {
  width: 22%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .access .info__list li .info-name {
    width: 30%;
  }
}

.parking-map {
  width: 79%;
  margin: 6rem auto 0;
  display: block;
}
@media (max-width: 767px) {
  .parking-map {
    width: 100%;
  }
}

/* フッター */
.footer {
  background: #5d945b;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 7rem 2rem 14rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg-footer.png);
  background-size: contain;
  width: 117.8rem;
  height: 38.8rem;
  top: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .footer::before {
    background-image: url(../images/sp-bg-footer.png);
    width: 35.4rem;
    height: 49.8rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 1.5rem 9rem;
  }
}
.footer .flex {
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer .flex .tel {
  margin-top: 2.5rem;
}
.footer .flex .tel,
.footer .flex .fax {
  font-size: 2rem;
}
.footer .flex .tel a,
.footer .flex .fax a {
  color: #fff;
}
.footer .footer__logo__wrapper {
  text-align: center;
  margin-right: 8%;
}
@media (max-width: 767px) {
  .footer .footer__logo__wrapper {
    margin-right: 0;
  }
}
.footer .footer__logo__wrapper .footer-ttl {
  font-size: 2.2rem;
  margin-top: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.footer .footer__logo__wrapper .footer__logo {
  max-width: 29.1rem;
  width: 100%;
}
@media (max-width: 767px) {
  .footer .footer__logo__wrapper .footer__logo {
    width: 100%;
    max-width: 24.4rem;
  }
}/*# sourceMappingURL=style.css.map */