*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding-top:105px;
    font-family:
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
    background:#f5f9fd;
    color:#333;
    line-height:1.8;
    overflow-x:hidden;
}

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

.container{
    width:94%;
    max-width:1200px;
    margin:auto;
}

/* ======================
header
====================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:white;
    border-bottom:1px solid #dfeaf5;
    z-index:9999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 0;
}

.logo-link{
    display:flex;
    align-items:center;
    margin-left:-28px;
}

.header-logo{
    height:70px;
    width:auto;
}

.header-right{
    margin-left:auto;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
}

.header-tel a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2c79b9;
    background:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    border:2px solid #2c79b9;
    border-radius:999px;
    padding:6px 16px;
    white-space:nowrap;
}

.tel-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#2c79b9;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    font-weight:bold;
}

nav{
    display:flex;
    gap:18px;
}

nav a{
    color:#2c79b9;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
    white-space:nowrap;
}

.sp-tel-link{
    display:none;
}

/* ======================
hamburger
====================== */

.menu-btn{
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:#2c79b9;
    border-radius:8px;
    position:relative;
    cursor:pointer;
}

.menu-btn span{
    position:absolute;
    left:9px;
    width:24px;
    height:3px;
    background:white;
    border-radius:3px;
    transition:0.3s;
}

.menu-btn span:nth-child(1){
    top:11px;
}

.menu-btn span:nth-child(2){
    top:19px;
}

.menu-btn span:nth-child(3){
    top:27px;
}

body.menu-open .menu-btn span:nth-child(1){
    transform:rotate(45deg);
    top:19px;
}

body.menu-open .menu-btn span:nth-child(2){
    opacity:0;
}

body.menu-open .menu-btn span:nth-child(3){
    transform:rotate(-45deg);
    top:19px;
}

/* ======================
hero
====================== */

.hero{
    position:relative;
    width:84%;
    margin-left:0;
    margin-right:auto;
    overflow:visible;
    border-top-right-radius:70px;
    border-bottom-right-radius:70px;
}

.hero img{
    width:100%;
    height:720px;
    object-fit:cover;
    object-position:center;
    border-top-right-radius:70px;
    border-bottom-right-radius:70px;
}

.hero-message{
    position:absolute;
    right:-120px;
    bottom:110px;
    z-index:2;
}

.hero-box{
    display:inline-block;
    background:#2c79b9;
    color:white;
    font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
    font-size:30px;
    font-weight:bold;
    padding:14px 48px;
    margin-top:14px;
    letter-spacing:3px;
    line-height:1.5;
    white-space:nowrap;
}

/* ======================
main
====================== */

main{
    background:white;
    margin-top:30px;
    margin-bottom:100px;
    padding:40px;
    border-radius:24px;
    box-shadow:0 8px 30px rgba(0,0,0,0.04);
}

h2{
    text-align:center;
    color:#2c79b9;
    font-size:34px;
    font-weight:700;
    letter-spacing:4px;
    margin-top:60px;
    margin-bottom:40px;
    position:relative;
    font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

h2::after{
    content:"";
    width:70px;
    height:2px;
    background:#2c79b9;
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
}

.top-box,
.news-box{
    background:#f5f9fd;
    border-radius:16px;
    padding:24px;
    font-size:15px;
    line-height:2;
}

/* ======================
covid
====================== */

.covid-box{
    background:#eaf4fc;
    border:2px solid #b9d8f3;
    border-radius:18px;
    padding:26px 30px;
    margin-top:30px;
}

.covid-text h3{
    margin-top:0;
    margin-bottom:10px;
    color:#2c79b9;
    font-size:26px;
}

.covid-text p{
    margin:0;
    color:#4d6f8c;
    font-size:16px;
    line-height:1.9;
}

/* ======================
gallery
====================== */

.clinic-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    max-width:700px;
    margin:30px auto;
}

.clinic-gallery img{
    width:100%;
    height:170px;
    object-fit:cover;
    border-radius:10px;
}

.more-btn-area{
    text-align:center;
    margin-top:30px;
}

.more-btn{
    display:inline-block;
    background:#2c79b9;
    color:white;
    text-decoration:none;
    padding:16px 70px;
    font-weight:bold;
}
.more-btn{
    font-size:16px;
}

