/* =============================================
   コレクトのリペア教室 LP  —  v5
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { -webkit-appearance: none; appearance: none; }

/* ===== CSS変数 ===== */
:root {
  --teal:        #2bbfbd;
  --teal-light:  #e6f9f8;
  --teal-dark:   #1a9896;
  --yellow:      #ffe03d;
  --yellow-dark: #e6c200;
  --line-green:  #06C755;
  --dark:        #1a1a2e;
  --dark2:       #374151;
  --mid:         #374151;
  --light:       #f8fafb;
  --border:      #e5e7eb;
  --white:       #ffffff;
  --max:         1100px;
  --max-narrow:  720px;
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(43,191,189,0.12);
  --shadow-lg:   0 8px 48px rgba(43,191,189,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
}

/* ===== WRAP ===== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap--narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 768px) {
  .wrap, .wrap--narrow { padding: 0 40px; }
}

/* ===== HEADER LOGO ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 20px;
  pointer-events: none;
}
.site-logo {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--dark);
  pointer-events: auto;
}

/* ===== STICKY CTA ===== */
.sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.sticky.visible { transform: translateY(0); }
.sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: filter 0.2s;
}
.sticky__btn--main {
  background: var(--yellow); color: var(--dark);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.sticky__sub {
  font-size: 0.60rem; font-weight: 600;
  color: var(--dark); opacity: 0.65;
  letter-spacing: 0.06em;
}
.sticky__btn--line  { background: var(--line-green); color: #fff; }

/* ===== スクロールフェード =====
   .js-loaded が body に付いてから opacity:0 を適用する。
   JSオフ時でもコンテンツが見える状態を保つ。
   ============================= */
.js-loaded .js-fade,
.js-loaded .js-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-loaded .js-fade.is-visible,
.js-loaded .js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PC のみ左右・スケール */
@media (min-width: 768px) {
  .js-loaded .js-fade-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .js-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .js-loaded .js-fade-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .js-fade-scale.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}
/* スマホでは js-fade-left / scale も下から */
@media (max-width: 767px) {
  .js-loaded .js-fade-left,
  .js-loaded .js-fade-scale {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-loaded .js-fade-left.is-visible,
  .js-loaded .js-fade-scale.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== キーフレーム ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* ===== マーカー ===== */
mark {
  background: var(--yellow);
  color: var(--dark);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 900;
  font-style: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
mark.mark--line {
  background: linear-gradient(transparent 55%, rgba(255,224,61,1.0) 55%);
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: inherit;
}
mark.mark--teal {
  background: linear-gradient(transparent 55%, rgba(43,191,189,0.75) 55%);
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: inherit;
}
mark.mark--yellow {
  background: linear-gradient(transparent 55%, rgba(255,224,61,1.0) 55%);
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: inherit;
}
/* ヒーロータイトル内マーカー */
.hero-fresh__title .hero-mark {
  font-style: normal;
  position: relative;
}

/* ==============================================
   HERO
   ============================================== */
.hero-fresh {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: #fff;
  padding: 88px 28px 52px 28px;
  gap: 32px;
}

/* iOS の min-height:100vh 問題対応 */
@supports (-webkit-touch-callout: none) {
  .hero-fresh {
    min-height: -webkit-fill-available;
  }
}

.hero-fresh__deco-circle {
  position: absolute;
  top: -120px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,189,0.10) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-fresh__deco-dots {
  position: absolute;
  bottom: 32px; left: 16px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(43,191,189,0.22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none; z-index: 0;
}

.hero-fresh__text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 0;
}

.hero-fresh__eyebrow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--teal);
  text-transform: uppercase;
}
.hero-fresh__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.hero-fresh__sub-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark);
  margin-bottom: 12px;
}

.hero-fresh__title {
  font-size: clamp(3rem, 13vw, 5.2rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 28px;
  word-break: break-all;
  overflow-wrap: break-word;
}
.hero-fresh__title em {
  font-style: normal; color: var(--teal); position: relative;
}
.hero-fresh__title em::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 4px; background: rgba(43,191,189,0.18);
  border-radius: 2px; z-index: -1;
}

.hero-fresh__lead {
  font-size: 0.95rem; color: var(--dark);
  line-height: 1.85; margin-bottom: 28px;
  word-break: break-all;
  overflow-wrap: break-word;
}
.hero-fresh__lead strong { color: var(--teal-dark); font-weight: 700; }
.lead-green { color: var(--teal); font-weight: 700; }

.hero-fresh__checks {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.hero-fresh__checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--dark2);
  word-break: break-all;
  overflow-wrap: break-word;
}
.hero-fresh__check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: #e879a0; color: #fff;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-fresh__check-icon--yellow {
  background: #e879a0;
  color: #fff;
}

