@charset "UTF-8";
a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

html,
body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

.c-btn-outline {
  display: inline-block;
  padding: 12px 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  .c-btn-outline {
    padding: 10px 40px;
  }
}
.c-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.c-btn-border {
  position: relative;
  display: block;
  width: 100%;
  background: #2d3e2d;
  color: #fff;
  padding: 18px 0;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-border:hover {
  opacity: 0.8;
}
.c-btn-border::before, .c-btn-border::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
.c-btn-border::before {
  width: 43px;
  height: 1px;
  -webkit-transform: translate(-100px, -50%);
          transform: translate(-100px, -50%);
}
.c-btn-border::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  background: transparent;
  -webkit-transform: translate(-65px, -50%) rotate(45deg);
          transform: translate(-65px, -50%) rotate(45deg);
}

.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
@media (max-width: 800px) {
  .l-container {
    padding: 0 40px 50px;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .c-section-title {
    margin-bottom: 20px;
  }
}
.c-section-title__inner {
  display: inline-block;
  background-color: #F1EFE9;
  border-radius: 2px;
  padding: 15px 60px;
}
.c-section-title__ja {
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  font-weight: 500;
  color: #fff;
}
.c-section-title__en {
  display: block;
  font-size: 16px;
  opacity: 0.8;
  color: #fff;
}
.c-section-title.-dark .c-section-title__ja,
.c-section-title.-dark .c-section-title__en {
  color: #333;
  /* 黒色に指定 */
}

.mv {
  position: relative;
  color: #fff;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.mv.is-top {
  height: 100vh;
  background-image: url("../img/mainvisual.jpg");
}
.mv.is-top .mv__title-area {
  display: none;
}
.mv.is-sub {
  height: 70vh;
  min-height: 400px;
}
.mv.is-sub.is-onsen {
  background-image: url("../img/onsen.jpg");
}
.mv.is-sub.is-meal {
  background-image: url("../img/meal.jpg");
}
.mv.is-sub.is-room {
  background-image: url("../img/room.jpg");
}
.mv.is-sub.is-access {
  background-image: url("../img/mainvisual.jpg");
}
@media (max-width: 800px) {
  .mv.is-sub {
    height: 40vh;
  }
}
.mv.is-sub .mv__logo {
  display: none;
}
.mv__header {
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: 2;
}
@media (max-width: 800px) {
  .mv__header {
    top: 20px;
    right: 20px;
  }
}
.mv__reserve-btn {
  background: #fff;
  color: #333;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .mv__reserve-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}
.mv__reserve-btn:hover {
  opacity: 0.8;
}
.mv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.mv__logo img {
  width: 220px;
}
@media (max-width: 800px) {
  .mv__logo img {
    width: 160px;
  }
}
.mv__title-area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}
.mv__main-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
.mv__main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 800px) {
  .mv__main-title {
    font-size: 32px;
  }
}
.mv__sub-title {
  display: block;
  font-size: 18px;
  margin-top: 15px;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  .mv__sub-title {
    font-size: 14px;
  }
}
.mv__nav {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 800px) {
  .mv__nav {
    bottom: 20px;
  }
}
.mv__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  letter-spacing: 4px;
}
@media (max-width: 800px) {
  .mv__nav-list {
    gap: 20px;
    letter-spacing: 2px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.mv__nav-list a {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .mv__nav-list a {
    font-size: 12px;
  }
}
.mv__nav-list a:hover {
  opacity: 0.7;
  text-shadow: none;
}

.reservation {
  background-color: #2d3e2d;
  padding-top: 100px;
  color: #fff;
  text-align: center;
}
@media (max-width: 800px) {
  .reservation {
    padding-top: 50px;
  }
}
.reservation__form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  color: #333;
}
@media (max-width: 800px) {
  .reservation__form {
    padding: 30px 20px;
    gap: 20px;
  }
}
.reservation__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
@media (max-width: 800px) {
  .reservation__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
  }
}
.reservation .separator {
  padding-bottom: 12px;
}
@media (max-width: 800px) {
  .reservation .separator {
    display: none;
  }
}
.reservation__field {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reservation__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}
.reservation__field label .jp {
  font-size: 11px;
  font-weight: normal;
  margin-left: 5px;
}
.reservation__field input,
.reservation__field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-family: inherit;
}
.reservation__btn {
  /* buttonタグのリセット設定 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: block;
  width: 100%;
  background-color: #6b7654;
  color: #fff;
  padding: 18px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.reservation__btn:hover {
  opacity: 0.8;
  color: #fff;
}

.mountain {
  position: relative;
  width: 100%;
  height: 120px;
  z-index: 5;
  pointer-events: none;
  background: #2d3e2d;
}
.mountain__line {
  position: relative;
  width: 100%;
  height: 100%;
}
.mountain__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(0 100%, 75% 0, 99.8% 100%, 99.5% 100%, 75% 1px, 0.5% 100%);
}

.footer {
  background-color: #2d3e2d;
  color: #fff;
}
.footer__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  padding: 80px 50px;
  border-top: 1px solid #fff;
}
@media (max-width: 800px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }
}
.footer__address {
  margin: 32px 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.footer__access-summary {
  font-size: 13px;
  line-height: 2;
  opacity: 0.8;
}
.footer__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
@media (max-width: 800px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }
}
.footer__links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
  min-width: 250px;
}
@media (max-width: 800px) {
  .footer__links li {
    min-width: 300px;
  }
}
.footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer {
  /* SNS */
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-bottom: 50px;
  list-style: none;
}
@media (max-width: 800px) {
  .footer__sns {
    gap: 20px;
  }
}
.footer__sns a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns a:hover {
  opacity: 0.6;
}

