/* ===================================
   新潟市ハイヤータクシー協会
   style_new.css Ver.3.0 Complete
   2026
=================================== */

/* ===================================
   01. Reset / Base
=================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
    background:#f7f8f5;
    color:#333;
    line-height:1.8;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================
   02. Colors / Common Parts
=================================== */
:root{
    --navy:#163c68;
    --blue:#1E4F8A;
    --gold:#D9B44A;
    --bg:#f7f8f5;
    --text:#333;
    --muted:#666;
    --white:#fff;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --shadow-strong:0 18px 40px rgba(0,0,0,.12);
}

.container{
    width:min(1100px,90%);
    margin:80px auto;
}

.container h2{
    max-width:760px;
    margin:0 auto 25px;
    font-size:36px;
    font-weight:600;
    color:var(--blue);
}

.container p{
    max-width:900px;
    margin:0 auto;
    font-size:18px;
    line-height:2.2;
    color:#555;
}

.btn,
button[type="submit"]{
    display:inline-block;
    padding:18px 42px;
    background:var(--blue);
    color:#fff;
    border-radius:50px;
    border:none;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn:hover,
button[type="submit"]:hover{
    background:var(--navy);
}

.btn-light{
    background:#fff;
    color:var(--blue);
    border:2px solid var(--blue);
}

.btn-light:hover{
    background:#f4f8fc;
}

.notice-card,
.news-list-card,
.today-card,
.role-card,
.quick-card,
.company-item,
.contact-page section{
    background:#fff;
    border-radius:18px;
    box-shadow:var(--shadow);
}

/* ===================================
   03. Header / Navigation
=================================== */
.site-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:30px 60px;
    background:transparent;
    text-align:left;
    z-index:1000;
}

.site-header h1{
    color:#fff;
    font-size:34px;
    font-weight:300;
    letter-spacing:2px;
    text-shadow:0 3px 10px rgba(0,0,0,.4);
}

.taxi-icon{
    font-size:18px;
    margin-right:6px;
}

.nav{
    position:absolute;
    top:90px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:45px;
    z-index:1000;
}

.nav a{
    color:#fff;
    font-size:16px;
    font-weight:500;
    text-shadow:0 2px 8px rgba(0,0,0,.6);
}

.nav a:hover{
    opacity:.75;
}

.menu-btn{
    display:none;
}

/* 下層ページ共通ヘッダー */
.page-header{
    background:var(--navy);
    color:#fff;
    padding:28px 60px;
    display:block;
}

.page-header h1{
    font-size:26px;
    font-weight:300;
    letter-spacing:2px;
    margin:0 0 18px 0;
    white-space:normal;
}

.page-header .nav{
    position:static;
    width:100%;
    display:flex;
    justify-content:flex-start;
    gap:34px;
    flex-wrap:wrap;
    margin:0;
}

.page-header .nav a{
    color:#fff;
    font-size:16px;
    text-shadow:none;
    white-space:nowrap;
}

/* ===================================
   04. Hero / Top Page
=================================== */
.hero-banner{
    position:relative;
    height:85vh;
    overflow:hidden;
}

.hero-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}


.hero-overlay{
    position:absolute;
    inset:0;
  background:rgba(0,0,0,.18);
    display:flex;
    align-items:center;
}

.hero-copy{
    width:1200px;
    margin:0;
    padding:220px 0 0 100px;
    color:#fff;
}

.hero-sub{
    font-size:15px;
    letter-spacing:4px;
    margin-bottom:35px;
}
.hero-copy h2{
    font-size:74px;
    font-weight:300;
    line-height:1.3;
    margin-bottom:35px;
    text-shadow: 2px 2px 10px rgba(0,0,0,.45);
}


.hero-message{
    font-size:26px;
    font-weight:400;
    line-height:2;
    color:rgba(255,255,255,.96);
    text-shadow:0 2px 8px rgba(0,0,0,.35);
    margin-bottom:60px;
}

