@charset "UTF-8";
/* ==========================================================================
   /flow/ 家づくりの流れ
   ========================================================================== */
:root {
  --flow-main: #004972;      /* サイト共通のメインカラー（ネイビー） */
  --flow-sub: #0071B2;       /* サブカラー（ブルー） */
  --flow-accent: #F6251D;    /* c-head01 のアクセント（レッド） */
  --flow-bg: #F0EFEB;        /* ヒーロー背景（参考デザインのベージュ） */
  --flow-gray: #f6f6f6;
  --flow-line: #dcdcdc;
  --flow-text: #333;
  --flow-build: #004972;
  --flow-land: #4E8B3A;
  --flow-money: #D98A12;
  --flow-proc: #6C6C6C;
}

/* PC / SP 出し分け（他下層ページと同じ挙動） */
.pc-content { display: block; }
.sp-content { display: none; }
@media screen and (max-width: 768px) {
  .pc-content { display: none; }
  .sp-content { display: block; }
}
br.pc-content, br.sp-content { display: inline; }
@media screen and (max-width: 768px) {
  br.pc-content { display: none; }
}
@media screen and (min-width: 769px) {
  br.sp-content { display: none; }
}

/* base
-------------------------------------------------------------------------- */
/* ヘッダー直下のスペーサー（.l-nav-blank）が float のため回り込みを解除（/interview/ と同様） */
.l-contents { clear: both; }

.flow {
  color: var(--flow-text);
  font-size: 1.5rem;
  line-height: 1.9;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .flow {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.flow :where(p) { margin: 0; }
.flow :where(strong) { font-weight: 700; }
.flow :where(small) { font-size: 0.85em; }
.flow :where(ol, ul) { list-style: none; margin: 0; padding: 0; }
.flow :where(a) { color: inherit; }
/* 共通ボタン（赤背景）は白文字を維持（上の color: inherit で上書きされないよう明示） */
.flow .c-btn01__link { color: #fff; }
.flow .c-btn01__link:hover { color: var(--flow-accent); }
.flow :where(h1, h2, h3, h4) { margin: 0; }
/* アンカー到達位置：固定ヘッダー＋追従ナビの分だけ下げる（JS で --flow-header-h / --flow-nav-h をセット） */
.flow [id] {
  scroll-margin-top: calc(var(--flow-header-h, 100px) + var(--flow-nav-h, 56px) + 16px);
}
.flow .u-marker {
  background: linear-gradient(transparent 60%, rgba(0, 113, 178, 0.18) 60%);
}

/* ページタイトル（/interview/ と同じ .c-head01 構造）
-------------------------------------------------------------------------- */
.flow__inner {
  padding-top: 20px;
  padding-bottom: 0;
}
.flow__inner .c-head01 { margin-bottom: 24px; }
@media all and (min-width: 768px) {
  .flow__inner .c-head01 { margin-bottom: 32px; }
}

/* パンくず */
.flow .l-breadcrumb-list { font-size: 1.2rem; }

/* ステップナビ（追従・現在地ハイライト）
-------------------------------------------------------------------------- */
.flow-nav {
  position: -webkit-sticky;
  position: sticky;
  top: var(--flow-header-h, 0px);
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--flow-line);
  border-bottom: 1px solid var(--flow-line);
}
.flow-nav__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.flow-nav__scroll::-webkit-scrollbar { display: none; }
.flow-nav__list {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  padding: 12px 0;
}
.flow-nav__item {
  position: relative;
  flex: 0 0 auto;
  padding-right: 36px;
}
.flow-nav__item:last-child { padding-right: 20px; }
.flow-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  transform: translateY(-50%) rotate(45deg);
}
.flow-nav__item a {
  display: block;
  padding: 4px 6px 6px;
  margin: 0 -6px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, background-color 0.2s;
}
.flow-nav__item a:hover { opacity: 0.6; }
.flow-nav__num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999;
  line-height: 1;
  margin-bottom: 4px;
}
.flow-nav__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.flow-nav__item.is-active a { background: #eef3f7; }
.flow-nav__item.is-active .flow-nav__num,
.flow-nav__item.is-active .flow-nav__label { color: var(--flow-main); }
.flow-nav__item.is-active .flow-nav__label::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--flow-main);
}
@media screen and (max-width: 768px) {
  .flow-nav__list { padding: 10px 0; }
  .flow-nav__item { padding-right: 30px; }
  .flow-nav__item:not(:last-child)::after { right: 11px; }
  .flow-nav__label { font-size: 1.2rem; }
}