.hero-fresh__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}

/* === スキルタグ === */
.hero-fresh__skills { margin-top: 10px; }
.hero-fresh__skills-label {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 8px;
}
.hero-fresh__skills-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
/* スキルタグ本体 */
.hero-fresh__skills-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.80rem;
  font-weight: 700;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1.5px solid rgba(43,191,189,0.30);
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* チェックマーク：teal丸背景に白チェック（疑似要素で描画） */
.skill-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  position: relative;
}
/* 白チェックを描画 */
.skill-check::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.hero-fresh__visual {
  position: relative; z-index: 2;
}
.hero-fresh__img-wrap { position: relative; }
.hero-fresh__img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center 20%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.13);
}

.hero-fresh__badge {
  position: absolute;
  background: #fff; border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.hero-fresh__badge--a { top: 12px; left: 10px; }
.hero-fresh__badge--b { bottom: 12px; right: 10px; }
/* PC用バッジはモバイルで非表示 */
.hero-fresh__badge--pc { display: none; }
.hero-fresh__badge-num {
  font-size: 1.35rem; font-weight: 900;
  color: var(--teal); line-height: 1; letter-spacing: -0.02em;
}
.hero-fresh__badge-num small { font-size: 0.72rem; font-weight: 700; }
.hero-fresh__badge-label {
  font-size: 0.56rem; font-weight: 600;
  color: var(--mid); letter-spacing: 0.08em; text-transform: uppercase;
}

/* ===== ボタン ===== */
.btn-fresh {
  display: flex;
  align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px; border-radius: 999px;
  font-size: 0.90rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.22s ease;
  cursor: pointer; border: none; width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.btn-fresh--main {
  background: var(--yellow); color: var(--dark);
  box-shadow: 0 6px 24px rgba(230,194,0,0.5);
  border: 2px solid var(--yellow-dark);
  font-weight: 900;
}
.btn-fresh--line {
  background: var(--line-green); color: #fff;
  box-shadow: 0 6px 24px rgba(6,199,85,0.28);
}
.btn-fresh--xl { padding: 18px 32px; font-size: 0.98rem; font-weight: 900; }

/* ===== モバイル：ヒーロー 背景写真 ===== */
.hero-fresh {
  background: url('../images/hero.png') center 20% / cover no-repeat;
}
.hero-fresh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.80) 60%,
    rgba(255,255,255,0.70) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-fresh__text,
.hero-fresh__visual {
  position: relative;
  z-index: 1;
}

/* ===== PC：ヒーロー 背景写真＋左グラデーション ===== */
@media (min-width: 960px) {
  .hero-fresh {
    display: block;
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background: url('../images/hero.png') center center / cover no-repeat;
  }
  .hero-fresh::before {
    display: none;
  }

  /* 写真を背景全体に敷く */
  .hero-fresh__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-fresh__img-wrap {
    width: 100%;
    height: 100%;
  }
  .hero-fresh__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
  }

  /* 左から右へ 白→透明のグラデーションオーバーレイ */
  .hero-fresh__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      #ffffff 0%,
      #ffffff 42%,
      rgba(255,255,255,0.85) 55%,
      rgba(255,255,255,0.2) 75%,
      rgba(255,255,255,0) 100%
    );
    z-index: 1;
  }

  /* テキスト部分を前面に */
  .hero-fresh__text {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 50%;
    padding: 100px 0 80px;
    margin-left: calc((100% - var(--max)) / 2 + 40px);
  }

  /* PC：タイトルの強制折り返しを無効化 */
  .hero-fresh__title {
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
  }
  .hero-fresh__title br {
    display: none;
  }

  /* PC用バッジ：hero-fresh (position:relative, min-height:100vh) を基準に配置 */
  .hero-fresh__badge--mobile { display: none; }
  .hero-fresh__badge--pc { display: flex; }
  .hero-fresh__badge--a.hero-fresh__badge--pc {
    position: absolute;
    top: 18%; left: 52%; right: auto;
    z-index: 4;
  }
  .hero-fresh__badge--b.hero-fresh__badge--pc {
    position: absolute;
    bottom: 18%; right: 5%; left: auto;
    z-index: 4;
  }
  .hero-fresh__badge-num { font-size: 1.7rem; }
  .hero-fresh__badge-num small { font-size: 0.78rem; }

  /* 装飾は非表示 */
  .hero-fresh__deco-circle,
  .hero-fresh__deco-dots { display: none; }

  .hero-fresh__actions { flex-direction: row; }
  .btn-fresh { width: auto; }
  .hero-fresh__skills-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ==============================================
   SECTION BASE
   ============================================== */