/* reservation-step1・2・3共通ボタン */
.c-btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #6b7654;
  color: #fff;
  padding: 20px 80px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 4px;
  text-decoration: none;
  /* 1ページ目（単体）で真ん中に寄せるための設定 */
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn-submit:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  .c-btn-submit {
    width: 100%;
    padding: 15px 0;
  }
}

.intro {
  background-color: #2d3e2d;
  padding-top: 100px;
  color: #fff;
  text-align: center;
}
@media (max-width: 800px) {
  .intro {
    padding-top: 50px;
  }
}
.intro__title {
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .intro__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.intro__text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}
@media (max-width: 800px) {
  .intro__text {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
  }
}

.features__item {
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 800px) {
  .features__item {
    margin-bottom: 40px;
  }
}
.features__img img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 800px) {
  .features__img img {
    height: 350px;
  }
}
.features__content {
  background: #fff;
  padding-top: 30px;
  border-radius: 20px 20px 0 0;
  width: 400px;
  margin: -100px auto 0;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 800px) {
  .features__content {
    width: 80%;
    margin-top: -60px;
    padding-top: 10px;
  }
}
.features__title {
  font-size: 22px;
  margin-bottom: 5px;
  letter-spacing: 0.15em;
  color: #333;
}
@media (max-width: 800px) {
  .features__title {
    font-size: 18px;
  }
}
.features__subtitle {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}
@media (max-width: 800px) {
  .features__subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.facilities {
  background-color: #2d3e2d;
  color: #fff;
  padding-top: 100px;
}
@media (max-width: 800px) {
  .facilities {
    padding-top: 50px;
  }
}
.facilities__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: 80px;
}
@media (max-width: 800px) {
  .facilities__list {
    gap: 40px;
  }
}
.facilities__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 800px) {
  .facilities__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.facilities__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.facilities__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.facilities__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.facilities__info .facilities__en-title {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.8;
}
.facilities__info .facilities__ja-title {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .facilities__info .facilities__ja-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.facilities__info .facilities__description {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
}
@media (max-width: 800px) {
  .facilities__info .facilities__description {
    line-height: 1.7;
  }
}
.facilities__footer {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 800px) {
  .facilities__footer {
    margin-top: 40px;
  }
}

.news {
  padding-top: 100px;
  color: #333;
}
@media (max-width: 800px) {
  .news {
    padding-top: 50px;
  }
}
.news__list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 10px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 800px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px 5px;
  }
}
.news__item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.news__date {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
}
@media (max-width: 800px) {
  .news__date {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-bottom: 5px;
    font-size: 13px;
  }
}
.news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
}
@media (max-width: 800px) {
  .news__title {
    font-size: 14px;
  }
}
.news__footer {
  text-align: center;
  margin-top: 80px;
}
.news__footer .c-btn-outline {
  color: #333;
  border-color: #333;
}
.news__footer .c-btn-outline:hover {
  background-color: #333;
  color: #fff;
}

