* {
  box-sizing: border-box;
}

/* ベース */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #444;
  line-height: 1.6;
  line-break: strict;
  word-break: auto-phrase;
  background: #fffdf9;
  overflow-x: hidden;
}

body.motion-ready {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-chunk {
  display: inline-block;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.header.scrolled {
  background: rgba(255,253,249,0.96);
  box-shadow: 0 10px 30px rgba(107, 91, 77, 0.08);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.1;
  color: #6b5b4d;
  white-space: nowrap;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover {
  color: #8b6d58;
  transform: translateY(-1px);
}

.logo span {
  margin-bottom: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #9a8473;
}

.pc-nav {
  display: flex;
}

.pc-nav a {
  position: relative;
  margin: 0 12px;
  font-size: 13px;
  color: #6b5b4d;
  transition: 0.3s;
}

.pc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, #c68a9d, #c59a70);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.pc-nav a:hover {
  color: #b89b74;
}

.pc-nav a:hover::after,
.pc-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.pc-nav a[aria-current="page"] {
  color: #c68a9d;
  font-weight: 600;
}

.line-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8edb8e, #6bcf6b);
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(83, 166, 93, 0.22);
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #6b5b4d;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #fffdf9;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
  z-index: 1001;
  box-shadow: 8px 0 24px rgba(0,0,0,0.08);
}

.mobile-nav a {
  font-size: 16px;
  color: #444;
}

.mobile-nav a[aria-current="page"] {
  color: #c68a9d;
  font-weight: 600;
}

.mobile-nav.active {
  left: 0;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: #6b5b4d;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
}

.overlay.active {
  display: block;
}

/* ヒーロー */
.hero {
  position: relative;
  height: calc(100vh - 70px);
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(0.86) saturate(0.94);
  transform: scale(1.02);
  animation: heroImageGlow 2.8s ease-out forwards;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 12px;
}

.hero-fleck {
  position: absolute;
  left: var(--fleck-left);
  top: var(--fleck-top);
  z-index: 1;
  width: var(--fleck-size);
  height: var(--fleck-size);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 14px rgba(255, 244, 218, 0.8);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) rotate(45deg);
  animation: fleckFloat var(--fleck-duration) ease-in-out var(--fleck-delay) infinite;
}

@keyframes heroImageGlow {
  from {
    filter: brightness(0.86) saturate(0.94);
    opacity: 0.88;
  }

  to {
    filter: brightness(1) saturate(1);
    opacity: 1;
  }
}

@keyframes fleckFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) rotate(45deg) scale(0.75);
  }

  24%,
  74% {
    opacity: var(--fleck-opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--fleck-drift), -44px, 0) rotate(135deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::after,
  .hero-fleck {
    animation: none;
  }
}

.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.55;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
  animation: heroTextIn 0.95s cubic-bezier(.2,.8,.2,1) 0.12s both;
}

.hero p {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 20px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  animation: heroTextIn 0.95s cubic-bezier(.2,.8,.2,1) 0.28s both;
}

.hero .btn {
  animation: heroTextIn 0.95s cubic-bezier(.2,.8,.2,1) 0.44s both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 30px;

  background: linear-gradient(135deg, rgba(255,182,193,0.7), rgba(255,220,230,0.7));
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;

  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 8px 20px rgba(255,182,193,0.25);
  transition: 0.3s;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  z-index: -1;
  background: linear-gradient(
    105deg,
    transparent 34%,
    rgba(255,255,255,0.55) 48%,
    transparent 62%
  );
  transform: translateX(-90%) rotate(8deg);
  transition: transform 0.75s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,182,193,0.9), rgba(255,220,230,0.9));
}

.btn:hover::after {
  transform: translateX(90%) rotate(8deg);
}

/* 共通セクション */
section {
  padding: 100px 20px;
  text-align: center;
}

.gray {
  background: #faf7f3;
}

h2 {
  position: relative;
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: #6b5b4d;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #c68a9d, #c59a70);
  border-radius: 999px;
  transform: translateX(-50%);
}

/* ルミエール紹介 */
#about {
  background:
    linear-gradient(180deg, #fffdf9, #fffaf6),
    radial-gradient(circle at 12% 20%, rgba(255, 226, 235, 0.5), transparent 28%);
}

.about-copy {
  max-width: 820px;
  margin: 0 auto;
  color: #5d534d;
  font-size: 16px;
  line-height: 2.1;
}

