@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #f8f3ec;
  color: #3a2e26;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(166, 126, 110, 0.35);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img,
video {
  filter: sepia(0.18) saturate(0.82) brightness(1.04) contrast(0.95) hue-rotate(-4deg);
}

.logo img,
.footer-brand .footer-logo img,
.stamp img,
.no-filter,
.no-filter img {
  filter: none !important;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #d4c4b6;
  margin: 0;
  opacity: 0.6;
}

.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: padding 0.3s ease, background 0.3s ease;
}
#header.site-header.is-scrolled {
  background: rgba(248, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px clamp(20px, 4vw, 56px);
  box-shadow: 0 1px 0 rgba(212, 196, 182, 0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.nav {
  display: flex;
  align-items: center;
}
.nav.nav-left {
  justify-self: end;
}
.nav.nav-right {
  justify-self: start;
  gap: 24px;
}
.nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3a2e26;
  position: relative;
  padding: 4px 0;
  display: inline-block;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #3a2e26;
  transition: width 0.4s ease, left 0.4s ease;
}
.nav a:hover::after {
  width: 100%;
  left: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo img {
  height: 128px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.site-header.is-scrolled .logo img {
  height: 76px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  border: 0;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #3a2e26;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) {
  top: 16px;
}
.nav-toggle span:nth-child(2) {
  top: 22px;
}
.nav-toggle span:nth-child(3) {
  top: 28px;
}
.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

#footer.site-footer {
  background: #f4ebe0;
  color: #3a2e26;
  padding: 80px clamp(20px, 4vw, 56px) 36px;
  border-top: 1px solid #d4c4b6;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}
.footer-brand .footer-logo img {
  height: 96px;
  width: auto;
}

.footer-address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-address-line {
  display: block;
}

.footer-tel {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.footer-tel-label {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: #a39689;
}

.footer-tel-num {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #3a2e26;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.footer-tel-num:hover {
  border-color: #3a2e26;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-nav-col li + li {
  margin-top: 8px;
}
.footer-nav-col a {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.9;
  color: #6e5c52;
  letter-spacing: 0.06em;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-nav-col a:hover {
  color: #3a2e26;
  border-color: #a67e6e;
}

.footer-copyright {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #a39689;
  text-align: center;
  margin: 72px 0 0;
  padding-top: 28px;
  border-top: 1px solid #d4c4b6;
  text-transform: uppercase;
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: clamp(20px, 4vw, 56px);
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
}
.container--p-l {
  --container-pb: 80px;
}
.container--p-m {
  --container-pb: 60px;
}
.container--p-s {
  --container-pb: 40px;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.section {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 36px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  min-width: 200px;
  position: relative;
}
.btn--sm {
  padding: 11px 22px;
  font-size: 12px;
  min-width: 0;
  letter-spacing: 0.14em;
}
.btn--primary {
  background: #c8a596;
  color: #fff;
}
.btn--primary:hover {
  background: #a67e6e;
}
.btn--ghost {
  background: transparent;
  color: #3a2e26;
  border: 1px solid #3a2e26;
}
.btn--ghost:hover {
  background: #3a2e26;
  color: #f8f3ec;
}
.btn--hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 24px 56px 24px 56px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  border-radius: 0;
  transition: background 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), color 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}
.btn--hero .btn-label {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.btn--hero .btn-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 12px;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  pointer-events: none;
}
.btn--hero .btn-arrow i,
.btn--hero .btn-arrow svg {
  font-size: 14px;
  width: auto;
  height: auto;
}
.btn--hero:hover .btn-arrow {
  transform: translateY(-50%) translateX(6px);
}
.btn--hero-primary {
  background: #3a2e26;
  color: #fff;
  box-shadow: 0 16px 32px -18px rgba(60, 40, 30, 0.45);
}
.btn--hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #a67e6e;
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.5, 0.05, 0.1, 1);
  z-index: 1;
}
.btn--hero-primary:hover::before {
  transform: translateX(0);
}
.btn--hero-primary:hover {
  box-shadow: 0 20px 40px -14px rgba(60, 40, 30, 0.5);
}
.btn--hero-ghost {
  background: #f8f3ec;
  color: #3a2e26;
  border: 1px solid #3a2e26;
}
.btn--hero-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3a2e26;
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.5, 0.05, 0.1, 1);
  z-index: 1;
}
.btn--hero-ghost:hover::before {
  transform: translateX(0);
}
.btn--hero-ghost:hover {
  color: #fff;
}
.btn--ig {
  gap: 10px;
  padding: 16px 32px;
}

i.ig-icon,
.ig-icon {
  font-size: 18px;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

i.pin-icon,
.pin-icon {
  font-size: 16px;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

i.icon-sm,
.icon-sm {
  font-size: 14px;
  width: auto;
  height: auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #6e5c52;
  margin: 0 0 28px;
}
.section-eyebrow--center {
  justify-content: center;
}

.section-eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: #6e5c52;
}

.arch-frame {
  width: 100%;
  aspect-ratio: 4.5/5;
  border-radius: 50% 50% 4px 4px/50% 50% 4px 4px;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-card {
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fff;
  padding: 8px 8px 14px;
  box-shadow: 0 18px 40px -16px rgba(60, 40, 30, 0.18);
  transform: rotate(-3deg);
}
.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stamp {
  position: absolute;
  right: -20px;
  top: 24px;
  width: 110px;
  height: 110px;
  color: #a67e6e;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  opacity: 0.85;
}
.stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stamp-script {
  position: relative;
  font-family: "Italianno", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: 36px;
  color: #a67e6e;
  line-height: 1;
}

.title {
  margin: 0 auto 60px;
  position: relative;
}
.title .en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  display: block;
  color: #a67e6e;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--center {
  text-align: center;
}

.card {
  height: 100%;
  display: flex;
  background: #f8f3ec;
  border-radius: 4px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}
.card__img img,
.card__img picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.video-marquee {
  background: #f8f3ec;
  padding: 30px 0 50px;
  position: relative;
  overflow: hidden;
}

.video-marquee-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.video-marquee-list {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: videoMarqueeScroll 80s linear infinite;
}
.video-marquee-list:hover {
  animation-play-state: paused;
}
.video-marquee-list li {
  flex: 0 0 auto;
  width: clamp(180px, 16vw, 260px);
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.video-marquee-list li video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.video-marquee-list li:hover video {
  transform: scale(1.04);
}

@keyframes videoMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .video-marquee-list {
    animation: none;
  }
}
.cta-bar {
  position: relative;
  background: #f4ebe0;
  color: #3a2e26;
  padding: 200px clamp(20px, 4vw, 56px) 100px;
  overflow: hidden;
}

.cta-arch {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  width: min(820px, 78vw);
  aspect-ratio: 1/0.85;
  background: #d9bfb5;
  border-radius: 50% 50% 4px 4px/50% 50% 4px 4px;
  z-index: 0;
}

.cta-bar-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-bar-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  line-height: 1;
}

.cta-bar-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.08em;
  color: #3a2e26;
}

.cta-bar-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.34em;
  color: #6e5c52;
}

.cta-bar-lead {
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.06em;
  margin: 0 0 44px;
}