/* スマホ */

@media(max-width:768px){

    .clinic-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:8px;
    }

    .clinic-gallery img{
        width:100%;
        height:120px;
        object-fit:cover;
        border-radius:10px;
    }

}

/* ======================
schedule
====================== */

.schedule-wrap{
    width:100%;
    overflow-x:hidden;
}

.schedule{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.schedule th{
    background:#2c79b9;
    color:white;
    padding:10px 4px;
    font-size:13px;
}

.schedule td{
    text-align:center;
    padding:10px 4px;
    border-bottom:1px solid #dfeaf5;
    font-size:13px;
}

.schedule-note{
    margin-top:10px;
    font-size:14px;
}

/* ======================
doctor
====================== */

.doctor-profile{
    display:flex;
    align-items:flex-start;
    gap:40px;
    max-width:1100px;
    margin:50px auto 80px;
    background:#eaf4fc;
    padding:40px;
    border-radius:24px;
    border:1px solid #c8dff1;
}

.doctor-photo{
    width:220px;
    flex-shrink:0;
}

.doctor-photo img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}

.doctor-message{
    flex:1;
    font-size:15px;
    line-height:2.2;
}

.doctor-name{
    margin-top:40px;
    text-align:right;
}

.doctor-name strong{
    display:block;
    font-size:24px;
    font-weight:400;
    color:#222;
}

.doctor-name span{
    display:block;
    color:#2c79b9;
    margin-top:8px;
    font-size:14px;
}

.doctor-box{
    background:#eaf4fc;
    border-radius:22px;
    padding:28px 30px;
    max-width:1100px;
    margin:40px auto;
    border:1px solid #c8dff1;
}

.doctor-box h3{
    color:#2c79b9;
    font-size:24px;
    margin-top:0;
    margin-bottom:24px;
    padding:14px 16px;
    background:white;
    border-radius:14px;
    border-bottom:2px solid #cfe2f3;
}

.doctor-box h3 span{
    font-size:14px;
    margin-left:10px;
    color:#6b87a3;
}

.history-list p,
.doctor-box li{
    background:white;
    border-radius:10px;
    padding:13px 14px;
    margin-bottom:10px;
    line-height:1.9;
    list-style:none;
    font-size:14px;
    font-weight:normal;
}

.history-list strong{
    display:inline-block;
    width:150px;
    font-weight:normal;
}

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

/* ======================
medical page
====================== */

.medical-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    max-width:1000px;
    margin:40px auto;
}

.medical-box{
    background:#eaf4fc;
    border:1px solid #c8dff1;
    border-radius:20px;
    padding:30px;
}

.medical-box h3{
    color:#2c79b9;
    font-size:24px;
    margin-top:0;
    margin-bottom:16px;
    padding-bottom:12px;
    border-bottom:2px solid #cfe2f3;
}

.medical-box p{
    margin:0;
    line-height:2;
}

/* ======================
news page
====================== */

.news-page-box{
    max-width:900px;
    margin:40px auto;
}

.news-item{
    background:#eaf4fc;
    border:1px solid #c8dff1;
    border-radius:20px;
    padding:28px 34px;
    margin-bottom:20px;
}

.news-date{
    color:#2c79b9;
    font-weight:bold;
    margin-bottom:14px;
}

/* ======================
access page
====================== */

.access-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    max-width:920px;
    margin:30px auto;
}

.access-card{
    background:white;
    border-radius:20px;
    padding:24px 20px;
    text-align:center;
    border:1px solid #dceaf7;
    box-shadow:0 6px 24px rgba(0,0,0,0.04);
}

.access-icon{
    font-size:34px;
    margin-bottom:12px;
}

.access-card h3{
    font-size:20px;
    margin-top:0;
    margin-bottom:16px;
    padding-bottom:14px;
    border-bottom:1px solid #d9eaf7;
    color:#333;
}

.access-card p{
    font-size:14px;
    line-height:1.9;
}

.access-photo img{
    width:100%;
    height:100%;
    min-height:220px;
    object-fit:cover;
    border-radius:14px;
}

.map{
    max-width:920px;
    margin:0 auto 30px;
}

