@charset "UTF-8";
/* ============================================================
    タイムライン基本スタイル（スマホ版：767px以下）
   ============================================================ */
* + p {
  margin-top: 0rem;
}

.st-timeline {
  width: 100%;
}

/* 紫背景のカード */
.st-timeline__card {
  background-color: #EBEBFF;
  padding: 16px;
  border-radius: 8px;
}

/* ヘッダー：スマホでは縦並び */
.st-timeline__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

/* 白背景のラベル */
.st-timeline__label {
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

/* 日付 */
.st-timeline__date {
  font-size: 16px;
  font-weight: 500; /* medium */
}

/* リスト部分 */
.st-timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-timeline__list li {
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em; /* 記号のスペース */
}

/* 擬似要素による「・」 */
.st-timeline__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 矢印：上下16px */
.st-timeline__arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.st-timeline__arrow img {
  width: 24px;
  height: auto;
}

.button-group {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  justify-content: center; /* 中央寄せ */
  gap: 40px 32px; /* 上下40px、左右20pxの余白 */
}

/* 各ボタンブロックの基本設定（PCで2並びにする） */
.button-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.st-table-wrapper {
  width: 100%;
  margin: 20px 0;
}

.st-info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #EEEEEE;
  line-height: 1.5;
}

.st-info-table th,
.st-info-table td {
  border-bottom: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  padding: 16px;
  vertical-align: middle;
  text-align: left;
}

/* 項目名（グレー背景） */
.st-info-table th {
  background-color: #F2F2F2;
  font-size: 14px;
  font-weight: bold;
  width: 35%; /* スマホ版での項目幅の確保 */
  height: auto; /* 高さは成り行き */
}

/* 内容（白背景） */
.st-info-table td {
  background-color: #FFFFFF;
  font-size: 16px;
}

.st-link-container {
  width: 100%;
  margin: 32px 0;
}

/* レイアウト：デフォルトはスマホ（縦並び） */
.st-link-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px; /* ボタン間の余白 */
}

/* --- ボタン共通（既存パーツの仕様を継承） --- */
.st-btn-action {
  display: inline-flex; /* 複数行対応のためflexに変更 */
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 64px; /* 2行になっても高さを維持 */
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  box-sizing: border-box;
}

.st-btn-action:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

/* --- カラーバリエーション --- */
/* 塗りつぶしボタン */
.st-btn-fill {
  background-color: #004875;
  color: #fff;
  border: 2px solid #004875;
}

/* 枠線ボタン */
.st-btn-outline {
  background-color: #fff;
  color: #004875;
  border: 2px solid #004875;
}

/* --- PC版（768px以上）のスタイル --- */
@media (min-width: 768px) {
  /* コンテナの余白調整が必要な場合 */
  .st-timeline {
    padding-left: 0;
    padding-right: 0;
  }
  /* ヘッダー：PCでは横並び */
  .st-timeline__header {
    flex-direction: row;
    align-items: center;
    gap: 16px; /* ラベルと日付の間の余白 */
  }
  /* 必要に応じてラベルの最低幅を確保 */
  .st-timeline__label {
    min-width: 120px;
  }
  .button-block {
    width: calc(50% - 32px); /* 2カラム（隙間の半分を引く） */
  }
  .st-table-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  /* PC版では項目名の幅を固定値にするなど調整 */
  .st-info-table th {
    width: 240px;
    font-size: 14px;
  }
  .st-info-table td {
    font-size: 16px;
  }
  .st-link-flex {
    flex-direction: row; /* 横並びに切り替え */
    justify-content: center;
    align-items: stretch;
    gap: 32px; /* PC版のボタン間の隙間 */
  }
}/*# sourceMappingURL=ttfh202602.css.map */