@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap");
:root {
  --white: #fff;
  --darkgreen: #142725;
  --greengray: #838c8b;
  --lightrgray: #f3f3f3;
  --gray: #aaa;
  --beige: #ece9e5;
  --font-size-large: calc(38 * 0.2272727273vw);
  --font-size-medium-large: calc(36 * 0.2272727273vw);
  --font-size-medium: calc(24 * 0.2272727273vw);
  --font-size-small-medium: calc(20 * 0.2272727273vw);
  --font-size-small: calc(18 * 0.2272727273vw);
  --font-size-base: calc(15 * 0.2272727273vw);
  --font-size-small-base: calc(14 * 0.2272727273vw);
  --font-size-smaller: calc(13 * 0.2272727273vw);
  --font-size-smallest: calc(12 * 0.2272727273vw);
}
@media (min-width: 768px) {
  :root {
    --font-size-large: clamp(40px, calc(72 * 0.0520833333vw), 72px);
    --font-size-medium-large: clamp(30px, calc(64 * 0.0520833333vw), 64px);
    --font-size-medium: clamp(20px, calc(40 * 0.0520833333vw), 40px);
    --font-size-small-medium: clamp(16px, calc(24 * 0.0520833333vw), 24px);
    --font-size-small: clamp(16px, calc(20 * 0.0520833333vw), 20px);
    --font-size-base: clamp(14px, calc(18 * 0.0520833333vw), 18px);
    --font-size-small-base: clamp(13px, calc(16 * 0.0520833333vw), 16px);
    --font-size-smaller: clamp(12px, calc(15 * 0.0520833333vw), 15px);
    --font-size-smallest: clamp(12px, calc(14 * 0.0520833333vw), 14px);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
}

.fade.visible {
  animation: fade 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
}

.fade-in-up.visible {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  opacity: 0;
}

.fade-in-right.visible {
  animation: fadeInRight 0.5s ease-out forwards;
}

/* base styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--darkgreen);
}

a {
  text-decoration: underline;
  color: var(--darkgreen);
}
a:visited {
  color: var(--gray);
}
a:hover, a:focus, a:active {
  color: var(--darkgreen);
}

embed,
iframe,
object {
  max-width: 100%;
}

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

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

h2,
h3 {
  font-weight: 600;
}

/* Header */
header {
  position: relative;
  z-index: 1001;
}
header h1 {
  position: absolute;
  top: 4.5454545455vw;
  left: 6.8181818182vw;
  margin: 0;
  padding: 0;
}

.gnav--instagram {
  position: fixed;
  top: 6.8181818182vw;
  right: 18.1818181818vw;
  line-height: 1;
}
.gnav--instagram i {
  font-size: 5.4545454545vw;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Hamburger Menu */
.gnav--hamburger {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  width: 6.8181818182vw;
  height: 4.5454545455vw;
  z-index: 10001;
  top: 6.8181818182vw;
  right: 6.8181818182vw;
}

.gnav--hamburger .line {
  position: absolute;
  height: 1px;
  width: 100%;
  mix-blend-mode: difference;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.gnav--hamburger .line:nth-child(1) {
  top: 0;
}

.gnav--hamburger .line:nth-child(2) {
  top: calc(50% - 3px);
  height: 2px;
  transform: scaleY(0.5) translateY(1px);
}

.gnav--hamburger .line:nth-child(3) {
  bottom: 0;
  width: 50%;
}

.gnav--hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.gnav--hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.gnav--hamburger.active .line:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg);
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* modal */
/*
.modal {
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: fit-content;
  max-width: 82%;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: black;
  padding: 20px;
  max-height: 80%;

  scrollbar-width: thin;
  scrollbar-color: rgba(100, 100, 100, 0.5) transparent;
}

.modal-content::-webkit-scrollbar {
  height: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.5);
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.8);
}

.image-container {
  display: flex;
  gap: 20px;
}

.image-container img {
  max-height: 400px;
  cursor: pointer;
}
*/
/* モーダルの背景 */
.modal {
  display: flex;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  /* フェードイン用 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* モーダルを開いたとき */
.modal.show {
  opacity: 1;
  visibility: visible;
}

/* モーダルのコンテンツ */
.modal-content {
  background: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 90%;
  max-height: 90%;
}

/* メイン画像 */
.main-image-container {
  width: 100%;
  text-align: center;
}

#mainImage {
  max-width: 100%;
  height: auto;
  opacity: 1; /* デフォルト表示 */
  transition: opacity 0.3s ease-in-out;
}

/* サムネイルのスタイル */
.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thumbnail {
  width: calc((100% - 24px) / 4);
}

/* 選択中のサムネイルに枠線を追加 */
.active-thumbnail {
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
  line-height: 1;
}

/* Global Navigation */
.no-scroll {
  overflow: hidden;
}

.gnav {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gnav.active {
  visibility: visible;
  opacity: 1;
}

.gnav ul {
  list-style: none;
  padding-top: 13.6363636364vw;
  padding-right: 6.8181818182vw;
  padding-bottom: 6.8181818182vw;
  padding-left: 6.8181818182vw;
  margin: 0;
  text-align: center;
}

.gnav ul li {
  margin: 1em 0;
}

.gnav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gnav ul li a:hover {
  color: #ddd;
}

.gnav--booking {
  position: relative;
  display: block;
  width: 63.6363636364vw;
  margin: auto;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
  padding: 1em;
}
.gnav--booking:hover, .gnav--booking:visited {
  color: var(--white);
}
.gnav--booking::after {
  content: "";
  position: absolute;
  width: 1.3636363636vw;
  height: 1.8181818182vw;
  background-image: url(../images/arrow_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  top: 50%;
  transform: translateY(-50%);
  right: 5.4545454545vw;
}

/* common styles */
.br-pc {
  display: none;
}

.br-pc-narrow {
  display: none;
}

.br-sp {
  display: initial;
}

.inner {
  width: 86.3636363636vw;
  margin-right: auto;
  margin-left: auto;
}

.inner-wide {
  width: 86.3636363636vw;
  margin-right: auto;
  margin-left: auto;
}

.acd-check {
  display: none;
}

.acd-list-item-title {
  display: block;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}

.acd-list-item-text {
  display: block;
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.acd-list-item-text-inner {
  padding-top: 1em;
}

.acd-check:checked + .acd-list-item-title + .acd-list-item-text {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* common */
.header-common {
  position: relative;
  padding-top: 13.6363636364vw;
  padding-bottom: 9.0909090909vw;
  margin-left: 6.8181818182vw;
}
.header-common::before {
  position: absolute;
  width: 100%;
  content: "";
  top: 9.0909090909vw;
  border-top: 1px solid var(--beige);
}
.header-common h2 {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}

/* hero */
.top--header-wrapper {
  background-color: #000;
  width: 100%;
  height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.hero::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #ffffff;
  right: 6.8181818182vw;
  bottom: 0;
  width: 1px;
  height: 20.4545454545vw;
  animation: scrollline 3s infinite;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes scrollline {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.hero--content {
  position: absolute;
  width: 100%;
  bottom: 27.2727272727vw;
  left: 0;
  padding: 0 6.8181818182vw;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 1s ease-out;
}
.hero--content.visible {
  opacity: 1;
}
.hero--content.fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.hero--content-text-large {
  font-size: var(--font-size-medium-large);
  font-weight: 600;
  line-height: 1.5;
}

.hero--content-text-small {
  font-size: var(--font-size-small-medium);
  font-weight: 600;
  line-height: 1;
  margin-top: 6.8181818182vw;
}

.hero--content-button {
  position: relative;
  display: block;
  font-size: var(--font-size-small);
  font-weight: 600;
  width: 63.6363636364vw;
  margin-top: 13.6363636364vw;
  padding: 1em;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
}
.hero--content-button:hover, .hero--content-button:visited {
  color: var(--white);
}
.hero--content-button::after {
  content: "";
  position: absolute;
  width: 1.3636363636vw;
  height: 1.8181818182vw;
  background-image: url(../images/arrow_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  top: 50%;
  transform: translateY(-50%);
  right: 5.4545454545vw;
}

/* concept */
.concept {
  padding-top: 13.6363636364vw;
  background-image: url(../images/bg_concept-sp.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.concept--header {
  display: flex;
  padding: 0 6.8181818182vw 15.9090909091vw 6.8181818182vw;
  margin-bottom: 6.8181818182vw;
  background-image: url(../images/top-concept-cloud.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 63.1818181818vw auto;
}

.concept--content p:first-of-type {
  margin-top: 0;
}

.concept--header-heading h2 {
  writing-mode: vertical-rl;
  font-size: var(--font-size-large);
  margin: 0;
  margin-left: 61.1363636364vw;
  padding: 0;
  line-height: 1.5;
}

.concept--image {
  position: relative;
  margin-top: 13.6363636364vw;
  padding-bottom: 13.6363636364vw;
}
.concept--image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 6.8181818182vw);
  height: calc(100% - 6.8181818182vw);
  background-color: var(--lightrgray);
  z-index: -1;
}

.concept--image-item-01 {
  aspect-ratio: 3/2;
  width: 79.5454545455vw;
  background-color: #ccc;
  margin-left: auto;
}

.concept--image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 6.8181818182vw;
}

.concept--image-item-02 {
  aspect-ratio: 2/3;
  width: 43.1818181818vw;
  background-color: #ccc;
}

.concept--image-item-03 {
  aspect-ratio: 3/2;
  width: 43.1818181818vw;
  margin-bottom: 6.8181818182vw;
  background-color: #ccc;
}

/* amphibolite */
.amphibolite {
  background-color: #333;
  color: var(--white);
  padding-top: 20.4545454545vw;
  padding-bottom: 13.6363636364vw;
  background-image: url(../images/top-amphibolite-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.amphibolite--header {
  font-size: var(--font-size-medium-large);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.amphibolite--content {
  border: 1px solid var(--white);
  padding-top: 9.0909090909vw;
  padding-right: 6.8181818182vw;
  padding-bottom: 6.8181818182vw;
  padding-left: 6.8181818182vw;
  margin-top: 20.4545454545vw;
}
.amphibolite--content h2 {
  position: relative;
  font-size: var(--font-size-medium);
  text-align: center;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 4.5454545455vw;
  padding-bottom: 4.5454545455vw;
}
.amphibolite--content h2::after {
  position: absolute;
  width: 9.0909090909vw;
  content: "";
  right: 0;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--white);
  margin: 0 auto;
}
.amphibolite--content.fade-in-up {
  animation-delay: 0.3s;
}

.amphibolite--content-link {
  display: flex;
  justify-content: flex-end;
}
.amphibolite--content-link a {
  display: inline-block;
  color: var(--gray);
}
.amphibolite--content-link a:visited, .amphibolite--content-link a:hover {
  color: var(--gray);
}
.amphibolite--content-link a i {
  margin-left: 0.5em;
}

/* feature */
.feature .inner-wide {
  width: 100%;
}

.feature--content-item {
  margin-bottom: 13.6363636364vw;
}

.feature--content-item-image {
  aspect-ratio: 3/2;
  background-color: var(--gray);
}

.feature--content-item-text {
  margin-top: -6.8181818182vw;
  background-color: var(--beige);
  margin-left: 6.8181818182vw;
  padding-top: 11.3636363636vw;
  padding-right: 11.3636363636vw;
  padding-bottom: 9.0909090909vw;
  padding-left: 9.0909090909vw;
}
.feature--content-item-text h3 {
  font-size: var(--font-size-medium);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 6.8181818182vw;
}
.feature--content-item-text h3.fade-in-up {
  animation-delay: 0.3s;
}

.feature--content-item-text-header {
  width: 54.5454545455vw;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid var(--white);
  padding-bottom: 2.2727272727vw;
}

.feature--content-item-text-content {
  margin-left: 7.9545454545vw;
}
.feature--content-item-text-content.fade-in-up {
  animation-delay: 0.3s;
}

.feature--content-item-text-link {
  display: flex;
  width: fit-content;
  margin-left: auto;
  border-bottom: 1px solid var(--white);
}
.feature--content-item-text-link.fade-in-right {
  animation-delay: 0.3s;
}
.feature--content-item-text-link a {
  display: flex;
  text-decoration: none;
  align-items: center;
  color: var(--darkgreen);
  font-size: var(--font-size-small-base);
  font-weight: 600;
  padding-bottom: 1em;
  margin-top: 9.0909090909vw;
}
.feature--content-item-text-link a:hover, .feature--content-item-text-link avisited {
  color: var(--darkgreen);
}
.feature--content-item-text-link a::before {
  width: 11.3636363636vw;
  content: "";
  border-top: 1px solid var(--greengray);
  margin-right: 1em;
}
.feature--content-item-text-link:has(> :nth-child(2)) a:nth-of-type(n + 2) {
  margin-left: 1em;
}
.feature--content-item-text-link:has(> :nth-child(2)) a::before {
  width: 6.8181818182vw;
}

/* information */
.information {
  background-color: var(--lightrgray);
  padding-bottom: 13.6363636364vw;
}

.information--content-item {
  margin-bottom: 11.3636363636vw;
}

.information--content-item-header h3 {
  font-size: var(--font-size-small);
  line-height: 1.2;
  padding-bottom: 0.8333333333em;
  margin-bottom: 0.8333333333em;
  border-bottom: 1px solid var(--greengray);
}

.information--content-item-content {
  margin: 1em;
}
.information--content-item-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.information--content-item-content ul li {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.information--content-item-content ul li::before {
  content: "・";
  margin-right: 0.5em;
}

/* gallery */
.gallery {
  background-color: var(--darkgreen);
  padding-bottom: 18.1818181818vw;
}
.gallery .header-common h2 {
  color: var(--white);
}

.gallery--intro {
  color: var(--white);
  margin-left: 6.8181818182vw;
  margin-bottom: 9.0909090909vw;
}

.gallery--content {
  margin-left: 6.8181818182vw;
}
.gallery--content .slick-list {
  padding-right: 13.6363636364vw !important;
}
.gallery--content .slick-arrow {
  z-index: 2 !important;
  width: 3.4090909091vw !important;
  height: 13.6363636364vw !important;
  margin-top: -3.1818181818vw !important;
}
.gallery--content .slick-arrow::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.gallery--content .slick-next {
  right: 0 !important;
}
.gallery--content .slick-next:before {
  background-image: url(../images/arrow_gallery-r.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
  opacity: 1 !important;
}
.gallery--content .slick-prev {
  left: -5.6818181818vw !important;
}
.gallery--content .slick-prev:before {
  background-image: url(../images/arrow_gallery-l.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center left !important;
  opacity: 1 !important;
}
.gallery--content .slick-disabled {
  display: none !important;
}
.gallery--content .slick-slide {
  opacity: 0.5;
}
.gallery--content .slick-slide.slick-active {
  opacity: 1;
}

.gallery--content-item-image {
  position: relative;
  width: 72.7272727273vw;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.gallery--content-item-image::after {
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
  font: var(--fa-font-solid);
  content: "\f065";
  color: white;
  font-size: 1.5em;
  line-height: 1;
}

.gallery--content-item-caption {
  width: 72.7272727273vw;
  color: var(--white);
  size: var(--font-size-smaller);
  line-height: 1.2;
  margin-top: 1em;
}

/* faq */
.faq {
  padding-bottom: 13.6363636364vw;
}

.faq--content-item {
  margin-bottom: 9.0909090909vw;
}
.faq--content-item:last-of-type {
  margin-bottom: 0;
}

.faq--content-item-header h3 {
  font-size: var(--font-size-small);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.1111111111em;
}

.faq--content-item-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq--content-item-content ul li {
  font-size: var(--font-size-small-base);
  border: 1px solid var(--beige);
  margin-bottom: 2.2727272727vw;
  line-height: 1.5;
}
.faq--content-item-content ul li label {
  padding: 1em;
}

.acd-list-item-text {
  padding: 0 1em;
}
.acd-list-item-text p {
  margin-top: 0;
  margin-bottom: 1em;
}

.acd-list-item-text-inner {
  margin-left: 2em;
  line-height: 1.6;
  padding-top: 0;
}

/* access */
.access {
  background-color: var(--lightrgray);
}

.access--content-text {
  width: 86.3636363636vw;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 13.6363636364vw;
}

.access--content-text-item-header h3 {
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 2;
}

.access--content-text-item-content {
  line-height: 1.5;
  margin-bottom: 1em;
}
.access--content-text-item-content a {
  font-size: var(--font-size-smaller);
}

.access--content-map {
  aspect-ratio: 16/9;
  background-color: var(--gray);
  overflow: hidden;
}
.access--content-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* footer */
footer {
  background-color: #333;
  color: var(--white);
  padding-top: 13.6363636364vw;
  padding-bottom: 34.0909090909vw;
}
footer a {
  text-decoration: none;
  color: var(--white);
}
footer a:hover, footer a:visited {
  color: var(--white);
}

.footer--booking a {
  position: relative;
  display: block;
  width: 63.6363636364vw;
  margin: auto;
  text-align: center;
  font-size: var(--font-size-small);
  padding: 1em;
  border: 1px solid var(--white);
  line-height: 1em;
}
.footer--booking a::after {
  content: "";
  position: absolute;
  width: 1.3636363636vw;
  height: 1.8181818182vw;
  background-image: url(../images/arrow_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  top: 50%;
  transform: translateY(-50%);
  right: 5.4545454545vw;
}

.footer--nav {
  margin-top: 13.6363636364vw;
  margin-bottom: 20.4545454545vw;
  padding-top: 6.8181818182vw;
  padding-bottom: 6.8181818182vw;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}
.footer--nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-smaller);
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.5454545455vw;
}
.footer--nav ul li:nth-child(1), .footer--nav ul li:nth-child(2), .footer--nav ul li:nth-child(3), .footer--nav ul li:nth-child(4), .footer--nav ul li:nth-child(5), .footer--nav ul li:nth-child(6) {
  grid-column: 1; /* 1列目に並べる */
}
.footer--nav ul li:nth-child(7), .footer--nav ul li:nth-child(8), .footer--nav ul li:nth-child(9), .footer--nav ul li:nth-child(10), .footer--nav ul li:nth-child(11) {
  grid-column: 2; /* 2列目に並べる */
}
.footer--nav ul li:nth-child(1), .footer--nav ul li:nth-child(7) {
  grid-row: 1;
}
.footer--nav ul li:nth-child(2), .footer--nav ul li:nth-child(8) {
  grid-row: 2;
}
.footer--nav ul li:nth-child(3), .footer--nav ul li:nth-child(9) {
  grid-row: 3;
}
.footer--nav ul li:nth-child(4), .footer--nav ul li:nth-child(10) {
  grid-row: 4;
}
.footer--nav ul li:nth-child(5), .footer--nav ul li:nth-child(11) {
  grid-row: 5;
}
.footer--nav ul li:nth-child(6) {
  grid-row: 6;
}

.footer--logo {
  text-align: center;
  margin-bottom: 13.6363636364vw;
}

.footer--copyright {
  text-align: center;
  font-size: var(--font-size-smallest);
}

/* cta */
.cta {
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 2000;
  bottom: 0;
  left: 0;
  border: 1px solid var(--white);
  font-weight: 600;
}
.cta > * {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta > * i {
  margin-right: 0.25em;
}

.cta--contact {
  background-color: var(--beige);
  line-height: 1;
  padding: 4.5454545455vw;
  border-right: 1px solid var(--white);
  text-decoration: none;
  color: var(--darkgreen);
}
.cta--contact:hover, .cta--contact:visited {
  color: var(--darkgreen);
}

.cta--booking {
  background-color: var(--darkgreen);
  line-height: 1;
  padding: 4.5454545455vw;
  color: var(--white);
  text-decoration: none;
}
.cta--booking:hover, .cta--booking:visited {
  color: var(--white);
}

/* about page */
.about--header-wrapper {
  background-color: #ccc;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-image: url(../images/about-hero.jpg);
  background-size: cover;
  background-position: center center;
}

.about--hero {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6.8181818182vw;
  color: var(--white);
}

.about--hero-content {
  padding-bottom: 18.1818181818vw;
}

.about--hero-content-title {
  font-size: var(--font-size-medium);
  font-weight: 600;
}

.about--hero-content-subtitle {
  font-size: var(--font-size-small-medium);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2em;
}

.about--hero-content-wrapper {
  display: flex;
  gap: 0 6.8181818182vw;
}

.about--hero-content-text {
  flex: 1;
  margin-top: 0;
}

.about--hero-content-spec {
  list-style: none;
  width: fit-content;
  margin: 0;
  padding: 0;
}
.about--hero-content-spec li {
  line-height: 1.5;
  margin-top: 1em;
}
.about--hero-content-spec li p {
  margin: 0;
}

.about--hero-content-spec-label {
  width: fit-content;
  border-top: 1px solid var(--white);
  font-size: var(--font-size-smallest);
  padding-top: 0.25em;
}

.about--hero-content-spec-value {
  font-size: var(--font-size-small-base);
}

.about--facility {
  position: relative;
  padding-top: 13.6363636364vw;
  padding-bottom: 9.0909090909vw;
  display: flex;
  gap: 0 9.0909090909vw;
}
.about--facility:nth-of-type(odd) {
  padding-left: 6.8181818182vw;
}
.about--facility:nth-of-type(odd) .about--facility-contents-text {
  margin-right: 1em;
}
.about--facility:nth-of-type(even) {
  background-color: var(--lightrgray);
  flex-direction: row-reverse;
  padding-right: 6.8181818182vw;
}
.about--facility:nth-of-type(even) .about--facility-contents-text {
  margin-left: 6.8181818182vw;
}

.about--facility-title {
  writing-mode: vertical-rl;
  font-size: var(--font-size-medium);
  line-height: 1;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.about--facility-title::after {
  content: "";
  display: block;
  margin-top: 4.5454545455vw;
  height: 27.2727272727vw;
  border-left: 1px solid var(--beige);
}

.about--facility-contents {
  flex: 1;
}

.about--facility-contents-gallery {
  display: flex;
  flex-wrap: wrap;
}

.about--facility-contents-gallery-item {
  aspect-ratio: 1/1;
  background-color: var(--gray);
  overflow: hidden;
}
.about--facility-contents-gallery-item img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.about--facility-contents-gallery-item:first-of-type {
  width: 100%;
}
.about--facility-contents-gallery-item:nth-of-type(n + 2) {
  width: 50%;
}

.about--facility-lighting .about--facility-contents-gallery-item {
  width: 50%;
}

.about--facility-fridge .about--facility-contents-gallery-item:first-of-type {
  width: 50%;
}

.about--facility-relaxation .about--facility-contents-gallery-item:nth-of-type(n + 2) {
  width: 100%;
  aspect-ratio: 2/1;
}

.about--amenity {
  padding-bottom: 13.6363636364vw;
}

.about--amenity-introduction {
  margin-top: 0;
  margin-bottom: 2em;
}

.about--amenity-list-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 4.5454545455vw;
  margin-bottom: 4.5454545455vw;
}

.about--amenity-list-item-image {
  aspect-ratio: 1/1;
  width: 22.7272727273vw;
  border: 1px solid var(--lightrgray);
}
.about--amenity-list-item-image img {
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.about--amenity-list-item-text {
  font-size: var(--font-size-smaller);
}

.about--amenity-list-item-text-title {
  font-size: var(--font-size-small-base);
  font-weight: 600;
}

.about--price {
  background-color: #333;
  color: var(--white);
  padding-bottom: 13.6363636364vw;
}
.about--price a:not(.about--price-link, .about--price-special-item-link) {
  color: var(--white);
}
.about--price a:not(.about--price-link, .about--price-special-item-link):hover, .about--price a:not(.about--price-link, .about--price-special-item-link):visited {
  color: var(--white);
}
.about--price .header-common h2 {
  color: var(--white);
}

.about--price-introduction {
  margin-top: 0;
  margin-bottom: 2em;
}
.about--price-introduction ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about--price-introduction ul li {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.about--price-introduction ul li::before {
  content: "・";
  margin-right: 0.5em;
}

.about--price-table {
  width: 100%;
  border-collapse: collapse;
}
.about--price-table th,
.about--price-table td {
  border: 1px solid var(--gray);
  padding: 0.5em;
  line-height: 1.5;
}
.about--price-table th {
  text-align: center;
  background-color: #666;
  font-weight: 600;
}
.about--price-table td {
  text-align: center;
  vertical-align: top;
}
.about--price-table td span {
  font-size: var(--font-size-smallest);
}

.about--price-link {
  position: relative;
  display: block;
  width: 63.6363636364vw;
  margin: 11.3636363636vw auto;
  text-align: center;
  font-size: var(--font-size-small);
  font-weight: bold;
  text-decoration: none;
  padding: 1em;
  line-height: 1em;
  border: 1px solid var(--white);
  color: var(--white);
}
.about--price-link:hover, .about--price-link:visited {
  color: var(--white);
}
.about--price-link::after {
  content: "";
  position: absolute;
  width: 1.3636363636vw;
  height: 1.8181818182vw;
  background-image: url(../images/arrow_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  top: 50%;
  transform: translateY(-50%);
  right: 5.4545454545vw;
}

.about--price-special {
  border-bottom: 1px solid var(--gray);
}

.about--price-special-item {
  padding: 11.3636363636vw 0;
  border-top: 1px solid var(--gray);
}
.about--price-special-item .about--price-table {
  margin-top: 6.8181818182vw;
}

.about--price-special-item-image-inner {
  aspect-ratio: 16/9;
}
.about--price-special-item-image-inner img {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.about--price-special-item-text {
  font-size: var(--font-size-small-base);
}
.about--price-special-item-text p {
  margin-bottom: 2em;
}

.about--price-special-item-title {
  font-size: var(--font-size-small);
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.about--price-special-item-link {
  position: relative;
  display: block;
  width: 63.6363636364vw;
  margin: 6.8181818182vw auto 0 auto;
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: bold;
  text-decoration: none;
  padding: 1em;
  line-height: 1em;
  border: 1px solid var(--white);
  color: var(--white);
}
.about--price-special-item-link:hover, .about--price-special-item-link:visited {
  color: var(--white);
}
.about--price-special-item-link::after {
  content: "";
  position: absolute;
  width: 1.3636363636vw;
  height: 1.8181818182vw;
  background-image: url(../images/arrow_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  top: 50%;
  transform: translateY(-50%);
  right: 5.4545454545vw;
}

@media (min-width: 768px) {
  .br-pc {
    display: initial;
  }
  .br-sp {
    display: none;
  }
  .inner {
    width: 68.75vw;
    margin-right: auto;
    margin-left: auto;
  }
  .inner-pc {
    width: 68.75vw;
    margin-right: auto;
    margin-left: auto;
  }
  .inner-wide {
    width: 90.625vw;
    margin-right: auto;
    margin-left: auto;
  }
  /* header */
  .top--header-wrapper {
    height: 100vh;
  }
  header {
    position: relative;
  }
  header h1 {
    position: absolute;
    top: 3.125vw;
    left: 4.6875vw;
    margin: 0;
    padding: 0;
  }
  header h1 img {
    width: 150px;
    height: auto;
  }
  .gnav--instagram {
    top: 2.9166666667vw;
    right: 7.03125vw;
  }
  .gnav--instagram i {
    font-size: 2.0833333333vw;
  }
  .gnav--hamburger {
    top: 3.125vw;
    right: 3.125vw;
    width: 2.34375vw;
    height: 1.5625vw;
  }
  .gnav ul {
    padding-top: 3.125vw;
    padding-right: 1.5625vw;
    padding-bottom: 1.5625vw;
    padding-left: 1.5625vw;
    font-size: var(--font-size-small);
  }
  .gnav--booking {
    position: relative;
    width: 25vw;
    font-size: var(--font-size-small);
  }
  .gnav--booking::after {
    width: 0.4166666667vw;
    height: 0.625vw;
    right: 1.25vw;
  }
  /* common */
  .header-common {
    padding-top: 9.375vw;
    padding-bottom: 4.1666666667vw;
    margin-left: 15.625vw;
  }
  .header-common::before {
    top: 7.8125vw;
  }
  .header-common h2 {
    font-size: var(--font-size-medium);
  }
  /* hero */
  .hero::after {
    right: 4.6875vw;
    height: 7.8125vw;
  }
  .hero--content {
    bottom: 9.375vw;
    padding: 0 15.625vw;
  }
  .hero--content-text-large {
    font-size: var(--font-size-large);
    font-weight: 600;
  }
  .hero--content-text-small {
    margin-top: 2.6041666667vw;
    font-size: min(1.6666666667vw, 32px);
  }
  .hero--content-button {
    position: relative;
    width: fit-content;
    padding-right: 4.9479166667vw;
    padding-left: 4.9479166667vw;
    margin-top: 3.125vw;
  }
  .hero--content-button::after {
    width: 0.4166666667vw;
    height: 0.625vw;
    right: 1.25vw;
  }
  /* concept */
  .concept {
    padding-top: 6.25vw;
    background-image: url(../images/bg_concept-pc.svg);
    background-size: auto;
  }
  .concept--header {
    justify-content: flex-end;
    padding: 0 15.625vw;
    background-size: 31.25vw auto;
    background-position: left 4.6875vw bottom 0;
  }
  .concept--content {
    margin-top: 2.6041666667vw;
    font-size: var(--font-size-small-medium);
    line-height: 2;
  }
  .concept--header-heading h2 {
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-left: 0;
  }
  .concept--image {
    z-index: -1;
    margin-top: 0;
    padding-bottom: 7.8125vw;
  }
  .concept--image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 15.625vw);
    height: calc(100% - 23.9583333333vw);
    background-color: var(--lightrgray);
    z-index: -1;
  }
  .concept--image-item-01 {
    width: 41.6666666667vw;
    margin-top: -18.2291666667vw;
  }
  .concept--image-wrapper {
    padding: 0 15.625vw;
    margin-top: 1.0416666667vw;
    justify-content: flex-start;
    gap: 0 3.125vw;
  }
  .concept--image-item-02 {
    width: 19.7916666667vw;
  }
  .concept--image-item-03 {
    width: 19.7916666667vw;
    margin-bottom: 0;
  }
  /* amphibolite */
  .amphibolite {
    padding-top: 6.25vw;
    padding-bottom: 7.8125vw;
  }
  .amphibolite--content {
    border: 1px solid var(--white);
    padding-top: 3.125vw;
    padding-right: 9.375vw;
    padding-bottom: 3.125vw;
    padding-left: 9.375vw;
    margin-top: 3.125vw;
  }
  .amphibolite--content h2 {
    margin-bottom: 1.5625vw;
    padding-bottom: 1.5625vw;
  }
  /* feature */
  .feature .inner-wide {
    width: 90.625vw;
  }
  .feature--content-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5.2083333333vw;
    padding-bottom: 5.2083333333vw;
  }
  .feature--content-item::before {
    position: absolute;
    content: "";
    width: 53.125vw;
    height: 100%;
    background-color: var(--beige);
  }
  .feature--content-item:nth-of-type(odd)::before {
    top: 0;
    right: 0;
  }
  .feature--content-item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .feature--content-item:nth-of-type(even)::before {
    top: 0;
    left: 0;
  }
  .feature--content-item-image {
    width: 41.6666666667vw;
  }
  .feature--content-item-text {
    flex: 1;
    background-color: unset;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 8.3333333333vw;
    padding-bottom: 0;
    padding-left: 4.6875vw;
  }
  .feature--content-item-text h3 {
    margin-bottom: 2.0833333333vw;
  }
  .feature--content-item-text-header {
    width: auto;
  }
  .feature--content-item-text-content {
    margin-left: 0;
  }
  .feature--content-item-text-link a {
    margin-top: 3.125vw;
  }
  .feature--content-item-text-link a::before {
    width: 4.1666666667vw;
  }
  .feature--content-item-text-link:has(> :nth-child(2)) a:nth-of-type(n + 2) {
    margin-left: 2em;
  }
  .feature--content-item-text-link:has(> :nth-child(2)) a::before {
    width: 2.6041666667vw;
  }
  /* information */
  .information {
    padding-bottom: 6.25vw;
  }
  .information--content {
    display: flex;
    flex-wrap: wrap;
    gap: 5.2083333333vw 6.25vw;
  }
  .information--content-item {
    width: 31.25vw;
    margin-bottom: 0;
  }
  /* gallery */
  .gallery {
    padding-bottom: 6.25vw;
  }
  .gallery--intro {
    color: var(--white);
    margin-left: 15.625vw;
    margin-bottom: 4.1666666667vw;
  }
  .gallery--content {
    margin-left: 29.375vw;
  }
  .gallery--content .slick-list {
    padding-right: 29.4791666667vw !important;
  }
  .gallery--content .slick-arrow {
    width: 1.6666666667vw !important;
    height: 6.25vw !important;
    margin-top: -1.0833333333vw !important;
  }
  .gallery--content .slick-next {
    right: 3.125vw !important;
  }
  .gallery--content .slick-next:before {
    background-image: url(../images/arrow_gallery-r-pc.svg) !important;
  }
  .gallery--content .slick-prev {
    left: -3.125vw !important;
  }
  .gallery--content .slick-prev:before {
    background-image: url(../images/arrow_gallery-l-pc.svg) !important;
  }
  .gallery--content .slick-slide {
    opacity: 1;
  }
  .gallery--content .slick-slide.slick-active {
    opacity: 1;
  }
  .gallery--content-item-image {
    width: 37.5vw;
  }
  .gallery--content-item-caption {
    width: 37.5vw;
    font-size: var(--font-size-base);
  }
  .modal-content {
    flex-direction: row;
    justify-content: center;
  }
  .main-image-container {
    width: 80%;
    max-width: 800px;
  }
  .thumbnail-container {
    flex-direction: column;
    flex: 1; /* サムネイルの高さを適切に保つ */
    min-height: 200px; /* 高さが極端に小さくならないようにする */
  }
  .thumbnail {
    width: 100%;
    max-width: 120px;
    height: auto; /* アスペクト比を保持 */
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }
  .thumbnail:hover {
    opacity: 1;
  }
  /* faq */
  .faq {
    padding-bottom: 5.2083333333vw;
  }
  .faq--content-item {
    margin-bottom: 5.2083333333vw;
  }
  .faq--content-item:last-of-type {
    margin-bottom: 0;
  }
  .faq--content-item-header {
    text-align: center;
  }
  .faq--content-item-header h3 {
    font-size: var(--font-size-small-medium);
    margin-bottom: 3.125vw;
  }
  .faq--content-item-content {
    width: 68.75vw;
    margin: 0 auto;
  }
  .faq--content-item-content ul li {
    margin-bottom: 1.0416666667vw;
  }
  .faq--content-item-content ul li label {
    font-size: var(--font-size-base);
    padding: 1.5625vw 2.0833333333vw;
  }
  .faq--content-item-content ul li a {
    font-weight: 600;
  }
  .acd-list-item-text {
    padding: 0 2.0833333333vw;
  }
  .acd-list-item-text p {
    margin-bottom: 1.5625vw;
  }
  .acd-list-item-text-inner {
    margin-left: 2.5em;
  }
  /* access */
  .access {
    padding-bottom: 6.25vw;
  }
  .access--content {
    display: flex;
    gap: 0 6.25vw;
  }
  .access--content > * {
    flex: 1;
  }
  .access--content-map {
    margin: 0;
  }
  /* footer */
  footer {
    padding-top: 6.25vw;
    padding-bottom: 4.1666666667vw;
  }
  .footer--booking a {
    position: relative;
    width: 25vw;
    padding: 1.5em;
  }
  .footer--booking a::after {
    width: 0.4166666667vw;
    height: 0.625vw;
    right: 1.25vw;
  }
  .footer--nav {
    margin-top: 6.25vw;
    padding-top: 3.125vw;
    margin-bottom: 6.25vw;
    padding-bottom: 3.125vw;
  }
  .footer--nav ul {
    row-gap: 1.0416666667vw;
  }
  .footer--logo {
    margin-bottom: 6.25vw;
  }
  .cta {
    top: 7.8125vw;
    right: 0;
    left: auto;
    flex-direction: column;
    width: 3.2em;
    height: 25vw;
    border: none;
    gap: 1.0416666667vw 0;
  }
  .cta > * {
    writing-mode: vertical-rl;
  }
  .cta > * i {
    margin-right: 0;
    margin-bottom: 0.25em;
  }
  .cta--contact {
    padding: 1em;
    border-right: none;
    border: 1px solid var(--white);
    white-space: nowrap;
  }
  .cta--booking {
    padding: 1em;
    border: 1px solid var(--white);
    white-space: nowrap;
  }
  /* about page */
  .about--hero {
    height: 100vh;
    padding: 9.375vw 4.6875vw;
  }
  .about--hero-content {
    padding: 0;
    text-align: center;
    padding-bottom: 0;
  }
  .about--hero-content-title {
    font-size: var(--font-size-medium-large);
    margin-bottom: 0.5em;
  }
  .about--hero-content-subtitle {
    font-size: var(--font-size-small-medium);
    margin-bottom: 1em;
  }
  .about--hero-content-text {
    font-size: var(--font-size-small);
    margin-bottom: 3em;
  }
  .about--hero-content-wrapper {
    display: block;
  }
  .about--hero-content-spec {
    display: flex;
    margin: auto;
  }
  .about--hero-content-spec li {
    width: 10em;
    text-align: center;
    white-space: nowrap;
  }
  .about--hero-content-spec-label {
    width: initial;
    padding: 1em 0;
    font-size: var(--font-size-base);
  }
  .about--hero-content-spec-value {
    font-size: var(--font-size-small-medium);
  }
  .about--facility {
    padding-top: 9.375vw;
    padding-bottom: 9.375vw;
    gap: 0 6.25vw;
  }
  .about--facility:nth-of-type(odd) {
    padding-left: 15.625vw;
  }
  .about--facility:nth-of-type(odd) .about--facility-contents-text {
    margin-right: 5em;
  }
  .about--facility:nth-of-type(even) {
    padding-right: 15.625vw;
  }
  .about--facility:nth-of-type(even) .about--facility-contents-text {
    margin-left: 15.625vw;
  }
  .about--facility-title::after {
    margin-top: 2.0833333333vw;
    height: 10.4166666667vw;
  }
  .about--facility-contents-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-contents-gallery-item:first-of-type {
    width: auto;
  }
  .about--facility-contents-gallery-item:nth-of-type(n + 2) {
    width: auto;
  }
  .about--facility-contents-gallery-item:nth-of-type(1) {
    grid-area: 1/1/3/3;
  }
  .about--facility-contents-gallery-item:nth-of-type(2) {
    grid-area: 1/3/2/4;
  }
  .about--facility-contents-gallery-item:nth-of-type(3) {
    grid-area: 1/4/2/5;
  }
  .about--facility-contents-gallery-item:nth-of-type(4) {
    grid-area: 2/3/3/4;
  }
  .about--facility-contents-gallery-item:nth-of-type(5) {
    grid-area: 2/4/3/5;
  }
  .about--facility-shop .about--facility-contents-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-shop .about--facility-contents-gallery-item:first-of-type {
    width: auto;
  }
  .about--facility-shop .about--facility-contents-gallery-item:nth-of-type(n + 2) {
    width: auto;
  }
  .about--facility-shop .about--facility-contents-gallery-item:nth-of-type(1) {
    grid-area: 1/2/3/4;
  }
  .about--facility-shop .about--facility-contents-gallery-item:nth-of-type(2) {
    grid-area: 1/4/2/5;
  }
  .about--facility-shop .about--facility-contents-gallery-item:nth-of-type(3) {
    grid-area: 2/4/3/5;
  }
  .about--facility-shop .about--facility-contents-text-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-shop .about--facility-contents-text-wrap::before {
    grid-area: 1/1/2/2;
  }
  .about--facility-shop .about--facility-contents-text-wrap .about--facility-contents-text {
    grid-area: 1/2/2/5;
  }
  .about--facility-relaxation .about--facility-contents-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-relaxation .about--facility-contents-gallery-item:first-of-type {
    width: auto;
  }
  .about--facility-relaxation .about--facility-contents-gallery-item:nth-of-type(n + 2) {
    width: auto;
  }
  .about--facility-relaxation .about--facility-contents-gallery-item:nth-of-type(1) {
    grid-area: 1/1/3/3;
  }
  .about--facility-relaxation .about--facility-contents-gallery-item:nth-of-type(2) {
    grid-area: 1/3/2/5;
    overflow: hidden;
  }
  .about--facility-relaxation .about--facility-contents-gallery-item:nth-of-type(3) {
    grid-area: 2/3/3/5;
    overflow: hidden;
  }
  .about--facility-lighting .about--facility-contents-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:first-of-type {
    width: auto;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(n + 2) {
    width: auto;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(1) {
    grid-area: 1/2/2/3;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(2) {
    grid-area: 2/2/3/3;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(3) {
    grid-area: 1/3/2/4;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(4) {
    grid-area: 2/3/3/4;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(5) {
    grid-area: 1/4/2/5;
  }
  .about--facility-lighting .about--facility-contents-gallery-item:nth-of-type(6) {
    grid-area: 2/4/3/5;
  }
  .about--facility-lighting .about--facility-contents-text-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-lighting .about--facility-contents-text-wrap::before {
    grid-area: 1/1/2/2;
  }
  .about--facility-lighting .about--facility-contents-text-wrap .about--facility-contents-text {
    grid-area: 1/2/2/5;
  }
  .about--facility-fridge .about--facility-contents-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:first-of-type {
    width: auto;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:nth-of-type(n + 2) {
    width: auto;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:nth-of-type(1) {
    grid-area: 1/1/2/2;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:nth-of-type(3) {
    grid-area: 1/3/2/4;
  }
  .about--facility-fridge .about--facility-contents-gallery-item:nth-of-type(4) {
    grid-area: 1/4/2/5;
  }
  .about--amenity {
    padding-bottom: 6.25vw;
  }
  .about--amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4.1666666667vw 6.25vw;
  }
  .about--amenity-list-item {
    width: calc((100% - 6.25vw) / 2);
    gap: 0 2.0833333333vw;
    margin-bottom: 0;
  }
  .about--amenity-list-item-image {
    width: 10.4166666667vw;
  }
  .about--amenity-list-item-text {
    font-size: var(--font-size-base);
  }
  .about--amenity-list-item-text-title {
    font-size: var(--font-size-small);
  }
  .about--price {
    padding-bottom: 6.25vw;
  }
  .about--price-table td br {
    display: none;
  }
  .about--price-link {
    position: relative;
    width: 25vw;
    padding: 1.5em;
    margin: 3.125vw auto;
  }
  .about--price-link::after {
    width: 0.4166666667vw;
    height: 0.625vw;
    right: 1.25vw;
  }
  .about--price-special {
    margin-top: 5.2083333333vw;
  }
  .about--price-special-item {
    padding: 3.125vw 0;
  }
  .about--price-special-item .about--price-table {
    margin-top: 1.5625vw;
  }
  .about--price-special-item-inner {
    width: 100%;
    display: flex;
    gap: 0 3.125vw;
  }
  .about--price-special-item-image {
    width: 20.8333333333vw;
  }
  .about--price-special-item-title {
    font-size: var(--font-size-small-medium);
    margin-top: 0;
  }
  .about--price-special-item-text {
    flex: 1;
  }
  .about--price-special-item-link {
    position: relative;
    width: fit-content;
    padding: 1.2em 4em;
    margin: 2em auto 0 0;
  }
  .about--price-special-item-link::after {
    width: 0.4166666667vw;
    height: 0.625vw;
    right: 1.25vw;
  }
}
@media (min-width: 1440px) {
  .faq--content-item-content {
    width: 50vw;
    margin: 0 auto;
  }
  .about--price-table {
    width: 100%;
    writing-mode: vertical-lr;
  }
  .about--price-table th,
  .about--price-table td {
    writing-mode: horizontal-tb;
    padding: 0.75em 1em;
  }
  .about--price-table td {
    text-align: left;
  }
  .about--price-table td br {
    display: initial;
  }
}
@media (min-width: 1441px) and (max-width: 1600px) {
  .br-pc-narrow {
    display: inline !important;
  }
}
@media (min-width: 1601px) {
  .br-pc-narrow {
    display: none !important;
  }
}