@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Shippori+Mincho:wght@400;500;600;700&family=Oswald:wght@400;500;600&display=swap');

/* ==========================================================================
   Design Tokens & Variables (白・灰色ベース / ライトモード基調)
   ========================================================================== */
:root {
  --bg-main: #faf9f6;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f3ee;
  --bg-accent: #f0eee8;

  --color-gold: #b5986e;
  --color-gold-light: #d4bc96;
  --color-gold-dark: #8c7047;
  --color-gold-border: rgba(181, 152, 110, 0.3);
  --color-gold-glow: rgba(181, 152, 110, 0.15);

  --text-main: #2b2825;
  --text-sub: #5c5752;
  --text-muted: #8c867f;

  --font-serif: 'Shippori Mincho', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --font-en: 'Cormorant Garamond', serif;
  --font-title-en: 'Oswald', 'Cormorant Garamond', sans-serif;

  --container-width: 1140px;
  --header-height: 80px;
  --transition: fill 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   Reset & Basic Rules
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--text-main);
  font-family: var(--font-serif);
  line-height: 1.85;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;

  /* 右クリック・テキスト選択・コピー禁止 (CSS) */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   Typography & Shared Utilities
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-en {
  font-family: var(--font-title-en);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.section-title-ja {
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-weight: 500;
  display: block;
}

.gold-accent-line {
  display: none;
}

.placeholder-badge {
  display: inline-block;
  padding: 4px 14px;
  background-color: rgba(181, 152, 110, 0.1);
  border: 1px dashed var(--color-gold);
  color: var(--color-gold);
  font-size: 0.8rem;
  border-radius: 4px;
  margin: 10px 0;
}

/* PCのみ改行 / SPのみ改行ユーティリティ */
@media (max-width: 900px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .sp-only {
    display: none !important;
  }
}

/* ==========================================================================
   Scroll Animation (js-reveal) Classes
   ========================================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-reveal.js-reveal-left {
  transform: translateX(-40px);
}

.js-reveal.js-reveal-right {
  transform: translateX(40px);
}

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

.js-reveal-delay-1 {
  transition-delay: 0.15s;
}

.js-reveal-delay-2 {
  transition-delay: 0.4s;
}

.js-reveal-delay-3 {
  transition-delay: 0.65s;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181, 152, 110, 0.2);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-transform: none;
}

.logo-accent {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
  font-weight: 600;
  text-transform: none;
}

@media (min-width: 1100px) {
  .logo-text-wrap {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .logo-main {
    font-size: 1.25rem;
  }
  .logo-accent {
    font-size: 1.25rem;
  }
}

.footer-logo .logo-main,
.footer-logo .logo-accent {
  color: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-hpb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #df3866;
  border: 1px solid #df3866;
  color: #ffffff !important;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(223, 56, 102, 0.25);
  white-space: nowrap;
}

.btn-header-hpb:hover {
  background-color: #c52955;
  border-color: #c52955;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(223, 56, 102, 0.35);
}

.btn-header-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #06c755;
  border: 1px solid #06c755;
  color: #ffffff !important;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.25);
  white-space: nowrap;
}

.btn-header-line:hover {
  background-color: #05a848;
  border-color: #05a848;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  color: var(--text-main);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-reservation:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(181, 152, 110, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0px;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  top: 20px;
}

.nav-toggle.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* SP (Mobile) Header & Drawer Navigation */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(246, 245, 241, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 60px 20px;
  }

  .site-nav.is-active {
    right: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-main);
  }

  .btn-reservation {
    display: none !important;
  }

  .header-btns {
    flex-direction: column;
    width: 100%;
    max-width: 240px;
    gap: 12px;
  }

  .btn-header-hpb,
  .btn-header-line {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   ① First View Section (FV - 横スクロール・無限ループスライダー)
   ========================================================================== */
.fv-section {
  width: 100%;
  position: relative;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 70px;
  background-color: transparent;
  overflow: hidden;
  clip-path: inset(0);
  border-bottom: 1px solid var(--color-gold-border);
}

.fv-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../img/FVbackground.jpeg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 768px) {
  .fv-section::before {
    background-image: url('../img/SPFVbackground.jpeg');
    background-position: center;
  }
}

