*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;

    background:#f5f5f5;
    color:#333;

    line-height:1.7;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.container{

    width:92%;
    max-width:1400px;
    margin:auto;

}

/* =========================
   HEADER
========================= */

.site-header{

    background:#222;
    color:#fff;

    padding:10px 0;

    position:sticky;
    top:0;
    z-index:999;

}

.header-inner{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

}

.mobile-header{

    display:flex;
    align-items:center;
    gap:12px;

}

.site-brand{

    display:flex;
    align-items:center;

}

.site-logo-link{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo-image-wrap{

    background:#fff;

    padding:4px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.site-logo-image{

    width:56px;
    height:auto;
    display:block;

}

.site-title{

    color:#fff;
    font-size:22px;
    font-weight:bold;
    white-space:nowrap;

}

/* =========================
   NAVIGATION
========================= */

.site-nav{

    display:flex;
    align-items:center;
    flex-wrap:nowrap;

    gap:14px;

}

.site-nav a{

    color:#fff;

    font-size:14px;

    white-space:nowrap;

    transition:0.3s;

}

.site-nav a:hover{

    opacity:0.7;

}

/* =========================
   MENU BUTTON
========================= */

.menu-toggle{

    display:none;

    background:none;
    color:#fff;

    border:none;

    font-size:28px;
    font-weight:bold;

    cursor:pointer;

    line-height:1;

    padding:0;

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    background:
        url('/assets/images/hero.jpg')
        center center / cover no-repeat;

    min-height:80vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
        rgba(0,0,0,0.45);

}

.hero-content{

    position:relative;
    z-index:2;

    width:90%;
    max-width:900px;

}

.hero h1{

    font-size:
        clamp(32px, 7vw, 72px);

    margin-bottom:25px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.5);

    line-height:1.2;

}

.hero-sub{

    font-size:
        clamp(20px, 3vw, 30px);

    margin-bottom:40px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.5);

    line-height:1.6;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    background:#0b63ce;
    color:#fff;

    padding:16px 30px;

    border-radius:8px;

    font-size:18px;
    font-weight:bold;

    transition:0.3s;

}

.btn:hover{

    opacity:0.8;

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

/* =========================
   BREAKING NEWS
========================= */

.breaking-bar{

    position:absolute;
    top:0;
    left:0;

    width:100%;

    z-index:3;

    background:
        rgba(0,0,0,0.45);

    border-top:
        1px solid rgba(255,255,255,0.2);

    border-bottom:
        1px solid rgba(255,255,255,0.2);

    overflow:hidden;

}

.breaking-track{

    white-space:nowrap;

    display:inline-block;

    padding:6px 0;

    animation:
        breaking-scroll 22s linear infinite;

}

.breaking-track span{

    color:#ffff00;

    font-size:18px;

    font-weight:normal;

    letter-spacing:0.04em;

    padding-left:100vw;

}

@keyframes breaking-scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }

}

/* =========================
   INFO SECTION
========================= */

.info-section{

    padding:30px 0 40px;

}

.info-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:30px;

}

.info-box{

    background:#fff;

    padding:26px;

    border-radius:12px;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.08);

}

.info-box h2{

    font-size:24px;

    margin-bottom:20px;

}

.ride-info-simple p{

    margin-bottom:12px;

    font-size:17px;

}

.ride-message{

    margin-top:20px;

    font-size:15px;

    line-height:1.8;

}

.news-list{

    display:flex;
    flex-direction:column;

}

.news-item{

    display:flex;

    gap:18px;

    padding:14px 0;

    border-bottom:
        1px solid #ddd;

    color:#333;

    font-size:15px;

    transition:0.3s;

}

.news-item:hover{

    opacity:0.7;

}

.news-date{

    color:#0b63ce;

    font-weight:bold;

    min-width:100px;

}

.news-more{

    margin-top:20px;

}

.news-more a{

    color:#0b63ce;

    font-size:14px;

}

/* =========================
   PAGE
========================= */

.page-section{

    padding:50px 0;

}

.page-box{

    background:#fff;

    padding:40px;

    border-radius:12px;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.08);

}

.page-title{

    font-size:36px;

    margin-bottom:24px;

    line-height:1.4;

}

/* =========================
   NEWS DETAIL
========================= */

