@charset "utf-8";
/* リセット
------------------------------------- */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}

table {border-spacing:0; border-collapse:collapse;}
* html table {border-collapse:collapse;}
*:first-child+html table {border-collapse:collapse;}
caption,th {text-align:left; font-weight:normal;}
table,th,td,img {border:0;}
img,input {vertical-align:middle; outline:none;}
q:before,q:after {content:'';}
ul {list-style: none;}

hr,
legend,
caption {display:none;}

img {border:0; vertical-align:bottom;}

a:focus { outline:none;}


/* 基本設定
------------------------------------- */
body{
    width: 100%;
    height: 100%;
    background: #E7F1F9;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.59;
}

/* ヘッダ
------------------------------------- */
#header{
    position: relative;
    background: #0F5CBF;
    height: 148px;
    width: 100%;
    
}

#header a img{
    position: absolute;
    width: 186px;
    height: auto;
    top: 21px;
    left: 66px;
}

#header h1{
    text-align: center;
    padding-top: 46px;
}

#header h1 span{
    font-size: 41.6px;
    font-weight: 900;
    color: #fff;
    border-bottom: solid 4px #78BEFF;
    padding-left: 5px;
    padding-right: 5px;
    
}

p.msg{
    margin-top: 30px;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.71;
    color: #231815;
    
}

.boxCaution{
    position: relative;
    width: 858px;
    border: solid 1px #9DB0E0;
    background: #fff;
    margin: 46px auto;
    padding: 24px 60px 40px;
    text-align: center;
}

.boxCaution p{
    display: inline-block;
    background: #5E88BB;
    padding: 2px 14px;
    font-size: 16.2px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.boxCaution ul{
    position: relative;
    left: 20px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.41;
    text-align: left;
    margin: 10px auto 10px;
}

.boxCaution ul li{
    position: relative;
    margin-top: 15px;
}

.boxCaution ul li::before{
    position: absolute;
    content: "■";
    top: 0;
    left: -20px;
}

a p.btnGo{
    display: block;
    background: #FC7600 url("../img/btnStartPc.png") no-repeat;
    background-size: 384px 50px;
    border-radius: 6px;
    width: 384px;
    height: 50px;
    margin: 0 auto 70px;
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.10);
    transition: 0.4s;
}

a:hover p.btnGo{
	opacity:0.65;
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0);
	transition: 0.4s;
}

a:active p.btnGo{
    position: relative;
    top: 2px;
    left: 2px;
}


#footer{
    display: block;
    color: #9E9E9F;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}