.sec { padding: 60px 0; }
@media (min-width: 768px) { .sec { padding: 96px 0; } }

.sec--white  { background: var(--white); }
.sec--light  { background: var(--light); }
.sec--cta    { background: var(--teal); }

/* ===== セクションヘッダー ===== */
.sec-head { margin-bottom: 32px; }
@media (min-width: 768px) { .sec-head { margin-bottom: 52px; } }

.sec-head--center { text-align: center; }
.sec-head--center .sec-head__desc { margin-left: auto; margin-right: auto; }

.sec-head__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--teal-dark); background: var(--teal-light);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
  border: 1px solid rgba(43,191,189,0.2);
  word-break: break-all;
  overflow-wrap: break-word;
}
.sec-head__tag--dark  { background: var(--dark); color: #fff; border-color: transparent; }
.sec-head__tag--white { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.sec-head__tag--teal  { background: var(--teal); color: #fff; border-color: transparent; }

.sec-head__title {
  font-size: clamp(1.65rem, 6.5vw, 2.4rem);
  font-weight: 900; line-height: 1.38;
  letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 10px;
  word-break: break-all;
  overflow-wrap: break-word;
}
.sec-head__title em { font-style: normal; color: var(--teal); }
.sec-head__title--str { font-size: clamp(1.65rem, 6.5vw, 2.4rem); }

.sec-head__title--white { color: #fff; }

.sec-head__desc {
  font-size: 0.90rem; color: var(--mid);
  line-height: 1.85; max-width: 600px;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .sec-head__desc { font-size: 1.02rem; }
}

/* ==============================================
   WHY
   ============================================== */
.why-grid { max-width: 100%; }
.why-text .sec-head__tag { display: inline-block; margin-bottom: 10px; }

.why-title {
  font-size: clamp(1.55rem, 6.5vw, 2.4rem);
  font-weight: 900; line-height: 1.38;
  letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 6px;
  word-break: break-all;
  overflow-wrap: break-word;
}

.why-title__sub {
  display: block;
  font-size: clamp(0.92rem, 3.5vw, 1.05rem);
  font-weight: 700; color: var(--dark);
  margin-top: 10px; line-height: 1.65;
  word-break: break-all;
  overflow-wrap: break-word;
}
.why-body {
  display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
}
.why-body p { font-size: 0.92rem; color: var(--dark2); line-height: 1.9; word-break: break-all; overflow-wrap: break-word; }
.why-body strong { color: var(--dark); font-weight: 700; }
.why-body__quote {
  font-size: 0.92rem; font-weight: 700; color: var(--dark);
  border-left: 4px solid var(--teal);
  padding: 10px 14px;
  line-height: 1.75;
  word-break: break-all; overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .why-body p { font-size: 1.02rem; }
  .why-body__quote { font-size: 1.02rem; }
}
.why-body__point {
  font-size: 0.92rem; font-weight: 700; color: var(--teal-dark);
  border-left: 4px solid var(--teal);
  padding: 12px 14px;
  background: var(--teal-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.75;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* ==============================================
   AUTO SLIDER
   ============================================== */
.repair-intro__desc {
  font-size: 0.92rem; color: var(--dark2);
  line-height: 1.9; margin-top: 28px;
  text-align: center;
  word-break: break-all; overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .repair-intro__desc { text-align: left; }
}

.auto-slider-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 8px;
}
.auto-slider {
  display: flex;
  gap: 12px;
  animation: autoSlide 36s linear infinite;
  will-change: transform;
}
.auto-slider:hover {
  animation-play-state: paused;
}
.auto-slide {
  flex-shrink: 0;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
}
.auto-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (min-width: 768px) {
  .auto-slide { width: 320px; }
  .auto-slide img { height: 210px; }
}
@keyframes autoSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-272px * 5)); }
}
@media (min-width: 768px) {
  @keyframes autoSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-332px * 5)); }
  }
}