.news-date-detail{

    color:#0b63ce;

    font-weight:bold;

    margin-bottom:20px;

}

.news-body{

    font-size:18px;

    line-height:1.9;

}

.back-link-wrap{

    margin-top:40px;

}

.back-link{

    color:#0b63ce;

}

/* =========================
   ACCESS
========================= */

.access-wrapper{

    display:flex;
    flex-direction:column;

    gap:24px;

}

.access-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:24px;

}

.access-lead{

    font-size:17px;

    line-height:1.8;

    color:#555;

}

.access-title{

    font-size:26px;

    margin-bottom:18px;

}

.map-wrap{

    overflow:hidden;

    border-radius:14px;

}

.access-text{

    font-size:16px;

    line-height:1.9;

}

.access-link{

    margin-top:18px;

}

.access-link a{

    color:#0b63ce;

    font-weight:bold;

}

.access-notice{

    padding-left:22px;

    line-height:1.9;

}

.access-notice li{

    margin-bottom:8px;

}

/* =========================
   FAQ
========================= */

.faq-header{

    margin-bottom:14px;

}

.faq-page-title{

    font-size:30px;

    margin-bottom:2px;

}

.faq-page-sub{

    font-size:13px;

    color:#666;

}

.faq-control{

    display:flex;

    gap:10px;

    margin-bottom:16px;

}

.faq-control-btn{

    background:#666;

    color:#fff;

    border:none;

    padding:7px 12px;

    border-radius:6px;

    font-size:12px;

    cursor:pointer;

}

.faq-list{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.08);

}

.faq-item{

    border-bottom:1px solid #ddd;

}

.faq-item:last-child{

    border-bottom:none;

}

.faq-question-btn{

    width:100%;

    background:none;

    border:none;

    padding:16px 20px;

    text-align:left;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:15px;

    font-weight:bold;

    color:#333;

}

.faq-icon{

    font-size:12px;

    transition:0.3s;

}

.faq-item.open .faq-icon{

    transform:rotate(180deg);

}

.faq-answer-wrap{

    max-height:0;

    overflow:hidden;

    transition:0.3s;

}

.faq-item.open .faq-answer-wrap{

    max-height:500px;

}

.faq-answer{

    padding:0 20px 18px;

    font-size:14px;

    line-height:1.8;

    color:#555;

}

/* =========================
   ABOUT
========================= */

.about-top-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:24px;

    margin-bottom:24px;

    align-items:stretch;

}

.about-logo-box{

    display:flex;

    align-items:center;

    justify-content:center;

}

.about-logo{

    width:220px;

    max-width:80%;

    height:auto;

}

.about-notice-box{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.about-notice-text{

    font-size:15px;

    line-height:1.8;

    color:#444;

}

.about-main-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:24px;

    align-items:start;

}

.about-text{

    font-size:16px;

    line-height:1.75;

    color:#444;

}

.about-text p{

    margin-bottom:20px;

}

.about-title{

    font-size:26px;

    margin-bottom:18px;

}

.about-table{

    width:100%;

    border-collapse:collapse;

}

.about-table th,
.about-table td{

    border-bottom:1px solid #ddd;

    padding:14px 10px;

    text-align:left;

    vertical-align:top;

    font-size:15px;

    line-height:1.7;

}

.about-table th{

    width:120px;

    background:#fafafa;

    font-weight:bold;

}

.about-contact-box{

    margin-top:24px;

}

.about-contact{

    font-size:16px;

    line-height:1.8;

}

/* =========================
   SOCIAL
========================= */

.social-section{

    padding:0 0 20px;

    text-align:center;

}

.social-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

}

.social-icons a{

    opacity:0.7;

    transition:0.3s;

}

.social-icons a:hover{

    opacity:1;

}

.social-icons img{

    width:28px;

    height:auto;
    display:block;

}

/* =========================
   FOOTER
========================= */

.site-footer{

    background:#222;
    color:#fff;

    padding:24px 0;

    margin-top:20px;

}

.footer-inner{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;

    flex-wrap:wrap;

}

.footer-counter{

    font-family:
        "Courier New",
        monospace;

    font-size:14px;

    color:#7CFC00;

    background:#111;

    border:1px solid #444;

    padding:4px 10px;

    border-radius:4px;

    letter-spacing:2px;

}

.footer-copy{

    font-size:14px;
    line-height:1.8;

    color:#ddd;

}