.about-copy p {
  margin: 0 0 18px;
}

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

.about-points {
  list-style: none;
  padding: 0;
  margin: 56px auto 0;
  max-width: 980px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-points li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 146px;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.88)),
    radial-gradient(circle at 96% 10%, rgba(239, 212, 221, 0.38), transparent 34%);
  border: 1px solid rgba(214, 186, 172, 0.28);

  border-radius: 18px;

  padding: 26px 28px 26px 34px;

  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0;

  color: #5f4d4d;

  box-shadow: 0 10px 30px rgba(190, 160, 160, 0.08);

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

.about-points li:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 124px;
  padding-right: min(160px, 16vw);
}

.about-points li::before {
  content: "";

  position: absolute;
  left: 18px;
  top: 26px;
  bottom: 26px;

  width: 3px;
  height: auto;

  border-radius: 999px;

  background: linear-gradient(
    180deg,
    #e7c6cf,
    #d8b68d
  );

  box-shadow: 0 0 0 5px rgba(231, 198, 207, 0.12);
}

.about-point-title,
.about-point-copy {
  display: block;
}

.about-point-title {
  color: #6b5b4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.about-point-copy {
  margin-top: 8px;
  color: #766a62;
  font-size: 14px;
  line-height: 1.85;
}

.about-points li:hover {
  transform: translateY(-3px);

  box-shadow: 0 16px 38px rgba(190, 160, 160, 0.14);
}

@media (max-width: 768px) {
  .about-points {
    margin-top: 40px;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .about-points li {
    min-height: auto;
    padding: 22px 22px 22px 32px;
    font-size: 14px;
    border-radius: 18px;
  }

  .about-points li:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding-right: 22px;
  }

  .about-points li::before {
    left: 16px;
    top: 24px;
    bottom: 24px;
  }

  .about-point-title {
    font-size: 16px;
  }

  .about-point-copy {
    font-size: 13px;
  }
}

/* お知らせ */
.news-section {
  position: relative;
  overflow: hidden;
  padding: 92px 20px 120px;
  background:
    linear-gradient(180deg, #fffdf9 0%, #fffaf6 48%, #faf1ee 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 226, 235, 0.52), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(216, 182, 141, 0.2), transparent 28%);
}

.news-section::before,
.news-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(940px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 138, 157, 0.38), rgba(197, 154, 112, 0.28), transparent);
  opacity: 1;
  transform: translateX(-50%);
}

.news-section::before {
  top: 56px;
}

.news-section::after {
  bottom: 56px;
}

.news-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 28px;
}

.news-heading h2 {
  margin-top: 6px;
  color: #6b5b4d;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 4px;
}

.news-heading p {
  margin: 22px 0 0;
  color: #5d534d;
  font-size: 15px;
  line-height: 1.9;
}

.news-stage {
  position: relative;
  height: 500px;
  max-width: 1080px;
  margin: 0 auto;
  perspective: 1200px;
}

.news-card {
  position: absolute;
  top: 36px;
  left: 50%;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  width: min(330px, 76vw);
  min-height: 420px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(234, 223, 214, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,246,0.92)),
    repeating-linear-gradient(0deg, rgba(107, 91, 77, 0.035) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 14% 10%, rgba(255, 226, 235, 0.62), transparent 34%);
  color: #5f5149;
  font: inherit;
  text-align: left;
  box-shadow:
    0 16px 38px rgba(107, 91, 77, 0.08),
    8px 10px 0 rgba(234, 223, 214, 0.58),
    inset 0 0 0 8px rgba(255, 255, 255, 0.58);
  cursor: pointer;
  filter: blur(var(--news-blur, 0));
  opacity: var(--news-opacity, 1);
  transform:
    translateX(calc(-50% + var(--news-x, 0px)))
    translateZ(var(--news-z, 0px))
    rotateY(var(--news-rotate, 0deg))
    scale(var(--news-scale, 1));
  transition:
    filter 0.42s ease,
    opacity 0.42s ease,
    transform 0.55s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(239, 212, 221, 0.95);
  box-shadow:
    0 24px 52px rgba(107, 91, 77, 0.14),
    10px 12px 0 rgba(239, 212, 221, 0.72),
    inset 0 0 0 8px rgba(255, 255, 255, 0.68);
  transform:
    translateX(calc(-50% + var(--news-x, 0px)))
    translateY(-8px)
    translateZ(var(--news-z, 0px))
    rotateY(var(--news-rotate, 0deg))
    scale(calc(var(--news-scale, 1) + 0.04));
}