.cta-bar-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #3a2e26;
  border: 1px solid #3a2e26;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  box-shadow: 0 8px 24px -12px rgba(60, 40, 30, 0.2);
}
.cta-icon-btn svg,
.cta-icon-btn i {
  width: 28px;
  height: 28px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-icon-btn:hover {
  background: #3a2e26;
  color: #fff;
  transform: translateY(-4px);
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #3a2e26;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center, .tcenter, .tcenter_pc {
  text-align: center;
}

.text-right, .tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.7em;
  letter-spacing: 0;
}

.en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
}

.color01 {
  color: #c8a596;
}

.color02 {
  color: #a67e6e;
}

.color-w {
  color: #ffffff !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #f4ebe0;
}

.bg--blush {
  background: #e8d3cb;
}

.bg--deep {
  background: #d9bfb5;
}

.bg--base {
  background: #f8f3ec;
}

.bg--main {
  background: #c8a596;
}

.bg--sub {
  background: #a67e6e;
}

.bg--gray {
  background: #f5f5f5;
}

.bg {
  position: relative;
}
.bg--round {
  border-radius: 24px;
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(232, 199, 184, 0.45) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #a67e6e;
  text-decoration: underline;
}

.shadow {
  box-shadow: 0 2px 0 rgba(60, 40, 30, 0.04);
}

.shadow-md {
  box-shadow: 0 10px 30px -16px rgba(60, 40, 30, 0.22);
}

.shadow-lg {
  box-shadow: 0 24px 50px -24px rgba(60, 40, 30, 0.22);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 1.2s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

@media (prefers-reduced-motion: reduce) {
  [data-ani] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
main > section.js-fade-section > .container,
main > section.js-fade-section > [class*=-inner],
main > section.js-fade-section > .story-center,
.cta-bar.js-fade-section > .container,
.cta-bar.js-fade-section > [class*=-inner],
.cta-bar.js-fade-section > .story-center {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
main > section.js-fade-section.is-in-view > .container, main > section.js-fade-section.is-in-view > [class*=-inner], main > section.js-fade-section.is-in-view > .story-center,
.cta-bar.js-fade-section.is-in-view > .container,
.cta-bar.js-fade-section.is-in-view > [class*=-inner],
.cta-bar.js-fade-section.is-in-view > .story-center {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  main > section.js-fade-section > .container,
  main > section.js-fade-section > [class*=-inner],
  main > section.js-fade-section > .story-center,
  .cta-bar.js-fade-section > .cta-bar-inner {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero {
  position: relative;
  padding-top: 220px;
  padding-bottom: 96px;
}

.hero-bg-blush {
  position: absolute;
  left: 0;
  right: 0;
  top: 360px;
  bottom: 0;
  background: #e8d3cb;
}

.hero-collage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  z-index: 1;
}
.hero-collage > [id^=cms-text-],
.hero-collage > [id^=cms-] {
  display: contents;
}
.hero-collage > script {
  display: none;
}
.hero-collage::before, .hero-collage::after {
  content: "TIRA · PERMANENT JEWELRY · OKINAWA · GINOWAN";
  position: absolute;
  top: 40px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: #a39689;
  display: flex;
  align-items: center;
}
.hero-collage::before {
  left: 4px;
}
.hero-collage::after {
  right: 4px;
  transform: rotate(180deg);
}

.hero-pic {
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.hero-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-pic:hover img {
  transform: scale(1.04);
}
.hero-pic--center {
  margin-top: -28px;
  aspect-ratio: 3/4.2;
}
.hero-pic::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
  margin: 80px auto 0;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6e5c52;
  margin: 0 0 36px;
}

.hero-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #3a2e26;
  margin: 0 0 40px;
}
.hero-title span {
  display: block;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: #3a2e26;
  margin: 0 auto 32px;
  opacity: 0.5;
}

.hero-lead {
  font-size: 17px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0 auto 44px;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.concept {
  background: #f4ebe0;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
  position: relative;
  overflow: hidden;
}

.concept-botanical {
  position: absolute;
  right: -40px;
  top: 60px;
  width: 320px;
  height: auto;
  color: #a67e6e;
  opacity: 0.18;
  pointer-events: none;
}

.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  position: relative;
}

.concept-visual {
  position: relative;
  padding: 0 0 40px 40px;
}

.concept-heading {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.85;
  letter-spacing: 0.1em;
  color: #3a2e26;
  margin: 0 0 32px;
}

.concept-body p {
  font-size: 17px;
  line-height: 2.2;
  color: #6e5c52;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
}
.concept-body p:last-child {
  margin-bottom: 0;
}

.pj {
  background: #f8f3ec;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
  position: relative;
  overflow: hidden;
}

.pj-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pj-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.pj-title {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: 0.06em;
  color: #3a2e26;
  margin: 0 0 28px;
  line-height: 1.3;
}

.pj-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.6em;
  letter-spacing: 0.16em;
  margin-left: 0.4em;
  vertical-align: 0.08em;
  color: #6e5c52;
}

.pj-lead {
  font-size: 14.5px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.06em;
}

.pj-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.pj-card {
  text-align: center;
  position: relative;
}
.pj-card--mid {
  margin-top: 56px;
}

.pj-card-num {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #3a2e26;
  display: inline-block;
  border: 1px solid #a39689;
  padding: 6px 14px;
  margin-bottom: 24px;
  background: #f8f3ec;
  position: relative;
  z-index: 2;
}

.pj-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 28px;
}
.pj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pj-card-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #3a2e26;
  margin: 0 0 14px;
}

.pj-card-desc {
  font-size: 15.5px;
  line-height: 2;
  color: #6e5c52;
  margin: 0 auto;
  max-width: 280px;
  letter-spacing: 0.05em;
}

.gallery {
  background: #f8f3ec;
  padding: 30px 0 50px;
  position: relative;
  overflow: hidden;
}

.gallery-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.gallery-list {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}
.gallery-list:hover {
  animation-play-state: paused;
}
.gallery-list li {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f4ebe0;
}
.gallery-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.gallery-list li:hover img {
  transform: scale(1.06);
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-list {
    animation: none;
  }
}
.reasons {
  background: #e8d3cb;
  padding: 130px clamp(20px, 4vw, 56px) 150px;
  position: relative;
  overflow: hidden;
}

.reasons-sparkle {
  position: absolute;
  width: 80px;
  height: 80px;
  color: #a67e6e;
  opacity: 0.35;
  pointer-events: none;
}
.reasons-sparkle--tl {
  left: 6%;
  top: 80px;
}
.reasons-sparkle--br {
  right: 6%;
  bottom: 80px;
  transform: rotate(20deg);
}

.reasons-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.reasons-head {
  text-align: center;
  margin-bottom: 72px;
}

.reasons-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 0.1em;
  color: #3a2e26;
  margin: 0;
  line-height: 1.4;
}

