/* ==============================================
   campaigns/49.html - Instagram LP
   ============================================== */

/* --- Main Visual --- */
.lp-mv {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.lp-mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 28, 0.65) 0%, rgba(10, 12, 28, 0.15) 60%, transparent 100%);
  pointer-events: none;
}

.lp-mv__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 60px 50px;
}

.lp-mv__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #c99f37;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lp-mv__catch {
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0;
}

/* --- Rain Badge (under title) --- */
.lp-title__rain-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eef6fc;
  border: 2px solid #4b93d1;
  border-radius: 50px;
  padding: 12px 24px;
  margin-top: 24px;
}

.lp-title__rain-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #4b93d1;
  line-height: 1;
}

.lp-title__rain-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #1c1e33;
  letter-spacing: 0.02em;
  text-align: left;
}

.lp-title__rain-text strong {
  color: #4b93d1;
  font-weight: 700;
}

/* --- Title Section --- */
.lp-title {
  background: #fff;
  padding: 48px 20px 40px;
  text-align: center;
}

.lp-title__inner {
  max-width: 800px;
  margin: 0 auto;
}

.lp-title__sub {
  font-size: 0.9rem;
  color: #c99f37;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.lp-title__main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  color: #1c1e33;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .lp-mv {
    height: 280px;
  }

  .lp-mv__inner {
    padding: 0 20px 30px;
  }

  .lp-mv__catch {
    font-size: 1.1rem;
  }

  .lp-title {
    padding: 32px 16px 28px;
  }

  .lp-title__sub {
    font-size: 0.8rem;
  }

  .lp-title__main {
    font-size: 1.15rem;
  }

  .lp-title__rain-badge {
    padding: 10px 16px;
    margin-top: 20px;
    gap: 8px;
  }

  .lp-title__rain-icon {
    font-size: 1.2rem;
  }

  .lp-title__rain-text {
    font-size: 0.72rem;
  }
}

