@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&family=Oswald:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

html {
    font-size: 100% !important;
}

:root {
    --primary: #002B6F;
    --accent: #C5A059;
    --white: #ffffff;
    --light-gray: #f0f2f5;
    --dark: #222222;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 0;
}

p {
    line-height: 1.8;
    margin-bottom: 1em;
}

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

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* === ヒーローセクション === */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/sp/images/dragonsliner2026/mainImg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 43, 111, 0.6), rgba(0, 20, 60, 0.9));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding: 20px;
    width: 100%;
    position: relative;
}

.hero .dragons-logo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    aspect-ratio: 16 / 9;
    transform: translate(-20%, -20%);
    text-align: right;
}

.hero .dragons-logo img {
    width: 100%;
    object-fit: contain;
}

.hero .dragons-logo p {
    color: #fff;
}

.bg-english-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 25vw, 25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    z-index: -1;
    letter-spacing: -0.05em;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

/* === 追加：メインビジュアルロゴ用 === */
.hero-logo {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.main-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--white);
    font-style: italic;
    text-shadow: 4px 4px 0px var(--primary), 8px 8px 0px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.1;
    transform: skewX(-5deg);
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}

.catch-copy-wrapper {
    margin-top: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.catch-sub {
    display: block;
    color: var(--accent);
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.catch-main {
    display: block;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 900;
    line-height: 1.4;
    background: linear-gradient(transparent 60%, rgba(0, 43, 111, 0.8) 60%);
    display: inline;
}

/* === カレンダー === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10%;
    width: 120%;
    height: 15px;
    background: rgba(197, 160, 89, 0.4);
    z-index: -1;
    transform: skewX(-20deg);
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 43, 111, 0.1);
    position: relative;
    z-index: 2;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cal-header {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
}

.cal-cell {
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px 5px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--dark);
    box-sizing: border-box;
    position: relative;
}

.day-num {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.status-mark {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary);
}

.cal-cell.stop .status-mark.special {
    color: #ff0000;
}

.book-btn {
    font-size: 0.8rem;
    color: var(--white);
    background: var(--primary);
    padding: 5px 0;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

/* 運行日 */
a.cal-cell.run {
    border-color: #b8ccf5;
    background: #fdfdfd;
    cursor: pointer;
}

a.cal-cell.run:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 43, 111, 0.2);
    border-color: var(--primary);
    background: #fff;
}

a.cal-cell.run:hover .book-btn {
    background: var(--accent);
    color: #000;
}

/* 運休日 */
.cal-cell.stop {
    background: #f4f4f4;
    color: #ccc;
    border: 1px dashed #ddd;
    pointer-events: none;
}

.cal-cell.stop .status-mark {
    width: 100%;
    font-weight: normal;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 5px 0;
    line-height: 1.2;
    background: #ff0000;
}

.cal-cell.stop .status-mark.special {
    color: #ffffff;
    background: #ff9900;
}

.cal-cell.stop .status-mark.none {
    background: none;
}

.cal-cell.stop .book-btn-placeholder {
    width: 100%;
    height: 25px;
    display: block;
}

.cal-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.4;
}