.reasons-title-script {
  font-family: "Italianno", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: 1.6em;
  color: #a67e6e;
  margin-right: 0.05em;
  vertical-align: -0.08em;
  letter-spacing: 0.02em;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reason-card {
  background: #f8f3ec;
  padding: 56px 48px 48px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.reason-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #d4c4b6;
  pointer-events: none;
}
.reason-card::after {
  content: attr(data-num);
  position: absolute;
  top: -28px;
  right: -8px;
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0;
  color: #e8c7b8;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(60, 40, 30, 0.22);
}

.reason-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reason-card-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a67e6e;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.reason-card-num span {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: #a67e6e;
  line-height: 1;
}

.reason-card-line {
  flex: 1;
  height: 1px;
  background: #e8c7b8;
}

.reason-card-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: #3a2e26;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

.reason-card-desc {
  font-size: 16.5px;
  line-height: 2.05;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.story {
  background: #f4ebe0;
  padding: 160px clamp(20px, 4vw, 56px) 180px;
  position: relative;
  overflow: hidden;
}

.story-center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.story-heading {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.65;
  letter-spacing: 0.1em;
  color: #a67e6e;
  margin: 0 0 18px;
}

.story-body {
  margin-top: 28px;
}
.story-body p {
  font-size: 17px;
  line-height: 2.2;
  color: #6e5c52;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
}
.story-body p:last-child {
  margin-bottom: 0;
}

.story-sign {
  margin: 36px 0 0;
  font-family: "Italianno", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: #a67e6e;
  letter-spacing: 0.02em;
}

.story-float {
  position: absolute;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6e5c52;
  text-align: center;
}
.story-float--left {
  left: 5%;
  top: 50%;
  transform: translateY(-20%);
}
.story-float--right {
  right: 5%;
  top: 18%;
}
.story-float--right .story-float-img {
  width: 200px;
  aspect-ratio: 5/4;
}
.story-float figcaption {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6e5c52;
  text-align: center;
}

.story-float-img {
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -30px rgba(60, 40, 30, 0.18);
}
.story-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow {
  background: #e8d3cb;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
  position: relative;
  overflow: hidden;
}

.flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.flow-head {
  text-align: center;
  margin-bottom: 80px;
}

.flow-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  line-height: 1;
}

.flow-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 60px);
  letter-spacing: 0.16em;
  color: #3a2e26;
  padding-left: 0.16em;
}

.flow-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.flow-lead {
  font-size: 17px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.06em;
}

.flow-steps {
  position: relative;
  counter-reset: flowstep;
}
.flow-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0, #a67e6e 4%, #a67e6e 96%, transparent 100%);
  opacity: 0.4;
  transform: translateX(-0.5px);
}

.flow-step {
  position: relative;
}
.flow-step .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  position: relative;
  padding: 36px 0;
}
.flow-step + .flow-step {
  margin-top: 24px;
}
.flow-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #e8d3cb;
  border: 1px solid #a67e6e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.flow-step:nth-child(even) .flow-step-visual {
  order: 2;
}
.flow-step:nth-child(even) .flow-step-body {
  order: 1;
  text-align: right;
}
.flow-step:nth-child(even) .flow-step-num {
  justify-content: flex-end;
}

.flow-step-visual {
  position: relative;
}

.flow-step-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.flow-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}
.flow-step-img::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(60, 40, 30, 0.08) inset;
}

.flow-step:hover .flow-step-img img {
  transform: scale(1.04);
}

.flow-step-body {
  padding: 8px 0;
}

.flow-step-num {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  color: #a67e6e;
}
.flow-step-num i,
.flow-step-num em {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.flow-step-num b,
.flow-step-num strong {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 46px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.flow-step-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: #3a2e26;
  margin: 0 0 16px;
}

.flow-step-desc {
  font-size: 14.5px;
  line-height: 2.05;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.05em;
}

.banner {
  position: relative;
  width: 100%;
  background: #f8f3ec;
  padding: 0 0 64px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  aspect-ratio: 7/2;
  overflow: hidden;
  position: relative;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 12s ease;
}
.banner-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.banner:hover .banner-img img {
  transform: scale(1.06);
}

.banner-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #6e5c52;
  padding: 0 clamp(20px, 4vw, 56px);
}

.banner-caption-line {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: #a39689;
}

.price {
  background: #f8f3ec;
  padding: 100px clamp(20px, 4vw, 56px) 160px;
}

.price-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.price-head {
  text-align: center;
  margin-bottom: 64px;
}

.price-title {
  margin: 0 0 28px;
  line-height: 1;
}

.price-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.1em;
  color: #3a2e26;
}

.price-lead {
  font-size: 17px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.06em;
}

.price-table-wrap {
  margin-bottom: 96px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  font-size: 15px;
}
.price-table thead th {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a67e6e;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #a67e6e;
}
.price-table thead th:nth-child(2), .price-table thead th:nth-child(3) {
  width: 200px;
}
.price-table tbody tr {
  transition: background 0.3s ease;
}
.price-table tbody tr:hover {
  background: #f4ebe0;
}
.price-table tbody td {
  padding: 22px 24px;
  border-bottom: 1px solid #d4c4b6;
  color: #3a2e26;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.price-table tbody td:first-child {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 16px;
}

.price-amount {
  font-size: 22px;
  color: #a67e6e;
  letter-spacing: 0.04em;
}
.price-amount span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #6e5c52;
  margin-left: 4px;
  letter-spacing: 0;
}

.price-note {
  margin: 20px 0 0;
  font-size: 14px;
  color: #a39689;
  letter-spacing: 0.04em;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.price-card {
  background: #f8f3ec;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #d4c4b6;
  pointer-events: none;
  z-index: 1;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -28px rgba(60, 40, 30, 0.18);
}

.price-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: #f4ebe0;
}
.price-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.price-card-img::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.price-card:hover .price-card-img img {
  transform: scale(1.05);
}

.price-card-body {
  padding: 36px 36px 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-card-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #3a2e26;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4c4b6;
}

.price-card-lead {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 1.85;
  color: #a67e6e;
  margin: 0 0 14px;
  letter-spacing: 0.06em;
}

.price-card-desc {
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.price-card-price {
  font-size: 32px;
  letter-spacing: 0.04em;
  color: #a67e6e;
  margin: auto 0 0;
  padding-top: 16px;
  line-height: 1;
}
.price-card-price span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #6e5c52;
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.materials {
  background: #f4ebe0;
  padding: 140px clamp(20px, 4vw, 56px) 150px;
  position: relative;
}

.materials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.materials-head {
  text-align: center;
  margin-bottom: 72px;
}

.materials-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  line-height: 1;
}

.materials-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: 0.1em;
  color: #3a2e26;
  padding-left: 0.1em;
}

.materials-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.materials-lead {
  font-size: 17px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.06em;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.material-card {
  background: #f8f3ec;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.material-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #d4c4b6;
  pointer-events: none;
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -22px rgba(60, 40, 30, 0.18);
}

.material-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.material-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.material-card-img::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.material-card:hover .material-card-img img {
  transform: scale(1.05);
}

.material-card-body {
  padding: 26px 24px 28px;
  text-align: center;
}

.material-card-en {
  display: block;
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #a67e6e;
  line-height: 1;
  margin-bottom: 10px;
}

.material-card-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #3a2e26;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d4c4b6;
}

.material-card-desc {
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.04em;
  text-align: left;
}

.allergy-card {
  background: #f8f3ec;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
}
.allergy-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #e8c7b8;
  pointer-events: none;
}

.allergy-card-head {
  margin-bottom: 28px;
}

.allergy-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #3a2e26;
  margin: 0;
}

.allergy-body p {
  font-size: 16px;
  line-height: 2.1;
  color: #6e5c52;
  margin: 0 0 14px;
  letter-spacing: 0.05em;
}
.allergy-body p:last-child {
  margin-bottom: 0;
}