/* 共通見出し
-------------------------------------------------------------------------- */
.flow-heading { margin-bottom: 28px; }
.flow-heading::before {
  content: "";
  display: block;
  width: 18px;
  height: 6px;
  margin-bottom: 14px;
  background: var(--flow-accent);
}
.flow-heading__en {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #999;
  line-height: 1;
  margin-bottom: 8px;
}
.flow-heading__ja {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.flow-heading.is-center { text-align: center; }
.flow-heading.is-center::before { margin-left: auto; margin-right: auto; }
@media screen and (max-width: 768px) {
  .flow-heading { margin-bottom: 20px; }
  .flow-heading__ja { font-size: 2.1rem; }
}

/* ① ヒーロー（参考デザインのベージュ背景）
-------------------------------------------------------------------------- */
.flow-hero {
  background: var(--flow-bg);
  padding: 64px 0 72px;
}
.flow-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.flow-hero__lead { max-width: 820px; }
.flow-hero__lead p + p { margin-top: 1em; }
.flow-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.flow-hero__point {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 calc(33.333% - 11px);
  min-width: 260px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.5rem;
  line-height: 1.5;
}
.flow-hero__point-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--flow-main);
  color: #fff;
}
.flow-hero__point-icon svg { width: 24px; height: 24px; }
.flow-hero__point-text small {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
}
.flow-hero__btn { margin: 40px 0 0; }
@media screen and (max-width: 768px) {
  .flow-hero { padding: 40px 0 48px; }
  .flow-hero__title { font-size: 2.1rem; letter-spacing: 0.02em; margin-bottom: 20px; }
  .flow-hero__points { margin-top: 28px; gap: 10px; }
  .flow-hero__point { flex-basis: 100%; min-width: 0; padding: 14px 16px; font-size: 1.4rem; }
  .flow-hero__point-icon { width: 38px; height: 38px; }
  .flow-hero__point-icon svg { width: 20px; height: 20px; }
  .flow-hero__btn { margin: 30px auto 0; }
}

/* ② 全体サマリー（4フェーズカード）
-------------------------------------------------------------------------- */
.flow-summary {
  background: var(--flow-gray);
  padding: 80px 0;
}
.flow-summary__lead { margin-bottom: 40px; }
.flow-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.flow-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--flow-line);
  border-radius: 8px;
  overflow: hidden;
}
.flow-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 22px 60px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}
.flow-card__link:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.flow-card__head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--flow-line);
}
.flow-card__num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--flow-main);
  margin-bottom: 8px;
}
.flow-card__num small {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: #999;
  margin-bottom: 4px;
}
.flow-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.flow-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 100px;
  background: var(--flow-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
.flow-card__body { font-size: 1.3rem; line-height: 1.7; }
.flow-card__body dt {
  font-weight: 700;
  color: var(--flow-main);
  margin-top: 12px;
}
.flow-card__body dt:first-child { margin-top: 0; }
.flow-card__body dt::before {
  content: "■";
  font-size: 0.7em;
  margin-right: 6px;
  vertical-align: middle;
}
.flow-card__body dd { margin: 0; }
.flow-card__body dd.is-emphasis { font-weight: 700; color: var(--flow-accent); }
.flow-card__more {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding-top: 12px;
  border-top: 1px dotted var(--flow-line);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--flow-sub);
}
.flow-card__more::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid var(--flow-sub);
  border-bottom: 2px solid var(--flow-sub);
  transform: rotate(45deg);
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.flow-card.is-free { border-color: var(--flow-main); }
.flow-card.is-free .flow-card__head { border-bottom-color: var(--flow-main); }
@media screen and (max-width: 1119px) {
  .flow-cards { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
  .flow-summary { padding: 56px 0; }
  .flow-summary__lead { margin-bottom: 28px; }
  .flow-cards { grid-template-columns: 1fr; gap: 14px; }
  .flow-card__link { padding: 18px 18px 56px; }
  .flow-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; padding-bottom: 12px; margin-bottom: 12px; }
  .flow-card__num { font-size: 2.4rem; margin-bottom: 0; }
  .flow-card__num small { display: none; }
  .flow-card__title { font-size: 1.7rem; }
  .flow-card__badge { top: 12px; right: 12px; }
  .flow-card__more { left: 18px; right: 18px; }
}

