:root {
  --bg: #fbf8f3;
  --paper: #ffffff;
  --ink: #2b2a28;
  --muted: #6d6a66;
  --soft: #f3eee7;
  --accent: #c7b4a1;
  --accent-ink: #1d2a1f;
  --line: #dcd6cf;
  --hdr-grad-a: #fff7e9;
  --hdr-grad-b: #fbf3e2;
  --hdr-border: #e9e0d4;
}


/* ========== Reset / Base ========== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(960px, 92vw);
  margin-inline: auto;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.section--soft {
  background: var(--soft);
}

.section--fade {
  background: linear-gradient(180deg, #fff, #fff7eb 45%, #fff 90%);
}


/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  transition: .2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
}

.btn--line {
  background: #00b900;
  color: #fff;
  border-color: #00b900;
}

.btn--line:hover {
  filter: brightness(1.04);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 0.95rem;
}

.btn--luxury {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(255, 246, 235, 0.9),
    rgba(240, 220, 190, 0.95)
  );
  border: 2px solid rgba(255, 230, 180, 0.95);
  box-shadow:
      0 0 12px rgba(255, 230, 180, 0.6),
      inset 0 0 10px rgba(255, 240, 210, 0.9);
  color: #5a4a3a;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  overflow: hidden;
}

.btn--luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: .5s;
}

.btn--luxury:hover::before {
  left: 120%;
}

.btn--luxury:hover {
  box-shadow:
      0 0 16px rgba(255, 240, 200, 0.8),
      inset 0 0 12px rgba(255, 255, 240, 1);
  transform: translateY(-2px);
}


/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  border-bottom: none;
  color: #fff;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease;
}

.brand__img:hover {
  transform: scale(1.03);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Sans JP", "Hiragino Sans", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover {
  color: #ffffff;
  opacity: 1;
}

/* PCではハンバーガー非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 11000;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
}

/* ---------- ★PC用の調整★ ---------- */
@media (min-width: 960px) {
  .nav-menu a {
    position: relative;
  }

  .nav-menu a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    transform: translate(-50%, -6px);
  }

  .nav-menu a:hover::after {
    opacity: 1;
    transform: translate(-50%, -10px);
  }

  .header-inner {
    max-width: 100%;
    margin: 0;
    margin-left: 80px;
    justify-content: flex-start;
    padding-left: 40px;
    gap: 60px;
  }

  .site-header .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .site-nav {
    margin-left: 0;
  }

  .brand__img {
    height: 110px;
  }

  .site-header.nav-dark .site-nav a {
    color: #333333;
  }

  .site-header.nav-dark .site-nav a:hover {
    color: #000000;
  }
}

/* ========== スマホ用ハンバーガー ========== */
@keyframes equalizer01 {
  0% { width: 70%; }
  10% { width: 50%; }
  20% { width: 100%; }
  30% { width: 10%; }
  40% { width: 50%; }
  50% { width: 70%; }
  60% { width: 50%; }
  70% { width: 10%; }
  80% { width: 100%; }
  90% { width: 10%; }
  100% { width: 70%; }
}
@keyframes equalizer02 {
  0% { width: 30%; }
  10% { width: 20%; }
  20% { width: 40%; }
  30% { width: 10%; }
  40% { width: 20%; }
  50% { width: 30%; }
  60% { width: 20%; }
  70% { width: 10%; }
  80% { width: 40%; }
  90% { width: 10%; }
  100% { width: 30%; }
}

/* =========================================================
   Smartphone Navigation (Final Complete Version)
   ========================================================= */
