/******************************
	カラー設定
******************************/
/*
	青：rgba(18,77,161,1); #124DA1
	橙：rgba(249,167,6,1); #F9A706
*/
@charset "utf-8";
/******************************
	グローバルメニュー処理
******************************/
#TitleBox{
	width:100%;
	height:auto;
	display:block;
	background-color:rgba(18,77,161,1);
}
#TitleBox>h1{
	width:70%;
	height:auto;
	display:block;
	margin:0 auto;
	padding:1em 0;
	text-align:left;
	line-height:1.7;
	color:rgba(255,255,255,1);
}
/******************************
	タイトルエリア
******************************/
#TopImpactBox{
	width:100%;
	height:0;
	display:block;
	padding-top:20%;
}
#TopImpactBox>ul{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}
#TopImpactBox>ul>li{
	width:50%;
	height:100%;
	display:inline-block;
}
#TopImpactBox>ul>li:nth-of-type(1){background-color:rgba(18,77,161,1);}
#TopImpactBox>ul>li:nth-of-type(1)>figure{
	width:100%;
	height:100%;
	display:block;
	background-image:url(../img/bg/28259966.jpg);
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-color:#ccc;
}
#TopImpactBox>ul>li:nth-of-type(2)>div{
	width:100%;
	height:100%;
	display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:-o-flex;
    display:flex;
    -webkit-justify-content:row;
	justify-content: row;
	-webkit-align-items:center;
	align-items:center;
	flex-wrap:wrap;
	padding:1em;
    overflow:hidden;
    z-index:100;
	background-color:rgba(255,255,255,1);
	background-image:
	linear-gradient(0deg,transparent 9%, 
	rgba(18,77,161,0.1) 10%,rgba(18,77,161,0.1) 12%,transparent 13%,transparent 29%, 
	rgba(18,77,161,0.05) 30%,rgba(18,77,161,0.05) 31%,transparent 32%,transparent 49%, 
	rgba(18,77,161,0.05) 50%,rgba(18,77,161,0.05) 51%,transparent 52%,transparent 69%, 
	rgba(18,77,161,0.05) 70%,rgba(18,77,161,0.05) 71%,transparent 72%,transparent 89%,
	rgba(18,77,161,0.05) 90%,rgba(18,77,161,0.05) 91%,transparent 92%,transparent),
	linear-gradient(90deg, transparent 9%, 
	rgba(18,77,161,0.1) 10%,rgba(18,77,161,0.1) 12%,transparent 13%,transparent 29%, 
	rgba(18,77,161,0.05) 30%,rgba(18,77,161,0.05) 31%,transparent 32%,transparent 49%, 
	rgba(18,77,161,0.05) 50%,rgba(18,77,161,0.05) 51%,transparent 52%,transparent 69%, 
	rgba(18,77,161,0.05) 70%,rgba(18,77,161,0.05) 71%,transparent 72%,transparent 89%,
	rgba(18,77,161,0.05) 90%,rgba(18,77,161,0.05) 91%,transparent 92%,transparent);
	background-size:50px 50px;
}
#TopImpactBox>ul>li:nth-of-type(2)>div>dl{
	width:auto;
	height:auto;
	display:block;
	text-align:left;
}
#TopImpactBox>ul>li:nth-of-type(2)>div>dl>dt{
	width:auto;
	height:auto;
	display:block;
}
#TopImpactBox>ul>li:nth-of-type(2)>div>dl>dt>h1{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:1.2em;
}
#TopImpactBox>ul>li:nth-of-type(2)>div>dl>dd{
	width:auto;
	height:auto;
	display:block;
}
#TopImpactBox>ul>li:nth-of-type(2)>div>dl>dd>p{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:0.6em;
}
/******************************
	フォーム
******************************/
#FormBox{
	width:100%;
	height:auto;
	display:block;
}
#FormBox>div{
	width:70%;
	height:auto;
	display:block;
	margin:0 auto;
	padding-bottom:2em;
}
#FormBox>div>form{
	width:100%;
	height:auto;
	display:block;
}
/*ステータス*/
#ContactStatusBox{
	width:100%;
	height:auto;
	display:block;
	padding:1em 0;
}
#ContactStatusBox>ol{
	width:100%;
	height:auto;
	display:block;
	text-align:center;
	border:1px solid rgba(18,77,161,0.5);
	background-color:rgba(18,77,161,0.1);
}
#ContactStatusBox>ol:before{
	position:absolute;
	top:0;
	left:0;
	width:33.3%;
	height:100%;
	display:block;
	background-color:rgba(18,77,161,0.3);
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
#StatusNum[value="入力"]~#ContactStatusBox>ol:before{left:0;}
#StatusNum[value="確認"]~#ContactStatusBox>ol:before{left:33.3%;}
#StatusNum[value="送信"]~#ContactStatusBox>ol:before{left:66.6%;}
#ContactStatusBox>ol>li{
	width:33.3%;
	height:auto;
	display:inline-block;
	border-right:1px solid rgba(18,77,161,0.5);
}
#ContactStatusBox>ol>li:last-of-type{border-right:transparent;}
#ContactStatusBox>ol>li>h2{
	width:auto;
	height:auto;
	display:block;
	line-height:3;
	font-size:0.6em;
}
/*フォーム*/
#ContactFormBox{
	width:100%;
	height:auto;
	display:block;
}
#ContactFormBox>ul{
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
/******************************
	入力画面
******************************/
#InputBox{
	width:100%;
	height:auto;
	display:block;
	overflow:hidden;
}
#InputBox>li{
	width:100%;
	height:auto;
	display:block;
}
/*種別によって入力項目を切り分け*/
#InputBox>li.environmentformarea{display:none;}
#InputBox>li.applyformarea{display:none;}
#InputBox>li.contactformarea{display:none;}
#InputBox>li.renewalformarea{display:none;}
#InputBox>li.supportformarea{display:none;}
#EnvironmentRadio:checked~#InputBox>li.environmentformarea{display:block;}
#ApplyRadio:checked~#InputBox>li.applyformarea{display:block;}
#ContactRadio:checked~#InputBox>li.contactformarea{display:block;}
#RenewalRadio:checked~#InputBox>li.renewalformarea{display:block;}
#SupportRadio:checked~#InputBox>li.supportformarea{display:block;}
/*共通*/
#InputBox>li>dl{
	width:100%;
	height:auto;
	display:block;
	text-align:left;
	padding-bottom:1em;
}
#InputBox>li>dl>dt{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:0.5em;
	color:rgba(0,0,0,0.7);
}
#InputBox>li>dl>dt>span{
	width:auto;
	height:auto;
	display:inline-block;
	vertical-align:middle;
	padding:0 0.5em;
	margin-left:1em;
	line-height:1.7;
	font-size:0.6em;
	color:rgba(255,255,255,1);
	background-color:rgba(255,97,89,1);
}
#InputBox>li>dl>dd{
	width:auto;
	height:auto;
	display:block;
}
/*インプット・テキストエリアのスタイル*/
#InputBox>li>dl>dd>input{
	width:50%;
	height:2em;
	display:block;
	padding:0.2em 0.5em;
	margin-top:0.3em;
	line-height:1.3;
	font-size:0.6em;
	background-color:rgba(255,255,255,1);
	border:1px solid rgba(0,0,0,0.1);
	z-index:10;
}
#InputBox>li>dl>dd>textarea{
	width:100%;
	height:10em;
	display:block;
	padding:0.2em 0.5em;
	margin-top:0.3em;
	line-height:1.3;
	font-size:0.6em;
	background-color:rgba(255,255,255,1);
	border:1px solid rgba(0,0,0,0.1);
}
/*ラジオボタンのスタイル*/
#InputBox>li>dl>dd>label{
	width:auto;
	height:auto;
	display:inline-block;
	padding-left:1.3em;
	margin-right:1em;
	margin-top:0.3em;
	cursor:pointer;
}
#InputBox>li>dl>dd>label:before{
	position:absolute;
	top:0;
	left:0;
	width:1em;
	height:1em;
	display:block;
	border:1px solid rgba(249,167,6,1);
	border-radius:50%;
	cursor:pointer;
}
#InputBox>li>dl>dd>label:after{
	-webkit-transform:scale(0.7,0.7);
	-moz-transform:scale(0.7,0.7);
	-ms-transform:scale(0.7,0.7);
	transform:scale(0.7,0.7);
	position:absolute;
	top:0;
	left:0;
	width:1em;
	height:1em;
	display:block;
	background-color:rgba(249,167,6,0);
	border-radius:50%;
	cursor:pointer;
}
#InputBox>li>dl>dd>label>p{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:0.6em;
	color:rgba(0,0,0,0.5);
	cursor:pointer;
}
/*種別のラジオボタンのスタイル*/
#EnvironmentRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(1):after{background-color:rgba(249,167,6,1);}
#EnvironmentRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(1)>p{color:rgba(0,0,0,0.8);}
#ApplyRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(2):after{background-color:rgba(249,167,6,1);}
#ApplyRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(2)>p{color:rgba(0,0,0,0.8);}
#ContactRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(3):after{background-color:rgba(249,167,6,1);}
#ContactRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(3)>p{color:rgba(0,0,0,0.8);}
#RenewalRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(4):after{background-color:rgba(249,167,6,1);}
#RenewalRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(4)>p{color:rgba(0,0,0,0.8);}
#SupportRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(5):after{background-color:rgba(249,167,6,1);}
#SupportRadio:checked~#InputBox>li.contacttypearea>dl>dd>label:nth-of-type(5)>p{color:rgba(0,0,0,0.8);}

