/* ====================================================
   MARIKO OHNO — Official Website
   style.css
==================================================== */

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

/* ---- Custom Properties ---- */
:root {
  --white:      #FFFFFF;
  --ivory:      #FAF9F4;
  --beige:      #F2EBE0;
  --beige-mid:  #E5D9C8;
  --beige-dark: #CEC0AB;
  --black:      #0A0A0A;
  --black-soft: #1A1815;
  --black-mid:  #2C2924;
  --gold:       #C9A94D;
  --gold-light: #E2C87A;
  --gold-pale:  #F0DFA8;
  --text-dark:  #1A1A18;
  --text-mid:   #4A4846;
  --text-light: #7A7876;

  --ff-en:   'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Montserrat', sans-serif;
  --ff-jp:   'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --trans: 0.4s var(--ease-out);
  --trans-slow: 0.9s var(--ease-out);

  --max-w: 1180px;
  --section-pd: 100px 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-jp);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
.en { font-family: var(--ff-en); }
.sans { font-family: var(--ff-sans); }

h1, h2, h3, h4 { font-family: var(--ff-jp); font-weight: 400; line-height: 1.45; }

.section-label {
  font-family: var(--ff-en);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--ff-jp);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 1.2s var(--ease-out) 0.3s;
}
.section-title.is-visible::after { width: 48px; }

.section-title-center { display: block; text-align: center; }
.section-title-center::after { left: 50%; transform: translateX(-50%); }

.section-sub {
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 640px;
}

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pd); }
.section--dark { background: var(--black); color: var(--white); }
.section--black-soft { background: var(--black-soft); color: var(--white); }
.section--beige { background: var(--beige); }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { color: var(--black); }

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold::before { background: var(--gold); }
.btn-outline-gold:hover { color: var(--black); }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white::before { background: rgba(255,255,255,0.1); }
.btn-outline-white:hover { color: var(--white); border-color: var(--white); }

.btn-outline-dark {
  border: 1px solid var(--black);
  color: var(--black);
}
.btn-outline-dark::before { background: var(--black); }
.btn-outline-dark:hover { color: var(--white); }

.btn span { position: relative; z-index: 1; }
.btn-arrow::after { content: '→'; font-family: sans-serif; position: relative; z-index: 1; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, box-shadow 0.5s ease, height 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 249, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  height: 60px;
}
.nav.nav-dark {
  background: transparent;
}
.nav.nav-dark.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--ff-en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--trans);
}
.nav.scrolled .nav__logo { color: var(--text-dark); }
.nav.nav-dark .nav__logo { color: var(--white); }
.nav.nav-dark.scrolled .nav__logo { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--trans);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--gold-light); }

.nav.scrolled .nav__link { color: var(--text-mid); }
.nav.scrolled .nav__link:hover { color: var(--gold); }
.nav.nav-dark .nav__link { color: rgba(255,255,255,0.85); }
.nav.nav-dark.scrolled .nav__link { color: rgba(255,255,255,0.7); }
.nav.nav-dark.scrolled .nav__link:hover { color: var(--gold-light); }

.nav__lang {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--trans);
  cursor: pointer;
}
.nav.scrolled .nav__lang { color: var(--text-light); border-color: var(--beige-dark); }
.nav__lang:hover { color: var(--gold); border-color: var(--gold); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: var(--trans);
}
.nav.scrolled .nav__hamburger span { background: var(--text-dark); }
.nav.nav-dark .nav__hamburger span { background: var(--white); }
.nav.nav-dark.scrolled .nav__hamburger span { background: var(--white); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile-link {
  font-family: var(--ff-jp);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--trans);
}
.nav__mobile-link:hover { color: var(--gold-light); }
.nav__mobile-link span {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
/* 英語HPへの言語切替タブ。日本語メニュー項目とは別の独立した導線として、
   区切り線と控えめなサイズで視覚的に分離する。 */
.nav__mobile-lang {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: 132px;
  text-align: center;
}
.nav__mobile-lang:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.65) 0%,
    rgba(26,24,21,0.55) 50%,
    rgba(10,10,10,0.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero__title {
  font-family: var(--ff-jp);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.6s forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero__subtitle {
  font-family: var(--ff-jp);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.9s forwards;
}
.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero__scroll span {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,77,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- Gold Divider ---- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.gold-divider--center { justify-content: center; }
.gold-divider-dot {
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* ---- Section Header ---- */
.section-header {
  margin-bottom: 64px;
}
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 20px auto 0; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--beige-mid);
  transition: var(--trans);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.card:hover::before { width: 100%; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.card--dark {
  background: var(--black-mid);
  border-color: rgba(201,169,77,0.2);
}
.card--dark::before { background: var(--gold); }

.card__number {
  font-family: var(--ff-en);
  font-size: 3rem;
  font-weight: 300;
  color: var(--beige-mid);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--trans);
}
.card--dark .card__number { color: rgba(201,169,77,0.25); }
.card:hover .card__number { color: var(--gold-pale); }

.card__title {
  font-family: var(--ff-jp);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.card--dark .card__title { color: var(--white); }

.card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.card--dark .card__text { color: rgba(255,255,255,0.65); }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease-out);
}
.service-card:hover::after { height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.1); }

.service-card__en {
  font-family: var(--ff-en);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card__title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 28px;
}
.service-card__link {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--trans);
}
.service-card:hover .service-card__link { gap: 16px; }

/* ---- Reason Items (Dark Section) ---- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,169,77,0.15);
}
.reason-item {
  padding: 48px 40px;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
  transition: background var(--trans);
}
.reason-item:hover { background: var(--black-mid); }
.reason-item__number {
  font-family: var(--ff-en);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,77,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.reason-item__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}
.reason-item__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

/* ---- Pricing Table ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-jp);
}
.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--beige-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}
.pricing-table th {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  background: var(--beige-mid);
  color: var(--text-mid);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(201,169,77,0.04); }
.pricing-price {
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-price sup { font-size: 0.75rem; font-family: var(--ff-jp); }
.pricing-strike {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.pricing-badge {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- Process Flow ---- */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px;
  left: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.flow-item {
  display: flex;
  gap: 28px;
  padding: 24px 24px 24px 0;
  position: relative;
}
.flow-item__number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.flow-item__content {}
.flow-item__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.5;
}
.flow-item__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--beige-mid);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--gold); }
.faq-question::before {
  content: 'Q.';
  font-family: var(--ff-en);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--trans);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; transition: opacity var(--trans); }
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  padding: 0 0 0 34px;
}
.faq-answer-inner p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.faq-answer-inner p::before {
  content: 'A. ';
  color: var(--gold);
  font-family: var(--ff-en);
}

/* ---- Contact Form ---- */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-label .required {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  border: 1px solid var(--gold);
  padding: 1px 6px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--beige-mid);
  font-family: var(--ff-jp);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,77,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.8; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A94D'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }

/* ---- Contact Options ---- */
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.contact-option {
  padding: 40px 28px;
  border: 1px solid var(--beige-mid);
  text-align: center;
  background: var(--white);
  transition: var(--trans);
}
.contact-option:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.contact-option__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  filter: grayscale(1);
  transition: filter var(--trans);
}
.contact-option:hover .contact-option__icon { filter: none; }
.contact-option__title {
  font-family: var(--ff-en);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-option__jp {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-option__text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---- SNS Links ---- */
.sns-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--beige-mid);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: var(--trans);
}
.sns-link:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Profile Page ---- */
.profile-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.profile-photo-wrap {
  position: sticky;
  top: 100px;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.profile-photo-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.1em;
}
.profile-name {
  font-family: var(--ff-jp);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
}
.profile-name-en {
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.profile-role {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--beige-mid);
  line-height: 1.7;
}
.profile-body {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-mid);
}
.profile-body p { margin-bottom: 24px; }
.profile-body h3 {
  font-size: 0.85rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 36px;
}
.profile-body ul { padding-left: 16px; }
.profile-body ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}
.profile-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--ff-en);
}

/* ---- Includes List ---- */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.includes-item::before {
  content: '✓';
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

/* ---- Privacy / Text pages ---- */
.text-page { max-width: 800px; margin: 0 auto; }
.text-page h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige-mid);
}
.text-page h2:first-child { margin-top: 0; }
.text-page p, .text-page li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 12px;
}
.text-page ul { padding-left: 20px; list-style: disc; margin-bottom: 20px; }
.text-page address { font-style: normal; }

/* ---- CTA Section ---- */
.cta-section {
  padding: 120px 24px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,77,0.07) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-label { justify-content: center; display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.cta-section .section-label::before,
.cta-section .section-label::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.5; }
.cta-title {
  font-family: var(--ff-jp);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 48px;
}

/* ---- Page Hero (Inner pages) ---- */
.page-hero {
  padding: 160px 24px 100px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,77,0.4));
}
.page-hero__en {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--ff-jp);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}
.page-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(201,169,77,0.15);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--ff-en);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}
.footer__nav-link {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--trans);
}
.footer__nav-link:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.25);
}
.footer__sns {
  display: flex;
  gap: 20px;
}
.footer__sns-link {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color var(--trans);
}
.footer__sns-link:hover { color: var(--gold-light); }

/* ---- Scroll Animations ---- */
.animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate.is-visible { opacity: 1; transform: translateY(0); }

.animate-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate-left.is-visible { opacity: 1; transform: translateX(0); }

.animate-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate-right.is-visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ---- Keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ---- Misc Utilities ---- */
.note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 16px 20px;
  border-left: 2px solid var(--beige-dark);
  margin-top: 16px;
}
.note--gold { border-left-color: var(--gold); color: var(--text-mid); }

.tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--beige-dark);
  color: var(--text-light);
  margin: 4px;
}

.target-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.target-item::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 12px;
}

.monitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root { --section-pd: 80px 24px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .profile-section { grid-template-columns: 320px 1fr; gap: 56px; }
  .contact-options { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pd: 64px 20px; }

  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(1.65rem, 6.5vw, 2.6rem); }
  .hero__cta { flex-direction: column; align-items: center; }
  /* Drop forced line breaks in the hero intro so text flows naturally on phones */
  .hero__subtitle .hide-sp { display: none; }
  .page-hero__title { font-size: clamp(1.5rem, 6vw, 1.8rem); }

  .profile-section { grid-template-columns: 1fr; gap: 40px; }
  .profile-photo-wrap { position: static; max-width: 320px; margin: 0 auto; }

  .contact-options { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .pricing-table { font-size: 0.82rem; }
  .pricing-table th, .pricing-table td { padding: 14px 12px; }

  .section-header { margin-bottom: 44px; }
  .flow-list::before { left: 20px; }

  /* Fix: inline grid-column:span 2 overrides 1-column grid on mobile */
  .grid-2 > * { grid-column: span 1 !important; }

  /* Reduce double horizontal padding (section 20px + container 24px) */
  .section { padding-left: 0; padding-right: 0; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* Tighten card padding on mobile */
  .card, .service-card { padding: 32px 24px; }

  /* Prevent character-by-character line breaks in Japanese */
  h1, h2, h3, p, .card__title, .service-card__title, .section-title {
    word-break: normal;
    overflow-wrap: break-word;
    line-break: strict;
  }
  .card__text, .service-card__text {
    font-size: 0.9rem;
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  :root { --section-pd: 56px 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 14px 28px; font-size: 0.72rem; }
  .page-hero { padding: 130px 16px 80px; }
}

/* ====================================================
   THEME VARIANTS
   Usage: add class to <body>  →  theme-dark / theme-gradient / theme-light
==================================================== */

/* ---- Theme Dark (default — no overrides needed) ---- */

/* ---- Theme Gradient: dark to warm ---- */
body.theme-gradient .hero {
  background: linear-gradient(155deg,
    #0D0B08 0%,
    #2A1F14 38%,
    #4A3526 62%,
    #8B6942 80%,
    var(--beige) 100%
  );
}
body.theme-gradient .hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(10,8,5,0.55) 0%,
    rgba(26,18,10,0.4) 50%,
    rgba(242,235,224,0.15) 100%
  );
}
body.theme-gradient .page-hero {
  background: linear-gradient(155deg,
    #0D0B08 0%,
    #1E1510 40%,
    #2E2018 65%,
    #3E2A1A 100%
  );
}

/* ---- Theme Light: white / ivory / beige luxury ---- */
body.theme-light .hero {
  background: var(--ivory);
}
body.theme-light .hero__canvas { opacity: 0.15; }
body.theme-light .hero__overlay {
  background: linear-gradient(
    160deg,
    rgba(250,249,244,0.7) 0%,
    rgba(242,235,224,0.5) 100%
  );
}
body.theme-light .hero__eyebrow { color: var(--gold); }
body.theme-light .hero__title { color: var(--text-dark); }
body.theme-light .hero__title em { color: var(--gold); }
body.theme-light .hero__subtitle { color: var(--text-mid); }
body.theme-light .hero__scroll span { color: rgba(0,0,0,0.3); }
body.theme-light .hero__scroll-line { background: linear-gradient(to bottom, rgba(201,169,77,0.5), transparent); }

/* page-hero light overrides */
body.theme-light .page-hero {
  background: var(--ivory);
}
body.theme-light .page-hero .page-hero__title { color: var(--text-dark); }
body.theme-light .page-hero .page-hero__sub { color: var(--text-mid); }
body.theme-light .page-hero::after {
  background: linear-gradient(to bottom, transparent, rgba(201,169,77,0.3));
}

