/* デザイン方針：女性らしい優しさと安心感のあるナチュラルスタイル（2015年前後のWordPress風の佇まい） */
    body {
      font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
      background-color: #fcfbf9; /* 優しく温かみのある極薄のベージュホワイト */
      color: #4a423a; /* 硬い黒を避け、優しいダークブラウン寄りの墨色 */
      line-height: 1.95; /* 読みやすさを追求したゆったりめの行間 */
    }

    /* 上品な女性らしさを演出する明朝体（見出し用） */
    .font-serif-custom {
      font-family: 'Georgia', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
    }
    
    /* コンテンツの最大幅を1100pxに制限（2015年前後の安心感） */
    .container-custom {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    /* 2015年風の、丸みと安心感のある角丸ボタン */
    .btn-custom {
      border-radius: 6px;
      font-weight: bold;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease-in-out;
    }
    
    .btn-primary {
      background-color: #d97d5b; /* 落ち着いたアプリコットコーラル */
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(217, 125, 91, 0.15);
    }
    .btn-primary:hover {
      background-color: #c46847;
      transform: translateY(-1px);
    }
    
    .btn-secondary {
      background-color: #354458; /* 優しいココアネイビー */
      color: #ffffff;
    }
    .btn-secondary:hover {
      background-color: #273444;
      transform: translateY(-1px);
    }
    
    .btn-outline {
      border: 1.5px solid #cfab93; /* ミルクティーベージュの優しい輪郭 */
      color: #b18366;
      background-color: #ffffff;
    }
    .btn-outline:hover {
      background-color: #fcfbf9;
      border-color: #b18366;
    }
    
    /* セクション背景の自然なグラデーション配置 */
    .section-bg-white {
      background-color: #ffffff;
    }
    .section-bg-gray {
      background-color: #f5f4f0; /* 少し温かみのある極薄グレー */
    }
    .section-bg-cream {
      background-color: #f2ede4; /* サクラベージュ */
    }
    
    /* 上品なテーブルスタイル */
    .table-custom {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .table-custom th {
      background-color: #354458;
      color: #ffffff;
      padding: 14px 18px;
      font-weight: bold;
      text-align: left;
      border: 1px solid #e2ded8;
      font-size: 15px;
    }
    .table-custom td {
      padding: 16px 18px;
      border: 1px solid #e2ded8;
      background-color: #ffffff;
      font-size: 15px;
    }
    @media (max-width: 640px) {
      .table-custom th, .table-custom td {
        padding: 10px 12px;
        font-size: 14px;
      }
    }

    /* アコーディオンのシンプルな表示 */
    .faq-item {
      border: 1px solid #e2ded8;
      background-color: #ffffff;
      margin-bottom: 12px;
      border-radius: 6px;
    }
    
    /* 疑似SPAページ遷移用 */
    .page-content {
      display: none;
    }
    .page-content.active {
      display: block;
    }

    /* 見出し前の飾り（女性らしい、繊細で上品な◇マーク） */
    .heading-deco::before {
      content: "◇";
      color: #d97d5b;
      margin-right: 10px;
      font-weight: bold;
    }
    
    /* フォーム入力欄 */
    .input-custom {
      width: 100%;
      height: 48px;
      padding: 0 16px;
      border: 1.5px solid #dcdad4;
      border-radius: 6px;
      background-color: #ffffff;
      transition: border-color 0.2s ease;
    }
    .input-custom:focus {
      outline: none;
      border-color: #cfab93;
    }
    .textarea-custom {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #dcdad4;
      border-radius: 6px;
      background-color: #ffffff;
      transition: border-color 0.2s ease;
    }
    .textarea-custom:focus {
      outline: none;
      border-color: #cfab93;
    }

    /* パンくずリストスタイル */
    .breadcrumb-custom {
      font-size: 12px;
      color: #b18366;
      margin-bottom: 15px;
    }
    .breadcrumb-custom a {
      color: #b18366;
      text-decoration: none;
    }
    .breadcrumb-custom a:hover {
      text-decoration: underline;
    }
    .breadcrumb-custom span::after {
      content: " ＞ ";
      margin: 0 6px;
      color: #cfab93;
    }
    .breadcrumb-custom span:last-child::after {
      content: "";
    }

/* extracted from 05_floral-ご利用の流れ.html */
main.page-content, .page-content.flex-grow { display: block !important; }
#navbar, header { font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif; }

/* ご利用の流れ：縦線と番号丸を同一の X 座標で中央揃え */
.flow-timeline {
  position: relative;
  --flow-rail-x: 1rem;
  --flow-content-gap: 1.5rem;
  padding-left: calc(var(--flow-rail-x) + var(--flow-content-gap));
}

@media (min-width: 768px) {
  .flow-timeline {
    --flow-rail-x: 1.25rem;
    --flow-content-gap: 2rem;
  }
}

.flow-timeline::before {
  content: "";
  position: absolute;
  left: var(--flow-rail-x);
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background-color: #cfab93;
}

.flow-timeline__step {
  position: relative;
}

.flow-timeline__marker {
  position: absolute;
  left: calc(-1 * var(--flow-content-gap));
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  box-shadow: 0 0 0 4px #ffffff, 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.flow-timeline__marker--accent {
  background-color: #d97d5b;
}

.flow-timeline__marker--default {
  background-color: #354458;
}
