@charset "utf-8";
*{
	font: min(1.6666666666666667vw,16px)/240% 'Noto Sans JP', sans-serif;;
	margin:0;
	padding: 0;
	text-decoration: none;
    box-sizing: border-box;
}

a:hover img{opacity:0.8;filter:alpha(opacity=80);-ms-filter: "alpha( opacity=80 )";}
a:HOVER{opacity:0.8;filter:alpha(opacity=80);-ms-filter: "alpha( opacity=80 )";}
img{
	border:0;
	padding: 0;
	width: fit-content
}
/*-----------------------------------------------------*/
html{
    width: 100%;
    scroll-behavior: smooth;
}
body {
    width: 100%;
}
/*--------------------------- ヘッダー ---------------------------*/
header{
    width: 100%;
    z-index: 10;
    background: #1935C8;
    height: 82px;
}
header > div{
	height: 100%;
	/*max-width:1280px;*/
	margin: 0 auto;
	display: flex;
}
header > div a img{
	height: 100%;
    margin-left: 32px;
}
section{
    width: 100%;
}

main{
	width:100%;
	max-width: calc(1280px - (20px * 2));
    margin: 0 auto;
    padding: 0 20px;
}


/*--------------------------- フッター ---------------------------*/
footer{
    width: 100%;
    padding: 40px 0 20px 0;
    background: #fff;
    color: #8993a3;
}
footer > hr{
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px #ccc solid;
}
footer > div.f_top{
    max-width:1280px;
	margin: 0 auto;
    color: #8993a3;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
footer > div.f_top p{
    font-size: 12px;
}
footer> div.f_top p span{
    font-size: 12px;
    margin-right: 6px;
}
footer > div.f_top p:nth-of-type(1){
    order: 2;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer > div.f_top p:nth-of-type(2){
    order: 1;
}
footer > div.f_bottom{
    max-width:1280px;
	margin: 0 auto;
    color: #8993a3;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    justify-content: space-between;
}
footer > div.f_bottom a,
footer > div.f_bottom span{
    font-size: 12px;
    margin: 0 10px;
}
footer > div.f_bottom a:LINK,
footer > div.f_bottom a:VISITED,
footer > div.f_bottom a:ACTIVE,
footer > div.f_bottom a:HOVER {color: #8993a3;}

footer > div.f_bottom p{
    display: flex;
}

br.pc-only{
    display: block;
}
br.sp-only{
    display: none;
}
/*--------------------------- SP ---------------------------*/
@media only screen and (max-width: 768px){
    br.pc-only{
        display: none;
    }
    br.sp-only{
        display: block;
    }
    body {
        background: #ECEEEF;
        padding-top:min(15.645371577574968vw,120dpx);
    }
	header > div img{
        padding: 1.5% 0;
	}
    footer > div.f_bottom{
        display: unset;
        width: 100%;
    }
    footer > div.f_bottom p{
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px 0 0 0 ;
    }
    footer > div.f_top p:nth-of-type(1){
        order: 1;
    }
    footer > div.f_top p:nth-of-type(2){
        order: 2;
    }
    footer > div.f_top{
        display: unset;
        width: 100%;
    }
    footer > div.f_top p{
        text-align: center;
        padding: 10px 0 20px 0;
    }

}