@charset "UTF-8";

  /* =========================================
     Base Styles
  ========================================= */
  /* bodyタグの代わりにラッパーとなるクラスを指定 */
  .otonatabi-wrapper {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    /* 全体の基本フォントをゴシック体に設定 */
    font-family: "Hiragino Kaku Gothic W4 JIS2004", sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .lp-container {
    max-width: 920px;
    margin: 0 auto;
    background-color: #000;
    padding-bottom: 40px; /* コンテンツエリア下部の黒背景を確保 */
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  /* SEO用のh1タグ（画像ラッパー）のスタイルリセット */
  h1.main-title-image {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  /* ★追加：スマホ専用改行の初期設定（PCでは非表示） */
  .sp-br {
    display: none;
  }

  /* =========================================
     Hero Text Area (黒背景部分のテキスト)
  ========================================= */
  .hero-text-area {
    text-align: center;
    padding: 10px 15px 40px 15px;
  }
  .hero-text-area .line-wrap {
    margin-bottom: 15px;
  }
  .hero-text-area .line {
    font-family: "A1 Mincho B JIS2004 AP", serif;
    font-size: 36px;
    display: inline-block;
    border-bottom: 3px solid #d4af37; /* 画像に合わせた金色のライン */
    padding-bottom: 5px;
  }
  .hero-text-area .note {
    font-family: "A1 Mincho M JIS2004 AP", serif;
    font-size: 20px;
    margin-top: 20px;
  }

  /* =========================================
     Content Area (白背景部分)
  ========================================= */
  .content-area {
    background-color: #fff;
    color: #000;
    padding: 50px 60px;
    margin: 0 15px; /* 下のマージンを削除して lp-container の padding-bottom に変更 */
    box-sizing: border-box;
  }

  /* 見出し (★、■) */
  h3 {
    font-family: "Hiragino Kaku Gothic W7 JIS2004", sans-serif;
    font-size: 18px;
    margin: 0 0 15px 0;
    padding-top: 30px;
  }
  h3:first-child {
    padding-top: 0;
  }

  /* テキスト全般 */
  p, .dl-flex, .bullet-list li, .note-text {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
  }
  p {
    margin-bottom: 10px;
  }

  /* ★ インデント揃え1：項目名＋内容 (flexboxを使用) */
  .dl-flex {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
  }
  .dt {
    white-space: nowrap;
    font-family: "Hiragino Kaku Gothic W7 JIS2004", sans-serif;
  }
  .dd {
    flex: 1;
  }

  /* ★ インデント揃え2：箇条書きリスト (疑似要素を使用) */
  .bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  .bullet-list li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 5px;
  }
  .bullet-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }

  /* ★ インデント揃え3：注意書きなど (text-indentを使用) */
  .note-text {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 5px;
  }

  /* STEPの黒いバッジ */
  .step-badge {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 2px 15px;
    border-radius: 20px;
    font-family: "Hiragino Kaku Gothic W7 JIS2004", sans-serif;
    font-size: 14px;
    margin: 15px 0 10px;
  }

  /* リンクテキスト */
  .link-text {
    margin: 20px 0;
    font-family: "Hiragino Kaku Gothic W7 JIS2004", sans-serif;
    font-size: 14px;
  }
  .link-text a {
    color: blue; /* ★ ここを #000 から blue に変更しました */
    text-decoration: none;
  }
  .link-text a:hover {
    text-decoration: underline;
  }

  /* =========================================
     Responsive (スマホ用スタイル)
  ========================================= */
  @media (max-width: 767px) {
    .lp-container {
      padding-bottom: 30px; /* スマホ表示時の下部余白 */
    }
    
    /* ★追加：スマホ表示時のみ改行を有効化 */
    .sp-br {
      display: inline;
    }
    
    .hero-text-area .line {
      font-size: 20px;
    }
    .hero-text-area .note {
      font-size: 16px;
    }
    .content-area {
      padding: 30px 20px;
      margin: 0 10px; /* 下のマージンを削除 */
    }
    h3 {
      font-size: 16px;
      padding-top: 25px;
    }
    p, .dl-flex, .bullet-list li, .note-text, .link-text {
      font-size: 13px;
    }
    /* スマホでは項目名と内容を縦並びに（読みやすさ重視） */
    .dl-flex {
      flex-direction: column;
   /* margin-bottom: 12px; */
    }
    .dt {
      margin-bottom: 2px;
    }
  }