@charset "utf-8";
/* CSS Document */
/*
============================================================
*	common.css
============================================================
*/
/* 初期化
==========================================================*/
@import url("reset.css");
@import url("animation.css");


/* 
==========================================================*/
*{box-sizing: border-box;}
html,body{
	height:100%;
	background: #fff;
}
body{
	font-family: Hiragino Sans, 'ヒラギノ角ゴシック','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
	line-height:1.8;
	color:#555;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
	width: 100%;
	font-size: 13px;
}
main > p,
main > div,
main > section{
	margin:10px;
}

a,a:link{
	color:#20a7e5;
	text-decoration: none;
	transition: 0.2s ease-in-out;
}
/*a:visited{text-decoration:none;}*/
a:hover{text-decoration: none;}
/*a:active{text-decoration:none;}*/

a:visited {
    color: #20a7e5;
}

img{
    max-width:100%;
    height:auto;
}
.wrapper{
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
}
.container{
	width: 100%;
	padding: 0 10px;
	margin-left:auto;
	margin-right:auto;
	box-sizing: border-box;
}
main{
	margin-top: 50px;
}
main h1{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: #045c86;
	padding: 4px 0;
}
#contents{
	box-sizing: border-box;
	padding: 15px;
}

/* ヘッダー
==========================================================*/
header{
	height: 50px;
	background-color: #045c86;;
	z-index: 1;
	position: fixed;
	width: 100%;
	top: 0;
}
.header_logo{
	float: left;
	margin: 10px 10px;
}
.header_logo a:hover{
	opacity: .6;
}
.logo img{
	width: 120px;
}
.kv_header{
	max-width: 600px;
}

.kv{
	margin-top: 50px;
}
.kv img{
	width: 100%;
}


/* グローバルナビ
----------------------------------------------------------*/
.gnavi{
	margin: 60px 0;

}
.gnavi ul{
	border-top: 1px solid #27a6df;
	margin-bottom: 20px;
}
.gnavi ul li a{
	display: block;
	border-bottom: 1px solid #27a6df;
	color: #fff;
	padding: 8px 10px;
	font-size: 15px;
	position: relative;
}
.gnavi ul li a::after{
	content:"";
	position: absolute;
	width: 8px;
	height: 13px;
	background: url(../images/icon_rarrow_gray.png) 0 0 / 8px 13px no-repeat;
	top: 40%;
	right: 10px;
}
.sp_menu{
	background: #0077ad;
	width: 100%;
	overflow: hidden;
	height: 100vh;
	position: fixed;
    display: none;
    box-sizing: border-box;
    margin: 0;
    text-align: left;
    top: 0;
    bottom: 0;
    left: 100%;
    z-index: 10;
}
#menuButton {
    display: block;
    width: 42px;
    height:42px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}
#menuButton span {
    display: block;
    background: #0077ad;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
#menuButton span:first-child {
    top: 12px;
}
#menuButton span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
#menuButton span:last-child {
    bottom: 12px;
}
#menuButton.active span{
	background: #fff;
}
#menuButton.active span:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
#menuButton.active span:nth-child(2) {
    opacity: 0;
}
#menuButton.active span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}




/* フッター
==========================================================*/

footer{
	margin: 0;
	padding: 0;
	background: #045c86;
}
.footer_logo{
	text-align: center;
	margin: 0;
}
.footer_logo img{
	width: 130px;
}
footer aside ul{
	display: flex;
	width: 30%;
	justify-content: space-around;
	text-align: center;
	margin: 15px auto;

}
footer aside ul li img{
	width: 38px;
}
footer nav.footer_navi ul{
	border-top: 1px solid #e0e0e0;
	margin-bottom: 20px;
}
footer nav.footer_navi ul li a{
	display: block;
	border-bottom: 1px solid #e0e0e0;
	color: #fff;
	padding: 8px 10px;
	font-size: 15px;
	position: relative;
}
footer nav.footer_navi ul li a::after{
	content:"";
	position: absolute;
	width: 8px;
	height: 13px;
	background: url(../images/icon_rarrow_gray.png) 0 0 / 8px 13px no-repeat;
	top: 40%;
	right: 10px;
}
.copyright{
	color: #fff;
    background: #728080;
    font-size: 10px;
    letter-spacing: .2em;
    text-align: center;
    /* height: 35px; */
    /* line-height: 35px; */
    padding: 10px;

}





