/* ===== ASOBOSA RENTAL CAR THEME CSS ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #fe9510;
  --orange-bright: #ffb347;
  --orange-deep: #e07800;
  --orange-light: #fff4e0;
  --orange-glow: rgba(254, 149, 16, .12);
  --coral: #ff6b6b;
  --ocean: #f58a07;
  --ocean-light: #fff4e0;
  --sky: #ffe0a3;
  --sky-pale: #fffaf2;
  --sand: #fff8f0;
  --hibiscus: #e8446d;
  --palm: #4caf50;
  --sun: #ffd93d;
  --text: #2d3436;
  --text-soft: #636e72;
  --white: #ffffff;
  --gray-bg: #fffcf8;
  --border: #f0e6d8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.accent { font-family: 'Righteous', sans-serif; }
.round { font-family: 'Kosugi Maru', sans-serif; }

/* ===== HEADER ===== */
.hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.hd.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.hd-logo img { height: 54px; object-fit: contain; }
.hd-nav { display: flex; align-items: center; gap: 28px; }
.hd-nav a {
  font-size: .82rem; font-weight: 600; color: var(--text-soft);
  transition: color .3s;
}
.hd-nav a:hover { color: var(--orange); }
.hd-cta {
  background: linear-gradient(135deg, var(--orange), var(--ocean)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 700 !important; font-size: .82rem !important;
  box-shadow: 0 4px 14px rgba(254,149,16,.3);
  transition: transform .25s, box-shadow .25s !important;
}
.hd-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(254,149,16,.4) !important;
}
.burger { display: none; width: 28px; height: 20px; position: relative; cursor: pointer; z-index: 101; }
.burger span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--text);
  transition: all .35s cubic-bezier(.77,0,.18,1);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu a { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.mob-menu a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(170deg, var(--sky-pale) 0%, var(--sand) 40%, var(--white) 100%);
}
.hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fe9510' fill-opacity='.06' d='M0,224L48,208C96,192,192,160,288,165.3C384,171,480,213,576,218.7C672,224,768,192,864,186.7C960,181,1056,203,1152,197.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom / cover;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,217,61,.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-img.on { opacity: 1; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.08) 40%, rgba(0,0,0,.35) 100%),
    linear-gradient(90deg, rgba(0,0,0,.32) 0%, transparent 60%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 120px clamp(20px,5vw,64px) 80px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 6px 18px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  margin-bottom: 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900; line-height: 1.25;
  margin-bottom: 18px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-bright);
  -webkit-text-fill-color: var(--orange-bright);
  text-shadow: 0 2px 20px rgba(254,149,16,.4);
}
.hero-sub {
  font-size: clamp(.92rem,1.1vw,1.05rem);
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 50px;
  font-weight: 700; font-size: .92rem;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer; border: none;
}
.btn-sea {
  background: linear-gradient(135deg, var(--orange), var(--ocean));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(254,149,16,.3);
}
.btn-sea:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(254,149,16,.4); }
.btn-sand {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.btn-sand:hover { background: rgba(255,255,255,.35); border-color: var(--white); color: var(--white); transform: translateY(-3px); }

.hero-dots {
  position: absolute; bottom: clamp(24px,4vh,50px); left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer; transition: background .4s, transform .3s;
}
.hero-dot.on { background: var(--orange); transform: scale(1.3); }

/* ===== BOOKING FORM ===== */
.booking-bar {
  position: relative; z-index: 10;
  margin-top: -48px;
  padding: 0 clamp(20px,5vw,64px);
}
.booking-card {
  max-width: 1200px; margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid var(--border);
}
.booking-title {
  font-size: .82rem; font-weight: 700;
  color: var(--orange); letter-spacing: .08em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.booking-title i { font-size: .9rem; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.booking-field label {
  display: block; font-size: .75rem; font-weight: 700;
  color: var(--text-soft); margin-bottom: 6px;
  letter-spacing: .04em;
}
.booking-field select,
.booking-field input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 12px; font-size: .9rem;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color .3s;
  font-family: 'Noto Sans JP', sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636e72' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-field select:focus,
.booking-field input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.booking-submit {
  padding: 14px 36px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white); font-weight: 800; font-size: .92rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(254,149,16,.3);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  height: fit-content;
  font-family: 'Noto Sans JP', sans-serif;
}
.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(254,149,16,.4);
}

/* ===== SECTION DIVIDER ===== */
.divider {
  text-align: center; padding: 16px 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  opacity: .3;
}
.divider::before, .divider::after {
  content: ''; flex: 1; max-width: 120px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.divider i {
  font-size: 1rem; color: var(--orange);
}

/* ===== SECTION COMMON ===== */
.sec { padding: clamp(64px,9vw,100px) clamp(20px,5vw,64px); max-width: 1200px; margin: 0 auto; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700;
  color: var(--orange);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-tag i { font-size: .65rem; }
.sec-ttl {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900; line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
}
.sec-desc {
  font-size: .92rem; color: var(--text-soft);
  max-width: 540px; margin-bottom: 48px;
}

/* ===== LINEUP ===== */
.bg-sand { background: var(--sand); }
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.l-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.l-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.l-card-vis { position: relative; height: 200px; overflow: hidden; }
.l-card-vis img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.l-card:hover .l-card-vis img { transform: scale(1.06); }
.l-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: var(--white);
  font-size: .7rem; font-weight: 800;
  padding: 5px 14px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(255,107,107,.3);
}
.l-card-body { padding: 24px 26px 28px; }
.l-card-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.l-card-text { font-size: .84rem; color: var(--text-soft); margin-bottom: 16px; line-height: 1.7; }
.l-card-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.l-card-price b {
  font-family: 'Righteous', sans-serif;
  font-size: 2.2rem; color: var(--coral); line-height: 1;
}
.l-card-price span { font-size: .78rem; color: var(--text-soft); }
.l-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.l-card-tags span {
  background: var(--ocean-light); color: var(--orange-deep);
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.l-card-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--ocean));
  color: var(--white);
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 4px 14px rgba(254,149,16,.25);
  transition: box-shadow .3s, transform .2s;
}
.l-card-btn:hover { box-shadow: 0 6px 22px rgba(254,149,16,.35); transform: translateY(-1px); }