.allergy-body strong {
  font-weight: 600;
  color: #a67e6e;
  border-bottom: 1px solid #e8c7b8;
  padding-bottom: 1px;
}

.aftercare {
  background: #e8d3cb;
  padding: 130px clamp(20px, 4vw, 56px) 150px;
  position: relative;
}

.aftercare-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.aftercare-visual {
  position: relative;
}

.aftercare-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: #f4ebe0;
}
.aftercare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aftercare-img::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.aftercare-title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  line-height: 1.3;
}

.aftercare-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.08em;
  color: #a67e6e;
  line-height: 1;
}

.aftercare-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #3a2e26;
}

.aftercare-table {
  width: 100%;
  border-collapse: collapse;
  background: #f8f3ec;
  margin-bottom: 12px;
}
.aftercare-table th {
  background: transparent;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a67e6e;
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid #e8c7b8;
}
.aftercare-table td {
  padding: 18px 22px;
  font-size: 16px;
  color: #3a2e26;
  border-bottom: 1px solid #d4c4b6;
  letter-spacing: 0.06em;
}
.aftercare-table tr:last-child td {
  border-bottom: 0;
}

.aftercare-amount {
  font-size: 22px;
  color: #a67e6e;
  letter-spacing: 0.04em;
}

.aftercare-note {
  font-size: 14px;
  color: #a39689;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.aftercare-cta {
  min-width: 220px;
}

.accessory {
  background: #f8f3ec;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
}

.accessory-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.accessory-head {
  text-align: center;
  margin-bottom: 64px;
}

.accessory-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  line-height: 1;
}

.accessory-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: 0.1em;
  color: #3a2e26;
  padding-left: 0.1em;
}

.accessory-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.accessory-lead {
  line-height: 2.1;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.06em;
}

.accessory-grid {
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}

.accessory-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.accessory-item:hover {
  transform: translateY(-3px);
}

.accessory-item-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f4ebe0;
  position: relative;
}
.accessory-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.accessory-item-img::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.accessory-item:hover .accessory-item-img img {
  transform: scale(1.06);
}

.accessory-item-label {
  margin: 14px 0 0;
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #3a2e26;
  text-align: center;
}

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

.shop-info {
  background: #f4ebe0;
  padding: 140px clamp(20px, 4vw, 56px) 150px;
  position: relative;
}

.shop-info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-info-head {
  text-align: center;
  margin-bottom: 64px;
}

.shop-info-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  line-height: 1;
}

.shop-info-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: 0.1em;
  color: #3a2e26;
  padding-left: 0.1em;
}

.shop-info-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.shop-info-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}

.shop-info-photos .shop-photos {
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.shop-info-map .access-map-iframe {
  aspect-ratio: 21/9;
}

.shop-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}
.shop-info-table tr {
  border-bottom: 1px solid #d4c4b6;
}
.shop-info-table tr:first-child {
  border-top: 1px solid #a67e6e;
}
.shop-info-table th {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a67e6e;
  padding: 18px 24px 18px 4px;
  text-align: left;
  width: 130px;
  vertical-align: top;
  position: relative;
  background: transparent;
}
.shop-info-table td {
  padding: 18px 4px;
  font-size: 16.5px;
  color: #3a2e26;
  letter-spacing: 0.06em;
  line-height: 1.7;
  background: transparent;
}

.tel-link {
  font-size: 22px;
  color: #a67e6e;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.tel-link:hover {
  border-color: #a67e6e;
}

.access-title {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 20px;
  line-height: 1;
}

.access-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #3a2e26;
}

.access-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #6e5c52;
}

.access-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.05em;
}
.access-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 10px;
  height: 1px;
  background: #a67e6e;
}

.shop-info-route .access-videos {
  margin-top: 0;
}

.access-map-iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.access-map-iframe > div,
.access-map-iframe > div > *,
.access-map-iframe div,
.access-map-iframe p,
.access-map-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  display: block;
}

.access-videos {
  margin-top: clamp(40px, 5vw, 64px);
}

.access-videos-head {
  text-align: center;
  margin-bottom: 32px;
}

.access-videos-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  line-height: 1;
}

.access-videos-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: 0.1em;
  color: #3a2e26;
}

.access-videos-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #6e5c52;
}

.access-videos-lead {
  font-size: 14.5px;
  line-height: 1.95;
  color: #6e5c52;
  margin: 0;
  letter-spacing: 0.05em;
}

.access-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  max-width: 720px;
  margin-inline: auto;
}

.access-video {
  position: relative;
}
.access-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 7/11;
  object-fit: cover;
  display: block;
  background: #f4ebe0;
}

.access-video-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d4c4b6;
}

.access-video-num {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  color: #a67e6e;
  letter-spacing: 0.08em;
  line-height: 1;
  flex: 0 0 auto;
}

.access-video-sub {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  color: #3a2e26;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.access-video-caption {
  margin: 10px 0 0;
  font-size: 13px;
  color: #a39689;
  letter-spacing: 0.06em;
}

.shop-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shop-photo {
  margin: 0;
  position: relative;
}

.shop-photo-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f3ec;
  position: relative;
}
.shop-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.shop-photo-img::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.shop-photo:hover .shop-photo-img img {
  transform: scale(1.05);
}

.access-map-link {
  margin-top: 28px;
  min-width: 240px;
}

.faq {
  position: relative;
  background: #e8d3cb;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
  overflow: hidden;
}
.faq::before, .faq::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><g fill='none' stroke='%23ffffff' stroke-width='0.8' stroke-linecap='round' opacity='0.55'><path d='M200 40 Q150 160 180 280 Q210 360 170 390'/><path d='M200 40 Q175 60 170 90 Q195 80 200 40 Z'/><path d='M192 130 Q165 145 160 175 Q185 168 192 130 Z'/><path d='M186 220 Q215 235 220 265 Q195 258 186 220 Z'/><path d='M188 300 Q160 315 155 345 Q180 338 188 300 Z'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.faq::before {
  top: 60px;
  left: -130px;
  transform: rotate(-12deg);
}
.faq::after {
  bottom: 40px;
  right: -130px;
  transform: rotate(168deg);
}

.faq-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 64px;
}

.faq-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  line-height: 1;
}

.faq-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: 0.14em;
  color: #3a2e26;
  padding-left: 0.14em;
}

.faq-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.faq-lead {
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.06em;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #f8f3ec;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(60, 40, 30, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.faq-item[open] {
  border-color: #a67e6e;
  background: #fff;
  box-shadow: 0 10px 30px -16px rgba(60, 40, 30, 0.22);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}

.faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  position: relative;
  transition: color 0.3s ease;
}
.faq-q:hover {
  color: #a67e6e;
}

.faq-q-mark {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  color: #a67e6e;
  letter-spacing: 0.02em;
  line-height: 1.4;
  flex: 0 0 auto;
  align-self: start;
  padding-top: 1px;
}

.faq-q-text {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #3a2e26;
}

.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #6e5c52;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), background 0.3s ease;
}
.faq-icon::before {
  width: 18px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
  background: #a67e6e;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item[open] .faq-q-mark {
  color: #a67e6e;
}