/* --- Hero Plans Section --- */
.lp-hero {
  padding: 48px 16px 56px;
  background: linear-gradient(180deg, #fef7ec 0%, #fff 100%);
}

.lp-hero__heading {
  text-align: center;
  margin-bottom: 40px;
}

.lp-hero__heading .en {
  display: block;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-hero__heading .ja {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1c1e33;
  line-height: 1.5;
}

.lp-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

/* --- Plan Card (extra-large) --- */
.lp-plan {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* Ranking badge */
.lp-plan__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.lp-plan__badge .badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.lp-plan__badge .badge-rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1;
}

.lp-plan--no1 .lp-plan__badge {
  background: linear-gradient(135deg, #d4a017 0%, #f0c940 50%, #c99f37 100%);
}

.lp-plan--no2 .lp-plan__badge {
  background: linear-gradient(135deg, #8a8a8a 0%, #c0c0c0 50%, #a0a0a0 100%);
}

/* Image */
.lp-plan__img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.lp-plan__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-plan__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
  pointer-events: none;
}

/* Body */
.lp-plan__body {
  padding: 24px 20px 28px;
}

.lp-plan__campaign-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #cb223e;
  background: #fef0f3;
  border: 1px solid #f5c6d0;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.lp-plan__name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1c1e33;
  margin-bottom: 16px;
}

/* Price area */
.lp-plan__price-area {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.lp-plan__price {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #cb223e;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-plan__price .yen {
  font-size: 1.4rem;
}

.lp-plan__price-tax {
  font-size: 0.75rem;
  color: #888;
}

.lp-plan__note {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 4px;
}

.lp-plan__term {
  font-size: 0.78rem;
  color: #c99f37;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

/* CTA button */
.lp-plan__cta {
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #c99f37 0%, #dbb84a 100%);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201, 159, 55, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.lp-plan__cta:link,
.lp-plan__cta:visited {
  color: #fff;
}

.lp-plan__cta:hover {
  background: linear-gradient(135deg, #b78d2c 0%, #c9a83e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 159, 55, 0.45);
}

/* --- Plan Card Rain Guarantee --- */
.lp-plan__rain {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eef6fc;
  border: 1px solid #b8d8f0;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 20px;
}

.lp-plan__rain-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #4b93d1;
  line-height: 1;
}

.lp-plan__rain span {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #333;
}

.lp-plan__rain strong {
  color: #4b93d1;
  font-weight: 700;
}

/* --- Timeline Section --- */
.lp-timeline {
  padding: 56px 16px 48px;
  background: #fff;
}

.lp-timeline__inner {
  max-width: 800px;
  margin: 0 auto;
}

.lp-timeline__heading {
  text-align: center;
  margin-bottom: 40px;
}

.lp-timeline__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-timeline__heading-ja {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1c1e33;
  margin-bottom: 12px;
}

.lp-timeline__heading-ja strong {
  color: #cb223e;
  font-size: 1.6rem;
}

.lp-timeline__heading-sub {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

/* Track (mobile: vertical) */
.lp-timeline__track {
  position: relative;
  padding-left: 90px;
}

.lp-timeline__track::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 72px;
  width: 3px;
  background: linear-gradient(to bottom, #c99f37 0%, #4b93d1 80%, #56c596 100%);
  border-radius: 2px;
}

/* Step */
.lp-timeline__step {
  position: relative;
  padding-bottom: 32px;
}

.lp-timeline__step:last-child {
  padding-bottom: 0;
}

.lp-timeline__time {
  position: absolute;
  left: -90px;
  top: 2px;
  width: 54px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c99f37;
  text-align: right;
  line-height: 1;
}

.lp-timeline__dot {
  position: absolute;
  left: -25px;
  top: 1px;
  width: 14px;
  height: 14px;
  background: #c99f37;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #c99f37;
}

.lp-timeline__step--free .lp-timeline__dot {
  background: #56c596;
  box-shadow: 0 0 0 2px #56c596;
}

.lp-timeline__step--free .lp-timeline__time {
  color: #56c596;
  font-size: 0.8rem;
  top: 4px;
}

/* Card */
.lp-timeline__card {
  background: #fef7ec;
  border-radius: 12px;
  padding: 16px 16px 14px;
}

.lp-timeline__card--free {
  background: linear-gradient(135deg, #e8f8f0 0%, #d4f1e4 100%);
  border: 2px dashed #56c596;
}

.lp-timeline__icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
  line-height: 1;
}

.lp-timeline__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1e33;
  margin-bottom: 4px;
}

.lp-timeline__card--free .lp-timeline__card-title {
  color: #2a8c5e;
}

.lp-timeline__card-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

/* Bottom point */
.lp-timeline__point {
  margin-top: 36px;
  text-align: center;
  background: linear-gradient(135deg, #fef7ec 0%, #fff5e0 100%);
  border: 2px solid #c99f37;
  border-radius: 12px;
  padding: 20px 16px;
}

.lp-timeline__point p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #1c1e33;
}

.lp-timeline__point strong {
  color: #cb223e;
  font-weight: 700;
}

/* --- Included Section --- */
.lp-included {
  padding: 56px 16px 48px;
  background: #fff;
}

.lp-included__inner {
  max-width: 720px;
  margin: 0 auto;
}

.lp-included__heading {
  text-align: center;
  margin-bottom: 32px;
}

.lp-included__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-included__heading-ja {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1c1e33;
  margin-bottom: 8px;
}

.lp-included__heading-ja strong {
  color: #cb223e;
}

.lp-included__heading-sub {
  font-size: 0.82rem;
  color: #888;
}

.lp-included__grid {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-included__item {
  background: #fef7ec;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp-included__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.lp-included__name {
  font-size: 0.75rem;
  color: #1c1e33;
  line-height: 1.5;
}

.lp-included__name strong {
  font-size: 0.85rem;
}

.lp-included__note {
  text-align: center;
  font-size: 0.72rem;
  color: #999;
}

/* --- Recommend Section --- */
.lp-recommend {
  padding: 56px 16px 48px;
  background: #fef7ec;
}

.lp-recommend__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-recommend__heading {
  text-align: center;
  margin-bottom: 36px;
}

.lp-recommend__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-recommend__heading-ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1e33;
}

.lp-recommend__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-recommend__item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
}

.lp-recommend__item-img {
  flex-shrink: 0;
  width: 120px;
}

.lp-recommend__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-recommend__item-body {
  padding: 16px;
  position: relative;
  flex: 1;
  min-width: 0;
}

.lp-recommend__item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c99f37;
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 14px;
}

.lp-recommend__item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c1e33;
  line-height: 1.6;
  margin-bottom: 8px;
}

.lp-recommend__item-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.7;
}

/* --- Renewal Section --- */
.lp-renewal {
  padding: 56px 16px 48px;
  background: #fff;
}

.lp-renewal__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-renewal__heading {
  text-align: center;
  margin-bottom: 40px;
}

.lp-renewal__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-renewal__heading-ja {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1c1e33;
  margin-bottom: 14px;
}

.lp-renewal__heading-sub {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}

/* Cards */
.lp-renewal__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.lp-renewal__card {
  border-radius: 14px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lp-renewal__card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-renewal__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-renewal__card-body {
  padding: 20px 18px 22px;
}

.lp-renewal__card-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c99f37;
  border: 1px solid #c99f37;
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.lp-renewal__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c1e33;
  line-height: 1.6;
  margin-bottom: 10px;
}

.lp-renewal__card-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.75;
}

