*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1759px) and (min-width: 767.98px) {
  html {
    font-size: calc(16 / 1760 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #202524;
  font-family: "Noto Serif JP", sans-serif;
}

html.is-drawer-open,
body.is-drawer-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 767.98px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  width: min(1760px, 100%);
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767.96px) {
  .l-inner {
    padding-inline: 1.5625rem;
  }
}

.l-inner__narrow {
  width: min(1280px, 100%);
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767.96px) {
  .l-inner__narrow {
    padding-inline: 1.5625rem;
  }
}

.l-section__padding {
  padding-block: 120px;
}
@media screen and (max-width: 767.96px) {
  .l-section__padding {
    padding-block: 80px;
  }
}

.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.c_text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767.96px) {
  .c_text {
    font-size: 16px;
  }
}

.c-section__title {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 52.5px */
  letter-spacing: 1.75px;
}
@media screen and (max-width: 767.96px) {
  .c-section__title {
    font-size: 24px;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  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;
}
.c-modal[hidden] {
  display: none;
}
.c-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.c-modal__container {
  position: relative;
  z-index: 1;
  background-color: #f0ede5;
  width: min(42.5rem, 100% - 2.5rem);
  max-height: 90dvh;
  overflow-y: auto;
  padding: 3.75rem 3.75rem 4.375rem;
}
@media screen and (max-width: 767.96px) {
  .c-modal__container {
    padding: 3.125rem 1.5625rem 3.125rem;
  }
}

.c-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  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;
  padding: 0;
}
.c-modal__close span {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #202524;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-modal__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (any-hover: hover) {
  .c-modal__close:hover span {
    opacity: 0.5;
  }
}

.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.c-modal__head {
  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;
  gap: 0.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c8c5bf;
}

.c-modal__title {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1;
}
@media screen and (max-width: 767.96px) {
  .c-modal__title {
    font-size: 1.5rem;
  }
}

.c-modal__title-sub {
  font-size: 0.875rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #aaa497;
  line-height: 1;
}

.c-modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.c-modal__text {
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.8;
}
@media screen and (max-width: 767.96px) {
  .c-modal__text {
    font-size: 0.875rem;
  }
}

.p-fv {
  position: relative;
}

.p-fv__parallax {
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #3a4340;
}
.p-fv__parallax img {
  display: block;
  width: 100%;
  height: calc(100% + 18.75rem + 100px);
  -webkit-margin-before: -6.25rem;
          margin-block-start: -6.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-fv__scrolldown-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.1875rem;
  height: 18.75rem;
  background-color: #888;
  overflow: hidden;
}
@media screen and (max-width: 767.96px) {
  .p-fv__scrolldown-bar {
    height: 9.375rem;
  }
}

.p-fv__scrolldown-bar-active {
  position: absolute;
  bottom: 100%;
  width: 0.1875rem;
  height: 9.375rem;
  background-color: white;
  -webkit-animation: 3s ease-in-out backwards infinite scrollDown;
          animation: 3s ease-in-out backwards infinite scrollDown;
}

@-webkit-keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -9.375rem;
  }
}

@keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -9.375rem;
  }
}
.p-concept {
  background-color: #3a4340;
  padding-block: 15.375rem 9.625rem;
}
@media screen and (max-width: 767.96px) {
  .p-concept {
    padding-block: 6.875rem 6.625rem;
  }
}

