/* ============================================
 * 4K STB
 * ============================================ */
/**
 * 4K対応新型STB交換ページ用スタイル
 * CSS命名規則: l-4kstb_*
 * カラー定義:
 *   メインブルー: #003F90（濃紺）
 *   サブブルー:   #0068B7（青）
 *   アクセント:   #00A0E9（水色）
 *   テキスト黒:   #333
 *   背景グレー:   #f5f5f5
 *   白:          #fff
 *   警告オレンジ: #e65100
 */


/* ============================================
 * 1. ヒーローセクション
 * ============================================ */
.l-4kstb_Hero {
  background: #fff;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.l-4kstb_Hero__Inner {
  max-width: 1000px;
  margin: 0 auto;
}

.l-4kstb_Hero__Image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Hero {
    padding: 4rem 2rem 3rem;
  }
  .l-4kstb_Hero__Image {
    max-width: 100%;
  }
}


/* ============================================
 * 2. 交換のメリットセクション
 * ============================================ */
.l-4kstb_Merit {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
}

.l-4kstb_Merit__Inner {
  max-width: 800px;
  margin: 0 auto;
}

/* セクション見出し */
.l-4kstb_Merit__Title {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  border-left: 5px solid #003F90;
  padding-left: 1.2rem;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Merit {
    padding: 4rem 2rem 5rem;
  }
  .l-4kstb_Merit__Title {
    font-size: 2.4rem;
    border-left-width: 6px;
    padding-left: 1.6rem;
  }
}

/* 各ポイントカード */
.l-4kstb_Merit__Point {
  background: #f5f5f5;
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  margin-bottom: 1.6rem;
}

.l-4kstb_Merit__Point:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Merit__Point {
    padding: 2.4rem 3rem;
    margin-bottom: 2rem;
  }
}

/* Pointラベル */
.l-4kstb_Merit__PointLabel {
  display: inline-block;
  background: #003F90;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3em 1.4em;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

/* ポイント見出し */
.l-4kstb_Merit__PointHeading {
  font-size: 1.7rem;
  font-weight: 900;
  color: #003F90;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Merit__PointHeading {
    font-size: 2rem;
  }
}

/* 説明文 */
.l-4kstb_Merit__PointText {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Merit__PointText {
    font-size: 1.5rem;
  }
}

/* サブテキスト */
.l-4kstb_Merit__PointSubtext {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0068B7;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* チャンネルロゴ画像 */
.l-4kstb_Merit__PointImage {
  margin-top: 1.2rem;
}

.l-4kstb_Merit__PointImage img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================
 * 3. お申し込みの流れセクション
 * ============================================ */
.l-4kstb_Flow {
  background: #f5f5f5;
  padding: 3rem 1.5rem 4rem;
}

.l-4kstb_Flow__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-4kstb_Flow__Title {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  border-left: 5px solid #003F90;
  padding-left: 1.2rem;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow {
    padding: 4rem 2rem 5rem;
  }
  .l-4kstb_Flow__Title {
    font-size: 2.4rem;
    border-left-width: 6px;
    padding-left: 1.6rem;
  }
}

/* ステップリスト */
.l-4kstb_Flow__List {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各ステップ */
.l-4kstb_Flow__Item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  padding: 2rem 1.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.l-4kstb_Flow__Item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow__Item {
    padding: 2.4rem 3rem;
    gap: 2.4rem;
  }
}

/* ステップ番号＋アイコン */
.l-4kstb_Flow__ItemHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.l-4kstb_Flow__Number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #003F90;
  line-height: 1;
}

.l-4kstb_Flow__Number small {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.l-4kstb_Flow__Icon {
  width: 4.4rem;
  height: 4.4rem;
  background: #003F90;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow__Number {
    font-size: 2.8rem;
  }
  .l-4kstb_Flow__Number small {
    font-size: 1.1rem;
  }
  .l-4kstb_Flow__Icon {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}

/* ステップ内容 */
.l-4kstb_Flow__ItemBody {
  flex: 1;
}

.l-4kstb_Flow__StepTitle {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow__StepTitle {
    font-size: 1.8rem;
  }
}

.l-4kstb_Flow__Text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow__Text {
    font-size: 1.4rem;
  }
}

/* CTAボタン */
.l-4kstb_Flow__Buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.l-4kstb_Flow__Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7em 1.6em;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.l-4kstb_Flow__Button:hover {
  opacity: 0.85;
}

.l-4kstb_Flow__Button.-tel {
  background: #00A0E9;
  color: #fff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
}

.l-4kstb_Flow__Button.-form {
  background: #fff;
  color: #003F90;
  border: 2px solid #003F90;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Flow__Button {
    font-size: 1.5rem;
    padding: 0.7em 2em;
  }
}


/* ============================================
 * 4. 新型STBの仕様セクション
 * ============================================ */
.l-4kstb_Spec {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
}

.l-4kstb_Spec__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-4kstb_Spec__Title {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  border-left: 5px solid #003F90;
  padding-left: 1.2rem;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Spec {
    padding: 4rem 2rem 5rem;
  }
  .l-4kstb_Spec__Title {
    font-size: 2.4rem;
    border-left-width: 6px;
    padding-left: 1.6rem;
  }
}

/* 仕様画像 */
.l-4kstb_Spec__Image {
  margin-bottom: 2.4rem;
  text-align: center;
}

.l-4kstb_Spec__Image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Spec__Image img {
    max-width: 100%;
  }
}

/* 仕様テーブル */
.l-4kstb_Spec__TableWrap {
  overflow-x: auto;
}

.l-4kstb_Spec__Table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  line-height: 1.6;
}

.l-4kstb_Spec__Table th,
.l-4kstb_Spec__Table td {
  padding: 1.2rem 1.4rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.l-4kstb_Spec__Table th {
  background: #003F90;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  width: 30%;
}

.l-4kstb_Spec__Table td {
  background: #fff;
  color: #333;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Spec__Table {
    font-size: 1.4rem;
  }
  .l-4kstb_Spec__Table th {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .l-4kstb_Spec__Table th,
  .l-4kstb_Spec__Table td {
    display: block;
    width: 100%;
  }
  .l-4kstb_Spec__Table th {
    border-bottom: none;
  }
  .l-4kstb_Spec__Table td {
    border-top: none;
  }
}


/* ============================================
 * 5. 注意事項セクション
 * ============================================ */
.l-4kstb_Notice {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
}

.l-4kstb_Notice__Inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ヘッダー */
.l-4kstb_Notice__Header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Notice {
    padding: 4rem 2rem 5rem;
  }
  .l-4kstb_Notice__Header {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.l-4kstb_Notice__HeaderLeft {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.l-4kstb_Notice__Icon {
  font-size: 3rem;
  color: #e65100;
}

.l-4kstb_Notice__Heading {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Notice__Icon {
    font-size: 3.6rem;
  }
  .l-4kstb_Notice__Heading {
    font-size: 2.4rem;
  }
}

/* バッジ */
.l-4kstb_Notice__Badges {
  display: flex;
  gap: 0.8rem;
}

.l-4kstb_Notice__Badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: #003F90;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 999px;
}

.l-4kstb_Notice__Badge strong {
  font-size: 1.4rem;
}

/* 注意リスト */
.l-4kstb_Notice__List {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-4kstb_Notice__List li {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
  padding: 0.6em 0;
  border-bottom: 1px solid #eee;
  padding-left: 0;
}

.l-4kstb_Notice__List li:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .l-4kstb_Notice__List li {
    font-size: 1.4rem;
  }
}


/* ============================================
 * 6. お申し込み・お問い合わせCTAセクション
 * ============================================ */
.l-4kstb_CTA {
  background: #003F90;
  padding: 4rem 2rem;
  text-align: center;
}

.l-4kstb_CTA__Inner {
  max-width: 760px;
  margin: 0 auto;
}

.l-4kstb_CTA__Heading {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .l-4kstb_CTA {
    padding: 4.4rem 2rem 4.8rem;
  }
  .l-4kstb_CTA__Heading {
    font-size: 2.8rem;
  }
}

/* ボタン群 */
.l-4kstb_CTA__Buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

@media screen and (min-width: 768px) {
  .l-4kstb_CTA__Buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.6rem;
  }
}

.l-4kstb_CTA__Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 24rem;
  min-height: 5rem;
  border-radius: 999px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}

.l-4kstb_CTA__Button:hover {
  opacity: 0.85;
}