.news-card:focus-visible {
  outline: 3px solid #c68a9d;
  outline-offset: 5px;
}

.news-paper-label {
  justify-self: start;
  margin-bottom: 16px;
  padding: 4px 8px;
  border: 1px solid rgba(198, 138, 157, 0.2);
  border-radius: 999px;
  background: rgba(255, 246, 249, 0.86);
  box-shadow: 0 8px 18px rgba(198, 138, 157, 0.1);
  color: #fffdf9;
  color: #c06f89;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-date {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198, 138, 157, 0.24);
  color: #8b7b70;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.news-card strong {
  margin: 16px 0 14px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: 1px;
}

.news-rule {
  display: block;
  height: 4px;
  margin-bottom: 18px;
  border-top: 2px solid #c68a9d;
  border-bottom: 1px solid rgba(197, 154, 112, 0.58);
}

.news-copy {
  color: #3f3934;
  font-size: 13px;
  line-height: 1.95;
  max-width: 240px;
}

.news-thumb {
  display: block;
  height: 108px;
  margin-top: 24px;
  border: 1px solid #eadfd6;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.34), transparent 24% 76%, rgba(255,255,255,0.28)),
    linear-gradient(135deg, transparent 0 48%, rgba(198, 138, 157, 0.16) 48% 52%, transparent 52%),
    linear-gradient(90deg, rgba(198, 138, 157, 0.34), rgba(197, 154, 112, 0.22));
  box-shadow: inset 0 0 0 6px rgba(250, 247, 243, 0.62);
}

.news-card[data-slot="0"] {
  --news-x: 0px;
  --news-z: 72px;
  --news-scale: 1;
  --news-rotate: 0deg;
  --news-opacity: 1;
  --news-blur: 0;
  z-index: 5;
}

.news-card[data-slot="1"] {
  --news-x: 315px;
  --news-z: -70px;
  --news-scale: 0.86;
  --news-rotate: -13deg;
  --news-opacity: 0.72;
  --news-blur: 0.7px;
  z-index: 4;
}

.news-card[data-slot="-1"] {
  --news-x: -315px;
  --news-z: -70px;
  --news-scale: 0.86;
  --news-rotate: 13deg;
  --news-opacity: 0.72;
  --news-blur: 0.7px;
  z-index: 4;
}

.news-card[data-slot="2"] {
  --news-x: 560px;
  --news-z: -190px;
  --news-scale: 0.72;
  --news-rotate: -20deg;
  --news-opacity: 0.28;
  --news-blur: 1.4px;
  z-index: 3;
}

.news-card[data-slot="-2"] {
  --news-x: -560px;
  --news-z: -190px;
  --news-scale: 0.72;
  --news-rotate: 20deg;
  --news-opacity: 0.28;
  --news-blur: 1.4px;
  z-index: 3;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(47, 42, 38, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.news-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.news-modal-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 36px 34px 34px;
  border: 1px solid #eadfd6;
  border-radius: 18px;
  background: #fffdf9;
  color: #5f5149;
  text-align: left;
  box-shadow: 0 24px 52px rgba(107, 91, 77, 0.18);
}

.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(198, 138, 157, 0.28);
  border-radius: 50%;
  background: rgba(255, 246, 249, 0.9);
  color: #b66f84;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.news-modal-date {
  display: inline-block;
  margin-bottom: 12px;
  color: #8b7b70;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.news-modal h2 {
  display: block;
  margin: 0 42px 18px 0;
  color: #6b5b4d;
  font-size: 28px;
  line-height: 1.45;
}

.news-modal h2::after {
  display: none;
}

.news-modal p {
  margin: 0;
  color: #4f4640;
  font-size: 15px;
  line-height: 1.95;
}

/* ご成婚までの流れ */
.flow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbf7f3 0%, #fffaf6 52%, #faf1ee 100%);
}

.flow-section::before {
  content: "";
  position: absolute;
  top: 84px;
  left: 50%;
  width: min(860px, 84vw);
  height: min(860px, 84vw);
  border: 1px solid rgba(198, 138, 157, 0.12);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.flow-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 34px;
}

.flow-heading h2 {
  margin-top: 6px;
}