.footer-admin a{

    color:#fff;

    font-size:13px;

    opacity:0.7;

}

.footer-admin a:hover{

    opacity:1;

}

.footer-update{

    color:#ccc;

    font-size:13px;

    white-space:nowrap;

}

/* =========================
   CONTACT FORM
========================= */

.contact-wrapper{

    max-width:900px;

    margin:auto;

}

.contact-header{

    margin-bottom:40px;

}

.contact-lead{

    font-size:17px;

    color:#666;

    line-height:1.9;

}

.contact-form{

    position:relative;

    background:#fff;

    padding:40px;

    border-radius:16px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);

}

.form-group{

    margin-bottom:30px;

}

.form-group label{

    display:block;

    font-weight:bold;

    margin-bottom:10px;

    font-size:16px;

}

.required{

    display:inline-block;

    margin-left:8px;

    background:#d32f2f;

    color:#fff;

    font-size:12px;

    padding:2px 8px;

    border-radius:20px;

    vertical-align:middle;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    border:1px solid #ccc;

    border-radius:10px;

    padding:16px;

    font-size:16px;

    transition:0.3s;

    background:#fff;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#0b63ce;

    outline:none;

    box-shadow:
        0 0 0 4px rgba(11,99,206,0.12);

}

.contact-form textarea{

    min-height:220px;

    resize:vertical;

    line-height:1.9;

}

.contact-submit{

    margin-top:40px;

}

.submit-btn{

    background:#0b63ce;

    color:#fff;

    border:none;

    padding:18px 40px;

    font-size:18px;

    font-weight:bold;

    border-radius:10px;

    cursor:pointer;

    transition:0.3s;

}

.submit-btn:hover{

    opacity:0.85;

}

.submit-btn.sending{

    opacity:0.7;

    cursor:not-allowed;

}

.form-error{

    display:none;

    margin-top:10px;

    color:#d32f2f;

    font-size:14px;

    font-weight:bold;

}

.honeypot{

    position:absolute;

    left:-9999px;

    width:1px;
    height:1px;

    overflow:hidden;

}

.confirm-box{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);

    margin-bottom:40px;

}

.confirm-item{

    border-bottom:1px solid #eee;

}

.confirm-item:last-child{

    border-bottom:none;

}

.confirm-label{

    background:#f7f7f7;

    padding:16px 24px;

    font-weight:bold;

}

.confirm-value{

    padding:24px;

    line-height:2;

}