.l-4kstb_CTA__Button.-tel {
  background: #00A0E9;
  color: #fff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  border: 2px solid #00A0E9;
}

.l-4kstb_CTA__Button.-form {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

@media screen and (min-width: 768px) {
  .l-4kstb_CTA__Button {
    font-size: 2rem;
    min-width: 26rem;
    min-height: 5.4rem;
  }
}


/* ============================================
 * 7. ユーティリティ
 * ============================================ */
.u-sp-only {
  display: inline;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}


/* ============================================
 * CABLE LINE
 * ============================================ */
/**
 * ケーブルラインページ用スタイル
 * CSS命名規則: l-cableline_*
 *
 * カラー定義:
 *   メインブルー:      #003F90
 *   サブブルー:        #0068B7
 *   ライトブルー:      #E3F2FD / #BBDEFB
 *   テキスト黒:        #333
 *   背景グレー:        #f5f5f5
 *   アクセントオレンジ: #FF6600
 *   セパレーター:      #ddd
 */

/* ============================================================
 * l-cableline_Hero: ヒーローセクション
 * ============================================================ */
.l-cableline_Hero {
  background: linear-gradient(135deg, #0068B7 0%, #003F90 100%);
}

/* ---- ページタイトル帯 ---- */
.l-cableline_Hero__TitleBar {
  background: #003F90;
  padding: 18px 20px;
}

.l-cableline_Hero__TitleBarInner {
  max-width: 1000px;
  margin: 0 auto;
}

.l-cableline_Hero__PageTitle {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__PageTitle {
    font-size: 2.0rem;
  }
}

/* ---- パンくず ---- */
.l-cableline_Hero__BreadcrumbWrap {
  background: rgba(0, 63, 144, 0.3);
  padding: 8px 20px;
}

.l-cableline_Hero__BreadcrumbInner {
  max-width: 1000px;
  margin: 0 auto;
}

.l-cableline_Hero__Breadcrumb {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.l-cableline_Hero__Breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.l-cableline_Hero__Breadcrumb a:hover {
  text-decoration: underline;
}

.l-cableline_Hero__Breadcrumb span {
  margin: 0 4px;
}

/* ---- メインコンテンツ ---- */
.l-cableline_Hero__Inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__Inner {
    padding: 40px 20px 48px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .l-cableline_Hero__Inner {
    padding: 48px 0 56px;
  }
}

.l-cableline_Hero__Content {
  flex: 1;
}

/* ---- テキストエリア ---- */
.l-cableline_Hero__Title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__Title {
    font-size: 2.8rem;
  }
}

.l-cableline_Hero__Sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__Sub {
    font-size: 1.4rem;
  }
}

/* ---- ロゴ ---- */
.l-cableline_Hero__LogoArea {
  margin-top: 16px;
}

.l-cableline_Hero__Logo {
  display: block;
  width: 180px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__Logo {
    width: 220px;
  }
}

/* ---- 人物写真 ---- */
.l-cableline_Hero__ImageArea {
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__ImageArea {
    margin-top: 0;
    flex-shrink: 0;
    width: 280px;
  }
}

@media screen and (min-width: 1000px) {
  .l-cableline_Hero__ImageArea {
    width: 320px;
  }
}

.l-cableline_Hero__Image {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__Image {
    width: 100%;
    border-radius: 12px;
  }
}

/* プレースホルダー（本番時に実画像に差し替え） */
.l-cableline_Hero__ImagePlaceholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 4.8rem;
}

@media screen and (min-width: 768px) {
  .l-cableline_Hero__ImagePlaceholder {
    width: 220px;
    height: 220px;
    font-size: 6rem;
  }
}

/* ============================================================
 * 共通: セクション見出し
 * ============================================================ */
.l-cableline_SectionTitle {
  font-size: 2.0rem;
  font-weight: 700;
  color: #333;
  border-left: 4px solid #0068B7;
  padding-left: 12px;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-cableline_SectionTitle i {
  color: #0068B7;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .l-cableline_SectionTitle {
    font-size: 2.4rem;
  }
  .l-cableline_SectionTitle i {
    font-size: 2.2rem;
  }
}

/* ============================================================
 * l-cableline_Basic: 基本料金セクション
 * ============================================================ */
.l-cableline_Basic {
  background: #fff;
  padding: 48px 20px;
}

.l-cableline_Basic__Inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- 料金表示 ---- */
.l-cableline_Basic__PriceBox {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.l-cableline_Basic__Price {
  margin: 0;
  line-height: 1;
}

.l-cableline_Basic__PriceValue {
  font-family: 'Oswald', sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: #FF6600;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .l-cableline_Basic__PriceValue {
    font-size: 5.6rem;
  }
}

.l-cableline_Basic__PriceUnit {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-left: 4px;
}

/* ---- 注意書き ---- */
.l-cableline_Basic__Notes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.l-cableline_Basic__Notes li {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ---- リンク ---- */
.l-cableline_Basic__Links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.l-cableline_Basic__Link {
  font-size: 1.4rem;
  color: #0068B7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-cableline_Basic__Link:hover {
  text-decoration: underline;
}

.l-cableline_Basic__Link i {
  font-size: 1.0rem;
}

/* ============================================================
 * l-cableline_Call: 通話料セクション
 * ============================================================ */
.l-cableline_Call {
  background: #f5f5f5;
  padding: 48px 20px;
}

.l-cableline_Call__Inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- IP電話無料の強調 ---- */
.l-cableline_Call__Free {
  background: #E3F2FD;
  border-left: 4px solid #0068B7;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}

.l-cableline_Call__FreeTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003F90;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .l-cableline_Call__FreeTitle {
    font-size: 1.6rem;
  }
}

/* ---- 注意書き ---- */
.l-cableline_Call__Notes {
  margin-bottom: 32px;
}

.l-cableline_Call__Notes p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 8px;
}

/* ---- サブ見出し ---- */
.l-cableline_Call__SubTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0068B7;
}

/* ---- テーブル ---- */
.l-cableline_Call__TableWrap {
  overflow-x: auto;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.l-cableline_Call__Table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  min-width: 480px;
}

.l-cableline_Call__Table thead th {
  background: #003F90;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  text-align: center;
  white-space: nowrap;
}

.l-cableline_Call__Table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.l-cableline_Call__Table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.l-cableline_Call__Table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.l-cableline_Call__Table tbody tr:nth-child(odd) {
  background: #fff;
}

.l-cableline_Call__Highlight {
  color: #FF6600;
  font-weight: 700;
}

/* ---- テーブル下注意書き ---- */
.l-cableline_Call__TableNote {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin: 4px 0 32px;
}

/* ============================================================
 * l-cableline_Discount: 複数回線割セクション
 * ============================================================ */
.l-cableline_Discount {
  background: #fff;
  padding: 48px 20px;
}

.l-cableline_Discount__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-cableline_Discount__Sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003F90;
  margin: 0 0 20px;
}

.l-cableline_Discount__HighlightBox {
  background: #E3F2FD;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.l-cableline_Discount__Highlight {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.l-cableline_Discount__Amount {
  font-family: 'Oswald', sans-serif;
  font-size: 4.0rem;
  font-weight: 700;
  color: #FF6600;
  letter-spacing: 0.02em;
}

.l-cableline_Discount__AmountUnit {
  font-size: 1.4rem;
  color: #333;
}

.l-cableline_Discount__Text {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
 * l-cableline_Option: オプション・関連サービスセクション
 * ============================================================ */
.l-cableline_Option {
  background: #f5f5f5;
  padding: 48px 20px;
}

.l-cableline_Option__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-cableline_Option__TableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.l-cableline_Option__Table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.l-cableline_Option__Table thead th {
  background: #003F90;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  text-align: center;
  white-space: nowrap;
}

.l-cableline_Option__Table thead th:first-child {
  text-align: left;
}

.l-cableline_Option__Table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.l-cableline_Option__Table tbody td:first-child {
  font-weight: 500;
}

.l-cableline_Option__Table tbody td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 500;
}

.l-cableline_Option__Table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.l-cableline_Option__Table tbody tr:nth-child(odd) {
  background: #fff;
}

.l-cableline_Option__Desc {
  font-size: 1.2rem;
  color: #888;
  font-weight: 400;
}

/* ============================================================
 * l-cableline_SmartPhone: スマホとセットでさらにおトク！
 * ============================================================ */
.l-cableline_SmartPhone {
  background: #fff;
  padding: 48px 20px;
}