/* ==============================================
   PAIN
   ============================================== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 36px;
}
@media (min-width: 640px) {
  .pain-grid { gap: 14px; }
}

.pain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-card__icon {
  font-size: 0.95rem; color: var(--teal);
  flex-shrink: 0; margin-top: 2px; width: 18px; text-align: center;
}
.pain-card p { font-size: 0.88rem; line-height: 1.72; color: var(--dark2); word-break: break-all; overflow-wrap: break-word; }
.pain-card strong { color: var(--dark); font-weight: 700; }

.pain-resolve { text-align: center; padding: 40px 16px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .pain-resolve { padding: 56px 40px; } }
.pain-resolve__text {
  font-size: clamp(1.6rem, 6.5vw, 2.8rem);
  font-weight: 900; color: var(--dark);
  line-height: 1.45; letter-spacing: -0.02em;
  word-break: break-all; overflow-wrap: break-word;
  text-shadow: 0 0 12px rgba(255,255,255,0.95), 0 0 6px rgba(255,255,255,0.9);
}
.pain-resolve__accent {
  display: inline-block;
  font-size: clamp(2.1rem, 9vw, 3.8rem);
  color: #fff; letter-spacing: -0.03em;
  line-height: 1.2; margin: 0;
  font-weight: 900;
  background: none;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.35);
}
.pain-resolve__smear {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 420px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}
.pain-resolve__text {
  position: relative;
  z-index: 1;
}

/* 解決説明ブロック */
.resolve-desc {
  margin-top: 40px;
  background: linear-gradient(135deg, #1a9896 0%, #2bbfbd 100%);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.resolve-desc::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.resolve-desc::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.resolve-desc__body {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.92);
  line-height: 2;
  margin-bottom: 18px;
  word-break: break-all;
  overflow-wrap: break-word;
  position: relative;
  z-index: 1;
}
.resolve-desc__point {
  display: inline-block;
  font-size: 0.91rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 10px 18px;
  line-height: 1.6;
  word-break: break-all;
  overflow-wrap: break-word;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .resolve-desc {
    padding: 36px 40px;
    border-radius: 20px;
  }
  .resolve-desc__body {
    font-size: 0.96rem;
  }
  .resolve-desc__point {
    font-size: 0.94rem;
  }
}

/* ==============================================
   SOLUTION
   ============================================== */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.sol-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.sol-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(43,191,189,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
}
.sol-card__num {
  font-size: 0.62rem; font-weight: 900;
  color: var(--teal); letter-spacing: 0.12em;
}
.sol-card__title {
  font-size: 0.90rem; font-weight: 700;
  color: var(--dark); line-height: 1.5;
  word-break: break-all; overflow-wrap: break-word;
}
.sol-desc {
  font-size: 0.92rem; color: var(--dark2);
  line-height: 1.9; margin-top: 32px;
  text-align: left;
  word-break: break-all; overflow-wrap: break-word;
}

/* STR手動スライダー */
.str-slider-wrap {
  position: relative;
  margin: 40px 0 32px;
  border-radius: 14px;
  overflow: hidden;
}
.str-slider {
  display: flex;
  transition: transform 0.4s ease;
}
.str-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.str-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .str-slide img { height: 400px; }
}
.str-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none; cursor: pointer;
  font-size: 0.9rem; color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
  z-index: 2;
}
.str-slider__btn:hover { background: #fff; }
.str-slider__btn--prev { left: 10px; }
.str-slider__btn--next { right: 10px; }
.str-slider__dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.str-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.str-slider__dot.active {
  background: #fff;
}

.str-conclusion {
  text-align: center;
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 900;
  color: #1a1a2e !important;
  margin-top: 40px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.str-conclusion__em {
  font-style: normal;
  font-size: clamp(2rem, 8vw, 3rem) !important;
  color: #f5c400 !important;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
}

/* ==============================================
   GRADUATION CASES
   ============================================== */
.grad-cases {
  margin-top: 48px;
}
.grad-cases__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark2);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
/* モバイル：横スライド */
.grad-cases__grid {
  display: flex;
  flex-direction: row;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.grad-cases__grid::-webkit-scrollbar {
  display: none;
}
/* PC：3列グリッド */
@media (min-width: 768px) {
  .grad-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    padding-bottom: 0;
  }
}
.grad-case {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* モバイル：カード幅固定でスライド */
  flex: 0 0 80vw;
  max-width: 300px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .grad-case {
    flex: unset;
    max-width: unset;
  }
}
.grad-case__header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.grad-case__year {
  font-size: 0.70rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: 999px;
  padding: 2px 10px;
  letter-spacing: 0.04em;
}
.grad-case__name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
}
.grad-case__start {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  word-break: break-all;
}
.grad-case__result {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
  word-break: break-all;
}
.grad-case__result--pink {
  color: #c0195e;
  background: #fde8f2;
  border-left: 3px solid #e879a0;
}
.grad-case__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.grad-case__list li {
  font-size: 0.82rem;
  color: var(--dark2);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
  word-break: break-all;
}
.grad-case__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ==============================================
   REVENUE
   ============================================== */
#revenue .sec-head__title em { color: var(--teal); }
#revenue .sec-head__tag {
  color: var(--dark); background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
}