.fv-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 10px 0 40px 0;
}

.fv-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: fvMarqueeScroll 38s linear infinite;
  will-change: transform;
}

@keyframes fvMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.fv-card {
  width: 440px;
  height: 540px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background-color: #e5e2da;
}

@media (max-width: 900px) {
  .fv-card {
    width: 320px;
    height: 420px;
  }
}

@media (max-width: 600px) {
  .fv-card {
    width: 260px;
    height: 340px;
  }
}

.fv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fv-card:hover img {
  transform: scale(1.04);
}

/* 左下キャッチコピーエリア (スライダー下部へ少しだけ重なる微調整配置) */
.fv-content-bottom-left {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  margin-top: -65px;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 900px) {
  .fv-content-bottom-left {
    padding: 0 32px;
    margin-top: -35px;
  }
}

@media (max-width: 600px) {
  .fv-content-bottom-left {
    padding: 0 20px;
    margin-top: -25px;
  }
}

.fv-text-wrapper {
  display: flex;
  flex-direction: column;
}

.fv-en-title-line {
  font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #2b2825;
  text-transform: uppercase;
  text-shadow: none;
}

.sp-only-br {
  display: none;
}

.u-nobr {
  white-space: nowrap;
}

.fv-en-title-line.fv-en-sub {
  font-size: 3.4rem;
  color: #2b2825;
  margin-bottom: 14px;
}

@media (max-width: 900px) {

  .fv-en-title-line,
  .fv-en-title-line.fv-en-sub {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {

  .fv-en-title-line,
  .fv-en-title-line.fv-en-sub {
    font-size: 1.65rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .sp-only-br {
    display: inline;
  }
}

/* 日本語テキスト（サイズ拡大＆左寄調和） */
.fv-ja-catch {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-main);
  line-height: 1.6;
  border-left: none;
  /* 左横の縦線削除 */
  padding-left: 0;
  /* パディング削除 */
  margin-top: 6px;
  text-shadow: none;
}

@media (max-width: 768px) {
  .fv-ja-catch {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   ② Trouble / Problem Section (こんなお悩みありませんか)
   ========================================================================== */
.trouble-section {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid var(--color-gold-border);
  overflow: hidden;
  clip-path: inset(0);
}

.trouble-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../img/Troublebackground.jpeg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 768px) {
  .trouble-section::before {
    background-image: url('../img/SPTroublebackground.jpeg');
    background-position: center top;
  }

  .trouble-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(250, 249, 246, 0.76) 0%,
      rgba(250, 249, 246, 0.65) 50%,
      rgba(250, 249, 246, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
}

.trouble-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
}

.trouble-grid-original {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
}

@media (max-width: 960px) {
  .trouble-grid-original {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.trouble-content-left {
  display: flex;
  flex-direction: column;
}

.trouble-header {
  margin-bottom: 28px;
}

.trouble-en-wrap {
  display: inline-block;
  margin-bottom: 16px;
}

.trouble-en-title {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  display: block;
}

.trouble-en-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-gold-border);
  margin-top: 4px;
}

.trouble-main-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-main);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .trouble-main-title {
    font-size: 1.9rem;
  }
}

.trouble-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.trouble-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-main);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(181, 152, 110, 0.3);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .trouble-check-item {
    font-size: 0.875rem;
  }
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 100%;
  height: 100%;
}

.check-icon svg rect {
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.check-icon svg path {
  stroke: #ffffff;
  stroke-width: 2.2;
}

.trouble-footer-wrap {
  margin-top: 4px;
}

.trouble-footer-msg {
  font-size: 1rem;
  color: var(--text-sub);
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .trouble-footer-msg {
    font-size: 0.875rem;
  }
}

/* 直線の長さを短く調節 */
.trouble-footer-line {
  width: 280px;
  max-width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  margin-top: 10px;
  opacity: 0.8;
}

/* ==========================================================================
   ③ About Section (Luxe Style - アーチ型スライダー＋エレガントデザイン)
   ========================================================================== */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: #faf9f6;
  border-bottom: 1px solid var(--color-gold-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image-column {
  display: flex;
  justify-content: center;
}

/* アーチ型フレーム（さらに大きく拡大） */
.about-arch-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(181, 152, 110, 0.25);
  background-color: #f0eee8;
}

aspect-ratio: 3 / 4;
border-radius: 999px 999px 24px 24px;
overflow: hidden;
position: relative;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(181, 152, 110, 0.25);
background-color: #f0eee8;
}