/* nav light override — applies on hero and all inner pages */
body.theme-light .nav.nav-dark:not(.scrolled) {
  background: rgba(250,249,244,0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
body.theme-light .nav.nav-dark:not(.scrolled) .nav__logo { color: var(--text-dark); }
body.theme-light .nav.nav-dark:not(.scrolled) .nav__link { color: var(--text-mid); }
body.theme-light .nav.nav-dark:not(.scrolled) .nav__link:hover { color: var(--gold); }
body.theme-light .nav.nav-dark:not(.scrolled) .nav__lang {
  color: var(--text-light);
  border-color: var(--beige-dark);
}
body.theme-light .nav.nav-dark:not(.scrolled) .nav__hamburger span { background: var(--text-dark); }
body.theme-light .btn-outline-white {
  border-color: rgba(26,26,24,0.3);
  color: var(--text-dark);
}
body.theme-light .btn-outline-white::before { background: rgba(26,26,24,0.07); }
body.theme-light .btn-outline-white:hover { color: var(--text-dark); }


/* ====================================================
   TESTIMONIALS / VOICE
==================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-en);
  font-size: 5.5rem;
  font-weight: 400;
  color: var(--gold-pale);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.testimonial-card:hover::after { width: 100%; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2;
  padding-top: 28px;
  margin-bottom: 24px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-dot {
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.testimonial-author {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}
.testimonial-service {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   WORKS / PORTFOLIO
==================================================== */
.works-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}

/* Carousel (one project per view, navigated by arrows / swipe / keyboard) */
.works-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.works-viewport { overflow: hidden; }
.works-viewport:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}
.works-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.works-track > .work-card {
  flex: 0 0 100%;
  width: 100%;
}

.works-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
}
.works-controls[hidden] { display: none; }

.works-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 1.7rem;
  line-height: 1;
  transition: var(--trans);
}
.works-arrow span { position: relative; top: -2px; }
.works-arrow:hover:not(:disabled) { background: var(--gold); color: var(--white); }
.works-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.works-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.works-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.works-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: var(--trans);
}
.works-dot:hover { background: var(--gold-pale); }
.works-dot.is-active { background: var(--gold); }

.work-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}
.work-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.work-card:hover::after { width: 100%; }
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
}

/* Placeholder image area — shown until a real screenshot is added */
.work-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--beige) 55%, var(--beige-mid) 100%);
  border-bottom: 1px solid var(--beige-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.work-image__frame {
  width: 56px;
  height: 44px;
  border: 1px solid var(--gold);
  position: relative;
  opacity: 0.75;
}
.work-image__frame::before {
  content: '';
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.work-image__frame::after {
  content: '';
  position: absolute;
  left: 7px; bottom: 0;
  width: 30px; height: 16px;
  background: var(--gold);
  opacity: 0.5;
  clip-path: polygon(0 100%, 45% 22%, 100% 100%);
}
.work-image__label {
  font-family: var(--ff-en);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-card__body { padding: 44px 40px 40px; }
.work-card__cat {
  font-family: var(--ff-en);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work-card__title {
  font-family: var(--ff-jp);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.work-tags .tag { margin: 0; }
.work-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 36px;
}
.work-card__subhead {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige-mid);
}
.work-card__actions { margin-top: 36px; }

/* Disabled button (e.g. live URL not published yet) */
.btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .works-list { gap: 40px; }
  .work-card__body { padding: 32px 24px; }
  .work-image__frame { width: 46px; height: 36px; }
  .work-image__label { font-size: 0.85rem; }
  .works-controls { margin-top: 32px; gap: 20px; }
  .works-arrow { width: 44px; height: 44px; font-size: 1.5rem; }
  /* Drop forced line breaks in the Works intro so text flows naturally on phones */
  .page-hero__sub .hide-sp { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .works-track { transition: none; }
}

/* ====================================================
   AI導線HP（導線設計HP・LP制作）専用パーツ
   既存クラスには影響しないよう ad- 接頭辞で分離
==================================================== */

/* ---- Home Hero（コピー＋PCモック図解の2カラム） ---- */
.ad-hero {
  background: var(--black);
  color: var(--white);
  padding: 168px 24px 96px;
  position: relative;
  overflow: hidden;
}
.ad-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,77,0.4));
}
.ad-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.ad-hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.ad-hero__title {
  font-family: var(--ff-jp);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.ad-hero__title em { font-style: normal; color: var(--gold-light); }
.ad-hero__sub {
  font-size: 0.98rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
}
.ad-hero__diff {
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  border-left: 1px solid rgba(201,169,77,0.5);
  margin-bottom: 38px;
}
.ad-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- PCモック風の図解 ---- */
.ad-mock {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,77,0.28);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  overflow: hidden;
}
.ad-mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ad-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.ad-mock__url {
  margin-left: 10px;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}
.ad-mock__screen { padding: 30px 28px 34px; }
.ad-mock__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ad-mock__h {
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(226,200,122,0.85), rgba(201,169,77,0.25));
  margin-bottom: 10px;
}
.ad-mock__h--w80 { width: 80%; }
.ad-mock__h--w55 { width: 55%; }
.ad-mock__line {
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 9px;
}
.ad-mock__line--w90 { width: 90%; }
.ad-mock__line--w70 { width: 70%; }
.ad-mock__cta {
  margin-top: 20px;
  height: 34px;
  border-radius: 5px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}
.ad-mock__tags { display: flex; gap: 8px; margin-top: 18px; }
.ad-mock__tag {
  flex: 1;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ---- 導線図（SNS → HP/LP → LINE/フォーム → 相談/申込み） ---- */
.ad-funnel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
.ad-funnel__step {
  flex: 1 1 0;
  min-width: 150px;
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--beige-mid);
  background: var(--white);
}
.ad-funnel__step--accent { border-color: var(--gold); box-shadow: 0 12px 30px rgba(201,169,77,0.12); }
.ad-funnel__num {
  font-family: var(--ff-en);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 10px;
}
.ad-funnel__label { font-size: 0.98rem; font-weight: 500; color: var(--text-dark); line-height: 1.6; margin-bottom: 6px; }
.ad-funnel__note { font-size: 0.76rem; color: var(--text-light); line-height: 1.7; }
.ad-funnel__arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0 6px;
}
.ad-funnel__arrow span { transform: rotate(0deg); }

/* 導線図（dark背景用） */
.ad-funnel--dark .ad-funnel__step {
  background: var(--black-mid);
  border-color: rgba(255,255,255,0.12);
}
.ad-funnel--dark .ad-funnel__step--accent { border-color: rgba(201,169,77,0.6); }
.ad-funnel--dark .ad-funnel__label { color: var(--white); }
.ad-funnel--dark .ad-funnel__note { color: rgba(255,255,255,0.5); }

