@charset "UTF-8";
/* CSS Document */

/* ※注釈リスト */
.note-list{
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.note-list li{
  position: relative;
  padding-left: 1.4em;     /* ※ぶんの左余白 */
  line-height: 1.7;
  font-size: 0.52rem;
  color: #475569;
}

.note-list li::before{
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: #64748b;
  font-weight: 700;
}

@charset "UTF-8";

/* ===============================
   CTA リンクボタン（完全版）
================================ */

.cta-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 100%;           /* PCもモバイルも同幅 */
  margin: 0 auto;

  padding: 16px 18px;

  background: linear-gradient(
    180deg,
    #f03345 0%,
    #d81f2c 100%
  );

  color: #fff;
  text-decoration: none;

  border-radius: 10px;

  box-shadow:
    0 6px 0 #b91521,
    0 10px 18px rgba(0,0,0,.25);

  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

/* ===== hover / active ===== */
.cta-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 7px 0 #b91521,
    0 14px 22px rgba(0,0,0,.3);
}

.cta-btn:active{
  transform: translateY(3px);
  filter: brightness(.98);
  box-shadow:
    0 3px 0 #b91521,
    0 6px 10px rgba(0,0,0,.25);
}

/* ===== 無料バッジ ===== */
.cta-btn__badge{
  background: #fff;
  color: #d81f2c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;

  box-shadow:
    0 1px 0 rgba(0,0,0,.35);

  flex-shrink: 0;
}

/* ===== テキスト ===== */
.cta-btn__text{
  color: #fff;
  font-size: clamp(15px, 4vw, 18px);
  white-space: nowrap;

  text-shadow:
    0 1px 0 rgba(0,0,0,.35),
    0 2px 4px rgba(0,0,0,.35);
}

/* 「まずは」だけ少し軽く */
.cta-btn__text .light{
  font-weight: 600;
  opacity: .95;
}

/* ===== 矢印 ===== */
.cta-btn__arrow{
  position: absolute;
  right: 14px;

  font-size: 22px;
  font-weight: 900;
  line-height: 1;

  color: #fff;
  opacity: .95;

  text-shadow:
    0 1px 0 rgba(0,0,0,.35),
    0 2px 4px rgba(0,0,0,.35);
}

/* ===== モバイル微調整 ===== */
@media (max-width: 480px){
  .cta-btn{
    padding: 14px 16px;
  }
}



/* ======================================
   青ベタ見出し帯（すでに作ったもの）
====================================== */

.section-head-solid{
  position: relative;
  margin: 10px 0 10px; /* 下を少し詰めて本文とつなぐ */
  padding: 20px 24px 22px;

  background: #123a8f;
  border-radius: 14px;

  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.section-head-solid::after{
  content:"";
  position:absolute;
  top:-40%;
  right:-20%;
  width:240px;
  height:240px;
  background: rgba(255,255,255,.06);
  transform: rotate(25deg);
  pointer-events:none;
}

.section-head-solid__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  color: rgba(255,255,255,.75);
}

.section-head-solid__title{
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(20px, 5.6vw, 30px);
  line-height: 1.25;
  letter-spacing: .06em;

  text-shadow:
    0 1px 0 rgba(0,0,0,.25),
    0 6px 18px rgba(0,0,0,.25);
}

/* ======================================
   見出し直下・説明文ブロック
====================================== */