.l-cableline_SmartPhone__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-cableline_SmartPhone__Title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #003F90;
  text-align: center;
  margin: 0 0 36px;
}

@media screen and (min-width: 768px) {
  .l-cableline_SmartPhone__Title {
    font-size: 2.8rem;
  }
}

/* ---- キャリア区分 ---- */
.l-cableline_SmartPhone__CarrierBlock {
  margin-bottom: 40px;
}

.l-cableline_SmartPhone__CarrierBlock:last-child {
  margin-bottom: 0;
}

.l-cableline_SmartPhone__Carrier {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 2px solid #003F90;
  margin: 0 0 20px;
}

/* ---- サービスカード ---- */
.l-cableline_SmartPhone__Service {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 20px;
  margin-bottom: 20px;
}

.l-cableline_SmartPhone__Service:last-child {
  margin-bottom: 0;
}

.l-cableline_SmartPhone__ServiceTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003F90;
  text-align: center;
  margin: 0 0 12px;
}

.l-cableline_SmartPhone__ServiceLead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.6;
}

/* ---- 料金表示 ---- */
.l-cableline_SmartPhone__PriceBox {
  text-align: center;
  margin-bottom: 16px;
}

.l-cableline_SmartPhone__Price {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.l-cableline_SmartPhone__PriceFree {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FF6600;
}

/* ---- サービス説明 ---- */
.l-cableline_SmartPhone__ServiceText {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* ---- 注意書き ---- */
.l-cableline_SmartPhone__Notes {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.l-cableline_SmartPhone__Notes li {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ---- CTAボタン ---- */
.l-cableline_SmartPhone__CTAWrap {
  text-align: center;
  margin-top: 20px;
}

.l-cableline_SmartPhone__CTALabel {
  font-size: 1.3rem;
  color: #666;
  margin: 0 0 8px;
}

.l-cableline_SmartPhone__CTAButton {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  border: 2px solid #003F90;
  border-radius: 30px;
  color: #003F90;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.l-cableline_SmartPhone__CTAButton:hover {
  background: #003F90;
  color: #fff;
}

.l-cableline_SmartPhone__CTAButton i {
  margin-right: 4px;
}

/* ============================================================
 * l-cableline_Inquiry: お問い合わせセクション
 * ============================================================ */
.l-cableline_Inquiry {
  background: #f5f5f5;
  padding: 48px 20px 64px;
}

.l-cableline_Inquiry__Inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.l-cableline_Inquiry__Heading {
  font-size: 2.0rem;
  font-weight: 700;
  color: #003F90;
  margin: 0 0 16px;
}

.l-cableline_Inquiry__Text {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
}

.l-cableline_Inquiry__Buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l-cableline_Inquiry__Buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.l-cableline_Inquiry__Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  min-width: 240px;
  transition: opacity 0.2s;
}

.l-cableline_Inquiry__Button:hover {
  opacity: 0.85;
}

.l-cableline_Inquiry__Button.-primary {
  background: #003F90;
  color: #fff;
}

.l-cableline_Inquiry__Button.-secondary {
  background: #fff;
  color: #003F90;
  border: 2px solid #003F90;
}


/* ============================================
 * KATE-ENE
 * ============================================ */
body.l-landing-katene-gas {
  font-size: 62.5%;
}

.l-katene_DotBg {
  background-color: #fff;
  background-image: url('../img/katene/bg_dot.png');
  background-repeat: repeat;
}

@media screen and (min-width: 768px) {
  .l-katene_DotBg {
    background-image: url('../img/katene/bg_dot-pc.png');
  }
}

/* ========================================
   ヒーローセクション
======================================== */
.l-katene_Hero {
  padding: 4rem 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-katene_Hero { padding: 5rem 2rem; }
}

.l-katene_Hero__Inner {
  max-width: 900px;
  margin: 0 auto;
}

.l-katene_Hero__TitleImage {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ========================================
   セットプラン 共通
======================================== */
.l-katene_Set {
  padding: 0 2rem 4rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set { padding: 0 2rem 5rem; }
}

/* ★ 白背景カード（角丸なし・直角） */
.l-katene_Set__Inner {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 3.5rem 2.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Inner {
    padding: 4rem 4rem 4.5rem;
  }
}

/* --- SETラベル（左上・はみ出し・斜めカット） --- */
.l-katene_Set__Label {
  position: absolute;
  top: -0.4rem;
  left: -0.8rem;
  background: #c01920;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.6rem 3.5rem 0.6rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Label {
    font-size: 1.6rem;
    top: -0.5rem;
    left: -1rem;
    padding: 0.7rem 4rem 0.7rem 2rem;
  }
}

/* --- 対象バッジ行（中央揃え） --- */
.l-katene_Set__Target {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.l-katene_Set__Target__Badge {
  display: inline-block;
  background: #c01920;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
}

.l-katene_Set__Target__Text {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Target__Badge { font-size: 1.2rem; padding: 0.4rem 1.5rem; }
  .l-katene_Set__Target__Text  { font-size: 1.3rem; }
}

/* --- プランタイトル（赤色・中央揃え） --- */
.l-katene_Set__Title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #c01920;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Title { font-size: 2.8rem; }
}

/* ========================================
   特典ボックス（紺帯ヘッダー＋薄青背景）
======================================== */
.l-katene_Set__Box {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0;
}

.l-katene_Set__Box__Heading {
  background: #003F90;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Box__Heading {
    font-size: 1.8rem;
    padding: 1.2rem 0;
  }
}

.l-katene_Set__Box__Body {
  background: #ebfaff;
  padding: 2rem 1.5rem 2.5rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__Box__Body { padding: 2.5rem 3rem 3rem; }
}

/* --- BenefitRow: 白カード2枚 + OR --- */
.l-katene_Set__BenefitRow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BenefitRow { gap: 1.2rem; }
}

.l-katene_Set__BenefitCard {
  background: #fff;
  border-radius: 0.8rem;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BenefitCard { padding: 2rem 1.5rem; }
}

.l-katene_Set__BenefitCard__Label {
  font-size: 1.1rem;
  color: #003F90;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BenefitCard__Label { font-size: 1.3rem; }
}

.l-katene_Set__BenefitCard__Value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #c01920;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BenefitCard__Value { font-size: 2.2rem; }
}