.scroll-link{
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.6);
    padding-bottom:8px;
}

/* ===================================
   05. Quick Menu
=================================== */
.quick-menu{
    width:min(1100px,90%);
    margin:-60px auto 80px;
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.quick-card{
    padding:40px 24px;
    color:#333;
    text-align:center;
    min-height:230px;
    transition:.3s;
}

.quick-card:hover{
    transform:translateY(-6px);
}

.quick-icon{
    font-size:42px;
    margin-bottom:18px;
}

.quick-card h3{
    font-size:22px;
    font-weight:600;
    color:var(--blue);
    margin-bottom:12px;
}

.quick-card p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* ===================================
   06. Notice / News
=================================== */
.notice-card{
    padding:35px;
}

.news-date{
    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.notice-card h3{
    color:var(--blue);
    font-size:24px;
    margin-bottom:18px;
}

.notice-card p{
    line-height:2;
    margin-bottom:20px;
}

/* トップページ・期間限定のお知らせ */
.home-news{
    margin-top:55px;
    margin-bottom:75px;
}

.home-news > h2{
    margin:0 0 18px;
    color:var(--blue);
    font-size:28px;
}

.home-news-card{
    display:grid;
    grid-template-columns:135px minmax(0,1fr) auto;
    align-items:center;
    gap:24px;
    padding:24px 28px;
    border-left:6px solid var(--gold);
    border-radius:14px;
}

.home-news-meta{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.home-news-meta span{
    color:var(--gold);
    font-size:12px;
    font-weight:800;
    letter-spacing:.15em;
}

.home-news-meta time{
    color:#657383;
    font-size:14px;
    font-weight:600;
}

.home-news-text h3{
    margin:0 0 5px;
    color:var(--blue);
    font-size:21px;
}

.home-news-text p{
    margin:0;
    color:#596675;
    font-size:15px;
    line-height:1.7;
}

.home-news-btn{
    white-space:nowrap;
}

@media(max-width:768px){
    .home-news{
        margin-top:45px;
        margin-bottom:60px;
    }

    .home-news > h2{
        font-size:24px;
    }

    .home-news-card{
        grid-template-columns:1fr;
        gap:14px;
        padding:24px 20px;
    }

    .home-news-meta{
        flex-direction:row;
        align-items:center;
        gap:12px;
    }

    .home-news-text h3{
        font-size:20px;
    }

    .home-news-btn{
        width:100%;
        text-align:center;
    }
}

.news-list{
    display:grid;
    gap:28px;
}

.news-list-card{
    padding:38px;
}

.news-list-card h3{
    color:var(--blue);
    font-size:26px;
    margin-bottom:18px;
}

.news-list-card p{
    line-height:2;
    margin-bottom:20px;
}

.news-list-card .btn{
    margin-top:10px;
}

.news-button-row{
    display:flex;
    gap:18px;
    margin-top:30px;
    flex-wrap:wrap;
}

.news-section-heading{
    border-left:6px solid var(--blue);
    padding-left:16px;
    margin-top:50px;
    margin-bottom:22px;
    color:var(--blue);
    font-size:28px;
    font-weight:600;
}

.flyer-image{
    width:100%;
    max-width:380px;
    margin:20px auto 25px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.flyer-image:hover{
    transform:scale(1.02);
}

.back-link{
    text-align:center;
    margin-top:40px;
}

.back-link a{
    color:var(--blue);
    font-weight:600;
    font-size:16px;
}

.back-link a:hover{
    text-decoration:underline;
}

.contact-box{
    margin-top:30px;
    padding:35px;
    border-radius:16px;
}

.contact-box p{
    margin-bottom:22px;
}

.contact-box hr{
    margin:30px 0;
}

/* ===================================
   07. Today's NIIGATA
=================================== */
.today-niigata{
    width:min(1100px,90%);
    margin:100px auto;
}

.section-title{
    margin-bottom:35px;
}

.section-title p{
    color:#d8a928;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
}

.section-title h2{
    font-size:52px;
    color:var(--blue);
    margin-top:10px;
    margin-bottom:25px;
}

.section-message{
    max-width:900px;
    margin:20px auto 70px;
    padding:0 20px;
    text-align:center;
    font-size:20px;
line-height:2;
    color:#555;
    font-weight:500;
}

.today-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:28px;
}

.today-card{
    overflow:hidden;
}

.today-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.today-card.large img{
    height:360px;
}

.hero-photo-credit{
    position:absolute;
    right:18px;
    bottom:72px;
    z-index:4;
    margin:0;
    padding:5px 9px;
    border-radius:4px;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:12px;
    line-height:1.4;
}

.today-image-wrap{
    position:relative;
}

.today-image-credit{
    position:absolute;
    right:12px;
    bottom:12px;
    padding:5px 9px;
    border-radius:4px;
    background:rgba(0,0,0,.58);
    color:#fff;
    font-size:12px;
    line-height:1.4;
}

.today-text{
    padding:28px;
}

.today-date{
    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.today-text h3{
    color:var(--blue);
    font-size:24px;
    margin-bottom:14px;
}

.today-text p{
    line-height:1.9;
}

.mini-topic{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid #e5e8ec;
}

.mini-topic strong{
    display:block;
    color:var(--blue);
    font-size:16px;
    margin-bottom:6px;
}

.mini-topic p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

.fireworks-card{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.35fr 1fr;
    align-items:stretch;
    margin-top:10px;
}

.fireworks-visual{
    margin:0;
    position:relative;
    min-height:380px;
    background:#0d2644;
}

.today-card .fireworks-visual img{
    display:block;
    width:100%;
    height:100%;
    min-height:380px;
    object-fit:cover;
}

.fireworks-visual figcaption{
    position:absolute;
    left:14px;
    bottom:12px;
    padding:5px 9px;
    border-radius:4px;
    background:rgba(0,0,0,.58);
    color:#fff;
    font-size:12px;
    line-height:1.4;
}

.fireworks-details{
    margin-top:18px;
}

.fireworks-details span{
    display:inline-block;
    margin-top:8px;
    font-size:14px;
    color:#666;
}

/* ===================================
   08. Role Cards
=================================== */
.role-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:30px;
}

.role-card{
    padding:40px 28px;
    text-align:center;
    transition:.3s;
}

.role-card:hover{
    transform:translateY(-6px);
}

.role-icon{
    font-size:38px;
    margin-bottom:16px;
}

.role-card h3{
    font-size:22px;
    color:var(--blue);
    line-height:1.5;
    margin-bottom:12px;
}

.role-card p{
    font-size:15px;
    line-height:1.9;
    color:#555;
}

/* ===================================
   09. お問い合わせ・フォーム・プライバシー・協会概要
   （contact.php / form_wasure.php / privacy.php / about_niigata.php）
=================================== */
.contact-page{
    width:min(900px,90%);
    margin:80px auto;
    padding-top:40px;
    padding-bottom:60px;
}

.contact-title{
    margin-bottom:40px;
}

.contact-title p:first-child{
    color:var(--gold);
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:10px;
}

.contact-title h2{
    font-size:36px;
    font-weight:300;
    color:var(--blue);
    margin-bottom:20px;
}

.contact-page section{
    padding:35px 40px;
    margin-bottom:30px;
}

.contact-page section h2{
    color:var(--blue);
    font-size:34px;
    margin-bottom:25px;
}

.contact-page section p,
.contact-page section li{
    font-size:18px;
    line-height:2;
}

.contact-page ul{
    padding-left:25px;
}

.contact-form label{
    display:block;
    margin-top:18px;
    margin-bottom:8px;
    font-weight:600;
}

.contact-form label span{
    color:#d9534f;
    margin-left:4px;
    font-size:13px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    min-height:58px;
    padding:16px 18px;
    border:1px solid #d6dce5;
    border-radius:10px;
    font-size:16px;
    background:#fff;
}

.contact-form textarea{
    min-height:180px;
    line-height:1.8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9aa3ad;
}

.date-time-row{
    display:flex;
    gap:12px;
    align-items:center;
}

.date-time-row input{
    flex:2;
}

.date-time-row select{
    flex:1;
}

.radio-group{
    background:#f7f8f5;
    padding:20px;
    border-radius:12px;
    border:1px solid #e2e6ea;
}

.radio-group label{
    display:block;
    margin:10px 0;
    font-weight:400;
}

.radio-group input{
    width:auto;
    min-height:auto;
    margin-right:8px;
}

.privacy-check{
    margin-top:35px;
    padding:24px;
    background:#f7f8f5;
    border-radius:14px;
    border:1px solid #e2e6ea;
}

.privacy-check p{
    margin-bottom:15px;
}

.privacy-check input,
.agree-label input{
    width:auto;
    min-height:auto;
    margin-right:8px;
}

/* ===================================
   10. 加盟会社一覧（company.php）
=================================== */
.company-list{
    margin-top:40px;
}

.area-title{
    margin:50px 0 20px;
    padding:8px 0 8px 14px;
    border-left:5px solid var(--blue);
    color:var(--blue);
    font-size:28px;
    font-weight:700;
    background:none;
    border-radius:0;
}

.company-item{
    padding:30px 36px;
    border-left:6px solid var(--blue);
    margin-bottom:24px;
    transition:.3s;
}

.company-item:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-strong);
}

.company-item strong{
    display:block;
    font-size:28px;
    color:#1f4f8d;
    margin-bottom:12px;
}

.company-item strong::before{
    content:"🚖 ";
    font-size:20px;
    margin-right:6px;
}

.address{
    margin:10px 0 14px;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.call{
    display:inline-block;
    margin:8px 8px 8px 0;
    padding:12px 22px;
    background:#eef4fb;
    color:#1f4f8d;
    font-size:17px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 2px 8px rgba(31,79,141,.12);
    transition:all .2s ease;
}

.call:hover{
    background:#dfeaf6;
    text-decoration:none;
    transform:translateY(-2px);
}



.company-item > a:not(.call){
    display:inline-block;
    margin-top:8px;
    padding:10px 22px;
    background:var(--blue);
    color:#fff;
    border-radius:30px;
    font-weight:600;
}

.company-item > a:not(.call):hover{
    background:var(--navy);
    text-decoration:none;
}

/* ===================================
   11. フッター（共通）
=================================== */
footer,
.site-footer{
    background:var(--navy);
    color:#fff;
    text-align:center;
    padding:55px 20px;
    margin-top:0px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:26px;
    margin-bottom:25px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    opacity:.95;
    letter-spacing:.03em;
    transition:.25s;
}

.footer-links a:hover{
    opacity:1;
    text-decoration:underline;
}

.footer-copy{
    font-size:14px;
    color:rgba(255,255,255,.85);
    opacity:1;
    letter-spacing:.04em;
}

/* ===================================
   12. レスポンシブ対応
=================================== */
@media(max-width:900px){
    .quick-menu,
    .role-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .site-header,
    .page-header{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        padding:10px 20px;
        background:rgba(22,60,104,.85);
        z-index:3000;
    }

    .site-header h1,
    .page-header h1{
        font-size:17px;
        line-height:1.2;
        margin:0;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        padding-right:55px;
    }

    .menu-btn{
        display:block;
        position:fixed;
        right:18px;
        top:8px;
        background:none;
        border:none;
        color:#fff;
        font-size:32px;
        cursor:pointer;
        z-index:6000;
    }

    .nav{
        display:none !important;
    }

    .nav.open{
        display:flex !important;
        position:fixed !important;
        top:0;
        right:0;
        left:auto;
        width:78%;
        height:100vh;
        flex-direction:column;
        background:linear-gradient(180deg,#163c68,#1E4F8A);
        padding:85px 28px 30px;
        gap:0;
        z-index:5000;
        box-shadow:-12px 0 30px rgba(0,0,0,.25);
    }

    .nav.open a{
        display:block;
        padding:18px 0;
        border-bottom:1px solid rgba(255,255,255,.18);
        color:#fff;
        font-size:17px;
        font-weight:600;
        letter-spacing:.5px;
        text-shadow:none;
    }

    .nav.open a:first-child{
        border-top:1px solid rgba(255,255,255,.18);
    }

  .hero-banner{
    height:70vh;
}

.hero-banner img{
    object-position:center 30%;
}

.hero-overlay{
    background:rgba(0,0,0,.12);
}

.hero-copy{
    padding:150px 20px 35px;
    width:auto;
}

.hero-copy h2{
    font-size:42px;
}

    .hero-message{
    font-size:18px;
}  

    .hero-photo-credit{
        right:10px;
        bottom:9px;
        font-size:10px;
    }

    .today-image-credit{
        right:8px;
        bottom:8px;
        font-size:10px;
    }

    .quick-menu{
        grid-template-columns:1fr;
        margin:40px auto;
    }

    .today-grid{
        grid-template-columns:1fr;
    }

    .today-card.large img{
        height:260px;
    }

    .fireworks-card{
        grid-template-columns:1fr;
    }

    .fireworks-visual,
    .today-card .fireworks-visual img{
        min-height:250px;
    }

    .section-title h2{
        font-size:40px;
    }

    .date-time-row{
        flex-direction:column;
        align-items:stretch;
    }

    .company-item{
        padding:24px;
    }

    .company-item strong{
        font-size:21px;
    }

    .call{
        font-size:16px;
        padding:10px 16px;
    }

    .area-title{
        font-size:22px;
        margin:40px 0 18px;
    }

    .footer-links{
        flex-direction:column;
        gap:15px;
    }

    .footer-links a{
        font-size:16px;
    }
}

@media(max-width:600px){
    .role-grid{
        grid-template-columns:1fr;
    }

    .contact-page section{
        padding:28px 24px;
    }
}
/* ===================================
   加盟会社一覧 区ショートカット
=================================== */

.area-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 45px;
}

.area-shortcuts a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #1f4f8d;
    border-radius: 999px;
    color: #1f4f8d;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.area-shortcuts a:hover {
    background: #1f4f8d;
    color: #fff;
}

.area-title {
    scroll-margin-top: 90px;
}

@media screen and (max-width: 768px) {

    .area-shortcuts {
        gap: 10px;
        margin: 24px 0 38px;
    }

    .area-shortcuts a {
        padding: 9px 14px;
        font-size: 14px;
    }

}
/* ===================================
   加盟会社一覧 地域別会社数
=================================== */

.area-count {
    display: inline-block;
    margin-left: 10px;
    color: #7b858d;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {

    .area-count {
        margin-left: 7px;
        font-size: 14px;
    }

}
/* ===================================
   加盟会社一覧 公式サイトなし案内
=================================== */

.no-website {
    margin: 14px 0 0;
    color: #6f777d;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {

    .no-website {
        margin-top: 12px;
        font-size: 13px;
    }

}
/* ===================================
   タクシー運賃・料金ページ
=================================== */

.fare-section {
    padding: 35px 0 110px;
}

.fare-section .container {
    max-width: 960px;
}

.fare-area-note {
    margin-bottom: 55px;
    padding: 30px;
    background: #f4f7fa;
    border-left: 5px solid #185590;
    border-radius: 0 14px 14px 0;
}

.fare-area-note h2 {
    margin: 0 0 15px;
    color: #164f89;
    font-size: 24px;
}

.fare-area-note p {
    margin: 0;
    line-height: 1.9;
}

.fare-area-note .fare-revision {
    margin-top: 14px;
    color: #925f00;
    font-weight: 700;
}

.fare-main-title,
.fare-sub-title {
    color: #164f89;
    line-height: 1.5;
}

.fare-main-title {
    margin: 0 0 25px;
    font-size: 32px;
}

.fare-sub-title {
    margin: 65px 0 25px;
    padding-left: 15px;
    border-left: 5px solid #185590;
    font-size: 27px;
}

.fare-highlight-card {
    padding: 15px 35px;
    background: #fff;
    border: 1px solid #dce4eb;
    border-left: 6px solid #185590;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(18, 54, 83, 0.09);
}

.fare-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 21px 0;
    border-bottom: 1px solid #e1e6ea;
}

