
:root {
  /* Color — 役割はMASTER SPEC 8章に準拠 */
  --turquoise: #0abab5; /* Primary: ロゴ・見出し・選択状態 */
  --turquoise-dark: #087f7b; /* コントラスト確保用 */
  --turquoise-pale: #e7f9f8; /* 薄い面・チップ */
  --orange: #ff8a3d; /* Accent: CTA・料金・重要情報のみ */
  --orange-dark: #e96f22;
  --orange-pale: #fff0e6;
  --line-green: #06c755; /* LINE CTA専用 */
  --text: #18302f;
  --sub: #667675;
  --bg: #ffffff;
  --soft: #f8fbfb;
  --border: #dce9e8;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  /* Shadow */
  --shadow: 0 10px 30px rgba(24, 48, 47, 0.08);
  --shadow-card: 0 7px 18px rgba(24, 48, 47, 0.06);

  /* Spacing / Sizing */
  --page-x: 18px; /* セクション左右余白 */
  --section-y-top: 64px;
  --section-y-bottom: 72px;
  --tap-min: 44px; /* 最小タップ領域 */
}

/* ---------- 2. Base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #eaf0ef;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo,
    sans-serif;
  color: var(--text);
  background: #eaf0ef;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* フォーカスリング（消さない・キーボード操作時のみ表示） */
:focus {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 2px;
  border-radius: 4px;
}
.sticky-link:focus-visible,
.header-cta:focus-visible {
  outline-color: var(--text);
}

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

/* ---------- 3. Layout Shell ---------- */
.phone {
  width: min(100%, 390px);
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(24, 48, 47, 0.05);
}
.section {
  padding: var(--section-y-top) var(--page-x) var(--section-y-bottom);
}
.section.soft {
  background: var(--soft);
}
.section-head {
  margin-bottom: 24px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 8px;
}
h2 {
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -0.85px;
  font-weight: 700;
}
.lead {
  font-size: 14px;
  color: var(--sub);
  margin-top: 10px;
  line-height: 1.7;
}
.annotation {
  background: #fff8e8;
  border: 1px dashed #e9b65d;
  color: #765522;
  font-size: 11px;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
}

/* ---------- 4. Components ---------- */

/* ===== Header ===== */
.header {
  height: 64px;
  padding: 0 var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
  z-index: 10;
}

header img{
  width: 70%;
}

.header-cta {
  height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turquoise), #08a5a0);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
/* 見た目36pxのまま、疑似要素でタップ領域を44px以上へ拡張 */
.header-cta::after {
  content: "";
  position: absolute;
  inset: -5px 0;
}

/* ===== Hero ===== */
.hero {
  padding: 0 14px 0;
  background: #fff;
}
.hero-photo {
  aspect-ratio: 1.09/1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(24, 48, 47, 0.1);
  background: var(--turquoise-pale); /* 読み込み中プレースホルダー */
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  padding: 26px 14px 18px;
  text-align: center;
}
h1 {
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: -0.65px;
  font-weight: 700;
}
h1 em {
  font-style: normal;
  color: var(--turquoise);
  font-size: 28px;
}

/* ===== FactCard × 3（Hero直下） ===== */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 12px;
  padding: 0 2px 6px;
}

.fact-card {
  position: relative;
  min-width: 0;
  padding: 24px 7px 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 186, 181, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 15%, rgba(10, 186, 181, 0.11), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbffff 100%);
  text-align: center;
  box-shadow: 0 9px 24px rgba(18, 65, 64, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

.fact-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -28px;
  z-index: -1;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(10, 186, 181, 0.10);
  border-radius: 50%;
}

.fact-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: -1;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(10, 186, 181, 0.045);
}

.fact-card--proof {
  border-color: rgba(10, 186, 181, 0.78);
  background:
    linear-gradient(155deg, rgba(219, 249, 247, 0.86), rgba(255, 255, 255, 0.97) 50%),
    #ffffff;
  box-shadow: 0 11px 28px rgba(10, 165, 161, 0.14);
}

.fact-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: start;
  width: 46px;
  height: 46px;
  padding: 7px 0 0 8px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise) 68%, transparent 69%);
}

.fact-value,
.fact-value--number {
  font-size: 15px;
  font-weight: 800;
}

.fact-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  color: var(--turquoise-dark);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  border: 1px dotted rgba(10, 186, 181, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 7px 16px rgba(10, 159, 155, 0.12),
    inset 0 0 0 6px rgba(225, 248, 247, 0.78);
}