.sec-cta-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 28px 8px;
}
.sec-cta-btn-wrap .btn-fresh {
  width: auto;
  min-width: 220px;
}
.rev-flow {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px 16px;
  position: relative; overflow: hidden;
}
.rev-flow::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}
.rev-flow__step {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  background: var(--light); border-radius: var(--radius-sm);
  padding: 13px 16px; border: 1.5px solid var(--border);
}
.rev-flow__step-label { font-size: 0.75rem; font-weight: 600; color: var(--dark); }
.rev-flow__step-val { font-size: 1.6rem; font-weight: 900; color: var(--dark); line-height: 1; }
.rev-flow__step-val span { font-size: 0.82rem; font-weight: 700; }
.rev-flow__arrow {
  text-align: center; font-size: 0.85rem; color: var(--dark);
  padding: 2px 0;
  transform: rotate(90deg);
}
.rev-flow__result {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  background: var(--teal); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.rev-flow__result-label {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.88); letter-spacing: 0.1em;
}
.rev-flow__result-val { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1.1; }
.rev-flow__result-val span {
  display: block; font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-top: 2px; text-align: right;
}

@media (min-width: 680px) {
  .rev-flow {
    flex-direction: row; align-items: center;
    justify-content: center; padding: 40px 32px; gap: 10px;
  }
  .rev-flow__step {
    flex-direction: column; align-items: center;
    justify-content: center; min-width: 120px; flex: 1;
  }
  .rev-flow__step-label { text-align: center; }
  .rev-flow__result {
    flex-direction: column; align-items: center;
    min-width: 150px; padding: 22px 28px; flex: 1;
  }
  .rev-flow__result-val span { text-align: center; }
  .rev-flow__arrow { transform: rotate(0deg); }
}

/* ==============================================
   STRENGTHS
   ============================================== */
.strengths-pre-note {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  color: var(--dark2);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.str-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .str-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.str-item {
  background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px 20px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  position: relative;
}
.str-item::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal); border-radius: 4px 0 0 4px;
}
.str-item__num {
  font-size: 0.68rem; font-weight: 900;
  color: var(--teal); letter-spacing: 0.10em;
  flex-shrink: 0; padding-top: 2px;
}
.str-item__body { flex: 1; min-width: 0; }
.str-item__body h3 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 7px; line-height: 1.45;
  word-break: break-all; overflow-wrap: break-word;
}
.str-item__body p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; word-break: break-all; overflow-wrap: break-word; }
.str-item__point {
  font-size: 0.80rem; font-weight: 700; color: var(--teal-dark);
  margin-top: 9px; display: flex; align-items: flex-start; gap: 5px;
  padding-top: 9px; border-top: 1px dashed rgba(43,191,189,0.25);
  line-height: 1.6;
}

/* ==============================================
   CURRICULUM
   ============================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 24px;
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
  }
  .steps::before {
    content: '';
    position: absolute; top: 32px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), rgba(43,191,189,0.2));
    z-index: 0;
  }
  .step { margin: 0 6px; }
}

.step {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 14px;
  text-align: center; position: relative; z-index: 1;
}
.step--final { border-color: var(--teal); background: var(--teal-light); }
.step__num {
  display: inline-block; font-size: 0.60rem; font-weight: 900;
  letter-spacing: 0.14em; color: #fff; background: var(--teal);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.step--final .step__num { background: var(--teal-dark); }
.step__title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; word-break: break-all; overflow-wrap: break-word; }
.step p { font-size: 0.82rem; color: var(--mid); line-height: 1.72; word-break: break-all; overflow-wrap: break-word; }

.extras {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px;
}
.extras__title {
  font-size: 0.86rem; font-weight: 700; color: var(--teal-dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.extras__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.extras__tags span {
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.76rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(43,191,189,0.2);
}

/* ==============================================
   BEFORE AFTER
   ============================================== */