@media (max-width: 959px) {
  .site-nav {
    display: none;
  }

  /* Header */
  .header-inner {
    justify-content: flex-start;
    padding: 20px 12px !important;
  }

  .brand {
    display: none;
  }

  /* Hamburger Button */
  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 36px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1500;
    transition: all .35s ease;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #666;
    transition: all .35s ease;
  }

  .hamburger span:nth-child(1) {
    top: 6px;
    width: 60px;
    animation: equalizer01 7000ms infinite;
  }

  .hamburger span:nth-child(2) {
    top: 16px;
    width: 30px;
    animation: equalizer02 5000ms infinite;
    animation-delay: .3s;
  }

  .hamburger span:nth-child(3) {
    top: 26px;
    width: 20px;
    animation: equalizer02 5000ms infinite;
  }

  /* Active → × に変形 + 余白付き */
  .hamburger.active {
    width: 44px;
    height: 44px;
    top: 25px;
    left: calc(18px + 78vw - 44px);
    padding: 6px;
  }

  .hamburger.active span {
    background-color: #222;
    width: 28px;
    animation: none;
    top: 50%;
    transform-origin: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
  }

  /* Mobile Navigation (Overlay) */
  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.60);
    pointer-events: none;
    opacity: 0;
    z-index: 1200;
    transition: opacity .35s;
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* White Panel */
  .mobile-nav__panel {
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 85vw;
    max-width: none;
    padding: 18px 20px;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    transform: translateX(-110%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .mobile-nav.active .mobile-nav__panel {
    transform: translateX(0);
  }

  /* logo */
  .mobile-nav__logo img {
    max-width: 100px;
    display: block;
  }

  /* .mobile-nav__company {
    margin-top: 6px;
    font-size: 10px;
    color: #777;
    line-height: 1.6;
  } */

  /* Menu Links */
  .mobile-nav__links {
    margin-top: 22px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    max-height: 42vh;
  }

  .mobile-nav__links a {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #111;
    text-decoration: none;
  }

  .mobile-nav__en {
    font-size: 15px;
    letter-spacing: .18em;
  }

  .mobile-nav__ja {
    font-size: 12px;
    letter-spacing: .14em;
    color: #666;
    white-space: nowrap;
  }

  .mobile-nav__sns {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
  }

  .mobile-nav__sns img {
    width: 30px;
    height: 30px;
    display: block;
  }

  .mobile-nav__lang {
    margin-top: 10px;
    font-size: 11px;
    color: #777;
  }

  .mobile-nav__contact {
    margin-top: auto;
  }

  .mobile-nav .btn-black {
    width: 100%;
    padding: 12px 20px;
    border-radius: 26px;
    background: #a0836b;
    color: #fff;
    text-align: center;
    display: inline-flex;
    justify-content: center;
  }

  /* Right vertical copy */
  .mobile-nav__vertical {
    position: absolute;
    right: 100px;
    top: 55%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    line-height: 2;
    color: #3e3e3e;
    max-height: 76vh;
    overflow: hidden;
  }
}


/* ========== Mainvisual ========== */
:root{
  --poster-ink: #ffffff;
  --poster-shadow: rgba(0,0,0,.55);
  --poster-soft: rgba(0,0,0,.18);
}

.mainvisual,
.mainvisual.is-poster {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mainvisual.is-poster::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: url("../images/main_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 0;
  transform: translateY(0);
}

.mainvisual__overlay,
.poster-copy,
.poster-center,
.poster-credit,
.scroll-cue {
  position: relative;
  z-index: 2;
}

/* ライティング：対角の光 + ほんのり粒子 */
.mainvisual.is-poster .mainvisual__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255,255,255,.20), transparent 60%),
    linear-gradient( to bottom, var(--poster-soft) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.55) 100% );
  pointer-events: none;
  z-index: 0;
}
.mainvisual.is-poster::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.10;
  mix-blend-mode:soft-light;
  background-image:
    radial-gradient(circle at 10% 10%, #000 1px, transparent 1px),
    radial-gradient(circle at 60% 40%, #000 1px, transparent 1px);
  background-size: 3px 3px, 2px 2px;
}

.poster-copy{
  position: absolute;
  top: 10vh;
  right: clamp(50px, 12vw, 180px);
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .06em;
  line-height: 1.9;
  color: rgba(255,255,255,.92);
  filter: drop-shadow(0 0 10px rgba(0,0,0,.25));
  opacity: 0;
  transform: translateY(12px);
  animation: posterFadeUp 1.6s ease-out .4s forwards;
}

.poster-copy p {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 20px);
}

