/* ============================================
   オリオンツアー スパリゾートハワイアンズ LP
   AIO/SEO対応リニューアル版 CSS
   ============================================ */

/* --- リセット & ベース --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2d2d2d;
    background-color: #f4f8fb;
    line-height: 1.8;
    font-size: 15px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* スクリーンリーダー専用 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ヘッダー
   ============================================ */
.site-header {
    background: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-bottom: 3px solid #ff6600;
}
.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.main-logo {
    height: 40px;
    width: auto;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #ff5500, #ff2255);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 50px; /* リンクあり：角丸 */
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.header-reserve-btn:hover {
    opacity: 0.85;
}
.menu-toggle-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 0; /* リンクなし：角丸解除 */
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    transition: background 0.2s;
}
.menu-toggle-btn:hover {
    background: #ff6600;
}

/* ============================================
   パンくずリスト
   ============================================ */
.breadcrumb-container {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 9px 0;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    color: #666;
    align-items: center;
}
.breadcrumb-list li a {
    color: #0099cc;
    text-decoration: none;
}
.breadcrumb-list li a:hover {
    text-decoration: underline;
}
.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #bbb;
    font-size: 14px;
}
.breadcrumb-list li:last-child {
    color: #444;
    font-weight: 600;
}

/* ============================================
   ドロワーメニュー
   ============================================ */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 0; /* リンクなし枠：角丸解除 */
}
.drawer-menu.is-active {
    right: 0;
}
.drawer-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
.drawer-header img { height: 30px; }
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
}
.close-btn:hover { color: #ff6600; }
.drawer-content {
    list-style: none;
    overflow-y: auto;
    flex-grow: 1;
}
.drawer-content li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}
.drawer-content li a i {
    color: #ff6600;
    width: 20px;
    text-align: center;
}
.drawer-content li a:hover {
    background: #fff5ef;
    color: #ff6600;
}
.drawer-footer {
    background: #f8fafb;
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.drawer-footer a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.drawer-footer a:hover { color: #ff6600; }
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   ヒーロー
   ============================================ */
.hero-v3 {
    background:
        linear-gradient(160deg, rgba(0,60,120,0.6) 0%, rgba(0,20,60,0.5) 100%),
        url('https://www.orion-tour.co.jp/bustour/hawaiians/img/hawaiians-001.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
}
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.3px;
}
.badge-orange { background: #ff6600; color: #fff; }
.badge-blue   { background: #1a91d7; color: #fff; }
.badge-green  { background: #27ae60; color: #fff; }

.hero-eyebrow {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.hero-title-v3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 6px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.hero-title-accent {
    color: #ffe066;
    display: inline-block;
}
.hero-lead-v3 {
    font-size: 17px;
    font-weight: bold;
    color: #e8f4ff;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ヒーロー内CTA */
.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.hero-price-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 10px 28px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-price-from {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}
.hero-price-num {
    font-size: 36px;
    font-weight: 900;
    color: #ffe066;
    line-height: 1;
}
.hero-price-num span { font-size: 18px; }
.hero-price-tax {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

.btn-hero-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff5500, #ff2255);
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    padding: 16px 40px;
    border-radius: 50px; /* リンクあり：角丸 */
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255,34,85,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,34,85,0.5);
}

.hero-target-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.hero-target-tags span {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    padding: 7px 16px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    font-size: 13px;
    font-weight: bold;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.hero-target-tags span i { font-size: 12px; }

/* ============================================
   フローティング価格パネル
   ============================================ */
.sticky-cta-panel {
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 28px 32px;
    margin: -48px auto 60px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 90;
    border-top: 4px solid #ff3366;
}
.cta-price-info .cta-sub {
    font-size: 13px;
    color: #ff6600;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.cta-price-group {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin: 4px 0 6px;
}
.cta-price {
    font-size: 36px;
    font-weight: 900;
    color: #ff3366;
    line-height: 1.1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}
.cta-price strong {
    font-size: inherit;
    color: inherit;
}
.cta-price-child {
    font-size: 30px;
    color: #ff6688;
}
.price-label {
    font-size: 13px;
    color: #555;
    font-weight: bold;
    margin-right: 6px;
    margin-bottom: 4px;
    white-space: nowrap;
    align-self: flex-end;
}
.age-range {
    font-size: 11px;
    color: #888;
    font-weight: normal;
}
.currency {
    font-size: 14px;
    color: #555;
    font-weight: bold;
    margin-left: 2px;
    margin-bottom: 3px;
    align-self: flex-end;
}
.cta-code {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}
.cta-action-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-action-btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 26px;
    font-weight: bold;
    border-radius: 50px; /* リンクあり：角丸 */
    transition: all 0.2s;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.btn-map {
    background: #fff;
    color: #0099cc;
    border: 2px solid #0099cc;
}
.btn-map:hover {
    background: #0099cc;
    color: #fff;
}
.btn-reserve {
    background: linear-gradient(90deg, #ff5500, #ff2255);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,51,102,0.3);
}
.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255,51,102,0.4);
}

/* ============================================
   セクションタイトル
   ============================================ */
.lp-section-title {
    font-size: 26px;
    text-align: center;
    margin: 72px 0 36px;
    font-weight: 900;
    position: relative;
    padding-bottom: 14px;
    color: #1a1a2e;
}
.lp-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ffcc00);
    border-radius: 0; /* リンクなし枠：角丸解除 */
}
.section-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: -22px;
    margin-bottom: 28px;
}

/* ============================================
   体験できること グリッド
   ============================================ */
.experience-overview {
    margin-bottom: 20px;
}
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.exp-card {
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.exp-icon {
    width: 60px;
    height: 60px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
}
.exp-card h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.exp-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   おすすめポイント
   ============================================ */
.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}
.feature-item {
    display: grid;
    grid-template-columns: 44% 56%;
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    align-items: center;
}
.feature-item:nth-child(even) {
    direction: rtl;
}
.feature-item:nth-child(even) .feature-text-box {
    direction: ltr;
}
.feature-img-box {
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}
.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.feature-item:hover .feature-img-box img {
    transform: scale(1.03);
}
.feature-text-box {
    padding: 36px 40px;
}
.feat-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    margin-bottom: 10px;
}
.feat-badge-orange { background: #fff0e6; color: #e85d00; }
.feat-badge-blue   { background: #e6f4ff; color: #0072b8; }
.feat-badge-pink   { background: #ffe6ef; color: #c0003c; }
.feat-badge-green  { background: #e6f8ef; color: #1a7a3f; }

.feature-text-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}
.feature-text-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}
.feature-note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* ============================================
   スライダー
   ============================================ */
.slider-wrapper {
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    margin-bottom: 60px;
}
.slider-discount-banner {
    background: linear-gradient(90deg, #1a3a6e, #0f5fa8);
    color: #fff;
    padding: 14px 20px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.6;
}
.slider-discount-banner i { font-size: 18px; color: #ffe066; }
.discount-price {
    margin-left: 4px;
    background: rgba(255,255,255,0.12);
    padding: 2px 10px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    white-space: nowrap;
}
.discount-price strong { color: #ffe066; font-size: 16px; }
.slider-discount-banner small { font-size: 12px; opacity: 0.8; }

.big-aloha-card {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    border: 1px solid #f0f0f0;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    overflow: hidden;
    margin-bottom: 20px;
}
.big-aloha-img {
    position: relative;
    overflow: hidden;
}
.big-aloha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}
.big-aloha-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff3366;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
}
.big-aloha-desc {
    padding: 28px;
    background: #fafbff;
}
.slider-badge-top {
    font-size: 12px;
    color: #ff3366;
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}
.big-aloha-desc h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.big-aloha-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.big-aloha-specs span {
    background: #e8f0ff;
    color: #1a4fba;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.big-aloha-desc p { font-size: 13px; color: #555; line-height: 1.75; }
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: #cc0033;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 50px; /* リンクあり：角丸 */
    text-decoration: none;
    transition: opacity 0.2s;
}
.btn-video:hover { opacity: 0.85; }

/* アコーディオン */
.accordion-trigger {
    width: 100%;
    background: #f2f4f8;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 0; /* リンクなし：角丸解除 */
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.accordion-trigger:hover { background: #e6eaf2; }
.accordion-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.accordion-trigger i { transition: transform 0.3s; }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}
.slider-price-box {
    background: #f9f9f9;
    padding: 20px 24px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    margin-top: 20px;
    font-size: 14px;
    border: 1px dashed #ccc;
}
.slider-price-box strong { display: block; margin-bottom: 10px; }
.slider-price-box ul { list-style: none; }
.slider-price-box li {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #eee;
}
.slider-price-box li:last-child { border: none; }
.slider-price-box li i { color: #27ae60; margin-top: 4px; flex-shrink: 0; }
.slider-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
}
.slider-sub-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    overflow: hidden;
    text-align: center;
}
.slider-sub-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.slider-sub-card h4 {
    margin: 12px 12px 6px;
    font-size: 14px;
    color: #1a1a2e;
}
.slider-sub-card p {
    font-size: 12px;
    color: #666;
    padding: 0 12px 14px;
    line-height: 1.55;
}

/* ============================================
   スケジュール
   ============================================ */
.timeline-box {
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 40px;
}
.premium-table {
    width: 100%;
    border-collapse: collapse;
}
.premium-table th,
.premium-table td {
    padding: 22px 26px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}
.premium-table th {
    background: #f8fafc;
    width: 18%;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
}
.premium-table tr:last-child th,
.premium-table tr:last-child td {
    border-bottom: none;
}
.v-timeline {
    border-left: 2px dashed #d0d8e8;
    padding-left: 22px;
    margin-left: 8px;
}
.time-node {
    position: relative;
    margin-bottom: 22px;
}
.time-node:last-child { margin-bottom: 0; }
.time-node::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #ff6600;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ff6600;
}
.node-time {
    font-weight: bold;
    color: #ff6600;
    margin-right: 12px;
    font-size: 14px;
}
.node-spot { font-size: 14px; color: #333; }
.node-free {
    background: #edfaf4;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    display: inline-block;
    margin-top: 8px;
    font-weight: bold;
    color: #1a7a3f;
    border: 1px solid #c3edd8;
    line-height: 1.6;
}
.price-type-list {
    list-style: none;
}
.price-type-list li { margin-bottom: 5px; font-size: 14px; }
.alert-text {
    font-size: 12px;
    color: #d10000;
    font-weight: bold;
}
.note-text {
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 6px;
}

/* ============================================
   出発設定日
   ============================================ */
.date-box {
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.date-month-block {
    background: #f8faff;
    border: 1px solid #e0e8f8;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    padding: 20px;
    text-align: center;
}
.date-month-block h3 {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px;
}
.date-month-block h3 span {
    font-size: 28px;
    font-weight: 900;
    color: #ff6600;
    display: block;
}
.date-month-block p {
    font-size: 13px;
    color: #444;
    line-height: 1.8;
    margin-top: 8px;
}

/* ============================================
   持ち物＆レンタル
   ============================================ */
.grid-two-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.info-card-v2 {
    background: #fff;
    padding: 28px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.info-card-v2 > h3 {
    font-size: 16px;
    margin-bottom: 18px;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
}
.info-card-v2 > h3 i { color: #00bcd4; }
.list-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.list-split h4 {
    font-size: 12px;
    color: #888;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.list-split ul { list-style: none; }
.list-split li {
    font-size: 13px;
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #444;
}
.list-split li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
}
.info-card-v2 h4 {
    font-size: 13px;
    margin-top: 14px;
    color: #555;
    font-weight: bold;
    border-left: 3px solid #ff6600;
    padding-left: 8px;
}
.rent-p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ============================================
   FAQ（AIO対応）
   ============================================ */
.faq-section {
    margin-bottom: 50px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1a1a2e;
    line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: #ff6600;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 17px;
}
.faq-item[open] summary {
    border-bottom: 1px solid #eaeef5;
    color: #ff6600;
}
.faq-answer {
    padding: 16px 22px 18px 50px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    background: #fafbff;
}


/* ============================================
   注意事項
   ============================================ */
.warning-container {
    background: #fff8f8;
    border: 1px solid #ffd0d0;
    padding: 30px 35px;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    margin-bottom: 40px;
}
.warning-container h2 {
    color: #c0001f;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.warning-container ul {
    padding-left: 18px;
    font-size: 13px;
    color: #444;
    line-height: 1.8;
}
.warning-container li { margin-bottom: 7px; }

/* ============================================
   マップ
   ============================================ */
.map-container-v2 {
    display: grid;
    grid-template-columns: 34% 66%;
    background: #fff;
    border-radius: 0; /* リンクなし枠：角丸解除 */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    margin-bottom: 50px;
}
.map-text-v2 {
    padding: 32px 28px;
    background: #f8faff;
}
.map-text-v2 h3 {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #1a1a2e;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.map-text-v2 h3 i { color: #ff3366; flex-shrink: 0; margin-top: 3px; }
.map-text-v2 p {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}
.btn-map-link {
    font-size: 13px;
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #ff6600;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.btn-map-link:hover { opacity: 0.7; }
.map-frame-v2 iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

/* ============================================
   ボトムCV
   ============================================ */
.bottom-reserve-area {
    text-align: center;
    margin: 50px 0 60px;
}
.bottom-reserve-lead {
    font-size: 14px;
    color: #c0001f;
    font-weight: bold;
    margin-bottom: 16px;
}
.btn-giant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff5500, #ff2255);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 56px;
    border-radius: 50px; /* リンクあり：角丸 */
    box-shadow: 0 8px 28px rgba(255,34,85,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.btn-giant:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(255,34,85,0.5);
}
.bottom-reserve-code {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
}

/* ============================================
   フッター
   ============================================ */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 40px;
    text-align: center;
}
.footer-company {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
}
.footer-address {
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.7;
}
.footer-links {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: #aaa;
    font-size: 12px;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-links a:hover { color: #ff9944; }
.footer-copy {
    margin-top: 24px;
    font-size: 11px;
    opacity: 0.4;
}

/* ============================================
   フェードイン
   ============================================ */
.js-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-item {
        grid-template-columns: 1fr;
    }
    .feature-item:nth-child(even) { direction: ltr; }
    .big-aloha-card {
        grid-template-columns: 1fr;
    }
    .map-container-v2 {
        grid-template-columns: 1fr;
    }
    .map-frame-v2 iframe { min-height: 280px; }
}

@media (max-width: 768px) {
    .header-reserve-btn { display: none; }

    .hero-title-v3 { font-size: 26px; }
    .hero-lead-v3 { font-size: 15px; }
    .hero-price-num { font-size: 28px; }
    .btn-hero-reserve { font-size: 15px; padding: 14px 28px; }


    .sticky-cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
        margin-top: -30px;
    }
    .cta-price-info .cta-sub { justify-content: center; }
    .cta-price-group {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .cta-action-btns { flex-direction: row; justify-content: center; }

    .lp-section-title { font-size: 22px; }

    .exp-grid { grid-template-columns: repeat(2, 1fr); }

    .feature-img-box { min-height: 220px; }
    .feature-text-box { padding: 22px 20px; }
    .feature-text-box h3 { font-size: 17px; }

    .slider-grid-v2 { grid-template-columns: 1fr; }
    .date-box { grid-template-columns: 1fr; }

    .grid-two-info { grid-template-columns: 1fr; }
    .list-split { grid-template-columns: 1fr; }

    .premium-table th,
    .premium-table td {
        display: block;
        width: 100%;
        padding: 14px 18px;
    }
    .premium-table th { background: #f0f3f8; }

    .faq-item summary { font-size: 14px; }

    .btn-giant {
        font-size: 16px;
        padding: 16px 28px;
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .hero-v3 { padding: 60px 16px 80px; }
    .hero-title-v3 { font-size: 22px; }
    .exp-grid { grid-template-columns: 1fr; }
    .slider-discount-banner { flex-direction: column; align-items: flex-start; }
    .cta-action-btns { flex-direction: column; }
}

/* アクセシビリティ: フォーカス表示 */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #ff6600;
    outline-offset: 2px;
}

/* Reduced Motion対応 */
@media (prefers-reduced-motion: reduce) {
    .js-fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .feature-img-box img,
    .btn-hero-reserve,
    .btn-giant,
    .exp-card {
        transition: none;
    }
}