/* --- Chapel Detail --- */
.lp-chapel {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lp-chapel__visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-chapel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-chapel__body {
  padding: 24px 20px 28px;
}

.lp-chapel__label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c99f37;
  border: 1px solid #c99f37;
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.lp-chapel__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1c1e33;
  margin-bottom: 12px;
}

.lp-chapel__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lp-chapel__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-chapel__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lp-chapel__feat-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.lp-chapel__features li strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c1e33;
  margin-bottom: 2px;
}

.lp-chapel__features li span {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
}

.lp-chapel__link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c99f37;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1px solid #c99f37;
  transition: color 0.3s, border-color 0.3s;
}

.lp-chapel__link:hover {
  color: #b78d2c;
  border-color: #b78d2c;
}

/* Marriott badge */
.lp-renewal__marriott {
  background: linear-gradient(135deg, #1c1e33 0%, #2e3148 100%);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.lp-renewal__marriott-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp-renewal__marriott-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #c99f37;
  margin-bottom: 10px;
}

.lp-renewal__marriott-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-renewal__marriott-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* --- Access --- */
.lp-access {
  margin-top: 32px;
}

.lp-access__heading {
  text-align: center;
  margin-bottom: 20px;
}

.lp-access__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 4px;
}

.lp-access__heading-ja {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c1e33;
}

.lp-access__map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.lp-access__map iframe {
  display: block;
  width: 100%;
  height: 280px;
}

.lp-access__info {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 18px;
}

.lp-access__dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 12px;
  font-size: 0.82rem;
  line-height: 1.7;
}

.lp-access__dl dt {
  font-weight: 700;
  color: #c99f37;
}

.lp-access__dl dd {
  color: #444;
}

.lp-access__dl dd a {
  color: #444;
  text-decoration: underline;
}

/* --- Gallery Section --- */
.lp-gallery {
  padding: 56px 16px 48px;
  background: #fef7ec;
}

.lp-gallery__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-gallery__heading {
  text-align: center;
  margin-bottom: 32px;
}

.lp-gallery__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-gallery__heading-ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1e33;
}

.lp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.lp-gallery__item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.lp-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.lp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lp-gallery__item:hover img {
  transform: scale(1.05);
}

/* --- FAQ Section --- */
.lp-faq {
  padding: 56px 16px 48px;
  background: #fff;
}

.lp-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq__heading {
  text-align: center;
  margin-bottom: 32px;
}

.lp-faq__heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #c99f37;
  margin-bottom: 6px;
}

.lp-faq__heading-ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1e33;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-faq__item {
  border-bottom: 1px solid #e8e4da;
}

.lp-faq__item:first-child {
  border-top: 1px solid #e8e4da;
}

.lp-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1c1e33;
  line-height: 1.6;
  position: relative;
}

.lp-faq__q::-webkit-details-marker {
  display: none;
}

.lp-faq__q::before {
  content: 'Q.';
  color: #c99f37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 8px;
}

.lp-faq__q::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s;
}