/* BA スライダー */
.ba-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ba-slider-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}
.ba-slider {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.ba-slide-img {
  min-width: 80%;
  flex-shrink: 0;
  margin-right: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-slide-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .ba-slide-img { min-width: 46%; }
  .ba-slide-img img { height: 280px; }
}
@media (min-width: 960px) {
  .ba-slide-img { min-width: 30%; }
  .ba-slide-img img { height: 300px; }
}
.ba-slider__arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(43,191,189,0.4);
  color: var(--teal);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.ba-slider__arrow:hover {
  background: var(--teal);
  color: #fff;
}
.ba-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.ba-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(43,191,189,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.ba-slider__dot.is-active {
  background: var(--teal);
}

.ba-card {
  background: var(--light); border-radius: var(--radius);
  padding: 12px; border: 1.5px solid var(--border);
}
.ba-card__label {
  font-size: 0.76rem; font-weight: 700;
  color: var(--teal-dark); margin-bottom: 8px; text-align: center;
}
.ba-photo {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; border-radius: var(--radius-sm);
  display: block;
}
@media (min-width: 768px) {
  .ba-card__label { font-size: 1.1rem; }
}
.ba-card__imgs { display: flex; align-items: center; gap: 6px; }
.ba-img-wrap { flex: 1; position: relative; }
.photo-placeholder {
  aspect-ratio: 1; background: var(--border); border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; color: var(--mid); font-size: 0.70rem;
}
.photo-placeholder i { font-size: 1.3rem; color: #ccc; }
.ba-badge {
  position: absolute; bottom: 5px; left: 5px;
  font-size: 0.56rem; font-weight: 900;
  letter-spacing: 0.08em; padding: 2px 7px; border-radius: 999px;
}
.ba-badge--before { background: #f1f1f1; color: var(--mid); }
.ba-badge--after  { background: var(--teal); color: #fff; }
.ba-arrow { font-size: 0.9rem; color: var(--teal); flex-shrink: 0; }
.ba-note {
  text-align: left; font-size: 0.84rem; font-weight: 500;
  color: var(--mid); line-height: 1.85; margin-bottom: 14px;
  word-break: break-all; overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .ba-note { text-align: center; font-size: 0.96rem; }
}
.ba-works-wrap {
  display: flex; justify-content: center; margin-top: 4px;
}
.ba-works-btn {
  width: auto;
  padding: 14px 32px;
  font-size: 0.90rem;
}

/* ==============================================
   COMPARISON
   ============================================== */
.comp-table {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 18px;
  box-shadow: var(--shadow-card); width: 100%;
}
.comp-row {
  display: grid; grid-template-columns: 0.9fr 1.4fr 1.4fr;
  border-bottom: 1.5px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row--head { background: var(--dark); }
.comp-row:not(.comp-row--head):nth-child(even) { background: var(--light); }
.comp-cell {
  padding: 11px 9px; font-size: 0.76rem; line-height: 1.5;
  border-right: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 4px;
  word-break: break-all; overflow-wrap: break-word;
}
@media (min-width: 480px) {
  .comp-cell { padding: 13px 13px; font-size: 0.84rem; gap: 6px; }
  .comp-row { grid-template-columns: 1fr 1.5fr 1.5fr; }
}
.comp-cell:last-child { border-right: none; }
.comp-cell--label { color: var(--mid); font-size: 0.72rem; font-weight: 600; }
@media (min-width: 480px) { .comp-cell--label { font-size: 0.80rem; } }
.comp-cell--us { font-weight: 700; color: var(--teal-dark); background: rgba(43,191,189,0.06); }
.comp-cell--other { color: var(--mid); }
.comp-row--head .comp-cell { border-right-color: rgba(255,255,255,0.1); }
.comp-row--head .comp-cell--label { color: rgba(255,255,255,0.4); }
.comp-row--head .comp-cell--us {
  background: var(--teal); color: #fff; font-weight: 900;
  font-size: 0.74rem; justify-content: center; text-align: center;
}
@media (min-width: 480px) { .comp-row--head .comp-cell--us { font-size: 0.82rem; } }
.comp-row--head .comp-cell--other {
  color: rgba(255,255,255,0.5); font-size: 0.74rem;
  background: transparent; justify-content: center; text-align: center;
}
@media (min-width: 480px) { .comp-row--head .comp-cell--other { font-size: 0.82rem; } }
.c-good { color: var(--teal); font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }
.c-bad  { color: #bbbbc0; font-size: 0.88rem; flex-shrink: 0; }
.comp-footer {
  text-align: center; font-size: 0.88rem;
  color: var(--teal-dark); font-weight: 700;
  padding: 0 16px;
}

/* ===== MESSAGE SECTION ===== */
.message-sec {
  position: relative;
  background: #f8fafb;
  overflow: hidden;
}
.message-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/story-bg.jpg') center center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.message-sec .wrap {
  position: relative;
  z-index: 1;
}
.message-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  padding: 28px 28px;
  border: 1.5px solid var(--border);
}
.message-body p {
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  color: #6b7280;
  font-style: italic;
  line-height: 2.1;
  letter-spacing: 0.04em;
  margin-bottom: 1.4em;
}
.message-body p:last-child {
  margin-bottom: 0;
}
.message-closing {
  font-size: clamp(0.96rem, 2.4vw, 1.06rem) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding-top: 24px;
  border-top: 2px solid var(--teal);
  margin-top: 8px !important;
}
.message-greeting {
  font-size: clamp(0.88rem, 2vw, 0.96rem) !important;
  color: #6b7280 !important;
  font-style: italic;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .message-body {
    margin-top: 28px;
    padding: 20px 18px;
  }
  .message-body p {
    font-size: 0.95rem;
    line-height: 2;
  }
}

/* ==============================================
   COMP TOKUTEN
   ============================================== */
.comp-tokuten {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43,191,189,0.15);
}
.comp-tokuten__head {
  background: var(--teal);
  padding: 16px 20px;
  text-align: center;
}
.comp-tokuten__head p {
  font-size: 0.95rem; color: #fff; line-height: 1.5;
  font-weight: 700; word-break: break-all;
}
.comp-tokuten__head strong { font-weight: 900; font-size: 1rem; }

.comp-tokuten__body {
  background: var(--teal-light);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 16px;
}

/* 現場見学チケット */
.comp-tokuten__value {
  text-align: center;
  font-size: 0.88rem; font-weight: 700;
  color: var(--teal-dark);
}

.comp-tokuten__ticket {
  background: #fff;
  border: 2px dashed var(--teal);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
}
.comp-tokuten__ticket-label {
  font-size: 0.68rem; font-weight: 700;
  color: var(--teal-dark); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 6px;
}
.comp-tokuten__ticket-title {
  font-size: 0.92rem; font-weight: 400;
  color: var(--dark2); line-height: 1.9;
  word-break: break-all; overflow-wrap: break-word;
}
.comp-tokuten__ticket-title em {
  font-style: normal; color: var(--teal);
}
.comp-tokuten__ticket-sub {
  font-size: 0.78rem; color: var(--mid);
  margin-top: 4px;
}

/* タグ一覧 */
.comp-tokuten__tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) {
  .comp-tokuten__tags {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .comp-tokuten__tags {
    grid-template-columns: repeat(3, 1fr);
  }
}
.comp-tokuten__tags span {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #fff; color: var(--teal-dark);
  font-size: 0.88rem; font-weight: 700;
  padding: 10px 12px; border-radius: 12px;
  border: 1.5px solid rgba(43,191,189,0.35);
  text-align: center;
}
.comp-tokuten__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

.comp-tokuten__desc {
  font-size: 0.90rem; color: var(--dark2);
  line-height: 1.75; word-break: break-all;
  text-align: center;
}
.comp-tokuten__desc strong { color: var(--dark); font-weight: 700; }

.comp-tokuten__select {
  text-align: center;
  font-size: 0.88rem; font-weight: 700;
  color: var(--dark);
  padding: 10px 0 0;
}

.comp-tokuten__note {
  font-size: 0.90rem; font-weight: 700;
  color: var(--teal-dark);
  background: #fff;
  border-left: 4px solid var(--teal);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.7; word-break: break-all;
}

/* ==============================================
   AFTER SUPPORT
   ============================================== */
#support {
  position: relative;
  overflow: hidden;
}
#support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/support-bg.png') center center / cover no-repeat;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
#support .wrap {
  position: relative;
  z-index: 1;
}
.support-lead {
  font-size: 0.92rem; color: var(--dark2);
  line-height: 1.9; margin-bottom: 24px;
  word-break: break-all; overflow-wrap: break-word;
}

.support-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 20px;
  border: 1.5px solid var(--border);
}
.support-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--dark2);
  line-height: 1.7; font-weight: 500;
  word-break: break-all; overflow-wrap: break-word;
}
.support-list__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 6px;
}

