/* --- Reset & Base --- */
:root {
    --color-primary: #005BAC;
    --color-accent: #D4AF37;
    --color-text: #333;
    --color-bg-light: #F8FBFF;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    letter-spacing: 0.05em;
}

p {
    margin: 0 0 1.5em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: opacity 0.3s;
    color: inherit;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title span {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    display: block;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent), var(--color-primary));
    margin-top: 20px;
    border-radius: 2px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* --- 1. Main Visual --- */
.mv {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.mv-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mv-bg-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    animation: slideAnime 18s infinite;
}

/* 実際のパスに合わせて調整してください */
.mv-bg-slider .slide:nth-child(1) {
    background-image: url('../img/img_mvalider1.jpeg');
    animation-delay: 0s;
}

.mv-bg-slider .slide:nth-child(2) {
    background-image: url('../img/img_mvslider2.jpg');
    animation-delay: 6s;
}

.mv-bg-slider .slide:nth-child(3) {
    background-image: url('../img/img_mvalider3.jpeg');
    animation-delay: 12s;
}

@keyframes slideAnime {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    5% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: scale(1);
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.mv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 91, 172, 0.6) 0%, rgba(0, 198, 255, 0.3) 100%);
    z-index: 0;
}

.mv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

/* MVキャッチコピー視認性強化 */
.mv-catch {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(5, 16, 37, 0.8);
    /* 濃いネイビー背景 */
    padding: 8px 30px;
    border-radius: 50px;
    border: 1px solid var(--color-accent);
    /* ゴールド枠線 */
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mv-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.mv-title span {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-top: 15px;
}

/* --- 修正: 情報バーをグリッドレイアウトに変更（2カラム2行）+ リンク化対応 --- */
.mv-info-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px 50px 50px;
    /* 下の余白(padding-bottom)を広げて文字が入るスペースを作る */

    /* 追加: 中央寄せ & 下マージン */
    margin: 0 auto 50px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;

    /* 追加: リンクとしてのスタイル */
    text-decoration: none;
    /* 下線を消す */
    color: #fff;
    /* 文字色を白に強制 */
    position: relative;
    /* 「詳しくはこちら」の配置基準 */
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* ホバー時の動き（浮き上がる） */
.mv-info-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* 「▼ 詳しくはこちら」を表示する擬似要素 */
.mv-info-bar::before {
    content: '▼ 詳しくはこちら';
    position: absolute;
    bottom: 15px;
    /* 下からの位置 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--color-accent);
    /* ゴールド色 */
    font-weight: 700;
    letter-spacing: 0.05em;
    pointer-events: none;
    /* マウスイベントを透過 */
}

.mv-info-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    position: relative;
    width: 100%;
}

/* 左列の右側に区切り線を表示 */
.mv-info-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    display: none;
}

.mv-info-item:nth-child(odd)::after {
    display: block;
}

/* HTMLから削除したのでCSSからもdividerクラスは削除 */
.mv-info-divider {
    display: none;
}

.mv-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.mv-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.mv-info-label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mv-info-value {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 800px;
}

.countdown-label {
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    opacity: 0.8;
    font-family: var(--font-en);
}

#timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-family: var(--font-en);
}

.timer-unit {
    text-align: center;
}

.timer-num {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent);
}

.timer-txt {
    font-size: 0.7rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* --- 2. Purpose --- */
.purpose {
    background: linear-gradient(to bottom right, #fff, var(--color-bg-light));
    clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 calc(100% - 5vw));
    padding: 150px 0;
    margin-top: -5vw;
    z-index: 1;
}

.purpose-lead-area {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.2;
    font-weight: 700;
}

.purpose-lead-area span.highlight {
    color: var(--color-primary);
    background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.3) 60%);
}

.purpose-text {
    margin-top: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --- 4. Schedule --- */
.schedule {
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 91, 172, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.day-item {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 0;
    padding-left: 80px;
}

.day-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 29px;
    width: 2px;
    height: 100%;
    background: #ddd;
    z-index: 0;
}

.day-item:last-child {
    padding-bottom: 0;
}

.day-item:last-child::before {
    display: none;
}

.schedule-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    /* リストと画像の間の余白 */
}

.schedule-detail {
    flex: 1;
    /* リスト部分が残りの幅を埋める */
}

.schedule-detail li {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px dashed #eee;
    /* 薄い下線を入れて見やすく */
    padding-bottom: 10px;
}

.schedule-detail li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.schedule-img-area {
    width: 40%;
    /* 画像エリアの幅 */
    max-width: 350px;
    flex-shrink: 0;
}

