/* ==============================================
   5ch特化LP スタイルシート
   アークレスト法律事務所
   ============================================== */

:root {
  --color-hero-bg: #0f1923;
  --color-hero-gradient: linear-gradient(135deg, #0f1923 0%, #1a2a3a 100%);
  --color-primary: #1a56db;
  --color-primary-dark: #1344b0;
  --color-accent: #e67e22;
  --color-accent-dark: #d35400;
  --color-danger: #c0392b;
  --color-danger-light: #fef2f2;
  --color-danger-border: #fca5a5;
  --color-success: #06C755;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f5f7fa;
  --color-bg-dark: #111827;
  --color-text: #374151;
  --color-text-dark: #111827;
  --color-text-light: #6b7280;
  --color-text-white: #f9fafb;
  --color-border: #e5e7eb;
  --color-card-shadow: rgba(0, 0, 0, 0.08);
  --font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --max-width: 960px;
  --section-padding: 64px 0;
  --section-padding-sp: 48px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg-white);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.section-title--white {
  color: var(--color-text-white);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==============================================
   [1] FV（ファーストビュー）
   ============================================== */

.fv {
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

/* スマホ用FV画像 */
.fv__sp-visual {
  display: block;
}

.fv__sp-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ用サブコピーエリア */
.fv__sp-sub-copy {
  display: block;
  background: #f8f6f3;
  padding: 18px 20px;
}

.fv__sp-sub-copy p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #3b1a08;
  text-align: left;
}

/* PC用コンテンツはスマホで非表示 */
.fv__pc-content {
  display: none;
}


.fv__logo {
  display: block;
  max-width: 280px;
  margin-bottom: 32px;
}

.fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .fv__logo {
    max-width: 360px;
  }
}

.fv__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.fv__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(59, 26, 8, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3b1a08;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}

.fv__badge .icon {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.fv__main-copy {
  font-family: var(--font-sans);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #3b1a08;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

.fv__main-copy .highlight {
  color: var(--color-accent);
}

.fv__sub-copy {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3b1a08;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px 20px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .fv {
    padding: 60px 0 72px;
    background: url('../img/fv_bg-pc.webp') center center / cover no-repeat;
  }

  .fv__sp-visual {
    display: none;
  }

  .fv__sp-sub-copy {
    display: none;
  }

  .fv__pc-content {
    display: block;
  }

  .fv__main-copy {
    font-size: 2.25rem;
  }

  .fv__sub-copy {
    font-size: 1.05rem;
  }
}

/* ==============================================
   訴求ポイントバー（FV直下）
   ============================================== */

.appeal-bar {
  background: #1a2633;
  padding: 14px 0;
}

.appeal-bar__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.appeal-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.appeal-bar__item:nth-child(3n) {
  border-right: none;
}

.appeal-bar__item:nth-child(n+4) {
  border-bottom: none;
}

.appeal-bar__sub {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.appeal-bar__main {
  display: block;
  color: #f0e6d3;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .appeal-bar__list {
    grid-template-columns: repeat(6, 1fr);
  }

  .appeal-bar__item {
    padding: 10px 8px;
    border-bottom: none;
  }

  .appeal-bar__item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .appeal-bar__item:last-child {
    border-right: none;
  }

  .appeal-bar__sub {
    font-size: 0.9rem;
  }

  .appeal-bar__main {
    font-size: 1.5rem;
  }
}

/* ==============================================
   CTA ブロック（共通）- lp14デザイン準拠
   ============================================== */

.cta-block {
  background-color: #E2E2E2;
  position: relative;
}

.cta-block::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(59, 79, 93, 0.1);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.cta-block .container {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta-block__txt01 {
  margin-bottom: 15px;
  color: #282828;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-sans);
}

.cta-block__txt02 {
  width: 100%;
  padding: 6px 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
  font-feature-settings: "palt";
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
}

.cta-block__txt02::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #5B4844;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(50% + 10px) calc(100% - 12px), 50% 100%, calc(50% - 10px) calc(100% - 12px), 0 calc(100% - 12px));
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cta-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 375px;
  margin: 15px auto 0;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 6px 0;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  font-feature-settings: "palt";
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.85;
}

.cta-btn small {
  font-size: 10px;
  font-weight: 600;
}

.cta-btn--form {
  background-color: #294C7A;
}

.cta-btn--tel {
  background-color: #C5400B;
}

.cta-btn--line {
  background-color: #00B900;
}

.cta-block__logo {
  width: 100%;
  max-width: 190px;
  margin: 25px auto 0;
}

.cta-block__logo img {
  width: 100%;
  display: block;
}

@media (min-width: 375px) {
  .cta-block__txt01 {
    font-size: 13px;
  }

  .cta-block__txt02 {
    font-size: 18px;
  }

  .cta-btns {
    gap: 7px;
  }

  .cta-btn {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .cta-block .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-block__txt01 {
    font-size: 18px;
  }

  .cta-block__txt02 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 1.5em 12px;
    font-size: 24px;
  }

  .cta-btns {
    max-width: 500px;
    margin-top: 20px;
    gap: 7px;
  }

  .cta-btn {
    padding: 0 0 10px;
    font-size: 18px;
  }

  .cta-block__logo {
    max-width: 260px;
  }
}

@media (min-width: 992px) {
  .cta-block .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-block__txt01 {
    font-size: 24px;
  }

  .cta-block__txt02 {
    padding: 6px 2em 12px;
    font-size: 28px;
  }

  .cta-btns {
    max-width: 768px;
    gap: 10px;
  }

  .cta-btn {
    padding: 8px 0 14px;
    font-size: 20px;
  }

  .cta-btn small {
    font-size: 16px;
  }

  .cta-block__logo {
    max-width: 260px;
  }
}

/* ==============================================
   最終CTAブロック
   ============================================== */

.cta-final {
  padding: 0;
}

.cta-final .cta-final__sub {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ==============================================
   [2] お悩みセクション
   ============================================== */

.troubles {
  padding: var(--section-padding-sp);
  background: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .troubles {
    padding: var(--section-padding);
  }
}

.troubles .section-title {
  text-align: center;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .troubles .section-title {
    font-size: 2rem;
  }
}

.persona-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .persona-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.persona-card {
  background: var(--color-bg-white);
  border: none;
  border-radius: 16px;
  padding: 0 0 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persona-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 28px auto 0;
  border: 4px solid var(--color-bg-gray);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.persona-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .persona-card__photo {
    width: 140px;
    height: 140px;
  }
}

.persona-card__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin: 16px 0 16px;
  text-align: center;
}

.persona-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  width: 100%;
}

.persona-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
}

.persona-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-danger);
}