.map iframe{
    width:100%;
    height:360px;
    border:none;
    border-radius:16px;
}

/* ======================
home access
====================== */

.home-access{
    max-width:1100px;
    margin:50px auto 0;
}

.home-map{
    display:flex;
    justify-content:center;
}

.home-map iframe{
    width:100%;
    max-width:1000px;
    height:430px;
    border:none;
    border-radius:20px;
}

.home-access-text{
    margin-top:18px;
    background:#f5f9fd;
    border-radius:16px;
    padding:18px 24px;
}

.home-access-text ul{
    margin:0;
    padding-left:20px;
}

.home-access-text li{
    font-size:14px;
    line-height:1.8;
    margin-bottom:8px;
}

/* ======================
footer
====================== */

footer{
    background:#2c79b9;
    color:white;
    text-align:center;
    padding:30px 0 90px;
}

.fixed-call{
    display:none;
}

/* ======================
smartphone
====================== */

@media(max-width:768px){

    body{
        padding-top:72px;
        padding-bottom:60px;
    }

    .header-logo{
        height:52px;
    }

   .logo-link{
    margin-left:-6px;
}

    .header-tel{
        display:none;
    }

    .menu-btn{
        display:block;
        margin-left:auto;
    }

    nav{
        display:none;
        position:fixed;
        top:72px;
        left:0;
        width:100%;
        height:calc(100vh - 72px);
        background:white;
        flex-direction:column;
        justify-content:flex-start;
        padding-top:25px;
        padding-bottom:40px;
        overflow-y:auto;
        overflow-x:hidden;
        z-index:9998;
        gap:0;
    }

    body.menu-open nav{
        display:flex;
    }

    nav a{
        width:100%;
        padding:16px;
        text-align:center;
        font-size:17px;
        border-bottom:1px solid #eef5fb;
    }

    .sp-tel-link{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;

        width:calc(100% - 40px);
        max-width:320px;

        margin:20px auto 40px;

        background:white;
        color:#2c79b9;

        font-size:16px;
        font-weight:bold;
        text-decoration:none;

        border:2px solid #2c79b9;
        border-radius:999px;

        padding:8px 14px;
    }

    .sp-tel-icon{
        width:30px;
        height:30px;
        border-radius:50%;
        background:#2c79b9;
        color:white;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:15px;
    }

    .hero{
        width:100%;
        overflow:hidden;
        border-top-right-radius:35px;
        border-bottom-right-radius:35px;
    }

    .hero img{
        height:260px;
        border-top-right-radius:35px;
        border-bottom-right-radius:35px;
    }

    .hero-message{
        right:14px;
        bottom:18px;
    }

    .hero-box{
        font-size:15px;
        padding:8px 14px;
        margin-top:8px;
        letter-spacing:1px;
    }

    main{
        padding:22px;
        border-radius:18px;
    }

    h2{
        font-size:26px;
        letter-spacing:2px;
        margin-top:50px;
        margin-bottom:35px;
    }

    .covid-box{
        padding:24px;
    }

    .covid-text h3{
        font-size:22px;
    }

    .covid-text p{
        font-size:16px;
    }

    .clinic-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:8px;
    }

    .clinic-gallery img{
        height:120px;
    }

    .schedule th,
    .schedule td{
        font-size:11px;
        padding:6px 2px;
    }

    .doctor-profile{
        flex-direction:column;
        gap:24px;
        padding:22px;
    }

    .doctor-photo{
        width:100%;
    }

    .doctor-photo img{
        height:auto;
    }

    .doctor-message{
        font-size:15px;
        line-height:2;
    }

    .doctor-name{
        text-align:left;
    }

    .doctor-name strong{
        font-size:26px;
    }

    .doctor-box{
        padding:22px;
        border-radius:18px;
    }

    .history-list strong{
        display:block;
        width:auto;
        margin-bottom:4px;
        color:#2c79b9;
    }

    .medical-grid,
    .access-grid{
        grid-template-columns:1fr;
    }

    .medical-box,
    .access-card,
    .news-item{
        padding:22px;
        border-radius:18px;
    }

    .medical-box h3,
    .access-card h3{
        font-size:21px;
    }

    .medical-box p,
    .access-card p{
        font-size:15px;
    }

    .map iframe{
        height:300px;
    }

    .home-map iframe{
        height:300px;
    }

    .home-access-text{
        padding:16px 18px;
    }

    .home-access-text li{
        font-size:13px;
        line-height:1.7;
    }

    .fixed-call{
        display:block;
        position:fixed;
        left:0;
        bottom:0;
        width:100%;
        background:#2c79b9;
        z-index:999;
        height:56px;
    }

    .fixed-call a{
        display:block;
        text-align:center;
        color:white;
        text-decoration:none;
        padding:14px;
        font-weight:bold;
        font-size:17px;
    }

}
/* スマホ 院内紹介の白い隙間修正 */

