@charset "UTF-8";

/*============================================
Google Fonts
============================================*/
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/*============================================
フォント設定
============================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Black.woff") format("woff");
}

@font-face {
  font-family: "impact";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Impact.woff2") format("woff2"),
    url("../fonts/Impact.woff") format("woff");
}

@font-face {
  font-family: "din";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/DIN.woff2") format("woff2"),
    url("../fonts/DIN.woff") format("woff");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  all: unset;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

h1::before,
h1::after,
h2::before,
h2::after,
h3::before,
h3::after,
h4::before,
h4::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/*============================================
CSS変数（共通定義）
============================================*/
:root {
  --color-primary-gradient: linear-gradient(150deg, #00E5FF, #D500F9);
  --color-bg-primary: #000000;
  --color-bg-secondary: #131313;
  --color-text-primary: #ffffff;
  --color-text-secondary: #cccccc;
  --color-text-dark: #000000;
  --color-text-gray: #333333;
  --color-text-light-gray: #555555;
  --color-accent-cyan: #00E5FF;
  --color-accent-purple: #D500F9;
  --plan-color-blue: #33ccff;
  --plan-color-text: #333;
  --plan-color-gray: #888;
  --plan-glow-shadow: 0 0 20px rgba(100, 50, 255, 0.4);
  --shadow-primary: 0 0 20px rgba(51, 153, 255, 0.3);
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --border-radius-circle: 50%;
  /* Main content column — matches .graph_card / .faq_container / .plan_tab_container */
  --hakaku-lp-content-max: 900px;
}

/*============================================
共通スタイル
============================================*/
.sp-only {
  display: none;
}

/* グラデーション関連 */
.gradient-color {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient_color_btn {
  background: var(--color-primary-gradient);
  align-items: center;
}

/* 区切り線 */
.divider {
  width: 2px;
  height: 50px;
  background: var(--color-primary-gradient);
}

.divider_line {
  width: 100%;
  height: 3px;
  background: var(--color-primary-gradient);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
  position: relative;
  z-index: 3;
}

.divider_underline {
  width: min(350px, 92vw);
  max-width: 100%;
  height: 3px;
  background: var(--color-primary-gradient);
  margin-top: 20px;
  margin: 15px auto;
  box-sizing: border-box;
}

.separator {
  margin-top: 60px;
}

/* グラデーション枠線共通スタイル */
.gradient-border {
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-primary);
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-md);
  padding: 2px;
  background: var(--color-primary-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ボタンスタイル */
.application-btn {
  margin-top: 30px;
  width: 40%;
  background-color: #28c26d;
  padding: 20px;
  border-radius: var(--border-radius-lg);
  height: 30px;
  text-align: center;
}

.application-text {
  color: var(--color-text-primary);
  font-size: 1.2rem;
  font-weight: bold;
}

body,
html {
  background-color: var(--color-bg-primary) !important;
  color: var(--color-text-secondary);
  margin: 0;
  padding: 0;
  max-width: 100%;
  /* font-family: 'Teko', 'Noto Sans JP', sans-serif; */
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

body a {
  color: #007bff !important;
}

/*============================================
レイアウト
============================================*/
.wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--color-bg-secondary) !important;
  overflow-x: hidden;
  overflow-y: visible;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/*============================================
ヘッダー
============================================*/
/* 追従ヘッダー */
.header_wrapper {
  background-color: #000000 !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header_logo_wrapper {
  display: flex;
  align-items: center;
}

.header_logo_img {
  width: 160px;
  height: auto;
  display: block;
}

.header_actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.hakaku-menu-toggle,
.hakaku-sp-nav {
  display: none;
}

#speed,
#price,
#scene,
#spec,
#plan-option,
#sim-set,
#flow,
#faq {
  scroll-margin-top: 72px;
}

.mypage-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 42px;
  margin-right: 12px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.3s,
    border-color 0.3s,
    color 0.3s;
}

.mypage-btn:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #111111;
}

.header_apply_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  background: var(--color-primary-gradient);
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

.header_apply_btn:hover {
  opacity: 0.8;
}

.header_btn_text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 8px;
}

.header_btn_arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 2px;
}

/*============================================
FV（ファーストビュー）修正
============================================*/
.FV_main_wrapper {
  width: 100%;
  margin: 0;
  padding-top: 64px;
  background-color: #000000;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.fv_visual_area {
  position: relative;
  width: 100%;

  height: 770px;

  background-color: #000000;

  background-image: url('../img/fv_bgi.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 770px;

  /* ぼかし設定（そのまま） */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 30%,
      black 70%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 30%,
      black 70%,
      transparent 100%);
}

.FV_main_wrapper .divider_line {
  margin-top: -150px;
}

.fv_content_text {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #ffffff !important;
  z-index: 2;
}

.fv_title {
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.fv_text_line {
  display: block;
  font-size: 3.2rem;
  color: #ffffff;
}

.fv_subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 20px;
  color: #ffffff;
}

.fv_accent {
  font-family: 'Teko', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0 5px;
}

/*============================================
メリットセクション
============================================*/
.merit_wrapper_section {
  width: 80%;
  max-width: min(var(--hakaku-lp-content-max), 100%);
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}

/* メリットセクション */
.merit_wrapper_container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* flex-wrap: wrap; */
  /* gap: 24px 16px; */
  padding: 0px 20px;
  box-sizing: border-box;
}

.merit_wrapper {
  flex: 1 1 200px;
  max-width: 280px;
  min-width: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.img_merit_thumbnail {
  width: auto;
  height: 105px;
  margin-bottom: 24px;
}

.merit_text {
  font-size: 1.5rem;
  color: var(--color-text-primary);
  text-align: center;
}

/*============================================
 FV オファーエリア 
============================================*/

/* エリア全体 */
.fv_offer_area {
  background-color: #111111;
  padding: 40px 20px 60px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.price-container {
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

/* --- 特徴リスト (縛りなし | ...) --- */
.features_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
  /* 数字との距離調整 */
  font-family: "Noto Sans JP", sans-serif;
}

.feature_text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  /* 念のため白を指定 */
}

.feature_divider {
  font-size: 1.8rem;
  font-weight: lighter;
  margin-top: -5px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- 価格表示 (月額 2,980 ...) --- */
.price_display_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 10px;
}

/* 「月額」 */
.price_display_wrapper .price_label {
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 10px;

  color: #ffffff !important;

  margin-bottom: 18px;
}

/* 数字ブロック */
.price_main_block {
  display: flex;
  align-items: flex-end;
}

/* 「2,980」 */
.price_number {
  font-family: 'Teko', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;

  line-height: 0.8;
  letter-spacing: -2px;
  margin: 0 5px;

  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;

  margin-bottom: 0;
}

.price_sub_block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: 5px;

  margin-bottom: 12px;
}

/* (税込) */
.price_sub_block .price_tax {
  font-size: 0.9rem;
  font-weight: normal;

  color: #ffffff !important;

  margin-bottom: 7px;
  line-height: 1;
}

/* 円〜 /100GB */
.price_sub_block .price_unit {
  font-size: 2.2rem;
  font-weight: bold;

  color: #ffffff !important;

  line-height: 1;
  font-family: 'Teko', "Noto Sans JP", sans-serif;
}

.note_mark {
  font-size: 1rem;
  vertical-align: top;
  margin-left: 2px;
  color: #cccccc;
}

/* --- 注釈 (右寄せ) --- */
.annotation_text {
  font-size: 1rem;
  font-weight: bold;
  color: #d4d2d2;
  text-align: right;
  padding-right: 10%;
}

/*============================================
サービスコンテンツセクション
============================================*/
/* .service_content_wrapper {
  padding: 20px 0;
} */