.access {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .access {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access__map {
  width: 100%;
  height: 100%;
}
@media (max-width: 800px) {
  .access__map {
    height: 300px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(20%);
          filter: grayscale(20%);
}
.access__card {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  width: 320px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  z-index: 10;
}
@media (max-width: 800px) {
  .access__card {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    padding: 60px 40px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.access__address, .access__text, .access__text-en {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.access__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.access .btn-outline,
.access .btn-green {
  display: block;
  padding: 12px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.access .btn-outline {
  border: 1px solid #333;
  color: #333;
}
.access .btn-green {
  background-color: #344e3d;
  /* 画像のような深緑 */
  color: #fff;
  border: 1px solid #344e3d;
}
.access .btn-outline:hover,
.access .btn-green:hover {
  opacity: 0.8;
}

.date {
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.article-title {
  font-size: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
}

.content {
  line-height: 2;
}
.content p {
  margin-bottom: 27px;
}

.block {
  margin: 30px 0;
}

.block-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.onsen {
  position: relative;
  width: 100%;
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .onsen {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.onsen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.onsen__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.onsen__bg:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 800px) {
  .onsen__bg {
    position: relative;
    height: 300px;
  }
}
.onsen__card {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  width: 470px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
@media (max-width: 800px) {
  .onsen__card {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
  }
}
.onsen__intro {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.onsen__label {
  font-size: 14px;
  font-weight: bold;
  color: #2d3e2d;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin: 25px 0 10px;
}
.onsen__data {
  font-size: 13px;
  line-height: 2;
  color: #555;
}

.onsen-intro {
  background-color: #2d3e2d;
  color: #fff;
}
.onsen-intro .c-section-title {
  padding-top: 100px;
}
@media (max-width: 800px) {
  .onsen-intro .c-section-title {
    padding-top: 80px;
  }
}
.onsen-intro__main-img {
  max-width: 900px;
  margin: 0 auto 60px;
  overflow: hidden;
}
.onsen-intro__main-img img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.onsen-intro__main-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.onsen-intro__content {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  position: relative;
}
.onsen-intro__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 800px) {
  .onsen-intro__content::before {
    display: none;
  }
}
@media (max-width: 800px) {
  .onsen-intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.onsen-intro__left, .onsen-intro__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.onsen-intro__text, .onsen-intro__text-en {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
}
.onsen-intro__sub-title, .onsen-intro__sub-title-en {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.onsen-intro__time {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.spa {
  background-color: #F1EFE9;
  padding-top: 100px;
}
@media (max-width: 800px) {
  .spa {
    padding: 50px 40px;
  }
}
.spa__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media (max-width: 800px) {
  .spa__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.spa__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.spa__image img {
  width: 100%;
  display: block;
  -webkit-box-shadow: -20px 20px 0 #2d3e2d;
          box-shadow: -20px 20px 0 #2d3e2d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.spa__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.spa__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 80px;
}
@media (max-width: 800px) {
  .spa__content {
    padding-left: 0;
  }
}
.spa__text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 20px;
  text-align: justify;
}
.spa__toggle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  margin-top: 100px;
  color: #2d3e2d;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 800px) {
  .spa__toggle {
    margin-top: 50px;
  }
}
.spa__toggle:hover {
  opacity: 0.7;
}
.spa__toggle .toggle-arrow {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.spa__toggle.is-active .toggle-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.spa__info-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2d3e2d;
}
.spa__info-detail {
  font-size: 14px;
}
.spa__accordion {
  display: none;
  width: 100%;
  overflow: hidden;
}

.program {
  padding-top: 150px;
  background-color: #F1EFE9;
}
@media (max-width: 800px) {
  .program {
    padding-top: 0;
  }
}

.menu-list {
  margin-top: 40px;
  border-top: 1px solid #333;
}
.menu-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #333;
  margin: 0;
}
@media (max-width: 800px) {
  .menu-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu-list__name {
  width: 200px;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  border-right: 1px solid #333;
}
@media (max-width: 800px) {
  .menu-list__name {
    width: 100%;
    border-right: none;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
  }
}
.menu-list__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
  margin: 0;
}
@media (max-width: 800px) {
  .menu-list__content {
    padding: 20px;
  }
}
.menu-list__info {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2d3e2d;
}
.menu-list__text {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.kouso {
  background-color: #F1EFE9;
  padding: 100px 0;
}
@media (max-width: 800px) {
  .kouso {
    padding: 0 40px;
  }
}
.kouso__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media (max-width: 800px) {
  .kouso__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.kouso__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.kouso__image img {
  width: 100%;
  display: block;
  -webkit-box-shadow: 20px 20px 0 #2d3e2d;
          box-shadow: 20px 20px 0 #2d3e2d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.kouso__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.kouso__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 80px;
}
@media (max-width: 800px) {
  .kouso__content {
    padding-right: 0;
  }
}
.kouso__text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 30px;
  text-align: justify;
}
.kouso__info-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2d3e2d;
}
.kouso__info-detail {
  font-size: 14px;
}

.omiyage {
  background-color: #F1EFE9;
  padding-bottom: 100px;
}
@media (max-width: 800px) {
  .omiyage {
    padding: 50px 40px;
  }
}
.omiyage__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media (max-width: 800px) {
  .omiyage__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.omiyage__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.omiyage__image img {
  width: 100%;
  display: block;
  -webkit-box-shadow: -20px 20px 0 #2d3e2d;
          box-shadow: -20px 20px 0 #2d3e2d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.omiyage__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.omiyage__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 80px;
}
@media (max-width: 800px) {
  .omiyage__content {
    padding-left: 0;
  }
}
.omiyage__text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 20px;
  text-align: justify;
}
.omiyage__info-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2d3e2d;
}
.omiyage__info-detail {
  font-size: 14px;
}

.onsen-footer-nav {
  background-color: #2d3e2d;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 800px) {
  .onsen-footer-nav {
    padding: 60px 20px;
  }
}

.footer-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-btn-area .c-btn-outline {
  display: inline-block;
  width: 280px;
  padding: 20px 0;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-btn-area .c-btn-outline:hover {
  background-color: #fff;
  color: #2d3e2d;
  opacity: 1;
}
@media (max-width: 800px) {
  .footer-btn-area .c-btn-outline {
    width: 100%;
    max-width: 350px;
  }
}

.p-meal {
  padding: 80px 0;
  background-color: #fff;
}
.p-meal__item {
  margin-bottom: 100px;
}
.p-meal__item:last-child {
  margin-bottom: 0;
}
.p-meal__info {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
@media (max-width: 800px) {
  .p-meal__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-meal__menu-name {
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  color: #333;
}
.p-meal__menu-tag {
  font-size: 13px;
  color: #6b7654;
  font-weight: bold;
  margin-top: 5px;
}
.p-meal__caption {
  font-size: 11px;
  color: #999;
}
.p-meal__card {
  background-color: #F1EFE9;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.p-meal__image {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .p-meal__image {
    height: 250px;
  }
}
.p-meal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.p-meal__image-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.p-meal__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-meal__action {
  background: #fdfcf9;
  padding: 20px;
  text-align: center;
}
.p-meal__accordion {
  width: 100%;
}
.p-meal__menu-list {
  padding: 60px 50px;
  background: #faf8f5;
  border-top: 1px solid #eee;
}
@media (max-width: 800px) {
  .p-meal__menu-list {
    padding: 40px 20px;
  }
}
.p-meal__menu-group {
  text-align: center;
  margin-bottom: 40px;
}
.p-meal__menu-group .p-meal__course-label {
  display: inline-block;
  font-size: 11px;
  color: #6b7654;
  border: 1px solid #6b7654;
  padding: 2px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.p-meal__menu-group h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}
.p-meal__menu-group p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}
.p-meal__menu-note {
  text-align: center;
  font-size: 12px;
  color: #888;
  line-height: 1.8;
  margin-top: 40px;
}
.p-meal__menu-footer {
  margin-top: 30px;
  border-top: 1px dashed #ccc;
  padding-top: 20px;
  text-align: center;
}

.c-btn-meal {
  background: none;
  border: 1px solid #6b7654;
  color: #6b7654;
  padding: 12px 50px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-btn-meal:hover {
  background: #6b7654;
  color: #fff;
}
.c-btn-meal.is-active {
  background: #6b7654;
  color: #fff;
}

.u-close-text {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: inline-block;
}
.u-close-text:hover {
  color: #6b7654;
}

.p-allergy {
  padding: 60px 0 100px;
  background: #F1EFE9;
}
.p-allergy__header {
  text-align: center;
  margin-bottom: 30px;
}
.p-allergy__title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
.p-allergy__content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 4px;
}
@media (max-width: 800px) {
  .p-allergy__content {
    padding: 25px;
  }
}
.p-allergy__sub-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.p-allergy__box {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}
.p-allergy__list {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  list-style: disc;
  padding-left: 20px;
}

/* ==========================================================================
   Room Section（客室紹介・親要素）
   ========================================================================== */
.room {
  background-color: #2d3e2d;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.room__title-wrap {
  position: relative;
  padding: 100px 20px;
}
@media (max-width: 800px) {
  .room__title-wrap {
    padding: 60px 15px;
  }
}
.room__title-wrap {
  /* 左右の飾り線の共通設定 */
}
.room__title-wrap::before, .room__title-wrap::after,
.room__title-wrap .line-left-bottom,
.room__title-wrap .line-right,
.room__title-wrap .line-right-top,
.room__title-wrap .line-right-bottom {
  background: #fff;
  position: absolute;
}
.room__title-wrap {
  /* 左側の装飾 */
}
.room__title-wrap::before {
  content: "";
  top: 50%;
  left: 25%;
  width: 1px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .room__title-wrap::before {
    left: 5%;
    height: 30px;
  }
}
.room__title-wrap::after {
  content: "";
  top: calc(50% - 20px);
  left: 25%;
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (max-width: 800px) {
  .room__title-wrap::after {
    top: calc(50% - 15px);
    left: 5%;
    width: 15px;
  }
}
.room__title-wrap .line-left-bottom {
  top: calc(50% + 20px);
  left: 25%;
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (max-width: 800px) {
  .room__title-wrap .line-left-bottom {
    top: calc(50% + 15px);
    left: 5%;
    width: 15px;
  }
}
.room__title-wrap {
  /* 右側の装飾 */
}
.room__title-wrap .line-right {
  top: 50%;
  right: 25%;
  width: 1px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 800px) {
  .room__title-wrap .line-right {
    right: 5%;
    height: 30px;
  }
}
.room__title-wrap .line-right-top {
  top: calc(50% - 20px);
  right: 25%;
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 800px) {
  .room__title-wrap .line-right-top {
    top: calc(50% - 15px);
    right: 5%;
    width: 15px;
  }
}
.room__title-wrap .line-right-bottom {
  top: calc(50% + 20px);
  right: 25%;
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 800px) {
  .room__title-wrap .line-right-bottom {
    top: calc(50% + 15px);
    right: 5%;
    width: 15px;
  }
}
.room__title-wrap {
  /* 中央の横線 */
}
.room__title-wrap .line-center {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.room__img {
  padding: 0 20px;
}
.room__img img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 6px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.room__text {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  max-width: 810px;
  text-align: left;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .room__text {
    font-size: 14px;
    line-height: 2;
  }
}
.room__more {
  margin-top: 60px;
  height: 80px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .room__more {
    margin-top: 30px;
  }
}
.room__more a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.room__more a .arrow {
  display: block;
  margin-top: 5px;
}

/* ==========================================================================
   Room Detail（アコーディオンの中身）
   ========================================================================== */
.room-detail {
  display: none;
  background-color: #F1EFE9;
  padding: 0 40px 100px;
}
@media (max-width: 800px) {
  .room-detail {
    padding-bottom: 60px;
  }
}
.room-detail.is-active {
  -webkit-animation: roomFadeIn 0.8s ease forwards;
          animation: roomFadeIn 0.8s ease forwards;
}
.room-detail__close {
  text-align: center;
  padding: 40px 0;
}
.room-detail__close a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.room-detail__close a i {
  margin-left: 5px;
}
.room-detail__plan {
  max-width: 750px;
  margin: 0 auto 80px;
  text-align: center;
}
@media (max-width: 800px) {
  .room-detail__plan {
    margin-bottom: 50px;
  }
}
.room-detail__title {
  font-size: 32px;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .room-detail__title {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}
.room-detail__plan-name {
  font-size: 16px;
  margin-bottom: 50px;
  color: #666;
}
.room-detail__meal-item {
  margin-bottom: 40px;
}
.room-detail__meal-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.room-detail__meal-item p {
  font-size: 14px;
  line-height: 2.2;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .room-detail__meal-item p {
    text-align: left;
  }
}
.room-detail__time {
  border-top: 1px dashed #999;
  border-bottom: 1px dashed #999;
  padding: 30px 0;
  margin: 50px auto;
  max-width: 320px;
}
.room-detail__time-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}
.room-detail__time-row:last-child {
  margin-bottom: 0;
}
.room-detail__price {
  font-size: 18px;
  margin-top: 40px;
}
.room-detail__price .amount {
  font-size: 26px;
  font-weight: bold;
  margin-left: 20px;
}
.room-detail__amenity {
  max-width: 800px;
  margin: 80px auto;
}
@media (max-width: 800px) {
  .room-detail__amenity {
    margin: 50px auto;
  }
}
.room-detail .amenity-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 25px;
}
.room-detail .amenity-item:last-child {
  border-bottom: none;
}
@media (max-width: 800px) {
  .room-detail .amenity-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    text-align: left;
  }
}
.room-detail .amenity-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  font-size: 20px;
  color: #6b705c;
  text-align: center;
}
@media (max-width: 800px) {
  .room-detail .amenity-item__icon {
    text-align: left;
  }
}
.room-detail .amenity-item__content dt {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
}
.room-detail .amenity-item__content dd {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.room-detail__footer {
  text-align: center;
}
.room-detail__footer .c-btn-reserve {
  display: inline-block;
  background-color: #6b705c;
  color: #fff;
  padding: 22px 100px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.room-detail__footer .c-btn-reserve:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  .room-detail__footer .c-btn-reserve {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 18px 0;
  }
}

@-webkit-keyframes roomFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes roomFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-page-header {
  margin: 60px 0 40px;
  text-align: center;
}
.p-page-header__title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #333;
}
.p-page-header__text {
  font-size: 14px;
  color: #666;
}

.plan-items {
  padding-bottom: 100px;
}

.plan-card {
  background-color: #F1EFE9;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.plan-card__header {
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.plan-card__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.plan-card__desc {
  font-size: 14px;
  color: #555;
}
.plan-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .plan-card__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
  }
}
.plan-card__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 2px;
}
.plan-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 800px) {
  .plan-card__img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.plan-card:hover .plan-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.plan-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.plan-card__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .plan-card__info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.plan-card__plan-name {
  font-size: 16px;
  font-weight: bold;
}
.plan-card__times {
  font-size: 12px;
  color: #777;
}
.plan-card__times span {
  margin-left: 15px;
}
@media (max-width: 800px) {
  .plan-card__times span {
    margin: 0 15px 0 0;
  }
}
.plan-card__price-row {
  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 (max-width: 800px) {
  .plan-card__price-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.plan-card__price {
  font-size: 14px;
  color: #333;
}
.plan-card__price span {
  font-size: 28px;
  font-weight: bold;
  margin: 0 4px;
  font-family: serif;
}
.plan-card__reserve-btn {
  background: #6b7654;
  color: #fff;
  padding: 12px 35px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.plan-card__reserve-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 800px) {
  .plan-card__reserve-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.p-selected-header {
  margin: 40px 0 30px;
  padding: 30px;
  background-color: #F1EFE9;
  border-radius: 4px;
  border-left: 5px solid #6b7654;
}
.p-selected-header__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-selected-header__back i {
  margin-right: 8px;
}
.p-selected-header__back:hover {
  color: #6b7654;
}
.p-selected-header__title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
@media (max-width: 800px) {
  .p-selected-header__title {
    font-size: 20px;
  }
}
.p-selected-header__text {
  font-size: 14px;
  color: #555;
}

.p-detail-group {
  background-color: #f9f8f4;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 4px;
}
@media (max-width: 800px) {
  .p-detail-group {
    padding: 25px 20px;
  }
}
.p-detail-group__header {
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 800px) {
  .p-detail-group__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-detail-group__title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}
.p-detail-group__title i {
  margin-right: 10px;
  color: #6b7654;
  font-size: 0.8em;
}
.p-detail-group__times {
  font-size: 13px;
  color: #777;
}

.p-detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #dcdcdc;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 800px) {
  .p-detail-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-detail-row:last-child {
  border-bottom: none;
}
.p-detail-row__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
@media (max-width: 800px) {
  .p-detail-row__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.p-detail-row__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-detail-row:hover .p-detail-row__img-wrap img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-detail-row__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-detail-row__name {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}
.p-detail-row__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}
@media (max-width: 800px) {
  .p-detail-row__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-detail-row__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  font-size: 13px;
}
.p-detail-row__specs .spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-detail-row__specs .spec-item i {
  width: 18px;
  color: #6b7654;
  margin-right: 8px;
  text-align: center;
}
.p-detail-row__meal {
  font-size: 13px;
  background: #fff;
  padding: 5px 12px;
  border: 1px solid #eee;
  border-radius: 20px;
  white-space: nowrap;
}
.p-detail-row__price {
  font-size: 14px;
}
.p-detail-row__price .num {
  font-size: 28px;
  font-weight: bold;
  margin-left: 5px;
  font-family: "Zen Old Mincho", serif;
}
.p-detail-row__btn {
  background-color: #6b7654;
  color: #fff !important;
  padding: 12px 40px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.p-detail-row__btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------
   ヘッダー（共通・予約ページ）
--------------------------------------------------------- */
.l-header {
  background-color: #2d3e2d;
  border-bottom: 1px solid #eee;
}

.p-header-logo {
  padding: 30px 0;
  background-color: #2d3e2d;
  text-align: center;
}
.p-header-logo img {
  height: 80px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ---------------------------------------------------------
   予約ページ全体
--------------------------------------------------------- */
.reservation-page {
  padding: 80px 0;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .reservation-page {
    padding: 40px 0;
  }
}

/* ---------------------------------------------------------
   ステップナビ
--------------------------------------------------------- */
.p-step-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .p-step-list {
    margin-bottom: 40px;
    padding: 0 10px;
  }
}
.p-step-list__item {
  position: relative;
  text-align: center;
  opacity: 0.4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 200px;
}
.p-step-list__item.is-active {
  opacity: 1;
}
.p-step-list__item .circle {
  width: 40px;
  height: 40px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
@media (max-width: 800px) {
  .p-step-list__item .circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.p-step-list__item p {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 800px) {
  .p-step-list__item p {
    font-size: 11px;
  }
}
.p-step-list__item p span {
  font-size: 11px;
  display: block;
  margin-top: 5px;
  font-weight: normal;
  color: #666;
}
.p-step-list__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dotted #ccc;
  z-index: 1;
}
@media (max-width: 800px) {
  .p-step-list__item:not(:first-child)::before {
    top: 16px;
  }
}

/* ---------------------------------------------------------
   確認テーブル
--------------------------------------------------------- */
.c-confirm-table {
  border-top: 2px solid #6b7654;
  margin-bottom: 60px;
}
.c-confirm-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
}
@media (max-width: 800px) {
  .c-confirm-table__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-confirm-table__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  background: #f9f9f9;
  padding: 20px;
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 800px) {
  .c-confirm-table__row dt {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.c-confirm-table__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  font-size: 14px;
}
.c-confirm-table__row.total {
  background: #F1EFE9;
}
.c-confirm-table__row.total span {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
  color: #6b7654;
}

/* ---------------------------------------------------------
   フォームレイアウト
--------------------------------------------------------- */
.p-section-label {
  font-weight: bold;
  margin: 60px 0 20px;
  font-size: 18px;
  color: #333;
}
@media (max-width: 800px) {
  .p-section-label {
    margin: 40px 0 15px;
  }
}

.c-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #eee;
}
@media (max-width: 800px) {
  .c-form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-form-row:last-of-type {
  border-bottom: 1px solid #eee;
}
.c-form-row__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  background: #f2f2f2;
  padding: 30px 20px;
  font-weight: bold;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .c-form-row__label {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.c-form-row__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
}
@media (max-width: 800px) {
  .c-form-row__content {
    padding: 30px 20px;
  }
}
.c-form-row__header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
  color: #6b7654;
}
.c-form-row__header-box::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ccc;
}

/* ---------------------------------------------------------
   入力パーツ（共通スタイル）
--------------------------------------------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=time],
select,
textarea {
  border: 1px solid #aaa;
  padding: 12px;
  font-size: 15px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-radius: 4px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=time]:focus,
select:focus,
textarea:focus {
  border-color: #6b7654;
  outline: none;
}
@media (max-width: 800px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=time],
  select,
  textarea {
    font-size: 16px;
  }
}

/* セレクトボックス専用（ドロップダウン用） */
select {
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
@media (max-width: 800px) {
  select {
    width: 100%;
  }
}
select:invalid {
  color: #aaa;
}

textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
}

.c-field {
  margin-bottom: 30px;
}
.c-field__title {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
.c-field__title.is-required::after {
  content: "必須";
  margin-left: 10px;
  font-size: 10px;
  padding: 2px 6px;
  background: #d32f2f;
  color: #fff;
  vertical-align: middle;
  border-radius: 2px;
}

.c-radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-right: 15px;
}

/* ---------------------------------------------------------
   ボタン
--------------------------------------------------------- */
/* ---------------------------------------------------------
   ボタン（1ページ目用）
--------------------------------------------------------- */
/* ---------------------------------------------------------
   ユーティリティ
--------------------------------------------------------- */
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-flex-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

select[name=count-m],
select[name=count-f] {
  text-align: center;
  padding-left: 20px;
}

.u-w100p {
  width: 100% !important;
}

.u-w80 {
  width: 120px;
}

.u-red {
  color: #d32f2f;
  font-size: 14px;
}

.u-center {
  text-align: center;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-ml20 {
  margin-left: 20px;
}
@media (max-width: 800px) {
  .u-ml20 {
    margin-left: 0;
  }
}

.p-cancel__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 300px;
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
  font-size: 14px;
}
@media (max-width: 800px) {
  .p-cancel__list li {
    max-width: 100%;
  }
}

/* ---------------------------------------------------------
   お支払いページ専用スタイル
--------------------------------------------------------- */
.p-payment-notice {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-top: 40px;
}
.p-payment-notice::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}

/* 2・3ページ目にある、ボタンが並ぶエリアの指定 */
.p-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 50px;
  /* commonにある .c-btn-submit をこの中だけ上書き */
}
.p-btn-area .c-btn-submit {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
}
@media (max-width: 800px) {
  .p-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* 戻るボタン */
.c-btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  padding: 18px 0;
  background: #fff;
  /* 変数 $color-text (#fff) を使用 */
  border: 1px solid #ccc;
  color: #333;
  /* 変数 $color-font (#333) を使用 */
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-btn-back:hover {
  background: #f2f2f2;
}
@media (max-width: 800px) {
  .c-btn-back {
    width: 100%;
  }
}

/* 送信ボタン */
/* ---------------------------------------------------------
   追加のユーティリティ
--------------------------------------------------------- */
.u-mt10 {
  margin-top: 10px;
}

.u-gray {
  color: #888;
}

.u-small {
  font-size: 12px;
}

/* ---------------------------------------------------------
   最終確認ページ専用スタイル
--------------------------------------------------------- */
.p-reservation-confirm {
  margin-top: 40px;
}

.p-confirm-section {
  margin-bottom: 40px;
}
.p-confirm-section__title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #6b7654;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #333;
}

/* 確認用のテーブル風リスト */
.c-confirm-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 800px) {
  .c-confirm-table__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.c-confirm-table__row dt {
  width: 200px;
  font-weight: bold;
  color: #666;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-confirm-table__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}
.c-confirm-table__row {
  /* 合計金額の行だけ特別に目立たせる */
}
.c-confirm-table__row.is-total {
  background-color: #F1EFE9;
  padding: 20px;
  border-bottom: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-confirm-table__row.is-total .u-price {
  font-size: 24px;
  font-weight: bold;
  color: #d32f2f;
}

/* 同意チェックボックスのエリア */
.p-consent-box {
  text-align: center;
  background: #f9f9f9;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid #ddd;
}
.p-consent-box .c-checkbox {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: bold;
}
.p-consent-box .c-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
}

/* 最終確定ボタン固有の調整 */
.c-btn-submit.is-final {
  background-color: #d32f2f;
  max-width: 500px;
}

.u-text-error {
  color: #d32f2f;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.access-guide {
  padding: 100px 0;
  background-color: #fff;
}
.access-guide .access-category {
  margin-bottom: 100px;
}
.access-guide .access-category__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 60px;
  color: #5d6d4e;
  position: relative;
  padding-bottom: 15px;
}
.access-guide .access-category__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #5d6d4e;
}
@media (max-width: 800px) {
  .access-guide .access-category__title {
    font-size: 1.3rem;
  }
}
.access-guide .access-group {
  margin-bottom: 60px;
}
.access-guide .access-group__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-guide .access-group__title::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #5d6d4e;
  margin-right: 12px;
}
.access-guide .access-destination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .access-guide .access-destination-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access-guide .access-rows-group {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.access-guide .access-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.access-guide .access-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .access-guide .access-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.access-guide .access-node {
  width: 130px;
  height: 75px;
  border: 1px solid #333;
  background: #F1EFE9;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 0.85rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.access-guide .access-node .en {
  font-size: 0.65rem;
  font-weight: normal;
  margin-top: 4px;
  color: #777;
}
@media (max-width: 800px) {
  .access-guide .access-node {
    width: 120px;
    height: 65px;
  }
}
.access-guide .access-path {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  padding: 0 10px;
  min-width: 350px;
}
.access-guide .access-path .label {
  font-size: 0.7rem;
  margin-bottom: 8px;
  text-align: center;
  color: #333;
}
@media (max-width: 800px) {
  .access-guide .access-path {
    min-width: 80px;
  }
}
.access-guide .arrow-dotted,
.access-guide .arrow-solid {
  width: 100%;
  height: 1px;
  position: relative;
}
.access-guide .arrow-dotted::after,
.access-guide .arrow-solid::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.access-guide .arrow-dotted {
  border-top: 1px dotted #333;
}
.access-guide .arrow-solid {
  border-top: 1px solid #333;
}
.access-guide .access-goal {
  width: 80px;
  background-color: #5d6d4e;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.access-guide .access-goal .goal-text {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .access-guide .access-goal {
    width: 100%;
    height: 50px;
    margin-left: 0;
    margin-top: 20px;
  }
  .access-guide .access-goal .goal-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
  }
}/*# sourceMappingURL=style.css.map */