@media(max-width:768px){

    .clinic-gallery img{
        width:100%;
        height:120px;
        object-fit:cover;
        background:none;
        padding:0;
        border:none;
        border-radius:10px;
    }

}
/* 詳しく見る 三角 */

.more-btn::after{
    content:"›";
    margin-left:8px;
    font-size:18px;
    font-weight:bold;
}
/* ======================
gallery page
====================== */

.gallery-page{
    max-width:900px;
    margin:40px auto;
}

.gallery-card{
    background:#f5f9fd;
    border-radius:22px;
    overflow:hidden;
    margin-bottom:30px;
    box-shadow:0 4px 18px rgba(0,0,0,0.04);
}

.gallery-card img{
    width:100%;
    max-height:320px;
    object-fit:contain;
    background:#fff;
}

.gallery-text{
    padding:28px;
}

.gallery-text h3{
    margin-top:0;
    margin-bottom:16px;
    color:#2c79b9;
    font-size:24px;
}

.gallery-text p{
    margin:0;
    line-height:2;
    font-size:15px;
}

/* smartphone */

@media(max-width:768px){

    .gallery-card{
        border-radius:18px;
    }

    .gallery-card img{
        max-height:220px;
    }

    .gallery-text{
        padding:20px;
    }

    .gallery-text h3{
        font-size:21px;
    }

    .gallery-text p{
        font-size:14px;
        line-height:1.9;
    }

}
/* ======================
gallery page 調整
====================== */

@media(min-width:769px){

    .gallery-page{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:24px;
        max-width:1000px;
        margin:40px auto;
    }

    .gallery-card{
        margin-bottom:0;
    }

    .gallery-card img{
        width:100%;
        height:220px;
        object-fit:contain;
        background:white;
        padding:8px;
    }

    .gallery-text{
        padding:22px;
    }

    .gallery-text h3{
        font-size:22px;
    }

    .gallery-text p{
        font-size:14px;
        line-height:1.9;
    }

}
/* ======================
gallery page PC 調整
====================== */

@media(min-width:769px){

    .gallery-page{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:28px;
        max-width:1100px;
        margin:50px auto;
    }

   .gallery-card{
    background:#eaf4fc;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #cfe2f3;
    box-shadow:0 8px 26px rgba(0,0,0,0.05);
    transition:0.25s;
    padding:12px;
}

    .gallery-card:hover{
        transform:translateY(-4px);
    }

    .gallery-card img{
        width:100%;
        height:240px;
        object-fit:contain;
        background:#fff;
        padding:10px;
        border-bottom:1px solid #eef4fa;
    }

   .gallery-text{
    background:white;
    margin:0 12px 12px;
    border-radius:18px;
    padding:24px;
}

    .gallery-text h3{
        font-size:24px;
        margin-bottom:16px;
        color:#2c79b9;
    }

    .gallery-text p{
        font-size:14px;
        line-height:2;
        color:#444;
    }

}
/* ======================
top news
====================== */

.top-news-item{
    padding:12px 0;
    border-bottom:1px solid #dfeaf5;
}

.top-news-item:last-child{
    border-bottom:none;
}

/* ======================
news list / detail
====================== */

.news-list-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.news-list-link .news-item{
    transition:0.2s;
}

.news-list-link .news-item:hover{
    background:#f5f9fd;
}

.news-title{
    font-size:17px;
    font-weight:bold;
    color:#333;
}

.news-detail-title{
    font-size:24px;
    color:#2c79b9;
    margin:10px 0 20px;
}