.service_content_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-primary);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

.text_gradient_service {
  font-size: 3.0rem;
}

/*============================================
スピードセクション
============================================*/
.speed_section {
  position: relative;
  background-color: #000000;
  padding: 10px 20px 100px;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1;
  max-width: 100%;
  box-sizing: border-box;
}

/* 背景画像専用の擬似要素を作成 */
.speed_section::before {
  content: "";
  display: block;
  position: absolute;

  /* 画像を下寄せ・中央配置 */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 1600px;
  height: 100%;

  /* 背景画像の設定 */
  background-image: url('../img/speed_section_bgi.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;

  z-index: -1;

  /* 画像を上に向かってフェードアウトさせるマスク処理 */
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);

  /* 左右の端のぼかし */
  mask-image: radial-gradient(circle at bottom, rgba(0, 0, 0, 1) 40%, transparent 55%);
}

/* コンテンツ（グラフやテキスト）が背景より上に来るように設定 */
.speed_section>* {
  position: relative;
  z-index: 2;
}

/* --- グラフカード全体 (PC) --- */
.graph_card {
  width: 100%;
  max-width: min(var(--hakaku-lp-content-max), 100%);
  margin: 0 auto 50px;
  padding: 60px 40px;
  border-radius: 20px;
  background: rgba(20, 20, 20, 0.5);
  position: relative;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  min-width: 0;

  border: 3px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.graph_card,
.about_money_container,
.spot_voice_container,
.spot_quality_container,
.price_plan_container,
.safety_options_container,
.international_usage_options_container,
/* --- カード本体 --- */
.plan_tab_content {
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-primary);
}