.lp-faq__item[open] .lp-faq__q::after {
  transform: translateY(-35%) rotate(-135deg);
}

.lp-faq__a {
  padding: 0 0 18px 28px;
}

.lp-faq__a p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
}

/* --- Final CTA Section --- */
.lp-final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 56px;
  text-align: center;
  color: #fff;
}

.lp-final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28, 30, 51, 0.92) 0%, rgba(28, 30, 51, 0.78) 50%, rgba(75, 147, 209, 0.65) 100%),
    url('https://photowedding.okinawa/common/okinawa_campaign/7_open_7_8.jpg') center / cover no-repeat;
  z-index: 0;
}

.lp-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.lp-final-cta__label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #c99f37;
  border: 1px solid rgba(201, 159, 55, 0.6);
  border-radius: 3px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.lp-final-cta__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.lp-final-cta__message {
  font-size: 0.82rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.lp-final-cta__message strong {
  color: #f0c940;
  font-weight: 700;
}

/* Prices */
.lp-final-cta__prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-final-cta__price-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(4px);
}

.lp-final-cta__price-plan {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

.lp-final-cta__price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.lp-final-cta__price-num .yen {
  font-size: 1rem;
}

.lp-final-cta__price-num .tax {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.lp-final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.lp-final-cta__btn {
  display: block;
  padding: 18px 0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.lp-final-cta__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #c99f37 0%, #dbb84a 100%);
  box-shadow: 0 4px 20px rgba(201, 159, 55, 0.45);
}

.lp-final-cta__btn--primary:link,
.lp-final-cta__btn--primary:visited {
  color: #fff;
}

.lp-final-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 159, 55, 0.6);
}

.lp-final-cta__btn--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.lp-final-cta__btn--secondary:link,
.lp-final-cta__btn--secondary:visited {
  color: #fff;
}