.back-news-area{
    text-align:center;
    margin-top:30px;
}

.back-news-btn{
    display:inline-block;
    background:#2c79b9;
    color:white;
    text-decoration:none;
    padding:12px 40px;
    border-radius:999px;
    font-weight:bold;
}

@media(max-width:768px){

    .news-title{
        font-size:15px;
    }

    .news-detail-title{
        font-size:21px;
    }

    .back-news-btn{
        padding:10px 32px;
        font-size:14px;
    }

}
/* ======================
news pagination list
====================== */

.news-row{
    display:flex;
    align-items:center;
    gap:18px;
    padding:14px 18px;
    border-radius:10px;
    margin-bottom:6px;
}

.news-row-blue{
    background:#eaf4fc;
}

.news-row-white{
    background:white;
    border:1px solid #e1edf7;
}

.news-row .news-date{
    min-width:100px;
    color:#2c79b9;
    font-weight:bold;
    font-size:14px;
}

.news-row .news-title{
    font-size:15px;
    font-weight:bold;
    color:#333;
}

.news-list-link{
    text-decoration:none;
    color:inherit;
}

.news-pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:28px;
}

.news-pagination a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:white;
    color:#2c79b9;
    text-decoration:none;
    border:1px solid #cfe2f3;
    font-weight:bold;
}

.news-pagination a.active{
    background:#2c79b9;
    color:white;
}

@media(max-width:768px){

    .news-row{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
        padding:12px 14px;
    }

    .news-row .news-date{
        min-width:auto;
        font-size:13px;
    }

    .news-row .news-title{
        font-size:14px;
    }

}
/* ======================
top news
====================== */

.news-box{
    background:white;
    border-radius:18px;
    padding:10px 22px;
    border:1px solid #dfeaf5;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.top-news-item{
    border-bottom:1px solid #e8f0f7;
}

.top-news-item:last-child{
    border-bottom:none;
}

.top-news-item summary{
    display:flex;
    align-items:center;
    gap:18px;
    padding:14px 0;
    cursor:pointer;
    list-style:none;
    font-size:15px;
    font-weight:bold;
    color:#333;
}

.top-news-item summary::-webkit-details-marker{
    display:none;
}

.top-news-item summary::after{
    content:"＋";
    margin-left:auto;
    color:#2c79b9;
    font-size:18px;
    font-weight:bold;
}

.top-news-item[open] summary::after{
    content:"－";
}

.top-news-item .news-date{
    min-width:95px;
    color:#2c79b9;
    font-size:14px;
    font-weight:bold;
}

.top-news-item .news-content{
    padding:0 0 16px 113px;
    line-height:1.9;
    color:#555;
    font-size:14px;
}

@media(max-width:768px){

    .news-box{
        padding:8px 16px;
    }

    .top-news-item summary{
        gap:10px;
        font-size:14px;
        align-items:flex-start;
    }

    .top-news-item .news-date{
        min-width:82px;
        font-size:12px;
    }

    .top-news-item .news-content{
        padding:0 0 14px 92px;
        font-size:13px;
    }

}
/* ======================
top news 強制反映
====================== */

#top-news-list{
    background:white;
    border:1px solid #dfeaf5;
    border-radius:18px;
    padding:10px 22px;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

#top-news-list .top-news-item{
    border-bottom:1px solid #e8f0f7;
    padding:0;
}

#top-news-list .top-news-item:last-child{
    border-bottom:none;
}

#top-news-list summary{
    display:flex;
    align-items:center;
    gap:18px;
    padding:14px 0;
    cursor:pointer;
    list-style:none;
}

#top-news-list summary::-webkit-details-marker{
    display:none;
}

#top-news-list .news-date{
    min-width:95px;
    color:#2c79b9;
    font-size:14px;
    font-weight:bold;
}

#top-news-list .top-news-title{
    font-size:15px;
    font-weight:bold;
    color:#333;
}

#top-news-list summary::after{
    content:"＋";
    margin-left:auto;
    color:#2c79b9;
    font-size:18px;
    font-weight:bold;
}

#top-news-list .top-news-item[open] summary::after{
    content:"－";
}

#top-news-list .news-content{
    padding:0 0 16px 113px;
    font-size:14px;
    line-height:1.9;
    color:#555;
}