.p-concept__body {
  position: relative;
  max-width: 75.625rem;
  margin-inline: auto;
  -webkit-padding-after: 0.25rem;
          padding-block-end: 0.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-concept__body {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
}

.p-concept__deco {
  position: absolute;
  z-index: 0;
}
.p-concept__deco img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept__deco.--1 {
  top: 3.25rem;
  left: 0;
  width: 17.5rem;
  aspect-ratio: 280/200;
}
@media screen and (max-width: 767.96px) {
  .p-concept__deco.--1 {
    top: 8.625rem;
    width: 6.25rem;
    aspect-ratio: 100/70;
  }
}
.p-concept__deco.--2 {
  top: 9.1875rem;
  right: -11rem;
  width: 21rem;
  aspect-ratio: 336/230;
}
@media screen and (max-width: 767.96px) {
  .p-concept__deco.--2 {
    top: 16.25rem;
    right: calc(50% - 50vw + 0.625rem);
    width: 6.8125rem;
    aspect-ratio: 109/78;
  }
}
.p-concept__deco.--3 {
  inset-block-start: 28.25rem;
  inset-inline-start: -14.375rem;
  width: 16.875rem;
  aspect-ratio: 270/300;
}
@media screen and (max-width: 767.96px) {
  .p-concept__deco.--3 {
    inset-block-start: 26.3125rem;
    left: calc(50% - 50vw);
    width: 5.625rem;
    aspect-ratio: 90/100;
  }
}
.p-concept__deco.--4 {
  inset-block-end: 8.8125rem;
  inset-inline-end: 0;
  width: 25rem;
  aspect-ratio: 400/290;
}
@media screen and (max-width: 767.96px) {
  .p-concept__deco.--4 {
    inset-block-end: 6.625rem;
    right: 0;
    width: 9.375rem;
    aspect-ratio: 150/100;
  }
}
.p-concept__deco.--5 {
  bottom: 0;
  left: 7.75rem;
  width: 25rem;
  aspect-ratio: 400/390;
}
@media screen and (max-width: 767.96px) {
  .p-concept__deco.--5 {
    bottom: 0;
    left: 1.125rem;
    width: 7.5rem;
    aspect-ratio: 120/117;
  }
}

.p-concept__main {
  position: relative;
  z-index: 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;
  text-align: center;
  row-gap: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-concept__main {
    row-gap: 3.75rem;
  }
}

.p-concept__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.5rem;
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1.08;
  color: #f1f6f4;
  text-align: left;
}
@media screen and (max-width: 767.96px) {
  .p-concept__title {
    font-size: 1.75rem;
    gap: 1.5rem;
  }
}

.p-concept__title-text {
  display: block;
  color: #f1f6f4;
  letter-spacing: 0.08em;
}

.p-concept__text-content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: #f1f6f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.8125rem;
  -webkit-margin-after: 32.5625rem;
          margin-block-end: 32.5625rem;
}
@media screen and (max-width: 767.96px) {
  .p-concept__text-content {
    font-size: 0.875rem;
    -webkit-margin-after: 18.375rem;
            margin-block-end: 18.375rem;
  }
}

.p-concept__text {
  display: block;
}

.p-villa {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#e7e4de), to(#f0ede5));
  background: linear-gradient(to bottom, #e7e4de, #f0ede5);
  padding-block: 9.375rem;
  overflow: hidden;
}
.p-villa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/villa-bg-mask.webp");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767.96px) {
  .p-villa {
    padding-block: 3.75rem;
  }
}

.p-villa__head {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__head {
    margin-bottom: 2.5rem;
  }
}

.p-villa__title {
  font-size: 2.875rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1;
}
@media screen and (max-width: 767.96px) {
  .p-villa__title {
    font-size: 1.875rem;
  }
}

.p-villa__title-en {
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #aaa497;
  line-height: 1;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__title-en {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}

.p-villa__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

.p-villa__tab-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  letter-spacing: 0.03em;
  line-height: 1.5;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.96px) {
  .p-villa__tab-btn {
    height: 3.125rem;
    font-size: 0.875rem;
  }
}
.p-villa__tab-btn.is-active {
  background-color: #ffffff;
  border-top: 1px solid #c5a761;
  border-right: 1px solid #c5a761;
  border-left: 1px solid #c5a761;
  border-bottom: none;
}
.p-villa__tab-btn:nth-of-type(1).is-active {
  border-left: none;
}
.p-villa__tab-btn:nth-of-type(3).is-active {
  border-right: none;
}
@media (any-hover: hover) {
  .p-villa__tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.p-villa__panel {
  display: none;
  position: relative;
  z-index: 1;
}
.p-villa__panel.is-active {
  display: block;
}

.p-villa__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-villa__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-villa__info {
  padding: 5.625rem 3.75rem;
  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;
}
@media screen and (max-width: 767.96px) {
  .p-villa__info {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 2.5rem 1.5625rem;
  }
}

.p-villa__room-name {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__room-name {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.p-villa__desc {
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

.p-villa__specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__specs {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.p-villa__spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
}
@media screen and (max-width: 767.96px) {
  .p-villa__spec-row {
    font-size: 0.875rem;
  }
}

.p-villa__spec-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.25rem;
          flex: 0 0 6.25rem;
}

.p-villa__spec-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-villa__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 767.96px) {
  .p-villa__btn {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-villa__btn:hover {
    opacity: 0.7;
  }
}

.p-villa__btn-line {
  display: block;
  width: 11.25rem;
  height: 1px;
  background-color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-villa__btn-line {
    width: 7.5rem;
  }
}

.p-villa__image {
  overflow: hidden;
  background-color: #e5e7eb;
  aspect-ratio: 570/600;
  width: 35.625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767.96px) {
  .p-villa__image {
    aspect-ratio: 325/280;
    width: 20.3125rem;
  }
}
.p-villa__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-villa__slider {
  background-color: #ffffff;
  padding-top: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.96px) {
  .p-villa__slider {
    padding-top: 1.25rem;
  }
}

.p-villa__slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.8125rem;
}
@media screen and (max-width: 767.96px) {
  .p-villa__slide-list {
    gap: 0.5rem;
  }
}

.p-villa__slide-item {
  aspect-ratio: 370/270;
  width: 23.125rem;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  background-color: #d9d9d9;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767.96px) {
  .p-villa__slide-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 6.25rem;
  }
}
.p-villa__slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (any-hover: hover) {
  .p-villa__slide-item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.8;
  }
}
.p-villa__slide-item.is-active {
  outline: 2px solid #c5a761;
  outline-offset: -2px;
}