/* ③ タイムライン
-------------------------------------------------------------------------- */
.flow-timeline { padding: 80px 0 40px; }
@media screen and (max-width: 768px) {
  .flow-timeline { padding: 56px 0 24px; }
}

/* 凡例 */
.flow-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 40px;
  padding: 14px 20px;
  background: var(--flow-gray);
  border-radius: 6px;
  font-size: 1.3rem;
}
.flow-legend li { display: flex; align-items: center; gap: 8px; }
@media screen and (max-width: 768px) {
  .flow-legend { gap: 8px 16px; margin-bottom: 28px; padding: 12px 14px; font-size: 1.2rem; }
}

/* タグ */
.flow-tag {
  display: inline-block;
  padding: 0 8px;
  border-radius: 3px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  white-space: nowrap;
  vertical-align: middle;
}
.flow-tag.is-build { background: var(--flow-build); }
.flow-tag.is-land  { background: var(--flow-land); }
.flow-tag.is-money { background: var(--flow-money); }
.flow-tag.is-proc  { background: var(--flow-proc); }
.flow-tag.is-alert { background: var(--flow-accent); }
.flow-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: 12px;
  vertical-align: middle;
}

/* フェーズ */
.flow-phase { margin-bottom: 72px; }
.flow-phase:last-child { margin-bottom: 0; }
.flow-phase__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--flow-main);
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.flow-phase__num {
  flex: 0 0 auto;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.flow-phase__num small {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-bottom: 4px;
}
.flow-phase__titles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.flow-phase__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}
.flow-phase__badge {
  display: inline-block;
  padding: 2px 14px;
  border-radius: 100px;
  background: var(--flow-accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.7;
}
.flow-phase__term {
  display: inline-block;
  padding: 2px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1.7;
}
.flow-phase__note {
  padding: 18px 28px;
  background: var(--flow-gray);
  border-left: 1px solid var(--flow-line);
  border-right: 1px solid var(--flow-line);
}
.flow-phase.is-free .flow-phase__note strong { color: var(--flow-accent); }
@media screen and (max-width: 768px) {
  .flow-phase { margin-bottom: 48px; }
  .flow-phase__head { gap: 16px; padding: 16px 18px; }
  .flow-phase__num { font-size: 2.8rem; padding-right: 16px; }
  .flow-phase__title { font-size: 1.9rem; }
  .flow-phase__badge, .flow-phase__term { font-size: 1.2rem; }
  .flow-phase__note { padding: 14px 18px; }
}

/* ステップ（参考デザイン：左に丸番号、右に本文） */
.flow-steps {
  border: 1px solid var(--flow-line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 8px 28px 8px;
}
.flow-step {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 28px 0;
}
.flow-step + .flow-step { border-top: 1px solid var(--flow-line); }
.flow-step__num {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
  line-height: 1;
}
.flow-step__num small {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 4px;
}
.flow-step__num b {
  font-size: 1.7rem;
  font-weight: 700;
}
/* 縦のつなぎ線 */
.flow-step::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--flow-line);
}
.flow-step:first-child::before { top: 28px; }
.flow-step:last-child::before { bottom: auto; height: 28px; }
.flow-step:first-child:last-child::before { display: none; }
.flow-step__body { flex: 1 1 auto; min-width: 0; padding-top: 4px; }
.flow-step__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.flow-step__list { margin-top: 8px; padding-left: 1.2em; }
.flow-step__list li { text-indent: -1.2em; }
.flow-step__list li::before { content: "・"; }
.flow-caution { color: #666; }
.flow-alert {
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid var(--flow-accent);
  border-radius: 4px;
  color: var(--flow-accent);
  background: #fff6f5;
}
.flow-alert strong { color: var(--flow-accent); }
.flow-step.is-important .flow-step__num {
  border-color: var(--flow-main);
  background: var(--flow-main);
  color: #fff;
}
.flow-step.is-important .flow-step__num small { color: rgba(255, 255, 255, 0.8); }
.flow-step.is-goal .flow-step__num {
  border-color: var(--flow-accent);
  background: var(--flow-accent);
  color: #fff;
}
.flow-step.is-goal .flow-step__num small { color: rgba(255, 255, 255, 0.85); }

.flow .flow-term-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.3rem;
  color: var(--flow-sub);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.flow .flow-term-link::before {
  content: "→";
  margin-right: 4px;
  text-decoration: none;
}
.flow .flow-term-link:hover { opacity: 0.7; }

@media screen and (max-width: 768px) {
  .flow-steps { padding: 4px 16px; }
  .flow-step { gap: 12px; padding: 20px 0; }
  .flow-step__num { width: 46px; height: 46px; }
  .flow-step__num small { font-size: 0.7rem; margin-bottom: 2px; }
  .flow-step__num b { font-size: 1.3rem; }
  .flow-step::before { left: 23px; }
  .flow-step:first-child::before { top: 20px; }
  .flow-step:last-child::before { height: 20px; }
  .flow-step__body { padding-top: 0; }
  .flow-step__title { font-size: 1.6rem; }
  .flow-tags { display: flex; margin: 6px 0 0; }
}

/* 無料ステップ（STEP 01〜09） */
.flow-step.is-free .flow-step__num { border-color: var(--flow-main); }
/* 「ここまで無料」区切り */
.flow-steps__divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 4px -28px;
  padding: 14px 28px;
  background: #fff6f5;
  border-top: 2px dashed var(--flow-accent);
  border-bottom: 2px dashed var(--flow-accent);
  font-size: 1.4rem;
  line-height: 1.6;
}
.flow-steps__divider + .flow-step { border-top: 0; }
.flow-steps__divider-badge {
  flex: 0 0 auto;
  padding: 2px 14px;
  border-radius: 100px;
  background: var(--flow-accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.7;
}
.flow-steps__divider-text { flex: 1 1 300px; }
.flow-steps__divider-text strong { color: var(--flow-accent); }
@media screen and (max-width: 768px) {
  .flow-steps__divider { margin: 4px -16px; padding: 12px 16px; font-size: 1.3rem; }
}

/* 補足 Tips */
.flow-tips {
  margin-top: 20px;
  padding: 22px 28px;
  border: 1px solid var(--flow-sub);
  border-radius: 8px;
  background: #f3f9fd;
}
.flow-tips__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--flow-sub);
  margin-bottom: 6px;
}
.flow-tips__title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230071B2' d='M12 2a7 7 0 0 0-4 12.74V17a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.26A7 7 0 0 0 12 2Zm-3 18a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H9v1Z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .flow-tips { padding: 16px 18px; }
  .flow-tips__title { font-size: 1.5rem; }
}