@media(max-width:768px){

    #top-news-list{
        padding:8px 16px;
    }

    #top-news-list summary{
        gap:10px;
        align-items:flex-start;
    }

    #top-news-list .news-date{
        min-width:82px;
        font-size:12px;
    }

    #top-news-list .top-news-title{
        font-size:14px;
    }

    #top-news-list .news-content{
        padding:0 0 14px 92px;
        font-size:13px;
    }

}
/* ======================
top news 修正
====================== */

#top-news-list summary{
    display:grid;
    grid-template-columns:120px 1fr 24px;
    align-items:start;
    gap:12px;
    padding:16px 0;
}

#top-news-list .news-date{
    min-width:0;
    font-size:15px;
    line-height:1.5;
}

#top-news-list .top-news-title{
    font-size:16px;
    line-height:1.5;
    margin-top:-1px;
}

#top-news-list summary::after{
    content:"＋";
    margin-left:0;
    text-align:right;
    font-size:18px;
}

#top-news-list .top-news-item[open] summary::after{
    content:"－";
}

#top-news-list .news-content{
    padding:0 0 18px 132px;
    font-size:15px;
    line-height:1.9;
}

/* スマホ */

@media(max-width:768px){

    #top-news-list summary{
        grid-template-columns:90px 1fr 22px;
        gap:8px;
        padding:14px 0;
    }

    #top-news-list .news-date{
        font-size:13px;
    }

    #top-news-list .top-news-title{
        font-size:15px;
    }

    #top-news-list .news-content{
        padding:0 0 14px 98px;
        font-size:14px;
    }

}
/* ======================
top news final
====================== */

#top-news-list{
    background:white;
    border:1px solid #dfeaf5;
    border-radius:18px;
    padding:10px 22px;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.top-news-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.top-news-item{
    display:grid;
    grid-template-columns:130px 1fr 20px;
    align-items:start;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid #e8f0f7;
}

.top-news-item:last-child{
    border-bottom:none;
}

.top-news-item .news-date{
    color:#2c79b9;
    font-size:15px;
    font-weight:bold;
    line-height:1.5;
}

.top-news-title{
    font-size:17px;
    font-weight:bold;
    color:#333;
    line-height:1.5;
    margin-top:-1px;
}

.top-news-arrow{
    color:#2c79b9;
    font-size:22px;
    font-weight:bold;
    line-height:1.2;
}

/* smartphone */

@media(max-width:768px){

    #top-news-list{
        padding:8px 16px;
    }

    .top-news-item{
        grid-template-columns:92px 1fr 16px;
        gap:10px;
        padding:14px 0;
    }

    .top-news-item .news-date{
        font-size:13px;
    }

    .top-news-title{
        font-size:15px;
    }

    .top-news-arrow{
        font-size:18px;
    }

}
/* ======================
top news fix
====================== */

.top-news-link{
    text-decoration:none !important;
    color:inherit;
    display:block;
}

.top-news-item{
    display:flex !important;
    align-items:center !important;
    gap:16px;
    padding:16px 0;
    border-bottom:1px solid #e8f0f7;
}

.top-news-item:last-child{
    border-bottom:none;
}

.top-news-item .news-date{
    width:110px;
    flex-shrink:0;
    color:#2c79b9;
    font-size:15px;
    font-weight:bold;
    line-height:1.4;
}

.top-news-title{
    flex:1;
    font-size:17px;
    font-weight:bold;
    color:#333;
    line-height:1.5;
}

.top-news-arrow{
    color:#2c79b9;
    font-size:22px;
    font-weight:bold;
    line-height:1;
}

/* smartphone */

@media(max-width:768px){

    .top-news-item{
        gap:10px;
        padding:14px 0;
    }

    .top-news-item .news-date{
        width:86px;
        font-size:13px;
    }

    .top-news-title{
        font-size:15px;
    }

    .top-news-arrow{
        font-size:18px;
    }

}
/* ======================
top news design final
====================== */

#top-news-list{
    background:white;
    border:none;
    box-shadow:none;
    border-radius:0;
    padding:0;
    max-width:900px;
    margin:0 auto;
}

