/* ========================================
   CCA-SS LP — Common Styles
   Brand: #434343 / #F5AF7E / #0C86B6 / #F6E2DE / #A2BCD5
   Gradient: 青→オレンジ（マジックアワー）
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --text: #434343;
  --text-light: #777777;
  --accent1: #F5AF7E;        /* オレンジ — 見出し・CTA */
  --accent1-hover: #E49A68;
  --accent2: #0C86B6;        /* ブルー — 小見出し・リンク */
  --accent2-hover: #0A6F96;
  --base1: #A2BCD5;          /* くすみブルー — 背景 */
  --base2: #F6E2DE;          /* ピンクベージュ — 背景 */
  --base3: #B8C9DA;          /* ライトくすみブルー — 背景 */
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #0C86B6 0%, #A2BCD5 40%, #F5AF7E 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  line-height: 2;
  background: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent2);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
.en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

/* ベース2（ピンクベージュ）とベース3（くすみブルー）をしっかり見せる */
.section--ivory { background: var(--base2); }
.section--white { background: var(--white); }
.section--ivory-dark { background: rgba(162, 188, 213, 0.25); }

.section-label {
  display: block;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent2);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.section-title--left {
  text-align: left;
}

/* ----------------------------------------
   Header / Navigation
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 16px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-links a {
  color: var(--text);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.menu-toggle span { top: 9px; }
.menu-toggle span::before { content: ""; top: -7px; }
.menu-toggle span::after { content: ""; top: 7px; }

/* ----------------------------------------
   Hero — gradient background (magic hour)
   ---------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 45%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  line-height: 2;
  font-weight: 400;
}

.hero .btn--primary {
  background: var(--white);
  color: var(--accent2);
  font-weight: 500;
}

.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Detail page hero */
.hero--detail {
  min-height: 60vh;
  padding: 100px 32px 80px;
}

.hero--detail .hero-catch {
  font-size: 2rem;
}

.hero-label {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 6px 24px;
  border-radius: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.1em;
}

.btn:hover {
  opacity: 1;
}

.btn--primary {
  background: var(--accent1);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent1-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 175, 126, 0.35);
}

.btn--accent {
  background: var(--accent2);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent2-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 134, 182, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent2);
  border: 1.5px solid var(--accent2);
}

.btn--outline:hover {
  background: var(--accent2);
  color: var(--white);
}

.btn--small {
  padding: 12px 32px;
  font-size: 0.8rem;
}

/* ----------------------------------------
   Issues (keyword style)
   ---------------------------------------- */
.issues-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: -32px auto 48px;
}

.pain-list--keyword {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pain-list--keyword .pain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-bottom: none;
  gap: 0;
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* Pain Icon — Styled Number */
.pain-icon-styled {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  background: var(--accent2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.pain-list--keyword .pain-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pain-list--keyword .pain-item p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Legacy pain list (fallback) */
.pain-list:not(.pain-list--keyword) {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pain-list:not(.pain-list--keyword) .pain-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 0.95rem;
}

.pain-list:not(.pain-list--keyword) .pain-item:last-child {
  border-bottom: none;
}

.pain-check {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent1);
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

/* ----------------------------------------
   Reasons
   ---------------------------------------- */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.reason-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.reason-item:nth-child(even) {
  direction: rtl;
}

.reason-item:nth-child(even) > * {
  direction: ltr;
}

.reason-img {
  width: 100%;
  height: 320px;
  background: rgba(162, 188, 213, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.reason-body .reason-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent1);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.reason-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  color: var(--accent2);
}

.reason-body p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-light);
}

/* ----------------------------------------
   Plan Cards
   ---------------------------------------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plan-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

img.plan-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

div.plan-card-img {
  width: 100%;
  height: 220px;
  background: rgba(162, 188, 213, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.plan-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-card-body .plan-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent2);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.plan-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.plan-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--accent1);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.plan-price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.plan-card-body p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 24px;
  flex: 1;
}

.plan-card-body .btn {
  align-self: flex-start;
}

/* ----------------------------------------
   Venue
   ---------------------------------------- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.venue-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.venue-card-img {
  width: 100%;
  height: 280px;
  background: rgba(162, 188, 213, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.venue-card-body {
  padding: 28px;
}

.venue-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  color: var(--accent2);
}

.venue-card-body p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-light);
}

/* ----------------------------------------
   Case Studies
   ---------------------------------------- */
.case-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: -32px auto 48px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  display: block;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.case-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.case-card-img {
  width: 100%;
  height: 160px;
  background: var(--base1);
  background-size: cover;
  background-position: center;
}

.case-card-body {
  padding: 16px;
}

.case-company {
  font-size: 0.7rem;
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
}

.case-title {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
}

/* ----------------------------------------
   Members
   ---------------------------------------- */
.member-intro {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 700px;
  margin: -32px auto 48px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.member-card {
  display: block;
  text-align: center;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 24px 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.member-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--base1);
  background-size: cover;
  background-position: center;
  margin: 0 auto 16px;
}

.member-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.member-role {
  font-size: 0.7rem;
  color: var(--accent2);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.member-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.member-message {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 4px;
}

/* ----------------------------------------
   CTA Section — gradient background
   ---------------------------------------- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient);
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.cta-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  line-height: 2;
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .btn--primary {
  background: var(--white);
  color: var(--accent2);
  font-weight: 500;
}

.cta-section .btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------
   Detail Page — Persona / Benefits
   ---------------------------------------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.persona-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.persona-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--base2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.persona-card p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.benefit-card {
  text-align: center;
  padding: 8px 0;
}

.benefit-card .benefit-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--accent2);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  font-weight: 600;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  color: var(--accent2);
}

.benefit-card p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-light);
}

/* ----------------------------------------
   Timeline
   ---------------------------------------- */
.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--base1);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent1);
}

