body {
  font-family: 'Noto Sans JP', sans-serif;
}

.zen-maru {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

/* ヘッダー固定分の余白調整 */
.p-top {
  padding-top: 60px;
}

/* ===============================================
 * CSS変数
 * ============================================= */
/*

1. デフォルトスタイル = スマートフォン（SP）用
2. @media (min-width: 768px) = PC・タブレット用の上書き

*/

:root {
  --color-darkblue: #122559;
  --color-orange: #F67400;
  --color-bg-yellow: #FFFAF0;
  --color-neutraltext: #4E576E;
  --color-normaltext: #3F434E;
  --color-stroke: #AEAEB1;
  --gradient-orange: linear-gradient(90deg, #FF771D 0%, #FFA916 100%);

  /* フォントサイズスケール（モバイル） */
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;

  /* フォントサイズスケール（PC） */
  --font-sm-pc: 16px;
  --font-base-pc: 18px;
  --font-lg-pc: 20px;
  --font-xl-pc: 24px;
  --font-2xl-pc: 28px;
  --font-3xl-pc: 32px;
}

/* 共通テキストスタイル: normal p medium */
p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

h3 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}

.h3-noto {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.02em;
  margin: 0;
}

.h3-noto span {
  font-weight: bold;
  font-size: 22px;
}

/* ===============================================
 * 共通ユーティリティ
 * ============================================= */


.text-center {
  text-align: center;
}

.font-orange {
  color: var(--color-orange);
}

.text-orange {
  color: #f3511a;
}

.text-marker {
  background: linear-gradient(transparent 60%, rgba(252, 205, 100, 0.3) 60%);
  padding: 0 2px;
}

.text-note {
  font-size: var(--font-xs);
  font-weight: 400;
  color: #666;
  margin-top: 8px;
}

.c-card {
  border-radius: 16px;
}

.c-heading--line::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--color-orange, #F67400);
  border-radius: 3px;
}

.text-center {
  text-align: center;
}

.bg-cream {
  background-color: var(--bg-color-cream);
  -webkit-text-stroke: 0.5px #FFFFFF;
  text-stroke: 0.5px #FFFFFF;
  text-shadow:
    -1px -1px 0 #FFFFFF,
    1px -1px 0 #FFFFFF,
    -1px 1px 0 #FFFFFF,
    1px 1px 0 #FFFFFF;
}

.bg-light-cream {
  font-size: clamp(26px, 7.5vw, 32px);
}

/* ===============================================
 * 共通パーツ
 * ============================================= */
/* カード */
.c-card {
  font-size: 26px;
}

/* ===============================================
 * ヘッダー
 * ============================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  /* .container と揃える */
  z-index: 100;
  background-color: #FFFFFF;
  height: 60px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.l-header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 中央の余白が自動で広がるイメージ */
  box-sizing: border-box;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  margin: -12px 0;
  cursor: pointer;
}

.header-logo-image {
  display: block;
  height: 16px;
  width: auto;
}

.header-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.header-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  background-color: #06C755;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 3%;
  cursor: pointer;
}

.header-line-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-line-icon {
  width: 22px;
  height: 22px;
}

.header-line-text {
  white-space: nowrap;
}

/* 見出し（モバイルファースト） */
.c-heading {
  color: var(--color-darkblue);
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  display: block;
  gap: 12px;
  margin-bottom: 30px;
}

.c-heading--normal {
  color: var(--color-darkblue);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  display: block;
  gap: 12px;
  margin-bottom: 30px;
}

.c-heading--normal span {
  font-weight: bold;
}



/* ===============================================
 * FVセクション
 * ============================================= */
/* FV背景・レイアウト */
.section-fv {
  background: linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 100%);
}

.section-fv .l-container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.fv-content {
  position: relative;
  padding: 24px 0 40px;
  overflow: hidden;
}

.fv-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  /* グラデの高さはお好みで調整 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 1;
  /* 画像の上・テキストの下に配置 */
}

.fv-copy {
  position: relative;
  z-index: 2;
  /* グラデーションより前面に表示 */
  max-width: 260px;
}