.lp-final-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.lp-final-cta__note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* --- Tablet+ (min-width: 768px) --- */
@media (min-width: 768px) {
  .lp-hero {
    padding: 64px 24px 72px;
  }

  .lp-hero__heading .ja {
    font-size: 1.8rem;
  }

  .lp-hero__cards {
    flex-direction: row;
    gap: 28px;
  }

  .lp-plan {
    flex: 1;
  }

  .lp-plan__badge {
    width: 84px;
    height: 84px;
  }

  .lp-plan__badge .badge-label {
    font-size: 0.65rem;
  }

  .lp-plan__badge .badge-rank {
    font-size: 1.8rem;
  }

  .lp-plan__body {
    padding: 28px 24px 32px;
  }

  .lp-plan__name {
    font-size: 1.25rem;
  }

  .lp-plan__price {
    font-size: 3.2rem;
  }

  .lp-plan__cta {
    font-size: 1.05rem;
    padding: 18px 0;
  }

  /* Timeline PC */
  .lp-timeline {
    padding: 72px 24px 64px;
  }

  .lp-timeline__inner {
    max-width: 1100px;
  }

  .lp-timeline__heading-ja {
    font-size: 1.7rem;
  }

  .lp-timeline__heading-ja strong {
    font-size: 2rem;
  }

  .lp-timeline__track {
    display: flex;
    padding-left: 0;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
  }

  .lp-timeline__track::before {
    top: 28px;
    left: 60px;
    right: 60px;
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(to right, #c99f37 0%, #4b93d1 80%, #56c596 100%);
  }

  .lp-timeline__step {
    flex: 1;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lp-timeline__time {
    position: static;
    width: auto;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .lp-timeline__dot {
    position: static;
    margin-bottom: 14px;
  }

  .lp-timeline__card {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 16px 14px 14px;
  }

  .lp-timeline__card--free {
    max-width: 210px;
  }

  .lp-timeline__card-title {
    font-size: 0.95rem;
  }

  .lp-timeline__card-desc {
    font-size: 0.73rem;
  }

  .lp-timeline__card-desc br {
    display: none;
  }

  .lp-timeline__point {
    margin-top: 44px;
    padding: 24px 32px;
    max-width: 1100px;
  }

  .lp-timeline__point p {
    font-size: 0.95rem;
  }

  /* Recommend PC */
  .lp-recommend {
    padding: 72px 24px 64px;
  }

  .lp-recommend__heading-ja {
    font-size: 1.7rem;
  }

  .lp-recommend__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .lp-recommend__item {
    flex-direction: column;
  }

  .lp-recommend__item-img {
    width: 100%;
    height: 180px;
  }

  .lp-recommend__item-body {
    padding: 20px 20px 24px;
  }

  .lp-recommend__item-num {
    font-size: 2.5rem;
    top: 14px;
    right: 18px;
  }

  .lp-recommend__item-title {
    font-size: 1.05rem;
  }

  .lp-recommend__item-desc {
    font-size: 0.82rem;
  }

  /* Renewal PC */
  .lp-renewal {
    padding: 72px 24px 64px;
  }

  .lp-renewal__heading-ja {
    font-size: 1.7rem;
  }

  .lp-renewal__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .lp-renewal__card-body {
    padding: 22px 20px 26px;
  }

  .lp-renewal__card-title {
    font-size: 1.15rem;
  }

  /* Chapel PC */
  .lp-chapel {
    display: flex;
    flex-direction: row;
    margin-bottom: 28px;
  }

  .lp-chapel__visual {
    flex: 0 0 45%;
    aspect-ratio: auto;
  }

  .lp-chapel__body {
    padding: 32px 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lp-chapel__title {
    font-size: 1.35rem;
  }

  .lp-renewal__marriott {
    padding: 36px 32px;
  }

  .lp-renewal__marriott-name {
    font-size: 1.25rem;
  }

  .lp-renewal__marriott-desc {
    font-size: 0.85rem;
  }

  /* Access PC */
  .lp-access {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-access__heading-ja {
    font-size: 1.3rem;
  }

  .lp-access__map iframe {
    height: 360px;
  }

  .lp-access__info {
    padding: 24px 28px;
  }

  .lp-access__dl {
    grid-template-columns: 80px 1fr;
    font-size: 0.88rem;
  }

  /* Gallery PC */
  .lp-gallery {
    padding: 72px 24px 64px;
  }

  .lp-gallery__heading-ja {
    font-size: 1.7rem;
  }

  .lp-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .lp-gallery__item {
    border-radius: 8px;
  }

  /* Included PC */
  .lp-included {
    padding: 72px 24px 64px;
  }

  .lp-included__heading-ja {
    font-size: 1.6rem;
  }

  .lp-included__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .lp-included__item {
    padding: 24px 12px;
  }

  .lp-included__icon {
    font-size: 2rem;
  }

  .lp-included__name {
    font-size: 0.78rem;
  }

  .lp-included__name strong {
    font-size: 0.88rem;
  }

  /* FAQ PC */
  .lp-faq {
    padding: 72px 24px 64px;
  }

  .lp-faq__heading-ja {
    font-size: 1.7rem;
  }

  .lp-faq__q {
    font-size: 0.95rem;
    padding: 22px 40px 22px 0;
  }

  .lp-faq__a p {
    font-size: 0.88rem;
  }

  /* Final CTA PC */
  .lp-final-cta {
    padding: 88px 24px 72px;
  }

  .lp-final-cta__title {
    font-size: 1.8rem;
  }

  .lp-final-cta__message {
    font-size: 0.9rem;
  }

  .lp-final-cta__prices {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .lp-final-cta__price-item {
    flex: 0 1 300px;
    padding: 18px 24px;
  }

  .lp-final-cta__price-num {
    font-size: 2rem;
  }

  .lp-final-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .lp-final-cta__btn {
    flex: 0 1 300px;
    padding: 20px 0;
    font-size: 1.05rem;
  }

  /* Hide floating CTA on PC */
  .lp-floating {
    display: none !important;
  }
}

/* --- Floating CTA (SP) --- */
.lp-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 12px 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lp-floating.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.lp-floating.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.lp-floating__btn {
  display: block;
  text-align: center;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, #c99f37 0%, #dbb84a 100%);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.lp-floating__btn:link,
.lp-floating__btn:visited {
  color: #fff;
}

.lp-floating__text {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}

.lp-floating__sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  line-height: 1;
}