.p-dining {
  background-color: #f0ede5;
  padding-block: 6.25rem 9.375rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining {
    padding-block: 4.375rem 5rem;
  }
}

.p-dining__head {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__head {
    margin-bottom: 2.5rem;
  }
}

.p-dining__title {
  font-size: 2.875rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1;
}
@media screen and (max-width: 767.96px) {
  .p-dining__title {
    font-size: 1.625rem;
  }
}

.p-dining__title-en {
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #aaa497;
  line-height: 1;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__title-en {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-dining__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__body {
    gap: 1.875rem;
  }
}

.p-dining__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.96px) {
  .p-dining__row {
    display: contents;
  }
}

.p-dining__main-image {
  width: 47.8125rem;
  height: 28.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  background-color: #d9d9d9;
}
@media screen and (max-width: 767.96px) {
  .p-dining__main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 765/450;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-dining__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dining__content {
  width: 33.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  gap: 3.75rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__content {
    width: 100%;
    gap: 1.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-dining__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__content-text {
    gap: 1rem;
  }
}

.p-dining__text {
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
}
@media screen and (max-width: 767.96px) {
  .p-dining__text {
    font-size: 0.875rem;
  }
}

.p-dining__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-dining__note {
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
}
@media screen and (max-width: 767.96px) {
  .p-dining__note {
    font-size: 0.8125rem;
  }
}

.p-dining__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: 2rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.75rem;
  }
}

.p-dining__menu-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16.0625rem;
  height: 3.5rem;
  font-size: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767.96px) {
  .p-dining__menu-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    height: 3rem;
    font-size: 0.875rem;
  }
}
.p-dining__menu-btn.--dinner {
  background-color: #c0d2cc;
  border: 1px solid #b7c6c1;
}
.p-dining__menu-btn.--breakfast {
  background-color: #e9ddc3;
  border: 1px solid #c8c1b4;
}
@media (any-hover: hover) {
  .p-dining__menu-btn:hover {
    opacity: 0.8;
  }
}

.p-diningmodal__content {
  padding: 2.5rem 1.5rem;
  border: none;
  background-color: #ffffff;
  width: min(41.375rem, 100% - 2rem);
  max-height: 90dvh;
  overflow-y: auto;
}
.p-diningmodal__content::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.p-diningmodal__content::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.p-diningmodal__inner {
  border: 1px solid #c5a761;
  padding: 5rem 9.75rem 3.125rem;
  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;
  gap: 3rem;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__inner {
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }
}

.p-diningmodal__content--breakfast {
  width: min(47.5rem, 100% - 2rem);
}

.p-diningmodal__list--breakfast {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}

.p-diningmodal__item--breakfast {
  width: 25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__item--breakfast {
    width: 100%;
  }
}

.p-diningmodal__desc--left {
  text-align: left;
}

.p-diningmodal__img {
  width: 25rem;
  aspect-ratio: 400/300;
  overflow: hidden;
  background-color: #d9d9d9;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.p-diningmodal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dining-modal__close-btn {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
}

.p-diningmodal__title {
  white-space: nowrap;
  font-size: 2.875rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  text-align: left;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__title {
    font-size: 1.875rem;
  }
}

.p-diningmodal__list {
  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;
  gap: 1.75rem;
}

