@charset "utf-8";

*{
	margin: 0;
	padding: 0;
}
html{ font-size: 62.5%; }
body{
	position: relative;
	background: url(../img/bg.png) center 0 no-repeat fixed #e0e9ee;
	line-height: 1;
    font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , sans-serif;
	font-size: 1.4rem;
	color: #000;
}
a{ color: #394959; }
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
table{
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
th, td{
	padding: 8px 5px;
	border: 1px solid #ccc;
	font-size: .9em;
}
th{ background: #f5f5f5; }
ul{ list-style: none; }
#wrap{
	max-width: 600px;
	margin: 0 auto;
	padding: 10px;
}

header{
	background: #3c7db1;
	padding: 10px;
	text-align: center;
}
h1{
	line-height: 1em;
	font-size: 12px;
	color: #fff;
}
h1 a{
	display: block;
	padding-top: 40px;
	background: url(../img/logo.png) center 0 no-repeat;
	text-decoration: none;
	color: #fff;
}

.loader{
	margin-top: 15px;
	vertical-align: top;
}
.chat{
	margin: 0 0;
	padding-top: 10px;
	overflow: hidden;
}
.chat p{
	line-height: 1.4em;
	font-weight: bold;
	font-size: 110%;
}
.chat .img{
	float: left;
	margin: 0 10px 0 0;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 100%;
	overflow: hidden;
}
.chat .txt{
	display: block;
	margin-top: 5px;
	padding-left: 10px;
	width: auto;
	overflow: hidden;
}
.show{ display: block; }
.hide{ display: none; }
.block{ display: block; }
.chat .chat-txt{
	position: relative;
	margin: 0 0 10px;
}
.chat .chat-txt .inner{
	position: relative;
	display: inline-block;
	padding: 10px 15px;
	background: #fff;
	border-radius: 10px;
	opacity: 0;
}
.chat .chat-txt .inner.block{ opacity: 1; }
.chat.chat-assistant .chat-txt .inner{ margin-left: 10px; }
.chat.chat-assistant .chat-txt .inner.block{ margin-left: 0px; }
.chat.chat-assistant .chat-txt .inner:after{
	position: absolute;
	content: "";
	top: 5px;
	left: -20px;
	border: 9px solid transparent;
	border-right: 20px solid #fff;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.chat.chat-user .txt{
	display: block;
	padding: 0 10px 0 0;
	text-align: right;
	overflow: hidden;
}
.chat.chat-user .chat-txt .inner{
	margin-right: 10px;
	background: #b3db83;
}
.chat.chat-user .chat-txt .inner.block{ margin-right: 0px; }
.chat.chat-user .chat-txt .inner:after{
	position: absolute;
	content: "";
	top: 5px;
	right: -20px;
	border: 9px solid transparent;
	border-left: 20px solid #b3db83;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.q-box, .answer-box{
	background: #fff;
	border-radius: 10px;
	opacity: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	opacity: 1;
}
.q-box{ padding: 20px 15px; }
.answer-box{ padding: 20px 10px; }
.q-box h2{
	margin: 0 0 1em;
	text-align: center;
	font-size: 1.2em;
	color: #3c7db1;
}
.sec{ margin: 0 0 15px; }
.check-box {
	display: block;
	width: 100%;
	overflow: hidden;
}
.check-box label{
	float: left;
	margin: 0 0 2%!important;
	padding: 25px 0;
	width: 49%;
	background: #f09c03;
	border-bottom: 3px solid #d1764a;
	border-radius: 5px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 1px;
	color: #fff;
	cursor: pointer;
}
.check-box label:nth-of-type(even){ float: right; }
.check-box label.rows{
	padding: 16px 0;
	letter-spacing: -.1em;
}
.check-box label span{
	font-size: .6em;
	letter-spacing: normal;
}
.check-box label span{ font-size: .6em; }
.check-box input{ display: none; }
.q-box h3{
	margin: 20px 0 10px;
	text-align: center;
	font-size: 1em;
	color: #3c7db1;
}
.q-box ul{
	list-style: none;
	font-size: 0;
}
.q-box li{
	display: inline-block;
	margin: 0 .5% 3px 0;
	width: 33%;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	font-size: 1.2rem;
}
.q-box li:nth-of-type(3n){ margin-right: 0; }
.q-box li label{
	position: relative;
	display: block;
	padding: 12px 5px 12px 20px;
}
.q-box li label:before, .q-box li label:after{
	position: absolute;
	content: "";
}
.q-box li label:before{
	top: 11px;
	left: 5px;
	width: 10px;
	height: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.q-box li label.checked{ background: #ffd; }
.q-box li label.checked:before{
	background: #f09c03;
	border-color: #f09c03;
}
.q-box li label.checked:after{
	top: 12px;
	left: 8px;
	width: 3px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.q-box li input[type=checkbox]{ display: none; }
.btn-next04 {
	display: block;
	margin: 20px auto 0;
	padding: 20px 10px;
	width: 180px;
	background: #f09c03;
	border: none;
	border-bottom: 3px solid #d1764a;
	border-radius: 5px;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
input[type=number]{
	display: block;
	margin: 0 auto 5px;
	padding: 5px 10px;
	width: 80%;
	height: 50px;
	border: #111 2px solid;
	box-sizing: border-box;
	vertical-align: bottom;
	font-size: 16px;
}
.answer-box h2{
	margin-bottom: 10px;
	text-align: center;
}
.answer1 h2{
	padding: 20px 0;
	background: #ffebed;
	color: #c11e1e;
}
.answer2 h2{
	padding: 15px 0;
	background: #fffac3;
	font-size: 1.2em;
}
.answer3 h2{
	padding: 15px 0;
	background: #eee;
	font-size: 1em;
}
.answer3 h2 b{ font-size: 1.5em; }

/* ------------------------------------------------
 ch_box
------------------------------------------------ */
.ch_box{
	margin-bottom: 30px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.ch_header{
	margin-bottom: 15px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #d8d8d8;
}
.ch_header h3{
	padding: 0;
	background: none;
	font-size: 1.8rem;
}
.ch_icon{ flex: 0 0 130px;}
.ch_icon a{
	position: relative;
	display: inline-block;
	padding: 10px 20px 10px 8px;
	background: #f56e2c;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	font-size: 1.2rem;
	color: #fff;
}
.ch_icon a:after{
	position: absolute;
	content: "\f138";
	top: 10px;
	right: 5px;
	font-family: "Font Awesome 5 free";
	font-weight: 900;
}
.ch_icon a:hover{
	background: #fba222;
	-webkit-transition: .3s;
	transition: .3s;
}
.ch_bn{ flex: 0 0 300px; }
.container .ch_box .ch_bn{ flex-basis: 270px; }
.ch_spec tr, .map_cl_spec tr{ border-bottom: 1px solid #d8d8d8; }
.ch_spec th, .ch_spec td, .map_cl_spec th, .map_cl_spec td{
	padding: 5px 0;
	border: 0;
}
.ch_spec th, .map_cl_spec th{
	background: none;
	width: 80px;
	text-align: left;
	font-size: 1.2rem;
	color: #fba222;
}
.ch_spec td, .map_cl_spec td{ font-size: 1.4rem; }
.ch_timer{
	padding: 2px;
	background: #f4f4f4;
	align-items: center;
	text-align: center;
	font-size: 1.4rem;
}
.ch_timer .ttl{ flex-grow: 1; }
.ch_timer .timerBox{ flex-grow: 2; }
.ch_label{
	flex-wrap: wrap;
	justify-content: space-around;
}
.ch_label li{
	position: relative;
	flex: 0 0 106px;
	margin-bottom: 3px;
	padding: 2px 0;
	background: #f4f4f4;
	border-radius: 3px;
	box-sizing: border-box;
	text-align: center;
	letter-spacing: -1px;
	font-size: .9rem;
	color: #afafaf;
}
.ch_label li:before{ content: "×"; }
.ch_label li.on{
	background: #3ca1f8;
	color: #fff;
}
.ch_label li.on:before{
	content: "○";
	color: #ff0;
}
.ch_feature{
	margin: 10px 0;
	border: 1px solid #2153cd;
}
.catch{
	position: relative;
	background: #2153cd;
	font-weight: 600;
}
.catch:after{
	position: absolute;
	content: "";
	bottom: -17px;
	left: 50%;
	border: 7px solid transparent;
	border-top: 10px solid #2153cd;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.ch_feature li{
	position: relative;
	padding: 3px 0 3px 18px;
}
.ch_feature li:before{
	position: absolute;
	content: "\f00c";
	left: 0;
	font-family: "Font Awesome 5 free";
	font-weight: 900;
	color: #fba222;
}
.ch_bt{
	justify-content: space-between;
	align-items: center;
}
.ch_ng{
	flex-basis: 260px;
	border: 1px solid #d8d8d8;
	font-weight: 600;
	font-size: 1.2rem;
}
.ch_ng dt{
	padding: 3px;
	background: #d8d8d8;
	text-align: center;
}
.ch_ng dd div:before{
	content: "\f00d";
	margin-right: 5px;
	font-family: "Font Awesome 5 free";
}
.ch_bt .bt_cv{
	flex-grow: 1;
	margin-left: 10px;
}
.bt_cv a, .btn-koushiki a{
	position: relative;
	display: block;
	padding: 15px;
	background: -webkit-linear-gradient(#fe514f, #fe2e2c);
	background: linear-gradient(#fe514f, #fe2e2c);
	border: 1px solid #e92a28;
	border-radius: 3px;
	box-shadow: 0 2px 0 #e92a28;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
}
.bt_cv a:after, .btn-koushiki a:after{
	position: absolute;
	content: "\f138";
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 5 free";
	font-weight: 900;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.bt_cv a:hover, .btn-koushiki a:hover{
	opacity: .8; 
	-webkit-transition: .3s;
	transition: .3s;
}

.timerBox{
	padding: 5px 10px;
	background: #3f3f3f;
	color: #ff0;
}

.flx{ display: flex; }
.li_n{ list-style: none; }
.contents, .contents1, .contents2{
	margin: 20px 0;
	overflow: hidden;
}
.contents{ padding: 0 15px; }
.contents1{
	padding: 5px 15px;
	border: 1px solid #d8d8d8;
}
.contents2{
	padding: 5px 15px;
	background: #f4f4f4;
}

.bg_gry{ background: #f4f4f4; }
.bg_bl{ background: #eff7fe; }
.bg_sky{ background: #cee8fd; }

.m0{ margin: 0; }
.mt0{ margin-top: 0; }
.ml0{ margin-left: 0; }
.mb5{ margin-bottom: 5px; }
.mt10{ margin-top: 10px; }
.mb10{ margin-bottom: 10px; }
.ml10, .m10-l{ margin-left: 10px; }
.mr20{ margin-right: 20px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb50{ margin-bottom: 50px; }

.p10{ padding: 10px;}
.pr10{ padding-right: 10px; }
.pb10{ padding-bottom: 10px; }
.pl10{ padding-left: 10px; }
.p15{ padding: 15px; }
.p20{ padding: 20px; }
.pt20{ padding-top: 20px; }
.pr20{ padding-right: 20px; }
.pb20{ padding-bottom: 20px; }
.pt30{ padding-top: 30px; }
.pb30{ padding-bottom: 30px; }
.pt40{ padding-top: 40px; }
.pb40{ padding-bottom: 40px; }
.pt50{ padding-top: 50px; }
.pb50{ padding-bottom: 50px; }

.al-l{ text-align: left; }
.al-c{ text-align: center; }
.al-r{ text-align: right; }
.fl-l, .left{ float: left; }
.fl-r, .right{ float: right; }
.left{ margin: 0 20px 20px 0; }
.right{ margin: 0 0 20px 20px; }

.white{ color: #fff; }
.gray{ color: #afafaf; }
.black{ color: #000; }
.sky{ color: #3ca1f8; }
.blue{ color: #1d41a9; }
.yellow{ color: #ff0; }
.orange{ color: #fba222; }
.red{ color: #fe2e2c; }

.fw5{ font-weight: 500; }
.f08{ font-size: .8rem; }
.f10{ font-size: 1rem; }
.f12{ font-size: 1.2rem; }
.f14{ font-size: 1.4rem; }
.f16{ font-size: 1.6rem; }
.f20{ font-size: 2rem; }
.f24{ font-size: 2.4rem; }

.btn-home a{
	display: block;
	margin: 10px 0;
	padding: 15px 10px;
	background: #3c7db1;
	border-radius: 5px;
	box-shadow: 0 3px 0 #175e96;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
}