@charset "UTF-8";

/* 1. 冒頭にドットを追加し、余白を調整 */
.reservation-flow {
  display: flex;
  align-items: center; /* flex-startからcenterに変更して矢印を中央に */
  justify-content: space-between;
  margin: 40px 0 60px 0; /* 下の余白を60pxに広げました */
  font-family: sans-serif;
}

.flow-item {
  flex: 1;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  position: relative;
}

.flow-item.highlight {
  background: #fff4e6;
  border: 2px solid #e67e22;
}

.flow-num {
  background: #333;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 24px;
  font-weight: bold;
}

.flow-title {
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.flow-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: #666;
}

.flow-arrow {
  align-self: center;
  padding: 0 10px;
  color: #e67e22; /* 目立たせるために色をオレンジに変更 */
  font-size: 20px;
  font-weight: bold;
}

.download-accordion {
    border: 1px solid #ddd;
    border-radius: 5px;
	padding:15px;
    margin: 40px auto !important; /* 左右autoで中央寄せ */
    background: #fff;
    max-width: 900px; /* フォームの幅と合わせる */
    width: 95%;
    display: block; /* 確実にブロック要素として扱う */
}

/* スマホ用の設定 */
@media (max-width: 768px) {
  .reservation-flow {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .flow-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .flow-arrow {
    transform: rotate(90deg);
    margin-bottom: 10px;
    padding: 10px 0;
  }
}

/* --- 以降、フォームとフッターのデザイン --- */

.form-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;           /* 中の余白を広げて見やすく */
    margin-bottom: 50px !important; /* ★セクション間の外側の余白（重要） */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    clear: both;             /* 前の要素との重なりを防止 */
    display: block;
}
/* セクション内の項目（氏名、住所など）同士の縦の隙間 */
.field-group {
    margin-bottom: 25px;     /* 項目ごとの縦の余白 */
}
/* セクションタイトルの上の余白を調整 */
.section-title {
    font-size: 1.2rem;
    border-left: 5px solid #e67e22;
    padding-left: 15px;
    margin-bottom: 25px;     /* タイトルと入力欄の間の隙間 */
    color: #333;
    font-weight: bold;
}

/* 中略：他の既存スタイルもそのまま維持（ただし<style>タグは除外すること） */

.form-footer {
  max-width: 600px;
  margin: 40px auto;
}

/* ボタン自体の設定 */
.submit-btn {
    background: #e67e22;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block; /* 左右に余白を持たせるため */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: all 0.3s;
}

/* 入力欄の枠線をハッキリさせる */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #999 !important;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    display: block;
}

/* PCで横に並べるための設定（氏名や出発日など） */
.field-row {
  display: flex;
  gap: 20px;
}

.flex-1 {
  flex: 1;
}

/* ラジオボタンやチェックボックスの押しやすさ */
.radio-group label, .check-label {
  display: inline-block;
  cursor: pointer;
  padding: 5px 0;
  font-weight: normal;
  font-size: 0.9rem;
}

/* 補足情報の文字サイズ */
.sub-info, .sub-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
}

/* 注意事項のリスト形式 */
.caution-list {
  list-style: none;
  padding: 0;
}

.caution-list li {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}

.caution-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
/* 必須バッジのデザイン */
.badge-req {
    background: #e74c3c; /* 警告色の赤 */
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
}

/* 任意バッジのデザイン */
.badge-opt {
    background: #999; /* 控えめなグレー */
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
}

/* ラベル全体の見た目を整える */
.field-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
}
/* スマホ表示での横並び解除 */
@media (max-width: 768px) {
  .field-row {
    flex-direction: column;
    gap: 0;
  }.submit-area {
        padding: 0 20px; /* 画面端との余白 */
        box-sizing: border-box;
    }
    .submit-btn {
        width: 100%; /* スマホではボタンを横幅いっぱいにすると押しやすい */
        max-width: 400px; /* 広がりすぎないように制限 */
        font-size: 1rem;
        padding: 18px 10px; /* 高さを出してタップしやすく */
    }.reservation-flow {
    flex-direction: row; /* 縦ではなく横並びを維持 */
    justify-content: space-between;
    margin: 20px 0 30px 0; /* 上下の余白をギュッと縮める */
    gap: 5px;
  }
  .flow-item {
    padding: 8px 4px; /* 中の余白を最小限に */
    font-size: 0.75rem; /* 文字を小さく */
  }
  .flow-num {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  .flow-arrow {
    padding: 0;
    font-size: 12px;
    transform: none !important; /* 矢印を回転させない */
  }
  .flow-desc {
    display: none; /* スマホでは説明文を消してタイトルだけにするとスッキリします */
  }
}