.button-row{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.back-btn{

    display:inline-block;

    background:#666;

    color:#fff;

    padding:18px 40px;

    border-radius:10px;

    font-weight:bold;

}

.complete-message{

    font-size:18px;

    line-height:2;

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .header-inner{

        flex-direction:column;
        align-items:flex-start;

    }

    .mobile-header{

        width:100%;

        display:flex;

        justify-content:space-between;

        align-items:center;

    }

    .site-title{

        font-size:16px;

    }

    .site-logo-image{

        width:42px;

    }

    .logo-image-wrap{

        padding:3px;

    }

    .menu-toggle{

        display:block;

        font-size:26px;

        z-index:1001;

        position:relative;

    }

    .site-nav{

        display:none;

        flex-direction:column;

        width:100%;

        position:relative;

        z-index:1000;

        margin-top:14px;

        background:#333;

        padding:16px;

        border-radius:10px;

        gap:0;

    }

    .site-nav.show{

        display:flex;

    }

    .site-nav a{

        width:100%;

        padding:12px 0;

        border-bottom:
            1px solid rgba(255,255,255,0.1);

        font-size:16px;

    }

    /* HERO */

    .hero{

        min-height:60vh;

        padding:30px 20px;

    }

    .hero h1{

        font-size:28px;

    }

    .btn{

        width:100%;

        padding:14px 20px;

        font-size:16px;

    }

    /* BREAKING */

    .breaking-track{

        padding:5px 0;

        animation-duration:18s;

    }

    .breaking-track span{

        font-size:14px;

    }

    /* INFO */

    .info-grid{

        grid-template-columns:1fr;

    }

    .info-box h2{

        font-size:22px;

    }

    .news-item{

        flex-direction:column;

        gap:4px;

    }

    /* PAGE */

    .page-box{

        padding:24px;

    }

    .page-title{

        font-size:28px;

    }

    .news-body{

        font-size:16px;

    }

    /* ACCESS */

    .access-grid{

        grid-template-columns:1fr;

    }

    .access-title{

        font-size:24px;

    }

    .access-text{

        font-size:16px;

    }

    .access-lead{

        font-size:16px;

    }

    /* FAQ */

    .faq-page-title{

        font-size:24px;

    }

    .faq-question-btn{

        font-size:14px;

        line-height:1.6;

    }

    .faq-answer{

        font-size:13px;

    }

    /* ABOUT */

    .about-top-grid{

        grid-template-columns:1fr;

    }

    .about-logo-box{

        order:1;

    }

    .about-notice-box{

        order:2;

    }

    .about-main-grid{

        grid-template-columns:1fr;

    }

    .about-logo{

        width:170px;

    }

    .about-text{

        font-size:15px;

        line-height:1.75;

    }

    .about-title{

        font-size:24px;

    }

    .about-table th,
    .about-table td{

        display:block;

        width:100%;

        font-size:15px;

    }

    .about-table th{

        border-bottom:none;

        padding-bottom:4px;

    }

    .about-table td{

        padding-top:0;

        margin-bottom:10px;

    }

    /* CONTACT */

    .contact-form{

        padding:24px;

    }

    .contact-lead{

        font-size:15px;

    }

    .submit-btn,
    .back-btn{

        width:100%;

        text-align:center;

    }

    /* SOCIAL */

    .social-icons img{

        width:26px;

    }

    /* FOOTER */

    .footer-inner{

        flex-direction:column;

        gap:12px;

    }

}
/* =========================
   RIDE PAGE
========================= */

.ride-main-title{

    font-size:30px;

    margin-bottom:12px;

}

.ride-page-lead{

    font-size:15px;

    line-height:1.9;

    color:#555;

}

/* =========================
   TAB MENU
========================= */

.ride-tabs-wrap{

    display:flex;

    gap:10px;

    margin:24px 0 28px;

    overflow-x:auto;

    padding-bottom:6px;

    scrollbar-width:none;

}

.ride-tabs-wrap::-webkit-scrollbar{

    display:none;

}

.ride-tab-btn{

    background:#eee;

    border:none;

    padding:12px 18px;

    border-radius:999px;

    cursor:pointer;

    white-space:nowrap;

    font-size:14px;

    transition:0.3s;

    color:#333;

}

.ride-tab-btn:hover{

    background:#d9d9d9;

}

.ride-tab-btn.active{

    background:#0b63ce;

    color:#fff;

}

/* =========================
   TAB CONTENT
========================= */

.ride-tab-content{

    display:none;

}

.ride-tab-content.active{

    display:block;

}

/* =========================
   HOLDER
========================= */

.ride-holder{

    display:grid;

    grid-template-columns:
        1.4fr 1fr;

    gap:24px;

    margin-bottom:28px;

}

.ride-left,
.ride-right{

    height:100%;

}

.ride-title{

    font-size:22px;

    margin-bottom:18px;

    line-height:1.5;

}

.ride-text{

    font-size:15px;

    line-height:1.9;

    color:#444;

}

.ride-text p{

    margin-bottom:18px;

}

.ride-image{

    width:100%;

    height:auto;

    display:block;

    border-radius:12px;

}

/* =========================
   TABLE
========================= */

.ride-table{

    width:100%;

    border-collapse:collapse;

    margin-bottom:24px;

}

.ride-table th,
.ride-table td{

    border-bottom:
        1px solid #ddd;

    padding:12px 10px;

    vertical-align:top;

    text-align:left;

    font-size:14px;

    line-height:1.8;

}

.ride-table th{

    width:120px;

    background:#fafafa;

    font-weight:bold;

}

/* =========================
   LIST
========================= */

.ride-list,
.ride-warning-list{

    padding-left:22px;

}

.ride-list li,
.ride-warning-list li{

    margin-bottom:12px;

    line-height:1.9;

}

/* =========================
   COMING SOON
========================= */

.ride-comingsoon{

    text-align:center;

    padding:60px 20px;

    font-size:16px;

    line-height:2;

    color:#666;

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .ride-main-title{

        font-size:26px;

    }

    .ride-page-lead{

        font-size:14px;

    }

    .ride-holder{

        grid-template-columns:1fr;

    }

    .ride-title{

        font-size:20px;

    }

    .ride-text{

        font-size:14px;

    }

    .ride-tab-btn{

        font-size:13px;

        padding:10px 16px;

    }

    .ride-table th,
    .ride-table td{

        display:block;

        width:100%;

        font-size:14px;

    }

    .ride-table th{

        border-bottom:none;

        padding-bottom:4px;

    }

    .ride-table td{

        padding-top:0;

        margin-bottom:12px;

    }

}
/* =========================
   RIDE TOP COMPACT
========================= */

.page-section{

    padding-top:20px;

}

.compact-ride-title-box{

    padding:20px 24px;

    margin-bottom:16px;

}

.ride-main-title{

    font-size:26px;

    line-height:1.4;

    margin-bottom:8px;

}

.ride-page-lead{

    font-size:14px;

    line-height:1.7;

    margin-bottom:0;

}

.ride-tabs-wrap{

    margin-top:0;

    margin-bottom:18px;

}

@media(max-width:900px){

    .page-section{

        padding-top:12px;

    }

    .compact-ride-title-box{

        padding:16px 16px;

        margin-bottom:12px;

    }

    .ride-main-title{

        font-size:22px;

    }

    .ride-page-lead{

        font-size:13px;

    }

}
/* =========================
   ADMIN
========================= */

.admin-body{

    background:#f5f7fa;

    margin:0;

    padding:30px;

}

.admin-container{

    max-width:1000px;

    margin:0 auto;

    background:#fff;

    padding:30px;

    border-radius:10px;

    box-shadow:
        0 2px 10px rgba(0,0,0,0.08);

}

.admin-container h1{

    margin-top:0;

    margin-bottom:25px;

    font-size:28px;

}

.admin-form label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:bold;

}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form textarea{

    width:100%;

    padding:10px;

    border:1px solid #ccc;

    border-radius:6px;

    box-sizing:border-box;

}