.magoko-loan-about{
  margin: 0 0 40px;
  padding: 5px 24px 26px;

  background: #ffffff;
  border-radius: 14px;

  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: #0f172a;

  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.magoko-loan-about p{
  margin: 0 0 16px;
  line-height: 1.9;
  font-size: 15px;
}

.magoko-loan-about p:last-child{
  margin-bottom: 0;
}

.magoko-loan-about strong{
  font-weight: 700;
  color: #123a8f;
}

/* ======================================
   モバイル最適化
====================================== */

@media (max-width: 480px){
  .section-head-solid{
    margin: 6px 0 5px;
    padding: 18px 18px 20px;
    border-radius: 12px;
  }

  .section-head-solid__kicker{
    font-size: 11px;
    letter-spacing: .22em;
  }

  .section-head-solid__title{
    letter-spacing: .04em;
    line-height: 1.3;
  }

  .magoko-loan-about{
    padding: 3px 18px 22px;
    border-radius: 12px;
  }

  .magoko-loan-about p{
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ======================================
   見出しデザイン
====================================== */

/* メーカーから探す 見出し */
h2.section-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  font-size: 28px !important;
  font-weight: 700 !important;
  color: #333 !important;

  margin: 60px 0 40px !important;
  letter-spacing: 0.05em;
}

/* ライン装飾 */
h2.section-title .section-line {
  width: 40px !important;
  height: 2px !important;
  background: #000000 !important;
  display: inline-block !important;
}

.anxiety-box {
  background: linear-gradient(135deg, #e8f2ff, #f5faff);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 16px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
/* ======================================
   審査に不安な
====================================== */
/* 見出し */
.anxiety-title {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 1.2em;
  position: relative;
}

.anxiety-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffd200;
  margin: 0.6em auto 0;
  border-radius: 2px;
}

/* リスト */
.anxiety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8em;
  grid-template-columns: 1fr;
}

/* チェック付き行 */
.anxiety-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: #333;
  line-height: 1.6;
}

/* チェックアイコン */
.anxiety-list li::before {
  content: "✓";
  color: #0b4da2;
  font-weight: 700;
  font-size: 1.2em;
}

/* PCでは2列 */
@media (min-width: 768px) {
  .anxiety-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .anxiety-list li {
    justify-content: flex-start;
  }
}

/* 注釈テキスト（※） */
.note{
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.75;
  color: #777;
  letter-spacing: 0.02em;
}

/* スマホで少し読みやすく */
@media (max-width: 768px){
  .note{
    font-size: 12px;
    line-height: 1.85;
    margin-top: 10px;
  }
}

/* 注釈を枠付きで目立たせたい場合（必要なら付ける） */
.note.is-box{
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 10px;
}
/* ============================
   RECOMMEND 全幅バー（大文字）
   ============================ */

/* =========================
   おすすめバー（完全版）
========================= */
.recommend-bar {
  position: relative;
  width: 100%;
  background-color: #123a8f; /* 濃紺 */
  color: #fff;
  text-align: center;

  /* フォント */
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 800;
  letter-spacing: 0.05em;

  padding: 20px 0 28px;
  box-sizing: border-box;

  /* 改行防止（これだけでOK） */
  white-space: nowrap;
}

/* 下部ライン */
.recommend-bar::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #5cc6f0;
}

/* 下向き矢印 */
.recommend-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #5cc6f0;
}

/* =========================
   タブレット以下
========================= */
@media (max-width: 768px) {
  .recommend-bar {
    font-size: clamp(18px, 6vw, 26px);
    padding: 18px 0 26px;
    letter-spacing: 0.2em;
    white-space: nowrap;
  }

  .recommend-bar::after {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
    bottom: -10px;
  }
}

/* =========================
   スマホ
========================= */
@media (max-width: 480px) {
  .recommend-bar {
    font-size: clamp(18px, 5vw, 22px);
    padding: 16px 8px 24px;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }

  .recommend-bar::after {
    border-left-width: 9px;
    border-right-width: 9px;
    border-top-width: 9px;
    bottom: -9px;
  }
}


/* ===== マガジンレイアウト ===== */
.magazine {
  padding: 24px 16px;
}

.magazine__inner {
  max-width: 920px;
  margin: 0 auto;
}

/* 左上の画像（PC・SPともに回り込み） */
.magazine__thumb {
  float: left;
  width: min(42vw, 320px);
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0 18px 12px 0;
  border-radius: 14px;
  object-fit: cover;
  background: #f3f6fb;
}

/* 見出し（濃紺） */
.magazine__title {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #123a8f; /* ← 濃紺 */
}

/* 本文 */
.magazine__body {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.85;
  color: #1f2937;
}

.magazine__body p {
  margin: 0 0 12px;
}

/* 回り込み解除（高さ崩れ防止） */
.magazine__inner::after {
  content: "";
  display: block;
  clear: both;
}

/* SP微調整：回り込みは維持しつつ画像だけ少し小さく */
@media (max-width: 640px) {
  .magazine__thumb {
    width: 44%;
    margin: 0 12px 10px 0;
    border-radius: 10px;
  }

  .magazine__title {
    font-size: 18px;
  }
}
