/* =========================================================================
   Bizmates Coaching LP - 統合 style.css
   構成:
     1. 共通ブリッジ（SP/PC出し分けユーティリティ・統合用の橋渡しクラス）
     2. SP版スタイル（〜1159px、375px〜600pxのリキッドレイアウト。sp/style.css を基本そのまま採用）
     3. PC版スタイル（1160px〜、@media (min-width: 1160px) でラップ。pc/style.css を基本そのまま採用）
   クラス名はSP側snake_case（例: .hero_section）とPC側kebab-case（例: .section-hero-wrap）を
   衝突なく併存させており、同一要素に両方のクラスを付与している箇所が多数あります。
   ========================================================================= */

/* =========================================================================
   1. 共通ブリッジ / SP・PC出し分けユーティリティ
   ========================================================================= */
.is-sp-only { display: block; }
.is-pc-only { display: none; }

body { min-width: 100%; }
body main { background: #fff; max-width: 600px; margin: 0 auto; }

/* value/price プランのカード内で、SP側の元構造(直下に並んでいた要素)を
   PCと合わせて1段グルーピングし直すために追加した橋渡し用クラス。
   PC側の対応クラス(value-card-desc / price-plan-body)が同じ要素に付与されており、
   1160px以上ではそちらのレイアウト定義に置き換わる。 */
.value_desc_group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price_plan_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 311px;
}
/* 料金プランの「毎日2レッスン」パネル（JSでタブ切替、初期状態は非表示） */
.is-tab-hidden { display: none; }

/* =========================================================================
   2. SP版スタイル（〜1159px）
   元ファイル: sp/style.css （そのまま採用。425px程度までのリキッドレイアウト）
   ========================================================================= */
/* =========================================================
   Bizmates Coaching LP (SP) - style.css
   Figma "sp_375" フレームをベースにした流動的レイアウト
   375px 〜 600px の範囲で横スクロールが発生しないように
   固定px幅は全て流動化（%/100%）し、装飾用の小さいアイコンのみ
   固定pxサイズを維持しています。
   ========================================================= */

* ,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #141821;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

svg {
  display: block;
}

/* =========================================================
   ページ全体ラッパー（375px 〜 600px の流動幅）
   ========================================================= */
.page {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
}

/* =========================================================
   メインコンテンツ（ヘッダー分の余白確保）
   ========================================================= */
.main_content {
  background: #fff;
}

/* 共通ユーティリティ ---------------------------------------------------- */
.container_pad {
  padding-left: 16px;
  padding-right: 16px;
}

.section_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #141821;
}

.section_kicker {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24px;
  font-family: "Noto Sans JP";
}

.section_title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  color: #141821;
}

.section_title strong,
.section_title .accent {
  color: #0087d2;
  font-size: 28px;
  font-weight: 700;
}

.balloon_heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 8px 24px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  position: relative;
  margin-bottom: 0;
}

.balloon_heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) rotate(-135deg);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0087d2;
}

.vertical_label {
  position: absolute;
  left: 0;
  top: 16px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 292px;
  overflow: hidden;
  pointer-events: none;
}
.voice_section .vertical_label {
  height: 276px;
}
.price_section .vertical_label {
  height: 260px;
}


.vertical_label span {
  display: block;
  transform: rotate(90deg);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: #fff;
  opacity: 0.5;
  white-space: nowrap;
  text-transform: uppercase;
}

.vertical_label.is-light span {
  color: #e7f3fa;
  opacity: 1;
}

/* =========================================================
   1. ヒーローセクション
   ========================================================= */
.hero_section {
  position: relative;
}

.hero_area {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
}

.hero_area .hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero_h1_group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.hero_solve_banner {
  position: relative;
  width: calc(100% + 32px);
  margin: 0 -16px;
  background: #0087d2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px 6px;
}

/* テキストを実際の内容幅にフィットさせるラッパー（「・」ドットの位置決めの基準にする） */
.solve_banner_txt {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

/* 装飾用の「・」ドット（元データ: hero見出し内テキストの実幅基準、left:86px/170px, top:-12px, #ffed56, tracking 0.56px） */
.solve_dots {
  position: absolute;
  top: -12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
  color: #ffed56;
  pointer-events: none;
}

.solve_dots_1 {
  left: 88px;
}

.solve_dots_2 {
  left: 179px;
}

.hero_solve_banner p {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.hero_solve_banner p .lg {
  font-size: 18px;
}

.hero_solve_banner p .accent {
  color: #ffed56;
  font-size: 18px;
}

.hero_ttl {
  position: relative;
  padding-top: 8px;
  width: 100%;
  text-align: left;
  line-height: 1;
}

.hero_ttl .tag_txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0087d2;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.56px;
  padding-bottom: 2px;
}

.hero_ttl h1 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.48px;
  color: #141821;
  margin: 0;
  height: 131px;
}

.hero_ttl h1 span {
  line-height: 1.4;
}

.hero_ttl h1 .accent {
  color: #0087d2;
  font-size: 28px;
}
.hero_ttl h1 > *:first-child {
  background: linear-gradient(transparent 80%, #FFED56 80%);
}

.hero_ttl h1 .lg {
  font-size: 24px;
}

.hero_ttl h1 .line32 {
  font-size: 32px;
  letter-spacing: -0.64px;
}

.hero_points {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 40px;
}

.hero_point {
  display: flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  gap: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 2px 4px;
}

.hero_point_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero_point .point_text p {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.hero_point .point_text p:last-child {
  font-size: 12px;
  font-weight: 500;
}

.hero_point .point_text strong {
  color: #0087d2;
  font-weight: 700;
}

.hero_compare {
  width: 100%;
  display: flex;
  gap: 12px;
}

.hero_compare_card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  border-left: 8px solid #0087d2;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  overflow: hidden;
  max-width: 166px;
}

/* 背景の淡いチェック型ブロブ（元データ: Vector, opacity 10%, 83.5333x63.7, left:4px top:calc(50%+0.85px)） */
.compare_blob {
  position: absolute;
  left: -3px;
  top: calc(50% + 0.85px);
  transform: translateY(-50%);
  width: 83.533px;
  height: 63.7px;
  pointer-events: none;
}

.hero_compare_card .compare_label {
  position: relative;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
}

.hero_compare_card .compare_label span {
  background: linear-gradient(transparent 75%, #FFED56 75%);
}

.hero_compare_card .compare_value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.hero_compare_card .compare_value .unit {
  font-weight: 500;
}

.hero_compare_card .compare_value .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #d03086;
  line-height: 1;
}

.hero_compare_card .compare_value .num_sub {
  font-weight: 500;
  color: #d03086;
  font-size: 16px;
}

.hero_compare_card .compare_note {
  font-weight: 500;
  font-size: 10px;
  color: #7f8288;
  align-self: flex-end;
}

.hero_compare_card .unit_sm {
  font-size: 10px;
}

.hero_compare_card .num_sub_lg {
  font-size: 16px;
}

.hero_caption {
  width: 100%;
  padding: 0 16px;
  text-align: right;
  font-size: 8px;
  line-height: 1.25;
  color: #141821;
  padding-top: 8px;
}

.hero_badges {
  width: 100%;
}

.hero_badge_row {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 8px 8px;
  max-width: 375px;
  margin: 0 auto;
}

.hero_badge_item {
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 2px 0;
  text-align: center;
  font-weight: 500;
}

.hero_badge_item .laurel {
  width: 16px;
  height: 37.69px;
  flex-shrink: 0;
}

.hero_badge_item .badge_text {
  font-size: 10px;
  line-height: 1.3;
  white-space: nowrap;
}

.hero_badge_item .badge_text strong {
  color: #0087d2;
  font-weight: 700;
}

.hero_badge_item .badge_text .big {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #0087d2;
  font-size: 20px;
}

.hero_badge_item .badge_text .pct_suffix {
  font-size: 14px;
  color: #0087d2;
}

.hero_badges_caption {
  width: 100%;
  text-align: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.7);
}