.troubles__summary {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.troubles__summary strong {
  color: var(--color-primary);
}

/* ==============================================
   [3] 放置リスクセクション
   ============================================== */

.risks {
  background: var(--color-bg-gray);
}

/* --- 拡散リスク上段（暗色背景 + 画像3カード） --- */
.risks__spread {
  padding: 40px 0;
  background: linear-gradient(180deg, #3B4F5D 40%, #5B4844 40%);
}

@media (min-width: 768px) {
  .risks__spread {
    padding: 60px 0;
  }
}

.risk-spread-cards {
  display: flex;
  gap: 12px;
}

.risk-spread-card {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.risk-spread-card__img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.risk-spread-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

.risk-spread-card__text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
}

.risk-spread-card__text br {
  display: none;
}

@media (min-width: 375px) {
  .risk-spread-card__text {
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) {
  .risk-spread-card__text br {
    display: inline;
  }
}

@media (min-width: 768px) {
  .risk-spread-cards {
    max-width: 768px;
    margin: 0 auto;
  }

  .risk-spread-card__text {
    font-size: 1rem;
  }
}

/* --- 生活への影響下段（画像付き6カード） --- */
.risks__impact {
  padding: 40px 0;
  background-color: #f2f2f2;
}

@media (min-width: 768px) {
  .risks__impact {
    padding: 50px 0;
  }
}

.risk-impact__title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.5;
}

.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .risk-impact__title {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .sp-only {
    display: none;
  }
}

.risk-impact__grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto 30px;
  row-gap: 12px;
}

.risk-impact__item {
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.risk-impact__item:nth-child(odd) {
  padding-right: 8px;
}

.risk-impact__item:nth-child(even) {
  padding-left: 8px;
}

.risk-impact__item-img {
  width: 100%;
  margin: 0 0 6px;
  border-radius: 6px;
  overflow: hidden;
}

.risk-impact__item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.risk-impact__item-title {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #8F6E2A;
  color: #7E6123;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.risk-impact__item-text {
  font-size: 0.82rem;
  color: var(--color-text);
  line-height: 1.5;
}

@media (min-width: 576px) {
  .risk-impact__grid {
    row-gap: 16px;
  }
}

@media (min-width: 768px) {
  .risk-impact__grid {
    max-width: 810px;
  }

  .risk-impact__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .risk-impact__item:nth-child(odd),
  .risk-impact__item:nth-child(even) {
    padding: 0;
  }

  .risk-impact__item:nth-child(3n+1) {
    padding: 0 6px 0 15px;
  }

  .risk-impact__item:nth-child(3n+2) {
    padding: 0 10px;
  }

  .risk-impact__item:nth-child(3n+3) {
    padding: 0 15px 0 6px;
  }

  .risk-impact__grid {
    row-gap: 20px;
  }

  .risk-impact__item-img {
    margin-bottom: 12px;
  }

  .risk-impact__item-title {
    padding-bottom: 6px;
    margin-bottom: 6px;
    font-size: 1.25rem;
  }

  .risk-impact__item-text {
    font-size: 0.95rem;
  }
}

.risks__summary {
  background: var(--color-bg-white);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .risks__summary {
    text-align: center;
  }
}

.risks__summary strong {
  color: var(--color-danger);
}

/* ==============================================
   [4] 素人の危険性 + [5] なぜ弁護士
   ============================================== */

.diy-danger {
  padding: var(--section-padding-sp);
  background: var(--color-bg-white);
}

@media (min-width: 768px) {
  .diy-danger {
    padding: var(--section-padding);
  }
}

.diy-danger__lead {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 32px;
}

.danger-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.danger-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 24px 20px;
  background: var(--color-danger-light);
  border: 1px solid var(--color-danger-border);
  border-radius: 10px;
}

@media (min-width: 768px) {
  .danger-item {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 24px;
  }
}

.danger-item__icon {
  flex-shrink: 0;
  width: 100px;
}

.danger-item__icon img {
  width: 100%;
  height: auto;
}

.danger-item__body {
  flex: 1;
}

.danger-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.danger-item__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
}

