/* ==========================================================================
   Repeater Page Styles - やすらぎの里 リピーターの方へ
   Figma: PC_リピーターの方へ（修正260325）
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --color-text: #352304;
  --color-cream: #fffbf1;
  --color-accent: #d67c3d;
  --color-green: #4a9255;
  --color-wave: rgba(238, 229, 202, 0.4);
  --color-gold: #ebc165;
  --font-tsuku: "FOT-TsukuAntiqueLMin Std", "Shippori Mincho B1", serif;
  --font-mincho: "Shippori Mincho B1", serif;
  --font-gothic: "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-accent: "Italiana", serif;
}

/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-gothic);
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }


/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.rp-section-title {
  font-family: var(--font-tsuku);
  font-size: 64px; font-weight: 300;
  line-height: 94px; text-align: center;
  color: var(--color-text);
}
.rp-accent { color: var(--color-accent); }
.rp-btn-dark {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 310px; height: 73px;
  background: var(--color-text); color: #fff;
  text-decoration: none;
  font-family: var(--font-gothic); font-size: 18px; font-weight: 700;
  line-height: 36px; transition: opacity 0.2s;
}
.rp-btn-dark:hover { opacity: 0.8; }

/* ==========================================================================
   1. Hero
   ========================================================================== */
.rp-hero {
  position: relative; width: 100%; height: 720px;
  overflow: hidden; margin-top: clamp(60px, 5.56vw, 80px);
}
.rp-hero__bg { position: absolute; inset: 0; }
.rp-hero__bg-image { width: 100%; height: 100%; object-fit: cover; }
.rp-hero__gradient {
  position: absolute; top: 0; left: 0; width: 768px; height: 100%;
  background: linear-gradient(to left,
    rgba(255,255,255,0) 16.5%,
    rgba(176,167,157,0.8) 32.9%,
    rgba(100,81,63,1) 64.8%
  );
  opacity: 0.6;
}
.rp-hero__content {
  position: absolute; left: 157px; top: 280px; z-index: 2;
}
.rp-hero__title {
  font-family: var(--font-mincho); font-size: 64px; font-weight: 600;
  line-height: 70px; color: #fff8f1;
}
.rp-hero__subtitle {
  font-family: var(--font-accent); font-size: 18px; font-weight: 400;
  line-height: 1.2; letter-spacing: 0.9px; color: #fff;
  margin-top: 8px;
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

/* ==========================================================================
   2. おかえりなさい
   ========================================================================== */
.rp-welcome {
  background: var(--color-cream);
  padding: 113px 129px;
  position: relative;
  overflow: hidden;
}
.rp-welcome__wave {
  position: absolute;
  width: 49%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.rp-welcome__wave--top {
  top: 0;
  left: -21%;
}
.rp-welcome__wave--bottom {
  bottom: 0;
  right: -10%;
}
.rp-welcome__inner {
  position: relative; z-index: 1;
  max-width: 1181px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 100px;
}
.rp-welcome__heading {
  font-family: var(--font-tsuku); font-size: 64px; font-weight: 300;
  line-height: 94px; color: var(--color-text);
  text-align: left;
}
.rp-welcome__body {
  display: flex; align-items: center; gap: 38px;
  width: 100%;
}
.rp-welcome__text {
  font-family: var(--font-gothic); font-size: 24px; font-weight: 500;
  line-height: 44px; letter-spacing: -1.2px;
  color: var(--color-text);
  flex: 1 1 60%;
  min-width: 0;
}
.rp-welcome__photo {
  flex: 0 1 427px;
  min-width: 200px;
}
.rp-welcome__photo-img {
  width: 100%; aspect-ratio: 427 / 296; object-fit: cover;
}

/* ==========================================================================
   3. 空き室表示について
   ========================================================================== */
.rp-availability {
  background-color: #FFFBF1;
  background-image: url("../images/repeater/availability-bg-texture.webp");
  background-repeat: repeat;
  background-size: auto;
  padding: 100px 130px;
  position: relative;
}
.rp-availability__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 50px;
}
.rp-availability__note {
  font-family: var(--font-mincho); font-size: 24px; font-weight: 600;
  line-height: 54px; text-align: center; color: var(--color-text);
}
.rp-availability__detail-link {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; text-decoration: none; color: var(--color-text);
  font-family: var(--font-gothic); font-size: 20px; font-weight: 400;
  line-height: 36px; border: none; border-bottom: 1px solid var(--color-text);
  background: none; cursor: pointer;
}
.rp-availability__toggle-arrow {
  transition: transform 0.3s ease;
}
.rp-availability__detail-link.is-open .rp-availability__toggle-arrow {
  transform: rotate(180deg);
}
.rp-availability__detail-content {
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
  width: 100%;
}
.rp-availability__detail-content.is-open {
  opacity: 1;
}
.rp-availability__detail-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}
.rp-availability__screenshot-container {
  position: relative;
  width: 100%;
}
.rp-availability__screenshot-wrap {
  background: #fff;
  padding: 20px;
}
.rp-availability__screenshot-img {
  width: 100%;
  height: auto;
}
.rp-availability__badge {
  position: absolute;
  left: 33%;
  top: 17%;
  width: 15%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4.5px 4.5px rgba(0, 0, 0, 0.25));
}
.rp-availability__divider {
  display: flex;
  justify-content: center;
}
.rp-availability__explain-text {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
  color: var(--color-text);
}
.rp-availability__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.rp-availability__formula-label {
  font-family: var(--font-mincho);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  padding-bottom: 8px;
}
.rp-availability__formula-label--price { border-bottom: 3px solid #c65d45; }
.rp-availability__formula-label--nights { border-bottom: 3px solid #4a9255; }
.rp-availability__formula-label--total { border-bottom: 3px solid #ebc165; }
.rp-availability__formula-op {
  font-family: var(--font-mincho);
  font-size: 54px;
  font-weight: 600;
  color: var(--color-text);
}
.rp-availability__result-text {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
  color: var(--color-text);
}
.rp-availability__sp-content {
  display: none;
}

/* ==========================================================================
   4. いつものように、選べます
   ========================================================================== */
.rp-select {
  background: var(--color-cream);
  padding: 100px 130px 150px;
  position: relative;
  overflow: hidden;
}
.rp-select__wave {
  position: absolute;
  top: 83px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.rp-select__wave--sp {
  display: none;
}
.rp-select__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.rp-select__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; margin-bottom: 100px;
}
.rp-select__subtitle {
  font-family: var(--font-mincho); font-size: 42px; font-weight: 600;
  line-height: 62px; text-align: center; color: var(--color-text);
}
.rp-select__desc {
  font-family: var(--font-gothic); font-size: 24px; font-weight: 500;
  line-height: 44px; letter-spacing: -1.2px;
  text-align: center; color: var(--color-text);
}
.rp-select__cards {
  display: flex; gap: 60px; justify-content: center;
}

/* Plan Card */
.rp-plan-card {
  width: 350px; display: flex; flex-direction: column; gap: 15px;
}
.rp-plan-card__header {
  display: flex; justify-content: center; gap: 17px;
  font-family: var(--font-mincho); font-size: 36px; font-weight: 600;
  line-height: 52px; color: var(--color-text);
}
.rp-plan-card__body {
  display: flex; flex-direction: column; gap: 20px;
}
.rp-plan-card__image {
  width: 350px; height: 350px; overflow: hidden;
}
.rp-plan-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.rp-plan-card__info {
  display: flex; flex-direction: column; gap: 0;
}
.rp-plan-card__tags {
  display: flex; align-items: center; gap: 20px;
}
.rp-plan-card__tag {
  display: inline-flex; align-items: center;
  padding: 0 10px;
  background: rgba(236, 203, 180, 0.7);
  font-family: var(--font-gothic); font-size: 20px; font-weight: 500;
  line-height: 30px; color: var(--color-text);
}
.rp-plan-card__duration {
  font-family: "Roboto", sans-serif; font-size: 22px; font-weight: 400;
  letter-spacing: 2.2px; line-height: 36px; color: var(--color-text);
}
.rp-plan-card__subtitle {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  border-bottom: 1px solid var(--color-text);
  font-family: var(--font-mincho); font-size: 28px; font-weight: 600;
  line-height: 54px; color: var(--color-text);
}
.rp-plan-card__description {
  font-family: var(--font-gothic); font-size: 20px; font-weight: 400;
  line-height: 36px; color: var(--color-text); text-align: center;
}
.rp-plan-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  width: 350px;
  padding: 10px 20px 10px 64px;
  background: #fff; border: 1px solid var(--color-text);
  text-decoration: none; color: var(--color-text);
  font-family: var(--font-gothic); font-size: 18px; font-weight: 700;
  line-height: 36px; transition: opacity 0.2s;
}
.rp-plan-card__cta:hover { opacity: 0.7; }
.rp-plan-card__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-text);
}

