@charset "utf-8";

/* ----------------------------------------------- */
/*                      basic                      */
/* ----------------------------------------------- */
body{
	font-size: 15px;
	font-size: 1.5rem;
}

.txt_cl	{ text-align: center; }

.txts_l	{ font-size: 20px; font-size: 2.0rem; }
.txts_m	{ font-size: 18px; font-size: 1.8rem; }
.txts_s	{ font-size: 16px; font-size: 1.6rem; }


.wrapper { width: 100%; position: relative; overflow: hidden; }

nav,
section > .wrap,
article > .wrap,
footer .wrap{
	max-width: 1100px;
	margin: 0 auto;
}

.txt_cre_w{
	position: absolute;
}

.snsBtn line{
	display: none;
}

.endpoint{	/* 終了しましたマーク */
	display: inline-block;
	width: 100px;
	height: auto;
	vertical-align: middle;
}

hr.star{
	margin: 75px auto;
}

/* ----------------------------------------------- */
/*                     reset                       */
/* ----------------------------------------------- */
.txts_rst	{ font-size: 15px; font-size: 1.5rem !important; } /* フォントサイズ */
.txt_em_rst	{ font-weight: normal !important; } /* 文字の太さ */
.col_rst	{ color: #cce0ee; } /* 文字の色 */

/* ----------------------------------------------- */
/*                     width                       */
/* ----------------------------------------------- */
/* PC only */
.w200	{ width: 200px; height: auto; }
.w300	{ width: 300px; height: auto; }
.w400	{ width: 400px; height: auto; }
.w500	{ width: 500px; height: auto; }
.w600	{ width: 600px; height: auto; }
.w700	{ width: 700px; height: auto; }
.w800	{ width: 800px; height: auto; }
.w900	{ width: 900px; height: auto; }

.mw200	{ max-width: 200px; height: auto; }
.mw300	{ max-width: 300px; height: auto; }
.mw400	{ max-width: 400px; height: auto; }
.mw500	{ max-width: 500px; height: auto; }
.mw600	{ max-width: 600px; height: auto; }
.mw700	{ max-width: 700px; height: auto; }
.mw800	{ max-width: 800px; height: auto; }
.mw900	{ max-width: 900px;	height: auto; }

/* ----------------------------------------------- */
/*                    textbox                      */
/* ----------------------------------------------- */
.txtbox_b{
	border: 1px #7ea0c1 solid;
	padding: 20px 25px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	position: relative;
}

.txtbox_star_w{
	border: 1px #fff solid;
	padding: 30px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	background: url(../images/box_back_sprite.gif) repeat;
}

.txtbox_star_w::before{
	position: absolute;
	display: block;
	content: "";
	background: url(../images/box_back_star_w01.png) left top no-repeat;
	top: -17px;
	left: -30px;
	width: 68px;
	height: 100%;
	background-size: 100% auto;
}

.txtbox_star_w::after{
	position: absolute;
	display: block;
	content: "";
	background: url(../images/box_back_star_w02.png) right bottom no-repeat;
	bottom: -17px;
	right: -30px;
	width: 68px;
	height: 100%;
	background-size: 100% auto;
}

.txtbox_dot{
	background: rgba(2, 0, 37, 0.5);
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: 3px rgba(126, 160, 193, 0.6) dotted;
	padding: 15px 20px;
}

/* ----------------------------------------------- */
/*                     column                      */
/* ----------------------------------------------- */
.clm{
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-flex-direction: row;
	flex-direction: row;
	/* IE10 */
	display: -ms-flexbox;
	-ms-flex-direction: row;
	-ms-flex: 1 1 auto;
	list-style: none;
}

/* カラム横幅相対 */
.clm_20p { width: 18%; }
.clm_25p { width: 24%; }
.clm_30p { width: 28%; }
.clm_40p { width: 38%; }
.clm_45p { width: 44%; }
.clm_50p { width: 48%; }
.clm_60p { width: 58%; }
.clm_70p { width: 68%; }
.clm_75p { width: 73%; }
.clm_80p { width: 78%; }

.clm_b{		/* カラム左右均等分け */
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
}

.clm_c{		/* カラム左右中央寄せ */
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
}

.clm_a_c{	/* カラム上下中央寄せ */
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
}

/* ----------------------------------------------- */
/*                      header                     */
/* ----------------------------------------------- */
header{
	position: fixed;
	width: 100%;
	height: 60px;
	z-index: 1000;
	color: #fff;
	top: 0;
	background: rgba(3,5,27,0.8);
}

#nav{
	max-width: 100%;
	margin: 0 auto;
	height: 60px;
}

#nav ul{
	max-width: 100%;
	padding: 0;
	text-align:  center;
	list-style: none;
}

.header_logo{
	width: 230px;
}

.header_logo img{
	width: 185px;
	margin: 12px 0 0 10px;
}

.header_logo::after{
	position: absolute;
	display: block;
	content: "";
	background: url(../images/header_parts.png) no-repeat;
	bottom: -28px;
	left: 0;
	width: 200px;
	height: 28px;
	background-size: 200px auto;
	opacity: 0.8;
}

.header_menu{
	-webkit-flex: 2 1 auto;
	flex: 2 1 auto;
	-ms-flex: 2 1 auto;
}

