@charset "utf-8";



/* トップページ　----------------------*/

.top_ttl01{
    font-size: 50px;
    font-weight: 700;
    padding-left: 70px;
    background: url(../img/top/ttl_bg.png) left center no-repeat;
}
.top_ttl_en{
    font-family: "Science Gothic", sans-serif;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "CTRS" 0;
    font-size: 50px;
    font-weight: 500;
}


@media screen and (max-width: 910px) {
    .top_ttl01{
        font-size: 40px;
        padding-left: 50px;
        background-size: 38px auto;
    }
    .top_ttl_en{
        font-size: 35px;
    }
}

@media screen and (max-width: 640px) {
    .top_ttl01{
        font-size: 30px;
        padding-left: 40px;
        background-size: 30px auto;
    }
    .top_ttl_en{
        font-size: 28px;
    }

}







.bar_ao{
    width: 140px;
    height: 5px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}
.bar_ao::before{
    content: '';
    display: block;
    position: absolute;
    top:0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;

    background-image: linear-gradient(90deg, #fff 10%, #1c87da 40%, #000);
    transform: translatex(-100%);
    animation: showMask 1.5s 0s infinite linear both;
}
.bar_ao.st2::before{
    animation: showMask 1.5s 0.6s infinite linear both;
}

@keyframes showMask{
    0%{
        transform: translateX(-100%);
    }
    45%,50%{
        transform: translate(0%);
    }
    80%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(100%);
    }
}





.top_image{
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}
.top_image:after{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.15);
    content: "";
        
}
.top_image video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}