.faq-a-wrap {
  display: block;
  overflow: hidden;
  height: 0;
  transition: height 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.faq-item[open] .faq-a-wrap {
  height: auto;
}

.faq-a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 0;
  align-items: start;
  padding: 4px 28px 26px;
  border-top: 1px dashed #d4c4b6;
  margin-top: 0;
  padding-top: 22px;
}
.faq-a .faq-a-mark {
  grid-column: 1;
  grid-row: 1;
}
.faq-a > :not(.faq-a-mark) {
  grid-column: 2;
}
.faq-a > :empty {
  display: none;
}
.faq-a > p {
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.05em;
  margin: 0;
}
.faq-a > p:not(:empty) ~ p:not(:empty) {
  margin-top: 0.8em;
}

.faq-a-mark {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  color: #c8a596;
  letter-spacing: 0.02em;
  line-height: 1.4;
  flex: 0 0 auto;
  align-self: start;
  padding-top: 1px;
}

.faq-a-text {
  font-size: 16px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.05em;
  margin: 0;
}

.reservation {
  position: relative;
  background: #f8f3ec;
  padding: 140px clamp(20px, 4vw, 56px) 160px;
  overflow: hidden;
}

.reservation-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.reservation-head {
  text-align: center;
  margin-bottom: 80px;
}

.reservation-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  line-height: 1;
}

.reservation-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 56px);
  letter-spacing: 0.12em;
  color: #3a2e26;
  padding-left: 0.12em;
}

.reservation-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #6e5c52;
  padding-left: 0.4em;
}

.reservation-lead {
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.06em;
  margin: 0;
}

.reservation-subhead {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: #3a2e26;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.5;
}
.reservation-subhead::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #a67e6e;
  margin: 12px auto 0;
}

.calendar-block {
  margin-bottom: 120px;
}

.calendar-desc {
  font-size: 16px;
  line-height: 1.95;
  color: #6e5c52;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 28px;
}

.calendar-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #f4ebe0;
  border: 1px solid #d4c4b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.calendar-embed:empty::before {
  content: "Google カレンダー埋め込み枠（CMSで設定）";
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #a39689;
}
.calendar-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.calendar-note {
  font-size: 12.5px;
  color: #a39689;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
}

.reserve-methods-block {
  margin-bottom: 120px;
}

.reserve-methods {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.reserve-method {
  background: #d9bfb5;
  border: 0;
  border-radius: 50% 50% 4px 4px/45% 45% 4px 4px;
  padding: 56px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease;
}
.reserve-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(60, 40, 30, 0.28);
}

.reserve-method-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.reserve-method-icon {
  width: 44px;
  height: 44px;
  color: #3a2e26;
  flex: 0 0 auto;
  stroke-width: 1.4;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reserve-method-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: #3a2e26;
  margin: 0;
  line-height: 1.3;
}

.reserve-method-desc {
  font-size: 15.5px;
  line-height: 1.95;
  color: #3a2e26;
  letter-spacing: 0.04em;
  margin: 0 0 26px;
  flex: 1;
}

.reserve-method .btn.btn--primary {
  background: #fff;
  color: #3a2e26;
  border: 1px solid #3a2e26;
  min-width: 0;
  padding: 13px 24px;
  font-size: 16px;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reserve-method .btn.btn--primary:hover {
  background: #3a2e26;
  color: #fff;
}

.reserve-method-cta .icon-sm {
  width: 14px;
  height: 14px;
}

.reserve-method-tel {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: inherit;
  transition: color 0.3s ease;
}

.reserve-form-block {
  margin-bottom: 100px;
}

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

.form-group {
  margin-bottom: 36px;
}

.form-group-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #3a2e26;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d4c4b6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-group-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  background: #a67e6e;
}

.form-field {
  margin-bottom: 22px;
}
.form-field:last-child {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #3a2e26;
  margin: 0 0 10px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  background: #3a2e26;
}
.form-badge--optional {
  background: #a39689;
}

.reserve-form input[type=text],
.reserve-form input[type=tel],
.reserve-form input[type=email],
.reserve-form input[type=date],
.reserve-form input[type=time],
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14.5px;
  color: #3a2e26;
  background: #fff;
  border: 1px solid #d4c4b6;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}
.reserve-form input[type=text]:focus,
.reserve-form input[type=tel]:focus,
.reserve-form input[type=email]:focus,
.reserve-form input[type=date]:focus,
.reserve-form input[type=time]:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: #a67e6e;
  box-shadow: 0 0 0 3px rgba(166, 126, 110, 0.12);
}
.reserve-form input[type=text]::placeholder,
.reserve-form input[type=tel]::placeholder,
.reserve-form input[type=email]::placeholder,
.reserve-form input[type=date]::placeholder,
.reserve-form input[type=time]::placeholder,
.reserve-form select::placeholder,
.reserve-form textarea::placeholder {
  color: #a39689;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.reserve-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236e5c52' stroke-width='1.2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}
.reserve-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.9;
}

.form-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-datetime-label {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #6e5c52;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-datetime-note {
  font-size: 12.5px;
  color: #a39689;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
}

.form-submit-wrap {
  text-align: center;
  margin: 56px 0 0;
}

.form-submit {
  min-width: 280px;
  min-height: 56px;
  padding: 19px 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  background: #3a2e26;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease;
}
.form-submit:hover {
  background: #a67e6e;
  transform: translateY(-2px);
}

.reserve-notice {
  margin-top: 16px;
}

.reserve-notice-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #3a2e26;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d4c4b6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reserve-notice-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #a67e6e;
}

.reserve-notice-box {
  background: #f4ebe0;
  border: 1px solid #d4c4b6;
  padding: 30px 36px;
}

.reserve-notice-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 2;
  color: #6e5c52;
  letter-spacing: 0.04em;
}
.reserve-notice-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #a67e6e;
}
.reserve-notice-list li + li {
  margin-top: 4px;
}