.fare-row:last-child {
    border-bottom: 0;
}

.fare-row span {
    color: #59646d;
}

.fare-row strong {
    color: #124d88;
    font-size: 22px;
    text-align: right;
}

.fare-notice {
    margin-top: 22px;
    padding: 20px 22px;
    background: #fff8e9;
    border-radius: 12px;
}

.fare-notice p {
    margin: 0;
    line-height: 1.8;
}

.fare-notice p + p {
    margin-top: 12px;
}

.fare-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.fare-card,
.fare-simple-card,
.fare-guide {
    padding: 30px;
    background: #fff;
    border: 1px solid #dce4eb;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(18, 54, 83, 0.08);
}

.fare-card h3,
.fare-simple-card h3 {
    margin: 0 0 20px;
    color: #164f89;
    font-size: 22px;
}

.fare-card dl {
    margin: 0;
}

.fare-card dl div {
    padding: 15px 0;
    border-bottom: 1px solid #e4e8ec;
}

.fare-card dl div:last-child {
    border-bottom: 0;
}

.fare-card dt {
    margin-bottom: 5px;
    color: #6b737a;
    font-size: 14px;
}

.fare-card dd {
    margin: 0;
    color: #173e68;
    font-weight: 700;
}

.fare-simple-card p,
.fare-guide p {
    line-height: 1.9;
}