.flow-heading p {
  margin: 24px 0 0;
  color: #6a5f58;
  font-size: 15px;
  line-height: 1.9;
}

.flow-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 44px;
  padding: 0 8px;
}

.flow-map::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #eeb8c7, #d8b68d, #b8c9a8);
  opacity: 0.72;
}

.flow-map::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 8%;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.86), transparent);
  filter: blur(1px);
  opacity: 0.88;
  animation: flowTrace 5.8s ease-in-out infinite;
}

.flow-map span {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  color: #8b7b70;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.flow-map span::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 6px solid #fffaf6;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3b3c5, #d8b68d);
  box-shadow: 0 8px 18px rgba(107, 91, 77, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.flow-map span::after {
  content: "";
  position: absolute;
  top: 7px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 10px rgba(255, 246, 249, 0.9);
  opacity: 0;
  transform: translate(7px, -4px) scale(0.7);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flow-map span.is-active {
  color: #b66f84;
}

.flow-map span.is-active::before {
  filter: saturate(1.1) brightness(1.02);
  box-shadow:
    0 10px 22px rgba(198, 138, 157, 0.24),
    0 0 0 8px rgba(255, 246, 249, 0.78);
  animation: flowDotPulse 2.8s ease-in-out infinite;
  transform: scale(1.12);
}

.flow-map span.is-active::after {
  opacity: 1;
  transform: translate(7px, -4px) scale(1);
}

.flow-map span:nth-child(2)::before {
  animation-delay: 0.16s;
}

.flow-map span:nth-child(3)::before {
  animation-delay: 0.32s;
}

.flow-map span:nth-child(4)::before {
  animation-delay: 0.48s;
}

.flow-map span:nth-child(5)::before {
  animation-delay: 0.64s;
}

.flow-map span:nth-child(6)::before {
  animation-delay: 0.8s;
}

@keyframes flowTrace {
  0%,
  12% {
    opacity: 0;
    transform: translateX(0) scaleX(0.4);
  }

  20%,
  78% {
    opacity: 0.88;
  }

  92%,
  100% {
    opacity: 0;
    transform: translateX(min(760px, 72vw)) scaleX(0.7);
  }
}

@keyframes flowDotPulse {
  0%,
  100% {
    transform: scale(1.08);
  }

  50% {
    transform: scale(1.18);
  }
}

.flow-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: flow;
}

.flow-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(198, 138, 157, 0.28), rgba(197, 154, 112, 0.3), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.flow-item {
  position: relative;
  min-height: 390px;
  padding: 18px 18px 28px;
  border: 1px solid rgba(234, 223, 214, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,246,0.9)),
    radial-gradient(circle at 16% 12%, rgba(255, 226, 235, 0.9), transparent 34%);
  box-shadow: 0 16px 38px rgba(107, 91, 77, 0.08);
  text-align: left;
  overflow: clip;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform;
}

.flow-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  pointer-events: none;
}

.flow-item::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(246, 226, 213, 0.42);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.flow-item:nth-child(2),
.flow-item:nth-child(5) {
  margin-top: 28px;
}

.flow-item:hover {
  border-color: rgba(239, 212, 221, 0.95);
  box-shadow: 0 24px 52px rgba(107, 91, 77, 0.14);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}

.flow-item:hover::after {
  opacity: 0.78;
  transform: scale(1.18) translate(-8px, 8px);
}

.flow-step-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 4px 12px;
  border: 1px solid rgba(198, 138, 157, 0.2);
  border-radius: 999px;
  background: rgba(255, 246, 249, 0.78);
  color: #c06f89;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.flow-image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #eadfd6;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 6px rgba(250, 247, 243, 0.62);
}

.flow-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,0.54) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.flow-item:hover .flow-image-wrap::after {
  transform: translateX(120%);
}

.flow-image {
  display: block;
  width: 100%;
  aspect-ratio: 24 / 13;
  background: #fff;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.flow-item:hover .flow-image {
  filter: saturate(1.05) brightness(1.02);
  transform: scale(1.025);
}

