:root{
  --brand: #74c7cf;
  --brand2:#6fc6cf;
  --text: #111;
  --muted:#666;
  --bg:#fff;
  --card-radius: 24px;
  --tab-radius: 16px;
  --border: 3px solid var(--brand);
}

/* 画面全体の余白（スマホ配慮） */
/* ===== 共通 ===== */
.static-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 14px 48px;
  color: #111;
}

/* セクションごとにカスタムできるようにCSS変数を持たせる */
.static-section{
  /* デフォルトテーマ */
  --brand: #74c7cf;
  --border-w: 3px;
  --radius: 24px;
  --tab-radius: 16px;
  --bg: #fff;
  --muted: #666;

  position: relative;
  margin: 28px 0;
  padding-top: 18px; /* タブ分 */
}

/* タブ */
.static-tab{
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  padding: 14px 22px;
  border-radius: var(--tab-radius) var(--tab-radius) 0 0;
}

/* カード本体 */
.static-card{
  border: var(--border-w) solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  background: var(--bg);
  padding: 22px 22px 18px;
}

/* 本文 */
.static-card p,
.static-card li{
  font-size: 16px;
  line-height: 1.75;
  color: #111;
}
.static-card .muted{ color: var(--muted); }

/* 区切り */
.static-divider{
  height: 1px;
  background: color-mix(in srgb, var(--brand) 35%, transparent);
  margin: 16px 0;
}

/* 注意・警告ボックス（セクションテーマに追従） */
.static-note{
  border: 2px solid color-mix(in srgb, var(--brand) 65%, transparent);
  border-radius: 16px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}

/* ===== セクションテーマ（必要なだけ増やせる） ===== */

/* 利用ガイド：爽やか（デフォ） */
.section-guide{
  --brand: #74c7cf;
}

/* 注意事項：強めの警告色（でもサイトの雰囲気は崩さない） */
.section-caution{
  --brand: #f5a623;     /* オレンジ系 */
  --border-w: 3px;
}

/* 免責：落ち着いたグレー */
.section-legal{
  --brand: #808080;
}

/* よくある質問：少し濃い青 */
.section-faq{
  --brand: #1F80C4;
}

/* モバイル微調整 */
@media (max-width: 520px){
  .static-tab{ font-size: 20px; padding: 12px 18px; }
  .static-card{ padding: 18px 16px 14px; }
}

/* ===== caution.html 専用（static.css末尾に追記） ===== */
.caution-list{
  margin: 0;
  padding-left: 1.2em; /* 番号の余白 */
}

.caution-item{
  margin: 14px 0 18px;
}

.caution-h{
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 8px;
}

.caution-ul{
  margin: 0;
  padding-left: 1.1em;
}

.caution-ul li{
  margin: 6px 0;
}

.caution-refs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.caution-ref{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid color-mix(in srgb, var(--brand) 65%, transparent);
  color: color-mix(in srgb, var(--brand) 85%, #000);
  text-decoration: none;
  font-weight: 800;
}

.caution-ref:hover{
  opacity: 0.9;
}

.caution-x{
  margin-left: 6px;
  color: inherit;
  text-decoration: none;
}

/* ===== guide.php ===== */
.section-guide .static-card{
  padding: 20px 18px;
}

.guide-list{
  display: grid;
  gap: 14px;
}

.guide-item{
  border: 2px solid #74c7cf;
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: #fff;
}

.guide-h{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 900;
  color: #2b2b2b;
}

.guide-item p{
  margin: 0 0 8px 0;
  line-height: 1.7;
}

.guide-item p:last-child{
  margin-bottom: 0;
}

/* ===== chiramune ===== */
.section-chiramune .static-card{
  padding: 20px 18px;
}

.section-chiramune p{
  margin: 0 0 10px 0;
  line-height: 1.75;
}

.section-chiramune p:last-child{
  margin-bottom: 0;
}

.static-lead p{
  font-weight: 700;
}

/* 本のカード */
.book-card{
  margin-top: 8px;
}

.book-link{
  display: flex;
  gap: 14px;
  align-items: center;

  border: 2px solid #74c7cf;
  border-radius: 18px;
  padding: 12px 12px;

  text-decoration: none;
  background: #fff;
}

.book-thumb{
  width: 84px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.book-meta{
  display: grid;
  gap: 4px;
}

.book-title{
  font-weight: 900;
  color: #2b2b2b;
}

.book-sub{
  font-size: 13px;
  color: #666;
}

/* information.php 用の微調整 */
.caution-x {
  color: #1da1f2; /* Twitter Blue */
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
  text-decoration: none;
}

.caution-x:hover {
  opacity: 0.7;
}

.guide-h i {
  color: var(--brand);
  margin-right: 6px;
  width: 24px;
  text-align: center;
}

/* 移動手段選択の横並び設定 */
.transportation-selection {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding: 10px 0;
}

.transportation-lists {
    flex: 1;
}

.transportation-lists input[type="radio"] {
    display: none; /* 本物のボタンは隠す */
}

.transportation-lists label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.transportation-lists label i {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--muted);
}

.transportation-lists label span {
    font-size: 12px;
    font-weight: bold;
}

/* 選択された時の色（チラムネカラー） */
.transportation-lists input[type="radio"]:checked + label {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 4px 10px rgba(116, 199, 207, 0.2);
}

.transportation-lists input[type="radio"]:checked + label i {
    color: var(--brand);
}