.fare-simple-card hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #e0e5e9;
}

.fare-large-text {
    color: #164f89;
    font-size: 21px;
}

.fare-small-note {
    color: #606a72;
    font-size: 14px;
}

.fare-guide {
    text-align: center;
}

.fare-guide a {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 24px;
    color: #fff;
    background: #155493;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.fare-guide a:hover {
    opacity: 0.85;
}


/* スマートフォン */
@media screen and (max-width: 768px) {

    .fare-section {
        padding: 55px 0 85px;
    }

    .fare-area-note {
        margin-bottom: 45px;
        padding: 24px 20px;
    }

    .fare-area-note h2 {
        font-size: 21px;
    }

    .fare-main-title {
        font-size: 27px;
    }

    .fare-sub-title {
        margin-top: 55px;
        font-size: 24px;
    }

    .fare-highlight-card {
        padding: 8px 22px;
    }

    .fare-row {
        display: block;
        padding: 20px 0;
    }

    .fare-row span {
        display: block;
        margin-bottom: 8px;
    }

    .fare-row strong {
        display: block;
        font-size: 19px;
        text-align: left;
    }

    .fare-card-grid {
        grid-template-columns: 1fr;
    }

    .fare-card,
    .fare-simple-card,
    .fare-guide {
        padding: 25px 22px;
    }

    .fare-guide a {
        width: 100%;
        padding: 15px 12px;
    }
}
.fare-target{
    margin-top:18px;
    color:#666;
    font-size:15px;
    line-height:1.8;
}
.fare-area-list{
    margin:15px 0;
    padding-left:22px;
    line-height:2;
}