.hero_badges_caption p {
  font-size: 10px;
  line-height: 1.5;
  color: #7f8288;
  text-align: left;
}

/* CTA ブロック（LINEボタン＋申込ボタン） -------------------------------- */
.hero_cta_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 16px 24px;
}

.line_btn {
  width: 100%;
  border-radius: 28px;
}

.line_btn .btn_inner {
  background: #06c755;
  filter: drop-shadow(0px 4px 6px rgba(20, 24, 33, 0.2));
  border-radius: 32px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
}

.line_btn .line_unit {
  background: #ffed56;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.line_btn .line_unit p {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.25;
  color: #06c755;
  text-align: center;
  width: 42px;
}

.line_btn .line_body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.line_btn .line_free {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  padding-right: 26px;
}

.line_btn .line_free strong {
  color: #ffed56;
}

.line_btn .line_cta_row {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

/* 白い破線装飾（元データ: strokeDasharray="2 2", top:24px, w:90px/38px） */
.line_btn .dash_line {
  position: absolute;
  top: 24px;
  height: 2px;
  pointer-events: none;
}

.line_btn .dash_line_1 {
  left: 0;
  width: 90px;
}

.line_btn .dash_line_2 {
  left: 103px;
  width: 38px;
}

.line_btn .line_cta_row p {
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.line_btn .line_cta_row .sm {
  font-size: 14px;
}

.line_btn .line_cta_row .lg {
  font-size: 18px;
}

.line_btn .line_cta_row .arrow_icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cta_area .cta_note {
  font-weight: 700;
  font-size: 14px;
  color: #141821;
  white-space: nowrap;
}

.cta_area .cta_note .blue {
  color: #0087d2;
}

.cta_area .cta_note .pink {
  color: #d03086;
}

.apply_btn {
  width: 100%;
  max-width: 343px;
}

.apply_btn .btn_inner {
  position: relative;
  background: #ffed56;
  filter: drop-shadow(0px 4px 6px rgba(20, 24, 33, 0.2));
  border-radius: 28px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px 24px 24px;
  overflow: hidden;
}

.apply_btn .btn_label_sm {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.apply_btn .btn_label_lg {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  white-space: nowrap;
}

.apply_btn .arrow_icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.apply_btn .corner_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 72px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
}

.apply_btn .corner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 28px;
}

.fv_cta_block .fv_line_sub .text.-yllw {
  font-size: 12px;
}
.fv_line_main_row {
  justify-content: flex-start;
  letter-spacing: 0;
}

/* =========================================================
   2. 悩みセクション（concerns）
   ========================================================= */
.concerns_section {
  background: #ebeef1;
}

.concerns_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 16px 24px;
}

.concerns_block .balloon_heading {
  margin-bottom: 16px;
}

.concerns_heading .section_title {
  position: relative;
}

/* 装飾用の「・」ドット（元データ: left:189.54px, top:-9px, グラデーション文字, tracking 0.8px） */
.concerns_dots {
  position: absolute;
  left: 106px;
  top: -9px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, #0087d2, #d03086);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
}

.balloon_variant_b {
  background: linear-gradient(142deg, #4cabdf 11.272%, #0087d2 66.995%);
}

.concerns_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concerns_card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 16px 8px;
}
.concerns_list > li:nth-child(even) {
  padding: 16px 8px 16px 16px;
}

.concerns_card.align_end {
  flex-direction: row-reverse;
}

.concerns_card .concerns_icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #ebeef1;
}

.concerns_card .concerns_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concerns_card p {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #141821;
}

.concerns_card p strong {
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(90deg, #0087d2, #d03086);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 転換ブロック：その悩みをBizmatesが解決します */
.concerns_transition {
  position: relative;
  width: 100%;
  /* 親.concerns_sectionの背景(#ebeef1)を上書きして白背景に戻す。
     これがないと上部の三角形(#ebeef1)が背景と同化して見えなくなる。 */
  background: #fff;
  padding: 24px 16px 0;
  text-align: center;
  overflow: hidden;
}

.concerns_transition_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 0;
}

.concerns_transition_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: -24px;
}

/* 「その悩み」上の強調ドット（元データ: left:185.5px(中央基準), top:-7px, #0087d2, 14px） */
.worry_dots {
  position: absolute;
  left: calc(185.5/375 * 100vw);
  top: -7px;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
  color: #0087d2;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .worry_dots {
    left: 296px;
  }
}

.concerns_transition_inner .small_ttl {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
}

.concerns_transition_inner .brand_ttl {
  font-weight: 700;
  white-space: nowrap;
}

.concerns_transition_inner .brand_ttl .lg {
  font-size: 24px;
  line-height: 24px;
}

.concerns_transition_inner .brand_ttl .sm {
  font-size: 18px;
}

.concerns_transition_inner .tag_row {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
}

.concerns_transition_inner .tag_row .tag {
  background: #0087d2;
  border: 1px solid #0087d2;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.36px;
  padding: 0 4px;
  white-space: nowrap;
}

.concerns_transition_inner .tag_row span.plain {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.36px;
}