.form-contents {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 720px !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
  color: #3a2e26 !important;
}
.form-contents > link {
  display: none !important;
}
.form-contents .form-err-msg {
  background: #fff1f1 !important;
  border: 1px solid #ffc7c7 !important;
  color: #a52b2b !important;
  padding: 16px 20px !important;
  margin: 0 0 24px !important;
  border-radius: 2px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.form-contents .form-err-msg ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.form-contents .form-err-msg li {
  list-style: none !important;
  padding-left: 16px !important;
  position: relative !important;
  line-height: 1.7 !important;
}
.form-contents .form-err-msg li::before {
  content: "・" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
}
.form-contents dl {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.form-contents dt {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  color: #3a2e26 !important;
  margin: 22px 0 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  width: auto !important;
}
.form-contents dt > span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  flex: 0 1 auto !important;
  padding: 0 !important;
  background: transparent !important;
  color: #3a2e26 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  line-height: 1.5 !important;
}
.form-contents dt > span.required::before, .form-contents dt > span.optional::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 20px !important;
  padding: 0 8px !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  color: #fff !important;
  flex: 0 0 auto !important;
  border-radius: 0 !important;
  order: -1 !important;
}
.form-contents dt > span.required::before {
  content: "必須" !important;
  background: #3a2e26 !important;
}
.form-contents dt > span.optional::before {
  content: "任意" !important;
  background: #a39689 !important;
}
.form-contents dd {
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.form-contents dd > p.before-text-area,
.form-contents dd > p.after-text-area,
.form-contents dd > p:empty {
  display: none !important;
}
.form-contents dd > p.form-datetime-note {
  display: block !important;
  font-size: 12.5px !important;
  color: #a39689 !important;
  letter-spacing: 0.04em !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
}
.form-contents dd > h3.form-group-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.18em !important;
  color: #3a2e26 !important;
  margin: 40px 0 20px !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 1px solid #d4c4b6 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  line-height: 1.4 !important;
}
.form-contents dd > h3.form-group-title::before {
  content: "" !important;
  display: inline-block !important;
  width: 4px !important;
  height: 14px !important;
  background: #a67e6e !important;
  flex: 0 0 4px !important;
}
.form-contents > dl > h3.form-group-title,
.form-contents h3.form-group-title.is-moved {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.18em !important;
  color: #3a2e26 !important;
  margin: 40px 0 20px !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 1px solid #d4c4b6 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  line-height: 1.4 !important;
}
.form-contents > dl > h3.form-group-title:first-child,
.form-contents h3.form-group-title.is-moved:first-child {
  margin-top: 0 !important;
}
.form-contents > dl > h3.form-group-title::before,
.form-contents h3.form-group-title.is-moved::before {
  content: "" !important;
  display: inline-block !important;
  width: 4px !important;
  height: 14px !important;
  background: #a67e6e !important;
  flex: 0 0 4px !important;
}
.form-contents h3.form-group-title.is-moved + dt {
  margin-top: 0 !important;
}
.form-contents input.textarea,
.form-contents input.textarea-datetime,
.form-contents input[type=text],
.form-contents input[type=email],
.form-contents input[type=tel],
.form-contents input[type=number],
.form-contents input[type=date],
.form-contents input[type=time],
.form-contents input[type=datetime-local],
.form-contents select.textarea-select,
.form-contents select,
.form-contents textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 16px !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
  font-size: 14.5px !important;
  color: #3a2e26 !important;
  background-color: #fff !important;
  border: 1px solid #d4c4b6 !important;
  border-radius: 2px !important;
  letter-spacing: 0.04em !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  line-height: 1.6 !important;
  box-shadow: none !important;
}
.form-contents input.textarea:focus,
.form-contents input.textarea-datetime:focus,
.form-contents input[type=text]:focus,
.form-contents input[type=email]:focus,
.form-contents input[type=tel]:focus,
.form-contents input[type=number]:focus,
.form-contents input[type=date]:focus,
.form-contents input[type=time]:focus,
.form-contents input[type=datetime-local]:focus,
.form-contents select.textarea-select:focus,
.form-contents select:focus,
.form-contents textarea:focus {
  outline: none !important;
  border-color: #a67e6e !important;
  box-shadow: 0 0 0 3px rgba(166, 126, 110, 0.12) !important;
}
.form-contents input.textarea::placeholder,
.form-contents input.textarea-datetime::placeholder,
.form-contents input[type=text]::placeholder,
.form-contents input[type=email]::placeholder,
.form-contents input[type=tel]::placeholder,
.form-contents input[type=number]::placeholder,
.form-contents input[type=date]::placeholder,
.form-contents input[type=time]::placeholder,
.form-contents input[type=datetime-local]::placeholder,
.form-contents select.textarea-select::placeholder,
.form-contents select::placeholder,
.form-contents textarea::placeholder {
  color: #a39689 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  opacity: 1 !important;
}
.form-contents select.textarea-select,
.form-contents select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236e5c52' stroke-width='1.2' stroke-linecap='round'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 8px !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 40px 0 16px !important;
  line-height: 50px !important;
  vertical-align: middle !important;
  cursor: pointer !important;
}
.form-contents select.textarea-select option,
.form-contents select option {
  line-height: 1.6 !important;
  padding: 8px 12px !important;
  color: #3a2e26 !important;
  background-color: #fff !important;
}
.form-contents textarea.textarea,
.form-contents textarea {
  resize: vertical !important;
  min-height: 140px !important;
  line-height: 1.9 !important;
}
.form-contents input[name=winnie_the_pooh] {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.form-contents .submit-btn {
  display: block !important;
  margin: 56px auto 0 !important;
  min-width: 280px !important;
  min-height: 56px !important;
  padding: 19px 40px !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  color: #fff !important;
  background: #3a2e26 !important;
  border: 0 !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: background 0.4s ease, transform 0.3s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  opacity: 1 !important;
}
.form-contents .submit-btn:hover:not(:disabled) {
  background: #a67e6e !important;
  transform: translateY(-2px) !important;
}
.form-contents .submit-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

@media (max-width: 920px) {
  .form-contents input.textarea,
  .form-contents input.textarea-datetime,
  .form-contents input[type=text],
  .form-contents input[type=email],
  .form-contents input[type=tel],
  .form-contents input[type=datetime-local],
  .form-contents textarea {
    padding: 12px 14px !important;
    font-size: 16px !important;
  }
  .form-contents select.textarea-select,
  .form-contents select {
    height: 48px !important;
    min-height: 48px !important;
    line-height: 48px !important;
    padding: 0 40px 0 14px !important;
    font-size: 16px !important;
  }
  .form-contents .submit-btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 17px 24px !important;
    font-size: 14px !important;
  }
  .form-contents dt {
    font-size: 13.5px !important;
  }
  .form-contents dd > h3.form-group-title,
  .form-contents h3.form-group-title.is-moved {
    font-size: 14px !important;
    letter-spacing: 0.14em !important;
    margin: 32px 0 16px !important;
  }
}
.thanks {
  background: #f4ebe0;
  padding: 220px clamp(20px, 4vw, 56px) 160px;
  min-height: 100vh;
  position: relative;
}

.thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  margin: 0 auto 28px;
  color: #a67e6e;
  font-size: 72px;
  line-height: 1;
}

.thanks-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 0 36px;
  line-height: 1;
}

.thanks-title-en {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.1em;
  color: #3a2e26;
}

.thanks-title-jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.28em;
  color: #6e5c52;
}

.thanks-body {
  margin: 0 0 56px;
}
.thanks-body p {
  font-size: 16.5px;
  line-height: 2;
  color: #6e5c52;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
}
.thanks-body p:last-child {
  margin-bottom: 0;
}
.thanks-body a {
  color: #a67e6e;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.thanks-body a:hover {
  border-color: #a67e6e;
}