.fare-area-list li{
    margin-bottom:3px;
}
/* ==========================
   運賃ページ タイトル
========================== */

.fare-page .contact-title{
    max-width:960px;
    margin:55px auto 35px;
    padding:0 20px;
    text-align:center;
}

.fare-page .contact-title p:first-child{
    color:#c89b3c;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:12px;
}

.fare-page .contact-title h2{
    font-size:48px;
    color:#1E4F8A;
    font-weight:300;
    margin-bottom:22px;
}

.fare-page .contact-title p{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.fare-page .fare-target{
    margin-top:18px;
    font-size:15px;
    color:#777;
}

@media screen and (max-width:768px){

    .fare-page .contact-title{
        margin:45px auto;
        text-align:left;
    }

    .fare-page .contact-title h2{
        font-size:36px;
    }

    .fare-page .contact-title p{
        font-size:16px;
    }
}
.fare-company-note{
    margin-top:24px;
    padding-top:18px;
    border-top:1px solid #e4e8ec;
    color:#666;
    font-size:14px;
    line-height:1.8;
}
@media screen and (max-width:768px){

    .fare-company-note{
        font-size:13px;
        line-height:1.9;
    }

}
.home-bottom-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:24px;
    flex-wrap:wrap;
}

.home-bottom-links .btn{
    min-width:210px;
    text-align:center;
}

