/* ===== MODEL PLAN 共通スタイル ===== */

/* タイトル下線制御 */
.mp-plan-title h2::after { display: none; }
.mp-plan-title--gold h2::after { display: block; background: #d19e41; }

/* スライドショー */
.mp-show {
  width: 100%;
  margin-bottom: 56px;
}
.mp-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.mp-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.mp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.mp-slide.is-active .mp-slide-bg { transform: scale(1); }
.mp-slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.68) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.10) 100%);
}
.mp-slide-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6% 7%;
}

/* day / time */
.mp-day-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.mp-day-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 1.1vw, 14px);
  letter-spacing: .35em;
  color: rgba(200,169,110,.85);
}
.mp-day-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12px, 1.3vw, 16px);
  color: rgba(255,255,255,.4);
}
.mp-time-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
  letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.mp-spot-name {
  font-size: clamp(16px, 2.2vw, 30px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .12em;
  margin: 10px 0 14px;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.mp-spot-desc {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 300;
  color: rgba(245,237,216,.8);
  line-height: 1.9;
  letter-spacing: .06em;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  max-width: 500px;
}

/* 前 / 次ボタン */
.mp-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(36px, 4vw, 52px);
  height: clamp(36px, 4vw, 52px);
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.22);
  color: #ffffff;
  font-size: clamp(18px, 2vw, 28px);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  line-height: 1;
}
.mp-ctrl:hover { background: rgba(200,169,110,.3); border-color: rgba(200,169,110,.5); }
.mp-ctrl-prev { left: 14px; }
.mp-ctrl-next { right: 14px; }

/* プログレスバー */
.mp-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 10;
}
.mp-progress-fill {
  height: 100%;
  width: 0%;
  background: #C8A96E;
}

/* タイムライン */
.mp-timeline {
  background: transparent;
  padding: 20px 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mp-timeline::-webkit-scrollbar { display: none; }
.mp-tl-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 36px 8px;
  min-width: 560px;
  width: 100%;
  box-sizing: border-box;
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25));
  background-size: calc(100% - 72px) 1px;
  background-position: 36px 14px;
  background-repeat: no-repeat;
}
.mp-tl-line { display: none; }
.mp-tl-pt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.mp-tl-diamond {
  width: 8px; height: 8px;
  background: #000000;
  transform: rotate(45deg);
  transition: all .3s ease;
  flex-shrink: 0;
}
.mp-tl-pt.is-active .mp-tl-diamond {
  width: 13px; height: 13px;
  background: #d19e41;
  box-shadow: 0 0 8px rgba(209,158,65,.4);
}
.mp-tl-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.mp-tl-day-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(0,0,0,.35);
  transition: color .3s;
}
.mp-tl-time-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(0,0,0,.45);
  white-space: nowrap;
  transition: all .3s;
}
.mp-tl-pt.is-active .mp-tl-day-txt { color: rgba(209,158,65,.8); }
.mp-tl-pt.is-active .mp-tl-time-txt {
  color: #d19e41;
  font-size: 13px;
  font-weight: 600;
}

/* プラン間ナビ */
.mp-plan-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  gap: 16px;
}
.mp-plan-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-sub);
  font-size: 13px;
  transition: color 0.2s ease;
}
.mp-plan-nav-link:hover { color: var(--color-primary); }
.mp-plan-nav-link--next { margin-left: auto; }
.mp-plan-nav-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: #C8A96E;
  display: block;
  margin-bottom: 2px;
}
.mp-plan-nav-title { font-weight: 700; font-size: 13px; color: var(--color-heading); }

@media screen and (max-width: 767px) {
  .mp-ctrl { display: none; }
  .mp-tl-inner { padding: 10px 20px 8px; min-width: 480px; }
}
