/* ================================================
   はじめての方へ 共感ゾーン
================================================ */

.sec-firsttime-intro {
  background: #fffdf9;
  text-align: center;
  padding: 80px 0;
}

.firsttime-catch {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 48px;
}

/* タイプライター */
.typewriter-wrap {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #b8a898;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 48px;
  min-height: 2.4em;
}

.typewriter-cursor {
  display: inline-block;
  animation: blink 0.8s step-end infinite;
  color: #b8a898;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ================================================
   撮影の流れ（タイムライン）
================================================ */

.sec-flow {
  background: #fff;
}

.flow-timeline {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

/* 縦線 */
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #e8e0d8;
}

.flow-timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}

.flow-timeline-item:last-child {
  padding-bottom: 0;
}

/* 丸ポイント */
.flow-timeline-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fffdf9;
  border: 1px solid #c9a98a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-timeline-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: #c9a98a;
  letter-spacing: 0.05em;
}

.flow-timeline-body {
  padding-top: 6px;
}

.flow-timeline-title {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.flow-timeline-desc {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.9;
}

/* ================================================
   料金について（左右2カラム）
================================================ */

.sec-payment {
  background: #fffdf9;
}

.payment-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: left;
  border: 1px solid #ede8e0;
}

.payment-block {
  padding: 40px 40px;
}

.payment-block:first-child {
  border-right: 1px solid #ede8e0;
}

.payment-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #b8a898;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #555;
  letter-spacing: 0.05em;
}

.payment-method::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a98a;
  flex-shrink: 0;
}

.payment-text {
  font-size: 0.9rem;
  line-height: 2.2;
  color: #777;
  margin-bottom: 24px;
}

/* ================================================
   SP
================================================ */

@media (max-width: 767px) {
  .flow-timeline::before {
    left: calc(24px + 18px);
  }

  .payment-inner {
    grid-template-columns: 1fr;
  }

  .payment-block:first-child {
    border-right: none;
    border-bottom: 1px solid #ede8e0;
  }

  .payment-block {
    padding: 32px 24px;
  }
}