.poster-copy .copy-line2 {
  margin-top: 1.8em;
}

.poster-copy .copy-line3 {
  margin-top: 3.4em;
}

.poster-copy--left {
  position: absolute;
  top: 30vh;
  left: clamp(80px, 25vw, 240px);
  right: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 2;
  font-family: "Shippori Mincho", serif;
  color: rgba(255,255,255,.88);
  letter-spacing: .06em;
  line-height: 1.8;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.25));
  opacity: 0;
  transform: translateY(14px);
  animation: posterFadeUp 1.8s ease-out 1.0s forwards;
}

.poster-center{
  position: absolute;
  left: 50%;
  bottom: 16vh;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: min(92vw, 960px);
}

.poster-title {
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.45),
    0 0 12px rgba(255, 220, 160, 0.35),
    0 0 20px rgba(255, 180, 100, 0.25);
  opacity: 0;
  transform: translateY(18px);
  animation:
    posterFadeUp 1.4s ease-out 1.6s forwards,
    posterGlow   3.6s ease-in-out 3.0s infinite alternate;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: clamp(26px, 4.6vw, 54px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  text-align: center;
}

@keyframes posterGlow {
  0% {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.35),
      0 0 10px rgba(255, 220, 160, 0.25),
      0 0 18px rgba(255, 180, 100, 0.2);
  }
  100% {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 22px rgba(255, 220, 160, 0.5),
      0 0 38px rgba(255, 180, 100, 0.35);
  }
}

.poster-sub{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(14px);
  animation: posterFadeUp 1.6s ease-out 2.1s forwards;
}

.fv-ctas{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  animation: posterFadeUp 1s ease-out 2.6s forwards;
}

.fv-ctas .btn--primary {
  background: #d9cab7;
  color:#2b241c;
  border-color: transparent;
}

.fv-ctas .btn--ghost {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

.poster-credit{
  position: absolute;
  left: 50%;
  bottom: 4vh;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.35);
  padding-top: 8px;
  width: min(88vw, 560px);
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease 3.0s forwards;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 36px;
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  opacity: 0.95;
  z-index: 10;
  transform: none;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 2px;
  height: 48px;
  margin: 8px auto 0;
  background: rgba(255, 255, 255, 0.75);
  animation: scrollLine 1.8s ease-in-out infinite;
  border-radius: 1px;
}

@keyframes scrollLine {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.6; }
}

@keyframes posterFadeUp{
  from{ opacity:0; transform: translateY(22px); }
  to  { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; } to{ opacity:1; }
}
@keyframes cue{
  0%,100%{ transform: translateY(0); opacity:.6; }
  50%{ transform: translateY(6px); opacity:1; }
}