.l-katene_Set__BenefitCard__Note {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.l-katene_Set__BenefitOr {
  font-size: 1.3rem;
  font-weight: 700;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- プラスアイコン --- */
.l-katene_Set__Plus {
  text-align: center;
  margin-bottom: 0.8rem;
}

.l-katene_Set__Plus__Icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background: #003F90;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

/* --- ボーナスリード --- */
.l-katene_Set__BonusLead {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BonusLead { font-size: 1.3rem; }
}

/* --- ボーナスカード（薄青内の白カード） --- */
.l-katene_Set__BonusCard {
  background: #fff;
  border-radius: 0.8rem;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

.l-katene_Set__BonusCard__Label {
  font-size: 1.2rem;
  color: #003F90;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BonusCard__Label { font-size: 1.3rem; }
}

.l-katene_Set__BonusCard__Value {
  font-size: 2rem;
  font-weight: 900;
  color: #c01920;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__BonusCard__Value { font-size: 2.2rem; }
}

/* ========================================
   SET 03 リード文
======================================== */
.l-katene_Set__ServiceLead {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceLead { font-size: 1.5rem; }
}

.l-katene_Set__ServiceLead__Strong {
  color: #c01920;
  font-weight: 900;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceLead__Strong { font-size: 2rem; }
}

.l-katene_Set__ServiceLead__After {
  color: #333;
  font-weight: 500;
}

/* ========================================
   SET 03 駆け付けサービスボックス（黄色）
   黄色: #ceba1d  薄黄色: #faf7e6
======================================== */
.l-katene_Set__ServiceBox {
  background: #faf7e6;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.l-katene_Set__ServiceBox__Heading {
  background: #ceba1d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceBox__Heading {
    font-size: 2.2rem;
    padding: 1.2rem 0;
  }
}

.l-katene_Set__ServiceBox__Body {
  padding: 2rem 1.5rem 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceBox__Body { padding: 2.5rem 3rem 2rem; }
}

/* 2カラムレイアウト（タグ＋アイコン） */
.l-katene_Set__ServiceBox__Row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.l-katene_Set__ServiceBox__Col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* タグ（黄色背景） */
.l-katene_Set__ServiceBox__Tag {
  display: inline-block;
  background: #ceba1d;
  color: #fff;
  border-radius: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  line-height: 1.5;
  text-align: center;
}

.l-katene_Set__ServiceBox__Tag strong {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceBox__Tag { font-size: 1.3rem; padding: 0.7rem 2rem; }
  .l-katene_Set__ServiceBox__Tag strong { font-size: 1.5rem; }
}

/* カラム内アイコン画像 */
.l-katene_Set__ServiceBox__ColIcon {
  height: 3.5rem;
  width: auto;
}

.l-katene_Set__ServiceBox__ColIcon.-small {
  height: 3.2rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceBox__ColIcon { height: 4.5rem; }
  .l-katene_Set__ServiceBox__ColIcon.-small { height: 4rem; }
}

/* 右カラムのアイコン＋「など」横並び */
.l-katene_Set__ServiceBox__ColIconWrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.l-katene_Set__ServiceBox__IconEtc {
  font-size: 1.3rem;
  color: #ceba1d;
  font-weight: 700;
}

/* 「詳しくは」リンク行 */
.l-katene_Set__ServiceBox__LinkRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.l-katene_Set__ServiceBox__LinkText {
  font-size: 1.3rem;
  color: #ceba1d;
  font-weight: 700;
  flex-shrink: 0;
}

.l-katene_Set__ServiceBox__LinkImg {
  height: 2.8rem;
  width: auto;
}

@media screen and (min-width: 768px) {
  .l-katene_Set__ServiceBox__LinkImg { height: 3.2rem; }
}

/* ========================================
   赤→紺グラデーション背景ラッパー
======================================== */
.l-katene_Bottom {
  background: linear-gradient(180deg, #bf1b23 0%, #043f8f 100%);
  padding: 5rem 2rem 4rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Bottom { padding: 6rem 2rem 5rem; }
}

/* ========================================
   注意事項
======================================== */
.l-katene_Notes {
  padding-bottom: 4rem;
}

.l-katene_Notes__Inner {
  max-width: 760px;
  margin: 0 auto;
}

.l-katene_Notes__Card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 3rem 3rem 2.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-katene_Notes__Card { padding: 3.5rem 5rem 3rem; }
}

.l-katene_Notes__IconWrap {
  margin-bottom: 0.8rem;
}

.l-katene_Notes__Icon {
  font-size: 3rem;
  line-height: 1;
}

.l-katene_Notes__Heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c01920;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Notes__Heading { font-size: 2rem; }
}

.l-katene_Notes__Text {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .l-katene_Notes__Text { font-size: 1.4rem; }
}

/* ========================================
   お問い合わせ・お申込み
======================================== */
.l-katene_Inquiry {
  text-align: center;
  color: #fff;
}

.l-katene_Inquiry__Inner {
  max-width: 760px;
  margin: 0 auto;
}

.l-katene_Inquiry__Heading {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__Heading { font-size: 3rem; }
}

.l-katene_Inquiry__Lead {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__Lead { font-size: 1.5rem; }
}

/* --- メイン問い合わせボックス（水色背景・角丸） --- */
.l-katene_Inquiry__MainBox {
  background: #00b0e1;
  border: none;
  border-radius: 5rem;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__MainBox {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 4rem;
  }
}

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

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__MainBox__Left { text-align: left; }
}

.l-katene_Inquiry__MainBox__Company {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.l-katene_Inquiry__MainBox__Name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__MainBox__Name { font-size: 1.8rem; }
}

.l-katene_Inquiry__MainBox__Address {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

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

.l-katene_Inquiry__Tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.4rem;
}

.l-katene_Inquiry__Tel__Icon {
  font-size: 2rem;
}

.l-katene_Inquiry__Tel__Number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__Tel__Number { font-size: 3.4rem; }
}

.l-katene_Inquiry__MainBox__Hours {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* --- サブ問い合わせボックス --- */
.l-katene_Inquiry__SubBox {
  background: #ebfaff;
  border: none;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__SubBox { padding: 2rem 3.5rem; }
}

.l-katene_Inquiry__SubBox__Lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1rem;
}

.l-katene_Inquiry__SubBox__Row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .l-katene_Inquiry__SubBox__Row {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.l-katene_Inquiry__SubBox__Name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003F90;
}

.l-katene_Inquiry__SubBox__Note {
  font-size: 1.1rem;
  color: #666;
}


/* ============================================
 * LINE
 * ============================================ */
/* ============================================================
 * l-line: 公式LINEページ専用スタイル
 * カラーパレット:
 *   緑（明）: #35C265
 *   緑（暗）: #1A7D38
 *   紺（番号サークル）: #1B3C70
 *   LINE緑: #06C755
 * ============================================================ */

/* ====== ユーティリティ ====== */
.u-sp {
    display: inline;
}

@media screen and (min-width: 768px) {
    .u-sp {
        display: none;
    }
}

/* ====== ヒーローセクション ====== */
.l-line_Hero {
    background: linear-gradient(135deg, #35C265 0%, #1A7D38 100%);
    padding: 44px 20px 56px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .l-line_Hero {
        padding: 60px 40px 76px;
    }
}

.l-line_Hero__Inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.l-line_Hero__Img {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-line_Hero__Img {
        max-width: 880px;
    }
}

/* ヒーロー装飾バー */
.l-line_Hero__DecoWrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    user-select: none;
}

.l-line_Hero__DecoBar {
    position: absolute;
    display: block;
    width: 22px;
    height: auto;
}

.l-line_Hero__DecoBar.-b1 {
    top: 12%;
    left: 4%;
    opacity: 0.55;
}

.l-line_Hero__DecoBar.-b2 {
    top: 20%;
    left: 8%;
    opacity: 0.30;
}

.l-line_Hero__DecoBar.-b3 {
    bottom: 14%;
    right: 4%;
    opacity: 0.55;
}

.l-line_Hero__DecoBar.-b4 {
    bottom: 22%;
    right: 8%;
    opacity: 0.30;
}

@media screen and (min-width: 768px) {
    .l-line_Hero__DecoBar {
        width: 34px;
    }

    .l-line_Hero__DecoBar.-b1 { left: 6%; }
    .l-line_Hero__DecoBar.-b2 { left: 11%; }
    .l-line_Hero__DecoBar.-b3 { right: 6%; }
    .l-line_Hero__DecoBar.-b4 { right: 11%; }
}

/* ====== ステップセクション ====== */
.l-line_Steps {
    background: #fff;
    padding: 56px 0 80px;
}

@media screen and (min-width: 768px) {
    .l-line_Steps {
        padding: 72px 0 100px;
    }
}

.l-line_Step {
    max-width: 720px;
    margin: 0 auto 72px;
    padding: 0 20px;
}

.l-line_Step:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .l-line_Step {
        margin-bottom: 88px;
        padding: 0 40px;
    }
}

@media screen and (min-width: 1000px) {
    .l-line_Step {
        padding: 0;
    }
}

/* ステップ番号サークル */
.l-line_Step__NumWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.l-line_Step__NumCircle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1B3C70;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 900;
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .l-line_Step__NumCircle {
        width: 72px;
        height: 72px;
        font-size: 3.2rem;
    }
}

/* サークルとボックスを繋ぐ装飾バー */
.l-line_Step__NumBar {
    display: block;
    margin: 2px 0;
    width: 22px;
    height: auto;
    opacity: 0.65;
}

@media screen and (min-width: 768px) {
    .l-line_Step__NumBar {
        width: 28px;
    }
}

/* ステップボックス */
.l-line_Step__Box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

/* ステップ見出し */
.l-line_Step__Heading {
    background: linear-gradient(135deg, #35C265 0%, #1A7D38 100%);
    padding: 16px 20px;
    text-align: center;
}

.l-line_Step__Heading p {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .l-line_Step__Heading {
        padding: 22px 40px;
    }

    .l-line_Step__Heading p {
        font-size: 2.2rem;
    }
}

/* ステップ画像 */
.l-line_Step__Img {
    margin: 0;
    line-height: 0;
}

.l-line_Step__Img img {
    width: 100%;
    display: block;
}

/* ステップテキスト */
.l-line_Step__Text {
    padding: 20px 20px 28px;
    line-height: 1.85;
    font-size: 1.4rem;
    background: #fff;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .l-line_Step__Text {
        font-size: 1.5rem;
        padding: 24px 32px 36px;
    }
}

/* ====== お友だち登録セクション ====== */
.l-line_Friend {
    background: #fff;
    padding: 0 20px 56px;
    text-align: center;
    line-height: 0;
}