.about-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.about-slide.active {
  opacity: 1;
}

/* 高級感のある赤（ワインレッド / ボルドー） → 横ワイプ → 写真の切り替わり用カーテン */
.about-wipe-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4d0f19 0%, #7a1829 50%, #4d0f19 100%);
  z-index: 10;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.about-wipe-curtain.is-wiping-in {
  transform: scaleX(1);
  transform-origin: left;
}

.about-wipe-curtain.is-wiping-out {
  transform: scaleX(0);
  transform-origin: right;
}

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-en-title {
  font-family: var(--font-title-en);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.about-ja-sub {
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.about-main-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .about-en-title {
    font-size: 2.8rem;
  }

  .about-main-title {
    font-size: 1.35rem;
  }
}

.about-desc-wrap {
  margin-bottom: 36px;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2.0;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-paragraph {
    font-size: 0.875rem;
  }
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

.about-btn-wrap {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-luxe-reservation {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--text-main);
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--text-main);
  transition: var(--transition);
}

.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--text-main);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-luxe-reservation:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.btn-luxe-reservation:hover .btn-arrow-circle {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateX(6px);
}

/* ==========================================================================
   ④ Service Section (階段状・スタッガード配置 1 < 2 < 3)
   ========================================================================== */
.service-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-gold-border);
}

.service-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-gold-border);
  overflow: hidden;
  position: relative;
}

.service-container {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20vw;
  width: 140vw;
  height: 1px;
  background-color: rgba(181, 152, 110, 0.7);
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s ease-out 0.3s;
}

.service-item.is-inview::after,
.service-item.is-visible::after {
  clip-path: inset(0 0 0 0);
}

.service-item.divider-up::after {
  transform: rotate(3deg);
}

.service-item.divider-down::after {
  transform: rotate(-3deg);
}

.service-item:last-child::after {
  display: none;
}

.service-item .col-left {
  width: 25%;
  padding-right: 30px;
  text-align: left;
}

.service-item .col-center {
  width: 40%;
  position: relative;
  z-index: 2;
}

.service-item .col-right {
  width: 35%;
  padding-left: 50px;
}

