@charset "utf-8";

/*リセット*/
*{
    padding:0;
    margin:0;
    text-decoration: none;
    list-style: none;
}

img{
    vertical-align: bottom;
    max-width: 100%;
}
/*リセット End*/

body{
    font-size: 1rem;
    line-height: 1.7;
    font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
}

h2{
    font-size: 1.2rem;
    text-align: center;
}

h3{
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 10%;
    margin-bottom: 2%;
}

a,a:visited{color: #000;
}

address{
    font-style: normal;
}

/*ヘッダー*/

header{
    display: flex;
    align-items: flex-end;/*flexアイテムを下揃え*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 26px;
    padding-top: 32px;
    padding-bottom: 10px;
    background: #fff;
    z-index: 1000;
}

h1.logo{
    width: 10rem;
    margin-top: 5%;
    margin-left: 3%;
}

a.btn_taiken {
	display: block;
	text-align: center;
	width: 100%;
    margin-left:70%;
	padding: 5%;
	font-weight: bold;
	border: 0.2rem solid #e00000;
	background: #e00000;
	color: #fff;
	border-radius: 0.8rem;
	transition: 0.5s;
}

a.btn_taiken:hover {
	color: #e00000;
	background: #fff;
}

.menu_btn{
    position: absolute;
    right: 10%;
    z-index: 2000;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    width: 2.125rem;
    height: 1.3125rem;
    transition: all 1s;
}

.menu_btn span{
    display: inline-block;
    position: absolute;
    left: 0;

    width: 100%;
    height: 0.0625rem;
    background: #000;
    transition: all .4s; /*0.4秒の意味*/
}
.menu_btn span:nth-of-type(1){
    top: 0;
}
.menu_btn span:nth-of-type(2){
    top: 0.6255rem;
}
.menu_btn span:nth-of-type(3){
    bottom: 0;
}

.menu_btn.active span:nth-of-type(1){
    transform:translateY(0.625rem)rotate(45deg);
}
.menu_btn.active span:nth-of-type(2){
    opacity: 0;
}
.menu_btn.active span:nth-of-type(3){
    transform: translateY(-0.5625rem)rotate(-45deg);
}

header ul.sp{/*メニューリスト*/
    display: none;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1500;
    background: #E1F2F6;
    font-size: 1.1rem;
    padding-top: 10%;
    padding-left: 15%;
    line-height: 2.5; 
}

header ul.sp.active{
    display: block;
}

header.sp li{
    border-bottom: solid 1px #333333; 
    padding-left:5% ;
    margin-right: 30%;
}

header ul.pc{
    display: none;
}

/* メイン */
main{
    margin-top: 5rem;
}

/* トップ画面　*/

.blue{
    position: relative;
    display: inline-block;
}
.blue img{
    display: block;
    object-fit: cover;
    aspect-ratio: 192/60;   
}

.blue::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 60, 60, 0.8);
}
.blue h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 24px;
    width: 90%;
}

/*本文*/
#staff{
    width: 90%;
    margin: 5% auto;
}

#staff h3{
    font-size: 1.1rem;
    border-left: 7px solid #28BAE9;
    border-bottom: 2px solid #28BAE9;

}

span.red{
    border-bottom: 2px solid #e00000;
}

/*フッター*/
footer{
    background-color: #E1F2F6
}

/*フッターメニュー*/
.menu li{
    padding: 2% 10% 2% 10%;
    line-height: 2.5; 
    font-size: 1.1rem;
    border-bottom: solid 0.06rem #333333;
}

li.arrow_right{
    position: relative;
}

li.arrow_right::before{
    content:"";
    margin: auto;
    position: absolute;
    top:0;
    bottom: 0;
    right:10%;
    width: 1.25rem;
    height: 1.25rem;
    border-top: 0.2rem solid #333;
    border-right: 0.2rem solid #333;
    transform: rotate(45deg);
}

footer div#pcmenu{
    display: none;
}

/*フッター*/

footer address h3{
    float: left;
    margin-bottom: 5%;
    width: 45%;
    margin-left: 5%;
}

footer .sns-btn{
    display: inline-block;
    margin-top: 13%;
    margin-left: 3%;
}
.sns-btn li{
    width: 2rem;
    margin-left: 0.5rem;
    margin-right: 0.8rem;
    float: left;
}

footer address ul{
    padding-left: 5%;
    clear: left;
}

p.copy{
    text-align: center;
    padding-top: 5%;
    padding-bottom: 7%;
}
/*768px以上*/
@media screen and (min-width:768px){

    /*header*/
    h1.logo{
        width: 10rem;  
    }

    header .menu_btn{
        display: none;
    }
    header ul.pc{
        display: block;
        font-size: 14px;
        margin-left: 10%;   
        width: 500px;
    }
    header ul.pc li{
        display: inline-block;
        padding-left: 2%;
    } 


    /*top画面*/
    .blue img{
        object-fit: cover;
        aspect-ratio: 192/35;   
    }

    .blue h2{
        font-size: 30px;
    }

    /*本文*/
    #staff{
        width: 700px;
        }
   

/*footer menu*/
footer ul.menu{
    display: none;    
}

footer div#pcmenu{
    display: block;
    width: 600PX;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    line-height: 2.5em;
}

footer ul#pcmenu1{
    float: left;
    width: 33%;
}

footer ul#pcmenu2{
    float: left;
    width: 33%;
}

footer ul#pcmenu3{
    float: left;
    width: 33%;
}

footer address h3{
    clear: both;
    width: 40%;
}

footer div#pcfooter{
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}


}