.graph_card::before,
.about_money_container::before,
.spot_voice_container::before,
.spot_quality_container::before,
.price_plan_container::before,
.safety_options_container::before,
.international_usage_options_container::before,
.plan_tab_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-md);
  padding: 2px;
  background: var(--color-primary-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.graph_image {
  width: 80%;
  /* グラフ画像も大きめに */
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.speed_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.speed_text_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.speed_text_1 {
  font-size: 1.0rem;
}

.speed_text_2 {
  font-size: 2.0rem;
  font-weight: bold;
  align-items: baseline;
}

.speed_text_3 {
  font-size: 3.5rem;
  display: flex;
  align-items: baseline;
}

/* --- テキストエリア (PC) --- */
.speed_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 「NA02以外の端末...」 */
.speed_compare_text {
  font-size: 1.6rem;
  color: #ddd;
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

/* ロゴと速度の行 */
.speed_logo_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.header_logo_img {
  height: 45px;
  width: auto;
}

/* 「NA02 : 390Mbps」 */
.speed_val_text {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}

/* 「約2.6倍の高速通信！」 */
.speed_impact_text {
  font-size: 3.0rem;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.2;
}

/* 「2.6」の数字 */
.speed_big_number {
  font-family: 'Teko', sans-serif;
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 0.9;
  margin: 0 10px;
  vertical-align: middle;
  position: relative;
  top: -5px;
}

/* 注釈 */
.speed_note {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 10px;
}

/* PC・基本設定 */
.benefits_row {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 85%;
  /* max-width: 600px; */
  margin: 50px auto 0 auto;
}

.benefit_item {
  position: relative;
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laurel_bg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 共通調整 --- */
.benefit_content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  top: 52%;
  text-align: center;
  z-index: 2;
  color: #fff;
  line-height: 1;
}

/* タイトルと値の行間を詰める */
.benefit_title {
  margin-bottom: 0px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.benefit_value {
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.benefit_note {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* --- 左側 (Type A: 速度訴求) --- */
.type-a .benefit_title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 「下り最大」 */
.type-a .benefit_value {
  font-size: 1.1rem;
  font-weight: bold;
}

/* 「390Mbps」 */
.type-a .benefit_value span {
  font-family: 'Teko', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -1px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

/* --- 右側 (Type B: 契約訴求) --- */
.type-b .benefit_title {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* 「契約の縛りなし 違約金0円」 */
.type-b .benefit_value {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.2;
}

/*============================================
料金セクション
============================================*/
.about_money_section {
  width: 80%;
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.about_money_title {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--color-text-primary);
  text-align: center;
  padding-top: 30px;
}

.about_money_divider_underline {
  width: 350px;
  height: 3px;
  background: var(--color-primary-gradient);
  margin-top: 20px;
}

.about_money_container {
  max-width: var(--hakaku-lp-content-max);
  margin: 40px auto 60px;
  background-color: var(--color-text-primary);
  padding: 40px 20px;
  color: var(--color-text-dark);
  text-align: center;
  align-items: center;
}

.about_union {
  position: relative;
  width: 40px;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.top_label {
  font-weight: bold;
  color: var(--color-text-gray);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.top_price {
  color: var(--color-text-gray);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.top_price .price_num {
  font-size: 2.5rem;
  line-height: 1;
}

.top_price .unit {
  font-size: 1rem;
  font-weight: normal;
}

.logo {
  max-width: 280px;
  margin: 10px 0 20px 0;
  display: inline-block;
}

.mid_label {
  font-weight: bold;
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.main_price_box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  line-height: 1;
}

.prefix_group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 5px;
  font-weight: bold;
  color: var(--color-text-gray);
}

.gb_text {
  color: #33ccff;
  font-size: 1.5rem;
  line-height: 1;
}

.monthly_text {
  font-size: 1.2rem;
  color: #444;
}

.big_gradient_price {
  font-size: 6rem;
  font-weight: 900;
  margin: 0 5px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.suffix_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  color: #444;
  margin-left: 5px;
}

.tax_text {
  font-size: 1rem;
}

.yen_text {
  font-size: 1.5rem;
}

.note {
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/*============================================
  下部訴求エリア（CTA）の修正スタイル
============================================*/

.about_money_appeal {
  width: 100%;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appeal_points_1 {
  color: var(--color-text-primary);
  font-size: 3.2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 40px;
}

.appeal_points_2 {
  color: var(--color-text-primary);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

.mobile_router_slant {
  width: 60%;
}

.container_appeal {
  width: 100%;
  max-width: 800px;
  position: relative;
  border: 1px dashed var(--color-text-gray);
  padding: 20px;
}

.text-overlay {
  position: absolute;
  top: 10%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 50%;
}

.btn_overlay {
  position: absolute;
  top: 70%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 50%;
  width: 30%;
  height: 30px;
  padding: 20px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.faded_router_image {
  width: 60%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
  mask-image: linear-gradient(to right, transparent 0%, black 50%);
  object-fit: cover;
}


.about_money_container .money_card_header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  width: 100%;
}

.about_money_container .header_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333;
  margin: 0 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  /* ベースラインを揃えて配置 */
  display: inline-flex;
  align-items: center;
}

/* --- グラデーションテキストの親要素 --- */
.about_money_container .text_cyan {
  font-family: 'Teko', sans-serif;
  margin-left: 8px;
  line-height: 1;

  /* グラデーションを適用 */
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;

  display: inline-block;
}

.about_money_container .cyan_num {
  font-size: 5.0rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.about_money_container .cyan_unit {
  font-size: 3.0rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 2px;
}

.about_money_container .campaign_badge {
  display: inline-block;
  padding: 8px 60px;
  border-radius: 50px;
  /* 丸み */
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(213, 0, 249, 0.3);
}

.about_money_container .price_display_area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  color: #333;
  padding-bottom: 10px;
}

/* 「月額」ラベル */
.about_money_container .price_label_month {
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 8px;
  margin-bottom: 21px;
  color: #333;
}

/* 価格数字「2,980」 */
.about_money_container .price_number_big {
  font-family: 'Teko', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -2px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

/* 単位グループ（(税込)と円〜を縦に積む枠） */
.about_money_container .price_unit_group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: 5px;
  margin-bottom: 21px;
}

.about_money_container .money_note {
  font-size: 1.1rem;
  color: #555;
  font-weight: bold;
  margin-bottom: 10px;
}

/* メインタイトル */
.about_money_appeal .appeal_title_main {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 50px;

  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  text-align: left;
  padding-left: 0;
}

/* フレックスコンテナ（PC用レイアウト） */
.about_money_appeal .appeal_content_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  position: relative;
  gap: 40px;
  box-sizing: border-box;
}

/* --- 左側：テキストとボタン --- */
.about_money_appeal .appeal_text_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding-left: 0 !important;

  z-index: 2;
}

/* 説明文 */
.about_money_appeal .appeal_desc_text {
  color: #ffffff;
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 90px;
  font-weight: bold;
  text-align: left;
}

/*============================================
  CTAボタン（元デザインの下部ボタン形状再現）
============================================*/

/* ボタン本体の設定 */
a.cta_custom_btn {
  background-color: transparent !important;
  margin: 0 !important;
  width: 60%;
  max-width: 380px;
  height: auto;
  padding: 25px 20px;
  background: var(--color-primary-gradient) !important;
  border-radius: 10px !important;

  /* テキスト配置 */
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  /* 共通カラーに合わせた発光感（影） */
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);

  transition: all 0.3s ease;
}

/* テキストスタイル */
.cta_custom_btn .application-text {
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* 矢印「>」のデザイン */
.cta_custom_btn .application-text::after {
  content: "›";
  font-family: sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  margin-left: 20px;
  transform: translateY(-2px);
  line-height: 0;
  color: #fff;
}

/* ホバー時の動き */
a.cta_custom_btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(213, 0, 249, 0.6);
}

/* --- 右側：画像エリア --- */
.about_money_appeal .appeal_img_col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  /* 右側に寄せる */
  position: relative;
}

/* 画像（フェード調整） */
.about_money_appeal .faded_router_image {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 10%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 10%, black 60%);

  object-fit: contain;
  opacity: 0.9;
}

/*============================================
シチュエーションセクション
============================================*/
.situation_section {
  background-color: var(--color-text-primary);
  background-image: url('../img/spot_bgi.png');
  background-size: 100% auto;
  background-position: center 0%;
  color: var(--color-text-dark);
  padding: 60px max(16px, env(safe-area-inset-right)) 100px max(16px, env(safe-area-inset-left));
  text-align: center;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  box-sizing: border-box;
}

.situation_container {
  position: relative;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(var(--hakaku-lp-content-max), 100%);
  min-width: 0;
  box-sizing: border-box;
}

.situation_container+.situation_container {
  margin-top: 60px;
}

.situation_text {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.situation_text_sub {
  position: absolute;
  top: 0;
  right: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-primary-gradient);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin-left: 0;
}

.situation_text_sub span {
  transform: rotate(10deg);
  display: inline-block;
}

.situation_text_sub span:first-child {
  font-size: 0.8rem;
  margin-bottom: 5px;
  margin-left: 5px;
}

.situation_text_sub span:last-child {
  font-size: 1.7rem;
  line-height: 1;
}

.voice_slider_wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像の表示切り替え */
.spot_scean_pc {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: none;
}

/* 画像の表示切り替え */
.spot_scean_sp {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.other_company_comparison_grid {
  display: grid;
  gap: 40px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.other_company,
.company {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.spot_voice_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}

/*============================================
 お客様の声
============================================*/

/* カード本体 */
.spot_voice_container {
  width: 300px;
  height: auto;
  min-height: 380px;
  background-color: #ffffff;
  padding: 40px 25px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  box-sizing: border-box;
}

/* アイコンの枠 */
.voice_icon_wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 3px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ユーザーアイコン画像 */
.user_icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #f0f0f0;
  display: block;
  margin: 0;
}

/* テキストエリア全体を左揃えにする */
.spot_voice_text,
.spot_voice_content {
  width: 100%;
  text-align: left;
}

/* --- 見出し（虹色の縦線付き） --- */
h3.voice_title {
  display: flex !important;
  align-items: center !important;
  font-size: 1.15rem;
  font-weight: bold;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

/* 虹色の縦線（擬似要素） */
h3.voice_title::before {
  content: '' !important;
  display: inline-block !important;

  position: relative !important;
  top: auto !important;
  left: auto !important;

  background: var(--color-primary-gradient) !important;
  width: 4px;
  height: 24px;
  margin-right: 4px;
  flex-shrink: 0;
  border-radius: 2px;
  transform: translateY(-3px) !important;
}

/* --- プロフィール（文字位置合わせ） --- */
.voice_profile {
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* 本文 */
.voice_desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: justify;
}

.slider_arrow,
.slider_dots_sp {
  display: none;
}

.spot_quality_container {
  position: relative;
  height: 100%;
  background-color: var(--color-text-primary);
  padding: 40px 20px;
  color: var(--color-text-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--hakaku-lp-content-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/*============================================
キャリアセクション
============================================*/
.point-decoration {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  display: inline-block;
  transform: rotate(-15deg);
  position: absolute;
  top: 20px;
  left: 165px;
}

.carrier_section_heading {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 30px;
  width: 100%;
  font-weight: bold;
}

.carrier-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0;
}

/* キャリアセクション */
.carrier-item {
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 0;
  width: 140px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: default;
}

.docomo {
  background-color: #c70025;
}

.au {
  background-color: #ea5404;
}

.softbank {
  background-color: #a7a7a7;
}

.rakuten {
  background-color: #ff00e6;
}

.description-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  width: 95%;
  text-align: center;
}

.description-box p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 14px;
  color: var(--color-text-light-gray);
}

.mt-large {
  margin-top: 20px;
}

.carrier_image {
  max-width: 50% !important;
  height: auto;
  margin-bottom: 20px;
}

/*============================================
  特別料金プラン
============================================*/

/* --- カード本体 --- */
.special_layout {
  background-color: #ffffff;
  padding: 60px 20px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 20px rgba(51, 153, 255, 0.3);
  border-radius: 15px;
}

/* --- ヘッダー (大容量 100GB) --- */
.header_layout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  line-height: 1;
}

.header_line {
  height: 2px;
  width: 120px;
  background: var(--color-primary-gradient);
  margin: 0 15px;
  border-radius: 2px;
}

.header_label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-right: 5px;
}

.header_num {
  font-family: 'DIN', 'Teko', sans-serif;
  font-size: 3.8rem;
  font-weight: bold;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  margin-bottom: -5px;
}

.header_unit {
  font-family: 'DIN', 'Teko', sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}

/* --- メイン価格エリア (月額 2,980円) --- */
.price_main_layout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #333;
}

.price_label {
  font-size: 3.0rem;
  font-weight: bold;
  margin-right: 8px;
  margin-top: 10px;
  margin-bottom: 0px;
  color: #333;
}

.price_num {
  font-family: 'DIN', 'Impact', sans-serif;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -2px;
  padding-bottom: 5px;
}

/* 単位ボックス（税込・円～） */
.price_unit_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 5px;
  margin-top: 5px;
}

.price_tax {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  margin-bottom: 3px;
  transform: translateY(2px);
}

.price_yen {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

/* --- サブテキスト --- */
.price_sub_text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* --- プラス記号 --- */
.plus_mark {
  font-size: 3rem;
  line-height: 1;
  margin: 10px 0 20px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: lighter;
}

/* 詳細リストボックス */
.details_container {
  background-color: #F5F6F8;
  border-radius: 10px;
  padding: 20px 60px;
  width: 94%;
  max-width: 580px;
  margin: 20px auto;
  box-sizing: border-box;

  text-align: left !important;
}

/* リスト本体 */
.details_list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: block !important;
  width: 100%;
}

.details_list li {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.details_list li:last-child {
  margin-bottom: 0;
}

/* ラベルと値の位置合わせ */
.li_label {
  display: inline-block;
}

.li_val {
  display: inline-block;
}

/* ※印の上付き調整 */
.sup {
  font-size: 0.7em;
  vertical-align: top;
  position: relative;
  top: 0px;
  margin-left: 2px;
  color: #888;
}

/* フッター注釈 */
.footer_note {
  font-size: 0.75rem;
  color: #444;
  line-height: 1.5;
  width: 94%;
  max-width: 580px;
  margin: 12px auto 0;

  text-align: left !important;
}

/* セクション全体の背景設定 */
.special_plan_section {
  background-color: var(--color-bg-secondary);
  background-image: url('../img/spiral_bgi.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px max(0px, env(safe-area-inset-right)) 80px max(0px, env(safe-area-inset-left));
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* セクション見出しのテキストカラー */
.special_plan_section .situation_text {
  color: #fff;
  margin-bottom: 40px;
}

/* メインの料金プランカード（白背景化） */
.special_layout {
  background-color: #ffffff !important;
  color: #333 !important;
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* ヘッダーの「大容量 100GB」 */
.header_label {
  color: #333;
}

.header_num,
.header_unit {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Teko', sans-serif;
}

/* 月額 2,980円 のグラデーション */
.price_num {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Teko', sans-serif;
  font-size: 8rem;
  /* 少し大きく */
  line-height: 1;
}

/* オプションカードの調整（白背景・グラデーション枠） */
.safety_options_container,
.international_usage_options_container {
  background-color: #ffffff !important;
  color: #333 !important;
  border: none;
  /* gradient-borderの擬似要素があるため */
}

.option_title {
  color: #333;
}

.option_price {
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}


.details_list li {
  color: #333;
}

/* リンクボタンの調整 */
.option-link {
  color: #555;
  text-decoration: underline;
}

/*============================================
スペックセクション
============================================*/
.spec_section {
  background-color: var(--color-bg-secondary);
  padding: 60px max(16px, env(safe-area-inset-right)) 100px max(16px, env(safe-area-inset-left));
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative !important;
  box-sizing: border-box;
}

.spec_section .situation_text {
  color: #ffffff;
}

/* 親要素：基準点を作る */
.router_img_wrapper {
  width: 60%;
  max-width: var(--hakaku-lp-content-max);
  display: block;
  position: relative;
  margin: 0 auto 70px;
  box-sizing: border-box;
}

/* 上に来る画像 (メイン) */
.spec_router_image {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* 下に来る画像 (ぼかし) */
.spec_router_blur {
  width: 200%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 1;
  opacity: 0.9;
}

/* スペックセクション */
.spec_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto 0;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* 個々のスペックアイテム */
.spec_item {
  display: flex;
  align-items: center;
  background-color: transparent;
}

/* アイコンの背景ボックス（グラデーション） */
.spec_icon_box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* アイコン画像自体のサイズ */
.spec_icon_img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

/* テキストエリア */
.spec_text_box {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ラベル（通信速度など） */
.spec_label {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
}

/* 値（390Mbpsなど） */
.spec_value {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

/*============================================
オプションセクション（special_plan_section 内の料金カード・オプション）
============================================*/
.price_plan_container {
  width: 83%;
  max-width: var(--hakaku-lp-content-max);
  margin: 40px auto 60px;
  background-color: var(--color-text-primary);
  padding: 40px 20px;
  color: var(--color-text-dark);
  text-align: center;
  align-items: center;
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-primary);
  box-sizing: border-box;
}

/* コンテナ全体 */
.options_container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0px auto 60px;
  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* カード共通設定 */
.safety_options_container,
.international_usage_options_container {
  width: 48%;
  max-width: 500px;
  margin: 0;
  background-color: #ffffff;
  padding: 40px 20px;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
}

.option_title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.option_price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  margin: 0;
}

/* 仕切り線 */
.options_text_underline {
  width: 60px !important;
  /* 画像に合わせて短く */
  height: 3px;
  background: var(--color-primary-gradient);
  margin: 10px auto 20px !important;
}


.options_img_container {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

/* 画像本体の設定 */
.options_img {
  max-width: 170px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 説明文エリア */
.option_explanation {
  width: 100%;
  text-align: left;
}

.options_text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

/* 注釈・リンク */
.options_notice p {
  font-size: 0.75rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.option_link_wrapper {
  text-align: left;
}

.option-link {
  color: #333;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.big_gradient_plan_price {
  font-size: 6rem;
  font-weight: 900;
  margin: 0 5px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

/*============================================
プランセクション
============================================*/

.plan_section {
  background-color: var(--color-bg-secondary);
  padding: 20px max(0px, env(safe-area-inset-right)) 20px max(0px, env(safe-area-inset-left));
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.plan_section .situation_text {
  color: #ffffff;
}

.plan_component_wrapper {
  background-color: #111;
  padding: 0px 20px 40px 20px;
  font-family: sans-serif;
}

/* --- コンテナ --- */
.plan_tab_container {
  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

/* --- タブ --- */
.plan_tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.plan_tab {
  flex: 1;
  max-width: 450px;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background-color: #fff;
  color: var(--plan-color-text);
  transition: all 0.3s ease;
  border-radius: 0;
}

.plan_tab:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 1px solid #ddd;
}

.plan_tab:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.plan_tab.active {
  background: var(--color-primary-gradient);
  color: white;
  border: none;
  box-shadow: 0 0 15px rgba(51, 204, 255, 0.5);
  z-index: 1;
}

/* --- カード本体 --- */
.plan_tab_content {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

/* --- ヘッダー --- */
.plan_content_header {
  text-align: center;
  margin-bottom: 30px;
}

.plan_content_header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--plan-color-text);
  margin: 0 0 10px 0;
}

.plan_content_header .plan_subtitle {
  font-size: 0.9rem;
  color: var(--plan-color-gray);
  margin-bottom: 15px;
}

/* グラデーションの仕切り線 */
.gradient_line {
  height: 2px;
  width: 100%;
  background: var(--color-primary-gradient);
  margin-top: 20px;
  opacity: 0.7;
}

/* プランセクション */
.plan_content_body {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  min-width: 0;
}

.plan_column {
  flex: 1;
  min-width: 0;
}

/* カラムヘッダー */
.plan_column_header {
  min-height: 80px;
}

.plan_column_header h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--plan-color-text);
  margin: 0 0 15px 0;
}

.plan_subtitle {
  font-size: 0.8rem;
  color: var(--plan-color-gray);
  margin: 0 0 10px 0;
  line-height: 1.4;
}

/* 割引率（グラデーション文字・斜体） */
.plan_discount_text {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.plan_discount_text.sm {
  font-size: 1.4rem;
}

.plan_discount_text.large {
  font-size: 2.5rem;
}

/* --- リスト全体のスタイル --- */
.plan_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード型リストアイテム */
.plan_list li {
  display: flex;
  align-items: stretch;
  background-color: #F4F5F7;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  padding: 0;
  border: none;
}

/* --- 左側：容量バッジエリア --- */
.plan_badge_area {
  background-color: #4B4B4B;
  color: #fff;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 0 10px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 18px;
}

.badge_num {
  font-size: 1.4rem;
  font-weight: 500;
}

.badge_unit {
  font-size: 0.8rem;
  font-weight: normal;
  margin-left: 2px;
}

/* 縦並びレイアウトに変更 */
.plan_badge_area.multi_row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 5px;
  line-height: 1.1;
}

/* 容量表示の調整 */
.multi_row .badge_num {
  font-size: 1.2rem;
  line-height: 1;
}

/* 「+」記号 */
.badge_plus {
  font-size: 0.8rem;
  font-weight: lighter;
  margin: 2px 0;
  opacity: 0.8;
}

/* オプション名（～かけ放題） */
.badge_desc {
  font-size: 0.6rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* バッジの「GB」単位の位置調整 */
.multi_row .badge_unit {
  font-size: 0.7rem;
}

/* --- 右側：価格情報エリア --- */
/* プランセクション */
.plan_price_row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 12px 20px; */
  padding: 12px 1.6vw;
}

/* --- 左側の定価表示（打ち消し線デザイン） --- */
.price_origin {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--color-bg-secondary);
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-right: 5px;
}

/* 打ち消し線（擬似要素で描画） */
.price_origin::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  height: 2px;
  background-color: var(--color-bg-secondary);
  transform: rotate(0deg);
  pointer-events: none;
}

/* 数字部分 */
.origin_num {
  /* font-size: 1.6rem; */
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.5px;
}

/* 単位部分のコンテナ（縦積み） */
.origin_suffix {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 2px;
  line-height: 1;
  padding-bottom: 1px;
}

/* (税込) */
.origin_tax {
  font-size: 0.6rem;
  font-weight: normal;
  transform: scale(0.85);
  transform-origin: bottom left;
  margin-bottom: -2px;
}

/* 円/月 */
.origin_unit {
  font-size: 0.8rem;
  font-weight: bold;
}

/* 2. 矢印 (グラデーション) */
.price_arrow_wrap {
  margin: 0 10px;
}

.plan_arrow {
  font-size: 1.0rem;
  font-weight: 900;
  letter-spacing: -3px;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 3. 最終価格 */
.price_final {
  display: flex;
  align-items: flex-end;
  color: #111;
}

.plan_price {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1px;
}

.price_suffix {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 4px;
  line-height: 1;
  padding-bottom: 3px;
}

.tax {
  font-size: 0.6rem;
  color: #666;
  margin-bottom: 2px;
  transform: scale(0.9);
  transform-origin: left bottom;
}

.unit {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
}

/* --- 下部セクション（かけ放題） --- */
.plan_bottom_section {
  margin-top: 30px;
  padding-top: 30px;
}

/* 横並びリスト（SP時は縦になる想定だが画像通り横並び風に） */
.plan_list.horizontal_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.plan_list.horizontal_list li {
  flex: 1 1 40%;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.plan_badge.sm {
  width: 40px;
  height: 28px;
  font-size: 0.8rem;
}

.plan_footer_note {
  text-align: right;
  margin-top: 20px;
  font-size: 0.7rem;
  color: var(--plan-color-gray);
}

.campaign_image_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
  padding: 1.5rem;
  max-width: 950px;
  margin: auto;
}

/*============================================
利用開始ステップセクション
============================================*/
/* 契約セクション */
.contract_section {
  background-image: url('../img/back_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px max(16px, env(safe-area-inset-right)) 100px max(16px, env(safe-area-inset-left));
  width: 100%;
  max-width: 100%;
  position: relative;
  color: #333;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: var(--color-text-primary);
}

/* サブタイトル */
.contract_subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: -40px;
  margin-bottom: 50px;
  color: var(--color-text-dark);
}

/* ステップカード */
.steps_wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: min(var(--hakaku-lp-content-max), 100%);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

/* ステップカード本体 */
.step_card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* グラデーションボーダー（擬似要素で表現） */
.step_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-md);
  padding: 2px;
  background: var(--color-primary-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ステップ番号 (STEP.1など) */
.step_label {
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

/* ステップタイトル */
.step_title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-dark);
  margin: 0 0 15px 0;
}

/* 説明文 */
.step_desc {
  font-size: 0.8rem;
  color: var(--color-text-light-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  flex-grow: 1;
}

/* アイコンエリア */
.step_icon_area {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

/* アイコンSVG */
.step_icon {
  width: 100%;
  height: 100%;
}

/* アイコン画像 */
.step_icon_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 矢印を90度回転させて下向きにする */
.step_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
}

.step_arrow::after {
  content: '»';
  font-family: Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: scaleX(0.8);
}

/*============================================
よくあるご質問 (FAQ) セクション
============================================*/
/* FAQセクション */
.faq_container {
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.faq_item {
  width: 100%;
}

.faq_divider {
  width: 100%;
  height: 1px;
  background: var(--color-primary-gradient);
  opacity: 0.5;
  margin: 0;
}

/* --- 質問ヘッダー --- */
.faq_header {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq_header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq_title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  flex-grow: 1;
  line-height: 1.5;
}

/* Qアイコンのベース */
.faq_icon_q {
  background-image: url('../img/speech_bubble_q.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

/* Qアイコン内のテキスト */
.icon_text {
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
}

/* --- 回答ボディ --- */
.faq_body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  opacity: 0;
}

.faq_item.active .faq_body {
  height: auto;
  opacity: 1;
}

.faq_content {
  display: flex;
  align-items: flex-start;
  padding: 10px 10px 30px 10px;
}

/* Aアイコンのベース */
.faq_icon_a {
  background-image: url("../img/speech bubble_a.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

/* Aアイコン内のテキスト */
.icon_text_a {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq_text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  padding-top: 5px;
}

/* --- 開閉アイコン (+ / ×) --- */
.faq_toggle_icon {
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq_toggle_icon::before,
.faq_toggle_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #555;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq_toggle_icon::before {
  width: 100%;
  height: 2px;
}

.faq_toggle_icon::after {
  width: 2px;
  height: 100%;
}

.faq_item.active .faq_toggle_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq_item.active .faq_toggle_icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*============================================
  CTA Finalデザイン
============================================*/

/* --- PC・共通設定 --- */
.cta_section {
  width: 100%;
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;

  /* 背景画像の設定 */
  background-color: #000000;
  background-image: url('../img/fv_bgi.png');
  background-repeat: no-repeat;

  background-position: center top;
  background-size: auto 100%;
  padding-top: 150px;
  padding-bottom: 100px;
}

.cta_content_wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

/* 価格ボックス */
.cta_price_box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* 下揃え */
  line-height: 1;
  /* margin-bottom: 10px; */
}

.cta_label_month {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 8px;
  margin-bottom: 18px;
  /* 数字の下と合わせる */
}

.cta_price_num {
  font-family: 'Teko', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 0.85;
  margin: 0 5px;

  /* グラデーション */
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta_price_unit_stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  margin-left: 5px;
  margin-bottom: 12px;
}

.cta_price_unit_stack .cta_tax {
  font-size: 0.9rem;
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}

.cta_price_unit_stack .cta_yen {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}

.cta_connector {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 5px;
  margin-bottom: 15px;
}

.cta_main_copy {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* リスト */
.cta_benefit_list {
  list-style: none;
  padding: 0;
  margin: 0 auto 250px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.cta_benefit_list li {
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.cta_check {
  color: #D500F9;
  /* チェックマークの色 */
  margin-right: 5px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ボタン周り */
.cta_bottom_content {
  top: 70px;
  position: relative;
  z-index: 2;
}

.cta_btn_text {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta_button,
.cta_button:link,
.cta_button:visited,
.cta_button:hover,
.cta_button:active {
  color: #fff;
}

.cta_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 400px;
  padding: 20px;
  background: var(--color-primary-gradient);
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transition: opacity 0.3s;
}

.cta_button:hover {
  opacity: 0.9;
}

.big_cta_text {
  color: #fff;
}

.cta_arrow {
  margin-left: 15px;
  font-size: 1.5rem;
  line-height: 0;
  padding-bottom: 4px;
}

.cta_bottom_note {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 15px;
}

/*============================================
フッターセクション
============================================*/
.footer_section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  width: 100%;
}

.footer_content {
  max-width: var(--hakaku-lp-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* --- ロゴ --- */
.footer_logo_wrapper {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer_logo_img {
  width: 280px;
  height: auto;
  display: block;
}

/* --- リンクリスト --- */
.footer_link_wrapper {
  width: 100%;
  margin-bottom: 40px;
}

.footer_link_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer_link_item {
  display: inline-block;
}

.footer_link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: normal;
  transition: opacity 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}

.footer_link:hover {
  opacity: 0.7;
}

/* --- コピーライト --- */
.footer_text_wrapper {
  width: 100%;
}

.footer_text {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  font-family: sans-serif;
  letter-spacing: 0.5px;
}

/*============================================
統合セクション用調整
============================================*/
/* ステップとFAQの間の余白 */
.section_spacer {
  height: 120px;
  width: 100%;
}

/*============================================
レスポンシブ対応（統合版）
============================================*/

/* PC表示（769px以上） */
@media screen and (min-width: 769px) {

  .sp-only {
    display: block;
  }

  .header_apply_btn {
    width: 250px;
  }

  .mypage-btn {
    width: 210px;
  }

  .header_line {
    margin: 0 4px;
  }

  .cta_custom_btn .application-text {
    letter-spacing: 0.04em;
  }

  /* 画像の表示切り替え */
  .spot_scean_pc {
    display: block;
  }

  /* 画像の表示切り替え */
  .spot_scean_sp {
    display: none;
  }

  .origin_num {
    font-size: 1.1rem;
  }

  .plan_price {
    font-size: 1.5rem;
  }

  .plan_badge_area {
    width: 6.2vw;
    padding: 2vh 0.2vw;
  }

  .plan_price_row {
    padding: 12px 1.2vw;
  }

  .origin_tax {
    margin-bottom: 2px;
  }
}

/* スマホ・タブレット表示（768px以下） */
@media screen and (max-width: 768px) {

  .header_wrapper {
    gap: 8px;
    padding: 8px 10px;
  }

  .header_actions {
    display: none;
  }

  .hakaku-menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
  }

  .hakaku-menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: #111111;
    border-radius: 999px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hakaku-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hakaku-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .hakaku-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hakaku-sp-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    background: rgba(10, 10, 14, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      opacity 0.3s,
      visibility 0.3s,
      transform 0.3s;
  }

  .hakaku-sp-nav.panelactive {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .hakaku-sp-nav_list {
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 88px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    list-style: none;
  }

  .hakaku-sp-nav_list a {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }

  .hakaku-sp-nav_list .hakaku-sp-nav_apply,
  .hakaku-sp-nav_list .hakaku-sp-nav_mypage {
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    color: #ffffff !important;
  }

  body.hakaku-nav-open {
    overflow: hidden;
  }

  /* FVセクション */
  .fv_visual_area {
    height: 550px;
    background-size: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .fv_content_text {
    top: 100px;
    width: 90%;
  }

  .fv_text_line {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .fv_subtitle {
    font-size: 1.1rem;
    margin-top: 10px;
    display: block;
  }

  .fv_accent {
    font-size: 2.2rem;
  }

  .fv_offer_area {
    padding: 30px 10px 40px;
  }

  /* --- 特徴リスト（念のため調整） --- */
  .features_list {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .feature_text {
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .feature_divider {
    font-size: 1.1rem;
  }

  /* --- 価格表示エリア（ここを1行にする） --- */
  .price_display_wrapper {
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    transform: scale(1);
  }

  /* 「月額」 */
  .price_sub_block .price_label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-right: 4px;
    white-space: nowrap;
  }

  /* 「2,980」 */
  .price_number {
    font-size: 4.2rem;
    line-height: 1;
    margin: 0 2px;
  }

  /* 単位ブロック */
  .price_sub_block {
    margin-left: 2px;
    margin-bottom: 14px;
  }

  /* (税込) */
  .price_tax {
    font-size: 0.7rem;
    margin-bottom: 3px;
  }

  /* 円〜 /100GB */
  .price_sub_block .price_unit {
    font-size: 1.5rem !important;
    white-space: nowrap;
  }

  /* 注釈 */
  .annotation_text {
    text-align: center;
    font-size: 0.9rem;
    padding-right: 0;
  }

  .FV_main_wrapper .divider_line {
    margin-top: -70px;
  }

  .merit_wrapper_section {
    width: 100% !important;
    max-width: min(var(--hakaku-lp-content-max), 100%) !important;
    padding-inline: 0;
  }

  /* .merit_wrapper_container {
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
  } */

  .merit_wrapper {
    /* flex: none; */
    width: 100%;
    max-width: 320px;
  }

  .point-decoration {
    top: 15px;
    left: 15px;
  }

  /* 特別レイアウトセクション */
  .special_layout {
    padding: 40px 15px;
  }

  .header_label {
    font-size: 1.2rem;
  }

  .header_num {
    font-size: 2.8rem;
  }

  .header_unit {
    font-size: 1.6rem;
  }

  .header_layout .header_line {
    width: 70px;
    margin: 0 8px;
  }

  .price_label {
    font-size: 1.4rem;
    margin-top: 5px;
  }

  .price_num {
    font-size: 4rem;
  }

  .price_yen {
    font-size: 1.4rem;
  }

  .details_container {
    padding: 20px 30px;
    width: 100%;
  }

  .details_list li {
    font-size: 1rem;
  }

  .footer_note {
    font-size: 0.7rem;
    width: 100%;
    padding: 0 5px;
  }

  /*============================================
    スマホ対応 (768px以下)
    画像の位置ズレをここで修正します
  ============================================*/

  .cta_section {
    background-size: 195% auto;
    padding-top: 100px;
  }

  /* 価格表示の調整 */
  .cta_price_box {
    margin-top: 7rem;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 0px;
  }

  .cta_label_month {
    font-size: 2.8rem;
    /* margin-bottom: 12px; */
  }

  .cta_price_unit_stack .cta_price_num {
    font-size: 7.8rem;
    line-height: 0.8;
  }

  .cta_price_unit_stack .cta_yen {
    font-size: 3.2rem;
    margin-bottom: 5px;
  }

  .cta_connector {
    font-size: 2.1rem;
    margin-bottom: 17px;
  }

  .cta_main_copy {
    font-size: 2.3rem;
    margin-top: 5px;
  }

  /* リストのレイアウト修正（2列＋1列） */
  .cta_benefit_list {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 320px;
  }

  .cta_benefit_list li {
    font-size: 1.5rem;
  }

  .cta_benefit_list li.full_width {
    width: 100%;
    justify-content: center;
  }

  /* ボタン周り */
  .cta_button {
    width: 80%;
    padding: 16px;
    font-size: 1.1rem;
  }

  .cta_arrow {
    font-size: 1.2rem;
  }

  .campaign_image_wrapper {
    width: 100%;
    padding: 0 1rem 1rem 1rem;
  }

  /*============================================
    スマホ表示 (レスポンシブ)
  ============================================*/

  .options_container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 40px;
    width: 85%;
  }

  .safety_options_container,
  .international_usage_options_container {
    width: 100%;
    /* 横幅いっぱい */
    max-width: 100%;
    margin-bottom: 10px;
    padding: 30px 15px;
  }

  .option_title {
    font-size: 1.2rem;
  }

  .option_price {
    font-size: 1.3rem;
  }

  /* フッターセクション */
  .footer_section {
    padding: 40px 20px;
  }

  .footer_logo_img {
    width: 200px;
  }

  .footer_link_list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer_link {
    font-size: 0.85rem;
  }

  .footer_text {
    font-size: 0.7rem;
  }

  /* 統合版スマホ表示 */
  /* 画像の表示切り替え */
  .spot_scean_sp {
    display: block;
  }

  /* 画像の表示切り替え */
  .spot_scean_pc {
    display: none;
  }

  .situation_text_sub {
    top: -40px;
    right: 10px;
    transform: scale(0.8);
  }

  .spot_voice_grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .spot_voice_grid::-webkit-scrollbar {
    display: none;
  }

  .spot_voice_container {
    width: 280px;
    padding: 30px 20px;
  }

  .voice_title {
    font-size: 1.1rem;
  }

  .slider_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .arrow_prev {
    left: 0;
  }

  .arrow_next {
    right: 0;
  }

  .slider_dots_sp {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
  }

  .dot.active {
    background: var(--color-primary-gradient);
  }

  /* メリットセクション */
  /* .merit_wrapper_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    gap: 20px;
  } */

  .img_merit_thumbnail {
    height: 80px;
    margin-bottom: 16px;
  }

  .merit_text {
    font-size: 0.8rem;
  }

  /* 価格セクション */
  .features {
    font-size: 0.9rem;
    gap: 10px;
  }

  .price-number {
    font-size: 4rem;
  }

  .price-month,
  .unit {
    font-size: 1.2rem;
  }

  /* 背景設定 (全体) */
  .speed_section {
    position: relative;
    padding-bottom: 40px;
  }

  .graph_card {
    width: 94%;
    padding: 30px 15px;
  }

  .graph_image {
    width: 100%;
  }

  .speed_compare_text {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .header_logo_img {
    height: 20px;
  }

  .speed_val_text {
    font-size: 1.4rem;
  }

  .speed_impact_text {
    font-size: 1.5rem;
  }

  .speed_big_number {
    font-size: 3.5rem;
  }

  .speed_note {
    font-size: 0.65rem;
  }

  /* --- スマホ表示 (768px以下) の強力な調整 --- */
  .benefits_row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 5px;
    width: 98%;
    margin: 30px auto 0 auto;
    padding: 0;
  }

  .benefit_item {
    width: 49% !important;
    margin: 0;
  }

  /* 画像内の文字位置微調整 */
  .benefit_content {
    top: 52%;
    padding: 0 1px;
  }

  .benefit_value {
    margin-bottom: 10px;
  }

  /* スマホでは月桂樹の中に収まるように少しサイズを落とす */
  .type-a .benefit_title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .type-a .benefit_value {
    font-size: 0.8rem;
  }

  .type-a .benefit_value span {
    font-size: 1.3rem;
    top: 0px;
  }

  .type-b .benefit_title {
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .type-b .benefit_value {
    font-size: 1.0rem;
  }

  .benefit_note {
    font-size: 0.6rem;
    transform: scale(0.9);
  }

  /* キャリアセクション */
  .carrier-item {
    width: 45%;
  }

  /* 契約セクション */
  .contract_section {
    padding: 60px 15px;
  }

  .contract_subtitle {
    margin-top: -25px;
  }

  /* ステップカード */
  .steps_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* ステップカード本体 */
  .step_card {
    width: 100%;
    max-width: 340px;
  }

  /* 矢印を90度回転させて下向きにする */
  .step_arrow {
    width: 100%;
    height: 20px;
  }

  .step_arrow::after {
    transform: rotate(90deg) scaleX(0.8);
  }

  /* ステップとFAQの間の余白 */
  .section_spacer {
    height: 80px;
  }

  /* FAQセクション */
  .faq_container {
    padding: 20px 15px;
  }

  .faq_icon_q,
  /* Aアイコンのベース */
  .faq_icon_a {
    width: 36px;
    height: 32px;
    margin-right: 10px;
  }

  .icon_text,
  /* Aアイコン内のテキスト */
  .icon_text_a {
    font-size: 1.1rem;
  }

  .spec_section {
    padding: 40px 15px 80px ;
  }

  .situation_text {
    width: 100% ;
    margin-bottom: 40px ;
  }

  .situation_text>div:first-child {
    font-size: 1.35rem ;
    width: 100%;
    line-height: 1.4;
  }

  .divider_underline {
    width: 100px ;
    height: 3px ;
  }

  /* ルーター画像周り（SP） */
  .router_img_wrapper {
    width: 75% ;
    max-width: 320px ;
    display: block ;
    margin: 0 auto 60px ;
    position: relative ;
    overflow: visible ;
  }

  .spec_router_image {
    width: 100% ;
    height: auto ;
    margin: 0 ;
    position: relative ;
    z-index: 2 ;
  }

  .spec_router_blur {
    width: 200% ;

    max-width: none ;
    height: auto ;
    position: absolute ;
    top: 55% ;
    left: 50% ;
    transform: translate(-50%, -50%) ;
    z-index: 1 ;
    display: block ;
    opacity: 1 ;
  }

  /* リスト周り（SP） */
  .spec_grid_wrapper {
    display: flex ;
    flex-direction: column ;
    gap: 25px ;
    width: 85% ;
    padding: 0 10px ;
  }

  .spec_item {
    display: flex ;
    align-items: center ;
    justify-content: flex-start ;
    width: 100% ;
  }

  .spec_icon_box {
    width: 50px ;
    height: 50px ;
    margin-right: 20px ;
    flex-shrink: 0 ;
  }

  .spec_text_box {
    text-align: left ;
    flex: 1 ;
  }

  .spec_label {
    font-size: 1.1rem ;
    margin-bottom: 5px ;
  }

  .spec_value {
    font-size: 1.0rem ;
    line-height: 1.4 ;
    color: #ddd ;
  }

  /* プランセクション */
  .price_plan_container {
    width: 90%;
  }

  .plan_content_body {
    flex-direction: column;
    gap: 30px;
  }

  .plan_list.horizontal_list li {
    flex: 1 1 100%;
  }

  /*============================================
    スマホ表示（768px以下）のスタイル調整
  ============================================*/

  /* --- カード全体の余白調整 --- */
  .about_money_container {
    padding: 30px 15px;
    width: 95%;
  }

  /* --- 「大容量 100GB」ヘッダーの調整 --- */
  .about_money_container .money_card_header {
    flex-wrap: nowrap;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
  }

  .about_money_container .money_card_header .header_line {
    width: 30px;
    margin: 0 5px;
  }

  .about_money_container .header_text {
    font-size: 1.0rem;
    margin: 0 5px;
  }

  /* 数字と単位のサイズ調整（スマホ用） */
  .about_money_container .cyan_num {
    font-size: 3.5rem;
  }

  .about_money_container .cyan_unit {
    font-size: 2.0rem;
    margin-left: 2px;
  }

  .about_money_container .text_cyan {
    margin-left: 5px;
  }

  /* --- バッジの調整 --- */
  .about_money_container .campaign_badge {
    padding: 6px 40px;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  /* --- 価格エリアの調整 --- */
  .about_money_container .price_display_area {
    margin-bottom: 5px;
    align-items: flex-end;
  }

  .about_money_container .price_label_month {
    font-size: 1.3rem;
    margin-bottom: 16px;
    margin-right: 5px;
  }

  .about_money_container .price_number_big {
    font-size: 4.8rem;
    line-height: 0.9;
  }

  .about_money_container .price_unit_group {
    margin-left: 5px;
    margin-bottom: 16px;
  }

  .about_money_container .price_unit_group .price_tax {
    font-size: 0.7rem;
  }

  .about_money_container .price_unit_group .price_yen {
    font-size: 1.3rem;
  }

  .about_money_container .money_note {
    font-size: 0.8rem;
  }

  /* --- 下部訴求エリア（画像・テキスト・ボタン）の配置変更 --- */
  .about_money_appeal .appeal_title_main {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
  }

  /* 縦並び（画像が上、テキストが下） */
  .about_money_appeal .appeal_content_flex {
    flex-direction: column-reverse;
    gap: 10px;
  }

  /* テキスト・ボタンエリア（SP） */
  .about_money_appeal .appeal_text_col {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .about_money_appeal .appeal_desc_text {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 20px;
  }

  a.cta_custom_btn {
    width: 70%;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 8px !important;
  }

  /* .cta_custom_btn .application-text {
    font-size: 1.1rem;
  } */

  /* 画像エリア（SP） */
  .about_money_appeal .appeal_img_col {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* 画像（SP用フェード） */
  .about_money_appeal .faded_router_image {
    max-width: 90%;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
}

@media screen and (max-width: 540px) {
  .cta_content_wrapper {
    margin: 3.5rem auto;
  }

  .cta_price_box {
    margin-top: 0px;
  }

  .cta_label_month {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .cta_price_num {
    font-size: 4.8rem;
  }

  .cta_price_unit_stack .cta_tax {
    font-size: 0.9rem;
  }

  .cta_price_unit_stack .cta_yen {
    font-size: 2.2rem;
    margin-bottom: 2px;
  }

  .cta_connector {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .cta_main_copy {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .cta_benefit_list {
    gap: 0px 10px;
    margin-bottom: 250px;
  }

  .cta_benefit_list li {
    font-size: 0.9rem;
  }
}

/* 小さいスマホ表示（480px以下） */
@media only screen and (max-width: 480px) {

  /* .origin_num {
    font-size: 1.3rem;
  } */

  .origin_unit {
    font-size: 0.7rem;
  }

  .service_content_text {
    font-size: 1.6rem;
  }

  /*============================================
    スマホ表示時のプラン表崩れ防止 
    ============================================*/

  .plan_tab_content {
    padding: 30px;
  }

  .plan_list li {
    padding: 8px 5px ;
    align-items: center;
  }

  .plan_badge_area {
    width: 45px ;
    padding: 5px 2px ;
    margin-right: 5px;
  }

  .badge_num {
    font-size: 1rem ;
  }

  .badge_unit {
    font-size: 0.5rem ;
  }

  .plan_badge_area.multi_row {
    padding: 8px 2px !important;
  }

  .plan_badge_area.multi_row .badge_num {
    font-size: 1.0rem ;
  }

  .badge_desc {
    font-size: 0.5rem ;
    line-height: 1.1;
  }

  .plan_price {
    font-size: 1.6rem;
  }

  .plan_price_row {
    padding: 5px;
    justify-content: space-between;
    flex: 1;
    width: auto;
  }

  .price_origin {
    margin-right: 2px ;
  }

  .origin_num {
    /* font-size: 1.1rem ; */
    font-size: 1rem ;
    letter-spacing: -0.5px;
  }

  .origin_unit {
    font-size: 0.6rem ;
  }

  .origin_tax {
    font-size: 0.5rem ;
    margin-bottom: 1.5px;
  }

  /* 矢印 */
  .price_arrow_wrap {
    margin: 0 2px ;
  }

  .plan_arrow {
    font-size: 0.8rem ;
    letter-spacing: -2px;
  }

  /* 割引後価格 */
  .price_final {
    align-items: flex-end;
  }

  .plan_price {
    /* font-size: 1.5rem ; */
    font-size: 1.1rem;
    letter-spacing: -1px;
  }

  .price_suffix {
    margin-left: 2px ;
  }

  .tax {
    font-size: 0.5rem ;
    margin-bottom: 1px;
  }

  .unit {
    font-size: 0.7rem ;
  }

  /* ヘッダーの割引率表示（30%OFFなど）も調整 */
  .plan_discount_text.large {
    font-size: 1.8rem ;
  }

  .plan_discount_text.sm {
    font-size: 1.0rem ;
  }

  /* 特別料金プランセクション */
  .header_layout .header_line {
    width: 70px;
    margin: 0 8px;
  }

  .header_label {
    font-size: 1.2rem;
  }

  .header_num {
    font-size: 2.8rem;
  }

  .header_unit {
    font-size: 1.6rem;
  }

  .price_label {
    font-size: 1.4rem;
    margin-top: 5px;
  }

  .price_num {
    font-size: 4rem;
  }

  .price_yen {
    font-size: 1.4rem;
  }

  .cta_section {
    padding-top: 100px;
  }

  .cta_content_wrapper {
    margin: 0rem auto;
  }

  .cta_price_box {
    margin-top: 0px;
  }

  .cta_label_month {
    font-size: 1.8rem;
  }

  .cta_label_num {
    font-size: 4.8rem;
    line-height: 0.9;
  }

  .cta_price_unit_stack .cta_tax {
    font-size: 0.9rem;
  }

  .cta_price_unit_stack .cta_yen {
    font-size: 2.1rem;
  }

  .cta_connector {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .cta_main_copy {
    font-size: 1.3rem;
    margin: 5px;
  }

  .cta_benefit_list {
    gap: 0px 10px;
  }

  /* about_money_container内での上書き */
  .about_money_container .money_card_header .header_line {
    width: 30px;
    margin: 0 8px;
  }

  .about_money_container .price_unit_group .price_yen {
    font-size: 1.4rem;
  }

  /* --- 詳細リストボックス --- */
  .details_container {
    padding: 20px 30px;
    width: 100%;
  }

  .details_list li {
    font-size: 1rem;
  }

  /* --- フッター注釈 --- */
  .footer_note {
    font-size: 0.7rem;
    width: 100%;
    padding: 0 5px;
  }
}

/* 非常に小さいスマホ表示（375px以下） */
@media screen and (max-width: 375px) {
  .fv_visual_area {
    height: 480px;
  }

  .fv_content_text {
    top: 90px;
  }

  .fv_title .fv_text_line {
    font-size: 27px;
  }

  .merit_text {
    font-size: 0.79rem;
  }

  .situation_text_sub {
    right: 1px;
  }

  .point-decoration {
    top: 12px;
  }

  .carrier_section_heading {
    font-size: 20px;
  }

  .price_display_wrapper .price_label {
    font-size: 2rem !important
  }

  /* .situation_text > div:first-child {
    font-size: 1.1rem;
  } */

  .service_content_text {
    font-size: 1.5rem;
  }

  .speed_impact_text {
    font-size: 1.26rem;
  }

  .price_number {
    font-size: 4.0rem;
  }

  .type-a .benefit_value {
    font-size: 0.6rem;
  }

  .header_layout .header_line {
    width: 13vw;
  }

  .price_unit_box {
    color: red;
  }

  .cta_content_wrapper {
    margin: 0rem auto;
  }

  .cta_price_box {
    margin-top: 0px;
  }

  .cta_label_month {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta_price_unit_stack .cta_tax {
    font-size: 0.7rem;
  }

  .cta_price_unit_stack .cta_yen {
    font-size: 1.6rem;
  }

  .cta_connector {
    font-size: 1.1rem;
  }

  .cta_main_copy {
    font-size: 1.1rem;
    margin: 5px;
  }

  .cta_price_num {
    font-size: 3.5rem;
  }

  .cta_benefit_list {
    gap: 0px 10px;
    margin-bottom: 150px;
  }

  .cta_benefit_list li {
    font-size: 0.75rem;
  }

  .step_card {
    width: 90%;
  }
}

@media screen and (width: 768px) {
  .point-decoration {
    left: 160px;
  }
}

@media screen and (width: 540px) {
  .point-decoration {
    left: 60px;
  }
}