/* ========== Responsive (Mainvisual) ========== */
@media (max-width: 959px) {
  .mainvisual.is-poster::before{
    background-size: cover;
    background-position: 52% bottom;
  }

  .poster-center{
    bottom: 16vh;
    width: 92vw;
    padding: 0 4vw;
    margin-top: -4vh;
  }

  .poster-title{
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.4;
    text-align: center;
  }

  .poster-sub{
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 2.2rem;
  }

  .fv-ctas{
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .fv-ctas .btn--lg{
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: .95rem;
  }

  .fv-ctas .btn--ghost {
      display: none;
  }

  .poster-copy{
    top: 8vh;
    right: 9vw;
    font-size: 14px;
    line-height: 1.8;
  }

  .poster-credit{
    bottom: 3vh;
    font-size: 11px;
    width: 90vw;
  }

  .poster-copy--left {
    top: 27vh;
    left: 43px;
    right: auto;
  }

  .poster-copy--left p {
    font-size: 17px;
    line-height: 2.0;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 600px){
  .poster-center{ bottom: 14vh; }
  .poster-title{ font-size: clamp(18px, 6.6vw, 26px); }
  .poster-sub{ font-size: 12.5px; }
  .poster-credit{ bottom: 3.5vh; }
}


/* ========== SYMPATHY ========== */
.sympathy-section {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 140px;
}

.sympathy-inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.sympathy-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.6;
  color: #3a332c;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.sympathy-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  color: #5a524a;
  line-height: 2;
  margin-bottom: 48px;
}

.sympathy-points {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  text-align: left;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.sympathy-points li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e2d8;
  font-size: 0.95rem;
  color: #6a645e;
  line-height: 1.8;
}

.sympathy-message {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  color: #6a5844;
  line-height: 2;
  margin-top: 40px;
}

/* ---------- SP ---------- */
@media (max-width: 767px) {
  .sympathy-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sympathy-inner {
    max-width: 94vw;
  }

  .sympathy-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .sympathy-lead {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .sympathy-points li {
    font-size: 0.92rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sympathy-message {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}


/* ========== 矢印スクロールキュー ========== */
.section-scroll-cue__arrow {
  position: relative;
  z-index: 20;
}

.section-scroll-cue {
  text-align: center;
  background-color: #fff;
}

.section-scroll-cue__arrow {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-bottom: 1px solid #c8beb3;
  border-right: 1px solid #c8beb3;
  transform: rotate(45deg);
  animation: sectionCue 1.6s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes sectionCue {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 0.5;
  }
}


/* ========== Value ========== */
.section.value-section {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 50px;
}

.value-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.value-heading {
  text-align: center;
  margin-bottom: 70px;
}

.value-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: #b8aa9c;
  margin-bottom: 12px;
}

.value-title-main {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  line-height: 1.6;
  color: #3a332c;
  margin-bottom: 24px;
}

.value-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  line-height: 2;
  color: #6a645e;
}

.value-hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 60px;
  margin-bottom: 80px;
}

.value-hero-2 {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 100px;
}

.value-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- 3つの体験 ---- */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.value-item {
  text-align: center;
}

/* --- ― 01 ― / 02 / 03 --- */
.value-item-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  letter-spacing: 0.26em;
  color: #7f7670;
  margin-bottom: 12px;
}

.value-item-number::before,
.value-item-number::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #d4cfc7;
}

.value-item-label {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: #bfb7ae;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.value-item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #3a332c;
}

.value-item-text {
  width: min(500px, 40%);
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 2.1;
  color: #6c6762;
}

/* ========== Responsive (Value) ========== */
@media (max-width: 767px) {

  .section.value-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .value-inner {
    width: min(96vw, 640px);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .value-heading {
    margin-bottom: 48px;
  }

  .value-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .value-title-main {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .value-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .value-hero {
    margin-top: 40px;
    margin-bottom: 56px;
  }

  /* 3つの体験 */
  .value-list {
    gap: 60px;
  }

  .value-item {
    text-align: center;
  }

  .value-item-number {
    font-size: 1.1rem;
    gap: 16px;
    margin-bottom: 10px;
  }

  .value-item-number::before,
  .value-item-number::after {
    width: 120px;
  }

  .value-item-label {
    font-size: 0.8rem;
    margin-bottom: 18px;
  }

  .value-item-title {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .value-item-text {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.9;
    padding-left: 4px;
    padding-right: 4px;
  }
}


/* ========== Samples（映画パンフレット風） ========== */
#samples {
  align-items: flex-start;
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 140px;
}

.samples-inner {
  width: min(960px, 94vw);
  margin-inline: auto;
}

/* 見出し */
.samples-heading {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.samples-eyebrow {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: #b8aa9c;
  margin-bottom: 12px;
}

#samples .sec-title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #3a332c;
}

#samples .sec-lead {
  font-size: 0.95rem;
  color: #6d6a66;
  line-height: 1.9;
  margin: 0;
}

/* ── 映画パンフレット風メインブロック ───────────────── */
.samples-pamphlet {
  background: #fffbf5;
  border-radius: 24px;
  border: 1px solid rgba(220, 206, 189, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: 26px 26px 28px;
  margin-bottom: 50px;
}

.pamphlet-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

/* ポスター風 */
.pamphlet-poster {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.pamphlet-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.95);
}

.poster-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82),
    rgba(10, 10, 10, 0.1) 80%
  );
  color: #fdf8ef;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  text-align: left;
}