.concerns_transition_inner .result_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.concerns_transition_inner .result_ttl .accent {
  position: relative;
  color: #0087d2;
  font-size: 28px;
  letter-spacing: 0.56px;
  /* 「解決」の下のイエロー下線（元データ: Vector 5, stroke #FFF288 width 8） */
  background: linear-gradient(transparent 82%, #fff288 82%);
}

.concerns_photo_pair {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.photo_frame {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.photo_frame img {
  position: absolute;
  max-width: none;
  object-fit: cover;
}

/* 元データ: 森さん_DSC_7003, コンテナ140x200 / 画像135.819x280, left:0 top:24px */
.photo_frame_mori {
  width: 140px;
}

.photo_frame_mori img {
  left: 0;
  top: 24px;
  width: 135.819px;
  height: 280px;
}

/* 元データ: 谷さん_DSC_7003, コンテナ164x200 / 画像156.516x336, right:0 top:0 */
.photo_frame_tani {
  width: 164px;
}

.photo_frame_tani img {
  right: 0;
  top: 0;
  width: 156.516px;
  height: 336px;
}

/* =========================================================
   3. VALUE セクション
   ========================================================= */
.value_section {
  position: relative;
  background: #e7f3fa;
}

.value_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 16px;
  position: relative;
}

.value_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.value_heading .balloon_heading {
  background: linear-gradient(148deg, #4cabdf 11.272%, #0087d2 66.995%);
}

/* 見出し2行（今の仕事と…／4つの価値）は元データではgapなしでほぼ密着 */
.value_heading_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.value_heading_ttl h2 {
  text-align: center;
}

.value_heading .value_heading_ttl .section_title {
  margin-bottom: -4px;
  display: inline-block;
}

.value_heading .big_number {
  color: #0087d2;
  text-align: center;
  letter-spacing: 0.56px;
  font-weight: 700;
  margin-top: -4px;
  display: inline-block;
}

.value_heading .big_number .num {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 48px;
  letter-spacing: 0.96px;
  /* 「4」の下のイエロー下線（元データ: Vector 9, stroke #FFF288 width 8） */
  background: linear-gradient(transparent 75%, #FFF288 75%, #fff288 88%, transparent 88%);
}

.value_heading .big_number .txt {
  font-size: 28px;
}
.value_heading .big_number .num span {
  font-size: 28px;
  font-family: "Noto Sans JP";
  font-style: normal;
}

.value_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.value_card {
  position: relative;
  background: #fff;
  filter: drop-shadow(0px 0px 8px rgba(11, 67, 104, 0.24));
  border-radius: 8px;
  width: 100%;
  padding: 32px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.value_card .value_tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0087d2;
  color: #fff;
  border-radius: 12px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.value_card h3 {
  color: #0087d2;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* value 3: 「AI解析」「×」「コーチのフィードバック」を縦積み中央揃えにする（元データ通り） */
.value_card h3.value_card_h3_stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value_card h3.value_card_h3_stack .split_icon {
  flex-shrink: 0;
  transform: rotate(45deg);
}

.value_card .value_body {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value_card .value_media {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.value_card .value_media img {
  display: block;
  width: 100%;
  height: 100%;
}

.value_card .value_media_end img {
  object-position: right center;
}

/* value 2: フロー図＋写真をまとめた枠（元データ: pt-12px px-12px gap-12px、背景なし） */
.value_card .value_media_group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 0;
  border-radius: 4px;
  overflow: hidden;
}

/* value 3: 背景#ebf5fd・pt-32px px-12px pb-12px・高さ280px（元データ通り） */
.value_card h4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #0087d2;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.value_card h4 .small {
  font-size: 12px;
}

.value_card h4 .big {
  font-size: 20px;
}

.value_card h4 .big span {
  margin-top: 4px;
  display: inline-block;
}

.value_card p.value_desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #141821;
}

.value_fukidashi {
  position: absolute;
  background: #0087d2;
  color: #fff;
  border-radius: 4px;
  padding: 2px 4px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

/* 究極のハイブリッド：フローチャート風 */
.hybrid_flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hybrid_flow_row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hybrid_flow_row > svg {
  transform: rotate(45deg);
}

.hybrid_pill {
  background: #4cabdf;
  color: #fff;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  padding: 4px 8px;
}

.hybrid_flow_note {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #141821;
}

/* =========================================================
   4. 初心者サポート（Block1, bg blue）
   ========================================================= */
.beginner_section {
  background: #0087d2;
}

.beginner_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px;
  background: #0087d2;
}

.beginner_heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 24px;
  text-align: center;
  color: #fff;
  width: 100%;
}

/* 装飾用の「・」ドット（元データ: bottom:102.78px, left:calc(50% - 67.96px), translateY(100%), white, 20px） */
.beginner_dots {
  position: absolute;
  bottom: 102.78px;
  left: calc(50% - 67.96px);
  transform: translateY(100%);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

.beginner_heading .kicker {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
  padding-bottom: 8px;
}

.beginner_heading .banner_ttl {
  margin: 0 -16px;
  background: linear-gradient(90deg, #005585, #d03086);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.beginner_heading .banner_ttl .lg {
  font-size: 28px;
}

.beginner_heading .sub_ttl {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.beginner_illust {
  width: 144px;
  height: auto;
}

.beginner_cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beginner_card {
  background: #fff;
  filter: drop-shadow(0px 0px 8px rgba(11, 67, 104, 0.24));
  border-radius: 8px;
  width: 100%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.beginner_card h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.beginner_card .fukidashi {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  background: #e7f3fa;
  color: #0087d2;
  border-radius: 11px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  padding: 2px 12px;
}

/* 吹き出しの三角しっぽ（元データ: Polygon 3, 8x8, bottom:-8px, 中央） */
.beginner_card .fukidashi::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-135deg);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #e7f3fa;
}

.beginner_card .card_ttl {
  color: #0087d2;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.beginner_card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #141821;
}

/* =========================================================
   5. CASE A/B/C セクション
   ========================================================= */
.case_section {
  background: #fff;
}

.case_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 0 0;
}

.case_section .section_title {
  line-height: 1.5;
}

.case_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case_card {
  position: relative;
  background: #4cabdf;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
}

.case_card .case_label {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  color: #fff;
  opacity: 0.2;
  letter-spacing: 0.96px;
  line-height: 1;
}

.case_card .case_tag {
  background: #0087d2;
  color: #fff;
  border-radius: 12px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.28px;
  white-space: nowrap;
  z-index: 10;
}

.case_card .case_situation {
  width: 100%;
  border: 0.5px solid #fff;
  border-radius: 4px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.case_card .case_avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.case_card .case_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case_card .case_situation p {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.case_card .case_situation p strong {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  border-bottom: 4px solid #FFED56;
}

.case_card .case_desc {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.case_card .case_desc p {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}

.case_card .case_illustration {
  width: 149px;
  height: 224px;
  flex-shrink: 0;
  overflow: hidden;
}

.case_card .case_illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   6. ロードマップ（自走までの3ステップ）
   ========================================================= */
.roadmap_section {
  background: #fff;
}

.roadmap_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 16px;
}

.roadmap_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: center;
}

.roadmap_heading .section_title {
  position: relative;
}

/* 装飾用の「・」ドット（元データ: bottom:40.49px, right:120.46px, translateX(100%) translateY(100%), #0087d2, 20px） */
.roadmap_dots {
  position: absolute;
  bottom: 40.49px;
  right: 122px;
  transform: translate(100%, 100%);
  font-size: 19px;
  line-height: 1;
  color: #0087d2;
  white-space: nowrap;
  pointer-events: none;
}

.roadmap_heading .lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #141821;
}

.roadmap_tag {
  border-top: 1px solid #0087d2;
  border-bottom: 1px solid #0087d2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 7px 0;
  margin-bottom: 24px;
  color: #0087d2;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1;
}

.roadmap_tag .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.36px;
}

.roadmap_steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap_step {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.roadmap_step_marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.roadmap_step_circle {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  border: 1px solid #4cabdf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.roadmap_step_circle .step_label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  color: #4cabdf;
  line-height: 1;
}

.roadmap_step_circle .step_num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #0087d2;
  line-height: 1;
}

.roadmap_step_marker .step_line {
  flex: 1 1 0;
  width: 1px;
  background: #4cabdf;
  min-height: 32px;
}

.roadmap_step_content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 70px;
}

.step-blocks > *:last-child .roadmap_step_content {
  padding-bottom: 4px;
}
.step-blocks > *:last-child .plan_name {
  align-items: baseline;
  gap: 0;
}

.roadmap_step_content .phase_tag {
  align-self: flex-start;
  background: #0087d2;
  color: #fff;
  border-radius: 4px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
  white-space: nowrap;
  width: fit-content;
  margin-bottom: 4px;
}

.roadmap_step_content .plan_name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.roadmap_step_content .plan_name .num {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  color: #d03086;
  line-height: 1;
}

.roadmap_step_content .plan_name .txt {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.36px;
}

.roadmap_step_content .plan_name .txt.big {
  font-size: 18px;
}

.roadmap_step_content .plan_name strong.accent {
  color: #d03086;
  font-size: 24px;
  font-weight: 700;
}

.roadmap_step_content p.step_desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #141821;
}

/* =========================================================
   7. VOICE（testimonials）
   ========================================================= */
.voice_section {
  position: relative;
  background: #e7f3fa;
}

.voice_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 16px;
}

.voice_heading {
  width: 100%;
}

/* =========================================================
   8. 料金（PRICE）
   ========================================================= */
.price_section {
  position: relative;
  background: #fff;
}

.price_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 16px;
}