.fv-label {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 9999px;
  border: 1px solid #122559;
  font-size: 14px;
  /* 基本は16px */
  font-weight: 500;
  color: #122559;
  background-color: #FFFFFF;
  margin: 24px 0 4px;
  position: relative;
  /* しっぽ用の基準 */
}

.fv-label-span {
  font-size: 13px;
  /* 「を」だけ14px */
}

.fv-label::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #122559 transparent transparent transparent;
}

.fv-label::after {
  content: "";
  position: absolute;
  left: 29px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5px 0 5px;
  border-color: #FFFFFF transparent transparent transparent;
}

.fv-heading {
  margin: 0 0 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #122559;
  white-space: nowrap;
  font-weight: 500;
}

.fv-heading-main {
  font-size: clamp(22px, 9vw, 32px);
  padding: 0 2px;
  text-shadow:
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.fv-heading-comma {
  display: inline-block;
}

.fv-heading-main .fv-heading-em {
  font-size: clamp(22px, 11vw, 50px);
  margin-left: -0.24em;
  color: var(--color-orange);
  position: relative;
  top: 4px;
  /* 文字を少し下げる */
}

.fv-marker-upper,
.fv-marker {
  position: relative;
  display: inline-block;
  padding: 0 3px;
}

/* マーカー（上の行）: わかりやすいバー型 */
.fv-marker-upper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2em;
  /* 文字との距離 */
  height: 0.2em;
  /* 線の太さ */
  background: rgba(252, 205, 100, 0.9);
  z-index: -3;
}

/* マーカー（下の行） */
.fv-marker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: 0.05em;
  height: 0.3em;
  background: rgba(252, 205, 100, 0.9);
  z-index: -3;
}

.fv-heading-sub {
  font-size: clamp(18px, 6.5vw, 28px);
  letter-spacing: -0.01em;
  text-shadow:
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.fv-subnote {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1.7;
  color: #8A8F9F;
}

.fv-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 20px;
}


.fv-badge-icon {
  display: block;
  width: auto;
  width: 56vw;
  max-width: 160px;
}

.img-fv {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  /* 上端を固定 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* 上側を基準にトリミング */
  display: block;
  z-index: 0;
}

@media (max-width: 374px) {
  .fv-heading {
    font-size: 22px;
  }

  .fv-heading-em {
    font-size: 26px;
  }
}

/* CTAブロック */
.cta-block {
  margin: 0 0 16px;
  text-align: center;
}

.cta-lead {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--color-neutraltext);
  text-align: center;
  position: relative;
  font-weight: 500;
}

.cta-lead::before,
.cta-lead::after {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 55%;
  transform-origin: center;
  background: var(--color-neutraltext);
}

.cta-lead::before {
  left: 32px;
  transform: translateY(-50%) rotate(-17deg);
}

.cta-lead::after {
  right: 32px;
  transform: translateY(-50%) rotate(17deg);
}

.cta-card {
  display: block;
  background-color: #06C755;
  border-radius: 16px;
  padding: 8px 16px 10px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 0 0 #3C7E57;
  /* 下にだけ影（ブラーなし） */
  cursor: pointer;
}