.poster-caption-en {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
}

.poster-caption-ja {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.poster-caption-meta {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 6px;
}

.poster-caption-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(250, 242, 224, 0.7);
}

.pamphlet-poster a:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* 右カラム：パンフレットテキスト */
.pamphlet-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.pamphlet-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b39779;
  margin: 0;
}

.pamphlet-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 4px 0 8px;
  color: #3a332c;
}

.pamphlet-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 0.8rem;
  line-height: 1.9;
  color: #5f564d;
  margin: 0 0 8px;
}

.pamphlet-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6c645c;
  margin: 0 0 12px;
}

/* メタ情報（出演 / 上映時間 / BGM） */
.pamphlet-meta {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 187, 170, 0.7);
}

.pamphlet-meta-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 6px 10px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #5c544c;
}

.pamphlet-meta-row + .pamphlet-meta-row {
  margin-top: 4px;
}

.pamphlet-meta dt {
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.pamphlet-meta dd {
  margin: 0;
}

.pamphlet-notes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dotted rgba(185, 170, 150, 0.8);
  font-size: 0.7rem;
  line-height: 1.9;
  color: #6f655b;
}

.pamphlet-notes p {
  margin: 0 0 8px;
}

.pamphlet-notes p:last-child {
  margin-bottom: 0;
}

/* ── BGMブロック（4曲） ───────────────── */
.samples-block {
  background: #fffcf7;
  border-radius: 20px;
  padding: 30px 30px 34px;
  border: 1px solid rgba(230, 214, 194, 0.9);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
  margin-bottom: 0;
}

.samples-block-header {
  margin: 0 auto 24px;
  text-align: center;
}

.sample-subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  color: #3a332c;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.sample-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: #d5b48a;
  transform: translateX(-50%);
}

.samples-caption {
  font-size: 0.9rem;
  color: #7a7268;
  line-height: 1.8;
  margin: 8px auto 0;
}

/* BGM本体 */
.samples-audio-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.audio-main {
  width: 100%;
}

.audio-thumb {
  margin: 0 0 12px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.audio-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.audio-main-player,
#audio-main-player {
  width: 100%;
  display: block;
}

.audio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audio-list-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #dcd6cf;
  background: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease,
    border-color 0.2s ease;
}

.audio-list-item:hover {
  background: #fffaf1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.audio-list-item.is-active {
  background: linear-gradient(
    180deg,
    rgba(255, 246, 235, 0.9),
    rgba(240, 220, 190, 0.96)
  );
  border-color: rgba(255, 230, 180, 0.98);
  box-shadow:
    0 0 12px rgba(255, 230, 180, 0.6),
    inset 0 0 10px rgba(255, 240, 210, 0.9);
  color: #5a4a3a;
}

.bgm-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: #7a7268;
  line-height: 1.9;
}

/* ── Responsive（Samples） ───────────────── */
@media (max-width: 959px) {
  #samples {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .samples-pamphlet {
    padding: 22px 18px 24px;
  }
}