.support-voice {
  background: var(--teal); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.support-voice p {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  line-height: 1.6; word-break: break-all; overflow-wrap: break-word;
}
.support-voice p::before {
  content: '❝ ';
  font-size: 1rem; opacity: 0.7;
}

.support-note {
  font-size: 0.92rem; font-weight: 400; color: var(--dark2);
  line-height: 1.9; text-align: left;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  word-break: break-all; overflow-wrap: break-word;
}

/* ==============================================
   FAQ
   ============================================== */
.faq-list { display: flex; flex-direction: column; gap: 9px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  transition: border-color 0.22s;
}
.faq-item:has(.faq-q.is-open) { border-color: var(--teal); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 15px 14px; background: none; border: none;
  cursor: pointer; text-align: left;
}
.faq-q__icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: 0.70rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-q__text {
  flex: 1; font-size: 0.90rem; font-weight: 700;
  color: var(--dark); line-height: 1.55;
  word-break: break-all; overflow-wrap: break-word;
}
.faq-q__toggle {
  color: var(--teal); font-size: 0.80rem;
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-q.is-open .faq-q__toggle { transform: rotate(45deg); }
.faq-a {
  display: none; align-items: flex-start; gap: 10px;
  padding: 0 14px 13px;
  border-top: 1.5px solid var(--border);
}
.faq-a.is-open { display: flex; }
.faq-a__icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  font-size: 0.70rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 13px;
}
.faq-bottom-note {
  text-align: center;
  font-size: 0.88rem; font-weight: 600;
  color: var(--teal-dark);
  margin-top: 24px;
  line-height: 1.8;
}

.faq-a p {
  flex: 1; font-size: 0.88rem; color: var(--mid);
  line-height: 1.82; padding-top: 13px;
  word-break: break-all; overflow-wrap: break-word;
}

/* ==============================================
   CTA
   ============================================== */
.sec--cta {
  text-align: center; padding: 60px 0 68px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .sec--cta { padding: 88px 0 100px; } }

.sec--cta::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}