.p-diningmodal__item {
  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;
  gap: 0.3125rem;
  width: 18rem;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__item {
    width: 100%;
  }
}

.p-diningmodal__course {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
  text-align: center;
}

.p-diningmodal__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Serif JP", sans-serif;
  color: #202524;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767.96px) {
  .p-diningmodal__desc {
    font-size: 0.875rem;
  }
}

.p-diningmodal__close-btn {
  width: 30px;
  height: 30px;
  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: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-diningmodal__close-btn img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-diningmodal__close-btn img:hover {
    opacity: 0.8;
  }
}

.p-dining__sub-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-dining__sub-images {
    gap: 0.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-dining__sub-image {
  width: 32.1875rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 515/360;
  overflow: hidden;
  background-color: #d9d9d9;
}
.p-dining__sub-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__logo {
  position: absolute;
  top: 4.875rem;
  left: 50%;
  translate: -50% 0;
  width: 10.75rem;
  height: auto;
  aspect-ratio: 172/284;
  z-index: 110;
}
@media screen and (max-width: 767.96px) {
  .p-header__logo {
    top: 4.375rem;
    width: 5rem;
    aspect-ratio: 80/132;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
}

.p-header {
  width: 100%;
  z-index: 100;
  position: relative;
}

.p-header--fixed {
  position: fixed;
  background-color: rgba(58, 67, 64, 0.9);
  translate: 0 -100%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-header--fixed.js-scroll {
  translate: 0 0;
}
@media screen and (max-width: 767.96px) {
  .p-header--fixed {
    display: none;
  }
}

.p-header--start {
  background-color: #3a4340;
  position: relative;
}
@media screen and (max-width: 767.96px) {
  .p-header--start .p-header__list,
  .p-header--start .p-header__start-right {
    display: none;
  }
}

.p-header--start--sp {
  display: none;
}
@media screen and (max-width: 767.96px) {
  .p-header--start--sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    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;
    gap: 12px;
    padding: 0.4375rem 1.5625rem;
    background-color: rgba(227, 219, 203, 0.8999999762);
  }
}

@media screen and (max-width: 767.96px) {
  html.is-drawer-open .p-header--start--sp {
    z-index: 102;
    background-color: transparent;
  }
}
html.is-drawer-open .p-header--start--sp.p-header--start--sp {
  bottom: 40px;
  left: -22px;
}

@media screen and (max-width: 767.96px) {
  html.is-drawer-open .p-header__btn {
    display: none;
  }
}

@media screen and (max-width: 767.96px) {
  html.is-drawer-open .p-header__tel-link {
    display: none;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header--fixed .p-header__inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 2.5rem;
}

.p-header--start .p-header__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5.28125rem 7.5rem 5.28125rem 22.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-header--start .p-header__inner {
    padding: unset;
    padding-block: 4.375rem 12rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.p-header__start-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  position: relative;
  left: 1rem;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.p-header__link {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.0425rem;
  color: #e5e7eb;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__link:hover {
    opacity: 0.7;
  }
}

.p-header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  padding: 1rem 3.125rem;
  background-color: #e7e4de;
  border: 1px solid #3a4340;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.045rem;
  color: #202524;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767.96px) {
  .p-header__btn {
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 0.8;
  }
}

.p-header__btn-icon {
  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: 1.0625rem;
  height: 1.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-header__tel-link {
  display: none;
}
@media screen and (max-width: 767.96px) {
  .p-header__tel-link {
    display: block;
    width: 2.25rem;
    height: auto;
    aspect-ratio: 1;
  }
  .p-header__tel-link img {
    width: 100%;
    height: 100%;
  }
}

.p-drawer__icon {
  width: 3rem;
  height: 3rem;
  background-image: url("../img/hamburger-icon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 102;
}
@media (min-width: 767.98px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon.js-show {
  background-image: url("../img/hamburger-close.webp");
  margin-left: auto;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(58, 67, 64, 0.8999999762);
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 242px 40px;
}

.p-drawer__list {
  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;
  row-gap: 28px;
  margin-bottom: 40px;
}
.p-drawer__list li a {
  font-size: 20px;
  font-weight: 400;
}

.p-drawer__link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  color: #e5e7eb;
}

.p-drawer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.p-drawer__btn {
  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: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
  color: #202524;
  padding: 15px 36px 15px 40px;
  background-color: rgba(222, 195, 141, 0.8999999762);
  border: 1px solid #6a6251;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-drawer__tel-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
  color: #202524;
  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;
  padding: 15px 36px 15px 40px;
  background-color: #e7e4de;
  border: 1px solid #6a6251;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-drawer__tel-link svg {
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  vertical-align: bottom;
}

.p-faq {
  padding-block: 6.25rem 9.375rem;
  background-color: #f0ede5;
}
@media screen and (max-width: 767.96px) {
  .p-faq {
    padding-block: 3.75rem 5.625rem;
  }
}

.p-faq__inner {
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-faq__inner {
    padding-inline: 1.25rem;
  }
}

.p-faq__head {
  text-align: center;
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
@media screen and (max-width: 767.96px) {
  .p-faq__head {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}

.p-faq__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #202524;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}
@media screen and (max-width: 767.96px) {
  .p-faq__title {
    font-size: 1.5rem;
  }
}

.p-faq__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1875rem;
  color: #aaa497;
  text-transform: uppercase;
}

.p-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1px;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.p-faq__item {
  -webkit-border-before: 1px solid rgba(58, 67, 64, 0.2);
          border-block-start: 1px solid rgba(58, 67, 64, 0.2);
}
.p-faq__item:last-child {
  -webkit-border-after: 1px solid rgba(58, 67, 64, 0.2);
          border-block-end: 1px solid rgba(58, 67, 64, 0.2);
}

.p-faq__question {
  display: block;
  position: relative;
  padding-block: 1.5rem;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-padding-end: 4.5rem;
          padding-inline-end: 4.5rem;
  cursor: pointer;
}
.p-faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.9375rem;
  height: 0.46875rem;
  background-image: url("../img/faq-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767.96px) {
  .p-faq__question {
    padding-block: 1.25rem;
    -webkit-padding-start: 2.25rem;
            padding-inline-start: 2.25rem;
    -webkit-padding-end: 3.5rem;
            padding-inline-end: 3.5rem;
  }
}

details[open] .p-faq__question::before {
  rotate: 180deg;
}

.p-faq__question-text {
  display: block;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-faq__question-text {
    font-size: 0.875rem;
  }
}

.js-content {
  overflow: hidden;
}

.p-faq__answer {
  -webkit-padding-before: 0.25rem;
          padding-block-start: 0.25rem;
  -webkit-padding-after: 1.75rem;
          padding-block-end: 1.75rem;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-padding-end: 4.5rem;
          padding-inline-end: 4.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-faq__answer {
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    -webkit-padding-start: 2.25rem;
            padding-inline-start: 2.25rem;
    -webkit-padding-end: 1.5rem;
            padding-inline-end: 1.5rem;
  }
}

.p-faq__answer-text {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-faq__answer-text {
    font-size: 0.875rem;
  }
}

.p-simulator {
  background-color: #f5f5f5;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-simulator {
    padding-block: 3.75rem 3.75rem;
  }
}

.p-simulator__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.p-simulator__questions {
  background-color: #fff;
  border-radius: 0.25rem;
  padding: 0.5rem 2.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__questions {
    padding: 0.5rem 1.25rem;
  }
}

.p-simulator__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.p-simulator__item:last-child {
  border-bottom: none;
}

.p-simulator__question-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;
  gap: 1rem;
}

.p-simulator__question-text {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__question-text {
    font-size: 0.875rem;
  }
}

.p-simulator__q-num {
  -webkit-margin-end: 0.25rem;
          margin-inline-end: 0.25rem;
  color: #333;
}

.p-simulator__q-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b8e6e;
  white-space: nowrap;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__q-value {
    font-size: 1.25rem;
  }
}

.p-simulator__q-unit {
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-margin-start: 0.125rem;
          margin-inline-start: 0.125rem;
}

.p-simulator__range {
  width: 100%;
  height: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ddd;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
}
.p-simulator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0b8e6e;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
@media (any-hover: hover) {
  .p-simulator__range::-webkit-slider-thumb:hover {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.p-simulator__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0b8e6e;
  cursor: pointer;
  border: none;
}

.p-simulator__range-minmax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.75rem;
  color: #aaa;
  -webkit-margin-before: 0.125rem;
          margin-block-start: 0.125rem;
}

.p-simulator__result {
  background-color: #c0392b;
  color: #fff;
  padding: 2rem 3rem 2.25rem;
  border-radius: 0.375rem;
  text-align: center;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__result {
    padding: 1.75rem 1.25rem 1.75rem;
  }
}

.p-simulator__result-label {
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-margin-after: 0.75rem;
          margin-block-end: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.p-simulator__result-total {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__result-total {
    font-size: 3rem;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}

.p-simulator__result-unit {
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-margin-start: 0.25rem;
          margin-inline-start: 0.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__result-unit {
    font-size: 1.125rem;
  }
}

.p-simulator__result-breakdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-padding-before: 1.25rem;
          padding-block-start: 1.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__result-breakdown {
    gap: 2rem;
  }
}

.p-simulator__result-breakdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-simulator__result-period {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.p-simulator__result-value {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767.96px) {
  .p-simulator__result-value {
    font-size: 1.0625rem;
  }
}

.p-phone-demo {
  background-color: #1a1a2e;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-phone-demo {
    padding-block: 3.75rem;
  }
}

.p-phone-demo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-phone-demo__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.p-phone-demo__text {
  -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;
  gap: 1.5rem;
}

.p-phone-demo__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 767.96px) {
  .p-phone-demo__title {
    font-size: 1.625rem;
  }
}

.p-phone-demo__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.p-phone-demo__device {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-phone-demo__frame {
  width: 17.5rem;
  height: 35rem;
  background-color: #fff;
  border-radius: 2.5rem;
  border: 0.625rem solid #222;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0 0.125rem #444, 0 1.875rem 5rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 0 0.125rem #444, 0 1.875rem 5rem rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767.96px) {
  .p-phone-demo__frame {
    width: 15rem;
    height: 30rem;
    border-radius: 2rem;
    border-width: 0.5rem;
  }
}

.p-phone-demo__notch {
  width: 6.25rem;
  height: 1.5rem;
  background-color: #222;
  border-radius: 0 0 1rem 1rem;
  margin-inline: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.96px) {
  .p-phone-demo__notch {
    width: 5rem;
    height: 1.25rem;
  }
}

.p-phone-demo__home-bar {
  width: 5rem;
  height: 0.25rem;
  background-color: #999;
  border-radius: 0.125rem;
  margin-inline: auto;
  margin-block: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-phone-demo__screen {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: -webkit-grab;
  cursor: grab;
}
.p-phone-demo__screen:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-phone-demo__screen::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.p-phone-demo__screen::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}
.p-phone-demo__screen::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 2px;
}
.p-phone-demo__screen::-webkit-scrollbar-thumb:hover {
  background: #888;
}
.p-phone-demo__screen {
  scrollbar-width: thin;
  scrollbar-color: #aaa #f0f0f0;
}

.p-phone-demo__content {
  width: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 1.5rem;
}

.p-phone-demo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.p-phone-demo__card--mini {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 0.25rem);
          flex: 1 1 calc(50% - 0.25rem);
  min-width: 5rem;
}

.p-phone-demo__card {
  background-color: #f8f9fc;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}

.p-phone-demo__card-label {
  font-size: 0.6875rem;
  color: #888;
  font-weight: 500;
}

.p-phone-demo__card-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.p-phone-demo__card-sub {
  font-size: 0.6875rem;
  color: #0b8e6e;
  font-weight: 600;
}

.p-phone-demo__card--graph {
  background-color: #eef4ff;
}

.p-phone-demo__graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.25rem;
  height: 3.75rem;
  overflow-x: scroll;
  -webkit-padding-after: 0.25rem;
          padding-block-end: 0.25rem;
}
.p-phone-demo__graph::-webkit-scrollbar {
  height: 3px;
}
.p-phone-demo__graph::-webkit-scrollbar-track {
  background: #dce8ff;
  border-radius: 2px;
}
.p-phone-demo__graph::-webkit-scrollbar-thumb {
  background: #4a7fdc;
  border-radius: 2px;
}
.p-phone-demo__graph {
  scrollbar-width: thin;
  scrollbar-color: #4a7fdc #dce8ff;
}
.p-phone-demo__graph span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.125rem;
  background-color: #4a7fdc;
  border-radius: 0.125rem 0.125rem 0 0;
  display: block;
}
.p-phone-demo__graph span:last-child {
  background-color: #1a4bc4;
}