@media (max-width: 767px) {
  #samples .sec-title{
    font-size: 1.25rem;
  }

  .pamphlet-main {
    grid-template-columns: 1fr;
  }

  .pamphlet-title {
    font-size: 1.25rem;
  }

  .samples-block {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .audio-list-item {
    flex: 1 1 100%;
  }
}



/* ========== VOICES（お客様の声） ========== */
#voices.section--voices {
  position: relative;
  background-image: url("../images/voices_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* スマホは固定背景をOFF（バグ防止） */
@media (max-width: 767px){
  #voices.section--voices {
    background-attachment: scroll;
    background-position: center top;
  }
}

.section--voices {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 140px;
}

.voices-inner {
  width: min(960px, 94vw);
  margin-inline: auto;
}

.voices-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section--voices .sec-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.2vw, 32px);
  color: #fff;
  margin-bottom: 10px;
}

.section--voices .sec-lead {
  font-size: 0.96rem;
  color: #fff;
  line-height: 1.9;
  margin: 0;
}

.voices-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.voice-card {
  position: relative;
  background: #fffcf7;
  border-radius: 20px;
  padding: 22px 26px 24px;
  border: 1px solid rgba(230, 214, 194, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  color: rgba(208, 180, 140, 0.6);
}

.voice-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b08a5c;
  margin: 0 0 8px;
  padding-left: 18px;
}

.voice-text {
  font-size: 0.95rem;
  color: #6e6760;
  line-height: 1.9;
  margin: 0 0 14px;
  padding-left: 18px;
}

.voice-name {
  font-size: 0.85rem;
  color: #8a7a67;
  text-align: right;
  margin: 0;
}

/* ---------- SP ---------- */
@media (max-width: 767px) {
  .section--voices {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .voices-heading {
    margin-bottom: 44px;
  }

  .voice-card {
    padding: 20px 16px 20px;
    border-radius: 16px;
  }

  .voice-card::before {
    left: 10px;
  }

  .voice-label,
  .voice-text {
    padding-left: 20px;
  }

  .voice-text {
    font-size: 0.9rem;
  }

  .voice-name {
    font-size: 0.82rem;
  }

  .section--voices .sec-lead {
    font-size: 14px;
  }
}



/* ========== FLOW ========== */
.section--flow {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 140px;
}

#flow .container.narrow {
  width: min(960px, 85vw);
  margin-inline: auto;
}

#flow .sec-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.2vw, 32px);
  text-align: center;
  margin-bottom: 12px;
}

#flow .sec-lead {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.9;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.flow-steps.flow-steps--script {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow-steps--script .flow-step-item {
  padding: 18px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.flow-steps--script .flow-step-item:first-child {
  border-top-color: rgba(0, 0, 0, 0.04);
}

.scene-label {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b08a5c;
  margin: 0 0 4px;
}

.scene-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.7;
  color: #3a332c;
}

.scene-text {
  font-size: 0.95rem;
  color: #6e6760;
  line-height: 1.9;
  margin: 0;
}

/* ▼ スマホ調整 */
@media (max-width: 767px) {
  .section--flow {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .flow-steps.flow-steps--script {
    gap: 18px;
  }

  .flow-steps--script .flow-step-item {
    padding: 14px 0 16px;
  }

  .scene-title {
    font-size: 1rem;
  }

  .scene-text {
    font-size: 0.9rem;
  }
}



/* ========== PLAN ========== */
#plan {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: url("../images/plan_bg.jpg") center center / cover no-repeat;
}

#plan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.70));
  opacity: 0.92;
}

#plan .container {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  margin-inline: auto;
}

#plan .sec-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.0vw, 30px);
  text-align: center;
  color: #fff;
  text-shadow: 0 0 14px rgba(0,0,0,0.7);
  margin: 40px 0 12px 0;
}

#plan .sec-lead {
  color: rgba(255,255,255,0.92);
  text-align: center;
  text-shadow: 0 0 12px rgba(0,0,0,0.7);
  margin-bottom: 40px;
  font-size: 0.98rem;
  line-height: 1.9;
}