.top-news-link{
    text-decoration:none !important;
    color:inherit;
    display:block;
}

.top-news-item{
    display:flex !important;
    align-items:center !important;
    gap:22px;
    padding:18px 0;
    border-bottom:1px dashed #cfdde8;
    transition:0.2s;
}

.top-news-item:hover{
    background:#eaf4fc;
    padding-left:14px;
    padding-right:14px;
    border-radius:8px;
}

.top-news-item .news-date{
    width:120px;
    flex-shrink:0;
    color:#6b5b3e;
    font-size:16px;
    font-weight:500;
    line-height:1.5;
}

.top-news-title{
    flex:1;
    font-size:17px;
    font-weight:500;
    color:#333;
    line-height:1.6;
}

.top-news-link:hover .top-news-title{
    color:#2c79b9;
}

.top-news-arrow{
    color:#2c79b9;
    font-size:22px;
    font-weight:bold;
    line-height:1;
}

/* smartphone */

@media(max-width:768px){

    #top-news-list{
        padding:0;
    }

    .top-news-item{
        gap:10px;
        padding:14px 0;
    }

    .top-news-item:hover{
        padding-left:8px;
        padding-right:8px;
    }

    .top-news-item .news-date{
        width:86px;
        font-size:13px;
    }

    .top-news-title{
        font-size:15px;
    }

    .top-news-arrow{
        font-size:18px;
    }

}
/* ======================
top news design final
====================== */

#top-news-list{
    background:white;
    border:none;
    box-shadow:none;
    border-radius:0;
    padding:0;
    max-width:900px;
    margin:0 auto;
}

.top-news-link{
    text-decoration:none !important;
    color:inherit;
    display:block;
}

.top-news-item{
    display:flex !important;
    align-items:center !important;
    gap:22px;
    padding:18px 0;
    border-bottom:1px dashed #cfdde8;
    transition:0.2s;
}

.top-news-item:hover{
    background:#eaf4fc;
    padding-left:14px;
    padding-right:14px;
    border-radius:8px;
}

.top-news-item .news-date{
    width:120px;
    flex-shrink:0;
    color:#6b5b3e;
    font-size:16px;
    font-weight:500;
    line-height:1.5;
}

.top-news-title{
    flex:1;
    font-size:17px;
    font-weight:500;
    color:#333;
    line-height:1.6;
}

.top-news-link:hover .top-news-title{
    color:#2c79b9;
}

.top-news-arrow{
    color:#2c79b9;
    font-size:22px;
    font-weight:bold;
    line-height:1;
}

/* smartphone */

@media(max-width:768px){

    #top-news-list{
        padding:0;
    }

    .top-news-item{
        gap:10px;
        padding:14px 0;
    }

    .top-news-item:hover{
        padding-left:8px;
        padding-right:8px;
    }

    .top-news-item .news-date{
        width:86px;
        font-size:13px;
    }

    .top-news-title{
        font-size:15px;
    }

    .top-news-arrow{
        font-size:18px;
    }

}
/* ======================
top news more
====================== */

.top-news-more{
    text-align:center;
    margin-top:26px;
}

.top-news-more-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2c79b9;
    color:white;
    text-decoration:none;
    padding:14px 34px;
    border-radius:999px;
    font-size:15px;
    font-weight:bold;
    transition:0.2s;
}

.top-news-more-btn:hover{
    background:#1f5f96;
    transform:translateY(-1px);
}

.top-news-more-btn span{
    font-size:18px;
}
/* ======================
top news more
====================== */

.top-news-more{
    text-align:center;
    margin-top:26px;
}

.top-news-more-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2c79b9;
    color:white;
    text-decoration:none;
    padding:14px 34px;
    border-radius:999px;
    font-size:15px;
    font-weight:bold;
    transition:0.2s;
}

.top-news-more-btn:hover{
    background:#1f5f96;
    transform:translateY(-1px);
}

.top-news-more-btn span{
    font-size:18px;
}
/* ======================
top news final fix
====================== */

#top-news-list{
    background:white;
    border:none;
    box-shadow:none;
    padding:0;
}

#top-news-list .top-news-link{
    display:block;
    text-decoration:none !important;
    color:inherit;
}