/* ---- 価格比較カード（LP型 / HP型） ---- */
.ad-price {
  border: 1px solid var(--beige-mid);
  background: var(--white);
  padding: 44px 38px 40px;
  display: flex;
  flex-direction: column;
}
.ad-price--accent { border-top: 3px solid var(--gold); }
.ad-price__en {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ad-price__name { font-size: 1.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.ad-price__lead { font-size: 0.86rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 22px; }
.ad-price__regular { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2px; }
.ad-price__regular s { color: var(--text-light); }
.ad-price__monitor-label {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 4px;
}
.ad-price__amount {
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.ad-price__amount small { font-size: 0.9rem; color: var(--text-light); }
.ad-price .btn { margin-top: auto; }

/* ---- モニター条件カード ---- */
.ad-cond {
  border: 1px solid rgba(201,169,77,0.3);
  padding: 26px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(201,169,77,0.03);
}
.ad-cond__mark { color: var(--gold); flex-shrink: 0; font-size: 0.95rem; line-height: 1.7; }
.ad-cond__text { font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); }

/* ---- 含む / 含まない 2カラム ---- */
.ad-inout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ad-inout__col { padding: 32px 30px; border: 1px solid var(--beige-mid); }
.ad-inout__col--in { border-top: 3px solid var(--gold); }
.ad-inout__head {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige-mid);
}
.ad-inout__li { font-size: 0.86rem; line-height: 1.9; color: var(--text-mid); padding-left: 20px; position: relative; margin-bottom: 8px; }
.ad-inout__li::before { content: ''; position: absolute; left: 4px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.ad-inout__col--out .ad-inout__li::before { background: var(--beige-dark); }

/* ---- 単品・追加メニューの行 ---- */
.ad-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--beige-dark);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.ad-menu-row span {
  font-family: var(--ff-en);
  font-size: 1.02rem;
  color: var(--text-dark);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ad-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .ad-hero { padding: 140px 24px 72px; }
  .ad-inout { grid-template-columns: 1fr; }
}
.ad-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
@media (max-width: 640px) {
  .ad-menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ad-funnel { flex-direction: column; }
  .ad-funnel__step { min-width: 0; }
  .ad-funnel__arrow { padding: 4px 0; }
  .ad-funnel__arrow span { display: inline-block; transform: rotate(90deg); }
}

/* ============================================================
   VISUAL SYSTEM V2 — 高級感の設計（黒・白・ゴールド・生成り）
   参考の「見た目の構造」を反映：大きなFV / 要所の黒背景 /
   大見出し＋短文＋余白 / セクションごとの主役（図解・写真・数字）
   ※ コピー・価格は変更しない。デザイン（余白・タイポ・装飾）のみ。
   ============================================================ */

/* ---- セクション余白を広げ、静けさで見せる ---- */
:root { --section-pd: 128px 24px; }
.section { position: relative; overflow: hidden; }

/* ---- 大きめアイブロウ（英字＋金の線） ---- */
.v-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-sans);
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.v-eyebrow::before, .v-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: currentColor; opacity: 0.55;
}
.section-header--center .v-eyebrow { justify-content: center; }

/* ---- 巨大な薄い装飾数字／英字（エディトリアルな余白演出） ---- */
.v-ghost {
  position: absolute; pointer-events: none; user-select: none;
  font-family: var(--ff-en); font-weight: 300; line-height: 0.8;
  font-size: clamp(7rem, 20vw, 18rem);
  color: var(--beige); opacity: 0.6; z-index: 0;
}
.section--dark .v-ghost, .ad-hero .v-ghost { color: rgba(255,255,255,0.04); opacity: 1; }
.v-ghost--tr { top: 40px; right: -10px; }
.v-ghost--tl { top: 40px; left: -10px; }
.v-ghost--bl { bottom: 20px; left: -10px; }
.section > .container, .ad-hero__inner { position: relative; z-index: 1; }

/* ---- 大見出し ---- */
.v-display {
  font-family: var(--ff-jp); font-weight: 300;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.5; letter-spacing: 0.03em;
  color: var(--text-dark);
}
.section--dark .v-display { color: var(--white); }
.v-display em { font-style: normal; color: var(--gold); }

/* ---- 黒背景の見せ場（ステートメント） ---- */
.v-statement {
  background: var(--black); color: var(--white);
  padding: clamp(96px, 14vw, 168px) 24px; text-align: center; position: relative; overflow: hidden;
}
.v-statement__inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.v-statement__lead {
  font-family: var(--ff-jp); font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.75; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 32px;
}
.v-statement__lead em { font-style: normal; color: var(--gold-light); }
.v-statement__sub { font-size: 0.98rem; line-height: 2.2; color: rgba(255,255,255,0.6); }
.v-statement::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,169,77,0.10), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(201,169,77,0.06), transparent 70%);
}
.v-rule { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 40px; opacity: 0.8; }

/* ---- FVの強化：全画面級・金のリング装飾 ---- */
.ad-hero { padding: clamp(160px, 20vh, 220px) 24px clamp(100px, 12vh, 140px); min-height: 100vh; display: flex; align-items: center; }
.ad-hero__inner { width: 100%; gap: 72px; }
.ad-hero__title { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.45; margin-bottom: 34px; }
.ad-hero::before {
  content: ''; position: absolute; top: -12%; right: -8%;
  width: 620px; height: 620px; border-radius: 50%;
  border: 1px solid rgba(201,169,77,0.14);
  box-shadow: inset 0 0 120px rgba(201,169,77,0.05);
}
.ad-hero__visual { position: relative; }
.ad-hero__visual::before {
  content: ''; position: absolute; inset: -28px -28px auto auto;
  width: 62%; height: 62%; border: 1px solid rgba(201,169,77,0.28); border-radius: 12px;
  z-index: 0;
}
.ad-hero .ad-mock { position: relative; z-index: 1; }

/* ---- 図解・写真・テキストの2カラム見せ場 ---- */
.v-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; max-width: var(--max-w); margin: 0 auto;
}
.v-split--reverse .v-split__visual { order: 2; }
.v-split__text .v-display { margin-bottom: 24px; }

/* ---- CSS製 Webモック（実績画像がない場合の上質プレースホルダー） ---- */
.v-webmock {
  border-radius: 8px; overflow: hidden; border: 1px solid var(--beige-mid);
  background: var(--white); box-shadow: 0 24px 60px rgba(20,16,8,0.10);
}
.v-webmock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--ivory); border-bottom: 1px solid var(--beige-mid); }
.v-webmock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--beige-dark); }
.v-webmock__url { margin-left: 10px; font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--text-light); }
.v-webmock__screen { padding: 30px 30px 36px; }
.v-webmock__nav { display: flex; gap: 14px; margin-bottom: 26px; }
.v-webmock__nav span { width: 34px; height: 6px; border-radius: 3px; background: var(--beige-mid); }
.v-webmock__nav span:first-child { width: 54px; background: var(--gold); }
.v-webmock__hero { background: linear-gradient(135deg, var(--black-soft), var(--black-mid)); border-radius: 6px; padding: 28px 26px; margin-bottom: 22px; }
.v-webmock__h { height: 13px; border-radius: 3px; background: linear-gradient(90deg, var(--gold-light), rgba(201,169,77,0.3)); margin-bottom: 11px; }
.v-webmock__h.w70 { width: 70%; } .v-webmock__h.w50 { width: 50%; }
.v-webmock__l { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.16); margin-bottom: 8px; }
.v-webmock__l.w90 { width: 90%; } .v-webmock__l.w60 { width: 60%; }
.v-webmock__btn { margin-top: 18px; width: 130px; height: 30px; border-radius: 5px; background: var(--gold); }
.v-webmock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.v-webmock__card { height: 62px; border-radius: 5px; background: var(--ivory); border: 1px solid var(--beige-mid); }
.v-webmock__card::after { content: ''; display: block; width: 40%; height: 6px; border-radius: 3px; background: var(--beige-dark); margin: 14px 0 0 12px; }