#plan .sec-subtitle {
  text-align: center;
  width: 100%;
  margin: 14px auto 26px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  font-size: 0.96rem;
}

/* ===== プラン表示 ===== */
.plan-items-grid.plan-items--pamphlet {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* ===== Plan Card ===== */
.plan-card-item {
  background: rgba(0,0,0,0.68); /* 透けを減らして可読性UP */
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 18px 46px rgba(0,0,0,0.85);
  padding: 46px 38px 50px;
  text-align: left;
  width: min(600px, 94vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* メイン枠の縁だけ上品に強調（今のまま活かす） */
.plan-card-item.is-main {
  border-color: rgba(255,231,190,0.90);
}

/* ラベル */
.plan-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f0d7aa;
  margin: 0 0 8px;
}

/* ★ここが今回の本丸：h3.plan-title を明るく＆影で読みやすく */
.plan-title {
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.55;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.65);
  letter-spacing: 0.06em;
}

/* 説明文 */
.plan-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.90);
  margin: 0 0 18px;
  line-height: 1.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* 価格＆補足 */
.plan-price {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  color: #ffe5bd;
  margin: 0 0 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

.plan-price span {
  font-family: "Shippori Mincho", serif;
  font-size: 0.95rem;
  margin-left: 2px;
}

.plan-price-small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
}

/* リスト */
.plan-feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.plan-feature-list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

.plan-feature-list li::before {
  content: "✓";
  color: rgba(255, 220, 179, 0.95);
  font-weight: 700;
  transform: translateY(1px);
  margin-right: 0.4em;
}


/* ボタン */
.plan-btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 22px auto 0;
  padding: 12px 0;
  border-radius: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: 0.25s ease;
  margin-top: auto;
  margin-bottom: 0;
}

.plan-btn--luxury {
  background: linear-gradient(180deg, #fff9f0 0%, #f0e0c7 100%);
  border: 1px solid rgba(255,238,210,0.85);
  color: #382f28 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.plan-btn--luxury:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f6e7d7 100%);
  color: #000 !important;
}

/* ボタン下の注記 */
.plan-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-align: center;
}

/* 下部注記 */
.plan-note-bottom {
  color: rgba(255, 255, 255, 0.76);
  margin: 18px auto 0;
  text-align: center;
  max-width: 520px;
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
}


/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  #plan {
    padding: 80px 0 90px;
  }

  .plan-card-item {
    padding: 34px 24px 38px;
  }

  .plan-title {
    font-size: 1.14rem;
  }

  .plan-caption {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .plan-price {
    margin: 10px 0 10px;
  }

  .plan-feature-list li {
    font-size: 0.88rem;
    line-height: 2.0;
  }
}




/* ========== Common Titles ========== */
.sec-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.6vw, 36px);
  line-height: 1.5;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}

.sec-lead {
  color: var(--muted);
  margin: 0 0 18px;
}


/* ========== ABOUT ========== */
.about-inner {
  width: min(960px, 92vw);
  margin-inline: auto;
}

.about-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8aa9c;
  margin-bottom: 8px;
}

.about-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.8;
  color: #3a332c;
  margin: 0 0 12px;
}

.about-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #5f564d;
  margin: 0;
}

.about-pamphlet {
  margin-top: 12px;
  background: #fffbf5;
  border-radius: 24px;
  border: 1px solid rgba(220, 206, 189, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: 24px 26px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: stretch;
}

.about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.97);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.about-photo-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px 14px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.8),
    rgba(10, 10, 10, 0.15) 80%
  );
  color: #fdf8ef;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.about-photo-name {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.about-photo-role {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.about-body {
  font-size: 0.94rem;
  line-height: 1.95;
  color: #6c645c;
  margin: 0;
}

.about-meta {
  margin: 8px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 187, 170, 0.7);
}

