*{
    margin:0;
    padding: 0;

   }

html{
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* overflow-y: hidden; */
    }

body{
    position: relative;
    font-size:16px;
    letter-spacing: 0.025em;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    max-width: 100%;
    }

a{
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.wrapper{
    overflow: hidden;
}

/* ヘッダー */

.header{
    background: white;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.header_inner{
    max-width: 1200px;
    margin:0 auto;
    display: flex;
    height: 66px;
    align-items: center;
    transition: 0.5s;

}

.small{
    transition: 0.5s;
    height: 50px;
}

.header_logo h1{
    font-size: 26px;
    font-weight: bold;
    color: #101010;
    display: inline-block;
    transition: 0.4s;
}


.header_logo span{
    font-size: 14;
    font-weight: bold;
    color: #085148;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.header_navigation{
    margin-left: auto;
    display: flex;
}
.header_navigation a{
    margin-right: 30px;
    position: relative;
    color: #101010;
}


.header_navigation a{
position: relative;
}

.header_navigation a:hover{
color: #101010;
opacity: 0.8;
    transition: all .5s;

}

.header_navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:#0FBEA6;
    transition: all .5s;
    transform: scale(0, 1);
    transform-origin: left top;
    display: block;
}

.header_navigation a:hover::after {
/*X方向にスケール拡大*/
    transform: scale(1, 1);
    /* display: block; */
}



.green{
    color: #085148;
    display: inline-block;
}

.red_bottom_border{
    color: #C71717;
    text-decoration: underline;
}

.top_return a{
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #085148;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.top_return a:hover{
    opacity: 0.8;
    transition: all .5s;

}



/* SPHEADER */
@media(max-width:968px){
    .header{
    background: white;
}
.header_inner{
    max-width: 1200px;
    margin:0 auto;
    display: flex;
    height: 66px;
    margin-left: 10px;
    align-items: center;
}

.header_logo h1{
    font-size: 22px;
    font-weight: bold;
    color: #101010;
    display: inline-block;
}
.header_logo span{
    font-size: 13px;
    font-weight: bold;
    color: #085148;
    display: block;
    vertical-align: middle;
    margin-left: 0;
}
.green{
    color: #085148;
    display: inline-block;
}
.red_bottom_border{
    color: #C71717;
    text-decoration: underline;
}
.top_return a{
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #085148;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.top_return a:hover{
    opacity: 0.8;
    transition: all .5s;

}
}

/* SP_HBM */
@media(max-width:968px){
    .pc_Header{
        display: none;
    }
}
@media(min-width:969px){
    .sp_Header{
        display: none;
    }
}
    .menuButton{
        display: block;
        height: 40px;
        width:40px;
        background: #0FBEA6;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10;
    }

    .menuButton div{
        height: 2px;
        width: 60%;
        background: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 10;
    }

    .menuButton div:nth-of-type(1){
        transform: translate(-50%,-8px);
    }
    .menuButton div:nth-of-type(3){
        transform: translate(-50%, 8px);
    }
    .menuButton.active div:nth-of-type(1){
        transform: rotate(45deg) translate(-50%,0);
        -webkit-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
    }
    .menuButton.active div:nth-of-type(2){
        display: none;
    }
    .menuButton.active div:nth-of-type(3){
        transform: rotate(-45deg) translate(-50%, 0);
        -webkit-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
    }

    nav{
        position: relative;
        transition: all .25s;
        top: 66px;
    }
    nav.active{
        opacity: 1;
    }
    .sp_menu{
        position: absolute;
        top: 0;
        right: 0;
        /* background: #f8f8f8; */
        width: 60vw;
        height: 100vh;
        z-index: 9;
        transform: translateX(75vw);
        transition: all .25s;
        padding: 0 0;
        overflow-y: scroll;
    }
    .sp_menu.open{
        transform: translateX(0);
        transition: all .25s;
    }
    .sp_menu li a:nth-last-child(){
        border-top: none;
        display: block;
    }
    .sp_menu li a{
        background:#0FBEA6;
        padding: 20px 10px;
        border-top: 1px solid #f5f5f5;
        color: white;
        font-size: 1.4rem;
        font-weight: 600;
        display: block;
    }
    #close.hide{
        transform: translateX(-75vw);
        transition: all .25s;
    }