.top01{
    width: 100%;
    height: 100vh;
    position: relative;
}
.top01 .txt{
    position: absolute;
    left: 5.2vw;
    top: 46vh;
    color: #fff;
}
.top01 .txt .ja{
    font-size: 4.6vw;
    line-height: 1.2;
}
.top01 .txt .ja span{
    display: inline-block;
    padding: 0 1vw;
    background: -moz-linear-gradient(left, #1c87da, #000);
    background: -webkit-linear-gradient(left, #1c87da, #000);
    background: linear-gradient(to right, #1c87da, #000);
    margin-bottom: 0.5vw;

}
.top01 .txt .en{
    font-size: 1.4vw;
}

.scroll_maru{
    width: 169px;
    height: 169px;
    background: url(../img/top/scroll_maru.png) center center/contain no-repeat;
    position: absolute;
    bottom: 13vh;
    right: 3%;
}
.scroll_maru .scroll_arrow{
    position: absolute;
    left: calc(50% - 20px);
    top: 40px;
    width: 40px;
    height: 52px;
    background: url(../img/top/scroll_ya.png) center center repeat-y;/* 縦の時は　repeat-y */
    -moz-animation: kurukuru 1s linear infinite;
    animation: kurukuru 1s linear infinite;
}
/* スクロールの矢印　縦にスクロール　 */
@keyframes kurukuru {
    0% {background-position: 0 0;}
    100% {background-position: 0 104px;}
}

@-moz-keyframes kurukuru {
    0% {background-position: 0 0;}
    100% {background-position: 0 104px;}
}

.top01 .bar-set1{
    position: absolute;
    left: 0;
    top: 40vh;
}
.top01 .bar-set1 .bar_ao.n2{
    margin-left: 80px;
}

.top01 .bar-set2{
    position: absolute;
    right: 23vw;
    top: 20vh;
}
.top01 .bar-set2 .bar_ao.n2{
    margin-left: 80px;
}
.top01 .bar-set3{
    position: absolute;
    right: 0;
    top: 47vh;
}
.top01 .bar-set3 .bar_ao.n2{
    margin-left: 80px;
}

@media screen and (max-width: 1800px) {
    .scroll_maru{
        width: 9.38vw;
        height: 9.38vw;
    }
    .scroll_maru .scroll_arrow{
        left: calc(50% - 1.1vw);
        top: 2.2vw;
        width: 2.2vw;
        height: 2.8vw;
        background-size: 100% auto;
    }
}
@media screen and (max-width: 1200px) {
    .top01 .txt .ja{
        font-size: 60px;
    }
    .top01 .txt .ja span{
        padding: 0 20px;
        margin-bottom: 10px;
    }
    .top01 .txt .en{
        font-size: 16px;
    }

}

@media screen and (max-width: 910px) {

    .top01 .txt{
        top: 38vh;
    }
    .scroll_maru{
        width: 120px;
        height: 120px;
    }
    .scroll_maru .scroll_arrow{
        left: calc(50% - 17px);
        top: 30px;
        width: 34px;
        height: 34px;
        animation-duration:2s;
    }
    /* スクロールの矢印　縦にスクロール　 */
    @keyframes kurukuru {
        0% {background-position: 0 0;}
        100% {background-position: 0 88px;}
    }

    @-moz-keyframes kurukuru {
        0% {background-position: 0 0;}
        100% {background-position: 0 88px;}
    }
    .top01 .bar-set1,
    .top01 .bar-set2,
    .top01 .bar-set3{
        display: none;
    }
    
}

@media screen and (max-width: 520px) {
    .top01 .txt{
        top: 32vh;
    }
    .top01 .txt .ja{
        font-size: 11.5vw;
    }
    .top01 .txt .ja span{
        padding: 0 3.8vw;
        margin-bottom: 1.9vw;
    }
    .top01 .txt .en{
        font-size: 3vw;
    }

    .scroll_maru{
        display: none;
    }

}








.top02{
    padding-top: 180px;
    padding-bottom: 180px;
}
.top02 .inner{
    position: relative;
}
.top02 .top_ttl01{
    position: absolute;
    left: 0;
    top: 140px;
    color: #fff;
}
.top02_ttl{
    width: 780px;
    height: 222px;
    margin: auto;
    background: url(../img/top/bg5.png) center center/contain no-repeat;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #fff;
    margin-bottom: 30px;
}
.top_youtube{
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
    aspect-ratio:16 / 9;
    margin: auto;
}
.top_youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top02 .inner .bar-set1{
    position: absolute;
    left: calc(50% + 740px);
    top: 180px;
}
.top02 .inner .bar-set1 .bar_ao.n2{
    margin-left: 80px;
}

.top02 .inner .bar-set2{
    position: absolute;
    left: calc(50% - 960px);
    top: 450px;
}
.top02 .inner .bar-set2 .bar_ao.n1{
    margin-left: 35px;
}
.top02 .inner .bar-set2 .bar_ao.n2{
    margin-left: 120px;
}

@media screen and (max-width: 1400px) {
    .top02 .top_ttl01{
        top: 160px;
    }
}




@media screen and (max-width: 910px) {
    .top02{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .top02 .top_ttl01{
        position: static;
    }
    
    .top02_ttl{
        width: 85.7vw;
        height: 24.4vw;
        padding-bottom: 3.3vw;
        font-size: 5.5vw;
        margin-bottom: 20px;
    }
    
    
    .top02 .inner .bar-set1{
        display: none;
    }
    .top02 .inner .bar-set2{
        display: none;
    }
    
}

@media screen and (max-width: 640px) {
    .top02{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .top02_ttl{
        margin-bottom: 10px;
    }
}







.top03{
    background: url(../img/top/bg4.png) center top repeat-y;
    background-size: 100% 10px;
    padding-top: 180px;
    padding-bottom: 350px;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    text-align: center;
}
.top03_ttl{
    font-size: 50px;
    color: #fff;
}
.top03_ttl span{
    display: inline-block;
    padding: 0 20px;
    background: -moz-linear-gradient(left, #1c87da, #000);
    background: -webkit-linear-gradient(left, #1c87da, #000);
    background: linear-gradient(to right, #1c87da, #000);
    margin-bottom: 10px;
}
.top03 .kei{
    width: 1px;
    height: 62px;
    background-color: #fff;
    margin: 40px auto;
}
.top03 .txt{
    color: #fff;
    margin-top: 60px;
}
.top03 .img1{
    position: absolute;
    top: 310px;
    left: calc(50% - 960px);
    width: 320px;
}
.top03 .img2{
    position: absolute;
    top: -60px;
    left: calc(50% + 540px);
    width: 320px;
}
.top03 .img3{
    position: absolute;
    bottom: -160px;
    left: calc(50% - 560px);
    z-index: 5;
    width: 320px;
}
.top03 .img4{
    position: absolute;
    top: 730px;
    left: calc(50% + 640px);
    z-index: 5;
    width: 320px;
}

@media screen and (max-width: 910px) {
    .top03{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .img_box1{
        width: 100%;
        max-width: 650px;
        margin: auto;
        text-align: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }
    .top03 .img1{
        position: static;
        width: 48%;
        padding-top: 45px;
    }
    .top03 .img2{
        position: static;
        width: 48%;
    }
    .img_box2{
        width: 100%;
        max-width: 650px;
        margin: auto;
        text-align: center;
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }
    .top03 .img3{
        position: static;
        width: 48%;
        padding-top: 45px;
    }
    .top03 .img4{
        position: static;
        width: 48%;
    }
}

@media screen and (max-width: 690px) {
    .top03_ttl{
        font-size: 7.2vw;
    }
    .top03_ttl span{
        padding: 0 10px;
    }
}
@media screen and (max-width: 640px) {
    .top03 .kei{
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .top03 .txt{
        margin-top: 40px;
    }
    .img_box1{
        margin-bottom: 40px;
    }
    .img_box2{
        margin-top: 40px;
    }
}









.top04{
    width: 100%;
    background-color: #195ba0;
    padding-top: 60px;
    padding-bottom: 180px;
    position: relative;
}
.top04:before{
    position: absolute;
    left: 0;
    top: -345px;
    width: 100%;
    height: 348px;
    background: url(../img/top/bg1.png) center top no-repeat;
    background-size: 100% 100%;
    content: "";
}
.top04 .bar-set1{
    position: absolute;
    left: 0;
    top: 280px;
}
.top04 .bar-set1 .bar_ao:nth-child(2){
    margin-left: 85px;
}
.top04 .bar-set2{
    position: absolute;
    left: 0;
    bottom: 150px;
}
.top04 .bar-set2 .bar_ao:nth-child(2){
    margin-left: 85px;
}
.top04 .top_ttl01{
    color: #fff;
}
.top04_lead{
    width: 100%;
    max-width: 1920px;
    margin: 80px auto 120px;
    align-items: flex-end;
    position: relative;
}
.top04_lead .txt{
    width: 56%;
    order: 2;
}
.top04_lead .txt .cap{
    margin-left: 60px;
    margin-top: -90px;
    font-size: 50px;
    line-height: 1.3;
    color: #fff;
}
.top04_lead .txt .cap span{
    display: inline-block;
    padding: 0 20px;
    background: -moz-linear-gradient(left, #1c87da, #000);
    background: -webkit-linear-gradient(left, #1c87da, #000);
    background: linear-gradient(to right, #1c87da, #000);
    margin-bottom: 10px;
}
.top04_lead .img{
    width: 44%;
    order: 1;
    text-align: right;
    padding-right: 2%;
    padding-left: 2%;
}
.top04_lead .bar-set3{
    position: absolute;
    left: 85%;
    bottom: -80px;
}
.top04_lead .bar-set3 .bar_ao.n1{
    margin-left: 35px;
}
.top04_lead .bar-set3 .bar_ao.n2{
    margin-left: 120px;
}
.sev_cate_item{
    width: 48.5%;
    background-color: #000;
}
.sev_cate_item a{
    display: block;
    color: #fff;
    overflow: hidden;
}
.sev_cate_item .img{
    position: relative;
}
.sev_cate_item .img:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    background-position: right top;
    background-repeat: no-repeat;
    background-image: url(../img/top/top16.png);
    content: "";
}
.sev_cate_item.bg2 .img:before{
    background-image: url(../img/top/top17.png);
}
.sev_cate_item .txt{
    padding: 45px;
    margin-top: -100px;
}
.sev_cate_item .txt dt{
    display: inline-block;
    font-size: 60px;
    position: relative;
}
.sev_cate_item .txt dt:after{
    position: absolute;
    left: -45px;
    top:-10px;
    width: calc(100% + 90px);
    height: 100%;
    background-color: #000;
    content: "";
}
.sev_cate_item .txt dt span{
    padding-right: 50px;
    background: url(../img/common/nav_toi_ya_w.png) right center no-repeat;
    position: relative;
    z-index: 3;
}
@media screen and (min-width: 911px) {
    .top04 .top_ttl01{
        text-align: center;
        padding: 0;
        background-image: none;
        position: relative;
    }
    .top04 .top_ttl01:before{
        position: absolute;
        left: calc(50% - 4px);
        top: -45px;
        width: 8px;
        height: 47px;
        background-color: #0084e8;
        content: "";
    }
}
@media screen and (max-width: 1900px) {
    .top04:before{
        position: absolute;
        left: 0;
        top: -18vw;
        width: 100%;
        height: 18vw;
        background: url(../img/top/bg1.png) center top no-repeat;
        background-size: 100% 100%;
        content: "";
    }
}
@media (min-width: 911px)  and (max-width: 1750px) {
    .top04_lead .txt .cap{
        margin-left: 3.4vw;
        margin-top: -5vw;
        font-size: 2.8vw;
    }
    .top04_lead .txt .cap span{
        padding: 0 1.1vw;
        margin-bottom: 0.5vw;
    }
    .top04_lead .img img{
        width: 35vw;
        height: auto;
    }
    .top04_lead .bar-set3{
        left: 90%;
        bottom: -90px;
    }
}

@media (min-width: 911px) and (max-width: 1600px) {
    .sev_cate_item .img:before{
        width: 5.6vw;
        background-size: 3vw auto;
    }
    .sev_cate_item .txt{
        padding: 2.8vw;
        margin-top: -6.25vw;
    }
    .sev_cate_item .txt dt{
        font-size: 3.75vw;
    }
    .sev_cate_item .txt dt:after{
        left: -2.8vw;
        top:-0.6vw;
        width: calc(100% + 5.6vw);
    }
    .sev_cate_item .txt dt span{
        padding-right: 3vw;
    }
}

@media screen and (max-width: 910px) {
    .top04{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .top04:before{
        display: none;
    }
    .top04 .bar-set1,
    .top04 .bar-set2{
        display: none;
    }
    .top04_lead .bar-set3{
        display: none;
    }
    .top04_lead{
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .top04_lead .txt{
        width: 100%;
        order: 1;
    }
    .top04_lead .txt .cap{
        margin-left: 6.5vw;
        margin-top: -9.8vw;
        font-size: 5.5vw;
    }
    .top04_lead .txt .cap span{
        padding: 0 2vw;
        margin-bottom: 1.5vw;
    }
    .top04_lead .img{
        margin-top: 30px;
        width: 100%;
        order: 2;
        text-align: center;
        padding-right: 2%;
        padding-left: 5%;
    }
    .top04_lead .img img{
        width: 80%;
        max-width: 500px;
        height: auto;
    }
    .sev_cate_item .img:before{
        width:50px;
        background-size: 35px auto;
    }
    .sev_cate_item .txt{
        padding: 20px;
        margin-top: -50px;
    }
    .sev_cate_item .txt dt{
        font-size: 40px;
    }
    .sev_cate_item .txt dt:after{
        left: -20px;
        width: calc(100% + 40px);
    }
    .sev_cate_item .txt dt span{
        padding-right: 40px;
    }

}

@media screen and (max-width: 640px) {
    .top04{
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .top04_lead {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .sev_cate_item{
        width: 100%;
        margin-bottom: 20px;
    }
    .sev_cate_item .img:before{
        background-size: 30px auto;
    }
    .sev_cate_item .txt dt{
        font-size: 30px;
    }
}













.top05{
    padding-top: 250px;
    padding-bottom: 250px;
    background-image: url(../img/top/top13.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.top05 .top_ttl_en{
    margin-top: -15px;
    color: #fff;
}
.top05 .btn{
    margin-top: 40px;
}
.top05 .btn a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 258px;
    height: 65px;
    background-color: #333;
    border-radius: 8px;
    padding-left: 40px;
    color: #fff;
    background-image: url(../img/common/nav_toi_ya_w.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 40px) center;
}

@media screen and (max-width: 910px) {
    .top05{
        padding-top: 100px;
        background-image: url(../img/top/top13_sp.jpg);
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-attachment:scroll;
    }
}

@media screen and (max-width: 640px) {
    .top05{
        padding-top: 60px;
    }
    .top05 .top_ttl_en{
        margin-top: -10px;
    }
    .top05 .cap br{
        display: none;
    }
    
}




















.top06{
    padding-top: 180px;
    padding-bottom: 180px;
    background-image: url(../img/top/bg2.png);
    background-size: 100% 10px;
    background-repeat: repeat-y;
    background-position: left top;
}
.top06_ttl{
    margin-bottom: 80px;
    position: relative;
}
.top06_ttl .txt{
    text-align: right;
    position: relative;
    z-index: 3;
}
.top06_ttl .bar-set1{
    position: absolute;
    left: -230px;
    top: -50px;
}
.top06_ttl .bar-set1 .bar_ao:nth-child(1){
    margin-left: 35px;
}
.top06_ttl .bar-set1 .bar_ao:nth-child(2){
    margin-left: 125px;
}
.top06_ttl .bar-set2{
    position: absolute;
    left: 0;
    top: 30px;
}
.top06_ttl .bar-set2 .bar_ao:nth-child(2){
    margin-left: 80px;
}


.top06_in{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.rec_slide_cont{
    width: 61%;
}
.top06_in .txt{
    width: 35%;
    color: #fff;
}
.top06_in .txt ._in{
    width: 95%;
    max-width: 430px;
}


.top06_in .txt .top_ttl_en{
    margin-top: -15px;
}

.top06_in .txt .btn{
    margin-top: 40px;
}
.top06_in .txt .btn a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 98px;
    border-radius: 8px;
    padding-left: 40px;
    color: #fff;
    background-image: url(../img/common/nav_toi_ya_w.png),url(../img/top/bg3.png);
    background-repeat: no-repeat,no-repeat;
    background-position:calc(100% - 40px) center, left top;
    background-size:auto, cover;
    margin-bottom: 20px;
}
.top06_in .bar-set3{
    position: absolute;
    right: 5%;
    bottom: -50px;
}
.top06_in .bar-set3 .bar_ao:nth-child(2){
    margin-left: 80px;
}


@media screen and (max-width: 1280px) {
    .top06_ttl .txt img{
        width: auto;
        height: 8.5vw;
    }
    .top06_in .txt .btn a{
        height: 7.6vw;
    }
}
@media screen and (max-width: 910px) {
    .top06{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .top06_ttl{
        margin-bottom: 60px;
    }
    .top06_ttl .txt{
        text-align: left;
    }
    .top06_ttl .bar-set1{
        display: none;
    }
    .top06_ttl .bar-set2{
        display: none;
    }
    .rec_slide_cont{
        width: 100%;
    }
    .top06_in .txt{
        width: 90%;
        margin: 50px auto 0;
    }
    .top06_in .txt ._in{
        width: 100%;
        max-width: initial;
        max-width: auto;
    }
    .top06_in .txt .top_ttl_en{
        margin-top: -10px;
    }

    .top06_in .txt .btn{
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .top06_in .txt .btn a{
        height: 80px;
    }
    .top06_in .bar-set3{
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .top06{
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .top06_ttl{
        margin-bottom: 40px;
    }
    
    .top06_in .txt {
        margin-top: 40px;
    }
    .top06_in .txt .top_ttl_en{
        margin-top: 0;
        margin-bottom: 10px;
    }
    .top06_in .txt .btn a{
        height: 70px;
    }
    
}
@media screen and (max-width: 450px) {
    
    .top06_ttl .txt img {
        width: auto;
        height: 13vw;
        margin-bottom: 15px;
    }
    
}







.top07{
    background-color: #fff;
    padding-top: 180px;
    padding-bottom: 180px;
}
.top07_ttl{
    margin-bottom: 40px;
}
.top07_ttl .top_ttl01{
    display: inline-block;
}
.top07_ttl .top_ttl_en{
    display: inline-block;
    margin-left: 40px;
    color: #eee;
}


.tabBox .tabArea {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tabBox .tabArea .one_tab {
    width: 19%;
}
.tabBox .tabArea .one_tab a {
    width: 100%;
    height: 75px;
    padding: 5px;
    text-decoration: none;
    transition-duration: 0.3s;
    text-align: center;
    color: #000;
    background-color: #eee;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}
.tabBox .tabArea .one_tab a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #808080;
}
.tabBox .tabArea .one_tab a.select {
    color: #fff;
    background-color: #808080;
}

.tab_contents .tab_main {
    display: none;
    padding: 25px;
    min-height: 280px;
    border: 6px solid #f7f7f7;
    transition-duration: 0.3s;
}
.tab_contents .tab_main.is_show {
    display: block;
}

.tab_main .inner_area .info1{
    width: 35%;
    text-align: center;
    padding-top:70px;
}
.tab_main .inner_area .info1 dl{
    display: inline-block;
    text-align: left;
    min-width: 300px;
}
.tab_main .inner_area .info1 dt{
    font-size: 30px;
    padding-left: 50px;
    background: url(../img/top/map_pin.png) left center no-repeat;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.tab_main .inner_area .info1 dd{
    margin-bottom: 30px;
}
.tab_main .inner_area .info2{
    width: 63%;
}
.tab_main .inner_area .info2 .img{
    margin-bottom: 20px;
}
.tab_main .inner_area .info2 .img li{
    width: 49%;
}

.tab_main .inner_area .info2 .g-map{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 380px;/* 高さ */
}
.tab_main .inner_area .info2 .g-map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 910px) {

    .top07{
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .tabBox .tabArea {
        margin-bottom: 30px;
    }
    .tabBox .tabArea .one_tab a {
        width: 100%;
        height: 60px;
    }

    .tab_contents .tab_main {
        padding: 20px;
    }
    .tab_main .inner_area .info1{
        width: 100%;
        padding-top:0;

    }
    .tab_main .inner_area .info1 dl{
        display: block;
        width: 100%;
        min-width: initial;
        min-width: auto;
    }
    .tab_main .inner_area .info1 dt{
        font-size: 25px;
        padding-left: 40px;
        padding-top: 5px;
        padding-bottom: 5px;
        background-size: auto 30px;
    }

    .tab_main .inner_area .info1 dd:not(:last-child){
        margin-bottom: 20px;
    }
    .tab_main .inner_area .info2{
        width: 100%;
    }
    .tab_main .inner_area .info2 .img li{
        width: 49%;
    }

    .tab_main .inner_area .info2 .g-map{
        padding-top: 42vw;/* 高さ */
    }
    
}

@media screen and (max-width: 640px) {
    .top07{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .tabBox .tabArea {
        margin-bottom: 10px;
    }
    .tabBox .tabArea .one_tab {
        width: 49%;
        margin-bottom: 10px;
    }
    .tabBox .tabArea .one_tab:nth-child(n+3) {
        width: 32%;
    }
    .tabBox .tabArea .one_tab a {
        height: 50px;
    }
}

@media screen and (max-width: 420px) {
    .top07_ttl .top_ttl_en{
        margin-left: 0;
    }

    .tab_main .inner_area .info1 dt{
        font-size: 22px;
    }
    .tab_main .inner_area .info2 .img li{
        width: 100%;
        margin-bottom: 10px;
    }
    .tab_main .inner_area .info2 .g-map{
        padding-top: 70vw;/* 高さ */
    }
}





















.top08{
    padding-top: 250px;
    padding-bottom: 180px;
    color: #fff;
}
.top08 ._in{
    width: 90%;
    max-width: 1290px;
    margin: auto;
    
}
.top08 ._in .txt{
    width: 48%;
}
.top08 ._in .toi_info{
    width: 42%;
}
.toi_info .tel a{
    color: #fff;
}
.toi_info .tel{
    font-size: 40px;
    line-height: 1;
}
.toi_info .tel span{
    font-size: 24px;
}
.toi_info .time{
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.toi_info .btn a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 112px;
    background-color: #333;
    border-radius: 10px;
    padding-left: 40px;
    color: #fff;
    background-image: url(../img/common/nav_toi_ya_w.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 40px) center;
}
.toi_info .btn a:hover{
    background-color: #1c87da;
}



@media screen and (max-width: 1200px) {
    .toi_info .tel{
        font-size: 3vw;
    }
}


@media screen and (max-width: 910px) {
    .top08{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .top08 ._in{
        max-width: 550px;
    }
    .top08 ._in .txt{
        width: 100%;
    }
    .top08 ._in .toi_info{
        width: 100%;
        margin-top: 50px;
    }
    .toi_info .tel{
        font-size: 35px;
        line-height: 1.2;
    }
    .toi_info .tel span{
        font-size: 18px;
    }
    .toi_info .btn a{
        height: 90px;
    }
    
}

@media screen and (max-width: 640px) {

    
    .top08{
        padding-bottom: 60px;
    }
    
    .toi_info .tel{
        font-size: 28px;
        line-height: 1.2;
    }
    .toi_info .tel span{
        font-size: 16px;
    }
    .toi_info .time{
        margin-top: 10px;
    }
    .toi_info .btn a{
        height: 70px;
    }

    
    
    
    
    
    
    
    
    
    
    
}