.p-phone-demo__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
.p-phone-demo__list li {
  font-size: 0.75rem;
  color: #444;
  -webkit-padding-after: 0.375rem;
          padding-block-end: 0.375rem;
  border-bottom: 1px solid #eee;
}
.p-phone-demo__list li:last-child {
  border-bottom: none;
  -webkit-padding-after: 0;
          padding-block-end: 0;
}

.p-local-guide {
  background-color: #f0ede5;
  -webkit-padding-before: 2.5rem;
          padding-block-start: 2.5rem;
  -webkit-padding-after: 36.6666666667vw;
          padding-block-end: 36.6666666667vw;
  position: relative;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide {
    -webkit-padding-before: 5.625rem;
            padding-block-start: 5.625rem;
    -webkit-padding-after: 17.5rem;
            padding-block-end: 17.5rem;
  }
}

.p-local-guide__container {
  position: relative;
  -webkit-padding-after: 21.25rem;
          padding-block-end: 21.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__container {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
}

.p-local-guide__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-local-guide__wrapper {
  -webkit-padding-before: 6.875rem;
          padding-block-start: 6.875rem;
  -webkit-padding-start: 14.8125rem;
          padding-inline-start: 14.8125rem;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__wrapper {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.p-local-guide__head {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__head {
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}

.p-local-guide__title {
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__title {
    font-size: 2rem;
  }
}

.p-local-guide__title-en {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #aaa497;
  text-transform: uppercase;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__title-en {
    font-size: 0.8125rem;
  }
}

.p-local-guide__wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__wrapper-content {
    gap: 1rem;
  }
}

.p-local-guide__wrapper-content-text-up {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__wrapper-content-text-up {
    font-size: 1rem;
  }
}

.p-local-guide__wrapper-content-text-down {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #202524;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__wrapper-content-text-down {
    font-size: 0.875rem;
  }
}

.p-local-guide__item-image-1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50vw;
  height: 36.25rem;
  aspect-ratio: 960/580;
  -webkit-margin-end: calc(-50vw + 50% + 8px);
          margin-inline-end: calc(-50vw + 50% + 8px);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.p-local-guide__item-image-1 img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__item-image-1 {
    width: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.p-local-guide__item-image-2 {
  position: absolute;
  z-index: 3;
  width: 25rem;
  left: 0rem;
  bottom: 4.6875rem;
  aspect-ratio: 400/280;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__item-image-2 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}
.p-local-guide__item-image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-local-guide__item-image-3 {
  position: absolute;
  z-index: 1;
  width: 15rem;
  left: 35.8125rem;
  bottom: 0.3125rem;
  aspect-ratio: 300/250;
}
.p-local-guide__item-image-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.96px) {
  .p-local-guide__item-image-3 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
}

.p-local-guide__parallax {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/704;
  overflow: hidden;
}
.p-local-guide__parallax img {
  width: 100%;
  height: calc(100% + 200px);
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access {
  background-color: #e7e4de;
  padding-block: 12.5rem 6.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-access {
    padding-block: 5.625rem 3.75rem;
  }
}

.p-access__head {
  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;
  gap: 0.9375rem;
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
}
@media screen and (max-width: 767.96px) {
  .p-access__head {
    -webkit-margin-after: 3.5rem;
            margin-block-end: 3.5rem;
  }
}

.p-access__title {
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1;
  color: #202524;
  text-align: center;
}
@media screen and (max-width: 767.96px) {
  .p-access__title {
    font-size: 2rem;
  }
}

.p-access__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #aaa497;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767.96px) {
  .p-access__title-en {
    font-size: 0.8125rem;
  }
}

.p-access__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.96px) {
  .p-access__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-access__map {
  width: 47.5rem;
  height: 34.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.96px) {
  .p-access__map {
    width: 100%;
    height: 17.5rem;
  }
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}

.p-access__map:hover iframe {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.p-access__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-inline: auto;
}

.p-access__info-list {
  width: 100%;
  margin: 0;
}

.p-access__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-border-after: 1px solid #c8c5bf;
          border-block-end: 1px solid #c8c5bf;
}

.p-access__info-row:last-child {
  -webkit-border-after: none;
          border-block-end: none;
}

.p-access__info-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  color: #6d7b76;
  white-space: nowrap;
  -webkit-padding-before: 1.25rem;
          padding-block-start: 1.25rem;
  -webkit-padding-start: 1.875rem;
          padding-inline-start: 1.875rem;
  width: 10.75rem;
}
@media screen and (max-width: 767.96px) {
  .p-access__info-label {
    font-size: 0.875rem;
    -webkit-padding-before: 0.875rem;
            padding-block-start: 0.875rem;
    -webkit-padding-start: 0.625rem;
            padding-inline-start: 0.625rem;
  }
}