/* ==========================================================================
   5. お久しぶりの方へ
   ========================================================================== */
.rp-longabsent {
  background: var(--color-cream);
  padding: 100px 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 50px;
}
.rp-longabsent__hero {
  width: 100%; height: 600px; overflow: hidden;
}
.rp-longabsent__hero-img {
  width: 100%; height: 100%; object-fit: cover;
}
.rp-longabsent__text {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.rp-longabsent__text p {
  font-family: var(--font-mincho); font-size: 28px; font-weight: 600;
  line-height: 54px; text-align: center; color: var(--color-text);
}

/* Timeline */
.rp-timeline {
  max-width: 1181px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; padding: 0 130px;
}
.rp-timeline__intro {
  font-family: var(--font-mincho); font-size: 24px; font-weight: 600;
  line-height: 54px; text-align: center; color: var(--color-text);
}
.rp-timeline__graphic {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 948px;
}
.rp-timeline__track {
  position: relative; width: 100%; height: 40px;
}
.rp-timeline__bar {
  position: absolute; top: 50%; left: 24px; right: 36px; height: 4px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #9cb87b 0%, #6caf4f 25.5%, #498e3b 50%, #1b821c 75%, #006827 100%);
}
.rp-timeline__dot {
  position: absolute; top: 50%; transform: translateY(-50%);
  border-radius: 50%;
}
.rp-timeline__dot--start { left: 0; width: 40px; height: 40px; background: #95bc7b; margin-left: -20px; }
.rp-timeline__dot--2 { left: 25%; width: 32px; height: 32px; background: #6cad4f; margin-left: -16px; }
.rp-timeline__dot--3 { left: 50%; width: 32px; height: 32px; background: #488e36; margin-left: -16px; }
.rp-timeline__dot--4 { left: 75%; width: 32px; height: 32px; background: #1a831a; margin-left: -16px; }
.rp-timeline__dot--end { left: 100%; width: 40px; height: 40px; background: #005621; margin-left: -20px; z-index: 3; }
.rp-timeline__gold-circles {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 72px; height: 72px; z-index: 1;
}
.rp-timeline__gold--outer {
  position: absolute; top: 0; left: 0; width: 72px; height: 72px;
  border-radius: 50%; background: rgba(213, 179, 0, 0.3);
}
.rp-timeline__gold--inner {
  position: absolute; top: 8px; left: 8px; width: 56px; height: 56px;
  border-radius: 50%; background: rgba(213, 179, 0, 0.3);
}
.rp-timeline__arrow {
  position: absolute; right: 9px; top: -38px;
}
.rp-timeline__graphic--sp {
  display: none;
}
.rp-timeline__labels {
  display: flex; justify-content: space-between; width: 100%;
  padding: 0 0 0 0; margin-top: 4px;
}
.rp-timeline__label {
  font-family: var(--font-mincho); font-size: 24px; font-weight: 700;
  line-height: 54px; white-space: nowrap; text-align: center;
}
.rp-timeline__label--start { color: #95bc7b; width: 48px; }
.rp-timeline__label--end { color: #005621; width: 72px; }

.rp-timeline__flow {
  font-family: var(--font-tsuku); font-size: 64px; font-weight: 300;
  line-height: 94px; text-align: center; color: var(--color-text);
  padding: 0 20px; border-bottom: 2px solid var(--color-gold);
}
.rp-timeline__tagline {
  font-family: var(--font-mincho); font-size: 24px; font-weight: 600;
  line-height: 54px; text-align: center; color: var(--color-text);
}

/* ==========================================================================
   6. 迷ったときの目安
   ========================================================================== */
.rp-guide {
  background: var(--color-cream);
  padding: 150px 130px;
  position: relative;
  overflow: hidden;
}
.rp-guide__wave {
  position: absolute;
  top: 122px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.rp-guide__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 100px;
  position: relative; z-index: 1;
}
.rp-guide__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
}
.rp-guide__subtitle {
  font-family: var(--font-mincho); font-size: 42px; font-weight: 600;
  line-height: 62px; text-align: center; color: var(--color-text);
}
.rp-guide__cards {
  display: flex; gap: 50px; justify-content: center;
}
.rp-guide-card {
  width: 350px; display: flex; flex-direction: column; gap: 20px;
}
.rp-guide-card__image {
  width: 350px; height: 350px; overflow: hidden;
}
.rp-guide-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.rp-guide-card__caption {
  font-family: var(--font-gothic); font-size: 24px; font-weight: 500;
  line-height: 44px; letter-spacing: -1.2px;
  text-align: center; color: var(--color-text);
}

/* ==========================================================================
   7. FAQ
   ========================================================================== */
.rp-faq {
  background: #fff;
}
.rp-faq__inner {
  padding: 120px 220px;
  display: flex; flex-direction: column; align-items: center;
  gap: 70px;
}
.rp-faq__title {
  font-family: var(--font-mincho); font-size: 42px; font-weight: 600;
  line-height: 62px; text-align: center; color: var(--color-text);
}
.rp-faq__list {
  width: 100%; max-width: 1000px;
  display: flex; flex-direction: column; gap: 10px;
}
.rp-faq-item__q,
.rp-faq-item__a {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 60px;
}
.rp-faq-item__q { background: #f6f3e9; }
.rp-faq-item__a { background: #fff; min-height: 100px; }
.rp-faq-item__label {
  font-family: var(--font-mincho); font-size: 42px; font-weight: 600;
  flex-shrink: 0;
}
.rp-faq-item__label--q { color: rgba(74, 146, 85, 0.6); }
.rp-faq-item__label--a { color: rgba(214, 124, 61, 0.8); }
.rp-faq-item__text {
  font-family: var(--font-mincho); font-size: 22px; font-weight: 500;
  line-height: 54px; letter-spacing: 0.44px; color: var(--color-text);
}

/* Closing Banner */
.rp-closing {
  padding: 0 130px 120px;
}
.rp-closing__inner {
  max-width: 1180px; margin: 0 auto;
}
.rp-closing__image {
  position: relative; width: 100%; height: 438px;
  overflow: hidden;
}
.rp-closing__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.rp-closing__img--sp {
  display: none;
}
.rp-closing__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.08) 0%, transparent 35%);
  mix-blend-mode: multiply;
}
.rp-closing__text {
  position: absolute; top: 62px; left: 62px;
  z-index: 2;
  max-width: 504px;
}
.rp-closing__quote {
  font-family: var(--font-mincho); font-size: 36px; font-weight: 600;
  line-height: 52px; color: #fff; margin-bottom: 20px;
}
.rp-closing__copy {
  font-family: var(--font-gothic); font-size: 20px; font-weight: 200;
  line-height: 36px; color: #fff;
  max-width: 360px;
}

/* ==========================================================================
   8. 予約ボタン
   ========================================================================== */
.rp-reserve {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; padding: 150px 130px;
  max-width: 1440px; margin: 0 auto;
}
.rp-reserve__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex: 1; max-width: 587px; height: 114px;
  text-decoration: none; color: #fff;
  font-family: var(--font-mincho); font-size: 28px; font-weight: 600;
  line-height: 54px; transition: opacity 0.2s;
}
.rp-reserve__btn:hover { opacity: 0.85; }
.rp-reserve__btn--orange { background: var(--color-accent); }
.rp-reserve__btn--green { background: var(--color-green); }

/* SP-only line break: hidden on PC */
.sp-br { display: none; }
.rp-hero__bg-image--sp { display: none; }

/* ==========================================================================
   SP Responsive (max-width: 768px)
   Figma: SP_リピーターの方へ 390x9587
   ========================================================================== */
@media (max-width: 768px) {
  .sp-br { display: block; }
  .rp-hero__bg-image--pc { display: none; }
  .rp-hero__bg-image--sp { display: block; }

  /* ---------- 1. Hero ---------- */
  .rp-hero {
    height: 570px;
  }
  .rp-hero__gradient {
    width: 256px;
    background: linear-gradient(to left,
      rgba(255,255,255,0) 16.5%,
      rgba(176,167,157,0.8) 32.9%,
      rgba(100,81,63,1) 64.8%
    );
    opacity: 0.5;
  }
  .rp-hero__content {
    left: 41px;
    top: auto;
    bottom: 20px;
  }
  .rp-hero__title {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 5px;
  }
  .rp-hero__subtitle {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  /* ---------- 2. おかえりなさい ---------- */
  .rp-welcome {
    padding: 80px 30px;
  }
  .rp-welcome__wave {
    width: 76.7%;
  }
  .rp-welcome__wave--top {
    left: -28.7%;
  }
  .rp-welcome__wave--bottom {
    right: -33%;
  }
  .rp-welcome__inner {
    gap: 30px;
  }
  .rp-welcome__heading {
    font-size: 36px;
    line-height: 55px;
    letter-spacing: 0;
  }
  .rp-welcome__body {
    flex-direction: column;
    gap: 30px;
  }
  .rp-welcome__text {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0;
  }
  .rp-welcome__photo {
    flex: none;
    width: 100%;
  }
  .rp-welcome__photo-img {
    aspect-ratio: 310 / 207;
  }

  /* ---------- 3. 空き室表示について ---------- */
  .rp-availability {
    padding: 50px 17px;
  }
  .rp-availability__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100%;
  }
  .rp-availability__inner > * {
    width: 100%;
    text-align: center;
  }
  .rp-section-title {
    font-size: 36px;
    line-height: 55px;
  }
  .rp-availability .rp-section-title {
    font-size: 34px;
  }
  .rp-availability__note {
    font-size: 18px;
    line-height: 36px;
    text-align: center;
  }
  .rp-availability__pc-only {
    display: none;
  }
  .rp-availability__detail-link.rp-availability__pc-only {
    display: inline-flex;
    width: auto;
  }
  .rp-btn-dark.rp-availability__pc-only {
    display: inline-flex;
    width: 310px;
  }
  .rp-availability__detail-link.is-open .rp-availability__toggle-arrow {
    transform: rotate(180deg);
  }
  .rp-availability__sp-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  .rp-availability__sp-content.is-open {
    display: flex;
    opacity: 1;
  }
  .rp-availability__calendar-wrap {
    background: #fff;
    padding: 7px;
    width: 297px;
  }
  .rp-availability__calendar-img {
    width: 100%;
    height: auto;
  }
  .rp-availability__explain {
    font-family: var(--font-mincho);
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: var(--color-text);
  }
  .rp-availability__formula-img {
    width: 356px;
    height: auto;
  }
  .rp-availability__result {
    font-family: var(--font-mincho);
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: var(--color-text);
  }
  .rp-btn-dark {
    width: 310px;
    height: 73px;
    font-size: 18px;
    letter-spacing: -0.9px;
  }

  /* ---------- 4. いつものように、選べます ---------- */
  .rp-select {
    padding: 50px 0;
  }
  .rp-select__wave--pc {
    display: none;
  }
  .rp-select__wave--sp {
    display: block;
    top: 69px;
  }
  .rp-select__header {
    margin-bottom: 50px;
    padding: 0 40px;
    gap: 10px;
  }
  .rp-select__subtitle {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.72px;
  }
  .rp-select__desc {
    font-size: 18px;
    line-height: 36px;
  }
  .rp-select__cards {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 0 39px;
  }
  .rp-plan-card {
    width: 312px;
  }
  .rp-plan-card__header {
    font-size: 32px;
    line-height: 52px;
  }
  .rp-plan-card__image {
    width: 312px;
    height: 312px;
  }
  .rp-plan-card__cta {
    width: 312px;
  }

  /* ---------- 5. お久しぶりの方へ ---------- */
  .rp-longabsent {
    padding: 50px 0;
    gap: 50px;
  }
  .rp-longabsent__hero {
    height: 217px;
  }
  .rp-longabsent__text {
    padding: 0 17px;
  }
  .rp-longabsent__text p {
    font-size: 16px;
    line-height: 32px;
  }

  /* Timeline */
  .rp-timeline {
    padding: 0 0;
    gap: 30px;
  }
  .rp-timeline__intro {
    font-size: 18px;
    line-height: 36px;
    width: 252px;
  }
  .rp-timeline__graphic--pc {
    display: none;
  }
  .rp-timeline__graphic--sp {
    display: flex;
    justify-content: center;
  }
  .rp-timeline__graphic-img {
    width: 72px;
    height: auto;
  }
  .rp-timeline__flow {
    font-size: 27px;
    line-height: 94px;
    padding: 0 10px;
  }
  .rp-timeline__tagline {
    font-size: 18px;
    line-height: 36px;
  }

  /* ---------- 6. 迷ったときの目安 ---------- */
  .rp-guide {
    padding: 50px 20px;
  }
  .rp-guide__inner {
    gap: 50px;
  }
  .rp-guide__subtitle {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.72px;
  }
  .rp-guide__cards {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .rp-guide-card {
    width: 310px;
    gap: 10px;
  }
  .rp-guide-card__image {
    width: 310px;
    height: 310px;
  }
  .rp-guide-card__caption {
    font-size: 20px;
    line-height: 36px;
  }

  /* ---------- 7. FAQ ---------- */
  .rp-faq__inner {
    padding: 50px 10px;
    gap: 38px;
  }
  .rp-faq__title {
    font-size: 30px;
    line-height: 50px;
  }
  .rp-faq-item__q,
  .rp-faq-item__a {
    padding: 10px 8px;
    gap: 8px;
  }
  .rp-faq-item__label {
    font-size: 28px;
  }
  .rp-faq-item__text {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
  }

  /* Closing Banner */
  .rp-closing {
    padding: 0 40px 50px;
  }
  .rp-closing__image {
    height: 180px;
  }
  .rp-closing__img--pc {
    display: none;
  }
  .rp-closing__img--sp {
    display: block;
  }
  .rp-closing__text {
    top: 16px;
    left: 21px;
    max-width: 222px;
  }
  .rp-closing__quote {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.54px;
    white-space: nowrap;
    margin-bottom: 10px;
  }
  .rp-closing__copy {
    font-size: 12px;
    line-height: 22px;
    max-width: 216px;
  }

  /* ---------- 8. 予約ボタン ---------- */
  .rp-reserve {
    flex-direction: column;
    gap: 3px;
    padding: 50px 40px;
  }
  .rp-reserve__btn {
    flex: none;
    width: 310px;
    height: 85px;
    font-size: 20px;
    line-height: 48px;
    white-space: nowrap;
  }
}