.schedule-img-area img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
    /* 画像の縦横比を統一 */
}

.day-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 91, 172, 0.3);
    z-index: 1;
}

.day-marker span:first-child {
    font-size: 0.9rem;
    line-height: 1;
}

.day-marker span:last-child {
    font-size: 1.4rem;
    line-height: 1;
}

.day-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.day-content:hover {
    transform: translateY(-5px);
}

.day-theme {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-bg-light);
}

.schedule-detail li {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.time {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--color-accent);
    width: 80px;
    flex-shrink: 0;
}

.event {
    font-weight: 500;
}

/* --- New Section: Consultation --- */
.consultation {
    background-color: var(--color-primary);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.consultation .container {
    position: relative;
    z-index: 1;
}

.consultation .section-title {
    color: #fff;
    margin-bottom: 50px;
}

.consultation .section-title::after {
    display: none;
}

.consultation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.consultation-text {
    flex: 1;
}

.consultation-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    background: linear-gradient(to right, #D4AF37, #F5C75D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.consultation-text p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5em;
}

.consultation-img-box {
    flex: 1;
    position: relative;
}

.consultation-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    z-index: 0;
    opacity: 0.5;
}

.consultation-img-box img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* --- 5. Accommodation --- */
.accommodation {
    padding-bottom: 150px;
    background-color: var(--color-bg-light);
}

.acco-container {
    display: flex;
    align-items: center;
    position: relative;
}

.acco-img {
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acco-text {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.acco-text h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.acco-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.acco-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.acco-spec-table th,
.acco-spec-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.acco-spec-table th {
    width: 25%;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary);
    font-weight: bold;
    border-bottom: 1px solid var(--color-primary);
}

/* --- 6. Outline --- */
.outline {
    background: var(--color-bg-light);
    position: relative;
}

.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 91, 172, 0.03) 20px, rgba(0, 91, 172, 0.03) 40px);
    z-index: 0;
}