.cta-main-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.cta-main-copy {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

.cta-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-price-image {
  height: 68px;
  width: auto;
}

.cta-divider {
  border: none;
  border-top: 4px dotted rgba(255, 255, 255, 0.9);
  margin: 8px 0 8px;
}

.cta-bottom-text {
  margin: 0;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.04em;
}

.cta-line-badge {
  padding: 2px 0;
}

.cta-line-icon {
  width: 22px;
  height: 22px;
}

.cta-line-label {
  font-size: 12px;
  line-height: 1;
}

.cta-arrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cta-arrow-icon {
  width: 6px;
  height: auto;
}

@media (max-width: 374px) {
  .cta-main-copy {
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .cta-bottom-text {
    font-size: 13px;
  }

  .cta-line-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 350px) {
  .cta-main-copy {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .cta-price-image {
    height: 56px;
    width: auto;
  }
}


/* ===============================================
 * 知っていますか
 * ============================================= */
.section-know {
  position: relative;
  background-image: url('../img/section1-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: var(--gutter);
}

.section-know::after {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  /* 必要に応じて高さは調整してください */
  background-image: url('../img/section1-after.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.section-review {
  background: linear-gradient(180deg, #FFFAEF 0%, #FFFFFF 100%);
  padding-bottom: var(--gutter);
}

.review-lead {
  margin: 32px 0 56px;
  text-align: center;
}

.review-lead-line {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-neutraltext);
}

.review-lead-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(102, 84, 44, 0.35);
}

.review-benefit-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 0 40px;
  position: relative;
  padding-top: 20px;
  /* ラベル分の余白 */
}

.review-benefit-label {
  background: #122559;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
  border-radius: 50px;
  padding: 8px 52px;
  width: 280px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  display: inline-block;
}

.review-benefit-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #122559;
}

.review-benefit-header {
  background-color: var(--color-darkblue);
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.review-benefit-header::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-width: 10px 12px 0;
  border-style: solid;
  border-color: var(--color-darkblue) transparent transparent;
}

.review-benefit-body {
  padding: 28px 20px 24px;
  text-align: center;
}

.review-benefit-text {
  margin: 0 0 24px;
  color: var(--color-neutraltext);
  line-height: 1.7;
}

.review-benefit-image {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.review-list {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-heading {
  flex: 1 1 auto;
  padding-left: 20px;
}

.review-heading h3 {
  color: var(--color-darkblue);
}

.review-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-darkblue);
}

.review-meta {
  margin: 0;
  font-size: 14px;
  color: var(--color-neutraltext);
  padding-top: 8px;
}

.review-figure {
  position: relative;
}

.review-photo {
  width: 140px;
  height: auto;
  border-radius: 40px;
  display: block;
}

.review-figure-quote {
  position: absolute;
  top: 8px;
  right: -4px;
  width: 28px;
  height: auto;
}

.review-body {
  position: relative;
  padding: 20px 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--color-stroke);
  background-color: #fff;
}

.review-body::before,
.review-body::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url('../img/quotation.svg');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.review-body::before {
  top: -20px;
  left: 12px;
}

.review-body::after {
  bottom: -20px;
  right: 12px;
  rotate: 180deg;
}



.review-body-text {
  margin: 0 auto;
  max-width: 280px;
  color: var(--color-neutraltext);
  text-align: left;
}


/* ===============================================
 * ターゲット
 * ============================================= */
.section-target {
  background-color: var(--color-bg-yellow);
  margin: 0 auto;
  border-radius: 40px 40px 0 0;
}

.target-note-box {
  border: 1px solid var(--color-orange);
  border-radius: 16px;
  background: #fff;
  margin: 24px auto 0 auto;
  max-width: 720px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.target-note-box-inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.target-intro-text {
  color: var(--color-neutraltext);
  line-height: 1.7;
  text-align: left;
  padding: 16px 0 0 0;
}

.target-note-box h3 span {
  font-size: 20px;
  color: var(--color-orange);
  font-weight: 700;
}

.target-note-box h3 {
  font-size: 18px;
  color: var(--color-darkblue);
  font-weight: 700;
}

/* ===============================================
 * ご利用のメリット
 * ============================================= */

.merit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.merit-card {
  background-color: var(--color-bg-yellow);
  padding: 0 8px;
  position: relative;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
}

.merit-card-header {
  margin-bottom: 16px;
  padding-top: 8px;
  padding-left: 36px;
  /* 番号ブロック幅72px + 余白24px */
}

.merit-card-num {
  width: 48px;
  height: 56px;
  border-radius: 16px 0 16px 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-orange);
  position: absolute;
  top: -10px;
  left: -10px;
}

.merit-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-darkblue);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.merit-card-image {
  width: 90%;
  display: block;
  margin: 8px auto 0;
  /* 上に余白＋左右autoで中央寄せ */
}

@media (max-width: 374px) {
  .merit-card-num {
    width: 40px;
    height: 48px;
  }

  .merit-card-header {
    margin-bottom: 16px;
    padding-top: 8px;
    padding-left: 24px;
    /* 番号ブロック幅72px + 余白24px */
  }

  .merit-card-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-darkblue);
    line-height: 1.5;
  }
}