/*プランのラジオボタンのスタイル*/
#LightPlanRadio:checked~dl>dd>label:nth-of-type(1):after{background-color:rgba(249,167,6,1);}
#LightPlanRadio:checked~dl>dd>label:nth-of-type(1)>p{color:rgba(0,0,0,0.8);}
#StandardPlanRadio:checked~dl>dd>label:nth-of-type(2):after{background-color:rgba(249,167,6,1);}
#StandardPlanRadio:checked~dl>dd>label:nth-of-type(2)>p{color:rgba(0,0,0,0.8);}
#PremiumPlanRadio:checked~dl>dd>label:nth-of-type(3):after{background-color:rgba(249,167,6,1);}
#PremiumPlanRadio:checked~dl>dd>label:nth-of-type(3)>p{color:rgba(0,0,0,0.8);}
/*個人情報*/
#InputBox>li.privacyarea>dl>dd>input{display:none;}
#InputBox>li.privacyarea>dl>dd>p{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:0.6em;
}
#InputBox>li.privacyarea>dl>dd>p>a{
	width:auto;
	height:auto;
	display:inline-block;
	text-decoration:underline;
	line-height:1.7;
	font-size:1em;
	color:rgba(249,167,6,1);
}
#InputBox>li.privacyarea>dl>dd>label{
	width:auto;
	height:auto;
	display:inline-block;
	padding-left:1.3em;
	margin-right:1em;
	margin-top:0.3em;
	cursor:pointer;
}
#InputBox>li.privacyarea>dl>dd>label:before{
	position:absolute;
	top:0;
	left:0;
	width:1em;
	height:1em;
	display:block;
	border:2px solid rgba(249,167,6,1);
	background-color:rgba(249,167,6,0);
	border-radius:0;/*ラジオボタンのクリアー*/
	cursor:pointer;
	z-index:10;
}
#InputBox>li.privacyarea>dl>dd>label:after{
	margin-top:0.13em;
	margin-left:0.35em;
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
	position:absolute;
	top:0;
	left:0;
	width:0.3em;
	height:0.6em;
	display:none;
	border-right:2px solid rgba(255,255,255,1);
	border-bottom:2px solid rgba(255,255,255,1);
	border-radius:0;/*ラジオボタンのクリアー*/
	cursor:pointer;
	z-index:11;
}
#InputBox>li.privacyarea>dl>dd>#PrivacyBox:checked~label:before{background-color:rgba(249,167,6,1);}
#InputBox>li.privacyarea>dl>dd>#PrivacyBox:checked~label:after{display:block;}
#InputBox>li>dl>dd>label>p{white-space:nowrap;}
/*入力内容の確認*/
#InputBox>li:last-of-type>span{
	width:auto;
	height:auto;
	display:inline-block;
	padding:0 2em;
	text-align:center;
	line-height:3;
	font-size:0.5em;
	color:rgba(255,255,255,1);
	background-color:#00c853;
	cursor:pointer;
}
#InputBox>li:last-of-type>span:before{
	-webkit-transform:scale3d(0,0,0);
	-moz-transform:scale3d(0,0,0);
	-ms-transform:scale3d(0,0,0);
	transform:scale3d(0,0,0);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	background-color:rgba(255,255,255,0.1);
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
	z-index:10;
}
#InputBox>li:last-of-type>span:hover:before{
	-webkit-transform:scale3d(1,1,1);
	-moz-transform:scale3d(1,1,1);
	-ms-transform:scale3d(1,1,1);
	transform:scale3d(1,1,1);
}
/*エラーの表示*/
#InputBox>li>dl>dd.errorarea>input{
	border:1px solid rgba(255,97,89,1);
	background-color:rgba(255,97,89,0.1);
}
#InputBox>li>dl>dd.errorarea>textarea{
	border:1px solid rgba(255,97,89,1);
	background-color:rgba(255,97,89,0.1);
}
#InputBox>li>dl>dd.errorarea>label:before{
	background-color:rgba(255,97,89,0.1);
}
#InputBox>li>dl>dd.errorarea>label>p{color:rgba(255,97,89,1);}
/******************************
	確認画面
******************************/
#ConfirmBox{
	width:100%;
	height:0;
	display:block;
	overflow:hidden;
}
#ConfirmBox>li{
	width:100%;
	height:auto;
	display:block;
}
#ConfirmBox>li>dl{
	width:100%;
	height:auto;
	display:block;
	text-align:left;
	padding:0.5em 0;
	border-bottom:1px dotted rgba(0,0,0,0.1);
}
#ConfirmBox>li:first-of-type>dl{
	padding-top:0;
}
#ConfirmBox>li>dl>dt{
	width:auto;
	height:auto;
	display:block;
	line-height:1.7;
	font-size:0.5em;
	color:rgba(0,0,0,0.7);
}
#ConfirmBox>li>dl>dd{
	width:auto;
	height:auto;
	display:block;
	padding-left:0.6em;
	line-height:1.3;
	font-size:0.6em;
}
#ConfirmBox>li>span{
	width:auto;
	height:auto;
	display:inline-block;
	padding:1em 0;
}
#ConfirmBox>li>span>p{
	width:auto;
	height:auto;
	display:inline-block;
	line-height:1.7;
	font-size:0.6em;
}
#ConfirmBox>li>span>p>a{
	width:auto;
	height:auto;
	display:inline-block;
	text-decoration:underline;
	line-height:1.7;
	color:rgba(249,167,6,1);
}
#ConfirmBox>li>div{
	width:100%;
	height:auto;
	display:block;
	padding-top:1em;
	text-align:left;
}
#ConfirmBox>li>div>span{
	width:auto;
	height:auto;
	display:inline-block;
	padding:0 2em;
	text-align:center;
	line-height:3;
	font-size:0.5em;
	color:rgba(255,255,255,1);
	background-color:rgba(200,200,200,1);
	cursor:pointer;

}
#ConfirmBox>li>div>span:nth-of-type(2){
	position:absolute;
	top:2em;
	right:0;
	z-index:10;
	background-color:#00c853;
}
#ConfirmBox>li>div>span:before{
	-webkit-transform:scale3d(0,0,0);
	-moz-transform:scale3d(0,0,0);
	-ms-transform:scale3d(0,0,0);
	transform:scale3d(0,0,0);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	background-color:rgba(255,255,255,0.1);
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
	z-index:10;
}
#ConfirmBox>li>div>span:hover:before{
	-webkit-transform:scale3d(1,1,1);
	-moz-transform:scale3d(1,1,1);
	-ms-transform:scale3d(1,1,1);
	transform:scale3d(1,1,1);
}
/******************************
	サンクス画面
******************************/
#ThanksBox{
	width:100%;
	height:0;
	display:block;
	overflow:hidden;
}
#ThanksBox>li{
	width:100%;
	height:auto;
	display:block;
}
#ThanksBox>li>dl{
	width:100%;
	height:auto;
	display:block;
}
#ThanksBox>li>dl>dt{
	width:100%;
	height:auto;
	display:block;
}
#ThanksBox>li>dl>dt>h3{
	width:auto;
	height:auto;
	display:inline-block;
	text-align:left;
	line-height:1.7;
	font-size:0.8em;
}
#ThanksBox>li>dl>dd{
	width:100%;
	height:auto;
	display:block;
}
#ThanksBox>li>dl>dd>figure{
	width:40%;
	height:0;
	display:block;
	padding-top:40%;
	margin:0 auto;
}
#ThanksBox>li>dl>dd>figure>img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	z-index:10;
}
#ThanksBox>li>dl>dd>p{
	width:auto;
	height:auto;
	display:inline-block;
	text-align:left;
	line-height:1.7;
	font-size:0.5em;
}
#ThanksBox>li>dl>dd>p>span{
	width:auto;
	height:auto;
	display:inline-block;
	line-height:1.7;
}
/******************************
	レスポンシブ
******************************/
@media only screen and (max-width:4096px){}
@media only screen and (max-width:3840px){}
@media only screen and (max-width:3200px){}
@media only screen and (max-width:2880px){}
@media only screen and (max-width:2560px){}
@media only screen and (max-width:2048px){}
@media only screen and (max-width:1680px){}
@media only screen and (max-width:1440px){
	#TitleBox>h1{width:80%;}
	#FormBox>div{width:80%;}
}
@media only screen and (max-width:1280px){
	#TitleBox>h1{width:85%;}
	#FormBox>div{width:85%;}
}
@media only screen and (max-width:1024px){
	#TitleBox>h1{width:95%;}
	#FormBox>div{width:95%;}
}
@media only screen and (max-width:980px){}
@media only screen and (max-width:880px){
	#TopImpactBox{
		height:auto;
		padding-top:0;
	}
	#TopImpactBox>ul{
		position:relative;
	}
	#TopImpactBox>ul>li{width:100%;}
	#TopImpactBox>ul>li:nth-of-type(1){
		width:100%;
		height:auto;
		padding-top:0;
	}
	#TopImpactBox>ul>li:nth-of-type(2){
		height:auto;
	}
}
@media only screen and (max-width:720px){
	#InputBox>li>dl>dd>input{width:100%;}
}
@media only screen and (min-device-width:320px) and (max-device-width:480px) and (-webkit-min-device-pixel-ratio:2){
	#InputBox>li>dl>dd>input{width:100%;}
}
@media only screen and (min-device-width:320px) and (max-device-width:568px) and (-webkit-min-device-pixel-ratio:2){}
@media only screen and (min-device-width:375px) and (max-device-width:667px) and (-webkit-min-device-pixel-ratio:2){}
@media only screen and (min-device-width:414px) and (max-device-width:736px) and (-webkit-min-device-pixel-ratio:2){}
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:2){}
@media only screen and (min-device-width:1024px) and (max-device-width:1366px) and (-webkit-min-device-pixel-ratio:2){}