.admin-form textarea{

    resize:vertical;

}

.admin-btn{

    display:inline-block;

    background:#0066cc;

    color:#fff;

    padding:10px 18px;

    border:none;

    border-radius:6px;

    text-decoration:none;

    cursor:pointer;

}

.admin-btn:hover{

    opacity:0.9;

}

.danger-btn{

    background:#cc0000;

}

.admin-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}

.admin-table th,
.admin-table td{

    border:1px solid #ddd;

    padding:10px;

    text-align:left;

}

.admin-table th{

    background:#f0f0f0;

}

.success-message{

    background:#e6ffea;

    border:1px solid #66cc88;

    padding:12px;

    margin-bottom:20px;

    border-radius:6px;

}
/* =========================
   MINI CALENDAR
========================= */

.mini-calendar{

    width:100%;

}

.calendar-header{

    font-size:24px;

    font-weight:bold;

    text-align:center;

    margin-bottom:15px;

}

.calendar-table{

    width:100%;

    border-collapse:collapse;

    text-align:center;

}

.calendar-table th{

    background:#f0f0f0;

    padding:10px;

    border:1px solid #ddd;

}

.calendar-table td{

    padding:14px 6px;

    border:1px solid #ddd;

}

.ride-day{

    background:#dff4ff;

    color:#0066cc;

    font-weight:bold;

}

.calendar-note{

    margin-top:12px;

    font-size:13px;

    color:#666;

    text-align:right;

}
/* =========================
   RIDE CALENDAR YEARS
========================= */

.ride-calendar-years{

    display:flex;

    gap:40px;

    margin-top:20px;

}

.ride-calendar-year{

    flex:1;

}

.ride-calendar-note{

    margin-top:25px;

    font-size:14px;

    color:#666;

}

/* MOBILE */

@media screen and (max-width:768px){

    .ride-calendar-years{

        flex-direction:column;

        gap:10px;

    }

}

/* =========================
   RIDE CALENDAR LAYOUT
========================= */

#calendar .ride-holder{

    display:flex;

    gap:30px;

    align-items:stretch;

}

#calendar .ride-left{

    flex:1;

    display:flex;

    flex-direction:column;

}

#calendar .ride-right{

    flex:1;

}

/* MOBILE */

@media screen and (max-width:768px){

    #calendar .ride-holder{

        flex-direction:column;

    }

}