/* ===== DISCOUNT NOTICE ===== */
.discount-notice {
  margin-top: 40px;
}
.discount-notice-inner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, #fff8f0 0%, #fff4e0 100%);
  border: 2px solid var(--orange);
  border-radius: 18px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(254,149,16,.12);
  position: relative;
  overflow: hidden;
}
.discount-notice-inner::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(254,149,16,.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.discount-notice-icon {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 4px 14px rgba(254,149,16,.3);
}
.discount-notice-body { flex: 1; }
.discount-notice-title {
  font-size: 1.05rem; font-weight: 800;
  color: var(--orange-deep);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.discount-notice-title i { font-size: .9rem; }
.discount-notice-text {
  font-size: .88rem; color: var(--text-soft);
  line-height: 1.6;
}
.discount-notice-btn {
  white-space: nowrap;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--ocean));
  color: var(--white);
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 4px 14px rgba(254,149,16,.25);
  transition: transform .25s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.discount-notice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(254,149,16,.35);
}

/* ===== REASONS ===== */
.bg-white { background: var(--white); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.r-card {
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.r-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.06); border-color: var(--orange); }
.r-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.r-card-icon.tq { background: var(--orange-glow); color: var(--orange); }
.r-card-icon.or { background: rgba(254,149,16,.1); color: var(--orange); }
.r-card-icon.co { background: rgba(255,107,107,.1); color: var(--coral); }
.r-card-icon.pl { background: rgba(76,175,80,.1); color: var(--palm); }
.r-card-icon.oc { background: rgba(0,153,204,.1); color: var(--ocean); }
.r-card-icon.sn { background: rgba(255,217,61,.15); color: #e6a800; }
.r-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.r-card p { font-size: .84rem; color: var(--text-soft); line-height: 1.75; }

/* ===== SHUTTLE ===== */
.bg-gradient-sea {
  background: linear-gradient(170deg, var(--ocean-light) 0%, var(--white) 100%);
}
.shuttle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.shuttle-text h3 { font-size: clamp(1.3rem,2.4vw,1.8rem); font-weight: 900; line-height: 1.4; margin-bottom: 16px; }
.shuttle-text h3 em { font-style: normal; color: var(--orange); }
.shuttle-text > p { font-size: .9rem; color: var(--text-soft); margin-bottom: 28px; }
.sh-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; margin-bottom: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .3s;
}
.sh-item:hover { border-color: var(--orange); }
.sh-item i { color: var(--orange); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.sh-item span { font-size: .85rem; color: var(--text-soft); line-height: 1.6; }
.shuttle-vis { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.shuttle-vis img { width: 100%; height: 420px; object-fit: cover; }
.shuttle-vis-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); color: var(--orange);
  padding: 10px 20px; border-radius: 50px;
  font-weight: 800; font-size: .82rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

/* ===== FLOW ===== */
.bg-sky { background: var(--sky-pale); }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.f-card {
  text-align: center; background: var(--white);
  border-radius: 20px; padding: 36px 22px 30px;
  border: 1px solid var(--border);
  position: relative; transition: transform .3s;
}
.f-card:hover { transform: translateY(-4px); }
.f-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--ocean));
  color: var(--white);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Righteous', sans-serif;
  font-size: .72rem;
  box-shadow: 0 3px 10px rgba(254,149,16,.3);
}
.f-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.f-icon.c1 { background: var(--orange-glow); color: var(--orange); }
.f-icon.c2 { background: rgba(254,149,16,.1); color: var(--orange); }
.f-icon.c3 { background: rgba(255,107,107,.1); color: var(--coral); }
.f-icon.c4 { background: rgba(76,175,80,.1); color: var(--palm); }
.f-card h4 { font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.f-card p { font-size: .8rem; color: var(--text-soft); line-height: 1.65; }

/* ===== INFO ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-tbl {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
}
.info-tbl tr { border-bottom: 1px solid var(--border); }
.info-tbl tr:last-child { border-bottom: none; }
.info-tbl th {
  background: var(--ocean-light); padding: 16px 20px; text-align: left;
  font-size: .82rem; font-weight: 700; color: var(--orange-deep);
  width: 120px; vertical-align: top;
}
.info-tbl td { padding: 16px 20px; font-size: .88rem; color: var(--text); line-height: 1.7; }
.info-map {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.info-map iframe { width: 100%; height: 100%; min-height: 360px; border: none; }
.info-access {
  margin-top: 24px; padding: 24px;
  background: var(--sky-pale); border-radius: 16px; border: 1px solid var(--border);
}
.info-access h4 { font-size: .95rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-access h4 i { color: var(--coral); }
.info-access li {
  padding: 6px 0; font-size: .85rem; color: var(--text-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.info-access li::before {
  content: '\f1b9'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--orange); font-size: .65rem; flex-shrink: 0; margin-top: 8px;
}

/* ===== CTA ===== */
.cta-sec {
  position: relative; padding: clamp(64px,9vw,100px) clamp(20px,5vw,64px);
  text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, var(--ocean) 100%);
  color: var(--white);
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fff' fill-opacity='.06' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,192C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom / cover;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 900; margin-bottom: 14px; line-height: 1.4; }
.cta-inner p { font-size: .92rem; opacity: .88; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-wh {
  background: var(--white); color: var(--orange-deep);
  padding: 16px 38px; border-radius: 50px;
  font-weight: 800; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transition: transform .25s, box-shadow .25s; border: none; cursor: pointer;
}
.btn-wh:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.btn-glass {
  background: rgba(255,255,255,.18); color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 38px; border-radius: 50px;
  font-weight: 800; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s, transform .25s; cursor: pointer;
}
.btn-glass:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }

/* ===== FOOTER ===== */
.ft {
  background: var(--sand);
  padding: 56px clamp(20px,5vw,64px) 28px;
  border-top: 1px solid var(--border);
}
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 36px; padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.ft-logo img { height: 50px; object-fit: contain; margin-bottom: 14px; }
.ft-logo p { font-size: .82rem; color: var(--text-soft); line-height: 1.8; }
.ft-social { display: flex; gap: 10px; margin-top: 16px; }
.ft-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); font-size: .88rem;
  transition: background .3s, color .3s, border-color .3s;
}
.ft-social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.ft h5 { font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.ft-links li { margin-bottom: 8px; }
.ft-links a { font-size: .82rem; color: var(--text-soft); transition: color .3s; }
.ft-links a:hover { color: var(--orange); }
.ft-bottom { text-align: center; padding-top: 24px; font-size: .74rem; color: var(--text-soft); }


.cta-chara {
  position: absolute; z-index: 2; pointer-events: none;
}
.cta-chara-left {
  left: clamp(10px, 5vw, 80px); bottom: 0;
  height: clamp(120px, 18vw, 220px);
}
.cta-chara-right {
  right: clamp(10px, 5vw, 80px); bottom: 0;
  height: clamp(100px, 14vw, 180px);
  transform: scaleX(-1);
}

/* ===== ANIMATIONS ===== */
.rv {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .shuttle-grid { grid-template-columns: 1fr; gap: 36px; }
  .shuttle-vis { order: -1; }
  .shuttle-vis img { height: 300px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hd-nav { display: none; }
  .burger { display: block; }
  .discount-notice-inner {
    flex-direction: column; text-align: center;
    padding: 24px 20px;
  }
  .discount-notice-btn { width: 100%; justify-content: center; }
  .lineup-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .reasons-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 20px; }
  .booking-submit { width: 100%; justify-content: center; }
  .cta-chara-left { height: 100px; left: 5px; }
  .cta-chara-right { height: 80px; right: 5px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .flow-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a, .cta-btns button { width: 100%; max-width: 320px; justify-content: center; }
}

/* ===== WORDPRESS COMPATIBILITY ===== */
/* WordPress admin bar fix */
.admin-bar .hd { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .hd { top: 46px; }
}