@media screen and (max-width: 767.96px) {
  .p-access__info-row:not(.p-access__info-row--last) .p-access__info-label {
    width: 7.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-access__info-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #202524;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-access__info-value {
    font-size: 0.875rem;
    padding-block: 0.875rem;
  }
}
@media screen and (max-width: 767.96px) {
  .p-access__info-value.--last {
    -webkit-margin-start: 1.5rem;
            margin-inline-start: 1.5rem;
  }
}

@media screen and (max-width: 767.96px) {
  .p-access__info-row--last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 767.96px) {
  .p-access__info-row--last .p-access__info-label {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-padding-after: 0;
            padding-block-end: 0;
    white-space: normal;
  }
}

@media screen and (max-width: 767.96px) {
  .p-access__info-row--last .p-access__info-value {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-padding-before: 0.5rem;
            padding-block-start: 0.5rem;
  }
}

.p-access__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.p-access__info-block:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.p-access__info-block-title {
  font-weight: 500;
}

.p-access__info-note {
  font-size: 0.75rem;
  color: #aaa497;
}
@media screen and (max-width: 767.96px) {
  .p-access__info-note {
    font-size: 0.6875rem;
  }
}

.p-footer {
  background-color: #3a4340;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer {
    padding-block: 5.625rem;
  }
}