/* ---- タイムライン（制作の流れ）縦の連結ステップ ---- */
.v-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.v-timeline::before { content: ''; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(201,169,77,0.15)); }
.v-tl-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 40px; }
.v-tl-item:last-child { padding-bottom: 0; }
.v-tl-node {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ivory);
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-en); font-size: 1.1rem; color: var(--gold); position: relative; z-index: 1;
}
.section--dark .v-tl-node, .v-timeline--dark .v-tl-node { background: var(--black-soft); }
.v-tl-title { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; margin-top: 12px; }
.section--dark .v-tl-title, .v-timeline--dark .v-tl-title { color: var(--white); }
.v-tl-text { font-size: 0.9rem; line-height: 1.95; color: var(--text-mid); }
.section--dark .v-tl-text, .v-timeline--dark .v-tl-text { color: rgba(255,255,255,0.6); }
.v-timeline--dark::before { opacity: 0.8; }

/* ---- 条件カード（チェックリストではなくカード＋金の丸アイコン） ---- */
.v-checkgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.v-check {
  background: var(--white); border: 1px solid var(--beige-mid);
  border-top: 3px solid var(--gold); padding: 30px 28px;
  display: flex; gap: 18px; align-items: flex-start; transition: transform var(--trans), box-shadow var(--trans);
}
.v-check:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,16,8,0.10); }
.v-check__icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.v-check__text { font-size: 0.92rem; line-height: 1.85; color: var(--text-mid); padding-top: 8px; }

/* ---- プレミアム価格カード（視覚的な強弱） ---- */
.ad-price { padding: 52px 44px 46px; transition: transform var(--trans), box-shadow var(--trans); position: relative; }
.ad-price:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(20,16,8,0.12); }
.ad-price--feature { background: var(--black); color: var(--white); border-color: var(--black); }
.ad-price--feature .ad-price__name { color: var(--white); }
.ad-price--feature .ad-price__lead { color: rgba(255,255,255,0.65); }
.ad-price--feature .ad-price__regular, .ad-price--feature .ad-price__regular s { color: rgba(255,255,255,0.45); }
.ad-price--feature .ad-price__amount { color: var(--gold-light); }
.ad-price--feature .ad-price__amount small { color: rgba(255,255,255,0.5); }
.ad-price__tag {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--ff-sans); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 5px 12px; border-radius: 2px;
}
.ad-price__amount { font-size: clamp(2.2rem, 4vw, 2.8rem); }

/* ---- プロフィール写真の額装（金のオフセット枠） ---- */
.v-photo { position: relative; max-width: 420px; }
.v-photo::before { content: ''; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid var(--gold); z-index: 0; }
.v-photo img { position: relative; z-index: 1; width: 100%; filter: grayscale(0.08) contrast(1.02); }

/* ---- 装飾ディバイダ ---- */
.v-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 auto; }
.v-divider::before, .v-divider::after { content: ''; width: 60px; height: 1px; background: var(--beige-dark); }
.v-divider span { font-family: var(--ff-en); color: var(--gold); font-size: 0.9rem; letter-spacing: 0.2em; }

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  :root { --section-pd: 88px 24px; }
  .v-split { grid-template-columns: 1fr; gap: 40px; }
  .v-split--reverse .v-split__visual { order: 0; }
  .ad-hero::before { width: 360px; height: 360px; top: -6%; right: -20%; }
  .v-checkgrid { grid-template-columns: 1fr; }
  .v-webmock__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pd: 72px 20px; }
  .ad-hero { min-height: auto; }
  .v-ghost { font-size: clamp(5rem, 26vw, 9rem); }
  .v-tl-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .v-timeline::before { left: 21px; }
  .v-tl-node { width: 44px; height: 44px; font-size: 0.95rem; }
  .ad-price { padding: 40px 28px; }
}

/* ---- 実績スクショのブラウザフレーム（上質な額装） ---- */
.v-frame { border-radius: 8px 8px 0 0; overflow: hidden; border: 1px solid var(--beige-mid); box-shadow: 0 22px 50px rgba(20,16,8,0.12); }
.v-frame__bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px; background: var(--ivory); border-bottom: 1px solid var(--beige-mid); }
.v-frame__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--beige-dark); }
.v-frame__bar span:nth-child(1) { background: #d8a49a; } .v-frame__bar span:nth-child(2) { background: #ddc98f; } .v-frame__bar span:nth-child(3) { background: #a9c1a0; }
.v-frame__url { margin-left: 6px; white-space: nowrap; font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--text-light); }
.v-frame .work-image, .v-frame img { display: block; width: 100%; }

/* v-frame をカード内で使う場合はカード側の枠に馴染ませる */
.work-card .v-frame { border: none; border-radius: 0; box-shadow: none; }
.work-card .v-frame .work-image { border-bottom: 1px solid var(--beige-mid); }

/* ---- Monitorヒーローの価格比較ビジュアル ---- */
.v-pricecompare {
  background: var(--black-mid); border: 1px solid rgba(201,169,77,0.3); border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45); padding: 40px 38px; position: relative; z-index: 1;
}
.v-pricecompare__row { display: grid; grid-template-columns: 1fr auto; row-gap: 4px; column-gap: 16px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v-pricecompare__row:first-child { padding-top: 0; }
.v-pricecompare__name { grid-row: span 2; align-self: center; font-family: var(--ff-jp); font-size: 1.05rem; color: var(--white); }
.v-pricecompare__old { font-family: var(--ff-en); font-size: 0.95rem; color: rgba(255,255,255,0.4); text-decoration: line-through; text-align: right; }
.v-pricecompare__new { font-family: var(--ff-en); font-size: 1.9rem; font-weight: 400; color: var(--gold-light); text-align: right; line-height: 1; }
.v-pricecompare__note { margin-top: 20px; text-align: center; font-family: var(--ff-sans); font-size: 0.66rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); }

/* ---- 見出しラベルの一括上質化（全ページ共通・エディトリアル） ---- */
.section-label { font-family: var(--ff-sans); font-size: 0.66rem; letter-spacing: 0.34em; margin-bottom: 22px; }
.section-header--center .section-label { display: inline-flex; align-items: center; gap: 14px; }
.section-header--center .section-label::before,
.section-header--center .section-label::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.55; }
/* section-title を少し軽く・上品に */
.section-title { font-weight: 300; letter-spacing: 0.02em; }