.price_h1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  z-index: 10;
}

.price_h1 .kicker {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24px;
}

.price_h1 .price_h2_lead {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
  margin: 0;
}

.price_h2 {
  z-index: 10;
  text-align: center;
}

.price_h1 .compare_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 311px;
  margin: 0 auto;
  z-index: 10;
}

.price_h1 .compare_pill {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid #0087d2;
  border-radius: 8px;
  padding: 2px 0;
  color: #0087d2;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  white-space: nowrap;
  height: 34px;
  width: 128px;
}

.price_h1 .compare_row .plus_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.price_h1 .price_line {
  font-weight: 700;
  font-size: 20px;
  height: 31px;
}

.price_h1 .price_line .accent {
  color: #0087d2;
  font-size: 28px;
  line-height: 31px;
}

.price_h1 .price_line .accent_sm {
  font-size: 20px;
}

.price_h1 .compare_row_plain {
  font-weight: 700;
  font-size: 18px;
}

.price_plan_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price_plan_block > h3 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0;
  line-height: 24px;
}

.price_plan_block.is-recommend > .plan_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.plan_title h3 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: #141821;
  text-align: center;
}

.plan_badge {
  background: #d03086;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 4px;
}

.price_plan {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.price_plan_body {
  background: #fff;
  border: 1px solid #d1d4d7;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.price_plan.variant-30 .price_plan_body {
  background: #e7f3fa;
  border-color: #0087d2;
}

.price_plan_title {
  text-align: center;
}

.price_plan_title .name {
  font-weight: 700;
  font-size: 24px;
  color: #141821;
  line-height: 1.5;
}

.price_plan_title .desc {
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #54575f;
  line-height: 1.5;
  letter-spacing: 0;
}

.price_amount_box {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price_off_tag {
  background: #fff288;
  color: #141821;
  font-weight: 500;
  font-size: 20px;
  padding: 0 8px;
  text-align: center;
}

.price_amount {
  display: flex;
  align-items: center;
  gap: 0;
}

.price_amount .label {
  font-weight: 400;
  font-size: 18px;
}

.price_amount .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  margin-left: 8px;
  margin-right: 2px;
}

.price_amount .num.pink {
  color: #d03086;
}

.price_amount .yen {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  flex-direction: column-reverse;
}

.price_amount .tax {
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.price_amount_note {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.price_feature_icons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.price_feature_icons .feature {
  min-width: 0;
  width: 72px;
  height: 72px;
  border: 1px solid #0087d2;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 8px;
}

.price_feature_icons .feature svg {
  width: 36px;
  height: 36px;
}

.price_plan_body[data-tab-panel="d2"] .price_feature_icons > *:nth-child(2) .price-clock-double svg {
  width: 25px;
  height: 25px;
}

.variant-30 .price_plan_inner {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px 0;
}

.variant-30 .price_plan_body {
  gap: 16px;
}

.price_feature_icons .feature p {
  color: #0087d2;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}

.price_feature_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 24px;
  width: 272px;
  letter-spacing: 0;
}

.price-clock-double {
  display: flex;
  flex-direction: row;
  margin: 6px 0 4px;
}

.price_feature_list li {
  display: flex;
  align-items: center;
  gap: 0;
}

.price-group .variant-15 .price-plan-body {
  margin-top: 0;
  padding-bottom: 0;
}

.price-checks span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  color: #0087d2;
}

.price_feature_list li .check_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.price_feature_list li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

/* 安心してご利用いただけます */
.trust_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 343px;
}

.trust_block > h3 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin: 0;
}