.timeline-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ----------------------------------------
   Pricing
   ---------------------------------------- */
.pricing-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--accent1);
}

.pricing-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 2;
  text-align: left;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
  padding: 48px 0;
  text-align: center;
  background: var(--white);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.footer a {
  color: var(--text-light);
}

/* ----------------------------------------
   Social Proof Bar
   ---------------------------------------- */
.proof-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.proof-item {
  text-align: center;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.proof-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------
   Reasons Compact (3-column)
   ---------------------------------------- */
.reasons-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reason-compact-card {
  text-align: center;
  padding: 16px;
}

.reason-compact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-compact-icon span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.reason-compact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.6;
}

.reason-compact-card p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-light);
}

/* ----------------------------------------
   Mid CTA
   ---------------------------------------- */
.mid-cta {
  background: var(--gradient);
  padding: 28px 0;
  text-align: center;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-cta p {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.mid-cta .btn--primary {
  background: var(--white);
  color: var(--accent2);
}

.mid-cta .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------
   Plan Venue Chip
   ---------------------------------------- */
.plan-venue-chip {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent2);
  background: rgba(12, 134, 182, 0.08);
  padding: 4px 12px;
  margin-bottom: 20px;
}

/* ----------------------------------------
   CTA Buttons (dual)
   ---------------------------------------- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container,
  .container--narrow {
    padding: 0 20px;
  }

  .hero {
    min-height: 85vh;
    padding: 100px 20px 72px;
  }

  .hero-catch {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero--detail {
    min-height: 55vh;
  }

  .hero--detail .hero-catch {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }

  .reason-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reason-item:nth-child(even) {
    direction: ltr;
  }

  .reason-img {
    height: 220px;
  }

  .pain-list--keyword {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .plan-grid,
  .venue-grid,
  .persona-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .proof-bar-inner {
    flex-direction: column;
    gap: 20px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

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

  .mid-cta-inner {
    flex-direction: column;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .plan-card-img {
    height: 180px;
  }

  .venue-card-img {
    height: 200px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px 32px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .pricing-amount {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .benefit-grid {
    gap: 32px;
  }
}

/* ----------------------------------------
   Client Logo Wall (marquee)
   ---------------------------------------- */
.logo-wall {
  padding: 32px 0 40px;
  background: var(--white);
  overflow: hidden;
}

.logo-wall-label {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-wall-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-wall-slider {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-wall-item {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease;
}

.logo-wall-item:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-wall-slider {
    gap: 40px;
    animation-duration: 20s;
  }
  .logo-wall-item {
    height: 24px;
  }
}

/* ----------------------------------------
   Flow Steps
   ---------------------------------------- */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.flow-step-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 16px;
}

.flow-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.flow-step-desc {
  font-size: 0.82rem;
  line-height: 2;
  color: var(--text-light);
}

.flow-step-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: var(--base1);
  position: relative;
  top: 16px;
}

.flow-step-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--base1);
  border-right: 2px solid var(--base1);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .flow-step {
    text-align: center;
    padding: 0;
    max-width: 320px;
  }
  .flow-step-arrow {
    width: 2px;
    height: 32px;
    top: 0;
    margin: 16px 0;
  }
  .flow-step-arrow::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: -4px;
    transform: rotate(135deg);
  }
}