@media screen and (max-width:768px){

    .home-bottom-links{
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

   .home-bottom-links .btn{
    width:95%;
    max-width:420px;
    text-align:center;
}

}
.section-lead{
    max-width:900px;
    margin:8px auto 40px;
    text-align:center;
    font-size:22px;
    font-weight:300;
    color:#1e4f8a;
    line-height:1.8;
}

@media screen and (max-width:768px){

    .section-lead{
        font-size:17px;
        text-align:left;
        margin-bottom:25px;
    }

}
/* ごあいさつ */

.greeting-text{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:2.3;
    color:#444;
    text-align:left;
}
.role-title{
    margin-top:80px;
}
/* トップページ締めメッセージ */

.closing-message{
    padding:45px 20px 35px;
    text-align:center;
}

.closing-message p{
    max-width:760px;
    margin:0 auto 20px;
    font-size:21px;
    line-height:2;
    color:#4f4f4f;
    font-weight:400;
}

.closing-message p:last-child{
    margin-bottom:0;
}
.pc-only{
    display:inline;
}

@media screen and (max-width:768px){
    .pc-only{
        display:none;
    }
}

/* ===================================
   乗務員募集ページ・トップ募集案内
=================================== */
.home-recruit-notice{margin:70px 0 35px;padding:30px 32px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:24px;background:#fff;border:1px solid #dce6ef;border-left:6px solid var(--gold);border-radius:14px;box-shadow:0 10px 28px rgba(20,55,90,.09)}
.home-recruit-notice-icon{display:grid;place-items:center;width:64px;height:64px;background:#edf4fa;border-radius:50%;font-size:30px}.home-recruit-notice-text{min-width:0}.home-recruit-label{margin:0 0 4px!important;color:var(--blue)!important;font-weight:800;letter-spacing:.1em;font-size:17px!important}.home-recruit-notice h2{margin:0 0 5px;color:var(--navy);font-size:clamp(25px,3vw,32px);font-weight:700;line-height:1.4}.home-recruit-notice p{margin:0;color:#596675;font-size:17px;line-height:1.7}.home-recruit-btn{display:inline-block;white-space:nowrap;background:var(--blue);color:#fff;padding:14px 24px;border-radius:99px;font-size:16px;font-weight:700}.home-recruit-btn:hover{background:var(--navy);color:#fff}
.recruit-page{background:#fff}.recruit-hero{min-height:620px;position:relative;display:grid;place-items:center;background:linear-gradient(90deg,rgba(10,35,64,.92) 0%,rgba(10,35,64,.76) 39%,rgba(10,35,64,.22) 68%,rgba(10,35,64,.12)),url('images/spots/bandai_bridge.jpg') center/cover}.recruit-hero-inner,.recruit-wrap{width:min(1120px,90%);margin:auto}.recruit-hero-inner{color:#fff}.recruit-eyebrow{color:#efd47f;font-weight:700;letter-spacing:.16em}.recruit-hero h2{font-size:clamp(36px,6vw,68px);line-height:1.35;margin:0 0 20px;letter-spacing:.05em}.recruit-hero-lead{font-size:clamp(18px,2.2vw,25px);margin-bottom:35px}.recruit-buttons{display:flex;gap:14px;flex-wrap:wrap}.recruit-button{display:inline-block;padding:15px 25px;border-radius:999px;font-weight:700}.recruit-button-gold{background:var(--gold);color:#172a40}.recruit-button-outline{border:1px solid #fff;color:#fff}.recruit-button-blue{background:var(--blue);color:#fff}.recruit-section,.recruit-seminar{padding:86px 0}.recruit-alt{background:#f3f7fb}.recruit-seminar{background:#e7f0f8}.recruit-heading{text-align:center;margin-bottom:44px}.recruit-heading small{color:var(--blue);font-weight:700;letter-spacing:.16em}.recruit-heading h2{font-size:clamp(28px,4vw,42px);color:var(--navy);margin:8px 0 10px}.recruit-heading p{color:#627080;max-width:760px;margin:auto}.recruit-grid-three,.recruit-grid-four{display:grid;gap:22px}.recruit-grid-three{grid-template-columns:repeat(3,1fr)}.recruit-grid-four{grid-template-columns:repeat(4,1fr)}.recruit-photo-card,.recruit-info-card,.recruit-steps article{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 13px 35px rgba(20,55,90,.10)}.recruit-photo-card img{width:100%;height:220px;object-fit:cover}.recruit-photo-card div,.recruit-info-card,.recruit-steps article{padding:25px}.recruit-photo-card h3,.recruit-info-card h3,.recruit-steps h3{color:var(--navy);margin:0 0 8px}.recruit-photo-card p,.recruit-info-card p,.recruit-steps p{color:#576574;margin:0}.recruit-info-card span{font-size:30px}.recruit-checks{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;max-width:850px;margin:auto}.recruit-checks div{background:#fff;border:1px solid #dbe5ef;border-radius:13px;padding:16px 20px;font-weight:700}.recruit-checks div:before{content:'✓';display:inline-grid;place-items:center;width:28px;height:28px;margin-right:10px;border-radius:50%;background:#e2eef9;color:var(--blue)}.recruit-center{text-align:center}.recruit-steps{counter-reset:recruit-step}.recruit-steps article{border-top:5px solid var(--blue)}.recruit-steps article:before{counter-increment:recruit-step;content:'0' counter(recruit-step);display:block;color:var(--gold);font-size:28px;font-weight:800}.recruit-cta{background:linear-gradient(135deg,#163c68,#225c96);color:#fff;text-align:center;padding:78px 0}.recruit-cta h2{font-size:clamp(28px,4vw,42px);margin:0 0 15px}.recruit-cta p{max-width:780px;margin:0 auto 28px}.recruit-disclaimer{font-size:13px;opacity:.84;margin-top:22px!important}
@media(max-width:850px){.recruit-grid-three,.recruit-grid-four{grid-template-columns:1fr 1fr}.recruit-checks{grid-template-columns:1fr}.page-header .nav{gap:20px}}
@media(max-width:570px){.home-recruit-notice{grid-template-columns:auto 1fr;padding:24px 20px;margin-top:50px;gap:15px}.home-recruit-notice-icon{width:52px;height:52px;font-size:25px}.home-recruit-label{font-size:16px!important}.home-recruit-notice h2{font-size:24px}.home-recruit-notice p{font-size:16px}.home-recruit-notice .home-recruit-btn{grid-column:1/-1;text-align:center;width:100%}.recruit-grid-three,.recruit-grid-four{grid-template-columns:1fr}.recruit-hero{min-height:610px;background-position:63% center}.recruit-hero h2{font-size:38px}.recruit-section,.recruit-seminar{padding:62px 0}.recruit-photo-card img{height:210px}.recruit-button{width:100%;text-align:center}}

@media screen and (max-width:768px){
    .contact-page{
        padding-top:75px;
    }
}