.flow-number {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin: -20px 0 16px 12px;
  background: linear-gradient(135deg, #f1a9bd, #d8b68d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow:
    0 10px 22px rgba(198, 138, 157, 0.22),
    0 0 0 7px rgba(255, 255, 255, 0.88);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-item:hover .flow-number {
  box-shadow:
    0 14px 28px rgba(198, 138, 157, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.88);
  transform: rotate(-8deg) scale(1.1);
}

.flow-item h3,
.flow-item p {
  position: relative;
  z-index: 1;
}

.flow-item h3 {
  margin: 0 0 10px;
  color: #5f5149;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.flow-item p {
  margin: 0;
  color: #5d534d;
  font-size: 14px;
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 0.72s ease,
    translate 0.72s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* フッター */
.footer {
  background: #f6eee8;
  color: #6b5b4d;
  padding: 60px 20px 20px;
  border-top: 1px solid #eadfd6;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 0.85fr 1.15fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #6b5b4d;
}

.footer p {
  color: #6b5b4d;
}

.footer a {
  color: #6b5b4d;
  font-size: 14px;
}

.footer-links {
  grid-column: 1 / -1;
}

.footer-links a {
  white-space: nowrap;
}

.footer .line-btn {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #6b5b4d;
  opacity: 0.7;
}

/* 下層ページ */
.page-hero {
  padding: 150px 20px 90px;
  background: #faf7f3;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px;
  font-weight: 500;
  color: #6b5b4d;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #777;
  font-size: 16px;
}

/* ルミエールのご紹介 */
.staff-section {
  background: #fffdf9;
  text-align: left;
}

.section-heading.staff-heading {
  max-width: 980px;
  text-align: center;
}

.staff-heading p {
  margin: 12px 0 0;
  color: #6a5f58;
  line-height: 1.9;
}

.staff-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.staff-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas: "photo copy";
  gap: 48px;
  align-items: start;
  padding: 40px;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(107, 91, 77, 0.07);
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.staff-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-areas: "copy photo";
}

.staff-card:hover {
  border-color: #efd4dd;
  box-shadow: 0 22px 48px rgba(107, 91, 77, 0.12);
  transform: translateY(-4px);
}

.staff-photo {
  grid-area: photo;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #eadfd6;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(107, 91, 77, 0.1);
}

.staff-photo--umehara {
  object-position: center 18%;
}

.staff-copy {
  grid-area: copy;
  min-width: 0;
}

.staff-role {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 4px 12px;
  background: #f8edf1;
  border-radius: 999px;
  color: #b66f84;
  font-size: 13px;
  font-weight: 600;
}

.staff-copy h3 {
  margin: 0 0 16px;
  color: #6b5b4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
}

.staff-message p {
  margin: 0 0 12px;
  color: #5d534d;
  font-size: 15px;
  line-height: 2;
}

.staff-message p:last-child {
  margin-bottom: 0;
}

.staff-career {
  margin: 0;
}

.staff-career div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.staff-career dt {
  color: #a08f82;
  font-size: 12px;
  font-weight: 600;
}

.staff-career dd {
  margin: 0;
  color: #5d534d;
  font-size: 14px;
  line-height: 1.9;
}

/* 料金 */
.price-section {
  max-width: 900px;
  margin: 0 auto;
}

.price-lead {
  font-size: 17px;
  color: #555;
  margin-bottom: 18px;
}

.price-list {
  max-width: 640px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid #eadfd6;
  text-align: left;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  color: #6b5b4d;
}

.price-row strong {
  color: #c89b5c;
  font-size: 20px;
  white-space: nowrap;
}

.price-note {
  max-width: 640px;
  margin: 18px auto 0;
  color: #777;
  font-size: 13px;
  text-align: left;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.option-item {
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.option-item:hover {
  border-color: #efd4dd;
  box-shadow: 0 18px 36px rgba(107, 91, 77, 0.1);
  transform: translateY(-5px);
}

.option-item h3 {
  color: #6b5b4d;
  margin-top: 0;
  margin-bottom: 12px;
}

.option-item p {
  color: #666;
  font-size: 14px;
}

.option-item strong {
  display: block;
  margin-top: 18px;
  color: #c89b5c;
  font-size: 20px;
}

/* お客様の声 */
.voices-section {
  padding-top: 70px;
  text-align: left;
}

.voices-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.voices-main {
  min-width: 0;
}

.voices-title {
  position: relative;
  margin-bottom: 6px;
  padding: 0 0 22px 22px;
  background: none;
  border-bottom: 1px solid #eadfd6;
  color: #6b5b4d;
}

.voices-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: calc(100% - 24px);
  min-height: 48px;
  background: linear-gradient(180deg, #c68a9d, #c59a70);
  border-radius: 999px;
}

.voices-title h2 {
  margin: 6px 0 0;
  color: #6b5b4d;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.45;
}

.voices-title-mark {
  display: inline-block;
  color: #c68a9d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.voice-item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px dotted #d8cfc8;
  transition: transform 0.28s ease;
}

.voice-item:hover {
  transform: translateX(6px);
}

.voice-item:last-child {
  border-bottom: none;
}

.voice-photo {
  display: block;
  width: 136px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 24px;
  padding: 4px;
  box-shadow:
    0 14px 28px rgba(107, 91, 77, 0.08),
    0 0 0 8px rgba(250, 247, 243, 0.72);
}

.voice-body h3 {
  margin: 0 0 8px;
  color: #2f2a26;
  font-size: 20px;
  line-height: 1.4;
}

.voice-body p {
  margin: 0 0 8px;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}

/* 会員様のご紹介 */
.members-hero {
  padding: 150px 20px 88px;
  background:
    linear-gradient(135deg, rgba(255, 246, 249, 0.96), rgba(250, 247, 243, 0.9)),
    radial-gradient(circle at 84% 18%, rgba(197, 154, 112, 0.22), transparent 34%),
    radial-gradient(circle at 10% 85%, rgba(198, 138, 157, 0.18), transparent 32%);
  text-align: left;
}

.members-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.members-hero-copy h1 {
  margin: 8px 0 18px;
  color: #6b5b4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.35;
}

.members-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #5f5650;
  font-size: 16px;
  line-height: 2;
}

.section-kicker {
  display: inline-block;
  color: #c68a9d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.members-hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(234, 223, 214, 0.86);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(107, 91, 77, 0.1);
  backdrop-filter: blur(12px);
}

.members-hero-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eadfd6;
}

.members-hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.members-hero-panel span {
  color: #8b7b70;
  font-size: 13px;
}

.members-hero-panel strong {
  color: #6b5b4d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
}

.members-hero-panel strong span {
  margin-left: 3px;
  color: #6b5b4d;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.members-section {
  padding: 88px 20px;
  text-align: left;
}

.members-section-soft,
.members-stats {
  background: #faf7f3;
}

.section-heading {
  max-width: 1100px;
  margin: 0 auto 34px;
  text-align: left;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: 30px;
  letter-spacing: 2px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.member-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  min-height: 218px;
  padding: 22px;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(107, 91, 77, 0.07);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.member-card:hover {
  border-color: #efd4dd;
  box-shadow: 0 22px 48px rgba(107, 91, 77, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px);
}

.member-avatar {
  display: block;
  width: 118px;
  height: 118px;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  border: 1px solid #eadfd6;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 14px 28px rgba(107, 91, 77, 0.1),
    0 0 0 8px rgba(250, 247, 243, 0.72);
}

.member-card-women .member-avatar {
  border-color: #efdde2;
  box-shadow:
    0 14px 28px rgba(107, 91, 77, 0.1),
    0 0 0 8px rgba(255, 246, 249, 0.82);
}

.member-content {
  min-width: 0;
}

.member-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.member-topline span {
  color: #8b7b70;
  font-size: 13px;
}

.member-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 12px;
  background: #f8edf1;
  border-radius: 999px;
  color: #b66f84;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.member-card-men .member-topline strong {
  background: #edf7fb;
  color: #4e93b4;
}

.member-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 14px;
}

.member-details div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0e8e1;
}