@media screen and (min-width: 768px) {
    .l-line_Friend {
        padding: 0 40px 80px;
    }
}

.l-line_Friend__Img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-line_Friend__Img {
        max-width: 1000px;
    }
}

/* ====== CTA セクション ====== */
.l-line_Cta {
    background: linear-gradient(135deg, #35C265 0%, #1A7D38 100%);
    padding: 40px 20px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .l-line_Cta {
        padding: 56px 40px;
    }
}

.l-line_Cta__Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06C755;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.l-line_Cta__Btn:hover {
    opacity: 0.85;
}

@media screen and (min-width: 768px) {
    .l-line_Cta__Btn {
        font-size: 2.0rem;
        padding: 20px 56px;
        gap: 12px;
    }
}

.l-line_Cta__Icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

@media screen and (min-width: 768px) {
    .l-line_Cta__Icon {
        width: 32px;
        height: 32px;
    }
}

.l-line_Cta__Label {
    white-space: nowrap;
}


/* ============================================
 * TENKYO
 * ============================================ */
/**
 * 転居支援サービスページ用スタイル
 * CSS命名規則: l-tenkyo_*
 * カラー定義:
 *   黄色:   #ffe833
 *   薄黄色: #fff9b0
 *   赤:     #c01920
 *   青:     #1a6fb5
 *   紺:     #003F90
 *   オレンジ: #ea5504
 *   テキスト黒: #333
 */

/* ユーティリティ */
.u-textRed { color: #c01920 !important; font-weight: 700; }
.u-textBlue { color: #1a6fb5 !important; }
.u-textGreen { color: #009e96 !important; }
.u-bgBlue { background-color: #1a6fb5 !important; }
.u-bgGreen { background-color: #009e96 !important; }


/* ============================================
 * 1. ヒーローセクション
 * ============================================ */
.l-tenkyo_Hero {
  background: #fff;
  padding: 2rem 1.5rem 2rem;
  text-align: center;
}

.l-tenkyo_Hero__Inner {
  margin: 0 auto;
}

/* トラックアイコン・上部メッセージ */
.l-tenkyo_Hero__TopMessage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Hero__TopMessage {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
  }
}

.l-tenkyo_Hero__TruckIcon {
  display: inline-flex;
  align-items: center;
  background: #1a6fb5;
  color: #fff;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.l-tenkyo_Hero__TruckIcon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #1a6fb5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Hero__TruckIcon {
    margin-bottom: 0;
    margin-right: -2rem;
    z-index: 2;
  }
  .l-tenkyo_Hero__TruckIcon::after {
    left: auto;
    right: -10px;
    bottom: 50%;
    transform: translateY(50%) rotate(-90deg);
    border-top: 10px solid #1a6fb5;
  }
}
.l-tenkyo_Hero__TruckIcon i {
  font-size: 2.4rem;
  margin-right: 1rem;
}

/* メインタイトル */
.l-tenkyo_Hero__MainTitle {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.l-tenkyo_Hero__MainTitleImage {
  width: 100%;
  max-width: 276.5px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Hero__MainTitle { padding-left: 3rem; }
  .l-tenkyo_Hero__MainTitleImage { max-width: 100%; }
}

/* 黄色い帯エリア */
.l-tenkyo_Hero__YellowArea {
  background: transparent;
  border-radius: 30px;
  padding: 1.5rem 1.5rem 3rem;
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Hero__YellowArea {
    padding: 4rem 3rem;
    border-radius: 60px;
  }
}

/* リード文 */
.l-tenkyo_Hero__LeadText {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Hero__LeadText { font-size: 1.8rem; }
}

/* メインビジュアル */
.l-tenkyo_Hero__Visual {
  margin-bottom: 2rem;
  position: relative;
}
.l-tenkyo_Hero__VisualImage {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* 注釈 */
.l-tenkyo_Hero__Notes {
  text-align: left;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
.l-tenkyo_Hero__Notes li {
  margin-bottom: 0.3em;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}


/* ============================================
 * 2. お手続きの流れ
 * ============================================ */
.l-tenkyo_Flow {
  background-image: repeating-linear-gradient(
    -45deg,
    #fcfcd9,
    #fcfcd9 5px,
    #feec26 5px,
    #feec26 10px
  );
  margin-top: -45rem;
  padding: 47rem 1.5rem 4rem;
}

.l-tenkyo_Flow__Inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-tenkyo_Flow__Wrap {
  background: #fff;
  padding: 2.4rem 1.8rem 3rem;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__Wrap {
    padding: 3.4rem 5rem 4rem;
  }
}

/* セクションタイトル */
.l-tenkyo_Flow__Title {
  text-align: center;
  margin-bottom: 2.4rem;
}

.l-tenkyo_Flow__TitleImage {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__TitleImage {
    max-width: 310px;
  }
}

/* ステップリスト */
.l-tenkyo_Flow__List {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* 各ステップアイテム */
.l-tenkyo_Flow__Item {
  background: #fefddf;
  border-radius: 1.8rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.l-tenkyo_Flow__Item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4.2rem;
  bottom: -1.4rem;
  width: 6px;
  height: 1.8rem;
  background: #ffed27;
}

@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__Item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3.2rem;
    gap: 2rem;
  }

  .l-tenkyo_Flow__Item:not(:last-child)::after {
    left: 5.8rem;
  }
}

/* 左側：コンテンツエリア */
.l-tenkyo_Flow__Content {
  flex: 1;
}

.l-tenkyo_Flow__Head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

/* 番号 */
.l-tenkyo_Flow__Number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background-color: #ea5404;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__Number {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 2.8rem;
  }
}
.l-tenkyo_Flow__Item:nth-child(1) .l-tenkyo_Flow__Number { background-color: #ec6c00 !important; }
.l-tenkyo_Flow__Item:nth-child(2) .l-tenkyo_Flow__Number { background-color: #018ccf !important; }
.l-tenkyo_Flow__Item:nth-child(3) .l-tenkyo_Flow__Number { background-color: #ec6c00 !important; }
.l-tenkyo_Flow__Item:nth-child(4) .l-tenkyo_Flow__Number { background-color: #018ccf !important; }
.l-tenkyo_Flow__Item:nth-child(5) .l-tenkyo_Flow__Number { background-color: #41b149 !important; }

/* ステップタイトル */
.l-tenkyo_Flow__StepTitle {
  color: #ea5404;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-tenkyo_Flow__Item:nth-child(1) .l-tenkyo_Flow__StepTitle { color: #ec6c00 !important; }
.l-tenkyo_Flow__Item:nth-child(2) .l-tenkyo_Flow__StepTitle { color: #018ccf !important; }
.l-tenkyo_Flow__Item:nth-child(3) .l-tenkyo_Flow__StepTitle { color: #ec6c00 !important; }
.l-tenkyo_Flow__Item:nth-child(4) .l-tenkyo_Flow__StepTitle { color: #018ccf !important; }
.l-tenkyo_Flow__Item:nth-child(5) .l-tenkyo_Flow__StepTitle { color: #41b149 !important; }
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__StepTitle { font-size: 2rem; }
}

/* 説明文 */
.l-tenkyo_Flow__Text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  padding-left: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__Text { padding-left: 6.8rem; }
}

/* リンクや注記 */
.l-tenkyo_Flow__Text small {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #666;
}

/* 右側：イラストレーションエリア */
.l-tenkyo_Flow__Illustration {
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Flow__Illustration { width: 190px; margin: 0; }
}

.l-tenkyo_Flow__FlowImage {
  width: 100%;
  height: auto;
}

/* 関係図 */
.l-tenkyo_Flow__Relation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.l-tenkyo_Char {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 40%;
}

.l-tenkyo_Char::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #ddd;
  background-color: #fff;
  margin-bottom: 0.2rem;
}

.l-tenkyo_Arrow {
  flex: 1;
  height: 2px;
  background: #ea5404;
  position: relative;
  margin: 0 0.5rem;
  margin-top: -1.5rem;
}
.l-tenkyo_Arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #ea5404;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.l-tenkyo_Arrow.u-arrowLeft::after {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 6px solid #ea5404;
}

/* 色違いバリエーション */
.u-textBlue + .l-tenkyo_Flow__Text { border-left-color: #1a6fb5; }

/* CSSのみでの簡易アイコン再現 */
.l-tenkyo_Char.icon-user { color: #ea5404; }
.l-tenkyo_Char.icon-user::before {
  content: "\1F464";
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; background: #ea5404; border: none;
}

.l-tenkyo_Char.icon-shop, .l-tenkyo_Char.icon-shopNew { color: #003F90; }
.l-tenkyo_Char.icon-shop::before, .l-tenkyo_Char.icon-shopNew::before {
  content: "\1F4FA";
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; background: #003F90; border: none;
}
.l-tenkyo_Char.icon-shopNew { color: #009e96; }
.l-tenkyo_Char.icon-shopNew::before { background: #009e96; }


/* ============================================
 * 3. CNCIグループ局一覧
 * ============================================ */
.l-tenkyo_Cnci {
  background: #fff;
  padding: 4.8rem 2rem 5.4rem;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci { padding: 6rem 2rem 7rem; }
}

.l-tenkyo_Cnci__Inner {
  max-width: 800px;
  margin: 0 auto;
}

/* セクションタイトル */
.l-tenkyo_Cnci__TitleWrap {
  text-align: center;
  margin-bottom: 3.2rem;
}
.l-tenkyo_Cnci__TitleImage {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* 地図 */
.l-tenkyo_Cnci__Map {
  text-align: center;
  margin-bottom: 3.6rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.l-tenkyo_Cnci__MapImage {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* ロゴグリッド */
.l-tenkyo_Cnci__Grid {
  counter-reset: cnci;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 9rem;
    row-gap: 4.8rem;
  }
}

/* 各カード */
.l-tenkyo_Cnci__Card {
  counter-increment: cnci;
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: left;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card { padding: 0; }
}

.l-tenkyo_Cnci__Card::before {
  content: counter(cnci);
  position: absolute;
  top: -1rem;
  left: 0;
  width: 1.92rem;
  height: 1.92rem;
  border-radius: 50%;
  background: #323232;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.92rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card::before {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.36rem;
    line-height: 2.4rem;
    top: -1.4rem;
  }
}

/* ロゴ */
.l-tenkyo_Cnci__Card__Logo {
  margin: 2.2rem 0 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background: #fff;
  padding: 0;
}
.l-tenkyo_Cnci__Card__Logo img {
  width: 100%;
  max-width: 208px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card__Logo {
    margin: 2.4rem 0 1.4rem;
  }
  .l-tenkyo_Cnci__Card__Logo img {
    max-width: 224px;
  }
}

/* 会社名 */
.l-tenkyo_Cnci__Card__Name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #00498c;
  margin-bottom: 0.8rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card__Name { font-size: 1.65rem; }
}

/* エリア */
.l-tenkyo_Cnci__Card__Area {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card__Area { font-size: 1.2rem; }
}

/* 対応エリアタグ */
.l-tenkyo_Cnci__Card__AreaTag {
  display: inline-block;
  background: #1a6fb5;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.25em 0.8em;
  border-radius: 999px;
  margin-right: 0.7rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Cnci__Card__AreaTag { font-size: 1rem; }
}


/* ============================================
 * 4. お問い合わせセクション
 * ============================================ */
.l-tenkyo_Inquiry {
  background: #0b4697;
  padding: 4.0rem 2rem 4.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Inquiry { padding: 4.4rem 2rem 4.8rem; }
}

.l-tenkyo_Inquiry__Inner {
  max-width: 760px;
  margin: 0 auto;
}

/* 見出し */
.l-tenkyo_Inquiry__Heading {
  font-size: 2.0rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.0rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Inquiry__Heading { font-size: 2.4rem; }
}

/* 2カラムCTA */
.l-tenkyo_Inquiry__Grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.0rem;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Inquiry__Grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }
}

.l-tenkyo_Inquiry__Item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-tenkyo_Inquiry__Label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .l-tenkyo_Inquiry__Label { font-size: 1.6rem; }
}

.l-tenkyo_Inquiry__Action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 26rem;
  min-height: 4.8rem;
  background: #1cb3de;
  color: #fff;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.l-tenkyo_Inquiry__Action:hover { opacity: 0.9; }
@media screen and (min-width: 768px) {
  .l-tenkyo_Inquiry__Action {
    max-width: 240px;
    min-height: 5.0rem;
    font-size: 2.0rem;
    gap: 1rem;
  }
}

.l-tenkyo_Inquiry__ActionIcon {
  font-size: 0.86em;
  line-height: 1;
}

.l-tenkyo_Inquiry__ActionText {
  line-height: 1;
}

.l-tenkyo_Inquiry__Action.-tel .l-tenkyo_Inquiry__ActionText {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
}


/* ============================================
 * WIFI
 * ============================================ */
/**
 * ひかりWi-Fiプラスページ用スタイル
 * CSS命名規則: l-wifi_*
 * カラー定義:
 *   メイングリーン: #4CAF50（ヒーロー背景、CTA）
 *   濃いグリーン:   #43A047（グラデーション、ホバー）
 *   オレンジ:       #FF9800（大好評バッジ、おすすめタグ）
 *   濃いオレンジ:   #F57C00（バッジアクセント）
 *   テキスト黒:     #333
 *   背景グレー:     #f5f5f5
 *   白:             #fff
 *   ブルー:         #2196F3（速度アイコン等）
 */


/* ============================================
 * 1. ヒーローセクション
 * ============================================ */
.l-wifi_Hero {
  background: #fff;
  padding: 2rem 1.5rem 0;
}

.l-wifi_Hero__Inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero {
    padding: 3rem 2rem 0;
  }
}

/* メインビジュアル（SVG画像にタイトル・価格等が含まれる） */
.l-wifi_Hero__Visual {
  text-align: center;
  margin-bottom: 2rem;
}

.l-wifi_Hero__Image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero__Visual {
    margin-bottom: 2.4rem;
  }
  .l-wifi_Hero__Image {
    max-width: 900px;
  }
}

/* ポイントセクション */
.l-wifi_Hero__Points {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.l-wifi_Hero__Point {
  background: #f5f5f5;
  border-radius: 1.2rem;
  padding: 1.8rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero__Point {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.4rem;
  }
}

.l-wifi_Hero__PointContent {
  flex: 1;
}

.l-wifi_Hero__PointLabel {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3em 1.2em;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.l-wifi_Hero__PointText {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero__PointText {
    font-size: 1.5rem;
  }
}

.l-wifi_Hero__PointImage {
  margin-top: 1.2rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

.l-wifi_Hero__PointImage img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero__PointImage {
    margin-top: 0;
    flex: 1;
    max-width: 400px;
  }
}

/* 緑帯 */
.l-wifi_Hero__Bar {
  background: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 -1.5rem;
}

.l-wifi_Hero__Bar strong {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_Hero__Bar {
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
    margin: 0 -2rem;
  }
  .l-wifi_Hero__Bar strong {
    font-size: 1.8rem;
  }
}


/* ============================================
 * 2. プランセクション
 * ============================================ */
.l-wifi_Plan {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
}

.l-wifi_Plan__Inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Plan {
    padding: 4rem 2rem 5rem;
  }
}

.l-wifi_Plan__Title {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  border-left: 5px solid #4CAF50;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-wifi_Plan__Title {
    font-size: 2.4rem;
    border-left-width: 6px;
    padding-left: 1.6rem;
  }
}

.l-wifi_Plan__Tax {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* サブタイトル */
.l-wifi_Plan__SubTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.6rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 0.8rem;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .l-wifi_Plan__SubTitle {
    font-size: 1.8rem;
    gap: 0.8rem;
  }
}

.l-wifi_Plan__SubIcon {
  width: 2.8rem;
  height: 2.8rem;
}

.l-wifi_Plan__PlusIcon {
  width: 2rem;
  height: 2rem;
}

.l-wifi_Plan__WifiIcon {
  font-size: 2.4rem;
  color: #4CAF50;
}

/* プランカードグリッド */
.l-wifi_Plan__Grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_Plan__Grid {
    flex-direction: row;
    gap: 1.2rem;
  }
}

/* プランカード */
.l-wifi_Plan__Card {
  flex: 1;
  border: 2px solid #e0e0e0;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}

.l-wifi_Plan__Card.-recommend {
  border-color: #FF9800;
}

.l-wifi_Plan__CardBadge {
  position: absolute;
  top: 0;
  right: 1rem;
  background: #FF9800;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.3em 1em;
  border-radius: 0 0 6px 6px;
  z-index: 1;
}

.l-wifi_Plan__CardHeader {
  background: #4CAF50;
  color: #fff;
  padding: 1.2rem 1.4rem;
  text-align: center;
}

.l-wifi_Plan__Card.-recommend .l-wifi_Plan__CardHeader {
  background: #43A047;
}

.l-wifi_Plan__CardCatch {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.l-wifi_Plan__CardName {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .l-wifi_Plan__CardName {
    font-size: 1.5rem;
  }
}

.l-wifi_Plan__CardBody {
  padding: 1.4rem;
}

/* ラベル */
.l-wifi_Plan__CardLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f5f5f5;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  margin-right: 0.4rem;
}

/* 速度表示 */
.l-wifi_Plan__CardSpeed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0;
}

.l-wifi_Plan__CardSpeedIcon {
  font-size: 2rem;
  color: #4CAF50;
}

.l-wifi_Plan__CardSpeedValue {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}

.l-wifi_Plan__CardSpeedValue small {
  font-size: 1.4rem;
}

/* 月額 */
.l-wifi_Plan__CardPrice {
  text-align: center;
  margin: 1rem 0;
}

.l-wifi_Plan__CardPriceLabel {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.2rem;
}

.l-wifi_Plan__CardPriceValue {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}

.l-wifi_Plan__CardPriceValue strong {
  font-size: 2.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #4CAF50;
}

.l-wifi_Plan__CardDetail {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

.l-wifi_Plan__CardBestEffort {
  font-size: 1rem;
  color: #999;
}

/* セット月額 */
.l-wifi_Plan__CardSet {
  background: #4CAF50;
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  text-align: center;
  margin: 1rem 0 0.6rem;
}

.l-wifi_Plan__CardSetLabel {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.l-wifi_Plan__CardSetValue strong {
  font-size: 2.2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.l-wifi_Plan__CardSetValue small {
  font-size: 1rem;
}

.l-wifi_Plan__CardSingle {
  font-size: 1.1rem;
  color: #999;
  text-align: center;
}

/* 注意書き */
.l-wifi_Plan__Notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-wifi_Plan__Notes li {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  padding: 0.4em 0;
  padding-left: 1em;
  text-indent: -1em;
}

.l-wifi_Plan__Notes li::before {
  content: "※";
  color: #999;
}


/* ============================================
 * 3. ご注意セクション（アコーディオン）
 * ============================================ */
.l-wifi_Notice {
  background: #f5f5f5;
  padding: 3rem 1.5rem 4rem;
}

.l-wifi_Notice__Inner {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Notice {
    padding: 4rem 2rem 5rem;
  }
}

.l-wifi_Notice__Header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid #4CAF50;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
  background: #fff;
}

.l-wifi_Notice__Header i {
  font-size: 2.4rem;
  color: #4CAF50;
  flex-shrink: 0;
}

.l-wifi_Notice__Header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .l-wifi_Notice__Header h2 {
    font-size: 1.8rem;
  }
}

/* アコーディオンボタン */
.l-wifi_Notice__AcdBtn {
  background: #fff;
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 1.2rem 3rem 1.2rem 1.4rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s;
}

.l-wifi_Notice__AcdBtn:first-of-type {
  border-radius: 0.6rem 0.6rem 0 0;
}

.l-wifi_Notice__AcdBtn:hover {
  background: #f9f9f9;
}

.l-wifi_Notice__AcdBtn h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .l-wifi_Notice__AcdBtn h3 {
    font-size: 1.4rem;
  }
}

.l-wifi_Notice__AcdBtn::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #4CAF50;
  transition: transform 0.3s;
}

.l-wifi_Notice__AcdBtn.active::after {
  transform: translateY(-50%) rotate(180deg);
}

/* アコーディオンボックス */
.l-wifi_Notice__AcdBox {
  display: none;
  background: #fafafa;
  border: 1px solid #ddd;
  border-top: none;
  padding: 1.2rem 1.4rem;
}

.l-wifi_Notice__AcdBox p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}

@media screen and (min-width: 768px) {
  .l-wifi_Notice__AcdBox p {
    font-size: 1.4rem;
  }
}

/* 最後のアコーディオン項目に下線 */
.m-acd__List .l-wifi_Notice__AcdBtn:last-of-type,
.m-acd__List .l-wifi_Notice__AcdBox:last-of-type {
  border-bottom: 1px solid #ddd;
}

.m-acd__List .l-wifi_Notice__AcdBox:last-of-type {
  border-radius: 0 0 0.6rem 0.6rem;
}


/* ============================================
 * 4. その他セクション
 * ============================================ */
.l-wifi_Other {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
}

.l-wifi_Other__Inner {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Other {
    padding: 4rem 2rem 5rem;
  }
}

.l-wifi_Other__SubHeading {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  border-left: 5px solid #4CAF50;
  padding-left: 1.2rem;
  margin: 3rem 0 1.6rem;
  line-height: 1.4;
}

.l-wifi_Other__Item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.l-wifi_Other__Item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.l-wifi_Other__ItemTitle {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.l-wifi_Other__ItemTitle i {
  color: #4CAF50;
  margin-right: 0.4rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_Other__ItemTitle {
    font-size: 1.6rem;
  }
}

.l-wifi_Other__ItemText {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}

@media screen and (min-width: 768px) {
  .l-wifi_Other__ItemText {
    font-size: 1.4rem;
  }
}

.l-wifi_Other__ItemNote {
  font-size: 1.2rem;
  color: #c01920;
  font-weight: 700;
  margin-top: 0.6rem;
}

/* テーブル */
.l-wifi_Other__Tables {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_Other__Tables {
    flex-direction: row;
    gap: 2rem;
  }
}

.l-wifi_Other__TableWrap {
  flex: 1;
}

.l-wifi_Other__TableTitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.6rem;
}

.l-wifi_Other__Table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  line-height: 1.5;
}

.l-wifi_Other__Table th,
.l-wifi_Other__Table td {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.l-wifi_Other__Table th {
  background: #4CAF50;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.l-wifi_Other__Table td {
  background: #fff;
  color: #333;
}

@media screen and (min-width: 768px) {
  .l-wifi_Other__Table {
    font-size: 1.3rem;
  }
}

.l-wifi_Other__CableImage {
  margin-top: 1.6rem;
  text-align: center;
}

.l-wifi_Other__CableImage img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0.8rem;
}


/* ============================================
 * 5. タイプ変更の流れセクション
 * ============================================ */
.l-wifi_Flow {
  background: #f5f5f5;
  padding: 3rem 1.5rem 4rem;
}

.l-wifi_Flow__Inner {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-wifi_Flow {
    padding: 4rem 2rem 5rem;
  }
}

.l-wifi_Flow__Title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.4;
  border: 2px solid #4CAF50;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  background: #fff;
}

.l-wifi_Flow__Title i {
  color: #4CAF50;
  margin-right: 0.6rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_Flow__Title {
    font-size: 1.8rem;
  }
}

.l-wifi_Flow__Steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.l-wifi_Flow__Step {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  padding: 1.6rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.l-wifi_Flow__Step.-done {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #fff;
}

.l-wifi_Flow__Step.-done p {
  color: #fff;
  font-weight: 700;
}

.l-wifi_Flow__StepHead {
  flex-shrink: 0;
}

.l-wifi_Flow__StepNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}

.l-wifi_Flow__StepNumber small {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.l-wifi_Flow__StepBody p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
}

@media screen and (min-width: 768px) {
  .l-wifi_Flow__StepBody p {
    font-size: 1.4rem;
  }
}

.l-wifi_Flow__Arrow {
  color: #4CAF50;
  font-size: 1.6rem;
  padding: 0.6rem 0;
}


/* ============================================
 * 6. CTAセクション
 * ============================================ */
.l-wifi_CTA {
  background: #4CAF50;
  padding: 4rem 2rem;
  text-align: center;
}

.l-wifi_CTA__Inner {
  max-width: 760px;
  margin: 0 auto;
}

.l-wifi_CTA__Heading {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .l-wifi_CTA {
    padding: 4.4rem 2rem 4.8rem;
  }
  .l-wifi_CTA__Heading {
    font-size: 2.8rem;
  }
}

.l-wifi_CTA__Buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

@media screen and (min-width: 768px) {
  .l-wifi_CTA__Buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.6rem;
  }
}

.l-wifi_CTA__Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 24rem;
  min-height: 5rem;
  border-radius: 999px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}

.l-wifi_CTA__Button:hover {
  opacity: 0.85;
}

.l-wifi_CTA__Button.-tel {
  background: #fff;
  color: #4CAF50;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  border: 2px solid #fff;
}

.l-wifi_CTA__Button.-form {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

@media screen and (min-width: 768px) {
  .l-wifi_CTA__Button {
    font-size: 2rem;
    min-width: 26rem;
    min-height: 5.4rem;
  }
}


/* ============================================
 * ユーティリティ
 * ============================================ */
.u-sp-only {
  display: inline;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

.u-textRed {
  color: #c01920;
  font-weight: 700;
}

.u-textGreen {
  color: #4CAF50;
  font-weight: 700;
}

/* ============================================
 * 動画配信サービス（Streaming）
 * ============================================ */
/**
 * 動画配信サービスページ用スタイル
 * CSS命名規則: l-streaming_*
 *
 * カラー定義:
 *   メインブルー:      #003F90
 *   サブブルー:        #0068B7
 *   アクセント:        #00A0E9
 *   テキスト黒:        #333
 *   背景グレー:        #f5f5f5
 *   白:               #fff
 *   アクセントオレンジ: #FF6600
 */

/* ---- ページ全体背景（ダークネイビー） ---- */
body.l-service.-streaming {
  background-color: #002840;
}

body.l-service.-streaming .main {
  background-color: transparent;
}

/* ---- 上部グラデーション背景（セクション1〜2を包括） ---- */
.l-streaming_GradientWrap {
  background: linear-gradient(180deg, #000000 0%, #00273E 30%, #002840 49%, #004E77 83%, #0098AE 100%);
}

/* ---- 下部ダークネイビー背景（セクション3〜注意事項を包括） ---- */
.l-streaming_DarkWrap {
  background-color: #002840;
}

/* ---- メインビジュアル ---- */
.l-streaming_Hero {
  background: transparent;
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.l-streaming_Hero__Inner {
  max-width: 1000px;
  margin: 0 auto;
}

.l-streaming_Hero__Image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-streaming_Hero {
    padding: 3rem 2rem 2rem;
  }
  .l-streaming_Hero__Image {
    max-width: 100%;
  }
}

/* ---- サービスロゴ ---- */
.l-streaming_Logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem 3rem;
  flex-wrap: wrap;
  background: transparent;
}

.l-streaming_Logos__Item {
  max-width: 160px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .l-streaming_Logos {
    gap: 3rem;
    padding: 2rem 2rem 3rem;
  }
  .l-streaming_Logos__Item {
    max-width: 200px;
  }
}

/* ---- 共通セクション ---- */
.l-streaming_Section {
  padding: 3rem 1.5rem;
  background: transparent;
}

.l-streaming_Section.-gray {
  background: transparent;
}

.l-streaming_Section.-white {
  background: transparent;
}

.l-streaming_Section__Inner {
  max-width: 900px;
  margin: 0 auto;
}

.l-streaming_Section__TitleImage {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
}

@media screen and (min-width: 768px) {
  .l-streaming_Section {
    padding: 4rem 2rem;
  }
  .l-streaming_Section__TitleImage {
    max-width: 700px;
    margin-bottom: 3rem;
  }
}

/* ---- 特徴カード ---- */
.l-streaming_Feature {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.l-streaming_Feature__Card {
  background: transparent;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
}

/* 不要: 全カード白背景で統一 */

.l-streaming_Feature__Icon {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 1.2rem;
}

.l-streaming_Feature__Title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.l-streaming_Feature__Text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .l-streaming_Feature {
    flex-direction: row;
    gap: 2rem;
  }
  .l-streaming_Feature__Card {
    flex: 1;
    padding: 2.4rem 2rem;
  }
  .l-streaming_Feature__Icon {
    width: 100px;
  }
  .l-streaming_Feature__Title {
    font-size: 1.8rem;
  }
  .l-streaming_Feature__Text {
    font-size: 1.5rem;
  }
}

/* ---- 楽しみ方（3カラム） ---- */
.l-streaming_Enjoy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.l-streaming_Enjoy__Card {
  text-align: center;
  background: transparent;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
}

.l-streaming_Enjoy__Icon {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 1.2rem;
}

.l-streaming_Enjoy__Title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.l-streaming_Enjoy__Text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .l-streaming_Enjoy {
    flex-direction: row;
    gap: 2rem;
  }
  .l-streaming_Enjoy__Card {
    flex: 1;
    padding: 2.4rem 2rem;
  }
  .l-streaming_Enjoy__Icon {
    width: 100px;
  }
  .l-streaming_Enjoy__Title {
    font-size: 1.6rem;
  }
}

/* ---- サービスラインナップ ---- */
.l-streaming_Lineup {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.l-streaming_Lineup__Card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.l-streaming_Lineup__Logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto 1.2rem;
}

.l-streaming_Lineup__Name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.l-streaming_Lineup__Desc {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.l-streaming_Lineup__Link {
  display: inline-block;
  background: #003F90;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  transition: background 0.3s;
}

.l-streaming_Lineup__Link:hover {
  background: #0068B7;
}

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

@media screen and (min-width: 768px) {
  .l-streaming_Lineup {
    flex-direction: row;
    gap: 2rem;
  }
  .l-streaming_Lineup__Card {
    flex: 1;
    padding: 2.4rem 2rem;
  }
  .l-streaming_Lineup__Logo {
    max-width: 220px;
  }
  .l-streaming_Lineup__Desc {
    font-size: 1.5rem;
  }
}

/* ---- ご利用の流れ（ステップ） ---- */
.l-streaming_Steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: step;
}

.l-streaming_Steps__Item {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 1.5rem;
}

.l-streaming_Steps__StepImage {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1rem;
}

.l-streaming_Steps__Title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.l-streaming_Steps__Body {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.l-streaming_Steps__Body p {
  margin-bottom: 0.5rem;
}

.l-streaming_Steps__Body a {
  color: #0098AE;
  text-decoration: underline;
}

.l-streaming_Steps__Body a:hover {
  color: #00C8E8;
}

.l-streaming_Steps__Freecall {
  display: inline-block;
  max-width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
}

.l-streaming_Steps__Tel {
  font-size: 2rem;
  font-weight: 700;
  color: #0098AE;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

@media screen and (min-width: 768px) {
  .l-streaming_Steps {
    gap: 2rem;
  }
  .l-streaming_Steps__Item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.4rem 3rem;
  }
  .l-streaming_Steps__StepImage {
    flex-shrink: 0;
    max-width: 160px;
    margin: 0;
  }
  .l-streaming_Steps__Content {
    flex: 1;
  }
  .l-streaming_Steps__Title {
    text-align: left;
    font-size: 1.6rem;
    color: #fff;
  }
}

/* ---- 割引セクション ---- */
.l-streaming_Discount {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.l-streaming_Discount__Card {
  background: transparent;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.2);
}

.l-streaming_Discount__Card:last-child {
  border-right: none;
}

.l-streaming_Discount__Icon {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 1rem;
}

.l-streaming_Discount__Label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.l-streaming_Discount__Amount {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.6;
}

.l-streaming_Discount__Amount strong {
  font-size: 2.4rem;
  color: #FF6600;
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
}

@media screen and (min-width: 768px) {
  .l-streaming_Discount {
    flex-direction: row;
    gap: 2rem;
  }
  .l-streaming_Discount__Card {
    flex: 1;
    padding: 2.4rem 2rem;
  }
  .l-streaming_Discount__Icon {
    width: 100px;
  }
}

/* ---- 注意事項 ---- */
.l-streaming_Notes {
  background: transparent;
  padding: 2rem 0;
}

.l-streaming_Notes__Title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-left: 5px solid #0098AE;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.l-streaming_Notes__Subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0098AE;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.l-streaming_Notes__Subtitle:first-of-type {
  margin-top: 0;
}

.l-streaming_Notes__List {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-streaming_Notes__List li {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 0.6rem;
}

.l-streaming_Notes__List li::before {
  content: "\203B";
  margin-right: 0.2em;
}

@media screen and (min-width: 768px) {
  .l-streaming_Notes {
    padding: 3rem 0;
  }
  .l-streaming_Notes__Title {
    font-size: 2rem;
  }
  .l-streaming_Notes__List li {
    font-size: 1.3rem;
  }
}

/* ---- CTAボタン ---- */
.l-streaming_CTA {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
}

.l-streaming_CTA__Button {
  display: inline-block;
  max-width: 400px;
  width: 100%;
}

.l-streaming_CTA__Button img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  transition: opacity 0.3s;
}

.l-streaming_CTA__Button:hover img {
  opacity: 0.8;
}
