body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #2b2b2b;
  line-height: 1.7;
}

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

.header {
  padding: 15px 0;
  background: #869E46;
}
@media (min-width: 768px) {
  .header {
    padding: 22px 0;
  }
}

.header__inner {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    max-width: 1378px;
    margin: 0 auto;
  }
}

.header__logo img {
  width: 100px;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 160px;
  }
}

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

@media (min-width: 768px) {
  .nav__topic {
    display: none;
  }
}
.nav__topic img {
  width: 100px;
}

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

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 57px;
}

.header__nav-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__nav-link:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: clamp(14px, 1.1111111111vw, 16px);
  }
}

.header__btn {
  padding: 0 8px 3px 25px;
  position: relative;
  border-radius: 15px;
  background: #fff;
  font-family: "Montserrat", serif;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 8px;
  background: #869E46;
}
.header__btn:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn--close {
  padding: 0 15px 3px 25px;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(52, 52, 52, 0.78);
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__header {
  padding: 15px 15px;
  background: #869E46;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-content__header-logo img {
  width: 100px;
}

.drawer-content__list {
  padding: 32px 23px 0;
  position: fixed;
  right: 0;
  width: 70.9333333333vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  background: #FFF5DD;
}

.drawer-content__item {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(52, 52, 52, 0.2);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-content__item:hover {
  opacity: 0.6;
}

.fv {
  padding: 532px 0 43px;
  background: url(../img/fv.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% 50%;
  opacity: 0;
}
.fv.fadeIn {
  opacity: 1;
  -webkit-animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@media (min-width: 768px) {
  .fv {
    padding: 494px 0 87px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fv__inner {
  padding: 0 31px 0 152px;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media (min-width: 768px) {
  .fv__inner {
    padding: 0 7.7777777778vw 0 62.2222222222vw;
  }
}

.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.fv__title.title-fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 768px) {
  .fv__title {
    font-size: clamp(25px, 3.3333333333vw, 48px);
  }
}

.about {
  padding: 40px 0;
  background: #FFF5DD;
}
@media (min-width: 768px) {
  .about {
    padding: 258px 0 100px 0;
  }
}

.about__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .about__inner {
    max-width: 1130px;
    position: relative;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    max-width: 473px;
    top: -74px;
    left: 58%;
    padding-right: 10px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .about__content {
    top: -110px;
    left: 40%;
    padding-right: 10px;
  }
}

.about__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 36px;
  }
}

.about__text {
  margin-top: 13px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .about__text {
    max-width: 473px;
    margin-top: 22px;
    font-size: 20px;
  }
}

.about__img {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about__img {
    margin-top: 0;
  }
}

.service__inner {
  padding: 100px 15px;
}
@media (min-width: 768px) {
  .service__inner {
    padding: 292px 170px;
  }
}

.onnsenn {
  background: url(../img/service1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
}

.service__title {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service__title {
    font-size: 32px;
    text-align: center;
  }
}

.service__lead {
  margin-top: 54px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service__lead {
    margin-top: 30px;
    font-size: 40px;
    text-align: center;
  }
}

.service__text {
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .service__text {
    margin-top: 22px;
    max-width: 399px;
    margin: 0 auto;
    font-size: 20px;
  }
}

.gannbannyoku {
  background: url(../img/service2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 43% 0;
}

.restaurant {
  padding: 125px 15px 132px;
  background: url(../img/service3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .restaurant {
    padding: 300px 170px 549px;
  }
}

.restaurant__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .restaurant__title {
    font-size: 32px;
  }
}

.restaurant__lead {
  text-align: center;
  margin-top: 5px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .restaurant__lead {
    margin-top: 75px;
    font-size: 40px;
  }
}

.restaurant__text {
  margin-top: 32px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .restaurant__text {
    margin-top: 24px;
    max-width: 479px;
    margin: 0 auto;
    font-size: 20px;
  }
}

.restaurant__img1 {
  position: absolute;
  top: 47px;
  left: -46px;
  width: clamp(178px, 47.4666666667vw, 278px);
  opacity: 0;
}
.restaurant__img1.restaurant-fadeIn {
  opacity: 1;
  -webkit-animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@media (min-width: 768px) {
  .restaurant__img1 {
    width: clamp(700px, 70.9722222222vw, 1022px);
    left: -359px;
  }
}

.restaurant__img2 {
  position: absolute;
  top: 32px;
  right: -63px;
  width: clamp(194px, 51.7333333333vw, 300px);
  opacity: 0;
}
.restaurant__img2.restaurant-fadeIn {
  opacity: 1;
  -webkit-animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@media (min-width: 768px) {
  .restaurant__img2 {
    width: clamp(550px, 54.375vw, 783px);
    right: -159px;
  }
}

.restaurant__img3 {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(164px, 43.7333333333vw, 170px);
  opacity: 0;
}
.restaurant__img3.restaurant-fadeIn {
  opacity: 1;
  -webkit-animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@media (min-width: 768px) {
  .restaurant__img3 {
    width: clamp(600px, 55.6944444444vw, 802px);
    bottom: 15px;
    left: 41.25vw;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.access {
  padding: 40px 0;
  background: #FFF5DD;
}
@media (min-width: 768px) {
  .access {
    padding: 100px 0 524px;
  }
}

.access__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .access__inner {
    max-width: 1130px;
    margin: 0 auto;
    position: relative;
  }
}

.access__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .access__title {
    font-size: 32px;
  }
}

.access__lead {
  margin-top: 13px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .access__lead {
    font-size: 40px;
    margin-top: 22px;
  }
}

.access__list {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 67px;
}
@media (min-width: 768px) {
  .access__list {
    margin-top: 58px;
    gap: 52px;
  }
}

.access__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .access__item-title {
    font-size: 32px;
  }
}

.access__car-text,
.access__train-text {
  font-weight: 300;
}
@media (min-width: 768px) {
  .access__car-text,
  .access__train-text {
    font-size: 20px;
  }
}

.access__car-text {
  margin-top: 5px;
}

.access__train-texts {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39px;
}
@media (min-width: 768px) {
  .access__train-texts {
    margin-top: 12px;
    gap: 30px;
  }
}

.access__emphasis {
  font-weight: 400;
}

.access__item-span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .access__item-span {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .access__img {
    position: absolute;
    top: 497px;
    left: 0;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .access__img {
    position: absolute;
    top: 550px;
    left: 0;
  }
}

.footer {
  padding: 40px 0 15px;
  background: #869E46;
}
@media (min-width: 768px) {
  .footer {
    padding: 100px 0 20px;
  }
}

.footer__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .footer__inner {
    max-width: 1378px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  text-align: center;
}
.footer__logo img {
  width: 241px;
}

.footer__address {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer__address {
    margin-top: 17px;
  }
}

.address {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}
@media (min-width: 768px) {
  .address {
    text-align: start;
  }
}

.tell {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}
@media (min-width: 768px) {
  .tell {
    margin-top: 11px;
    text-align: start;
  }
}

.footer__nav {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 86px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__nav-link {
  font-size: 12px;
  font-weight: 300;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.6;
}

.copy {
  margin-top: 83px;
  text-align: center;
}
.copy small {
  font-family: "Montserrat", serif;
  font-size: 12px;
  font-weight: 300;
}