/* マスコット */
.mascot-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.mascot-hidden {
    position: absolute;
    width: 120px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.peek-left-top {
    top: 20px;
    left: 20px;
}

.peek-left-top.active {
    transform: translate(-30px, -15px) rotate(-15deg);
    z-index: 99;
}

.peek-right-bottom {
    bottom: -10px;
    left: 0;
}

.peek-right-bottom.active {
    transform: translate(-70px, 10px) rotate(-10deg);
    z-index: 99;
}

/* 時刻表 */
.timetable-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

ul.table-notice {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: 1rem;
}

.timetable-box {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-top: 4px solid var(--primary);
}

.timetable-box h3 {
    background: var(--primary);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.time-row:last-child {
    border-bottom: none;
}

.time-big {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
}

/* === 2/8 SP無料デー用CSS === */
.sp-section {
    background-color: #fff9e6;
    /* 薄いゴールド/黄色系の背景で区別 */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.sp-header {
    text-align: center;
    margin-bottom: 30px;
}

.sp-badge {
    background: #d00;
    color: white;
    font-family: 'Oswald', sans-serif;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(221, 0, 0, 0.3);
    font-size: 1.5rem;
}

.sp-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
}

.sp-sub-text {
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
}

.sp-card {
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}

/* 注意書きボックス */
.sp-alert-box {
    background: #f8f9fa;
    border: 1px dashed #999;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sp-note-list {
    margin: 10px 0 0;
    padding-left: 20px;
    line-height: 1.8;
}

/* 時刻表周り */
.sp-time-title {
    text-align: center;
    color: var(--primary);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.sp-time-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-time-col {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.sp-col-header {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
}

.sp-col-header.chatan {
    background: var(--primary);
}

.sp-col-header.yomitan {
    background: #00695c;
    /* 区別のため少し緑寄りの色、またはaccentでも可 */
}

.sp-time-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.sp-time-list li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #333;
}

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

.sp-arrow-icon {
    font-size: 2rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .sp-arrow-icon {
        display: none;
        /* スマホでは縦並びになるので矢印消す */
    }

    .sp-time-container {
        flex-direction: column;
    }

    .sp-time-col {
        width: 100%;
    }

    .mascot-wrapper {
        margin-bottom: 0;
    }

    .peek-right-bottom {
        bottom: 200px;
        right: 50px;
    }

    .peek-left-top {
        top: -20px;
        left: 111px;
    }

    .peek-right-bottom.active,
    .peek-left-top.active {
        z-index: 99;
    }

    .cal-cell {
        padding: 10px 3px;
    }

    .sp-header h2 {
        font-size: 1.4rem;
    }

    .sp-card {
        padding: 15px;
    }
}

/* 特典 */
.benefit-section {
    background: radial-gradient(circle, #222 0%, #000 100%);
    color: var(--white);
    overflow: hidden;
    border-top: 5px solid var(--accent);
    border-bottom: 5px solid var(--accent);
    padding-bottom: 100px;
    position: relative;
}

.benefit-section .comingsoon {
    font-size: 3rem;
    text-align: center;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 5px black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.benefit-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    gap: 50px;
}

.benefit-text {
    flex: 1;
    min-width: 300px;
    z-index: 5;
}

.cards-spread {
    flex: 1;
    min-width: 320px;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-spread::before {
    content: '※イメージ';
    position: absolute;
    right: 0;
    bottom: 0;
}

.card-img {
    width: 180px;
    background: #333;
    border: 2px solid var(--accent);
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: bold;
    overflow: hidden;
}

.card-1 {
    transform: translateX(-100px) rotate(-25deg) translateY(20px);
    background: #222;
    z-index: 1;
}

.card-2 {
    transform: translateY(-10px) rotate(0deg);
    background: #333;
    z-index: 3;
    border-color: var(--white);
}

.card-3 {
    transform: translateX(100px) rotate(25deg) translateY(20px);
    background: #222;
    z-index: 2;
}

.cards-spread:hover .card-1 {
    transform: translateX(-140px) rotate(-35deg) translateY(20px);
}

.cards-spread:hover .card-2 {
    transform: translateY(-30px) scale(1.1);
}

.cards-spread:hover .card-3 {
    transform: translateX(140px) rotate(35deg) translateY(20px);
}

.special-badge {
    background: var(--accent);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    margin-bottom: 15px;
    transform: skewX(-10deg);
}

/* 料金 */
.price-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-box {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 30px;
    width: calc((100% - 30px) / 2);
    text-align: center;
    transition: transform 0.3s;
    box-sizing: border-box;
}

.price-box.special {
    border-color: var(--accent);
    background: linear-gradient(to bottom, #fff, #fffdf5);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.price-amt {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    font-weight: bold;
}

.price-amt span {
    font-size: 1rem;
}

/* フロー */
.flow-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    counter-reset: flow-num;
}

.flow-item {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.flow-icon::before {
    counter-increment: flow-num;
    content: counter(flow-num);
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 30px;
    font-weight: bold;
    border: 2px solid var(--white);
}

.flow-item:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40px;
    right: -10px;
    color: #ddd;
    font-size: 1.5rem;
}

.flow-item h3 {
    font-size: 1.1rem;
}

.flow-item p {
    font-size: 1rem;
}

@media(max-width: 768px) {
    .card {
        padding: 15px;
    }

    .flow-item:not(:last-child)::after {
        display: none;
    }

    .price-box.special {
        transform: scale(1);
    }
}

/* === ACCESSセクション用CSS === */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.access-card {
    padding: 30px;
    text-align: left;
    /* カード内の文字は左寄せ */
}

.access-title {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.gateway-logo {
    width: 80%;
    margin: 1rem auto;
    margin-top: 0;
}

/* 手書き地図画像エリア */
.hand-map-area {
    width: 100%;
    /* 画像の比率に合わせて高さ調整が必要ならここを変更（今は自動） */
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hand-map-area img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

/* ホバーで少し拡大して見やすく */
.hand-map-area:hover img {
    transform: scale(1.02);
}

/* 住所ボックス */
.address-box {
    background: #f4f8ff;
    /* 薄い青背景 */
    border-left: 5px solid var(--primary);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.addr-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
}

.addr-text {
    margin: 0;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* フッター・CTA */
footer {
    background: var(--primary);
    color: white;
    padding: 50px 20px 100px;
    text-align: center;
    border-top: 5px solid var(--accent);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.footer-coop {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
    text-align: center;
}

.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.cta-btn {
    display: block;
    background: linear-gradient(45deg, var(--primary), #004ebc);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 43, 111, 0.5);
    border: 2px solid var(--white);
    transition: transform 0.2s;
    position: relative;
    overflow: visible;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.cta-mascot {
    position: absolute;
    top: 50%;
    z-index: -1;
    right: 12px;
    width: 110px;
    aspect-ratio: 193 / 117;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    object-fit: cover;
}

.cta-btn:hover .cta-mascot {
    right: 20px;
    transform: translate(50px, -55px) rotate(20deg);
    opacity: 1;
}

footer img {
    display: inline-block;
}

.dragons-footer {
    width: 100%;
    padding: 3rem !important;

}

.dragons-footer img {
    width: 25%;
    display: block;
    margin: 0 auto;
}

.dragons-footer p {
    text-align: center;
}



@media screen and (max-width: 768px) {
    .main-title {
        font-size: 9vw;
    }

    .hero {
        flex-direction: column;
    }

    .hero .dragons-logo {
        position: static;
        width: 60%;
        transform: none;
    }

    .benefit-section .comingsoon {
        font-size: 1.5rem;
        width: 100%;
    }

    .access-title {
        font-size: 1.1rem;
    }

    .access-card {
        padding: 15px;
    }

    footer img {
        width: 65%;
        margin-bottom: 1rem;
    }

    .cta-mascot {
        top: 20%;
    }

    .cta-btn:hover .cta-mascot {
        right: 40px;
    }
}

/* === 追加：予約用モーダル === */
.modal {
    display: none;
    /* 初期状態は非表示 */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
}

.close-btn {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    background: #f4f8ff;
}

/* モーダル内の便リスト */
.flight-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.flight-name {
    font-weight: bold;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
}

.flight-route {
    font-size: 0.9rem;
    font-weight: bold;
}

.flight-time {
    font-size: 1.2rem;
    font-weight: 900;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reserve-btn {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: opacity 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 140px;
}

.reserve-btn:hover {
    opacity: 0.8;
}

.btn-general {
    background: #666;
    color: white;
}

.btn-chatan {
    background: var(--accent);
    color: #fff;
    border: 1px solid #b89552;
}

.btn-price {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* スマホ対応 */
@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }

    .modal-content {
        height: 80vh;
        /* スマホでは高さを確保 */
    }
}