#top-news-list .top-news-item{
    display:grid !important;
    grid-template-columns:135px 1fr 24px;
    align-items:center !important;
    gap:18px;
    padding:18px 0;
    border-bottom:1px dashed #cfdde8;
}

#top-news-list .top-news-item:last-child{
    border-bottom:none;
}

#top-news-list .news-date{
    font-size:17px;
    line-height:1;
    color:#2c79b9;
    font-weight:bold;
    margin:0;
    padding:0;
}

#top-news-list .top-news-title{
    font-size:18px;
    line-height:1;
    color:#333;
    font-weight:bold;
    margin:0;
    padding:0;
}

#top-news-list .top-news-arrow{
    font-size:24px;
    line-height:1;
    color:#2c79b9;
    font-weight:bold;
    margin:0;
    padding:0;
    text-align:right;
}

#top-news-list .top-news-link:hover .top-news-item{
    background:#eaf4fc;
    padding-left:14px;
    padding-right:14px;
    border-radius:8px;
}

#top-news-list .top-news-link:hover .top-news-title{
    color:#2c79b9;
}

/* smartphone */

@media(max-width:768px){

    #top-news-list .top-news-item{
        grid-template-columns:95px 1fr 18px;
        gap:10px;
        padding:15px 0;
    }

    #top-news-list .news-date{
        font-size:14px;
    }

    #top-news-list .top-news-title{
        font-size:15px;
    }

    #top-news-list .top-news-arrow{
        font-size:20px;
    }

}
/* ======================
top news smartphone fix
====================== */

@media(max-width:768px){

    #top-news-list .top-news-item{
        display:flex !important;
        align-items:center !important;
        gap:10px;
        padding:14px 0;
    }

    #top-news-list .news-date{
        width:86px;
        flex-shrink:0;
        font-size:13px;
        line-height:1.4;
    }

    #top-news-list .top-news-title{
        flex:1;
        font-size:14px;
        line-height:1.5;
        font-weight:normal;
    }

    #top-news-list .top-news-arrow{
        font-size:18px;
        line-height:1;
    }

}
/* ======================
top news pc final
====================== */

@media(min-width:769px){

    #top-news-list .top-news-item{
        border-bottom:2px dashed #b7c9d8;
        transition:0.2s;
    }

    #top-news-list .top-news-link:hover .top-news-item{
        background:#dceefd;
        padding-left:14px;
        padding-right:14px;
        border-radius:8px;
    }

    #top-news-list .news-date{
        font-size:16px;
        font-weight:normal;
        font-family:
        "Hiragino Sans",
        "Yu Gothic",
        sans-serif;
    }

    #top-news-list .top-news-title{
        font-size:17px;
        font-weight:normal;
        font-family:
        "Hiragino Sans",
        "Yu Gothic",
        sans-serif;
    }

}
/* ======================
top news smartphone normal
====================== */

@media(max-width:768px){

    #top-news-list .top-news-title{
        font-weight:normal !important;
    }
/* ======================
news title normal
====================== */

.news-title{
    font-weight:normal !important;
    font-family:
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
}
    /* ======================
news page title normal final
====================== */

.news-row .news-title{
    font-weight:normal !important;
    font-size:16px;
    font-family:
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif !important;
    color:#333;
    line-height:1.6;
}
/* ======================
news page no bold final
====================== */

.news-list-link{
    font-weight:normal !important;
}

.news-row .news-title{
    font-weight:normal !important;
}

.news-row{
    font-weight:normal !important;
}
/* ======================
news title force normal
====================== */

.news-list-link,
.news-list-link *,
.news-title,
.news-row .news-title{
    font-weight:400 !important;
}

/* ======================
お知らせページ 太字解除 最終版
必ずCSSの一番下に貼る
====================== */

.news-page-box,
.news-page-box *,
.news-list-link,
.news-list-link *,
.news-row,
.news-row *,
.news-title,
.news-content{
    font-weight:400 !important;
}

.news-row .news-title,
.news-list-link .news-title{
    font-weight:400 !important;
    font-family:
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif !important;
}
/* ======================
pc news title normal
====================== */

@media(min-width:769px){

    .news-title,
    .news-row .news-title,
    .normal-news-title{
        font-weight:normal !important;
    }

}
