html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP";
}

.underline {
  text-decoration: underline;
  text-decoration-color: inherit;
}

.btn--reservation {
  width: 320px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.04em;
  border-radius: 52px;
  text-align: center;
  background-color: #385417;
  color: #ffffff;
  padding-left: 30px;
  position: relative;
}
.btn--reservation::after {
  content: "";
  background-image: url("../img/icon_reservation.svg");
  width: 28px;
  height: 24px;
  position: absolute;
  top: 20px;
  left: 85px;
}
.btn--reservation:hover {
  transition: all 0.4s ease-in;
  background-color: #ffffff;
  color: #385417;
}
.btn--reservation:hover::after {
  height: 28px;
  background-image: url("../img/icon_reservation-green.svg");
}

.btn--tel {
  width: 320px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.04em;
  border-radius: 52px;
  text-align: center;
  position: relative;
  padding-left: 30px;
  background-color: #ffffff;
  color: #385417;
  border: 1px solid #385417;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn--tel::after {
  content: "";
  background-image: url("../img/icon_tel.svg");
  width: 30px;
  height: 28px;
  position: absolute;
  top: 20px;
  left: 55px;
}
.btn--tel:hover {
  transition: all 0.4s ease-in;
  background-color: #385417;
  color: #ffffff;
}
.btn--tel:hover::after {
  background-image: url("../img/icon_tel-white.svg");
}
.btn--tel .tel-text {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
.btn--tel .tel-number {
  font-family: Noto Sans JP;
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
  letter-spacing: 0.04em;
  text-align: center;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  padding: 20px;
}
@media only screen and (max-width: 1090px) {
  .header-inner {
    padding: 12px 20px;
  }
  .header-inner:has(details[open]) {
    padding: 0;
  }
}
.header-pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-pc-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-pc__nav-list {
  display: flex;
  gap: 16px;
  color: #385417;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.header-pc__btn {
  width: 192px;
  height: 48px;
}
.header-pc__btn::after {
  top: 12px;
  left: 24px;
}
@media only screen and (max-width: 1090px) {
  .header-pc {
    display: none;
  }
}
.header-sp {
  display: none;
}
@media only screen and (max-width: 1090px) {
  .header-sp {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .header-sp__button {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
  }
  .header-sp__button-bar {
    display: grid;
    position: absolute;
    top: 6px;
  }
  .header-sp__button-bar, .header-sp__button-bar::after, .header-sp__button-bar::before {
    width: 16px;
    height: 1.5px;
    background: #385417;
    transition: transform 0.4s;
  }
  .header-sp__button-bar::after, .header-sp__button-bar::before {
    content: "";
    grid-area: 1/1;
  }
  .header-sp__button-bar::after {
    transform: translateY(-6px);
  }
  .header-sp__button-bar::before {
    transform: translateY(6px);
  }
  .header-sp__drawer {
    height: 0;
  }
  .header-sp__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  .header-sp__menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .header-sp__menu-item a {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #385417;
  }
  .header-sp__menu-btn {
    margin: 0 auto;
  }
  .header-sp__hamburger-menu {
    transition: all 0.4s;
  }
  .header-sp__hamburger-menu[open] .header-sp__button {
    top: 20px;
    right: 40px;
  }
  .header-sp__hamburger-menu[open] .header-sp__button span {
    background-color: transparent;
  }
  .header-sp__hamburger-menu[open] .header-sp__button span::after {
    transform: rotate(45deg);
  }
  .header-sp__hamburger-menu[open] .header-sp__button span::before {
    transform: rotate(-45deg);
  }
  .header-sp__hamburger-menu[open] .header-sp__drawer {
    width: 100vw;
    height: 100vh;
    padding-top: 8.4vh;
    background-color: #f2f1e7;
    animation: slideDown 0.4s forwards;
  }
}

@keyframes slideDown {
  from {
    height: 0;
  }
  to {
    max-height: 100vh;
  }
}
.fv {
  position: relative;
  background-color: #f2f1e7;
}
.fv__img-container {
  display: block;
  width: 100%;
  height: 44.44%;
  max-height: 700px;
}
.fv__img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 40px 40px;
}
.fv__copy {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: absolute;
  bottom: 60px;
  left: 80px;
}
@media only screen and (max-width: 767px) {
  .fv__copy {
    bottom: 32px;
    left: 24px;
  }
}

.about {
  background-color: #f2f1e7;
}
.about__title {
  padding-top: 64px;
  font-size: clamp(32px, 32px + 16 * (100vw - 375px) / 665, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: #385417;
}
.about__desc {
  padding-top: 32px;
  font-size: clamp(16px, 16px + 2 * (100vw - 375px) / 665, 18px);
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #385417;
}
.about__btn {
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .about {
    display: flex;
    flex-direction: column;
  }
  .about__btn {
    order: 1;
  }
  .about__textarea {
    order: 2;
  }
}

.highlights {
  background-color: #f2f1e7;
  padding-top: 120px;
}
.highlights__images {
  display: grid;
  grid-template-columns: 1fr 1.89fr 1fr 1.5fr;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .highlights__images {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 8px;
  }
}
.highlights__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .highlights__image-item01 {
    order: 3;
    width: 33.9%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .highlights__image-item01 {
    max-width: 127px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .highlights__image-item01 {
    max-width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights__image-item02 {
    order: 1;
    width: 64%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .highlights__image-item02 {
    max-width: 240px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .highlights__image-item02 {
    max-width: 222px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights__image-item03 {
    order: 2;
    width: 33.9%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .highlights__image-item03 {
    max-width: 127px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .highlights__image-item03 {
    max-width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights__image-item04 {
    order: 4;
    width: 64%;
    height: 100%;
    aspect-ratio: 240/160;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .highlights__image-item04 {
    max-width: 240px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .highlights__image-item04 {
    max-width: 222px;
  }
}
.highlights__title {
  padding-top: 120px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.highlights .card-col3 {
  display: flex;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .highlights .card-col3 {
    flex-direction: column;
    gap: 56px;
  }
  .highlights .card-col3 .card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
.highlights .card {
  width: 33%;
}
.highlights .card__img {
  border-radius: 16px;
}
.highlights .card__img img {
  width: 100%;
  aspect-ratio: 240/160;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlights .card__tag {
  margin-top: 16px;
  padding: 5px 9.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ffffff;
  background-color: #75a63d;
  border-radius: 20px;
}
.highlights .card__title {
  padding-top: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.04em;
  color: #385417;
}
.highlights .card__desc {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .highlights .card__desc {
    font-size: 15px;
  }
}
.highlights__btn {
  margin: 80px auto 0;
}

.episode {
  background-color: #f2f1e7;
}
.episode-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.episode__title {
  padding-top: 120px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.episode__card-col2 {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .episode__card-col2 {
    flex-direction: column;
    gap: 40px;
  }
}
.episode-card {
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #385417;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .episode-card {
    margin: 0 auto;
  }
}
.episode-card__img {
  width: 100%;
}
.episode-card__img img {
  width: 100%;
}
.episode-card__desc {
  padding-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.episode__btn {
  margin: 80px auto 0;
}

.info {
  background: #f2f1e7;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .info {
    padding-bottom: 0;
  }
}
.info-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 760px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 2px solid #385417;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .info-inner {
    border: none;
    border-radius: 0%;
  }
}
.info__title {
  padding-top: 80px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.info__block {
  padding: 24px 16px;
  border-bottom: 1px solid #bfc4b9;
}
@media only screen and (max-width: 767px) {
  .info__block {
    padding: 24px 0;
  }
}
.info__block:first-child {
  border-top: 1px solid #bfc4b9;
}
.info__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #75a63d;
}
@media only screen and (max-width: 767px) {
  .info__label {
    font-size: 15px;
  }
}
.info__desc {
  padding-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .info__desc {
    font-size: 15px;
  }
}
.info__attention {
  padding-top: 1em;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.04em;
  text-align: left;
}
.info__btn {
  margin: 24px auto 0;
}
@media only screen and (max-width: 360px) {
  .info__btn {
    display: flex;
    justify-content: center;
    margin-left: -16px;
  }
}

.for-group {
  background-color: #f2f1e7;
  padding-bottom: 70px;
}
.for-group-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 760px;
}
.for-group__title {
  padding-top: 80px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.for-group__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .for-group__img {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.for-group__desc {
  padding-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .for-group__desc {
    font-size: 15px;
  }
}
.for-group__info-first {
  border-top: 1px solid #bfc4b9;
  margin-top: 32px;
}
.for-group__btn {
  margin: 32px auto 0;
}

.safety {
  background-color: #f1f6ec;
}
.safety-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 760px;
  padding-bottom: 70px;
}
.safety__img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .safety__img {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.safety__title {
  padding-top: 80px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.safety__desc {
  padding-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .safety__desc {
    font-size: 15px;
  }
}
.safety__checklist {
  margin-top: 32px;
}
.safety__checklist-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.02em;
}
.safety__checklist-item::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 4px;
  left: 0;
}

.wear {
  background-color: #ffffff;
  padding-bottom: 80px;
}
.wear-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.wear__title {
  padding-top: 80px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.wear__desc {
  width: 100%;
  padding-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  grid-area: desc;
}
@media only screen and (max-width: 767px) {
  .wear__desc {
    text-align: left;
    font-size: 15px;
    order: 2;
    padding-bottom: 0;
  }
}
.wear__content {
  display: grid;
  grid: "desc desc" auto "img text" auto/33fr 62.5fr;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .wear__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.wear__img {
  width: 100%;
  grid-area: img;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .wear__img {
    order: 1;
  }
}
.wear__info-area {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.02em;
  grid-area: text;
  order: 3;
}
.wear__info {
  margin-bottom: 32px;
}
.wear__tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  background-color: #75a63d;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.rainy {
  background-color: #f1f6ec;
}
.rainy-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 760px;
  padding-bottom: 70px;
}
.rainy__title {
  padding-top: 80px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.rainy__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: -moz-fit-content;
  height: fit-content;
}
.rainy__desc {
  padding-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .rainy__desc {
    font-size: 15px;
  }
}
.rainy__attention {
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.04em;
  text-align: left;
}
.rainy__btn {
  margin: 40px auto 0;
}

.faq {
  background-color: #f2f1e7;
}
.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 760px;
  padding-bottom: 120px;
}
.faq__title {
  padding-top: 120px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #385417;
  margin-bottom: 40px;
}
.faq__desc {
  padding-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .faq__desc {
    font-size: 15px;
  }
}
.faq__list {
  list-style-type: decimal;
  margin-left: 20px;
}
.faq__content {
  margin-bottom: 40px;
}
.faq__question {
  font-size: 20px;
  font-weight: 700;
  line-height: 30.4px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #385417;
  margin-bottom: 8px;
}
.faq__answer {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.707;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .faq__answer {
    font-size: 15px;
  }
}
.faq__btn {
  margin: 120px auto 0;
}

.footer__logo-area {
  padding: 48px 0;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.footer__logo-area img {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .footer__logo-area {
    gap: 20px;
  }
  .footer__logo-area img {
    max-width: 134px;
    height: auto;
  }
  .footer__logo-area img:nth-child(2) {
    max-width: 70px;
    height: auto;
  }
  .footer__logo-area img:nth-child(3) {
    max-width: 56px;
    height: auto;
  }
}
.footer__content {
  background-color: #385417;
  padding-top: 48px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__btn--reservation {
  background-color: #ffffff;
  color: #385417;
  margin: 0 auto;
}
.footer__btn--reservation::after {
  height: 30px;
  transform: translateY(-2px);
  background-image: url("../img/icon_reservation-green.svg");
}
.footer__btn--reservation:hover {
  background-color: #385417;
  color: #ffffff;
}
.footer__btn--reservation:hover::after {
  transform: translate(0);
  height: 24px;
  background-image: url("../img/icon_reservation.svg");
}
.footer__btn--tel {
  background-color: #385417;
  border-color: #ffffff;
  color: #ffffff;
  margin: 0 auto;
}
.footer__btn--tel::after {
  background-image: url("../img/icon_tel-white.svg");
}
.footer__btn--tel:hover {
  background-color: #ffffff;
  color: #385417;
}
.footer__btn--tel:hover::after {
  background-image: url("../img/icon_tel.svg");
}
.footer__map {
  margin: 48px auto 0;
}
.footer__map iframe {
  max-width: 800px;
  max-height: 600px;
}
@media only screen and (max-width: 767px) {
  .footer__map {
    display: none;
  }
}
.footer__info {
  margin-top: 48px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ffffff;
}
.footer__tel {
  padding-bottom: 8px;
}
.footer__copyright {
  margin-top: 48px;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */