@charset "UTF-8";



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



.news_head {
    margin-top:100px;
    width: 100%;
    height: auto;
    background-color: aliceblue;
    padding: 130px 13% 75px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.news_head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: aliceblue;
    z-index: -1;
}

.news_head .ttl_all {
    text-align: left;
    margin: 0 auto;
    max-width: 965px;
}

.news_head .news_title {
    font-size: 60px;
    color: #64c6ff;
}

.news_head .news_line {
    width: 94px;
    height: 2px;
    background-color: #64c6ff;
}

.news_head .oshirase {
    color: #00a0ff;
    font-size: 25px;
    padding-top: 5px;
    padding-bottom: 6px;
}


.news_main {
    width: 76%;
    max-width: 1000px;
    margin: 60px auto 100px;
    padding: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
}


/* 切り替えタブ */
.news_main .news_switch {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.news_main .switch {
    padding: 10px 30px;
    border: 1px solid #00a0ff;
    border-radius: 50px;
    color: #00a0ff;
    background-color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 30%;
    text-align: center;
    max-width: 200px;
}

.news_main .switch.active{
    background-color: #00a0ff;
    color: #fff;
}


.news_main .news_body {
    width: 100%;
}

.news_main .switch_content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news_main .switch_content.active {
    display: block;
    opacity: 1;
}


.news_main .line {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.news_main .news_link_wrap {
    padding: 15px 15px;
    transition: background-color 0.3s ease;
    display: block;
}

.news_main .news_link_wrap:hover {
    background-color: #f5fbff;
}

.news_main .news_cont_flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.news_main .date {
    font-family: 'Lato', sans-serif;
    color: #888;
    font-size: 16px;
    white-space: nowrap;
}

.news_main .icon {
    font-size: 12px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 99px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.news_main .icon_blue {
    background-color: #00a0ff;
}

.news_main .icon_orange {
    background-color: #ffa300;
}

.news_main .cnt {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.common_btn {
    font-size: 20px;
    background-color: #fff;
    width: 350px;
    max-width: 350px;
    aspect-ratio: 330 / 55;
    height: auto;
    text-align: center;
    border: 1px solid #00a0ff;
    border-radius: 999px;
    position: relative;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    margin: 10% auto 0;
}

.common_btn a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.common_btn .word {
    color: #00a0ff;
    transition: color 0.25s ease;
}

.common_btn .btn_pointer {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-42%);
    width: 3vw;
}

.common_btn .btn_pointer img {
    width: 80%;
    max-width: 25px;
    min-width: 20px;
    height: auto;
}

.common_btn:hover {
    background-color: #00a0ff;
}

.common_btn:hover .word {
    color: #fff;
}

.common_btn .btn_pointer img.hover {
    display: none;
}

.common_btn:hover .btn_pointer img.normal {
    display: none;
}

.common_btn:hover .btn_pointer img.hover {
    display: inline;
}

@media screen and (max-width: 960px){
    .news_head{
        margin-top: 85px;
        padding: 70px 13% 70px;
    }

    .news_head .news_title{
        font-size: 55px;
    }

    .news_main{
        width: 85%;
        margin: 60px auto 70px;
    }

}


@media screen and (max-width:550px) {
    .news_head {
        margin-top: 70px;
        padding: 12% 5%;
    }

    .news_head .news_line{
        width: 70px;
    }

    .news_head .oshirase{
        font-size: 16px;
    }

    .news_head .news_title {
        font-size: 28px;
    }

    .news_main {
        width: 95%;
        padding: 0 4%;
        margin-top: 40px;
    }

    .news_main .switch {
        padding: 8px 21px;
        font-size: 14px;
        margin-bottom: 15px;
        white-space: nowrap;
    }

    .news_main .news_switch {
        gap: 0px 15px;
        margin-bottom: 25px;
    }

    .news_main .news_cont_flex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .news_main .date {
        font-size: 13px;
    }

    .news_main .cnt{
        width: 100%;
        padding-top: 5px;
    }
}