@charset "utf-8";

/* =========================================================
  mic21トーン版（赤×白×紺）
  - テーブル th に横線（下線）追加
  - LP全体の配色をmic21寄せ
========================================================= */

/* =============================
   基本設定
============================= */

:root{
  /* mic21っぽいトーン（近似） */
  --mic-red: #e60012;
  --mic-navy: #0b2a4a;
  --mic-blue: #0f4c75;
  --mic-sky: #2ea8ff;

  --text: #0f2e3d;
  --bg: #ffffff;
  --card: #ffffff;
  --line: rgba(11, 42, 74, 0.18);
  --shadow: 0 10px 24px rgba(0,0,0,0.14);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  background: var(--bg);
}

.idc_lp{
  max-width:960px;
  margin:0 auto;
  font-family:"Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  color:var(--text);
  line-height:1.7;
}

/* =============================
   FV
============================= */

.fv{
  position:relative;
  background-image:url("../img/2026/fv3.jpg");
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center 30%;

  aspect-ratio:16/9;
  min-height:420px;

  display:flex;
  align-items:flex-start;
  padding:60px 6% 0;
  color:#fff;
}

.fv-dm{
   position:relative;
  background-image:url("../img/2026/dm-img.jpg");
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center 30%;

  aspect-ratio:16/9;
  min-height:420px;

  display:flex;
  align-items:flex-start;
  padding:60px 6% 0;
  color:#fff;
}



.fv::before,
.fv-dm::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(11,42,74,0.78),
    rgba(11,42,74,0.25)
  );
}

.fv-inner{
  position:relative;
  z-index:2;
  max-width:520px;
}

.fv h1{
  font-size:40px;
  margin:0 0 10px;
  text-shadow:0 6px 18px rgba(0,0,0,0.5);
}

.fv-sub{
  font-size:16px;
  opacity:0.92;
}

/* =============================
   旧：帯（assist_band）をmic21寄せ
   ※今はここを強調ブロックに差し替える案もありますが、
     既存構造のまま色味だけmic21調整も可能なので残しています
============================= */

.assist_band{
  width:100%;
  background: linear-gradient(90deg, var(--mic-red), #ff3b30);
  color:#fff;
  text-align:center;
  padding:26px 18px;
  font-weight:700;
  border-radius: 14px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}

.assist_band strong{
  display:block;
  font-size:22px;
  letter-spacing: .02em;
}

.assist_band span{
  display:block;
  font-size:14px;
  margin-top:8px;
  opacity:.95;
}

/* =============================
   CTA共通（mic21トーン）
============================= */

.cta-section,
.cost_cta_area,
.final_cta{
  padding:60px 20px;
  text-align:center;
}

.cta-inner,
.cost_cta_buttons,
.cta_buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* 共通ボタン */
.btn-primary,
.btn-secondary,
.cta_button_main,
.cta_button_sub,
.cta_button{
  display:inline-block;
  padding:16px 36px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:0.25s;
  max-width:100%;
}

/* メイン：mic21赤 */
.btn-primary,
.cta_button_main{
  background: linear-gradient(135deg, var(--mic-red), #ff3b30);
  color:#fff;
  box-shadow: 0 12px 24px rgba(230,0,18,0.22);
}

/* サブ：紺（mic21寄せ） */
.btn-secondary,
.cta_button_sub,
.cta_button.outline{
  background: rgba(11,42,74,0.08);
  color: var(--mic-navy);
  border: 1px solid rgba(11,42,74,0.22);
}

.btn-primary:hover,
.btn-secondary:hover,
.cta_button_main:hover,
.cta_button_sub:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.18);
}

.stay_block .cta_area{
  text-align:center;
  margin:40px 0;
}

.photo-block{
  padding:60px 20px;
}

