/* プッシュセクション: 薄グレー背景 */
.front-push {
  background: var(--color-surface);
}

/* プッシュ: 画像とテキストの2列 */
.front-push .push-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

/* プッシュ画像: 相談シーン画像 */
.front-push .push-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .front-push {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /* PC: コピーと画像の横並び間隔を調整 */
  .front-push .push-inner {
    gap: 26px;
    align-items: start;
    margin-bottom: 120px;
  }

  /* PC: コピーは上寄せ */
  .front-push .push-copy {
    align-self: start;
  }

  /* PC: 画像は上から164pxの位置に配置 */
  .front-push .push-image {
    width: 541px;
    margin-top: 164px;
    align-self: start;
  }

  .front-push .consult-card {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* プッシュ見出し: 明朝の大見出し */
.front-push .push-title {
  position: relative;
  isolation: isolate;
  font-family: var(--font-title);
  font-size: 30px;
  font-style: var(--font-style-mincho-italic);
  font-weight: var(--weight-mincho-regular);
  text-align: center;
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  /* PC: プッシュ見出しのサイズ拡大と行間調整 */
  .front-push .push-title {
    font-size: 40px;
    margin-bottom: 72px;
  }

  .front-push .push-title-line + .push-title-line {
    margin-top: 30px;
  }
}

/* プッシュ見出し: 文言を3行で縦積み */
.front-push .push-title-line {
  display: block;
  position: relative;
  z-index: 1;
}

/* プッシュ見出し: 2行目以降の行間 */
.front-push .push-title-line + .push-title-line {
  margin-top: 22px;
}

/* プッシュ本文: 補足説明 */
.front-push .push-text {
  font-size: 15px;
  font-weight: var(--weight-gothic-regular);
  color: var(--color-muted);
  max-width: 500px;
}

/* 相談カード: 白背景の導線ボックス */
.front-push .consult-card {
  background: var(--brand-white);
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 24px;
}

/* 相談カード: 上部の折り鶴画像 */
.front-push .consult-card-orizuru {
  width: 121px;
  height: auto;
  margin: 0 auto 8px;
}

/* 相談カード: 見出し */
.front-push .consult-card h3 {
  font-family: var(--font-gothic);
  display: block;
  width: fit-content;
  margin: 8px auto 12px;
}

.front-push .consult-card h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: var(--color-border-soft);
  border-radius: 999px;
}

/* 相談カード: 説明文 */
.front-push .consult-card p {
  font-size: 15px;
  font-weight: var(--weight-gothic-regular);
  color: var(--color-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* プッシュ強調: brush画像のマーカー */
.front-push .brush-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
}

/* プッシュ強調: brush画像を等比で敷く */
.front-push .brush-highlight::after {
  content: "";
  position: absolute;
  left: -0.58em;
  right: -0.08em;
  bottom: -0.82em;
  aspect-ratio: 334 / 117;
  background: url("../../../assets/brush/brush-short.webp") no-repeat center / contain;
  z-index: -1;
  pointer-events: none;
}

/* 相談カード: 形式と時間の情報 */
.front-push .consult-meta {
  margin: 16px auto;
}

@media (max-width: 768px) {
  /* モバイル: 1列レイアウトに変更 */
  .front-push .push-inner {
    grid-template-columns: 1fr;
  }

  .front-push .consult-card-orizuru {
    margin-bottom: 20px;
  }

  .front-push .consult-card h3 {
    font-size: 19px;
    margin: 0 auto 30px;
  }

  .front-push .consult-card p:first-of-type {
    margin-top: 0;
  }

  .front-push .consult-card p:last-of-type {
    margin-bottom: 0;
  }

  .front-push .consult-card .btn {
    margin-top: 30px;
  }

  /* モバイル: タイトルと本文を個別に並べ替える */
  .front-push .push-copy {
    display: contents;
  }

  /* モバイル: タイトルは先頭 */
  .front-push .push-title {
    order: 1;
  }

  /* モバイル: 画像を本文の前に配置 */
  .front-push .push-image {
    order: 2;
  }

  /* モバイル: 本文は画像の後ろ */
  .front-push .push-text {
    order: 3;
  }
}