/* モバイル：ヒーローの装飾オフセット枠は隠し、モックを枠内に収める */
@media (max-width: 768px) {
  .ad-hero__visual::before { display: none; }
  .ad-hero__visual { max-width: 100%; overflow: hidden; }
  .ad-mock, .v-pricecompare { max-width: 100%; }
}
/* 横スクロール防止：各ヒーロー/セクションの overflow:hidden で装飾のはみ出しをクリップ済み。
   html/body への overflow-x:hidden は position:sticky を壊すため使わない。 */

/* モバイル微調整：大見出し・価格比較カードを枠内に収める */
@media (max-width: 768px) {
  .v-display { font-size: clamp(1.5rem, 6vw, 1.95rem); line-height: 1.55; }
  .v-statement__lead { font-size: clamp(1.4rem, 6.4vw, 1.9rem); }
  .v-pricecompare { padding: 30px 22px; }
  .v-pricecompare__name { font-size: 0.95rem; }
  .v-pricecompare__new { font-size: 1.5rem; }
  .v-pricecompare__old { font-size: 0.85rem; }
  .ad-hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

/* ============================================================
   STORY COMPOSITION — INDEX型ナビ ＋ ストーリー型スクロール
   参考の「構成」を置き換え（コピー・コード・画像は模倣しない）
   ============================================================ */

/* ---- INDEX型 プロセスナビ（番号＋項目名の目次） ---- */
.v-index { max-width: 940px; margin: 0 auto; border-top: 1px solid var(--beige-dark); }
.v-index__item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  padding: 34px 10px; border-bottom: 1px solid var(--beige-dark);
  transition: background var(--trans), padding var(--trans);
}
.v-index__item:hover { background: rgba(201,169,77,0.05); padding-left: 24px; }
.v-index__no { font-family: var(--ff-en); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 300; color: var(--gold); line-height: 1; min-width: 58px; }
.v-index__body { display: flex; flex-direction: column; gap: 6px; }
.v-index__name { font-family: var(--ff-jp); font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 400; color: var(--text-dark); letter-spacing: 0.02em; }
.v-index__en { font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-light); }
.v-index__arrow { color: var(--gold); font-size: 1.15rem; opacity: 0; transform: translateX(-8px); transition: var(--trans); }
.v-index__item:hover .v-index__arrow { opacity: 1; transform: translateX(0); }

/* ---- ストーリー行（大きな番号＋短文＋ビジュアルの2カラム） ---- */
.v-story__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; position: relative; z-index: 1; }
.v-story--rev .v-story__viz { order: 2; }
.v-story__eyebrow { font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.v-story__no { font-family: var(--ff-en); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.v-story__name { font-family: var(--ff-jp); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.5; margin-bottom: 22px; letter-spacing: 0.02em; color: var(--text-dark); }
.v-story__text { font-size: 0.98rem; line-height: 2.15; color: var(--text-mid); max-width: 460px; }
.section--dark .v-story__name { color: var(--white); }
.section--dark .v-story__text { color: rgba(255,255,255,0.66); }

/* ---- ビジュアル部品（統一トーンのCSS図解） ---- */
.viz { border-radius: 12px; padding: 38px 34px; position: relative; }
.viz--light { background: var(--white); border: 1px solid var(--beige-mid); box-shadow: 0 26px 60px rgba(20,16,8,0.09); }
.viz--dark { background: var(--black-mid); border: 1px solid rgba(201,169,77,0.25); box-shadow: 0 26px 60px rgba(0,0,0,0.4); }
.viz__cap { font-family: var(--ff-sans); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.viz-bar { height: 8px; border-radius: 4px; background: var(--beige-mid); margin-bottom: 12px; }
.viz--dark .viz-bar { background: rgba(255,255,255,0.14); }
.viz-bar.gold { height: 12px; background: linear-gradient(90deg, var(--gold-light), rgba(201,169,77,0.35)); }
/* chat（ヒアリング） */
.viz-bubble { max-width: 78%; padding: 14px 18px; border-radius: 14px; margin-bottom: 14px; }
.viz-bubble .l { height: 7px; border-radius: 4px; background: currentColor; opacity: 0.5; margin-bottom: 7px; }
.viz-bubble .l:last-child { margin-bottom: 0; width: 70%; }
.viz-bubble--them { background: var(--ivory); border: 1px solid var(--beige-mid); color: var(--text-light); }
.viz-bubble--me { background: rgba(201,169,77,0.14); border: 1px solid var(--gold); color: var(--gold); margin-left: auto; }
/* wireframe（構成設計） */
.viz-wire { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; }
.viz-wire__side { display: flex; flex-direction: column; gap: 10px; }
.viz-wire__block { height: 26px; border-radius: 5px; background: var(--ivory); border: 1px solid var(--beige-mid); }
/* checklist（確認・修正） */
.viz-check { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--beige-mid); }
.viz-check:last-child { border-bottom: none; }
.viz-check__mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.viz-check__line { flex: 1; height: 8px; border-radius: 4px; background: var(--beige-mid); }
/* chart（公開・サポート） */
.viz-chart { display: flex; align-items: flex-end; gap: 12px; height: 130px; }
.viz-chart span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, rgba(201,169,77,0.25), var(--gold)); }

@media (max-width: 900px) {
  .v-story__inner { grid-template-columns: 1fr; gap: 36px; }
  .v-story--rev .v-story__viz { order: 0; }
}
@media (max-width: 768px) {
  .v-index__item { grid-template-columns: auto 1fr auto; gap: 18px; padding: 26px 6px; }
  .v-index__no { min-width: 44px; }
  .viz { padding: 30px 24px; }
}

/* ============================================================
   OPENING — 「言葉が集まり、導線になる」ファーストビュー演出
   静かな動き / 1〜2.5秒 / prefers-reduced-motion 対応
   ============================================================ */

/* リングの装飾は弱いので、静かなゴールドの微光に置き換え */
.ad-hero::before {
  content: ''; position: absolute; top: -12%; right: -8%;
  width: 620px; height: 620px; border-radius: 50%; border: none;
  background: radial-gradient(circle, rgba(201,169,77,0.10), transparent 62%);
  filter: blur(8px); box-shadow: none;
}
/* モック用のオフセット枠は今回のFVでは使わない */
.ad-hero__visual::before { display: none; }
.ad-hero--opening .ad-hero__inner { align-items: center; }

