/* スマホ改行 */
.sp_br{
    display: none;
}
@media screen and (max-width: 767px) {
    .sp_br{
        display: block;
    }
}

.header{
    padding:0 40px;
    height: 74px;
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 255, 255, 0.5);
    position: fixed;
    z-index: 99;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header_left{
    display: flex;
    align-items: center;
}

.header_left_title{
    font-size: 35px;
    color: #125393;
    line-height: 1.2;
    letter-spacing: .05em;
    font-weight: 700;
}

.header_right{
    display: flex;
    align-items: end;
    padding-bottom: 5px;
    margin-left: auto;
}

.header_right_list{
    display: flex;
}

.header_right_list_item + .header_right_list_item{
    margin-left: 10px;
}

.header_right_list_item_contain{
    font-size: 20px;
    color: #125393;
    line-height: 1.2;
    letter-spacing: .05em;
    font-weight: 500;
    padding: 5px 10px;
}

.header_right_list_item_contain:hover{
    color: #FFF;
    background-color: #125393;
    transition: all 0.7s;
}

.sp_header_humburger{
    display: none;
}

.sp_header_humburger_content{
    display: none;
}

@media screen and (max-width: 767px) {
    .header{
        padding:0 20px;
        height:40px;
    }

    .header_left{
        display: flex;
        align-items: center;
    }

    .header_left_title{
        font-size: 20px;
    }

    .header_right{
        display: none;
    }

    /* ハンバーガー */
    .sp_header_humburger{
        display: block;
        margin-left: auto;
    }

    .sp_header_humburger_icon{
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        margin-top: 10px;
        z-index: 101;
    }

    .sp_header_humburger_icon span{
        width: 100%;
        height: 2px;
        display: block;
        position: absolute;
        transition: 0.3s ease;
        background-color: #125393;
    }

    .sp_header_humburger_icon span:nth-child(2){
        top: 7px;
    }

    .sp_header_humburger_icon span:nth-child(3){
        top: 14px;
    }

    /* ばつ */
    .active_hum{
        transition: 0.3s ease;
    }
    .active_hum span{
        transform: rotate(45deg);
        top: 7px;
    }
    .active_hum span:nth-child(2){
        opacity: 0;
    }
    .active_hum span:nth-child(3){
        transform: rotate(-45deg);
        top: 7px;
    }
    /* ばつにしたら白色固定 */
    .active_hum span {
        background-color: white;
        transition: 0.3s ease;
    }

    /* ハンバーガーメニューの中身 */
    .sp_header_humburger_content{
        display: block;
        background-color: #125393;
        color: #FFF;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        overflow-y: scroll;
    }

    .sp_header_humburger_content.open {
        opacity: 1; /* ← 見えるように */
        pointer-events: auto; /* ← クリックできる */
    }

    .sp_header_humburger_content_list{
        padding: 50px 30px;
    }

    .sp_header_humburger_content_list_item + .sp_header_humburger_content_list_item{
        margin-top: 30px;
    }

    .sp_header_humburger_content_list_item_contain{
        font-size: 20px;
        font-weight: 600;
        letter-spacing: .05em;
        line-height: 1.2;
    }
}

/* =========================mv=========================================== */
.top_mv{
    background-image: url(../img/top_mv.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 600px;
    position: relative;
}

.top_mv_catchcopy{
    font-size: 65px;
    color: #FFF;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    text-shadow: 0 4px 4px rgb(0, 0, 0, 0.5);
    display: table;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    font-family: 'Noto Sans JP', sans-serif;
}

.top_mv::after{
    content: "";
    position: absolute;
    background-image: url(../img/top_mv_kobayu.png);
    background-size: 374px 446px;
    width: 374px;
    height: 446px;
    bottom: 0;
    right: 7%;
}

@media screen and (max-width: 767px) {
    .top_mv{
        background-image: url(../img/top_mv.png);
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 500px;
        position: relative;
    }

    .top_mv_catchcopy{
        font-size: 33px;
        top: 20%;
        transform: translateY(0%);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        margin-left: 13px;
    }

    .top_mv::after{
        background-size: 250px 292px;
        width: 250px;
        height: 292px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ==================mind====================================== */
.top_mind{
    background-image: url(../img/top_mind.png);
    background-size: cover;
    background-position: center;
}

.mind_container{
    padding: 100px 0;
}

.top_mind_title{
    font-size: 40px;
    color: #125393;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.2;
    text-align: center;
}

.top_mind_content{
    margin-top: 50px;
}

.top_mind_content_text{
    font-size: 20px;
    color: #125393;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 2;
    text-align: center;
}

.top_mind_content_text + .top_mind_content_text{
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .mind_container{
        padding: 50px 10px;
    }

    .top_mind_title{
        font-size: 25px;
    }

    .top_mind_content{
        margin-top: 20px;
    }

    .top_mind_content_text{
        font-size: 13px;
        line-height: 1.5;
    }

    .top_mind_content_text + .top_mind_content_text{
        margin-top: 15px;
    }
}

/* =======================profilr===================================== */
.top_profile{
    margin-top: 100px;
    position: relative;
}

.top_title{
    font-size: 64px;
    color: #125393;
    font-weight: 500;
    line-height: 0.5;
    letter-spacing: 0;
    text-align: center;
}

.top_title span{
    font-size: 18px;
}

.top_profile_content{
    background-color: #B7D2DE;
    padding: 150px 0;
    margin-top: 75px;
    color: #125393;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.5;
}

.profile_container{
    display: flex;
    width: 75%;
}

.top_profile_content_left_inner_bottom{
    margin-top: 50px;
}

.top_profile_content_right{
    margin-left: 50px;
}

.top_profile_slider_wrapper {
    width: 232px;
    height: 566px;
    position: absolute;
    bottom: 0;
    right: 1%;
    overflow: hidden;
}

.top_profile_slider {
    width: 232px;
    height: 100%;
}


.top_profile_slider_img{
    margin-top: 50px;
}

.slider_1 img{
    width: 200px;
}

.slider_2 img{
    width: 160px;
    margin-left: auto;
}

.slider_3 img{
    width: 200px;
}

.slider_4 img{
    width: 180px;
    margin-left: auto;
}

.slider_5 img{
    width: 180px;
}

.top_policy{
    margin-top: 100px;
}

.top_policy_list{
    margin-top: 75px;
}

@media screen and (max-width: 767px) {
    .top_profile{
        margin-top: 50px;
    }

    .top_title{
        font-size: 42px;
    }

    .top_title span{
        font-size: 13px;
    }

    .top_profile_content{
        padding: 50px 10px;
        margin-top: 35px;
        font-size: 18px;
        line-height: 1.5;
        padding-bottom: 280px;
    }

    .profile_container{
        display: block;
        width: 75%;
    }

    .top_profile_content_left_inner_bottom{
        margin-top: 10px;
    }

    .top_profile_content_right{
        margin-left: 0px;
        margin-top: 10px;
    }

    .top_profile_content_right_item + .top_profile_content_right_item{
        margin-top: 5px;
    }

    .top_profile_content_right_item_text span{
        padding-left: 10px;
    }

    .top_profile_slider_wrapper {
        width: 100%;
        height: 280px;
        position: absolute;
        overflow: hidden;
        left: 0;
        bottom: 0px;
    }

    .top_profile_slider {
        width: 100%;
        height: 280px;
        overflow: hidden;
    }

    .top_profile_slider_img{
        margin-left: 0;
        margin-top: 0;
        overflow: hidden;
    }

    .slick-slide {
        margin: 15px !important;
        width: auto !important;
    }

    .slick-track {
        display: flex !important;  /* slickがinline-block扱いするのを修正 */
        gap: 0;
        align-items: center;
    }

    .top_profile_slider_img img {
        height: 100%;
        object-fit: cover;
    }

    .slider_1 img{
        max-width: 100%;
        margin-top: 20px;
    }

    .slider_2 img{
        max-width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .slider_3 img{
        max-width: 100%;
        margin-top: 80px;
    }

    .slider_4 img{
        max-width: 100%;
        margin-left: 0;
        margin-top: 0px;
    }

    .slider_5 img{
        max-width: 100%;
        margin-top: 50px;
    }
}

/* ====================policy========================================== */
.top_policy{
    margin-top: 100px;
}

.top_policy_list{
    margin-top: 75px;
}

.top_policy_list_item{
    height: 686px;
    width: 100%;
    background-size: cover;
}

.policy_1{
    background-image: url(../img/top_policy_1.png);
}

.policy_2{
    background-image: url(../img/top_policy_2.png);
}

.policy_3{
    background-image: url(../img/top_policy_3.png);
    background-position: center;
}

.policy_4{
    background-image: url(../img/top_policy_4.png);
    background-position: 37% 0;
}

.policy_5{
    background-image: url(../img/top_policy_5.png);
    background-position: 10% 0;
}

.container{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.policy_container{
    position: relative;
    height: 686px;
}

.top_policy_list_item_content{
    display: table;
    width: 570px;
    height: 270px;
    border-radius: 50px;
    overflow: hidden;
    position: absolute;
    bottom: 5%;
}

.policy_content_left{
    left: 0;
}

.policy_content_right{
    right: 0;
}

.top_policy_list_item_content_title{
    font-size: 24px;
    color: #FFF;
    font-weight: 700;
    line-height: 3.3;
    letter-spacing: .05em;
    background-color: #125393;
    text-align: center;
}

.top_policy_list_item_content_text{
    font-size: 20px;
    color: #125393;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .05em;
    padding: 20px 15px 30px;
    background-color: #FFF;
    height: 73%;
}

.top_facebook{
    padding: 70px 0 50px;
}

.top_facebook_title{
    font-size: 48px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0em;
    text-align: center;
}

.top_policy_list_item_content_img{
    display: none;
}

@media screen and (max-width: 767px) {
    .top_policy{
        margin-top: 50px;
    }

    .top_policy_list{
        margin-top: 20px;
    }

    .top_policy_list_item{
        height: auto;
        width: 100%;
    }

    .policy_1{
        background-image: none;
    }

    .policy_2{
        background-image:none;
    }

    .policy_3{
        background-image: none;
    }

    .policy_4{
        background-image: none;
    }

    .policy_5{
        background-image: none;
    }

    .policy_container{
        height: auto;
        position: static;
    }

    .top_policy_list_item_content{
        display: block;
        width: 100%;
        height: auto;
        border-radius: 0px;
        position: static;
        bottom: 0%;
    }

    .sp_top_policy_list_item_content_img{
        display: block;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        overflow: hidden;
    }

    .sp_policy_1{
        background-image: url(../img/top_policy_1.png);
    }

    .sp_policy_2{
        background-image: url(../img/top_policy_2.png);
    }

    .sp_policy_3{
        background-image: url(../img/top_policy_3.png);
    }

    .sp_policy_4{
        background-image: url(../img/top_policy_4.png);
    }

    .sp_policy_5{
        background-image: url(../img/top_policy_5.png);
    }

    .policy_content_left{
        left: 0;
    }

    .policy_content_right{
        right: 0;
    }

    .top_policy_list_item_content_title{
        font-size: 20px;
        line-height: 3;
        /* position: relative; */
    }

    /* .top_policy_list_item_content_title::before{
        content: "";
        position: absolute;
        background-color: #125393;
        width: 100%;
        height: 10px;
        top: 
    } */

    .top_policy_list_item_content_text{
        font-weight: 400;
        font-size: 17px;
        line-height: 1.2;
        padding: 30px 20px;
    }

    .top_facebook{
        padding: 70px 0 50px;
    }

    .top_facebook_title{
        font-size: 48px;
        color: #000;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0em;
        text-align: center;
    }
}

/* ========================support======================================= */
.top_support{
    padding: 165px 0;
    text-align: center;
    background-color: #C3E4ED;
    position: relative;
}

.top_support_title{
    display: table;
    margin: 0 auto;
    font-size: 40px;
    color: #125393;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    position: relative;
}

.top_support_title::after{
    content: "";
    position: absolute;
    background-image: url(../img/top_contact.png);
    background-size: 110px 225px;
    width: 110px;
    height: 225px;
    top: -85%;
    right: -27%;
}

.top_support_text{
    margin-top: 25px;
    font-size: 20px;
    color: #125393;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.top_support_form{
    display: table;
    margin: 25px auto 0;
    font-size: 24px;
    color: #125393;
    font-weight: 600;
    line-height: 3.75;
    padding: 0 253px;
    letter-spacing: 0;
    background-color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
    .top_support{
        padding: 80px 10px;
    }

    .top_support_title{
        font-size: 20px;
    }

    .top_support_title::after{
        background-size: 70px 140px;
        width: 70px;
        height: 140px;
        top: 156%;
        right: -9%;
    }

    .top_support_text{
        margin-top: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .top_support_form{
        display: table;
        margin: 40px auto 0;
        font-size: 15px;
        line-height: 4;
        padding: 0 120px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    }
}

/* ============================contact=================================== */
.top_contact{
    padding: 100px 0;
}

.top_contact_content{
    border: 2px solid #125393;
    padding: 50px 0 100px;
}

.top_contact_content_title{
    font-size: 20px;
    color: #125393;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.2;
    text-align: center;
}

.top_contact_content_list{
    width: 63%;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
}

.top_contact_content_list_item{
    width: calc(50% - 45px);
    margin-left: 90px;
    background-color: #125393;
}

.top_contact_content_list_item:nth-child(2n + 1){
    margin-left: 0;
}

.top_contact_content_list_item:nth-child(n + 3){
    margin-top: 70px;
}

.top_contact_content_list_item_link{
    display: block;
    font-size: 15px;
    color: #FFF;
    font-weight: 600;
    line-height: 4;
    letter-spacing: .05em;
    text-align: center;
    background-size: 30px;
    background-position: 8% center; 
    background-repeat: no-repeat;
}

.contact_facebook{
    padding-left: 30px;
    background-image: url(../img/icon_facebook.png);
}

.contact_instagram{
    padding-left: 30px;
    background-image: url(../img/icon_instagram.png);
}

.contact_townnews{
    padding-left: 15px;
    background-image: url(../img/icon_news.png);
}

.contact_live{
    padding-left: 15px;
    background-image: url(../img/icon_live.png);
}

@media screen and (max-width: 767px) {
    .top_contact{
        padding: 50px 10px;
    }

    .top_contact_content{
        padding: 30px 0 40px;
    }

    .top_contact_content_title{
        font-size: 18px;
    }

    .top_contact_content_list{
        width: 80%;
        margin: 50px auto 0;
        display: block;
        flex-wrap: nowrap;
    }

    .top_contact_content_list_item{
        width: 100%;
        max-width: 510px;
        margin: 0 auto;
    }

    .top_contact_content_list_item:nth-child(2n + 1){
        margin: 0 auto;
    }

    .top_contact_content_list_item:nth-child(n + 3){
        margin-top: 0px;
    }

    .top_contact_content_list_item + .top_contact_content_list_item{
        margin-top: 15px;
    }

    .top_contact_content_list_item_link{
        font-size: 13px;
        background-size: 25px;
    }
}

/* =============================footer===================================== */
.footer{
    background-color: #125393;
}

.foter_container{
    padding: 65px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_left_title{
    font-size: 64px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.2;
}

.footer_right_info{
    font-size: 24px;
    color: #FFF;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .foter_container{
        display: block;
        padding: 30px 10px;
        text-align: center;
    }

    .footer_left_title{
        font-size: 25px;
    }

    .footer_right{
        margin-top: 10px
    }

    .footer_right_info{
        font-weight: 500;
        font-size: 12px;
        margin-top: 3px;
    }
}