.outline-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.outline-dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.outline-dl>div {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.outline-dl>div:last-child {
    border-bottom: none;
}

.outline-dt {
    width: 25%;
    background: var(--color-primary);
    color: #fff;
    padding: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outline-dd {
    width: 75%;
    padding: 30px;
    margin: 0;
}

.venue-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Outline: Venue Info Flex */
.venue-info-flex {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.venue-thumb {
    width: 40%;
    max-width: 250px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
}

.venue-text-box {
    flex: 1;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-en);
}

.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

/* --- 7. Last CTA --- */
.last-cta {
    position: relative;
    background-color: #0b1c3e;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 120px 0;
}

.last-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.last-cta .container {
    position: relative;
    z-index: 1;
}

.last-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.last-cta-sub {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.btn-large-cta {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F5C75D 100%);
    color: #fff;
    text-decoration: none;
    padding: 25px 80px;
    border-radius: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-large-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-large-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shineBtn 4s infinite;
}

@keyframes shineBtn {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- Fixed CTA --- */
.fixed-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.btn-cta {
    display: block;
    background: linear-gradient(45deg, var(--color-primary), #0084ff);
    color: #fff;
    text-align: center;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 91, 172, 0.4);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 172, 0.5);
}

.btn-cta-sub {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.btn-cta-main {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* --- Footer --- */
footer {
    background: #051025;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .mv-catch {
        font-size: 1.2rem;
        width: 100%;
    }

    .mv-title {
        font-size: 1.7rem;
    }

    .mv-title span {
        font-size: 1rem;
    }

    /* MV Info Bar - Responsive: 2カラム2行（縦並び） */
    .mv-info-bar {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 10px;
        padding: 20px;
        padding-bottom: 50px;
        width: 100%;
    }

    .mv-info-item {
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    /* スマホでは縦線非表示 */
    .mv-info-item::after {
        display: none !important;
    }

    .mv-info-text {
        align-items: baseline;
    }

    .mv-info-label {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .mv-info-value {
        font-size: 0.9rem;
        white-space: normal;
    }

    .countdown-box {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .timer-num {
        font-size: 1.8rem;
    }

    .purpose {
        clip-path: none;
        margin-top: 0;
        padding: 80px 0;
    }

    .purpose-lead-area {
        font-size: 1.2rem;
    }

    .day-item {
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .schedule-body {
        flex-direction: column-reverse;
        /* スマホでは画像を下に持ってくる */
        gap: 20px;
    }

    .schedule-img-area {
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }

    .day-marker {
        width: 40px;
        height: 40px;
    }

    .day-marker span:first-child {
        font-size: 0.7rem;
    }

    .day-marker span:last-child {
        font-size: 1rem;
    }

    .day-item::before {
        left: 19px;
    }

    .day-content {
        padding: 25px;
    }

    .day-theme {
        font-size: 1.2rem;
    }

    .acco-container {
        flex-direction: column;
    }

    .acco-img,
    .acco-text {
        width: 100%;
        position: static;
        transform: none;
    }

    .acco-text {
        margin-top: -30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
        box-sizing: border-box;
    }

    .acco-text h3 {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .acco-spec-table th,
    .acco-spec-table td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 5px 0;
    }

    .acco-spec-table th {
        background-color: transparent;
        color: var(--color-accent);
        margin-top: 10px;
        border-bottom: none;
    }

    .acco-spec-table td {
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .acco-spec-table tr:last-child td {
        border-bottom: none;
    }

    .outline-dl>div {
        flex-direction: column;
    }

    .outline-dt,
    .outline-dd {
        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .outline-dt {
        text-align: left;
        justify-content: flex-start;
    }

    .last-cta-title {
        font-size: 1.8rem;
    }

    .btn-large-cta {
        padding: 20px 40px;
        font-size: 1.1rem;
        width: 80%;
        box-sizing: border-box;
    }

    .fixed-cta {
        width: auto;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .btn-cta {
        padding: 12px 20px;
    }

    .consultation-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .consultation-img-box {
        width: 100%;
    }

    .consultation-img-box::before {
        display: none;
    }

    .consultation-text h3 {
        font-size: 1.5rem;
    }

    .venue-info-flex {
        flex-direction: column;
    }

    .venue-thumb {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
    }

    .last-cta-sub {
        font-size: .95rem;
    }
}

/* --- 追加修正: スケジュール詳細ボタン --- */
.btn-schedule-detail {
    display: inline-block;
    margin-left: 15px;
    padding: 4px 12px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    vertical-align: middle;
    font-weight: bold;
}

.btn-schedule-detail:hover {
    background-color: var(--color-primary);
    color: #fff;
    opacity: 1;
    /* ベースのaタグhoverを上書き */
}

/* スマホ表示時の調整 */
@media (max-width: 900px) {
    .btn-schedule-detail {
        display: block;
        /* 改行させる */
        margin-left: 0;
        margin-top: 5px;
        width: fit-content;
    }

    /* eventクラス自体も縦並びに対応させる */
    .schedule-detail li .event {
        display: block;
    }
}

/* =========================================
   追加修正：スケジュール & 移動詳細デザイン
   ========================================= */

/* --- 1. スケジュールのボタン調整 --- */
.schedule-has-btn {
    align-items: flex-start !important;
    /* 縦位置調整 */
}

/* テキストとボタンを横並びにする箱 */
.event-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    /* ボタンとの距離を確保 */
}

.event-name {
    font-weight: 500;
}

/* 小さなアクセントボタン */
.btn-sm-accent {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    /* テーマカラーの青 */
    padding: 5px 16px;
    border-radius: 20px;
    /* 角丸でボタンらしく */
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    text-decoration: none;
}

.btn-sm-accent:hover {
    background: var(--color-accent);
    /* ホバー時はゴールドに */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
    .event-box {
        gap: 8px;
    }

    .btn-sm-accent {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}


/* --- 2. 開催概要：移動詳細のデザイン --- */
.transport-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-row {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

/* 左側：見出しエリア */
.transport-head {
    background: var(--color-bg-light);
    padding: 20px;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #eee;
}

.transport-label {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
    font-weight: 700;
}

.transport-name {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px;
    font-weight: 700;
}

.transport-sub {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* 右側：内容エリア */
.transport-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.transport-price {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.price-num {
    font-size: 1.4rem;
    font-family: var(--font-en);
    color: var(--color-primary);
    margin: 0 2px;
}

/* 詳細リンク（矢印付きテキストリンクの小型版） */
.btn-link-sm {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    width: fit-content;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.btn-link-sm:hover {
    opacity: 0.7;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* レンタカーリストのデザイン */
.car-list {
    margin: 0;
}

.car-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.car-list li:last-child {
    border-bottom: none;
}

.car-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.car-price {
    font-weight: 700;
    color: #333;
}

.car-price small {
    font-size: 0.8em;
    font-weight: normal;
}

.transport-note {
    font-size: 0.85rem;
    color: #d00000;
    margin: 0;
    text-align: right;
}

/* スマホ対応：縦積みに変更 */
@media (max-width: 768px) {
    .transport-row {
        flex-direction: column;
    }

    .transport-head {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

    .transport-body {
        padding: 15px;
    }

    .transport-note {
        text-align: left;
    }
}