/* ============================================================
   FIRST-VISIT.CSS — 初めての方へページ専用スタイル
   Pasir Putih HP
============================================================ */

/* === FLOW DETAIL（詳細ステップ） === */
.flow-detail {
  position: relative;
  padding-left: 0;
}

.flow-detail-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 36px;
  margin-bottom: 0;
  position: relative;
}

/* 縦ライン */
.flow-detail-step:not(:last-child) .flow-detail-line {
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--earth-light), transparent);
  opacity: 0.4;
}

.flow-detail-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.flow-detail-num {
  width: 80px;
  height: 80px;
  background: var(--earth);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.25s;
}

.flow-detail-num .step-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.8;
  margin-bottom: 2px;
}

.flow-detail-num .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.flow-detail-step:hover .flow-detail-num {
  background: var(--deep);
}

.flow-detail-right {
  padding: 0 0 56px 0;
}

.flow-detail-right h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-top: 20px;
}

.flow-detail-right .flow-time {
  font-size: 12px;
  color: var(--earth-light);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.flow-detail-right p {
  font-size: 14px;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 16px;
}

.flow-detail-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--sand-dark);
  margin-top: 20px;
  margin-bottom: 0;
}

.flow-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CHECKLIST === */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 20px 0;
}

.checklist li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--earth);
  font-size: 12px;
  font-weight: 500;
}

/* === FAQ BOX === */
.fv-faq {
  background: var(--sand);
  border-radius: 4px;
  padding: 40px 48px;
  margin-top: 16px;
}

.fv-faq h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.fv-faq-list {
  display: grid;
  gap: 20px;
}

.fv-faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.fv-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fv-faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fv-faq-q::before {
  content: 'Q.';
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--earth);
  flex-shrink: 0;
  line-height: 1.4;
}

.fv-faq-a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
  padding-left: 26px;
}

/* === NOTES CARDS === */
.fv-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fv-note-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.fv-note-card:hover {
  border-color: var(--earth-light);
}

/* キャンセルポリシー — 最重要 */
.fv-note-card--cancel {
  grid-column: 1 / -1;
  background: #fdf2f2;
  border: 2px solid #c0392b;
}

.fv-note-card--cancel:hover {
  border-color: #c0392b;
}

.fv-note-card--cancel .fv-note-icon {
  background: #c0392b;
  color: #fff;
}

.fv-note-card--cancel .fv-note-header h3 {
  color: #c0392b;
  font-weight: 600;
}

.fv-note-card--cancel .fv-note-list li {
  color: var(--deep);
  font-weight: 500;
}

.fv-note-card--caution {
  grid-column: 1 / -1;
  background: var(--sand);
  border-color: var(--earth-light);
}

.fv-note-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fv-note-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
  color: var(--earth);
}

.fv-note-card--caution .fv-note-icon {
  background: var(--earth);
  color: var(--white);
}

.fv-note-icon svg {
  width: 18px;
  height: 18px;
}

.fv-note-header h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.fv-note-list {
  list-style: none;
}

.fv-note-list li {
  font-size: 13px;
  color: var(--text);
  line-height: 2;
  padding-left: 18px;
  position: relative;
}

.fv-note-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--earth-light);
}

.fv-note-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.fv-note-lead {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.fv-note-warning {
  margin-top: 16px;
  font-size: 13px;
  color: var(--earth);
  font-weight: 400;
  line-height: 1.8;
}

.fv-disclaimer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
  padding-top: 8px;
}

/* === 持ち物ボックス（STEP内） === */
.flow-bring-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 16px;
}

.flow-bring-box h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.flow-bring-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-bring-box li {
  font-size: 13px;
  color: var(--text);
  line-height: 2;
  padding-left: 18px;
  position: relative;
}

.flow-bring-box li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--earth-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .flow-detail-step {
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
  }

  .flow-detail-num {
    width: 60px;
    height: 60px;
  }

  .flow-detail-num .step-num {
    font-size: 20px;
  }

  .flow-detail-step:not(:last-child) .flow-detail-line {
    left: 29px;
    top: 60px;
  }

  .flow-detail-right h3 {
    padding-top: 14px;
    font-size: 17px;
  }

  .fv-notes {
    grid-template-columns: 1fr;
  }

  .fv-note-card--caution {
    grid-column: auto;
  }

  .fv-note-list--two-col {
    grid-template-columns: 1fr;
  }

  .fv-disclaimer {
    grid-column: auto;
  }

  .fv-note-card {
    padding: 24px 20px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .fv-faq {
    padding: 28px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-reserve,
  .cta-btn-tel {
    width: 100%;
    justify-content: center;
  }
}