.p-footer__container {
  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;
}
@media screen and (max-width: 767.96px) {
  .p-footer__container {
    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;
    gap: 3rem;
  }
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.875rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 2.5rem;
  }
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.0625rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__logo {
    row-gap: 0.5rem;
  }
}

.p-footer__logo-name {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-footer__logo-name {
    font-size: 2.625rem;
  }
}

.p-footer__logo-en {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-footer__logo-en {
    font-size: 1rem;
  }
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.3125rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__info {
    row-gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__address {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-footer__address {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-footer__tel {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  -webkit-margin-before: 2.3125rem;
          margin-block-start: 2.3125rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__tel {
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-footer__checkin {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  -webkit-margin-before: 1.8125rem;
          margin-block-start: 1.8125rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__checkin {
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-footer__divider {
  display: none;
}
@media screen and (max-width: 767.96px) {
  .p-footer__divider {
    display: block;
    width: 100%;
    border: none;
    -webkit-border-before: 1px solid rgba(255, 255, 255, 0.15);
            border-block-start: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.5rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-footer__nav-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-footer__nav-link {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    color: #e74e4d;
  }
}

.p-footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.625rem;
     -moz-column-gap: 1.625rem;
          column-gap: 1.625rem;
}
@media screen and (max-width: 767.96px) {
  .p-footer__legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-footer__legal-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767.96px) {
  .p-footer__legal-link {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__legal-link:hover {
    color: #e74e4d;
  }
}

.p-footer__copy {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767.96px) {
  .p-footer__copy {
    font-size: 0.75rem;
    -webkit-margin-before: 3.5rem;
            margin-block-start: 3.5rem;
  }
}

@media (min-width: 767.98px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767.96px) {
  .u-pc {
    display: none !important;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767.96px) {
  .sp-only {
    display: block;
  }
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767.96px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 767.98px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767.96px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 767.98px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767.96px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 767.98px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767.96px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 767.98px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767.96px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 767.98px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-animated__fadeIn {
  opacity: 0;
  translate: 0 20px;
  -webkit-transition: translate 0.8s ease, opacity 0.8s ease;
  transition: translate 0.8s ease, opacity 0.8s ease;
}
.u-animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.u-animated__fadeIn--opacity {
  opacity: 0;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  -webkit-transition: opacity 0.8s linear, -webkit-filter 0.8s linear;
  transition: opacity 0.8s linear, -webkit-filter 0.8s linear;
  transition: opacity 0.8s linear, filter 0.8s linear;
  transition: opacity 0.8s linear, filter 0.8s linear, -webkit-filter 0.8s linear;
}
.u-animated__fadeIn--opacity.js-show {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.u-animated__slideIn--left {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clip-path: inset(0 100% 0 0);
}
.u-animated__slideIn--left.js-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.u-animated__slideIn--right {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clip-path: inset(0 0 0 100%);
}
.u-animated__slideIn--right.js-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.u-animated__scale {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.u-animated__scale.js-show {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}