.photo-block img{
  margin-bottom:40px;
  width:100%;
  height:auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* 既存の .stay_block .cta_buttons がHTMLに無い場合もあるので両対応 */
.stay_block .cta_buttons,
.stay_block .cta_area{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cost_cta_text{
  margin-bottom: 20px;
}

/* =============================
   見出し
============================= */

.section_title{
  font-size:24px;
  margin:80px 0 30px;
  font-weight:900;
  position:relative;
  color: var(--mic-navy);}
.section_title::after{
  content:"";
  display:block;
  width:92px;
  height:4px;
  background: linear-gradient(90deg, var(--mic-red), var(--mic-sky));
  margin-top:10px;
  border-radius: 999px;}
.section_title2{
  font-size:24px;
  margin:80px 0 30px;
  font-weight:900;
  position:relative;
  color:#fff;}
.section_title2::after{
  content:"";
  display:block;
  width:92px;
  height:4px;
  background: linear-gradient(90deg, var(--mic-red), var(--mic-sky));
  margin-top:10px;
  border-radius: 999px;}

/* =============================
   テーブル（重要：th横線追加）
============================= */

.schedule_table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-bottom:40px;
  background: var(--card);
  border:2px solid rgba(11,42,74,0.22);
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(11,42,74,0.08);
}

/* ヘッダー行 th */
.schedule_table thead th{
  background: linear-gradient(135deg, var(--mic-navy), var(--mic-blue));
  color:#fff;
  padding:14px;
  border-right:1px solid rgba(255,255,255,0.28);

  /* ★これが「横線」：ヘッダー下の区切り */
  border-bottom: 2px solid rgba(255,255,255,0.30);
}

/* 1列目のth（tbody側も含む） */
.schedule_table th{
  background: linear-gradient(135deg, var(--mic-navy), var(--mic-blue));
  color:#fff;
  padding:14px;
  border-right:1px solid rgba(255,255,255,0.28);

  /* ★横線：thの下にライン */
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.schedule_table th:last-child{
  border-right:none;
}

/* td */
.schedule_table td{
  padding:14px;
  background:#ffffff;
  border-top:1px solid rgba(11,42,74,0.14);
  border-right:1px solid rgba(11,42,74,0.10);
}

/* 行末のtd右線を消す（見た目整える） */
.schedule_table tr td:last-child{
  border-right:none;
}

/* tbodyの最後行の境界がきつい場合の調整 */
.schedule_table tbody tr:last-child td{
  border-bottom:none;
}

/* 金額セル */
.hiyou{
  text-align:right;
  font-weight:800;
  color: var(--mic-navy);
}

/* =============================
   最終CTA（mic21トーン）
============================= */

.final_cta{
  background: linear-gradient(135deg, var(--mic-navy), #071e33);
  color:#fff;
  margin-top: 80px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.final_cta .cta_button_main{
  background: linear-gradient(135deg, var(--mic-red), #ff3b30);
  color:#fff;
}

.final_cta .cta_button_sub{
  background: rgba(255,255,255,0.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.cta_text{
  margin-bottom: 20px;
}

/* =============================
   その他（既存のまま）
============================= */

.cost_cta_area{
  margin-top: 10px;
}

.stay_block{
  margin-top: 40px;
}

.date_split div{
  margin: 2px 0;
}

/* =============================
   スマホ
============================= */

@media (max-width:480px){

  .idc_lp{
    padding:0 16px;
  }

  /* FV */
  .fv{
    aspect-ratio:3/4;
    min-height:360px;
    background-position:55% 30%;
    align-items:flex-end;
    padding:0 16px 40px;
  }

  .fv h1{
    font-size:22px;
    line-height:1.3;
  }

  /* ボタン縦並び */
  .cta-inner,
  .cost_cta_buttons,
  .cta_buttons{
    flex-direction:column;
    gap:12px;
  }

  .btn-primary,
  .btn-secondary,
  .cta_button_main,
  .cta_button_sub,
  .cta_button{
    width:100%;
    max-width:100%;
    padding:16px 14px;
  }

  /* テーブルカード化 */
  .schedule_table thead{
    display:none;
  }

  .schedule_table tr{
    display:block;
    border:1px solid rgba(11,42,74,0.16);
    border-radius:14px;
    padding:16px;
    margin-bottom:16px;
    background:#fff;
    box-shadow: 0 10px 20px rgba(11,42,74,0.06);
  }

  .schedule_table th,
  .schedule_table td{
    display:block;
    border:none;
    background:none;
    padding:6px 0;
    color: var(--text);
  }

  /* ★スマホカード内の区切り線（“横線が欲しい”対策） */
  .schedule_table th{
    color: var(--mic-navy);
    font-weight:900;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(11,42,74,0.14);
  }

  .schedule_table th:first-child{
    border-top:none;
    padding-top: 0;
    margin-top: 0;
  }

  .cta_buttons,
  .cost_cta_buttons{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .photo-block{
    padding:40px 0;
  }

  .photo-block img{
    margin-bottom:30px;
  }

  .stay_block{
    padding-bottom:30px;
  }
}
/* =============================
  40本無料：強調オファー
============================= */
.assist_offer{
  padding: 28px 16px 10px;
}

.assist_offer__inner{
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(135deg, #012a4a, #01497c);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 背景の光 */
.assist_offer__inner::before{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0,180,216,0.35), transparent 70%);
  transform: rotate(10deg);
}

.assist_offer__badge{
  display:inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.assist_offer__main{
  display:flex;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.assist_offer__left{
  display:flex;
  gap: 12px;
  align-items:center;
  flex: 1 1 360px;
  min-width: 280px;
}

.assist_offer__icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,180,216,0.18);
  border: 1px solid rgba(0,180,216,0.35);
  font-size: 26px;
}

.assist_offer__kicker{
  margin: 0 0 6px;
  opacity: 0.9;
  font-size: 13px;
}

.assist_offer__title{
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .01em;
}

.assist_offer__num{
  font-size: 52px;
  line-height: 1;
  margin: 0 4px 0 6px;
  display:inline-block;
  color: #48cae4;
  text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.assist_offer__unit{
  font-size: 18px;
  opacity: .95;
  margin-right: 6px;
}

.assist_offer__right{
  flex: 1 1 360px;
  min-width: 280px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 14px 14px 10px;
}

.assist_offer__points{
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.assist_offer__points li{
  margin: 6px 0;
}

.assist_offer__note{
  margin-top: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 14px;
  position: relative;
  z-index: 2;
}

.assist_offer__note p{
  margin: 0 0 8px;
}

.assist_offer__small{
  margin: 0;
  font-size: 12px;
  opacity: .85;
}

.assist_offer__cta{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.assist_offer__btn{
  display:inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  background: linear-gradient(135deg,#00b4d8,#48cae4);
  color:#003049;
  transition: .25s;
  max-width: 100%;
}

.assist_offer__btn.sub{
  background: rgba(255,255,255,0.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.assist_offer__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* スマホ最適化 */
@media (max-width:480px){
  .assist_offer{
    padding: 18px 16px 0;
  }
  .assist_offer__inner{
    padding: 14px;
  }
  .assist_offer__title{
    font-size: 22px;
  }
  .assist_offer__num{
    font-size: 46px;
  }
}
/* assist_offer アイコンが消える環境対策 */
.assist_offer__icon{
  display:flex !important;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
  line-height: 1;
}
.right1{
    text-align: right;
    padding-right: 15px;
}