/* 汎用コンテンツ
==========================================================*/
/* タイトル
----------------------------------------------------------*/
section{
	border-top: 1px solid #ddd;
}
.contentsTitle h2{
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	width: 100%;
	text-align: center;
	padding: 10px 0;
}
.contentsTitle h2 span{
	display: block;
	font-size: 12px;
	font-weight: normal;
	padding: 5px 10px;
	color: #0077ad;
}
.contentsImage img{width: 100%;}
.pinkTitle{
	width: 100%;
	text-align: center;
	background: #ffe4ef;
	font-size: 20px;
	height: 60px;
	line-height: 60px;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.contentsBox{
	margin: 0;
	position: relative;
	z-index: 0;
	padding: 15px;
}
.contentsBox p{
	font-size: 15px;
	margin: 10px 0;
}

/* テキスト ＆　背景
----------------------------------------------------------*/
.BG_White{
	background: #fff;
}
.BG_Gray{
	background: #f8f8f8;
}



/* ボタン
----------------------------------------------------------*/
.commonCta{
	background: #fff;
	padding: 1px 0;
}
.commonBtn{
	margin: 20px 35px;
	text-align: center;
	font-size: 20px;
}
.commonBtn a{
	display: inline-block;
	border-radius: 5px;
	width: 100%;
	height: 60px;
	line-height: 60px;
	position: relative;
}
.commonBtn a::after{
	content: "";
	position: absolute;
	width: 8px;
	height: 13px;
	top: 40%;
	right: 20px;
	background : url(../images/icon_rarrow_white.png) 0 0 / 8px 13px no-repeat;
}
.btnBlue a{
	background: #20a7e5;
	color: #fff;
	box-shadow: 0px 5px 0px 0px rgba(8, 127, 182, 1);
	text-shadow: 1.5px 2.598px 0px rgba(0, 0, 0, 0.1);
}
.btnGreen a{
	background: #00acae;
	color: #fff;
	box-shadow: 0px 5px 0px 0px #009597;
	text-shadow: 1.5px 2.598px 0px rgba(0, 0, 0, 0.1);
}
a.docomo{
	background: #cf0f31;
	color: #fff;
	box-shadow: 0px 5px 0px 0px #b00221;
	margin: 5px 0;
}
a.au{
	color: #fff;
	background: #eb5504;
	box-shadow: 0px 5px 0px 0px #bb4200;
	margin: 5px 0;
}
a.softbank{
	color: #fff;
	background: #aaafb3;
	box-shadow: 0px 5px 0px 0px #929393;
	margin: 5px 0;
}



.headerCta{
	background: #fff;
	padding: 10px 0;
}


/* 汎用
----------------------------------------------------------*/
.pt{
	padding-top:1px;
}
.pb{
	padding-bottom: 1px;
}
.tc{
	text-align: center;
}



/* フォーム
----------------------------------------------------------*/



/* バナー
----------------------------------------------------------*/


/* その他
----------------------------------------------------------*/
.bold{font-weight: bold;}


/* clearfix
----------------------------------------------------------*/
.cf:after{
	display:block;
	height:0;
	content:"";
	visibility:hidden;
	clear:both;
}
.cf{
	zoom:1;
}


/* 各コンテンツ
==========================================================*/
.contents_01 p{
	margin: 10px 0 20px;
}
.contents_01 .contentsBox{
	margin-bottom: 60px;
}
.contents_02{
	padding-top: 20px;
}
.contents_02 p{
	margin: 0;
}

#tableBox{
	margin: 40px 0;
}
#tableBox h3{
	padding: 10px;
}
#tableBox table{
	text-align: center;
	border-collapse: collapse;
}
#tableBox table td,#tableBox table th{
	padding: 5px;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}






.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table-bordered {
    border: 1px solid #ddd;
}
.top main > p,
.top main > div,
.top main > section{
	margin:0px;
}

.footer_logo {
    text-align: center;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #20a7e5;
}