.trust_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust_item {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.trust_item .trust_icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.trust_item .trust_body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust_item .trust_body h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.trust_item .trust_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   レスポンシブ最終チェック
   ========================================================= */
@media (max-width: 380px) {
  .hero_badge_item {
    min-width: 80px;
  }
}

/* =========================================================================
   3. PC版スタイル（1160px〜）
   元ファイル: pc/style.css を @media (min-width: 1160px) でラップして採用
   ========================================================================= */
@media (max-width: 374px) {
  .hero_solve_banner p,
  .solve_dots {
    font-size: calc(14/375 * 100vw);
  }
  .solve_dots_1 {
    left: calc(88/375 * 100vw);
  }
  .solve_dots_2 {
    left: calc(179/375 * 100vw);
  }
  .hero_ttl h1 .accent {
    font-size: calc(28/375 * 100vw);
  }
  .hero_ttl h1 .lg {
    font-size: calc(24/375 * 100vw);
  }
  .hero_ttl h1 .line32 {
    font-size: calc(32/375 * 100vw);
  }
  .hero_solve_banner p .lg,
  .hero_solve_banner p .accent {
    font-size: calc(18/375 * 100vw);
  }
  .hero_compare_card .compare_label {
    font-size: calc(12/375 * 100vw);
  }
  .hero_compare_card .compare_value .num {
    font-size: calc(36/375 * 100vw);
  }
  .hero_points {
    padding-top: 53px;
  }

  .heroArea .heroArea_inner .fv_cta_block {
      padding: 0 calc(16/375 * 100vw);
  }
  .hero_badge_item {
    gap: 0;
  }
  .fv_line_btn {
    gap: calc(8/375 * 100vw) !important;
  }
  .fv_line_body {
    padding: 0 !important;
  }
  .fv_line_main_row p > *:nth-child(odd) {
    font-size: calc(18/375 * 100vw) !important;
  }
  .fv_line_main_row p > *:nth-child(even) {
    font-size: calc(14/375 * 100vw) !important;
  }
  .heroArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn, .ctaArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn {
    padding-left: calc(31/375 * 100vw) !important;
  }
  .heroArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner, .ctaArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner {
    gap: calc(12/375 * 100vw) !important;
  }
  .heroArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner > *:first-child,
  .ctaArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner > *:first-child,
  #common-banner-sp .fv_cta_inner > *:first-child {
    font-size: calc(12/375 * 100vw) !important;
  }
  .heroArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner > *:nth-child(2),
  .ctaArea .fv_cta_block .fv_apply_area .fv_cta_wrap .fv_cta_btn .fv_cta_inner > *:nth-child(2),
  #common-banner-sp .fv_cta_inner > *:nth-child(2) {
    font-size: calc(22/375 * 100vw) !important;
  }
  #common-banner-sp .button.-cta.-animate {
    min-width: 100%;
  }
  #common-banner-sp .cta_button_w {
    max-width: 100%;
  }

  .concerns_transition {
    padding: 24px 0 0;
  }
  .concerns_heading .section_title {
    text-align: center;
  }

  .section_title,
  .value_card h4 .big,
  .beginner_heading .banner_ttl,
  .beginner_dots {
    font-size: calc(20/375 * 100vw);
  }
  .section_title strong, .section_title .accent,
  .value_heading .big_number .txt,
  .value_heading .big_number .num span,
  .beginner_heading .banner_ttl .lg {
    font-size: calc(28/375 * 100vw);
  }
  .value_heading .big_number .num {
    font-size: calc(48/375 * 100vw);
  }
  .value_card h3 {
    font-size: calc(24/375 * 100vw);
  }
  .beginner_dots{
    left: calc(83/375 * 100vw);
    bottom: calc(112/375 * 100vw);
  }

  .roadmap_section .lead {
    font-size: calc(16/375 * 100vw);
  }
  .roadmap_tag {
    font-size: calc(16/375 * 100vw);
  }
  .roadmap_tag .num,
  .roadmap_step_content .plan_name .txt {
    font-size: calc(18/375 * 100vw);
  }

  .roadmap_step_content .plan_name .num {
    font-size: calc(36/375 * 100vw);
  }

  .price_plan_body {
    padding: 24px calc(16/375 * 100vw);
  }
  .variant-30 .price_plan_inner {
    padding: 24px calc(16/375 * 100vw) 0;
  }
  .price_amount .num {
    font-size: calc(54/375 * 100vw);
    margin-left: calc(8/375 * 100vw);
  }
  .price_amount .yen {
    font-size: calc(18/375 * 100vw);
  }
  .price_amount .tax {
    font-size: calc(12/375 * 100vw);
  }
  .price_amount .label {
    font-size: calc(18/375 * 100vw);
  }
  .price_feature_icons .feature {
    padding: 6px calc(8/375 * 100vw);
  }
  .price_feature_list li p {
    font-size: calc(14/375 * 100vw);
  }
  .price_feature_list {
    width: 100%;
  }

}

/* =========================================================================
   3. PC版スタイル（1160px〜）
   元ファイル: pc/style.css を @media (min-width: 1160px) でラップして採用
   ========================================================================= */