.service-item .num {
  font-family: var(--font-title-en);
  font-size: 1.5rem;
  color: var(--color-gold-light);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.service-item .en-title {
  font-family: var(--font-title-en);
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.service-item .img-wrapper {
  background-color: #f4f2ed;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(181, 152, 110, 0.25);
  overflow: hidden;
}

.service-item .img-wrapper img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 2s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.service-item.is-inview .img-wrapper img,
.service-item.is-visible .img-wrapper img {
  clip-path: circle(150% at 50% 50%);
}

.service-item .jp-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.service-item .desc {
  font-size: 0.95rem;
  line-height: 2.0;
  color: var(--text-sub);
}

@media (max-width: 1024px) {
  .service-item .en-title {
    font-size: 2.2rem;
  }

  .service-item .jp-title {
    font-size: 1.25rem;
  }

  .service-item .col-right {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    padding: 50px 0;
  }

  .service-item .col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .service-item .en-title {
    font-size: 2.4rem;
  }

  .service-item .col-center {
    width: 85%;
    max-width: 360px;
    margin: 0 auto 32px;
  }

  .service-item .col-right {
    width: 100%;
    padding-left: 0;
  }

  .service-item .jp-title {
    font-size: 1.2rem;
  }

  .service-item .desc {
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   ⑤ Menu Section (sticky固定画像＋大画像レイアウト)
   ========================================================================== */
.menu-section {
  background-color: #faf9f6;
  border-bottom: 1px solid var(--color-gold-border);
  overflow: visible !important;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 50px;
  align-items: start;
}

@media (max-width: 992px) {
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-gold-border);
  padding: 24px 28px;
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}

.menu-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.menu-card.recommended {
  border-color: var(--color-gold);
  background-color: #ffffff;
}

.badge-recommended {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--color-gold);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 2px;
  font-weight: 600;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.menu-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
}

.menu-price {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.menu-catch {
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
}

.menu-detail {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.menu-single-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(181, 152, 110, 0.2);
  padding: 18px 24px;
  border-radius: 2px;
}

.menu-single-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

@media (max-width: 768px) {
  .menu-header,
  .menu-single-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .menu-price,
  .menu-single-price {
    margin-top: 2px;
  }
}

.menu-single-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.menu-single-price {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.menu-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  padding-left: 1.1em;
  text-indent: -1.1em;
}

.menu-sub-note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-top: 4px;
  text-indent: -1.1em;
}

.menu-more-action {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* 右側画像カラムのsticky固定 ＆ 拡大表示 */
.menu-img-column {
  width: 100%;
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  transform: none !important;
  will-change: auto !important;
  z-index: 10;
}

@media (max-width: 992px) {
  .menu-img-column {
    position: static;
    top: auto;
  }
}

.menu-side-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--color-gold-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  display: block;
}

/* ==========================================================================
   ⑥ Voice Section (口コミ 3行省略＋もっと見る)
   ========================================================================== */
.voice-section {
  background-color: #faf9f6;
  border-bottom: 1px solid var(--color-gold-border);
  position: relative;
  overflow: hidden;
}

/* 白黒（モノクロ）化 ＆ 透け感を薄く（opacity: 0.15）調整 */
.voice-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/voicebackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

/* ドットグリッドオーバーレイ */
.voice-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 2;
}

.voice-section .container {
  position: relative;
  z-index: 3;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.voice-card {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-gold-border);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 2px;
}

.voice-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.voice-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  line-height: 1;
}

.voice-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.voice-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.85;
  letter-spacing: 0.03em;
  width: 100%;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .voice-text {
    font-size: 0.875rem;
  }
}

/* 3行省略設定 */
.voice-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-toggle-btn {
  background: transparent;
  border: none;
  color: var(--color-gold-dark);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-weight: 600;
  margin-top: 4px;
}

.voice-toggle-btn::after {
  content: '▼';
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.voice-toggle-btn.is-expanded::after {
  content: '▲';
}

.voice-toggle-btn:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.voice-action {
  text-align: center;
  margin-top: 48px;
}

.btn-other-voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  border: 1.5px solid var(--color-gold);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-color: var(--color-gold);
  border-radius: 2px;
  box-shadow: 0 6px 22px rgba(181, 152, 110, 0.45);
  transition: var(--transition);
}

.btn-other-voice .btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  color: #ffffff;
}

.btn-other-voice:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(140, 112, 71, 0.5);
  transform: translateY(-3px);
}

.btn-other-voice:hover .btn-arrow {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   ⑥ Message Section (Luxe Style)
   ========================================================================== */
.message-section {
  background-color: #faf9f6;
  border-bottom: 1px solid var(--color-gold-border);
}

.message-editorial-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--color-gold-border);
  border-bottom: 1px solid var(--color-gold-border);
  padding: 60px 0;
}

@media (max-width: 900px) {
  .message-editorial-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.message-left-col {
  display: flex;
  flex-direction: column;
}

.message-en-title {
  font-family: var(--font-title-en);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 8px;
}

.message-en-sub {
  font-family: var(--font-title-en);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
}

.message-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.staff-header-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.staff-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.staff-name-en {
  font-family: var(--font-en);
  font-size: 1.05rem;
  color: var(--text-sub);
  font-weight: 400;
  margin-left: 8px;
}

.staff-career {
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.message-catch {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.message-body {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .message-body {
    font-size: 0.875rem;
  }
}

.message-btn-wrap {
  margin-top: 10px;
}

.btn-luxe-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background-color: var(--text-main);
  color: #ffffff;
  font-family: var(--font-title-en);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border: 1px solid var(--text-main);
  transition: var(--transition);
}

.btn-luxe-square:hover {
  background-color: transparent;
  color: var(--text-main);
}

/* ==========================================================================
   ⑦ Access Section (画面左全面マップ化)
   ========================================================================== */
.access-section {
  background-color: #1a1918;
  color: #ffffff;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.access-luxe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
  width: 100%;
}

.access-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.access-map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 520px;
  border: 0;
  display: block;
}

.access-info-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 40px 80px 80px;
}