/* ⑤ 事前に知っておいていただきたいこと
-------------------------------------------------------------------------- */
.flow-notice { padding: 80px 0; }
.flow-notice__list li {
  position: relative;
  padding: 24px 24px 24px 60px;
  border: 1px solid var(--flow-line);
  border-radius: 8px;
}
.flow-notice__list li + li { margin-top: 14px; }
.flow-notice__list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 22px;
  height: 22px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23004972'/%3E%3Cpath d='M9.5 16.2 5.3 12l1.4-1.4 2.8 2.8 7.8-7.8 1.4 1.4-9.2 9.2Z' fill='%23fff'/%3E%3C/svg%3E");
}
.flow-notice__list h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}
.flow-notice__list p { font-size: 1.4rem; }
@media screen and (max-width: 768px) {
  .flow-notice { padding: 56px 0; }
  .flow-notice__list li { padding: 18px 16px 18px 46px; }
  .flow-notice__list li::before { left: 14px; top: 20px; width: 20px; height: 20px; }
  .flow-notice__list h3 { font-size: 1.5rem; }
}

/* ⑥ 用語集（アコーディオン）
-------------------------------------------------------------------------- */
.flow-glossary {
  background: var(--flow-gray);
  padding: 80px 0;
}
.flow-glossary__lead { margin-bottom: 32px; }
.flow-glossary__group + .flow-glossary__group { margin-top: 36px; }
.flow-glossary__cat {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--flow-main);
  padding-left: 14px;
  border-left: 4px solid var(--flow-main);
  line-height: 1.4;
  margin-bottom: 14px;
}
.flow-acc {
  background: #fff;
  border: 1px solid var(--flow-line);
  border-radius: 6px;
}
.flow-acc + .flow-acc { margin-top: 8px; }
.flow-acc__head {
  position: relative;
  display: block;
  padding: 16px 56px 16px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}