.fact-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(10, 186, 181, 0.12);
  border-radius: 50%;
}

.fact-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-icon--yen {
  padding-top: 1px;
  font-family: Arial, sans-serif;
}

.fact-label {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  white-space: nowrap;
}

.fact-label::before,
.fact-label::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 5px 2px;
  border-radius: 50%;
  background: rgba(10, 186, 181, 0.52);
  box-shadow: 5px 0 0 rgba(10, 186, 181, 0.25);
}

.fact-label::before {
  box-shadow: -5px 0 0 rgba(10, 186, 181, 0.25);
}

.fact-value {
  margin-top: 1px;
  color: var(--turquoise-dark);
  font-size: clamp(15px, 4.6vw, 20px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.fact-value--number {
  font-size: clamp(15px, 4.2vw, 19px);
  letter-spacing: -1px;
}

.fact-value--number span {
  margin-left: 1px;
  font-size: 9px;
  letter-spacing: 0;
}

.fact-divider {
  width: 19px;
  height: 2px;
  margin: 10px auto 7px;
  border-radius: 999px;
  background: rgba(10, 186, 181, 0.72);
}

.fact-description {
  margin-top: auto;
  color: var(--sub);
  font-size: 8px;
  line-height: 1.55;
}

.fact-accent {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 9px 4px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  border-radius: 3px;
  background: linear-gradient(100deg, #ff8a4c, var(--orange));
  box-shadow: 0 5px 10px rgba(242, 106, 46, 0.18);
  transform: rotate(-2deg);
}

.fact-note {
  margin-top: auto;
  padding-top: 8px;
  color: var(--sub);
  font-size: 8px;
  line-height: 1.35;
}

@media (max-width: 370px) {
  .hero-facts {
    gap: 6px;
  }

  .fact-card {
    min-height: 204px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .fact-icon {
    width: 52px;
    height: 52px;
  }

  .fact-icon svg {
    width: 28px;
    height: 28px;
  }

  .fact-label::before,
  .fact-label::after {
    margin-right: 3px;
    margin-left: 3px;
  }
}

/* ===== 価値要約 ===== */
.value-grid {
  display: grid;
  gap: 12px;
}
.value-grid img {
  width: 85%;
  margin: 0 auto;
}
.value-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--turquoise-pale);
  display: grid;
  place-items: center;
  color: var(--turquoise-dark);
  font-weight: 700;
  font-size: 20px;
}
.value-card:nth-child(3) .value-icon {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.value-card h3 {
  margin: 1px 0 4px;
  font-size: 17px;
  line-height: 1.35;
}
.value-card p {
  font-size: 13px;
  color: var(--sub);
}

/* ===== アイコン ===== */
.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #d9e7e7;
  border-radius: 22px;
  background: #fff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.feature-icon--green {
  color: #008f8d;
  background: #e5f7f7;
}

.feature-icon--orange {
  color: #f26a2e;
  background: #fff0e8;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  overflow: visible;
}

.icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
}

.icon-text {
  fill: currentColor;
  font-size: 11px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.feature-content h3 {
  margin: 0 0 4px;
  color: #173333;
  font-size: 18px;
  line-height: 1.4;
}

.feature-content p {
  margin: 0;
  color: #6c7c7c;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== 利用シーン ===== */
.scene-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.scene-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}
.scene-card.wide {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 168px;
}

/* 利用シーン画像の表示サイズを統一 */
.scene-card:not(.wide) .scene-visual {
  aspect-ratio: 1.6 / 1;
}

.scene-card.wide .scene-visual {
  min-width: 0;
  height: 100%;
  min-height: 168px;
}

.scene-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene-body {
  padding: 14px;
}
.scene-card.wide .scene-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}
.scene-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.scene-copy {
  font-size: 12px;
  color: var(--sub);
}
.scene-share {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--turquoise-dark);
}