.header_menu_inner{
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex: 1 1 170px;
	flex: 1 1 170px;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	/* IE10 */
	display: -ms-flexbox;
	-ms-flex: 1 1 170px;
	-ms-flex-pack:end;
	margin: 0;
}

.mmenu{
	width: 140px;
	position: relative;
	height: 60px;
	cursor: pointer;
}

.mmenu.en{
	width: 170px;
}

.mmenu > a{
	display: block;
	height: 60px;
}

.mmenu:hover::after{
	position: absolute;
	content: "";
	display: block;
	bottom: 16px;
	left: 0;
	width: 95%;
	height: 5px;
	background: rgba(252, 250, 88, 0.3);
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.mobile_mmenu{
	display: none;
}

.menu_img{
	margin: 20px auto 0;
	width: auto;
	height: 31%;
}

.header_submenu.hide{
	visibility: hidden;
	opacity: 0;
	top: 80%;
}

.mmenu:hover ul{
	visibility: visible;
	opacity: 1;
	top: 101%;
}

.header_submenu{
	position: absolute;
	width: 100%;
	left: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-left: -85px;
}

.header_submenu li{
	width: 170px;
	background: rgba(3,5,27,0.8);
	margin-top: 4px;
}

.header_submenu li:hover{
	background: rgba(93, 88, 0, 0.6);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.header_submenu li a{
	display: block;
	padding: 5px 0;
	text-decoration: none;
}

.header_sidemenu{
	width: 200px;
	text-align: right;
	padding-right: 15px;
	position: relative;
}

.header_sidemenu.en{
	width: 100px;
	height: 60px;
	text-align: right;
}

.header_icon{
	position: absolute;
	line-height: 60px;
	right: 90px;
}

.header_icon p{
	display: inline-block;
	font-size: 19px;
}

.header_icon a .fa{
	margin-left: 0;
}

.language{
	display: inline-block;
	border: 1px #fff solid;
	min-width: 70px;
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
	text-align: center;
	margin-top: 17px;
}

.language:hover{
	cursor: pointer;
}

.language_menu{
	position: absolute;
	top: 85%;
	right: 15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	font-size: 11px;
	font-size: 1.1rem;
	border: 1px #fff solid;
}

.language_menu li{
	min-width: 68px;
	padding: 2px 0;
	background: rgba(3,5,27,0.8);
}

.language_menu li:hover{
	background: rgba(136, 130, 27, 0.7);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.language_menu li a{
	display: block;
}

@media screen and (min-width:769px) and (max-width:1080px){
	.header_logo{
		width: 170px;
		text-align: center;
	}

	.header_logo img {
	    width: 155px;
	    margin: 15px 0 0 8px;
	}

	.header_logo::after{
		bottom: -20px;
		width: 170px;
		height: 20px;
		background-size: 170px auto;
	}

	.mmenu{
		width: 125px;
	}

	.mmenu:hover::after{
		bottom: 16px;
		left: 0;
	}

	.menu_img{
		margin: 22px auto 0;
		height: 30%;
	}

	.header_sidemenu{
		width: 90px;
		padding-right: 11px;
	}

	.header_sidemenu.en{
		padding-right: 15px;
	}

	.header_icon{
		line-height: 0;
		right: 0;
		top: 8px;
	}

	.header_icon p{
		display: inline-block;
		font-size: 16px;
		line-height: 0;
	}

	.language{
		min-width: 70px;
		font-size: 10px;
		font-size: 1.0rem;
		top: 24px;
		right: 0;
		margin-top: 0;
	}

	.header_sidemenu.en .language{
		min-width: 70px;
		font-size: 12px;
		font-size: 1.2rem;
		top: 14px;
		right: 0;
		margin-top: 0;
	}

	.language_menu{
		position: absolute;
		top: 94%;
		right: 11px;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		font-size: 11px;
		font-size: 1.1rem;
		border: 1px #fff solid;
	}
}

/* ----------------------------------------------- */
/*                      footer                     */
/* ----------------------------------------------- */
#footer{
	text-align: center;
	padding: 30px 5% 20px;
}

#sponsor h3{
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

.sponsor_list{
	font-size: 12px;
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.ltl{
	font-size: 9px;
	font-size: 0.9rem;
}

.sponsor_logo p{
	display: inline-block;
	width: 140px;
	height: auto;
	margin: 4px auto;
	padding: 0 2%;
	vertical-align: middle;
}

.footer_inquiry{
	margin: 30px auto;
	border: 2px #b3b6df solid;
	font-size: 12px;
	font-size: 1.2rem;
	width: 200px;
	cursor: pointer;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.footer_inquiry a{
	padding: 5px 0;
}

.privacy_link{
	font-size: 13px;
	font-size: 1.3rem;
}

.privacy_link a{
	color: #81caff;
}

.footer_copy{
	font-size: 10px;
	font-size: 1.0rem;
	color: #fff;
}

.logo_piapro{
	vertical-align: middle;
	width: 55px;
	height: auto;
}

/* ----------------------------------------------- */
/*                     pageTop                     */
/* ----------------------------------------------- */
#pageTop.hide {
	bottom: -73px;
}

#pageTop{
	display: block;
	position: fixed;
	background-size: 100% auto;
	right: 20px;
	bottom: 15px;
	width: 35px;
	height: 72px;
	text-align: center;
	transition-duration: 0.3s;
	z-index: 100;
	opacity: 0.5;
}