@media (min-width: 1160px) {

  /* ---------------------------------------------------------------------
     統合用ブリッジ調整（PC幅でのみ適用する微修正）
     --------------------------------------------------------------------- */
  /* SPのみ表示要素を隠す／PCのみ表示要素を表示する */
  .is-sp-only { display: none !important; }
  .is-pc-only { display: block; width: 100%; max-width: 1440px; margin: 0 auto; }

  /* .page はSP版のリキッド幅上限(600px)。PC版レイアウト(最大1080px系)を
     正しく表示するため、1160px以上では上限を解除する。 */
  .page {
    max-width: none;
    overflow-x: clip;
  }

  /* 以下、SP側クラスで flex-direction: column が指定されている要素に、
     対応するPC側クラス（横並びのカード/アイテム列）を併用しているため、
     column指定がそのまま残らないよう行方向を明示的に上書きする。
     （PC側の元CSSはどれも flex-direction を再指定していないため、
     このブリッジ修正がないとSPのcolumn指定が1160px以上でも残ってしまう） */
  .worry-cards,      /* concerns_list(SP) は縦積みcolumn → worry-cardsは横並びgridへ */
  .value-cards,      /* value_list(SP) は縦積みcolumn → value-cardsは横並びgridへ */
  .beginner-cards,   /* beginner_cards(SP) は縦積みcolumn → beginner-cardsは横並びへ */
  .case-cards,       /* case_list(SP) は縦積みcolumn → case-cardsは横並びへ */
  .price-safe-items { /* trust_list(SP) は縦積みcolumn → price-safe-itemsは横並びへ */
    flex-direction: row;
  }

  /* worry-card-deco（2枚目の悩みカードの装飾ドット画像、PCのみ）は
     imgタグに直接displayを持たないクラスのため、明示的に表示する。 */
  .worry-card-deco {
    display: block;
  }

  /* price_plan_body(SP)のgapとprice-plan-body(PC)のmargin-topが二重に
     効かないよう、PC幅では外側のgapを打ち消す。 */
  .price_plan_body {
    gap: 0;
  }

  /* 「毎日2レッスン」パネルはPC幅では常時表示（タブ切替なし、2カード横並び）。
     タブボタン自体もPC版デザインには存在しないため非表示にする。 */
  .is-tab-hidden {
    display: flex;
  }
  .price_plan_tabs.is-sp-only {
    display: none;
  }

  /* フォント読み込みはHTML側の<link>に統合済み（Noto Sans JP / Noto Serif JP / Inter） */
  /* ============ RESET / BASE ============ */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    font-size: 16px;
  }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #141821;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img {
    display: block;
    max-width: 100%;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul,
  ol {
    list-style: none;
  }

  p {
    margin: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }

  .site-main {
    overflow-x: clip;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }

  .inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
  }

  .inner-820 {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }

  /* ---- size / color utilities ---- */
  .s10 {
    font-size: 10px;
  }

  .s12 {
    font-size: 12px;
  }

  .s14 {
    font-size: 14px;
  }

  .s16 {
    font-size: 16px;
  }

  .s18 {
    font-size: 18px;
  }

  .s20 {
    font-size: 20px;
  }

  .s22 {
    font-size: 22px;
  }

  .s24 {
    font-size: 24px;
  }

  .s28 {
    font-size: 28px;
  }

  .s32 {
    font-size: 32px;
  }

  .s36 {
    font-size: 36px;
  }

  .s40 {
    font-size: 40px;
  }

  .s44 {
    font-size: 44px;
  }

  .s56 {
    font-size: 56px;
  }

  .s64 {
    font-size: 64px;
  }

  .bold {
    font-weight: 700;
  }

  .medium {
    font-weight: 500;
  }

  .blue {
    color: #0087d2;
  }

  .pink {
    color: #d03086;
  }

  .white {
    color: #fff;
  }

  .dark {
    color: #141821;
  }

  .yellow {
    color: #ffed56;
  }

  .center {
    text-align: center;
  }

  .inter-bi {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .tr-04 {
    letter-spacing: 0.4px;
  }

  .tr-08 {
    letter-spacing: 0.8px;
  }

  .tr-896 {
    letter-spacing: -8.96px;
  }

  .tr-1024 {
    letter-spacing: -10.24px;
  }

  .grad-bold {
    font-weight: 700;
    background: linear-gradient(to right, #0087d2, #d03086);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  body:before {
    background: #fff;
  }
  body main { 
    max-width: 1440px;
  }

  /* ============ HERO (Section 1) ============ */
  .section-hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 72px;
  }

  .hero-area {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-catch-badge {
    background: #0087d2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px 8px;
    position: relative;
    font-weight: 700;
    line-height: 1;
    color: #fff;
  }

  .hero-catch-badge-txt {
    text-align: center;
    position: relative;
  }

  .hero-badge-dots {
    position: absolute;
    top: -18px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 7.68px;
    color: #ffed56;
  }

  .hero-badge-dots-1 {
    left: 167px;
  }

  .hero-badge-dots-2 {
    left: 317px;
  }

  .hero-badge-excl {
    display: flex;
    align-items: center;
    transform: rotate(8deg);
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title-sub {
    color: #0087d2;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1.12px;
    padding-bottom: 4px;
  }

  .hero-title-sub .s24 {
    font-size: 24px;
  }

  .hero-title-main {
    font-weight: 700;
    letter-spacing: 1.12px;
    line-height: 1.4;
  }

  .hero-title-main div span >*:first-child {
    background: linear-gradient(transparent 79%, #FFED56 79%);
    line-height: 1.25;
    display: inline-block;
  }

  .hero-title-main .s56 {
    font-size: 56px;
    line-height: 1.4;
  }

  .hero-title-main .s44 {
    font-size: 44px;
    line-height: 1.4;
  }

  .hero-title-mark {
    position: relative;
    display: inline;
  }

  .hero-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .hero-point {
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 2px 4px;
    border-radius: 4px;
    min-width: 373px;
  }

  .hero-point-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero-point-txt {
    font-weight: 500;
  }

  .hero-point-txt .s24 {
    font-size: 24px;
  }

  .hero-point-txt .blue.bold {
    color: #0087d2;
    font-weight: 700;
  }

  .hero-inscriptions {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 487px;
    max-width: 100%;
  }

  .hero-inscription {
    background: #fff;
    flex: 1 0 0;
    min-width: 0;
    padding: 16px 18px;
    border-radius: 8px;
    border-left: 12px solid #0087d2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    position: relative;
    z-index: 0;
  }

  .hero-ins-check {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 83.927px;
    height: 64px;
    z-index: -1;
    pointer-events: none;
  }

  .hero-ins-lead {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
  }

  .hero-ins-lead span {
    background: linear-gradient(transparent 70%, #FFED56 70%);
  }

  .hero-ins-frac {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4px;
  }

  .frac-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #d03086;
    font-size: 48px;
    line-height: 1;
  }

  .frac-slash {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: italic;
    color: #d03086;
    font-size: 40px;
    line-height: 1;
  }

  .hero-ins-yaku {
    font-weight: 500;
    font-size: 24px;
    align-self: flex-end;
    padding-bottom: 4px;
  }

  .hero-ins-nokakaku {
    font-weight: 500;
    font-size: 14px;
    align-self: flex-end;
    padding-bottom: 4px;
  }

  .hero-ins-month {
    display: flex;
    align-items: flex-end;
    gap: 2px;
  }

  .hero-ins-month .pink {
    font-weight: 500;
    font-size: 24px;
    color: #d03086;
  }

  .hero-ins-month .dark {
    font-weight: 500;
    font-size: 18px;
  }

  .hero-ins-note {
    font-weight: 500;
    font-size: 14px;
    color: #7f8288;
    text-align: right;
    width: 100%;
  }

  .hero-ins-note2 {
    font-weight: 500;
    font-size: 14px;
    text-align: right;
    width: 100%;
  }

  /* ---- hero badge row ---- */
  .hero-badges-wrap {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0 35px;
  }

  .hero-badges {
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-badge-item {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 2px 8px 0;
  }

  .badge-bracket-l,
  .badge-bracket-r {
    flex-shrink: 0;
    display: flex;
    height: 56.5px;
  }

  .badge-item-txt {
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .badge-item-txt p {
    line-height: normal;
  }

  .badge-item-txt .s20 {
    font-size: 20px;
  }

  .badge-item-txt .s16 {
    font-size: 16px;
  }

  .badge-item-txt.center p:first-child {
    line-height: 1.2;
  }

  .badge-item-txt.center p:nth-child(2) {
    height: 39px;
  }

  .hero-badge-caption {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    font-size: 10px;
    color: #7f8288;
    font-weight: 400;
    line-height: 1.5;
    flex-direction: column;
    width: 254px;
    letter-spacing: 0;
  }

  /* ============ 2. 悩みセクション（concerns） ============ */
  .concerns_section > .is-pc-only {
    background: #fff;
    height: 408px;
    overflow: hidden;
  }

  .worry-block {
    background: #ebeef1;
    padding: 72px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .worry-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .worry-head-title {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.64px;
  }

  .worry-head-em {
    position: relative;
  }

  .worry-head-dots {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    line-height: 1;
    letter-spacing: 1.28px;
    white-space: nowrap;
    background: linear-gradient(to right, #0087d2, #d03086);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .worry-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
  }

  .worry-card {
    background: #fff;
    width: 528px;
    max-width: 100%;
    border-radius: 16px;
    padding: 16px 16px 16px 24px;
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .concerns_card.align_end {
    padding: 16px 16px 16px 24px;
    flex-direction: row;
  }

  .concerns_card p {
    font-size: 18px;
  }

  .concerns_card p strong {
    font-size: 22px;
    line-height: 1.5;
  }

  .concerns_card .concerns_icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    position: relative;
  }

  .worry-card-deco {
    position: absolute;
    right: -17px;
    top: 27px;
    width: 11px;
    height: 18px;
    object-fit: contain;
  }

  .mask-circle96 {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
  }

  .worry-card-txt {
    flex: 1 0 0;
    min-width: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
  }

  /* ---- balloon ---- */
  .balloon {
    background: linear-gradient(152deg, #4cabdf 11%, #0087d2 67%);
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    position: relative;
  }

  .balloon-tail {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(-135deg);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0087d2;
  }

  /* ---- solve band ---- */
  .solve-block {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    overflow: hidden;
    height: 408px;
  }

  .solve-triangle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
  }

  .solve-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 112px;
    margin-bottom: -212px;
    position: relative;
    z-index: 2;
  }

  .solve-lead {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.4px;
  }

  .solve-lead-em {
    position: relative;
  }

  .solve-lead-dots {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #0087d2;
    white-space: nowrap;
  }

  .marker-yellow {
    background: linear-gradient(transparent 75%, #FFF288 75%, #fff288 93%, transparent 93%);
  }

  .solve-line1 {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 48px;
  }

  .solve-tag {
    background: #0087d2;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.64px;
    padding: 0 4px;
  }

  .solve-line2 {
    font-weight: 700;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .solve-imgarea {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding-left: 24px;
    position: relative;
    z-index: 1;
    pointer-events: none;
  }

  .solve-img {
    height: 360px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .solve-img-l {
    width: 252px;
  }

  .solve-img-r {
    width: 295.2px;
  }

  .solve-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .solve-img-l img {
    object-position: center top;
  }

  .solve-img-r img {
    object-position: center top;
  }

  /* ============ VALUE (Section 3) ============ */
  .value-block {
    background: #e7f3fa;
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .side-watermark {
    position: absolute;
    left: -2px;
    top: 16px;
    width: 131px;
    height: 0;
    pointer-events: none;
    z-index: 2;
    transform-origin: 65px 0;
  }
  .side-watermark span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 180px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .side-watermark-blue {
    color: #e7f3fa;
    opacity: 0.5;
  }
  
  .value_section .vertical_label {
    height: 596px;
  }
  
  .voice_section .vertical_label,
  .price_section .vertical_label {
    height: 565px;
  }

  .value-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .value-head-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .value-head-main {
    font-weight: 700;
    text-align: center;
  }

  .value-head-count {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.56px;
    margin-top: -12px;
    display: inline-block;
  }

  .value-head-count .s64 {
    font-size: 64px;
    line-height: 1.5;
    letter-spacing: 1.28px;
    color: #0087d2;
    background: linear-gradient(transparent 72%, #fff288 72%, #fff288 88%, transparent 88%);
  }
  .value-head-count .s64 span {
    font-size: 40px;
    font-family: "Noto Sans JP";
    font-style: normal;
  }

  .value-head-count .s40 {
    line-height: 1.5;
  }

  .value-cards {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
  }

  .value-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(11, 67, 104, 0.24);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 24px;
    align-items: center;
  }

  .value-card-w528 {
    width: 528px;
    max-width: 100%;
  }

  .value-card-flex {
    flex: 1 0 0;
    min-width: 300px;
  }

  .value-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0087d2;
    color: #fff;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .value_card h3.value_card_h3_stack {
    color: #0087d2;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .value_card .value_body {
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .value-card-flex .value-card-body {
    padding: 0 16px;
  }

  .value-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 4px;
  }

  .value-card-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .value-card-h3 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #0087d2;
  }

  .value-card-h3 .s12 {
    font-size: 12px;
    font-weight: 700;
  }

  .value-card-h3 .s20 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }

  .value_card h4 .big span {
    margin-top: 0;
    display: inline;
  }
  .value-card-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
  }

  .value-fukidashi {
    position: absolute;
    background: #0087d2;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1.5;
    z-index: 3;
  }

  .fukidashi-tail-down {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #0087d2;
  }

  .value-coach {
    position: absolute;
    width: 96px;
    height: 120px;
    object-fit: contain;
    z-index: 2;
  }

  /* value 1 */
  .value-img-1 {
    height: 270px;
    background: #e7f3fa;
  }

  .value-img-cf85 {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
    width: 78%;
    height: auto;
  }

  .v1-fukidashi {
    right: 6px;
    top: 100px;
  }

  .value-img-1 .value-coach {
    right: 4px;
    bottom: 0;
  }

  /* value 2 */
  .value_card .value_media_group {
    height: 270px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 0;
  }

  .value-hybrid-tags {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

  .hybrid-tag {
    background: #4cabdf;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 2px;
    line-height: 1.25;
  }

  .hybrid-plus {
    width: 18px;
    height: 18px;
    display: flex;
    flex-shrink: 0;
  }

  .hybrid-plus.inline {
    width: 20px;
    height: 20px;
  }

  .value-hybrid-note {
    font-weight: 500;
    font-size: 14px;
  }

  .value-img-691 {
    flex: 1 0 0;
    min-height: 0;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* value 3 */
  .value-img-3 {
    height: 311px;
    background: #ebf5fd;
  }

  .value-img-700 {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    height: 260px;
    width: auto;
    object-fit: contain;
  }

  .v3-fukidashi-1 {
    right: 6px;
    top: 12px;
  }

  .v3-fukidashi-2 {
    left: 55%;
    top: 165px;
  }

  .v3-coach {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  /* value 4 */
  .value-img-4 {
    height: 311px;
    background: #e7f3fa;
  }

  .value-img-d8cb {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    object-fit: contain;
  }

  .value-img-img1 {
    position: absolute;
    left: 92px;
    bottom: 20px;
    width: 250px;
    height: auto;
    z-index: 2;
  }

  .value-avatar {
    position: absolute;
    right: 62px;
    top: 12px;
    width: 160px;
    height: 160px;
    border-radius: 100px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 0 12px rgba(20, 24, 33, 0.12);
    z-index: 3;
  }

  .value-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* ---- beginner blue band ---- */
  .beginner-block {
    background: #0087d2;
    padding: 72px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .beginner-head {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
  }

  .beginner-head-txt {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
  }

  .beginner-head-line1 {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding-bottom: 8px;
  }

  .beginner-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-shrink: 0;
  }

  .beginner-head-grad {
    background: linear-gradient(to right, #005585, #d03086);
    color: #fff;
    font-weight: 700;
    text-align: center;
    position: relative;
  }

  .beginner-head-dots {
    position: absolute;
    left: calc(50% - 101.53px);
    top: -8px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 3.92px;
    color: #fff;
    white-space: nowrap;
  }

  .beginner-illust {
    flex-shrink: 0;
  }

  .beginner-illust img {
    width: 207.857px;
    height: 180px;
    object-fit: cover;
  }

  .beginner-cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
  }

  .beginner-cards .beginner_cards {
    flex-direction: row;
  }

  .beginner-card {
    background: #fff;
    flex: 1 0 0;
    min-width: 0;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(11, 67, 104, 0.24);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .beginner-card-h3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .beginner-fukidashi {
    background: #e7f3fa;
    color: #0087d2;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 11px;
    position: relative;
  }

  .beginner-fukidashi .fukidashi-tail-down {
    border-top-color: #e7f3fa;
  }

  .fukidashi-tail-down.small {
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 8px;
  }

  .beginner-card-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
  }

  /* ============ CASE (Section 4) ============ */
  .section-case {
    padding: 96px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .case-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .case-head .s20 {
    font-weight: 500;
  }

  .case-head-main {
    font-weight: 700;
    text-align: center;
  }

  .case-cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
  }

  .case-cards > *:nth-child(2) p strong span {
    letter-spacing: -2px;
  }

  .case-card {
    background: #4cabdf;
    flex: 1 0 0;
    min-width: 0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
  }

  .case-watermark {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    opacity: 0.2;
    color: #fff;
    letter-spacing: 0.96px;
    line-height: 1;
  }

  .case-tag {
    background: #0087d2;
    color: #fff;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28px;
    align-self: flex-start;
    z-index: 10;
  }

  .case-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
  }

  .case-fukidashi {
    border: 0.5px solid #fff;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .case-face {
    flex-shrink: 0;
  }

  .mask-circle56 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
  }

  .case-fukidashi-txt {
    flex: 1 0 0;
    min-width: 0;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
  }

  .case-underline {
    border-bottom: 4px solid #FFED56;
  }

  .case_card .case_desc {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    flex: 1;
  }

  .case_card .case_illustration {
    width: 296px;
    height: 167px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .case-img img {
    width: 100%;
    height: 167px;
    object-fit: cover;
  }

  .case-img-c img {
    object-position: top;
  }

  .case-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    flex: 1;
  }

  /* ============ STEP (Section 5) ============ */
  .section-step {
    padding: 0 16px;
  }

  .step-inner {
    padding: 48px 0 96px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .step-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .step-head-unit {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    position: relative;
    font-weight: 700;
  }

  .step-head-main,
  .step-head-main2 {
    text-align: center;
    letter-spacing: 0.64px;
  }
  .step-head-main2 {
    position: relative;
    padding-top: 2px;
    display: inline-block;
  }

  .step-head-dots {
    color: #0087d2;
    font-size: 32px;
    line-height: 1;
    position: absolute;
    top: 47px;
    right: 0;
  }

  .step-head-sub {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
  }

  .step-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .step-tag-line {
    display: flex;
    justify-content: center;
  }

  .step-combo-tag {
    border-top: 1px solid #0087d2;
    border-bottom: 1px solid #0087d2;
    padding: 7px;
    display: flex;
    gap: 2px;
    align-items: center;
    color: #0087d2;
    font-weight: 500;
    line-height: 1;
  }

  .step-combo-tag .s16 {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .step-combo-tag .s14 {
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .step-combo-tag .s18 {
    font-size: 18px;
    letter-spacing: 0.36px;
  }

  .step-blocks {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .step-col {
    width: 343px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .step-marker {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 64px;
    gap: 0;
    flex-direction: row;
  }

  .step-marker-1 {
    padding-left: 139.5px;
    justify-content: flex-start;
  }

  .step-marker-3 {
    padding-right: 139.5px;
    justify-content: flex-end;
  }

  .roadmap_step_marker .step_line {
    flex: 1;
    width: 100%;
    min-height: 1px;
    background: #4cabdf;
  }

  .step-circle {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #4cabdf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
  }

  .step-label {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 10px;
    color: #4cabdf;
  }

  .step-num {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #0087d2;
    font-size: 24px;
    line-height: 1;
  }

  .step-card {
    height: 188px;
    border-radius: 16px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
  }

  .step-card-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .step-phase-tag {
    background: #0087d2;
    color: #fff;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .step-plan {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .step-plan .s36 {
    font-size: 36px;
    line-height: 1;
  }

  .step-plan .s18 {
    font-size: 18px;
    letter-spacing: 0.36px;
  }

  .step-plan .s24 {
    font-size: 24px;
  }

  .step-card-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
  }

  /* ============ VOICE ============ */
  .section-voice {
    background: #e7f3fa;
    position: relative;
    overflow: hidden;
  }

  .voice-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 96px 0;
  }

  .voice-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .voice-head .s20 {
    font-weight: 500;
  }

  .voice-head-main {
    font-weight: 700;
    text-align: center;
  }

  /* ============ PRICE (Section 6) ============ */
  .section-price {
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .price-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 0;
  }

  .price-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .price-head-lead {
    font-weight: 500;
    text-align: center;
  }

  .price-head-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    flex-wrap: wrap;
  }

  .price-head-row p {
    font-weight: 700;
  }

  .price-head-chip {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid #0087d2;
    border-radius: 8px;
    padding: 2px 16px;
    color: #0087d2;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
  }

  .price-head-plus {
    width: 32px;
    height: 32px;
    display: flex;
    flex-shrink: 0;
  }

  .price-head-big {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.64px;
    line-height: 45px;
    height: 45px;
  }

  .price-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
  }

  .price-group-title {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #141821;
    line-height: 1.2;
  }

  .price-group-title-osusume {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

  .price_plan_block > h3,
  .plan_title h3 {
    font-size: 24px;
  }

  .price_plan_block.is-recommend > .plan_title {
    height: 29px;
  }

  .osusume-badge {
    background: #d03086;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .price-group-title-black {
    font-weight: 700;
    font-size: 24px;
    color: #000;
  }

  .price-cards-2 {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    width: 740px;
    max-width: 100%;
  }

  .price-plan {
    flex: 1 0 0;
    min-width: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
  }

  .price-plan-plain {
    background: #fff;
    border: 1px solid #d1d4d7;
  }

  .price-plan-highlight {
    background: #e7f3fa;
    border: 1px solid #0087d2;
  }

  .price-plan-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
  }

  .price-plan-name {
    font-weight: 700;
    font-size: 24px;
    color: #141821;
    line-height: 1.5;
  }

  .price-plan-sub {
    font-weight: 400;
    font-size: 14px;
    color: #54575f;
    line-height: 1.5;
  }

  .price_plan_title .desc {
    margin-top: 0;
  }

  .price-plan-body {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    padding: 24px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .price-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .price-off {
    background: #fff288;
    color: #141821;
    font-weight: 500;
    font-size: 20px;
    padding: 0 8px;
    text-align: center;
  }

  .price-amount-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .price-yen-label {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    align-self: center;
  }

  .price-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 56px;
    line-height: 1;
  }

  .price-num.pink {
    color: #d03086;
  }

  .price-num.dark {
    color: #141821;
  }

  .price-yen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-end;
    padding-bottom: 8px;
  }

  .price-tax {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1;
  }

  .price-en {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
  }

  .price-after {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
  }

  .price_feature_icons .feature {
    flex: none;
  }

  .price-icons {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
  }

  .price-icon-box {
    width: 72px;
    height: 72px;
    border: 1px solid #0087d2;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    flex-shrink: 0;
  }

  .price-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .price-clock-double {
    display: flex;
    gap: 0;
    align-items: center;
    height: 36px;
  }

  .price-clock-double svg {
    width: 26px;
    height: 26px;
  }

  .price-icon-label {
    font-weight: 700;
    font-size: 10px;
    color: #0087d2;
    text-align: center;
    line-height: 1.2;
  }

  .price-checks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }

  .price-check {
    display: flex;
    align-items: center;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg {
    width: 19px;
    height: 19px;
  }

  .price-check span:last-child {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
  }

  .price-safe {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 24px;
  }

  .price-safe-title {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
  }

  .price-safe-items {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }

  .price-safe-item {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .price-safe-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
  }

  .price-safe-icon svg {
    width: 100px;
    height: 100px;
  }

  .price-safe-txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 0 0;
    min-width: 0;
  }

  .price-safe-txt .s20 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
  }

  .price-safe-txt .s14 {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
  }

  /* ============ FINAL CTA (Section 8) ============ */
  .section-final {
    position: relative;
  }

  .final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 429px;
    overflow: hidden;
    z-index: 0;
    background: #eaf4fb url("../images/final_cta_bg.webp") center top / cover no-repeat;
  }

  .final-bg-img {
    position: absolute;
    top: 29px;
    height: 400px;
    overflow: hidden;
  }

  .final-bg-img img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top;
  }

  .final-bg-img-l {
    left: -32px;
    width: 316px;
  }

  .final-bg-img-r {
    right: -32px;
    width: 316px;
    display: flex;
    justify-content: flex-end;
  }

  .final-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 0;
  }

  .final-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .final-catch {
    font-weight: 700;
    text-align: center;
  }

  .final-catch p,
  .final-catch h2 {
    letter-spacing: 0.64px;
  }

  .marker-yellow-final {
    position: relative;
  }

}