/* ---- タイプライター（h1は実テキストとしてDOMに存在＝SEO/AT可） ---- */
.ad-hero__title[data-typewriter] .tw-line { display: block; min-height: 1.42em; }
.tw-line--accent { color: var(--gold-light); }
.ad-hero__title.tw-run .tw-line.tw-active::after {
  content: ''; display: inline-block; width: 2px; height: 0.92em; margin-left: 5px;
  background: var(--gold); vertical-align: -0.08em;
  animation: twCaret 0.8s steps(1, end) infinite;
}
@keyframes twCaret { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ---- サブ・CTA・スクロールの静かな登場 ---- */
.ad-hero__reveal { opacity: 0; transform: translateY(14px); animation: heroReveal 0.7s var(--ease-out) forwards; }
.ad-hero__sub.ad-hero__reveal { animation-delay: 1.35s; }
.ad-hero__reveal--cta { animation-delay: 1.7s; }
@keyframes heroReveal { to { opacity: 1; transform: none; } }

/* ---- 右側：ゴールドの細線が導線を描く ---- */
.fnl { position: relative; max-width: 380px; margin: 0 auto; padding: 6px 0; }
.fnl__line {
  position: absolute; left: 27px; top: 30px; bottom: 30px; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,77,0.35));
  transform: scaleY(0); transform-origin: top;
  animation: fnlDraw 1.25s var(--ease-out) 0.45s forwards;
}
.fnl__stage {
  position: relative; display: grid; grid-template-columns: 54px 1fr; align-items: center;
  gap: 22px; padding: 20px 0; opacity: 0; transform: translateY(12px);
  animation: fnlFade 0.6s var(--ease-out) forwards;
}
.fnl__stage:nth-child(2) { animation-delay: 0.5s; }
.fnl__stage:nth-child(3) { animation-delay: 0.8s; }
.fnl__stage:nth-child(4) { animation-delay: 1.1s; }
.fnl__stage:nth-child(5) { animation-delay: 1.4s; }
.fnl__dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--gold); background: var(--black); justify-self: center; position: relative; z-index: 1; }
.fnl__dot--accent { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,77,0.12); }
.fnl__label { font-family: var(--ff-jp); color: var(--ivory); font-size: clamp(0.98rem, 1.4vw, 1.18rem); letter-spacing: 0.05em; }
@keyframes fnlDraw { to { transform: scaleY(1); } }
@keyframes fnlFade { to { opacity: 1; transform: none; } }

/* ---- 控えめな Scroll インジケーター ---- */
.ad-hero__scroll {
  position: absolute; left: 0; right: 0; bottom: 30px; margin: 0 auto; width: max-content;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); opacity: 0; transform: translateY(14px);
  animation: heroReveal 0.8s ease 2.0s forwards;
}
.ad-hero__scroll-label { font-family: var(--ff-sans); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; }
.ad-hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, rgba(201,169,77,0.55), transparent); position: relative; overflow: hidden; }
.ad-hero__scroll-line::after { content: ''; position: absolute; top: -55%; left: 0; width: 1px; height: 55%; background: var(--gold); animation: scrollGlide 2.6s var(--ease-in-out) infinite; }
@keyframes scrollGlide { 0% { top: -55%; } 60%, 100% { top: 100%; } }

/* ---- reduced-motion：全て最終状態で静止 ---- */
@media (prefers-reduced-motion: reduce) {
  .ad-hero__reveal, .ad-hero__scroll { opacity: 1 !important; transform: none !important; animation: none !important; }
  .fnl__line { transform: scaleY(1); animation: none; }
  .fnl__stage { opacity: 1; transform: none; animation: none; }
  .ad-hero__title.tw-run .tw-line.tw-active::after { display: none; }
  .ad-hero__scroll-line::after { animation: none; }
}

/* ---- モバイル ---- */
@media (max-width: 768px) {
  .fnl { max-width: 320px; }
  .fnl__stage { padding: 16px 0; gap: 16px; }
  .ad-hero__scroll { bottom: 18px; }
}

/* ============================================================
   HOME オープニング演出（Homeのみ）
   - Funnel背景文字：画面外の左下から定位置へ "ストンプ"
   - 右上ライト球体：画面外の右上から定位置へ "ストンプ"
   - 「行動を成果へ。」/「...into results.」：goldImpactPop で "パン"
   ============================================================ */

/* ---- Funnel 背景文字（Homeのみ・.v-ghost--funnel を付けた要素） ---- */
.v-ghost.v-ghost--funnel {
  color: var(--gold);
  z-index: 0;
  text-shadow: 0 0 42px rgba(201,169,77,0.35), 0 0 14px rgba(201,169,77,0.22);
  opacity: 0.12;
  will-change: transform, opacity, filter;
  animation: funnelStompIn 1.5s cubic-bezier(0.18, 0.7, 0.16, 1) both;
}
/* 光は ::after で作り、文字と同じ方向から一緒に入ってくる（親のtransformに追従） */
.v-ghost.v-ghost--funnel::after {
  content: '';
  position: absolute;
  left: 8%; top: 22%;
  width: 78%; height: 66%;
  background: radial-gradient(closest-side, rgba(201,169,77,0.30), transparent 72%);
  filter: blur(26px);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform, opacity;
  animation: funnelGlowStomp 1.6s cubic-bezier(0.18, 0.7, 0.16, 1) 0.05s both;
}

/* 画面外の左下 → 斜め上へ勢いよく → 定位置で少しオーバーシュートして "ドン" */
@keyframes funnelStompIn {
  0%   { transform: translate3d(-58vw, 42vh, 0) scale(0.90); opacity: 0; filter: blur(8px); }
  60%  { opacity: 0.5; filter: blur(1px); }
  78%  { transform: translate3d(0, 0, 0) scale(1.06); opacity: 0.17; filter: blur(0); }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.12; filter: blur(0); }
}
/* 光は最後に少し広がって落ち着く */
@keyframes funnelGlowStomp {
  0%   { opacity: 0; transform: scale(0.72); }
  70%  { opacity: 0.95; transform: scale(1.05); }
  100% { opacity: 0.6; transform: scale(1.10); }
}

/* ---- 「行動を成果へ。」/「...into results.」：goldImpactPop（パン） ---- */
.tw-line--pop { display: block; }
.tw-line--pop.is-pop { animation: goldImpactPop 0.7s var(--ease-out) both; }
@keyframes goldImpactPop {
  0%   { opacity: 0; transform: scale(0.78) translateY(10px); filter: blur(6px); }
  65%  { opacity: 1; transform: scale(1.06) translateY(0); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ---- 右上ライト球体システム（Homeのみ：光の帯→球体→到着バースト） ---- */
/* Homeでは ::before の静的グローは使わず、専用のorb要素を使う */
.ad-hero--home::before { display: none; }

.hero-orb-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
/* 光の帯：画面外側から大きく斜めに流れ込み、右上へ吸い込まれるように消える（≠右上からのスライド） */
.hero-orb-trail {
  position: absolute; top: 1%; right: 2%;
  width: 1020px; height: 180px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(226,200,122,0.52), rgba(201,169,77,0.16) 45%, transparent 70%);
  filter: blur(20px); opacity: 0; transform-origin: 84% 44%;
  will-change: transform, opacity;
  animation: orbTrailIn 1.15s cubic-bezier(0.22, 0.68, 0.2, 1) both;
}
/* 球体：帯が運んだ光が右上で「凝縮」して球体になる。大きく拡散した光→引き締まった球体→少し行き過ぎて戻る */
.hero-orb {
  position: absolute; top: 4%; right: 6%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(226,200,122,0.52), rgba(201,169,77,0.18) 42%, transparent 70%);
  opacity: 0; will-change: transform, opacity, filter;
  animation: orbIn 1.5s cubic-bezier(0.16, 0.7, 0.16, 1) 0.28s both;
}
/* 到着バースト：淡いゴールドの光が一瞬だけ広がる */
.hero-orb-burst {
  position: absolute; top: 4%; right: 6%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, transparent 32%, rgba(226,200,122,0.30) 47%, transparent 63%);
  opacity: 0; will-change: transform, opacity;
  animation: orbBurst 0.72s ease-out 0.98s both;
}