.thanks-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 920px) {
  .thanks {
    padding: 140px clamp(20px, 4vw, 56px) 96px;
  }
  .thanks-icon {
    font-size: 56px;
  }
  .thanks-title-en {
    font-size: clamp(28px, 8vw, 40px);
  }
  .thanks-title-jp {
    font-size: 13px;
    letter-spacing: 0.22em;
  }
  .thanks-body p {
    font-size: 14.5px;
    line-height: 1.95;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
  .nav ul {
    gap: 24px;
  }
  .nav a {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .logo img {
    height: 52px;
  }
}
@media (max-width: 920px) {
  .pj-title {
    font-size: 26px;
  }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 120;
    justify-self: end;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .logo {
    justify-self: center;
  }
  .logo img,
  .site-header.is-scrolled .logo img {
    height: 52px;
  }
  #header.site-header.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #header.site-header.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #f8f3ec;
    z-index: 105;
    pointer-events: none;
  }
  #header.site-header.nav-open .nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    background: transparent;
    box-shadow: none;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    z-index: 110;
    justify-self: auto;
    margin: 0;
  }
  #header.site-header.nav-open .nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
    padding: 0;
    list-style: none;
  }
  #header.site-header.nav-open .nav a {
    font-size: 18px;
    letter-spacing: 0.22em;
    text-align: center;
    display: inline-block;
    padding: 6px 0;
  }
  #header.site-header.nav-open .nav-left {
    top: 0;
    bottom: 50%;
    padding-top: 96px;
    padding-bottom: 16px;
    justify-content: flex-end;
  }
  #header.site-header.nav-open .nav-right {
    top: 50%;
    bottom: 0;
    padding-top: 16px;
    padding-bottom: 56px;
    justify-content: flex-start;
  }
  .hero {
    padding-top: 110px;
    padding-bottom: 64px;
  }
  .hero-bg-blush {
    top: 280px;
  }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-collage::before, .hero-collage::after {
    display: none;
  }
  .hero-pic--right {
    display: none;
  }
  .hero-pic--center {
    margin-top: 0;
  }
  .hero-text {
    margin-top: 56px;
  }
  .hero-title {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: 0.08em;
  }
  .hero-lead {
    font-size: 16px;
    line-height: 2;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .concept {
    padding: 88px clamp(20px, 4vw, 56px) 96px;
  }
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .concept-visual {
    padding: 0 24px 24px 8px;
    max-width: 420px;
    margin: 0 auto;
  }
  .overlay-card {
    width: 50%;
  }
  .stamp {
    width: 80px;
    height: 80px;
    right: 0;
    top: 8px;
  }
  .stamp-script {
    font-size: 26px;
  }
  .concept-heading {
    font-size: 20px;
    line-height: 1.85;
  }
  .concept-botanical {
    width: 180px;
    right: -20px;
    top: 20px;
    opacity: 0.12;
  }
  .pj {
    padding: 88px clamp(20px, 4vw, 56px) 96px;
  }
  .pj-head {
    margin-bottom: 56px;
  }
  .pj-cards {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 340px;
    margin: 0 auto;
  }
  .pj-card--mid {
    margin-top: 0;
  }
  .pj-card-num {
    font-size: 22px;
    padding: 4px 12px;
    margin-bottom: 18px;
  }
  .pj-card-title {
    font-size: 18px;
  }
  .reasons {
    padding: 88px clamp(20px, 4vw, 56px) 96px;
  }
  .reasons-head {
    margin-bottom: 48px;
  }
  .reasons-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reason-card {
    padding: 36px 28px 32px;
  }
  .reason-card::before {
    inset: 8px;
  }
  .reason-card::after {
    font-size: 120px;
    top: -16px;
    right: -4px;
  }
  .reason-card-title {
    font-size: 19px;
    letter-spacing: 0.06em;
  }
  .reason-card-num {
    font-size: 11px;
  }
  .reason-card-num span {
    font-size: 26px;
  }
  .reasons-sparkle {
    width: 50px;
    height: 50px;
  }
  .reasons-sparkle--tl {
    top: 30px;
  }
  .reasons-sparkle--br {
    bottom: 30px;
  }
  .gallery {
    padding: 20px 0 40px;
  }
  .gallery-list {
    gap: 10px;
  }
  .flow {
    padding: 88px clamp(20px, 4vw, 56px) 96px;
  }
  .flow-head {
    margin-bottom: 56px;
  }
  .flow-title-en {
    font-size: clamp(34px, 9vw, 44px);
  }
  .flow-title-jp {
    font-size: 13px;
    letter-spacing: 0.32em;
  }
  .flow-steps::before {
    left: 22px;
    top: 0;
    bottom: 0;
  }
  .flow-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 0 24px 56px;
  }
  .flow-step .inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  .flow-step + .flow-step {
    margin-top: 16px;
  }
  .flow-step::before {
    left: 22px;
    top: 36px;
    width: 14px;
    height: 14px;
  }
  .flow-step:nth-child(even) .flow-step-visual {
    order: 0;
  }
  .flow-step:nth-child(even) .flow-step-body {
    order: -1;
    text-align: left;
  }
  .flow-step:nth-child(even) .flow-step-num {
    justify-content: flex-start;
  }
  .flow-step-body {
    order: -1;
  }
  .flow-step-num {
    margin-bottom: 12px;
  }
  .flow-step-num b,
  .flow-step-num strong {
    font-size: 36px;
  }
  .flow-step-num i,
  .flow-step-num em {
    font-size: 12px;
    letter-spacing: 0.28em;
  }
  .flow-step-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .flow-step-img {
    aspect-ratio: 3/2;
  }
  .story {
    padding: 88px clamp(20px, 4vw, 56px) 96px;
  }
  .story-float {
    position: static;
    transform: none;
    display: none;
  }
  .story-heading {
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1.7;
  }
  .story-sign {
    font-size: 30px;
    margin-top: 28px;
  }
  .banner {
    padding: 48px 0 40px;
  }
  .banner-img {
    aspect-ratio: 4/3;
  }
  .banner-img::after {
    inset: 10px;
  }
  .banner-caption {
    font-size: 10px;
    letter-spacing: 0.36em;
    margin-top: 20px;
  }
  .banner-caption-line {
    width: 32px;
  }
  .price {
    padding: 64px clamp(20px, 4vw, 56px) 88px;
  }
  .price-head {
    margin-bottom: 48px;
  }
  .price-title-en {
    font-size: clamp(32px, 8vw, 44px);
  }
  .price-table-wrap {
    margin-bottom: 64px;
  }
  .price-table thead {
    display: none;
  }
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tbody tr {
    border: 1px solid #d4c4b6;
    margin-bottom: 14px;
    padding: 18px 20px;
    background: #f8f3ec;
  }
  .price-table tbody td {
    border: 0;
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .price-table tbody td:first-child {
    font-size: 15px;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #d4c4b6;
    justify-content: flex-start;
  }
  .price-table tbody td:nth-child(2)::before, .price-table tbody td:nth-child(3)::before {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #a67e6e;
  }
  .price-table tbody td:nth-child(2)::before {
    content: "所要時間";
  }
  .price-table tbody td:nth-child(3)::before {
    content: "料金（税込）";
  }
  .price-amount {
    font-size: 20px;
  }
  .price-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .price-card-body {
    padding: 28px 24px 30px;
  }
  .price-card-title {
    font-size: 17px;
  }
  .price-card-price {
    font-size: 28px;
  }
  .materials {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .materials-head {
    margin-bottom: 48px;
  }
  .materials-title-en {
    font-size: clamp(30px, 8vw, 40px);
  }
  .materials-title-jp {
    font-size: 13px;
    letter-spacing: 0.32em;
  }
  .materials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .material-card-body {
    padding: 18px 16px 20px;
  }
  .material-card-en {
    font-size: 18px;
  }
  .material-card-jp {
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .material-card-desc {
    font-size: 13px;
    line-height: 1.9;
  }
  .sp-only {
    display: inline;
  }
  .allergy-card {
    padding: 28px 22px;
    margin-top: 32px;
  }
  .allergy-card::before {
    inset: 8px;
  }
  .allergy-title {
    font-size: 19px;
  }
  .allergy-body p {
    font-size: 14px;
    line-height: 1.95;
  }
  .aftercare {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .aftercare-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
  }
  .aftercare-title-en {
    font-size: clamp(28px, 8vw, 38px);
  }
  .aftercare-title-jp {
    font-size: 17px;
  }
  .aftercare-cta {
    width: 100%;
  }
  .accessory {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .accessory-head {
    margin-bottom: 40px;
  }
  .accessory-title-en {
    font-size: clamp(30px, 8vw, 40px);
  }
  .accessory-title-jp {
    font-size: 13px;
    letter-spacing: 0.32em;
  }
  .accessory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .accessory-item-label {
    font-size: 14px;
  }
  .reservation {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .reservation-head {
    margin-bottom: 56px;
  }
  .reservation-title-en {
    font-size: clamp(34px, 8.5vw, 44px);
    letter-spacing: 0.1em;
  }
  .reservation-title-jp {
    font-size: 12px;
    letter-spacing: 0.32em;
  }
  .reservation-subhead {
    font-size: 15px;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
  }
  .reservation-subhead::after {
    width: 20px;
    margin-top: 10px;
  }
  .calendar-block {
    margin-bottom: 80px;
  }
  .calendar-desc {
    font-size: 14px;
    line-height: 1.85;
  }
  .calendar-embed {
    aspect-ratio: 4/3;
  }
  .reserve-methods-block {
    margin-bottom: 80px;
  }
  .reserve-methods {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reserve-method {
    padding: 40px 24px 28px;
    border-radius: 20px;
  }
  .reserve-method-head {
    margin-bottom: 14px;
    gap: 10px;
  }
  .reserve-method-icon {
    width: 36px;
    height: 36px;
  }
  .reserve-method-title {
    font-size: 16px;
  }
  .reserve-method-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .reserve-method-desc br {
    display: none;
  }
  .reserve-form-block {
    margin-bottom: 64px;
  }
  .form-group {
    margin-bottom: 28px;
  }
  .form-group-title {
    font-size: 14px;
    letter-spacing: 0.14em;
  }
  .form-field {
    margin-bottom: 18px;
  }
  .form-label {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
  .reserve-form input[type=text],
  .reserve-form input[type=tel],
  .reserve-form input[type=email],
  .reserve-form input[type=date],
  .reserve-form input[type=time],
  .reserve-form select,
  .reserve-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  .form-datetime {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-submit-wrap {
    margin-top: 40px;
  }
  .form-submit {
    min-width: 0;
    width: 100%;
    padding: 17px 24px;
    font-size: 14px;
  }
  .reserve-notice-title {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .reserve-notice-box {
    padding: 22px 22px;
  }
  .reserve-notice-list li {
    font-size: 14px;
    line-height: 1.9;
    padding-left: 16px;
  }
  .video-marquee {
    padding: 20px 0 36px;
  }
  .video-marquee-list {
    gap: 10px;
    animation-duration: 60s;
  }
  .video-marquee-list li {
    width: 140px;
  }
  .cta-bar {
    padding: 80px clamp(20px, 4vw, 56px) 80px;
  }
  .cta-arch {
    top: -40px;
    width: 130%;
  }
  .cta-bar-title-en {
    font-size: clamp(34px, 9vw, 44px);
  }
  .cta-bar-title-jp {
    font-size: 12px;
    letter-spacing: 0.26em;
  }
  .cta-bar-lead {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 32px;
  }
  .cta-bar-list {
    gap: 14px;
  }
  .cta-icon-btn {
    width: 60px;
    height: 60px;
  }
  .cta-icon-btn svg {
    width: 24px;
    height: 24px;
  }
  #footer.site-footer {
    padding: 56px clamp(20px, 4vw, 56px) 28px;
    text-align: center;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand .footer-logo {
    display: inline-block;
    margin: 0 auto 20px;
  }
  .footer-brand .footer-logo img {
    height: 76px;
  }
  .footer-address {
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
  }
  .footer-tel {
    margin-top: 4px;
    justify-content: center;
  }
  .footer-tel-num {
    font-size: 17px;
  }
  .footer-nav {
    display: none !important;
  }
  .footer-copyright {
    margin-top: 48px;
    padding-top: 24px;
    font-size: 11px;
    letter-spacing: 0.24em;
  }
  .faq {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .faq-head {
    margin-bottom: 40px;
  }
  .faq-title-en {
    font-size: clamp(30px, 8vw, 40px);
    letter-spacing: 0.12em;
  }
  .faq-title-jp {
    font-size: 12px;
    letter-spacing: 0.32em;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-q {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 18px 20px;
  }
  .faq-q-mark {
    font-size: 18px;
  }
  .faq-q-text {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
  .faq-icon {
    width: 18px;
    height: 18px;
  }
  .faq-icon::before {
    width: 14px;
  }
  .faq-icon::after {
    height: 14px;
  }
  .faq-a {
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 0;
    padding: 18px 20px 22px;
  }
  .faq-a > p {
    font-size: 14px;
    line-height: 1.95;
  }
  .faq-a-mark {
    font-size: 18px;
  }
  .faq-a-text {
    font-size: 14px;
    line-height: 1.95;
  }
  .faq::before, .faq::after {
    width: 200px;
    height: 200px;
    opacity: 0.45;
  }
  .faq::before {
    left: -80px;
    top: 40px;
  }
  .faq::after {
    right: -80px;
    bottom: 40px;
  }
  .shop-info {
    padding: 80px clamp(20px, 4vw, 56px) 88px;
  }
  .shop-info-head {
    margin-bottom: 40px;
  }
  .shop-info-title-en {
    font-size: clamp(30px, 8vw, 40px);
  }
  .shop-info-title-jp {
    font-size: 12px;
    letter-spacing: 0.32em;
  }
  .shop-info-grid {
    gap: 48px;
  }
  .shop-info-map .access-map-iframe {
    aspect-ratio: 4/3;
  }
  .shop-info-photos .shop-photos {
    grid-template-columns: 1fr;
  }
  .shop-info-table {
    margin-bottom: 32px;
  }
  .shop-info-table th {
    display: block;
    width: 100%;
    padding: 16px 4px 6px;
    font-size: 11px;
  }
  .shop-info-table td {
    display: block;
    padding: 0 4px 16px;
    font-size: 14px;
  }
  .shop-info-table tr {
    border-bottom: 1px solid #d4c4b6;
  }
  .tel-link {
    font-size: 20px;
  }
  .access-title-en {
    font-size: 24px;
  }
  .access-map-link {
    width: 100%;
    margin-top: 20px;
  }
  .shop-photos {
    gap: 10px;
  }
  .access-videos {
    margin-top: 40px;
  }
  .access-videos-head {
    margin-bottom: 24px;
  }
  .access-videos-title-en {
    font-size: clamp(24px, 7vw, 30px);
  }
  .access-videos-title-jp {
    font-size: 12px;
    letter-spacing: 0.26em;
  }
  .access-videos-lead {
    font-size: 13px;
    line-height: 1.85;
  }
  .access-videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .access-video-num {
    font-size: 18px;
  }
  .access-video-sub {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .story-center .story-body {
    text-align: left;
  }
  .flow-lead {
    text-align: left;
  }
  .hero-title {
    font-size: 22px;
  }
  .logo img,
  .site-header.is-scrolled .logo img {
    height: 44px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
}