.member-details dt {
  color: #a08f82;
  font-size: 12px;
}

.member-details dd {
  margin: 0;
  color: #4f4640;
  font-size: 14px;
  font-weight: 600;
}

.member-card p {
  margin: 0;
  color: #5d534d;
  font-size: 14px;
  line-height: 1.8;
}

.members-stats {
  padding: 88px 20px 40px;
  text-align: left;
}

.stats-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 22px;
}

.stats-summary div {
  padding: 20px 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid #eadfd6;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(107, 91, 77, 0.06);
}

.stats-summary span,
.data-points span {
  display: block;
  margin-bottom: 8px;
  color: #9b8176;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.stats-summary strong {
  color: #6b5b4d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
}

.stats-summary small {
  margin-left: 3px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.chart-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(107, 91, 77, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.chart-card:hover {
  box-shadow: 0 22px 48px rgba(107, 91, 77, 0.12);
  transform: translateY(-4px);
}

.chart-card h3 {
  margin: 0 0 24px;
  color: #6b5b4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
}

.donut {
  width: 180px;
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(107, 91, 77, 0.08);
  transition: transform 0.6s ease;
}

.chart-card:hover .donut {
  transform: rotate(10deg) scale(1.02);
}

.donut::after {
  content: "";
  display: block;
  width: 42%;
  aspect-ratio: 1;
  margin: 29%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(234, 223, 214, 0.9);
}

.donut-area {
  background: conic-gradient(
    #d7a7b5 0 42.9%,
    #a7cbd0 42.9% 66.2%,
    #b8c9a8 66.2% 82.3%,
    #d8b68d 82.3% 88.8%,
    #bab2cb 88.8% 92.7%,
    #c8c0b8 92.7% 95.1%,
    #ead9ad 95.1% 96.9%,
    #d0a6a1 96.9% 98.4%,
    #c7d8c8 98.4% 99.9%,
    #e7ded6 99.9% 100%
  );
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.area-list span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.area-chart {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.area-chart .donut {
  margin-bottom: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list span {
  background: var(--legend-color);
}

.area-list li {
  justify-content: space-between;
  color: #5d534d;
  font-size: 14px;
}

.area-list strong {
  margin-left: auto;
  color: #6b5b4d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.data-points {
  display: grid;
  gap: 14px;
}

.data-points div {
  padding-bottom: 14px;
  border-bottom: 1px solid #f0e8e1;
}

.data-points div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.data-points strong {
  display: block;
  color: #6b5b4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 1.5;
}

.data-points p {
  margin: 6px 0 0;
  color: #71675f;
  font-size: 13px;
  line-height: 1.7;
}

.stats-note {
  max-width: 1100px;
  margin: 18px auto 0;
  color: #8b7b70;
  font-size: 12px;
  text-align: right;
}

.members-cta {
  padding: 72px 20px 96px;
  background: #faf7f3;
}

.members-cta h2 {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: 26px;
  line-height: 1.7;
}

/* 個人情報 */
.policy {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 150px;
  text-align: left;
}

.policy h1,
.policy h2 {
  text-align: center;
}

.policy h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px;
  font-weight: 500;
  color: #6b5b4d;
  letter-spacing: 3px;
  margin: 0 0 48px;
}

.policy ul {
  padding-left: 1.4em;
}

.policy li {
  margin-bottom: 14px;
}

.policy hr {
  border: none;
  border-top: 1px solid #eadfd6;
  margin: 56px 0;
}

/* レスポンシブ */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .pc-nav {
    display: none;
  }

  .flow-container {
    grid-template-columns: 1fr;
  }

  .flow-section::before {
    top: 120px;
    width: 520px;
    height: 520px;
  }

  .flow-heading {
    margin-bottom: 28px;
  }

  .flow-map {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
    margin-bottom: 34px;
  }

  .flow-map::before {
    display: none;
  }

  .flow-map::after {
    display: none;
  }

  .flow-map span::before {
    width: 28px;
    height: 28px;
    border-width: 5px;
  }

  .flow-container::before {
    top: 0;
    bottom: 0;
    left: 38px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(198, 138, 157, 0.28), rgba(197, 154, 112, 0.3), transparent);
    transform: none;
  }

  .flow-item,
  .flow-item:nth-child(2),
  .flow-item:nth-child(5) {
    min-height: 0;
    margin-top: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero {
    height: calc(100vh - 70px);
  }

  .hero h1 {
    font-size: 28px;
  }

  .line-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .news-section {
    padding: 76px 16px 94px;
  }

  .news-section::before {
    top: 42px;
  }

  .news-section::after {
    bottom: 42px;
  }

  .news-heading {
    margin-bottom: 18px;
  }

  .news-heading h2 {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .news-stage {
    height: 460px;
  }

  .news-card {
    top: 26px;
    width: min(300px, 78vw);
    min-height: 388px;
    padding: 22px 20px 20px;
  }

  .news-card strong {
    font-size: 22px;
  }

  .news-thumb {
    height: 92px;
  }

  .news-card[data-slot="1"] {
    --news-x: 210px;
  }

  .news-card[data-slot="-1"] {
    --news-x: -210px;
  }

  .news-card[data-slot="2"] {
    --news-x: 360px;
  }

  .news-card[data-slot="-2"] {
    --news-x: -360px;
  }

  .news-modal-panel {
    padding: 32px 24px 28px;
  }

  .page-hero {
    padding: 120px 20px 70px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .staff-card {
    grid-template-columns: 180px minmax(0, 1fr);
    grid-template-areas: "photo copy";
    gap: 28px;
    padding: 28px;
  }

  .staff-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 180px;
    grid-template-areas: "copy photo";
  }

  .price-row {
    flex-direction: column;
    gap: 6px;
  }

  .option-list {
    grid-template-columns: 1fr;
  }

  .voices-section {
    padding-top: 50px;
  }

  .voices-title {
    padding: 0 0 18px 18px;
  }

  .voices-title::before {
    min-height: 42px;
  }

  .voices-title h2 {
    font-size: 25px;
  }

  .voice-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 0;
  }

  .voice-photo {
    width: 112px;
    padding: 4px;
    border-radius: 22px;
  }

  .voice-body h3 {
    font-size: 18px;
  }

  .voice-body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .members-hero {
    padding: 120px 20px 68px;
  }

  .members-hero-inner,
  .stats-layout,
  .stats-summary,
  .area-chart {
    grid-template-columns: 1fr;
  }

  .members-hero-copy h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .members-hero-panel {
    padding: 20px;
  }

  .members-section,
  .members-stats {
    padding: 70px 20px;
  }

  .section-heading h2 {
    font-size: 25px;
    line-height: 1.5;
  }

  .member-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .member-avatar {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .member-details {
    grid-template-columns: 1fr;
  }

  .chart-card {
    padding: 24px 20px;
  }

  .area-chart .donut {
    margin: 0 auto 18px;
  }

  .stats-note {
    text-align: left;
  }

  .members-cta {
    padding: 62px 20px 78px;
  }

  .members-cta h2 {
    font-size: 22px;
  }

  .policy {
    padding-top: 120px;
  }

  .policy h1 {
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  body {
    line-height: 1.8;
  }

  .hero-content {
    padding: 24px 18px;
  }

  .hero h1 {
    font-size: 27px;
    letter-spacing: 3px;
    line-height: 1.5;
  }

  .hero p {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.8;
  }

  section {
    padding: 70px 20px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  section p {
    font-size: 15px;
    line-height: 1.9;
  }

  .about-copy {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy p {
    margin-bottom: 16px;
  }

  .about-points {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }

  .about-points li {
    max-width: 340px;
    width: 100%;
  }

  .flow-item p {
    line-break: strict;
    overflow-wrap: break-word;
  }

  .page-hero h1 {
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  .page-hero p {
    font-size: 14px;
    line-height: 1.8;
  }

  .staff-heading {
    margin-bottom: 28px;
  }

  .staff-copy h3 {
    font-size: 22px;
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .news-stage {
    height: 430px;
  }

  .news-card {
    width: min(284px, 82vw);
    min-height: 372px;
    border-width: 2px;
    box-shadow: 9px 11px 0 rgba(37, 34, 31, 0.14);
  }

  .news-card[data-slot="1"] {
    --news-x: 150px;
    --news-opacity: 0.48;
  }

  .news-card[data-slot="-1"] {
    --news-x: -150px;
    --news-opacity: 0.48;
  }

  .news-card[data-slot="2"],
  .news-card[data-slot="-2"] {
    --news-opacity: 0;
  }

  .voice-item {
    grid-template-columns: 1fr;
  }

  .voice-photo {
    width: 100%;
    max-width: 190px;
    margin-right: auto;
    margin-left: auto;
  }

  .member-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .staff-card,
  .staff-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy";
    justify-items: center;
    gap: 20px;
  }

  .staff-photo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4;
  }

  .member-avatar {
    width: 100%;
    height: auto;
    max-width: 220px;
    aspect-ratio: 1;
    margin-right: auto;
    margin-left: auto;
  }

  .staff-copy,
  .member-content {
    width: 100%;
  }

  .member-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
.about-copy {
  padding: 0 1rem;
}

.about-copy p {
  line-height: 1.9;
  word-break: normal;
}

.center-ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 480px;
  display: table;
}

.center-ul li {
  line-height: 1.9;
  padding-left: 1.4em;
  position: relative;
}

.center-ul li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: var(--color-accent, #c9a96e);
  font-size: 0.75em;
  top: 0.35em;
}

@media (max-width: 768px) {
  .center-ul {
    max-width: 90%;
  }
}