/* 画面外側（左下方向）から大きく斜めに入り、右上の球体位置へ収束して吸い込まれる */
@keyframes orbTrailIn {
  0%   { opacity: 0; transform: translate3d(-46vw, 42vh, 0) rotate(-32deg) scaleX(1.5) scaleY(0.7); }
  18%  { opacity: 0.95; }
  50%  { opacity: 0.7; transform: translate3d(-16vw, 14vh, 0) rotate(-32deg) scaleX(1.05) scaleY(0.82); }
  100% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-32deg) scaleX(0.1) scaleY(0.42); }
}
/* 位置は右上のまま。大きく拡散した光が凝縮（scale/blur が縮む）→少しオーバーシュート→定位置 */
@keyframes orbIn {
  0%   { opacity: 0; transform: translate3d(0, 0, 0) scale(1.95); filter: blur(36px) brightness(1.5); }
  42%  { opacity: 0.85; filter: blur(16px) brightness(1.3); }
  68%  { transform: translate3d(-1.4vw, 1.4vh, 0) scale(0.9); filter: blur(3px) brightness(1.15); }
  84%  { transform: translate3d(0.6vw, -0.6vh, 0) scale(1.05); filter: blur(5px) brightness(1.05); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(6px) brightness(1); }
}
@keyframes orbBurst {
  0%   { opacity: 0; transform: scale(0.42); }
  40%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.85); }
}

@media (max-width: 768px) {
  .hero-orb { width: 200px; height: 200px; top: 3%; right: 2%; }
  .hero-orb-burst { width: 200px; height: 200px; top: 3%; right: 2%; }
  .hero-orb-trail { width: 380px; height: 130px; }
}

/* ---- reduced-motion：ストンプ／パンを無効化し、最初から定位置表示 ---- */
@media (prefers-reduced-motion: reduce) {
  .v-ghost.v-ghost--funnel { animation: none; transform: none; opacity: 0.12; filter: none; }
  .v-ghost.v-ghost--funnel::after { animation: none; opacity: 0.5; transform: none; }
  .hero-orb { animation: none; opacity: 1; transform: none; filter: blur(6px); }
  .hero-orb-trail, .hero-orb-burst { animation: none; opacity: 0; }
  .tw-line--pop.is-pop { animation: none; }
  .tw-line--pop { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HOME ファーストビュー背景画像（Homeのみ・演出の背面）
   黒×ゴールドに馴染ませるため、暗いグラデーションで減光
   ============================================================ */
.ad-hero--home .ad-hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.ad-hero--home .ad-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.92) contrast(1.02);
}
/* 暗いオーバーレイ：左（コピー側）と上下を強めに落とし、右中央で画像を少し見せる */
.ad-hero--home .ad-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.80) 44%, rgba(10,10,10,0.52) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.18) 32%, rgba(10,10,10,0.72) 100%),
    radial-gradient(120% 90% at 82% 30%, rgba(201,169,77,0.06), transparent 60%);
}
@media (max-width: 768px) {
  /* スマホは縦長になるため、テキスト可読性を優先してさらに減光 */
  .ad-hero--home .ad-hero__bg::after {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.5) 38%, rgba(10,10,10,0.82) 100%),
      linear-gradient(90deg, rgba(10,10,10,0.7), rgba(10,10,10,0.45));
  }
}

/* ---- 制作の流れ：ステップ実画像（CSSモック図を置き換え） ---- */
.v-story__img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
  box-shadow: 0 26px 60px rgba(20,16,8,0.16);
}
.section--dark .v-story__img { box-shadow: 0 26px 60px rgba(0,0,0,0.45); }

/* ---- Serviceページ：ヒーロー右側の実画像（導線図を置き換え） ---- */
.ad-hero__service-img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid rgba(201,169,77,0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* ---- お客様の声：3カラム対応グリッド（2〜3枚を中央寄せ・スマホ縦積み） ---- */
.voice-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 24px; max-width: 1080px; margin: 0 auto;
}
.voice-grid > .testimonial-card { flex: 1 1 300px; max-width: 344px; display: flex; flex-direction: column; }
.voice-grid > .testimonial-card .testimonial-text { flex: 1; margin-bottom: 0; }
.testimonial-heading {
  padding-top: 30px; font-size: 1.02rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.7; margin-bottom: 16px;
}
@media (max-width: 768px) {
  .voice-grid > .testimonial-card { flex-basis: 100%; max-width: 480px; }
}

/* ---- Serviceページのヒーロー見出しだけ：1行に収める（「作」だけ落ちる崩れを防止） ---- */
.ad-hero__title--service {
  white-space: nowrap;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: 100%;
}
.ad-hero__title--service .tw-line { white-space: nowrap; }

/* ============================================================
   日本語本文の折り返し調整（一文字残り・語尾だけの行を防ぐ）
   html[lang="ja"] でスコープするため、英語ページ（lang="en"）には一切影響しない。
   ナビ・ボタン・価格・短いラベルは対象外。
   text-wrap: pretty 非対応環境でも、他の宣言だけが効いて崩れない。
   ============================================================ */
html[lang="ja"] p,
html[lang="ja"] li,
html[lang="ja"] .section-sub,
html[lang="ja"] .profile-body,
html[lang="ja"] .card__text {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* 価格・短いラベル・ナビ/ボタン内テキストは対象外に戻す */
html[lang="ja"] .ad-price__amount,
html[lang="ja"] .ad-price__en,
html[lang="ja"] .ad-price__regular,
html[lang="ja"] .ad-price__monitor-label,
html[lang="ja"] .svc-price-value,
html[lang="ja"] .mon-price-value,
html[lang="ja"] .mon-schedule__value,
html[lang="ja"] .ad-funnel__num,
html[lang="ja"] .card__number,
html[lang="ja"] .mon-step__no,
html[lang="ja"] .v-story__no,
html[lang="ja"] .v-index__no,
html[lang="ja"] .footer__copy,
html[lang="ja"] .nav__link,
html[lang="ja"] .nav__mobile-link,
html[lang="ja"] .btn {
  text-wrap: auto;
}

/* 見出しは行長を均す（本文には一律適用しない） */
html[lang="ja"] .section-title,
html[lang="ja"] .v-display,
html[lang="ja"] .cta-title,
html[lang="ja"] .page-hero__title {
  text-wrap: balance;
}