.cta-urgency {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(255,255,255,0.22); color: #fff;
  font-size: 0.70rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
  border: 1.5px solid rgba(255,255,255,0.55);
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cta-urgency__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow); animation: pulse 1.6s ease infinite;
  flex-shrink: 0;
}

.cta-title {
  font-size: clamp(1.55rem, 6vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.3;
  margin-bottom: 12px; letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  word-break: break-all; overflow-wrap: break-word;
}
.cta-title em { font-style: normal; color: var(--yellow); }

.cta-desc {
  font-size: 0.93rem; color: #fff;
  line-height: 1.9; margin-bottom: 28px;
  font-weight: 500;
  word-break: break-all; overflow-wrap: break-word;
}

.cta-boxes {
  display: flex;
  justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.cta-box {
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; min-width: 96px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cta-box i { font-size: 1.25rem; color: var(--yellow); margin-bottom: 2px; }
.cta-box strong { font-size: 0.82rem; font-weight: 900; color: #fff; }
.cta-box span { font-size: 0.68rem; color: rgba(255,255,255,0.92); font-weight: 500; }

/* CTAボタン：スマホ全幅・縦並び、540px以上で横並び */
.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 16px;
}
@media (min-width: 540px) {
  .cta-btns {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

/* CTAボタン本体スタイル */
.cta-btns .btn-fresh--main {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(230,194,0,0.45);
  font-weight: 900;
  border: 2px solid rgba(255,255,255,0.65);
  position: relative; overflow: hidden;
  width: 100%;
}
.cta-btns .btn-fresh--main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.cta-btns .btn-fresh--line {
  font-weight: 900;
  border: 2px solid rgba(255,255,255,0.45);
  position: relative; overflow: hidden;
  width: 100%;
}
.cta-btns .btn-fresh--line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
@media (min-width: 540px) {
  .cta-btns .btn-fresh--main,
  .cta-btns .btn-fresh--line { width: auto; }
}

.cta-note {
  font-size: 0.70rem; color: #fff;
  letter-spacing: 0.04em; font-weight: 600;
  padding: 0 16px;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--dark); padding: 40px 0;
  text-align: center;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}
.footer__name { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer__sub { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer__info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}
.footer__info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.footer__info-row dt {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__info-row dd {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  word-break: break-all;
}
.footer__copy { font-size: 0.68rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* =============================================
   STORY セクション
   ============================================= */
.story {
  background: var(--dark);
  padding: 100px 0 120px;
}
.story__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
}
.story__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 16px;
}
.story__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 64px;
}
.story__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.story__h3 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-top: 56px;
  margin-bottom: 24px;
}
.story__h3:first-child {
  margin-top: 0;
}
.story__text p {
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  color: rgba(255,255,255,0.72);
  line-height: 2.1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.story__em {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600;
  font-size: clamp(0.96rem, 2.4vw, 1.05rem) !important;
  line-height: 2.2 !important;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
  margin-top: 8px !important;
}

@media (min-width: 768px) {
  .story__inner { padding: 0 40px; }
  .story__text p { margin-bottom: 24px; }
}
@media (max-width: 767px) {
  .story { padding: 72px 0 88px; }
  .story__heading { margin-bottom: 48px; }
  .story__h3 { margin-top: 44px; margin-bottom: 18px; }
}

/* ==============================================
   PC：0.92rem → 1.02rem 一括拡大（768px以上）
   ============================================== */
@media (min-width: 768px) {
  .why-body__point,
  .repair-intro__desc,
  .sol-desc,
  .comp-tokuten__ticket-title,
  .support-lead,
  .support-list li,
  .support-note {
    font-size: 1.02rem;
  }
}