.flow-acc__head::-webkit-details-marker { display: none; }
.flow-acc__head::after,
.flow-acc__head::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--flow-main);
  transform: translateY(-50%);
  transition: transform 0.25s;
}
.flow-acc__head::before { transform: translateY(-50%) rotate(90deg); }
.flow-acc[open] .flow-acc__head::before { transform: translateY(-50%) rotate(0); }
.flow-acc__kana {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}
.flow-acc__body {
  padding: 0 20px 18px;
  font-size: 1.4rem;
  border-top: 1px dotted var(--flow-line);
}
/* JS でスムーズ開閉させるためのラッパー */
.flow-acc__panel {
  overflow: hidden;
  will-change: height;
}
.flow-acc.is-animating .flow-acc__panel { transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1); }
.flow-acc__body p { padding-top: 14px; }
.flow-acc[open] { border-color: var(--flow-main); }
@media screen and (max-width: 768px) {
  .flow-glossary { padding: 56px 0; }
  .flow-glossary__cat { font-size: 1.6rem; }
  .flow-acc__head { padding: 14px 44px 14px 16px; font-size: 1.5rem; }
  .flow-acc__head::after, .flow-acc__head::before { right: 16px; width: 14px; }
  .flow-acc__kana { display: block; margin: 2px 0 0; font-size: 1.1rem; }
  .flow-acc__body { padding: 0 16px 16px; }
}

/* ⑦ CTA
-------------------------------------------------------------------------- */
.flow-cta {
  padding: 80px 0 100px;
  text-align: center;
}
.flow-cta__text { margin-bottom: 8px; }
.flow-cta__text strong { color: var(--flow-main); }
.flow-cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;
}
.flow-cta__btns .c-btn01 { margin: 0; }
.flow-cta__btns .c-btn01.is-white .c-btn01__link {
  background: #fff;
  color: var(--flow-accent);
}
.flow-cta__btns .c-btn01.is-white .c-btn01__link .c-btn01__txt::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.695%22%20height%3D%229.811%22%20viewBox%3D%220%200%2031.695%209.811%22%3E%20%3Cpath%20d%3D%22M357.037%2C588.9H325.342v-1.5h28.073l-7.251-7.251%2C1.061-1.061Z%22%20transform%3D%22translate(-325.342%20-579.086)%22%20fill%3D%22%23F6251D%22%2F%3E%3C%2Fsvg%3E");
}
.flow-cta__btns .c-btn01.is-white .c-btn01__link:hover {
  background: var(--flow-accent);
  color: #fff;
}
.flow-cta__btns .c-btn01.is-white .c-btn01__link:hover .c-btn01__txt::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2231.695%22%20height%3D%229.811%22%20viewBox%3D%220%200%2031.695%209.811%22%3E%20%3Cpath%20d%3D%22M357.037%2C588.9H325.342v-1.5h28.073l-7.251-7.251%2C1.061-1.061Z%22%20transform%3D%22translate(-325.342%20-579.086)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
.flow-cta__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-top: 28px;
  font-size: 1.4rem;
}
.flow-cta__links a {
  color: var(--flow-sub);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.flow-cta__links a::before { content: "→"; margin-right: 4px; }
.flow-cta__links a:hover { opacity: 0.7; }
@media screen and (max-width: 768px) {
  .flow-cta { padding: 56px 0 72px; }
  .flow-cta__text { text-align: left; }
  .flow-cta__btns { margin-top: 24px; gap: 12px; }
  .flow-cta__btns .c-btn01 { max-width: 100%; }
}