/* ===============================================
 * 選ばれる3つの理由
 * ============================================= */

.reason {
  border: 1px solid #FFAE5A;
  border-radius: 24px;
  padding: 56px 20px 32px;
  background-color: #fff;
  position: relative;
}

.reason-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0 0;
}

.reason-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.reason-number {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.reason-title {
  margin: 8px 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-darkblue);
  text-align: center;
}

.reason-desc {
  margin: 0 0 16px;
  color: var(--color-neutraltext);
  font-size: 14px;
  line-height: 1.7;
}

.reason-image {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 24px;
}

.reason-divider {
  border: none;
  border-top: 3px dotted var(--color-stroke);
  margin: 0;
  width: 100%;
}

/* ===============================================
* 流れセクション
* ============================================= */

.section-flow {
  background-color: var(--color-bg-yellow);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-flow {
    margin: 0 auto;
  }
}


.flow-card {
  overflow: hidden;
  position: relative;
}

.flow-card::after {
  content: "";
  display: block;
  margin: 0 0 0 48px;
  width: 6px;
  height: 54px;
  background-image: url('../img/gradient-dot.svg');
  background-repeat: no-repeat;
  background-size: 6px 54px;
}

.flow-card:last-child::after {
  content: none;
}

.flow-card-image {
  width: 100%;
  display: block;
}

.flow-card-body {
  padding: 20px 20px 24px;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}

.flow-card-title {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-orange);
}

.flow-step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 9999px;
  background-color: #122559;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}


/* ===============================================
 * 給付金の対象者
 * ============================================= */

.section-target {
  background-color: var(--color-bg-yellow);
  margin: 0 auto;
}

.target-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.target-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px 20px 32px;
  box-sizing: border-box;
}

.target-card-title {
  margin: 0 0 24px;
  padding: 18px 16px;
  border-radius: 16px;
  background-color: var(--color-darkblue);
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.target-card-text {
  margin: 0 0 24px;
  color: var(--color-neutraltext);
}

.target-card-text .text-marker {
  background: linear-gradient(transparent 60%, rgba(252, 205, 100, 0.5) 60%);
  padding: 0 2px;
}

.target-card-text .hi-light {
  font-weight: 700;
  color: var(--color-orange);
}

.target-card-divider {
  border: none;
  border-top: 3px dotted var(--color-stroke);
  margin: 24px 0;
}

.target-card-target {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
}


/* ===============================================
 * 専門家のサポート体制
 * ============================================= */

.expert-note-label {
  background: #122559;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: 50px;
  padding: 8px 16px 8px 16px;
  position: relative;
  text-align: center;
  display: inline-block;
}

.expert-note-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #122559;
}

.expert-note-list {
  list-style: none;
  margin: 0;
  padding: 0 8px;
}

.expert-note-list li {
  display: flex;
  align-items: center;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-neutraltext);
  margin-bottom: 8px;
  position: relative;
  padding-left: 36px;
}

.expert-note-list li:last-child {
  margin-bottom: 0;
}

.expert-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../img/check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.expert-note-list-divider {
  border: none;
  border-top: 3px dotted var(--color-orange);
  margin: 2px 0 8px 0;
  height: 2px;
  width: 100%;
}

.expert-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.expert-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.expert-row-content {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  max-width: calc(100% - 96px);
}

.expert-note-box {
  border: 1px solid var(--color-orange);
  border-radius: 16px;
  background: #fff;
  margin: 24px auto 0 auto;
  max-width: 720px;
  box-sizing: border-box;
  overflow: hidden;
}

.expert-intro {
  background-color: var(--color-bg-yellow);
  padding: 24px 20px 24px;
  text-align: center;
}

.expert-intro-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-darkblue);
}

.expert-intro-text {
  margin: 0 0 12px;
  color: var(--color-neutraltext);
}

.expert-intro-divider {
  border: none;
  border-top: 3px dotted var(--color-orange);
  margin: 8px auto 0;
  /* 横方向をautoにして中央寄せ */
  width: 85%;
  text-align: center;
}