.about-meta-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 4px 12px;
  font-size: 0.86rem;
  line-height: 1.8;
  color: #5c544c;
}

.about-meta-row + .about-meta-row {
  margin-top: 4px;
}

.about-meta dt {
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.about-meta dd {
  margin: 0;
}

.about-footer-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #746a60;
}

.about-footer-note p {
  margin: 0;
}

/* ▼ Responsive */
@media (max-width: 959px) {
  #about {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .about-pamphlet {
    padding: 22px 18px 24px;
  }
}

@media (max-width: 767px) {
  .about-heading {
    margin-bottom: 42px;
  }

  .about-title {
    font-size: 1.25rem;
  }

  .about-lead {
    font-size: 0.9rem;
  }

  .about-pamphlet {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-meta-row {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .about-footer-note {
    font-size: 0.9rem;
  }
}



/* ========== CONTACT ========== */
#contact.section-contact {
  position: relative;
  color: var(--paper);
  padding-top: 110px;
  padding-bottom: 140px;
  background-image: url('../images/contact_bg.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  text-align: center;
}

/* PCのみパララックス */
@media (min-width: 768px) {
  #contact.section-contact {
    background-attachment: fixed;
  }
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      130% 120% at 30% 40%,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.55)
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.55) 100%
    );
  opacity: 0.75;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-contact-heading {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 760px;
}

.contact-simple-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.7;
  color: #fff;
  margin: 15px 0;
}

.contact-simple-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.contact-simple-text strong {
  font-weight: 600;
}

.contact-card {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px 20px 26px;
  width: 100%;
  max-width: 780px;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 28px 32px 30px;
  }
}

.contact-flow-block {
  margin: 4px auto 18px;
  padding: 16px 0 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  max-width: 640px;
  text-align: center;
}

.contact-flow-title {
  font-family: "Shippori Mincho", serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: #f0d7aa;
  margin: 0 0 12px;
}

.contact-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.contact-flow-steps li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.flow-step-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #f0d7aa;
  text-transform: uppercase;
  min-width: 70px;
}

.flow-step-text {
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta {
  max-width: 640px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px dotted rgba(255, 255, 255, 0.4);
  text-align: center;
}

.contact-btn {
  width: 100%;
  justify-content: center;
  margin: 0 auto 14px;
  max-width: 320px;
}

.contact-notes {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.contact-notes li + li {
  margin-top: 4px;
}

/* スマホ微調整 */
@media (max-width: 767px) {
  .contact-card {
    padding: 22px 16px 24px;
  }

  .flow-step-text {
    font-size: 0.84rem;
  }

  .contact-notes {
    font-size: 0.76rem;
  }
}


/* ========== Footer ========== */
.site-footer {
  border-top: none;
  padding: 16px 0;
  background: transparent;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer small,
.site-footer a {
  color: var(--paper);
}

.footer-inner nav a {
  margin-left: 12px;
  font-size: .94rem;
}

.footer--center {
  justify-content: center;
}

.footer--center p {
  margin: 0 auto;
  text-align: center;
}


/* ========== Responsive (Global) ========== */
@media (max-width: 959px) {
  .section {
    min-height: auto;
    padding: 72px 0;
  }

  .header-inner {
    padding: 8px 0;
  }

  .brand__img {
    height: 40px;
  }

  .site-nav ul {
    gap: 12px;
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .video-wrap {
    max-width: 100%;
    border-radius: 14px;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }
}


/* ========== Anchor offset for header ========== */
#sympathy,
#value,
#samples,
#flow,
#plan {
  scroll-margin-top: 0;
}


/* ========== fede ========== */
.fade-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}

.fade-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ▼ スマホ */
.sp-only {
  display: inline;
}

@media (min-width: 960px) {
  .sp-only {
    display: none !important;
  }
}

/* ▼ PC */
.pc-only {
  display: inline;
}

@media (max-width: 959px) {
  .pc-only {
    display: none !important;
  }
}