.access-info-luxe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  max-width: 540px;
  width: 100%;
}

@media (max-width: 1100px) {
  .access-info-container {
    padding: 60px 30px 60px 40px;
  }
}

@media (max-width: 900px) {
  .access-luxe-grid {
    display: flex;
    flex-direction: column;
  }

  .access-info-container {
    order: 1;
    padding: 50px 24px;
  }

  .access-map-wrapper {
    order: 2;
    min-height: 380px;
    height: 380px;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }

  .access-map-wrapper iframe {
    min-height: 380px;
  }
}

.access-header-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-en-title {
  font-family: var(--font-title-en);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.access-store-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

.access-store-address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .access-store-address {
    font-size: 0.875rem;
  }
}

.access-detail-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
}

.access-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.access-item-label {
  font-family: var(--font-title-en);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.access-item-val {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.access-sns-links-bar {
  display: flex;
  gap: 32px;
  align-items: center;
}

.access-luxe-link {
  font-family: var(--font-title-en);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  padding-bottom: 4px;
  border-bottom: 1px solid #ffffff;
  transition: var(--transition);
}

.access-luxe-link:hover {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #121110;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 36px;
}

.footer-logo .logo-title {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-nav-break {
  display: none;
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 14px 24px;
  }

  .footer-nav-break {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
  }
}

.footer-nav-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

.footer-nav-link:hover {
  color: var(--color-gold);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Floating Action Buttons & Back to Top (PC & SP 共通仕様)
   ========================================================================== */
.floating-action-group {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-group.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Floating Icon Buttons Base (共通アイコン円形ボタン) */
.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.06);
}

.float-btn:active {
  transform: scale(0.92);
  opacity: 0.9;
}

.float-btn-icon {
  width: 21px;
  height: 21px;
  display: block;
  flex-shrink: 0;
}

/* 1. 電話ボタン */
.float-btn-tel {
  background: linear-gradient(135deg, #c5a367 0%, #9e7d44 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(163, 130, 83, 0.42);
}

.float-btn-tel:hover {
  box-shadow: 0 7px 20px rgba(163, 130, 83, 0.58);
}

/* 2. Instagramボタン (電話の下) */
.float-btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.42);
}

.float-btn-insta:hover {
  box-shadow: 0 7px 20px rgba(220, 39, 67, 0.58);
}

/* 3. HOT PEPPER Beautyボタン */
.float-btn-hpb {
  background-color: #df3866;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(223, 56, 102, 0.42);
}

.float-btn-hpb:hover {
  background-color: #c92754;
  box-shadow: 0 7px 20px rgba(223, 56, 102, 0.58);
}

/* 4. LINEボタン */
.float-btn-line {
  background-color: #06c755;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.42);
}

.float-btn-line:hover {
  background-color: #05b04b;
  box-shadow: 0 7px 20px rgba(6, 199, 85, 0.58);
}

/* 5. TOPに戻るボタン */
.float-btn-top {
  background-color: rgba(250, 249, 246, 0.95);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.float-btn-top .float-btn-icon {
  width: 18px;
  height: 18px;
}

.float-btn-top:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 7px 20px rgba(181, 152, 110, 0.48);
}

/* PC用 ホバーツールチップ */
@media (hover: hover) and (min-width: 901px) {
  .float-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background-color: rgba(30, 28, 26, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .float-btn[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

/* SP (Mobile) 最適化 */
@media (max-width: 900px) {
  .site-footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  }

  .floating-action-group {
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn-icon {
    width: 19px;
    height: 19px;
  }

  .float-btn-top .float-btn-icon {
    width: 16px;
    height: 16px;
  }
}