/* ===== ModeSegment（タブ） ===== */
.mode-carousel-section {
  padding: var(--section-y-top) 0 var(--section-y-bottom);
  background: #fff;
  overflow: hidden;
}
.mode-section-head {
  padding: 0 var(--page-x);
  margin-bottom: 20px;
}
.mode-segment {
  margin: 0 var(--page-x);
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid #d9e6e5;
  background: #f4f8f7;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(24, 48, 47, 0.04);
}
.mode-tab {
  min-height: 58px; /* 44px以上のタップ領域 */
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7a8988;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.25s ease;
}
.mode-tab .tab-icon {
  font-size: 9px;
  letter-spacing: -2px;
  color: currentColor;
}
.mode-tab b {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.mode-tab small {
  display: block;
  font-size: 9px;
  line-height: 1.25;
  margin-top: 2px;
  font-weight: 700;
}
.mode-tab.active {
  background: linear-gradient(135deg, #0abab5, #08a5a0);
  color: #fff;
  box-shadow: 0 7px 16px rgba(10, 186, 181, 0.23);
}
.mode-tab[data-slide="1"].active {
  background: linear-gradient(135deg, #ff9b58, #ff7a25);
  box-shadow: 0 7px 16px rgba(255, 138, 61, 0.23);
}

.carousel-hint {
  height: 34px;
  padding: 10px 22px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #91a3a1;
  font-size: 10px;
  font-weight: 700;
}
.carousel-hint i {
  font-style: normal;
  color: var(--turquoise);
  font-size: 15px;
}

/* ===== ModeCarousel ===== */
.mode-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.mode-carousel::-webkit-scrollbar {
  display: none;
}
.mode-track {
  display: flex;
  width: 200%;
}
.mode-slide {
  width: 50%;
  flex: 0 0 50%;
  scroll-snap-align: start;
  padding: 0 var(--page-x) 6px;
}
.slide-copy {
  padding: 3px 2px 18px;
}
.mode-mini-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--turquoise-pale);
  color: var(--turquoise-dark);
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mode-mini-badge.orange {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.slide-copy h3 {
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.7px;
}
.slide-copy h3 span {
  color: var(--turquoise);
  font-size: 30px;
}
.soloma-slide .slide-copy h3 span {
  color: var(--orange);
}
.slide-copy p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--sub);
  margin-top: 9px;
  max-width: 320px;
}

/* --- VisualStage（デバイスモック演出） --- */
.visual-stage {
  height: 454px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 186, 181, 0.16);
  background: linear-gradient(155deg, #e9faf9 0%, #f9ffff 58%, #e8f8f7 100%);
}
.soloma-stage {
  border-color: rgba(255, 138, 61, 0.18);
  background: linear-gradient(155deg, #fff4eb 0%, #fffcfa 58%, #fff0e5 100%);
}
.stage-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  left: 38px;
  top: 70px;
  filter: blur(1px);
}
.device {
  position: absolute;
  width: 210px;
  height: 382px;
  left: 50%;
  top: 31px;
  transform: translateX(-52%) rotate(-2.5deg);
  border: 7px solid #1c2323;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(24, 48, 47, 0.22);
  z-index: 2;
  overflow: hidden;
}
.device-soloma {
  transform: translateX(-49%) rotate(2.2deg);
}
.device-speaker {
  position: absolute;
  width: 66px;
  height: 15px;
  border-radius: 0 0 10px 10px;
  background: #1c2323;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  z-index: 3;
}
.device-status {
  height: 29px;
  padding: 8px 12px 0;
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 700;
}
.app-title {
  height: 42px;
  border-top: 1px solid #f1f4f4;
  border-bottom: 1px solid #e9eeee;
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  align-items: center;
  padding: 0 9px;
  text-align: center;
  font-size: 9px;
}
.app-screen {
  padding: 11px;
  background: #fafcfc;
  height: 304px;
}
.ui-field {
  position: relative;
  border: 1px solid #e1e9e8;
  background: #fff;
  border-radius: 10px;
  padding: 8px 9px;
  margin-bottom: 7px;
}
.ui-field small,
.ui-label {
  display: block;
  font-size: 6.5px;
  color: #829291;
  margin-bottom: 3px;
}
.ui-field b {
  display: block;
  font-size: 8.5px;
}
.ui-field span {
  position: absolute;
  right: 9px;
  top: 13px;
  color: #829291;
}
.ui-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 5px 0 8px;
}
.ui-pills span {
  font-size: 7px;
  text-align: center;
  padding: 6px 0;
  border-radius: 7px;
  border: 1px solid #e0e9e8;
  background: #fff;
}
.ui-pills .selected {
  background: var(--turquoise);
  color: #fff;
  border-color: var(--turquoise);
}
.ui-submit {
  height: 34px;
  border-radius: 9px;
  background: var(--turquoise);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 9px;
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(24, 48, 47, 0.08);
  box-shadow: 0 12px 24px rgba(24, 48, 47, 0.18);
  z-index: 4;
}
.cast-card {
  width: 111px;
  border-radius: 13px;
  overflow: hidden;
}
.cast-photo {
  height: 89px;
  background: linear-gradient(145deg, #d3ebe9, #f2c9b2);
  position: relative;
}
.cast-photo::before {
  content: "";
  width: 49px;
  height: 49px;
  border-radius: 50%;
  position: absolute;
  left: 31px;
  top: 15px;
  background: linear-gradient(145deg, #e7b39a, #7d4e42);
}
.photo-b {
  background: linear-gradient(145deg, #d4ddee, #e7c0ae);
}
.photo-b::before {
  background: linear-gradient(145deg, #e8b79d, #4d403d);
}
.cast-info {
  padding: 7px 8px 8px;
}
.cast-info b {
  font-size: 8px;
  display: block;
}
.cast-info em {
  font-style: normal;
  color: var(--turquoise);
}
.cast-info small {
  font-size: 6px;
  color: #83918f;
  display: block;
  margin: 2px 0;
}
.cast-info span {
  font-size: 7px;
  font-weight: 700;
}
.cast-card-one {
  right: 8px;
  top: 112px;
  transform: rotate(5deg);
}
.cast-card-two {
  right: 16px;
  top: 252px;
  width: 92px;
  transform: rotate(8deg);
}
.cast-card-two .cast-photo {
  height: 67px;
}

.float-bubble {
  position: absolute;
  z-index: 5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(24, 48, 47, 0.14);
  padding: 10px 12px;
  text-align: center;
}
.float-bubble b {
  display: block;
  font-size: 10px;
  color: var(--turquoise-dark);
}
.float-bubble small {
  display: block;
  font-size: 7px;
  color: var(--sub);
  margin-top: 2px;
}
.application-bubble {
  left: 7px;
  top: 87px;
  max-width: 112px;
}
.application-bubble::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 10px;
  border: 9px solid transparent;
  border-left-color: #fff;
  border-right: 0;
}

.profile-head {
  grid-template-columns: 22px 24px 1fr 22px;
  text-align: left;
  gap: 4px;
}
.profile-head small {
  display: block;
  font-size: 6px;
  color: #5a9a7c;
}
.mini-avatar {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(145deg, #efc1a9, #76514a);
}
.chat-screen {
  padding: 8px;
  height: 304px;
}
.profile-summary {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ebeeee;
}
.profile-photo {
  width: 42px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(145deg, #efc4ae, #68514c);
}
.profile-summary b {
  font-size: 8px;
}
.profile-summary small {
  display: block;
  font-size: 6px;
  color: #84908f;
}
.profile-summary p {
  font-size: 6px;
  margin-top: 4px;
}
.chat-line {
  font-size: 7px;
  line-height: 1.45;
  padding: 7px 8px;
  border-radius: 9px;
  margin: 5px 0;
  max-width: 82%;
}
.chat-line.left {
  background: #fff;
  border: 1px solid #ebeeee;
}
.chat-line.right {
  background: #cff3e8;
  margin-left: auto;
}
.chat-box {
  height: 27px;
  margin-top: 9px;
  border: 1px solid #dde7e6;
  border-radius: 999px;
  background: #fff;
  color: #a0adac;
  font-size: 6.5px;
  display: flex;
  align-items: center;
  padding: 0 9px;
}
.profile-card {
  width: 130px;
  left: 5px;
  top: 83px;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  gap: 7px;
  transform: rotate(-5deg);
}
.profile-card-photo {
  width: 45px;
  height: 56px;
  border-radius: 9px;
  background: linear-gradient(145deg, #eec0a9, #684942);
}
.profile-card b {
  font-size: 8px;
  display: block;
}
.profile-card em {
  font-style: normal;
  color: var(--orange);
}
.profile-card small {
  font-size: 6px;
  color: #81908f;
  display: block;
}
.profile-card span {
  font-size: 6px;
  color: #44a578;
  font-weight: 700;
}
.message-bubble {
  right: 5px;
  top: 104px;
  max-width: 111px;
}
.message-bubble b {
  color: var(--orange-dark);
}
.schedule-bubble {
  right: 5px;
  top: 257px;
  max-width: 116px;
}
.schedule-bubble b {
  color: var(--orange-dark);
}

/* --- StepStrip --- */
.step-strip {
  display: grid;
  grid-template-columns: 1fr 12px 1fr 12px 1fr;
  align-items: stretch;
  gap: 3px;
  margin-top: 13px;
}
.step-item {
  min-height: 106px;
  padding: 11px 8px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}
.step-item span {
  font-size: 9px;
  font-weight: 700;
}
.guruma-slide .step-item span {
  color: var(--turquoise);
}
.soloma-slide .step-item span {
  color: var(--orange);
}
.step-item b {
  display: block;
  font-size: 10px;
  line-height: 1.45;
  margin: 5px 0 3px;
}
.step-item small {
  display: block;
  font-size: 7.5px;
  line-height: 1.5;
  color: var(--sub);
}
.step-arrow {
  display: grid;
  place-items: center;
  color: #9eb0ae;
  font-size: 18px;
}
.slide-footnote {
  margin-top: 12px;
  border-radius: 13px;
  background: var(--turquoise-pale);
  color: var(--turquoise-dark);
  font-size: 9px;
  line-height: 1.55;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
}
.orange-note {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

/* --- Dots（視覚7pxを維持しつつタップ領域を拡張） --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}
.dot {
  width: 28px;
  height: 28px;
  margin: 0 -7px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4dddc;
  transition: 0.2s ease;
}
.dot.active::before {
  width: 23px;
  border-radius: 999px;
  background: var(--turquoise);
}

/* ===== SafetyDark（v0.8：ダークターコイズ×Glassmorphism） ===== */
.safety-dark {
  background: linear-gradient(160deg, #075e63 0%, #064b50 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* 右上・左下の薄いドットパターン */
.safety-dark::before,
.safety-dark::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 200px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 1.5px,
    transparent 1.6px
  );
  background-size: 18px 18px;
  pointer-events: none;
}
.safety-dark::before {
  top: -24px;
  right: -30px;
  -webkit-mask-image: radial-gradient(
    circle at 80% 15%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(circle at 80% 15%, #000 30%, transparent 75%);
}
.safety-dark::after {
  bottom: -24px;
  left: -30px;
  -webkit-mask-image: radial-gradient(
    circle at 20% 85%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(circle at 20% 85%, #000 30%, transparent 75%);
}
.safety-dark .kicker {
  color: #7fe3de;
}
.safety-dark h2 {
  color: #fff;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.safety-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 19px;
  padding: 17px 14px 15px;
}
.safety-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #7fe3de;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 11px;
}
.safety-card h3 {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 5px;
  color: #fff;
}
.safety-card p {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Compare（v1.0：他社比較） ===== */
.compare {
  margin-top: 8px; /* pico列バッジのはみ出し分 */
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.compare-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr 1.18fr;
  border-bottom: 1px solid var(--border);
}
.compare-row.compare-last {
  border-bottom: 0;
}
.compare-cell {
  padding: 12px 8px;
  font-size: 10px;
  line-height: 1.55;
  color: var(--sub);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.compare-item {
  font-weight: 700;
  color: var(--text);
  justify-content: flex-start;
  text-align: left;
  padding-left: 12px;
}
.compare-head .compare-cell {
  font-weight: 700;
  color: var(--text);
  font-size: 10px;
  padding-top: 14px;
  padding-bottom: 12px;
}
.compare-head .compare-item {
  color: var(--sub);
  font-weight: 700;
}

/* pico列の強調（列全体を面と枠でつなげる） */
.compare-cell.is-pico {
  background: rgba(10, 186, 181, 0.08);
  border-left: 1.5px solid rgba(10, 186, 181, 0.5);
  border-right: 1.5px solid rgba(10, 186, 181, 0.5);
  color: var(--turquoise-dark);
  font-weight: 700;
}
.compare-cell.pico-head {
  position: relative;
  background: var(--turquoise);
  border-color: var(--turquoise);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  flex-direction: column;
  gap: 2px;
  margin-top: -8px;
  padding-top: 16px;
}
.pico-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pico-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(233, 111, 34, 0.35);
}
.compare-last .is-pico {
  border-bottom: 1.5px solid rgba(10, 186, 181, 0.5);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin-bottom: -1px;
}
.compare-mark {
  font-size: 15px;
  font-weight: 700;
}
.compare-mark.pico-mark {
  font-size: 19px;
  color: var(--turquoise);
}
.compare-note {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.7;
  color: var(--sub);
}

/* ===== FAQItem ===== */
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 16px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  position: relative;
  min-height: var(--tap-min);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--turquoise);
  font-size: 20px;
  font-weight: 500;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:focus-visible {
  outline-offset: -3px;
}
.faq-answer {
  padding: 0 16px 16px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--sub);
}

/* ===== Final Logo / Partner Links ===== */
.final-cta {
  padding: 58px var(--page-x) 38px;
  background: #fff;
  text-align: center;
}
.final-logo {
  width: 60%;
  height: auto;
  margin: 0 auto 30px;
}
.final-cta .footer-partner-links {
  margin-bottom: 0;
}

/* ===== Footer ===== */
.footer {
  padding: 38px 24px 126px;
  background: #222;
  color: #fff;
  text-align: center;
}
.footer-partner-links {
  display: grid;
  gap: 12px;
  max-width: 246px;
  margin: 0 auto 14px;
}
.footer-partner-button {
  min-height: 42px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}
.footer-partner-button--restaurant {
  background: #f5a800;
}
.footer-partner-button--affiliate {
  background: #35a3c8;
}
.footer-partner-note {
  font-size: 8px;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.footer-contact {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  text-underline-offset: 3px;
  margin: 0 0 22px;
}
.footer-heading {
  margin: 0 0 10px;
  color: #54c5c8;
  font-size: 11px;
  font-weight: 700;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 10px;
  margin: 0 auto 28px;
  max-width: 310px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 9px;
  line-height: 1.45;
  position: relative;
}
.footer-links a::after {
  content: "";
  position: absolute;
  inset: -8px -3px;
}
.footer-registration {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-registration section {
  margin: 0;
}
.footer-registration h3 {
  margin: 0 0 5px;
  color: #54c5c8;
  font-size: 10px;
  line-height: 1.4;
}
.footer-registration p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8.5px;
  line-height: 1.5;
}
.copyright {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== StickyCTA（2ボタン固定・safe-area対応） ===== */
.sticky {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 390px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
  z-index: 30;
}
.sticky-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sticky-link {
  height: 52px; /* 44px以上 */
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.25px;
  box-shadow: 0 8px 20px rgba(24, 48, 47, 0.13);
  white-space: nowrap;
}
.sticky-link.line {
  background: var(--line-green);
}
.sticky-link.cast {
  background: linear-gradient(135deg, #ff9e3d, #ff8528);
}
.sticky-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
}
.line-bubble {
  position: relative;
  width: 24px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  color: var(--line-green);
  font-size: 7px;
  letter-spacing: -0.4px;
}
.line-bubble::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -3px;
  border-width: 4px 4px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: rotate(18deg);
}
.cast-person {
  font-size: 19px;
  line-height: 1;
}

/* ---------- 5. Media ---------- */
/* 375px未満：ステージとデバイスを縮小（v0.7準拠） */
@media (max-width: 374px) {
  .visual-stage {
    height: 430px;
  }
  .device {
    width: 197px;
    height: 360px;
  }
  .cast-card {
    width: 103px;
  }
  .step-item {
    padding: 10px 6px;
  }
  .slide-copy h3 {
    font-size: 23px;
  }
}
/* 431px以上：SPカンプを中央表示（PC専用レイアウトは作らない） */
@media (min-width: 431px) {
  body {
    padding: 24px 0;
  }
  .phone {
    border-radius: 28px;
  }
  .sticky {
    border-radius: 0 0 28px 28px;
  }
}

/* ===== 2026TOP：グルマ／ソロマ端末内プロフィール写真 ===== */
.cast-photo,
.profile-photo,
.profile-card-photo,
.mini-avatar {
  overflow: hidden;
  background: #eef4f3;
}

.cast-photo img,
.profile-photo img,
.profile-card-photo img,
.mini-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カードごとに顔が自然に見える位置へ調整 */
.photo-a img {
  object-position: 50% 28%;
}

.photo-b img {
  object-position: 50% 34%;
}

.profile-photo img,
.profile-card-photo img,
.mini-avatar img {
  object-position: 50% 30%;
}

/* ===== 2026TOP：プロフィール画像上の仮顔装飾を削除 ===== */
.cast-photo::before,
.photo-b::before {
  content: none;
  display: none;
}