.expert-note-body {
  padding: 24px 20px 24px;
}

.expert-note-text {
  color: var(--color-neutraltext);
  line-height: 1.7;
  text-align: left;
}

.expert-box {
  padding: 24px 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Expert inner layout: avatar + info */
.expert-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;

}

.expert-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.expert-office {
  color: var(--color-neutraltext);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.3;
}

.expert-role {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
}

/* Align the name box to the bottom of the role row */
.expert-name-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  margin: 0;
}

.expert-title {
  font-weight: bold;
  color: var(--color-normaltext);
}

.expert-name {
  font-weight: bold;
}

.expert-ruby {
  font-size: 10px;
}


.expert-note-box h3 {
  font-size: 18px;
  margin: 0;
}

.expert-note-box h3 span {
  font-size: 20px;
  color: var(--color-orange);
  font-weight: 700;
}

.expert-list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ===============================================
 * 質問エリア
 * ============================================= */
.faq-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.faq-box {
  border: 1px solid #AEAEB1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-q-row {
  display: flex;
  flex-direction: column;
}

.faq-q-row::after {
  content: "";
  display: block;
  border-top: 3px dotted var(--color-stroke);
  margin: 16px 0 0;
  height: 2px;
  width: 100%;
}

.faq-q-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-divider {
  border: none;
  border-top: 2px dotted var(--faq-divider-color, #AEAEB1);
  margin: 24px 0;
  height: 2px;
  width: 100%;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #122559;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
  padding-bottom: 2px;
  padding-right: 1px;
}

.faq-q-text {
  font-weight: bold;
  font-size: 16px;
  color: var(--color-neutraltext);
  line-height: 1.4;
}

.faq-a-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #FFEECB;
  color: var(--color-darkblue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
  padding-right: 1px;
}

.faq-divider {
  border: none;
  border-top: 3px dotted var(--faq-divider-color, #AEAEB1);
  margin: 24px 0;
  height: 2px;
}

/* ===============================================
 * フッター
 * ============================================= */
.l-footer {
  background-color: #003450;
  color: #ffffff;
}

.l-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  box-sizing: border-box;
}

.footer-logo {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 700;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover {
  opacity: 0.9;
}

.footer-copy {
  margin: 48px 0 0;
  text-align: center;
  font-size: 14px;
}

/* ===============================================
 * フッター直前CTA
 * ============================================= */
.cta-area-wrap {
  padding: 32px 0 20px;
}

.bottom-cta {
  padding: 36px 0 40px;
}

.bottom-cta-lead {
  margin: 0 0 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-neutraltext);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.bottom-cta-lead::before,
.bottom-cta-lead::after {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 55%;
  transform-origin: center;
  background: var(--color-neutraltext);
}

.bottom-cta-lead::before {
  left: 60px;
  transform: translateY(-50%) rotate(-17deg);
}

.bottom-cta-lead::after {
  right: 60px;
  transform: translateY(-50%) rotate(17deg);
}

.bottom-cta-line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.bottom-cta-line-icon {
  width: 24px;
  height: 24px;
}

.bottom-cta-lead-text {
  font-size: 18px;
  font-weight: 500;
}

.cta-area {
  padding: 0 20px;
}

.bottom-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  background-color: #00c853;
  border-radius: 16px;
  padding: 10px 12px 16px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 0 #008c3a;
  cursor: pointer;
}

.bottom-cta-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px 2px 8px;
  border-radius: 6px;
  background-color: #ffffff;
  gap: 0;
}

.bottom-cta-check-wrap {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bottom-cta-check-icon {
  width: 16px;
  height: 16px;
}

.bottom-cta-label-text {
  font-size: 13px;
  color: #7c7c7c;
  font-weight: 500;
}

.bottom-cta-main {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bottom-cta-main-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.bottom-cta-main-arrow-icon {
  width: 10px;
  height: auto;
}

.error {
  margin: 150px auto;
}

.error p {
  margin-top: 20px;
  text-align: center;
}

.not-found-head {
  text-align: center;
}

.btn-wrap {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}