/* ----------------------------------------
   FAQ (CSS-only accordion)
   ---------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: "Q.";
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent2);
  margin-right: 16px;
  flex-shrink: 0;
}

.faq-question::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent1);
  border-bottom: 2px solid var(--accent1);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-item[open] .faq-question {
  color: var(--accent2);
}

.faq-answer {
  padding: 0 0 24px 36px;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.88rem;
    padding: 20px 0;
  }
  .faq-answer {
    padding: 0 0 20px 28px;
  }
}

/* ----------------------------------------
   Mobile Fixed CTA Bar
   ---------------------------------------- */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
    transition: all 0.3s ease;
  }
  .mobile-cta-btn:hover {
    opacity: 1;
  }
  .mobile-cta-btn--primary {
    background: var(--accent1);
    color: var(--white);
  }
  .mobile-cta-btn--primary:hover {
    background: var(--accent1-hover);
  }
  .mobile-cta-btn--secondary {
    background: transparent;
    color: var(--accent2);
    border: 1.5px solid var(--accent2);
  }
  .mobile-cta-btn--secondary:hover {
    background: var(--accent2);
    color: var(--white);
  }
  .footer {
    padding-bottom: 100px;
  }
}

/* ----------------------------------------
   Hero — Background Image Variant
   ---------------------------------------- */
.hero--img {
  background: var(--hero-bg, var(--gradient)) center / cover no-repeat;
}

.hero--img .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(67, 67, 67, 0.5) 0%,
    rgba(12, 134, 182, 0.35) 50%,
    rgba(67, 67, 67, 0.6) 100%
  );
  z-index: 0;
}

/* ----------------------------------------
   CTA Micro Copy
   ---------------------------------------- */
.cta-micro {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  display: block;
}

.mid-cta .cta-micro {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
}

/* ----------------------------------------
   Venue Mini Cards (4-col)
   ---------------------------------------- */
.venue-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: -32px auto 48px;
  line-height: 2;
}

.venue-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.venue-card-mini {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.venue-card-mini-img {
  width: 100%;
  height: 180px;
  background: var(--base1);
  background-size: cover;
  background-position: center;
}

.venue-card-mini-body {
  padding: 20px 16px;
}

.venue-card-mini-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.venue-card-mini-body p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .venue-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .venue-card-mini-img {
    height: 140px;
  }
}

/* ----------------------------------------
   Strengths (2-col)
   ---------------------------------------- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.strength-card {
  text-align: center;
  padding: 16px;
  overflow: hidden;
}

.strength-card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}

.strength-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.6;
}

.strength-card p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ----------------------------------------
   Option Cards (3-col)
   ---------------------------------------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.option-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--base2);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-4px);
}

.option-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.option-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.option-card p {
  font-size: 0.82rem;
  line-height: 2;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ----------------------------------------
   Case Tag
   ---------------------------------------- */
.case-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--accent2);
  padding: 2px 10px;
  margin-bottom: 6px;
}

/* ----------------------------------------
   Case Detail Page
   ---------------------------------------- */
.case-detail-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.case-detail-meta-item {
  text-align: center;
}

.case-detail-meta-label {
  font-size: 0.7rem;
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.case-detail-meta-value {
  font-size: 0.9rem;
  font-weight: 500;
}

.case-detail-body {
  max-width: 760px;
  margin: 0 auto;
}

.case-detail-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent1);
  display: inline-block;
}

.case-detail-body p {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 32px;
}

.case-detail-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.case-detail-photos img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.case-detail-voice {
  background: var(--base2);
  padding: 40px;
  margin: 40px 0;
  position: relative;
}

.case-detail-voice::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--accent1);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.case-detail-voice p {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 0;
  padding-left: 16px;
}

.case-detail-voice cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
  margin-top: 16px;
  padding-left: 16px;
}

/* Back to cases link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 24px;
}

.back-link::before {
  content: "←";
}

@media (max-width: 768px) {
  .case-detail-photos {
    grid-template-columns: 1fr;
  }
  .case-detail-photos img {
    height: 200px;
  }
  .case-detail-voice {
    padding: 32px 24px;
  }
}

/* ----------------------------------------
   Solution Bridge
   ---------------------------------------- */
.solution-bridge {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.solution-bridge-text {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}

.solution-bridge-text strong {
  color: var(--accent2);
}

/* ----------------------------------------
   Venue Area Tag
   ---------------------------------------- */
.venue-card-mini {
  position: relative;
}

.venue-area-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--accent2);
  padding: 3px 12px;
}

/* ----------------------------------------
   Service Grid (grows-net style)
   ---------------------------------------- */
.plans-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: -32px auto 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--base2);
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 0.75rem;
  color: var(--accent2);
  background: rgba(12, 134, 182, 0.08);
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.plans-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 32px;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card {
    padding: 24px 16px;
  }
  .service-card h3 {
    font-size: 0.95rem;
  }
}

/* ----------------------------------------
   CTA Form
   ---------------------------------------- */
.cta-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form-row {
  display: flex;
  gap: 12px;
}

.cta-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  letter-spacing: 0.04em;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cta-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
}

.cta-textarea {
  resize: vertical;
  min-height: 80px;
}

.cta-form .btn--primary {
  background: var(--white);
  color: var(--accent2);
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
}

.cta-form .btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cta-form-row {
    flex-direction: column;
  }
  .solution-bridge-text {
    font-size: 0.95rem;
  }
}