.why-lawyer {
  padding: var(--section-padding-sp);
  background: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .why-lawyer {
    padding: var(--section-padding);
  }
}

.lawyer-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lawyer-reason {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-white);
  border-radius: 12px;
  box-shadow: 0 1px 4px var(--color-card-shadow);
}

.lawyer-reason__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.lawyer-reason__body {
  flex: 1;
}

.lawyer-reason__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.lawyer-reason__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
}

.lawyer-reason__note {
  margin-top: 12px;
  padding: 12px 16px;
  background: #eff6ff;
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-primary-dark);
}

/* ==============================================
   [6] 選ばれる理由（lp14 sec05_cont デザイン転用）
   ============================================== */

.reasons {
  padding: 35px 0;
  background-color: #ECEFF0;
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), #CAD9E4 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #CAD9E4 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
}

.reasons .section-title {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  font-feature-settings: "palt";
  color: var(--color-text-dark);
  margin-bottom: 34px;
}

.reasons__box {
  width: 100%;
  padding: 40px 12px 20px;
  background-color: #3B4F5D;
  position: relative;
}

.reasons__box::before {
  content: "";
  width: 26px;
  height: 30px;
  background: linear-gradient(180deg, #D19E38 0%, #6B511D 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.reasons__box-title {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.reason-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.reason-card {
  padding: 10px 0;
  background-color: #FFF;
  position: relative;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.reason-card::before {
  content: "";
  width: 17px;
  height: 15px;
  background-color: #8F6E2A;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.reason-card__body {
  flex: 1;
}

.reason-card__title {
  padding: 0 12px 6px;
  border-bottom: 1px solid #AA231C;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-text-dark);
  margin-bottom: 0;
  font-feature-settings: "palt";
}

.reason-card__title strong {
  color: #AA231C;
  font-weight: 300;
}

.reason-card__text {
  padding: 6px 12px 0;
  font-size: 0.9375rem;
  line-height: 1.575;
  color: var(--color-text);
}

.reasons__box-footer {
  color: #E2CFA1;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.52;
  text-align: center;
  font-feature-settings: "palt";
}

@media (min-width: 375px) {
  .reasons .section-title {
    font-size: 1.5rem;
  }

  .reasons__box-title {
    font-size: 1.2rem;
  }

  .reason-card__title {
    padding: 0 16px 6px;
    font-size: 1.125rem;
  }

  .reasons__box-footer {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .reasons {
    padding: 50px 0;
  }

  .reasons .section-title {
    margin-bottom: 40px;
    font-size: 2.125rem;
  }

  .reasons__box {
    padding: 60px 20px 40px;
  }

  .reasons__box-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .reason-cards {
    margin-bottom: 30px;
  }

  .reason-card {
    padding: 24px 0;
  }

  .reason-card__title {
    padding: 0 20px 15px;
    font-size: 1.5rem;
  }

  .reason-card__text {
    padding: 15px 20px 0;
    font-size: 1.125rem;
  }

  .reasons__box-footer {
    font-size: 2.125rem;
  }
}

/* ==============================================
   [7] 対応の流れ
   ============================================== */

.flow {
  padding: var(--section-padding-sp);
  background: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .flow {
    padding: var(--section-padding);
  }
}

.flow-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .flow-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .flow-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.flow-card {
  display: flex;
  gap: 14px;
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 4px var(--color-card-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.flow-card:hover {
  box-shadow: 0 4px 16px var(--color-card-shadow);
  transform: translateY(-2px);
}

.flow-card__img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.flow-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-card__body {
  flex: 1;
  min-width: 0;
}

.flow-card__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.flow-card__text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ==============================================
   [8] 料金
   ============================================== */

.price {
  padding: var(--section-padding-sp);
  background: var(--color-bg-white);
}

@media (min-width: 768px) {
  .price {
    padding: var(--section-padding);
  }
}

.price-table-wrap {
  margin-bottom: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.05rem;
  word-break: break-all;
}

.price-table thead th {
  background: var(--color-bg-dark);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-bg-gray);
}

.price-table tbody td:last-child {
  font-weight: 700;
  color: var(--color-text-dark);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 18px 24px;
    font-size: 1.25rem;
    word-break: normal;
  }

  .price-table thead th {
    font-size: 1.15rem;
  }

  .price-table td br {
    display: none;
  }
}

.price-table tbody td i {
  color: var(--color-text-light);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.price-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--color-bg-gray);
  border-radius: 8px;
}

.price-notes li {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==============================================
   [9] 弁護士紹介
   ============================================== */

.lawyer-intro {
  padding: var(--section-padding-sp);
  background: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .lawyer-intro {
    padding: var(--section-padding);
  }
}

.lawyer-profile {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 1px 4px var(--color-card-shadow);
}

@media (min-width: 768px) {
  .lawyer-profile {
    display: flex;
    gap: 32px;
    padding: 40px;
  }
}

.lawyer-profile__photo {
  flex-shrink: 0;
  width: 280px;
  margin: 0 auto 24px;
}

.lawyer-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .lawyer-profile__photo {
    width: 300px;
    margin: 0;
  }
}

.lawyer-profile__info {
  flex: 1;
}

.lawyer-profile__role {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.lawyer-profile__name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.lawyer-profile__name-kana {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.lawyer-profile__credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.lawyer-profile__credentials li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text);
}

.lawyer-profile__credentials li i {
  color: var(--color-primary);
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
}

.lawyer-profile__message {
  padding: 20px;
  background: var(--color-bg-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.office-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.office-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #eff6ff;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.office-stat i {
  font-size: 0.9rem;
}

/* ==============================================
   [10] FAQ
   ============================================== */

.faq {
  padding: var(--section-padding-sp);
  background: var(--color-bg-white);
}

@media (min-width: 768px) {
  .faq {
    padding: var(--section-padding);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-bg-white);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: var(--color-bg-gray);
}

.faq-item__q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.faq-item__q-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  flex: 1;
  padding-top: 2px;
}

.faq-item__toggle {
  flex-shrink: 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
  transition: transform 0.3s;
  padding-top: 4px;
}

.faq-item.is-open .faq-item__toggle {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px 0 60px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding: 0 20px 18px 60px;
}

.faq-item__a-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ==============================================
   フッター
   ============================================== */

.footer {
  background: var(--color-bg-dark);
  padding: 48px 0 24px;
  text-align: center;
}

/* --- フッター事務所情報 --- */

.footer-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info__col {
  flex: 1;
  min-width: 0;
}

.footer-info__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-info__zip {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer-info__address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-info__map-link {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-info__map-link:hover {
  opacity: 0.7;
}

.footer-info__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 0.82rem;
}

.footer-info__dl dt {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.footer-info__dl dd {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-info__tel {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-info__tel:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .footer-info {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px 24px;
  }
}

/* --- プライバシーポリシー（折りたたみ） --- */

.footer-privacy {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: left;
}

.footer-privacy__summary {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
  transition: color 0.2s;
}

.footer-privacy__summary::-webkit-details-marker {
  display: none;
}

.footer-privacy__summary::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 8px;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.footer-privacy[open] > .footer-privacy__summary::before {
  transform: rotate(135deg);
}

.footer-privacy__summary:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-privacy__summary .icon {
  margin-right: 4px;
}

.footer-privacy__body {
  padding: 16px 0 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.footer-privacy__body h3 {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.footer-privacy__body h4 {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 14px 0 4px;
}

.footer-privacy__body p {
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .footer-privacy {
    padding: 0 16px;
  }
}

.footer__text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==============================================
   モバイル固定フッター
   ============================================== */

.footer-contact-sp {
  display: none;
  width: 100%;
  padding: 1% 0;
  background-color: #14223d;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1030;
  letter-spacing: -0.4em;
  text-align: center;
}

.footer-contact-sp > * {
  display: inline-block;
  letter-spacing: normal;
}

.footer-contact-sp a {
  width: 32.33333%;
  margin: 0 0.5%;
}

.footer-contact-sp a img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .footer-contact-sp {
    display: block;
  }
}

/* ==============================================
   ユーティリティ
   ============================================== */


/* ==============================================
   追加のビジュアル仕上げ
   ============================================== */

.fv::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(26, 86, 219, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.persona-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.persona-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.reason-card {
  transition: box-shadow 0.25s ease;
}

.reason-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn:active {
  opacity: 0.75;
}

.risk-spread-card {
  transition: transform 0.25s ease;
}

.risk-spread-card:hover {
  transform: translateY(-3px);
}


@media print {
  .footer-contact-sp,
  .cta-block {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}
