

:root {

--color-dark: #4D4D4D;
--color-middle: #6A6A6A;
--color-light: #838383;
--color-white: #ffffff;

--font-base: "Noto Serif JP", serif;
--font-en: "Cinzel", serif;

--space-section-large: clamp(120px, 10vw, 150px);
--space-section-small: clamp(40px, 4vw, 70px);
--container-wide: 1200px;
--container-narrow: 900px;

--transition: 0.4s ease;

--side-label-w: clamp(70px, 10vw, 250px);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--color-white);
  background-color: transparent;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 560px){
	html {
	  font-size: 15px;
	}
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-en);
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(36px, 8vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-white);
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1.5em;
}

.en {
  font-family: var(--font-en);
}

@media (max-width: 560px){
  .section-title{
    letter-spacing: 0.05em;
    padding-right: 8px;
  }
}

.section {
  padding: var(--space-section-large) 0;
  position: relative;
}

.section-compact {
  padding: var(--space-section-small) 0;
  position: relative;
}

.container{
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  padding-inline: clamp(10px, 3vw, 40px);
}

.container-narrow {
  max-width: min(var(--container-narrow), 100%);
  margin: 0 auto;
  padding-inline: clamp(10px, 3vw, 40px);
}

.introduction .container,
.about .container{
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.bg-dark + .bg-dark,
.bg-middle + .bg-middle,
.bg-light + .bg-light{
  padding-top: 0;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
}

a {
  transition: var(--transition);
 text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

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

.bg-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.bg-middle {
  background-color: var(--color-middle);
  color: var(--color-white);
}

.bg-light {
  background-color: var(--color-light);
  color: var(--color-white);
}

.bold{
  font-weight: 700;
}

.regular{
  font-weight: 400;
}

.br-pc{
	display: block;
}

.br-sp{
	display: none;
}

@media (max-width: 1320px){
	.br-pc{
		display: none;
	}
}

@media (max-width: 780px){
	.br-sp{
		display: block;
	}
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: #4D4D4D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-logo {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeLogo 1s ease forwards;
  animation-delay: 0.3s;
}

.loading-logo img {
  width: 220px;
  height: auto;
  display: block;
}

@keyframes fadeLogo {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 10px;
  background: transparent;
}

.header-inner{
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img{
  width: 120px;
  display: block;
}

.header-nav{
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav ul{
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.header-nav a{
  font-family: var(--font-en);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.nav-instagram{
	line-height: 0;
}
.nav-instagram img{
	width: 24px;
	height: 24px;
	min-width: 24px;
}

.hamburger{
	display: none;
}
.nav-logo{
	opacity: 0;
}

@media (min-width: 1025px){
  .site-header{
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .site-header.is-visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1024px){

  .site-header{
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-inner{
	height: 60px;
	justify-content: flex-end;
  }

  .header-logo{
    display: none;
  }

  .hamburger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2000;
  }

  .hamburger span{
    display: block;
    height: 1px;
    width: 30px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .site-header.is-open .hamburger span:nth-child(1){
    transform: translateY(1px) rotate(45deg);
  }
  .site-header.is-open .hamburger span:nth-child(2){
    transform: translateY(-5px) rotate(-45deg);
  }

.header-nav{
  position: fixed;
  inset: 0;
  background: #4d4d4d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1500;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(8px);
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .35s;

  will-change: opacity, transform;
}

.site-header.is-open .header-nav{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    visibility 0s;
}

.nav-logo{
  margin: 0 auto 30px;
  line-height: 0;
  width: 120px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .45s cubic-bezier(.22,1,.36,1) .12s,
    transform .45s cubic-bezier(.22,1,.36,1) .12s;

  will-change: opacity, transform;
}

.site-header.is-open .nav-logo{
  opacity: 1;
  transform: translateY(0);
}

.nav-logo img{
  display: block;
  width: 100%;
  height: auto;
}

.header-nav ul{
  display: grid;
  gap: 10px;
  align-content: center;

  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .5s cubic-bezier(.22,1,.36,1) .18s,
    transform .5s cubic-bezier(.22,1,.36,1) .18s;

  will-change: opacity, transform;
}

.site-header.is-open .header-nav ul{
  opacity: 1;
  transform: translateY(0);
}

  .header-nav a{
    font-size: 15px;
  }

  .nav-instagram{
    margin-top: 18px;
    margin-bottom: 8px;
  }
  .nav-instagram img{
    width: 34px;
    height: 34px;
  }
}

body.menu-lock{
  overflow: hidden;
}

.hero{
  position: relative;
  height: 100vh;
  background: rgba(0,0,0,0.4);
}

.fixed{
  position: fixed;
  inset: 0;
  z-index: -1;
}

.fixed img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo {
  position: absolute;
  top: 30px;
  left: 4vw;
  z-index: 3;
}

.hero-logo img {
  width: 140px;
  height: auto;
  display: block;
}

.hero-copy-top {
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 3;
  width: min(650px, 68vw);
  text-align: right;
}

.hero-copy-top p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-base);
  line-height: 2.2;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-menu {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 3;
}

.hero-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.hero-menu-list::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 2px;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(255,255,255,0.65);
}

.hero-menu-list a {
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 15px;
  text-transform: uppercase;
}

.hero-menu-list a:hover {
  opacity: 0.75;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-family: var(--font-en);
  font-size: 12px;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 30%;
  background: rgba(255,255,255,0.9);
  animation: scrollLineMove 1.3s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0%   { top: -30%; opacity: 0; }
  15%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 1024px){
	.hero-menu-list {
		display: none;
	}
	.hero-copy-top {
	  position: absolute;
	  inset: 0;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  padding: 0 20px;
	  width: 100%;
	}
}

.section {
  position: relative;
  display: grid;
  grid-template-columns: var(--side-label-w) 1fr;
  column-gap: 10px;
  align-items: start;
}

.section .container,
.section .container-narrow,
.section .container--narrow {
  grid-column: 2;
}

.section-side-label {
  grid-column: 1;
  position: sticky;
  top: 20px;
  left: 20px;
  align-self: start;
  z-index: 2;
}

.section-side-label .side-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 26px;
}

.section-side-label .side-text::before{
  content: "";
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.65);
  display: block;
}

.section-side-label .side-en {
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  font-size: 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.section-side-label .side-ja {
  font-family: var(--font-base);
  font-size: 13px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

@media (max-width: 560px){

  :root{
    --side-label-w: 32px;
  }

  .section{
    column-gap: 5px;
  }

  .section-side-label{
    padding-top: 20px;
	left: 10px;
  }

  .section-side-label .side-text{
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .section-side-label .side-line{
    height: 60px;
  }
}

#introduction{
	padding-top: 150px;
}
.intro-text{
	text-align: center;
	margin-bottom: 100px;
}

.intro-slider-wrap {
  grid-column: 2;
  width: 100%;
  overflow: hidden;
}

.intro-slider-wrap .slick-list{
  overflow: visible;
}

.intro-slider-wrap .slick-slide{
  margin: 0;
}

.intro-slider-wrap .slide{
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.intro-slider-wrap .slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 930px){
  .intro-text{
    text-align: left;
  }

  .intro-text br{
    display: none;
  }
}

@media (max-width: 560px){
  .intro-slider-wrap{
    margin-left: 0;
    width: 100%;
  }

 .intro-slider .slide img{
    height: 60vw;
    object-fit: cover;
    display: block;
    width: 100%;
  }
}

.about .container-full{
  grid-column: 2;
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-lead{
	margin-bottom: 80px;
	font-size: 18px;
	text-align: center;
}

.about-blocks{
  display: grid;
  gap: 0;
}

.about-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(460px, 25vw, 620px);
}

.about-block.is-reverse .about-media{ order: 2; }
.about-block.is-reverse .about-body{  order: 1; }

.about-media{
  height: 100%;
  overflow: hidden;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-2 img{
    object-position: right bottom;
}

.about-body{
  height: 100%;
  padding: clamp(30px, 1.5vw, 40px) clamp(10px, 3vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-heading{
  margin: 0 0 30px;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
}

.about-body p{
  margin: 0 0 14px;
  opacity: 0.95;
}
.about-body p:last-child{
  margin-bottom: 0;
}

@media (max-width: 980px){

  .about-block{
    grid-template-columns: 1fr;
  }

  .about-body{ order: 1; }
  .about-media{ order: 2; }

  .about-block.is-reverse .about-media,
  .about-block.is-reverse .about-body{
    order: unset;
  }

  .about-block.is-reverse .about-body{ order: 1; }
  .about-block.is-reverse .about-media{ order: 2; }

  .about-media{
	  height: clamp(260px, 75vw, 420px);
	}

  .about-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 560px){
	.about-lead{
		margin-bottom: 50px;
		font-size: 16px;
	}
	.about-heading{
		font-size: 16px;
	}

}

.space-info-grid{
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  column-gap: clamp(40px, 3vw, 90px);
  align-items: center;
  padding-right: 3vw;
}

.space-drawing{
  margin: 0;
  display: grid;
  place-items: center;
}

.space-drawing img{
  width: min(450px, 100%);
  height: auto;
  display: block;
}

.space-specs{
  margin: 0;
}

.spec-list{
  margin: 0;
}

.spec-row{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.8);
}

.spec-row:first-child{
  padding-top: 0;
}

.spec-row dt{
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.95;
  white-space: nowrap;
}

.spec-row dd{
  margin: 0;
  opacity: 0.95;
  line-height: 2;
}

.spec-note{
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 1200px){
  .space-info-grid{
    grid-template-columns: minmax(260px, 420px) minmax(400px, 1fr);
    column-gap: clamp(30px, 3vw, 42px);
    align-items: center;
  }

  .space-drawing img{
    width: min(380px, 100%);
  }

  .space-specs{
    margin: 0 clamp(0px, 1vw, 12px) 0 0;
  }

  .spec-row{
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }
}

@media (max-width: 1024px){
  .space-info-grid{
    grid-template-columns: 1fr;
    row-gap: clamp(28px, 4vw, 48px);
    align-items: start;
  }

  .space-drawing{
    justify-items: center;
  }
  .space-drawing img{
    width: min(520px, 100%);
  }

  .space-specs{
    margin: 0;
  }

  .spec-row{
    grid-template-columns: clamp(84px, 16vw, 120px) 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px){
  .space-drawing img{
    width: 100%;
    max-width: 420px;
  }

  .spec-row{
    gap: 12px;
    padding: 14px 0;
    grid-template-columns: 1fr;
  }

  .spec-row dt{
    white-space: normal;
    letter-spacing: 0.04em;
  }

  .spec-row dd{
    line-height: 1.9;
  }

  .spec-note{
    font-size: 12px;
  }
}

.rental-lead{
  margin: 0 auto 70px;
  max-width: 760px;
  text-align: center;
  opacity: 0.95;
  line-height: 2.1;
}

.rental-lead br{
	display: none;
}

.rental-subtitle{
  margin: 0 0 22px;
  text-align: center;
  font-weight: 700;
  opacity: 0.95;
}

.yoko-scroll{
	display: none;
}

.rental-table-wrap{
  width: min(920px, 100%);
  margin: 0 auto 70px;
}

.rental-table{
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.88);
  color: #4D4D4D;
  table-layout: fixed;
  border: 1px solid rgba(77,77,77,0.45);
}

.rental-table tbody tr:nth-child(3){
  background: rgba(255,255,255,0.70);
}

.rental-table th,
.rental-table td{
  padding: 16px 18px;
  border: 1px solid rgba(77,77,77,0.45);
  font-size: 15px;
  line-height: 1.6;
  vertical-align: middle;
}

.rental-table thead th{
  background: rgba(0,0,0,0.06);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.rental-table tbody th[scope="row"]{
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.rental-table tbody td{
  text-align: center;
}

.rental-table tbody td:last-child{
  text-align: left;
}

.rental-table th:nth-child(1),
.rental-table td:nth-child(1){ width: 20%; }
.rental-table th:nth-child(2),
.rental-table td:nth-child(2){ width: 18%; }
.rental-table th:nth-child(3),
.rental-table td:nth-child(3){ width: 22%; }
.rental-table th:nth-child(4),
.rental-table td:nth-child(4){ width: 40%; }

.rental-notes{
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.rental-note-block{
  color: rgba(255,255,255,0.92);
}

.rental-note-title{
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rental-note-list{
  margin: 0;
  padding: 0;
  display: grid;
}

.rental-note-list li{
  position: relative;
  padding-left: 1.1em;
  line-height: 2;
  opacity: 0.95;
}

.rental-note-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.rental-note-text{
  margin: 0;
  opacity: 0.95;
}

.rental-note-text a{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding-bottom: 2px;
}

.rental-note-text a:hover{
  opacity: 0.75;
}

@media (max-width: 780px){
  .rental-lead br{
	display: block;
  }
  .rental-table-wrap,
  .rental-notes{
    width: 100%;
  }
  .rental-table th,
  .rental-table td{
    padding: 12px 12px;
    font-size: 13px;
  }
  .rental-table tbody td:last-child{
    text-align: left;
  }
}

@media (max-width: 600px){

	.yoko-scroll{
		display: block;
	}

  .rental-plan .container{
    min-width: 0;
  }

  .rental-table-wrap{
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rental-table{
    min-width: 530px;
  }
}

.section-break{
  position: relative;
  height: 300px;
  overflow: hidden;
}

.section-break-inner{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.section-break{
  background: transparent;
}

.flow-list{
  width: min(800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
}

.flow-item{
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  column-gap: clamp(18px, 2.2vw, 30px);
}

.flow-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,0.45);
  min-height: 74px;
}

.flow-step-label{
  font-family: var(--font-en);
  font-size: 13px;
  opacity: 0.8;
}

.flow-step-no{
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.flow-body{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-title{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.flow-text{
  margin: 0;
  font-size: 15px;
  line-height: 2;
  opacity: 0.92;
}

.flow-link{
  margin: 0;
  font-size: 13px;
  opacity: 0.92;
}

.flow-link a{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}

@media (max-width: 720px){
  .flow-item{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .flow-step{
	flex-direction: row;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 14px;
  }
}

.terms-of-use .container{
  margin: 0 auto;
}

.terms-groups{
  margin: 0 auto;
  padding-top: clamp(10px, 1vw, 18px);
  max-width: 700px;
}

.terms-group{
  padding: clamp(26px, 2.2vw, 40px) 0;
}

.terms-heading{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.terms-text{
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.terms-text.is-note{
  font-size: 13px;
  opacity: 0.78;
}

.access .container{
  max-width: 1100px;
}

.access-grid{
  display: grid;
  grid-template-columns: 340px minmax(700px, 1fr);
  margin-top: clamp(24px, 3vw, 50px);
}

.access-left{
  display: grid;
  gap: clamp(10px, 1vw, 20px);
  justify-items: start;
}

.access-photo{
  margin: 0;
  width: 100%;
  max-width: 260px;
}

.access-photo img{
  width: 100%;
  height: auto;
  display: block;
}

.access-text p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.access-text .access-spacer{
  height: 18px;
}

.access-right{
  width: 100%;
}

.map-embed{
  width: 100%;
}

.map-embed iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;

  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.map-embed:hover iframe{
  filter: grayscale(0%);
}

@media (max-width: 1350px){
  .access-grid{
    grid-template-columns: 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  .access-left{
	display: flex;
	gap: 5vw;
  }

  .access-photo{
    margin-bottom: 20px;
  }

  .access-right{
    width: min(900px, 100%);
  }

  .map-embed{
    width: 100%;
  }

  .map-embed iframe{
    width: 100%;
    height: 420px;
    display: block;
  }
}

@media (max-width: 900px){
  .access-grid{
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

 .access-left{
	flex-direction: column;
	gap: 0;
  }

  .map-embed iframe{
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px){
  .map-embed iframe{
    height: 320px;
  }
}

.contact-lead{
  margin: 0 auto clamp(34px, 3vw, 52px);
  max-width: 720px;
  text-align: center;
  opacity: 0.95;
  line-height: 2.2;
}

.contact-form{
  max-width: 720px;
  margin: 0 auto;
}

.form-group{
  margin-bottom: clamp(22px, 2vw, 34px);
}

.form-group fieldset{
  border: 0;
  padding: 0;
  margin: 0;
}

.contact-form .form-group:first-of-type{
  background: none;
  border: 0;
  padding: 0;
}

.form-label{
  display: block;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.95;
  font-size: 15px;
}

.radio-group{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding-top: 4px;
}

.radio{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  opacity: 0.95;
}

.radio input{
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  position: relative;
  background: transparent;
}

.radio input:checked::after{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
}

.radio input:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
}

.form-control{
  width: 100%;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.92);
  color: #2b2b2b;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.8;
}

.form-control:focus{
  outline: none;
  border-color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,1);
}

textarea.form-control{
  resize: vertical;
  min-height: 170px;
}

.policy-box{
  background: #fff;
  color: #4d4d4d;
  border: none;
  padding: 18px 20px;
  height: 220px;
  overflow: auto;
  line-height: 1.8;
  font-size: 15px;
}

.policy-box p a{
  color: #4d4d4d;
  text-decoration: none;
}

.contact .form-group > .form-label:has(+ .policy-box){
  background: #6A6A6A;
  color: #fff;
  padding: 10px 14px;
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.policy-box p{
  margin: 0 0 12px;
}

.policy-box ul{
  margin: 0 0 12px 1.2em;
  padding: 0;
}

.policy-box li{
  list-style: disc;
}

.policy-box::-webkit-scrollbar{
  width: 12px;
}

.policy-box::-webkit-scrollbar-thumb{
  background: #acacac;
  border-radius: 10px;
  border: 3px solid #fff;
}

.policy-box::-webkit-scrollbar-thumb:hover{
  background: #6a6a6a;
}

.checkbox{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  opacity: 0.95;
}

.checkbox input{
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255,255,255,0.75);
  background: transparent;
  position: relative;
}

.checkbox input:checked::after{
  content:"";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 6px;
  height: 9px;
  border-right: 2px solid rgba(255,255,255,0.95);
  border-bottom: 2px solid rgba(255,255,255,0.95);
  transform: rotate(45deg);
}

.checkbox input:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
}

.form-actions{
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2vw, 28px);
}

.btn-submit{
  min-width: 250px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity .25s ease, background .25s ease;
}

.btn-submit:hover{
  background: rgba(0,0,0,0.3);
 border: 1px solid rgba(255,255,255,0.3);
}

.contact a{
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.95;
}
.contact a:hover{
  opacity: 1;
}

@media (max-width: 768px){
  .contact-form{
    max-width: 100%;
  }
}

@media (max-width: 620px){
	.contact-lead{
		text-align: left;
	}
	.contact-lead br{
		display: none;
	}
}

.instagram-more{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: auto;
  justify-content: flex-end;
  margin-bottom: 20px;
  padding-right: 10px;
}

.instagram-more img{
  width: 16px;
  height: 16px;
  display: block;
}

.instagram .container{

  padding-left: clamp(20px, 3vw, 60px);
  padding-right: clamp(20px, 3vw, 60px);
}

.snapwidget-widget {
  width: 100%;
  border: none;
  overflow: hidden;
}

.footer{
  padding: clamp(70px, 7vw, 120px) clamp(20px, 3vw, 40px);
}

.footer-inner{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(40px, 6vw, 120px);
}

.footer-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-nav a{
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity var(--transition);
  min-width: 120px;
}

.footer-nav a:hover{
  opacity: 0.65;
}

.footer-right{
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
}

.footer-logo img{
  width: min(150px, 25vw);
  height: auto;
  display: block;
}

.footer-actions{
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-instagram img{
  width: 35px;
  height: 35px;
  display: block;
}

.footer-instagram:hover{
  opacity: 0.75;
  background: rgba(255,255,255,0.06);
}

.footer-top{
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.footer-top:hover{
  opacity: 0.7;
}

.footer-top-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-top-icon img{
  width: 30px;
  height: 30px;
  display: block;
}

.footer-copy{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 560px){
	.footer-actions{
	  gap: 20px;
	}

	.footer-instagram img{
	  width: 30px;
	  height: 30px;
	}

	.footer-top-text{
		min-width: 65px;
	}

}

.thanks-hero{
  padding: clamp(56px, 7vw, 110px) 0;
}

.thanks .container{
  max-width: 800px;
  text-align: center;
  padding-inline: clamp(30px, 3vw, 40px);
}

.thanks-title{
  font-family: "Cinzel","Noto Serif JP",serif;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.thx-image{
  width: 100%;
  height: auto;
  filter: saturate(.95) contrast(1.03);
}

@supports (aspect-ratio: 4 / 3){
  .thx-image{
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

.thanks-eyebrow{
  opacity: .85;
  margin: 10px auto;
  font-size: 120%;
}

.thanks-lead{
  margin-bottom: 30px;
  opacity: .95;
}

.thanks-note{
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.08);
  backdrop-filter: blur(2px);
}

.thanks-note-list{
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.8;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-note-list a{
	font-size: 18px;
}

.thanks-actions{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-submit.is-outline{
  background: transparent;
}

.thanks .btn-submit{
	border: none;
	margin: 0 auto;
	text-align: center;
}

@media (max-width: 767px){
  	.thanks-lead{
		font-size: 90%;
	}
}

@media (max-width: 560px){
  .thanks .container{
	  text-align: left;
	}
}

@media (max-width: 480px){
  .thanks-hero{
    padding: 46px 0 70px;
  }

  .thanks-note{
    padding: 16px 14px 12px;
  }

  .thanks-actions{
    margin-top: 22px;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity .9s ease, transform .9s ease, filter .9s ease;
  will-change: opacity, transform, filter;
}

.js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
