@charset "utf-8";

#form,
#form *,
#form *::before,
#form *::after {
	box-sizing: border-box;
}
.form-section {
	border: 2px solid #eee;
	position: relative;
}
.form-section + .form-section {
	margin-top: 50px;
	display: none;
}
.active .form-section + .form-section {
	display: block;
}
.form-section + .form-section::before {
	content: "";
	display: block;
	position: absolute;
	top: -40px;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	border-color: #eeeeee transparent transparent transparent;
	transform: translateX(-50%);
}
.form-section > .form-section-title {
	margin: 0;
	padding: 10px 15px;
	border: none;
	background: #eee;
}
.form-section > .form-section-title > .subtext {
	font-size: 80%;
}

.form-section > .input-wrap {
	padding: 20px 10px;
}

ul.check-list {
	margin: 0 auto;
	font-size: 0;
	text-align: center;
}

ul.check-list > li {
	font-size: 16px;
	width: 48%;
	display: inline-block;
	background: none;
	padding: 0;
	margin: 10px 1%;
	position: relative;
	overflow: hidden;
}
ul.check-list.col-1 > li {
	width: 98%;
}
ul.check-list.col-3 > li {
	width: 31.3333333333%;
}
ul.check-list.col-5 > li {
	width: 18%;
}

ul.check-list > li > input {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
}

ul.check-list > li > label {
	cursor: pointer;
	display: block;
	padding: 24px 10px 24px 3em;
	border-radius: 6px;
	border: 2px solid #aaa;
	font-weight: bold;
	position: relative;
	min-height: 80px;
	background: #FFF;
}


ul.check-list > li > input:checked + label {
	border-color: #c01a1a;
	background: #c01a1a;
	color: #FFF;
}

ul.check-list > li > label > span {
	line-height: 1.2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	display: inline-block;
}
ul.check-list > li > label > span .fee {
	font-size: 14px;
	margin-left: .5em;
}

ul.check-list > li > input[type="radio"] + label::before,
ul.check-list > li > input[type="radio"] + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-radius: 50%;
	transform: translateY(-50%);
}
ul.check-list > li > input[type="radio"] + label::before {
	width: 1em;
	height: 1em;
	left: 1em;
	border: 1px solid #aaa;
	background-color: #fff;
}

ul.check-list > li > input[type="radio"]:checked + label::before {

}
ul.check-list > li > input[type="radio"]:checked + label::after {
	width: .5em;
	height: .5em;
	left: 1.25em;
	background: #c01a1a;
}


ul.check-list > li > input[type="checkbox"] + label::before,
ul.check-list > li > input[type="checkbox"] + label::after {
	content: "";
	display: block;
	position: absolute;
		
	top: 50%;
	transform: translateY(-50%);
}
ul.check-list > li > input[type="checkbox"] + label::before {
	width: 1em;
	height: 1em;
	left: 1em;
	border: 1px solid #aaa;
	background-color: #fff;

}

ul.check-list > li > input[type="checkbox"]:checked + label::before {

}
ul.check-list > li > input[type="checkbox"]:checked + label::after {
	left: 1.3em;
	width: .75em;
	height: 1.25em;
	border-right: 5px solid #00d030;
	border-bottom: 5px solid #00d030;
	transform: rotate(45deg);
	margin-top: -.9em;
}



.option-details {
	margin: 20px 2%;
	padding: 30px;
	border: 1px solid #aaa;
	display: none;
}

.option-details ul.check-list > li {
	font-size: 16px;
}


ul.check-list > li > label > span .price-wrap {
	font-size: 86%;
	display: block;
}

ul.check-list > li > label > span .price-wrap em {
	font-size: 114%;
}

ul.check-list > li > label.input_disabled {
	background: #999 !important;
	color: #666 !important;
	border-color: #999 !important;
	cursor: default !important;
}


.form-details-title {
	font-size: 16px;
	font-weight: bold;
	margin: 40px auto 20px;
	border-left: 5px solid #ccc;
	padding: 5px 5px 5px 10px;
	background: #f5f5f5;
}

.option-details > .form-details-title:first-child {
	margin-top: 0;
}




.input-item {
	display: table;
	width: 100%;
	border-bottom: 1px solid #ddd;
	font-size: 15px;
}

.input-item dt,.input-item dd {
	display: table-cell;
	vertical-align: top;
	text-align: left;
	padding: 2em 1.5em;
}

.input-item dt {
	width: 300px;
	font-weight: bold;
		padding: 2.5em 1.5em 2em;
}


.input-item .item-req,
.input-item .item-any {
	display: inline-block;
	margin-right: 4px;
	padding: 1px 7px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	vertical-align: middle;
	background: #aaa;
}

.input-item .item-req {
	background: #d80000;
}

.input-item .item-any {
	background: #00a5d8;
}




input[type="text"],
input[type="tel"],
input[type="tel2"],
input[type="email"],
input[type="submit"],
input[type="button"],
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="tel2"],
textarea {
	display: block;
	width: 100%;
	font-size: 16px;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 4px;
	vertical-align: middle;
	outline: none;
	padding: .5em;
	font-family : inherit;
}
textarea {
	resize: vertical;
}
#form input::-webkit-input-placeholder {color: #bbb;}
#form input:-moz-placeholder {color: #bbb;}
#form input:-ms-input-placeholder {color: #bbb;}
#form textarea::-webkit-input-placeholder {color: #bbb;}
#form textarea:-moz-placeholder {color: #bbb;}
#form textarea:-ms-input-placeholder {color: #bbb;}


ul.input-item-list {
	margin: 0;
}

ul.input-item-list > li {
	margin: .5em 1em .5em 0;
	padding: 0 0 0 1.5em;
	background: none;
	position: relative;
	display: block;
	font-size: 16px;
}

ul.input-item-list > li input {
	position: absolute;
	visibility: hidden;
}

ul.input-item-list > li input + label {
	cursor: pointer;
}
ul.input-item-list > li input:checked + label {
	font-weight: bold;
}

ul.input-item-list > li input + label::before,
ul.input-item-list > li input + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

ul.input-item-list > li input + label::before {
	width: 1em;
	height: 1em;
	border: 1px solid #999;
	background: #FFF;
	left: 0;
}

ul.input-item-list > li input:checked + label::after {
	width: .5em;
	height: .5em;
	background: #0171bd;
	left: .25em;
}

ul.input-item-list > li input:checked + label::before {
	border-color: #0171bd;
}


#hikaridenwa_option_advance,
#preferred_date_details_wrap,
#building_name_area {
	display: none;
}



#preferred_date_details_wrap,
.apply_times_wrap{
	border: 1px solid #eee;
	padding: 10px 15px;
	margin: 20px auto 0;
}

ul.preferred_date_details_items,
ul.apply_times_items {
	margin: 0;
}
ul.preferred_date_details_items > li,
ul.apply_times_items > li {
	margin: 0;
	padding: 7px 0;
	background: none;
}

ul.preferred_date_details_items + ul.preferred_date_details_items,
ul.apply_times_items + ul.apply_times_items {
	margin-top: 10px;
	border-top: 1px solid #eee;
	padding-top: 10px;
}
ul.preferred_date_details_items > li.preferred_date_details_items_hl,
ul.apply_times_items > li.apply_times_items {
	font-weight: bold;
}

ul.preferred_date_details_items > li > div + div,
ul.apply_times_items > li > div + div {
	margin-top: 10px;
}

ul.input-item-list-inline {
	width: calc(100% - 2em);
	margin: 0 auto 0 1em;
}
ul.input-item-list-inline > li {
	font-size: 16px;
	padding: 0;
	background: none;
	position: relative;
	display: inline-block;
	margin: 0;
}
ul.input-item-list-inline > li + li {
	margin-left: 15px;
}
ul.input-item-list-inline > li input {
	position: absolute;
	visibility: hidden;
}
ul.input-item-list-inline > li input + label {
	cursor: pointer;
	padding-left: 1.5em;
}
ul.input-item-list-inline > li input + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1em;
	height: 1em;
	border: 1px solid #999;
	background: #fff;
	transform: translateY(-50%);
}
ul.input-item-list-inline > li input:checked + label::before {
	border: 1px solid #0171bd;
}
ul.input-item-list-inline > li input + label::after {
	content: "";
	position: absolute;
	display: block;
	opacity: 0;
	top: 2px;
	left: 5px;
	width: 11px;
	height: 16px;
	border-right: 4px solid #0171bd;
	border-bottom: 4px solid #0171bd;
	transform: rotate(45deg) scale(0);
}
ul.input-item-list-inline > li input:checked + label::after {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}
ul.input-item-list-inline > li input:checked + label {
	font-weight: bold;
}

.select-wrap {
	position: relative;
	width: calc(100% - 2em);
	margin: 0 auto 0 1em;
}
.select-wrap:before {
	content: "";
	position: absolute;
	right: 0.7em;
	top: .7em;
	width: .7em;
	height: .7em;
	border-right: solid 0.2em #2b2b2b;
	border-bottom: solid 0.2em #2b2b2b;
	color: #333;
	z-index: 1001;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
select{
	outline:none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none transparent;
	background-image: none;
	vertical-align: middle;
	font-size: inherit;
	height: 40px;
	padding: 8px 12px;
	border:1px solid #aaa;
	width:100%;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select option{
  background-color: #fff;
  color: #333;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}



.next_btn {
	display: block;
	width: 280px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	margin: 25px auto;
	cursor: pointer;
	border-radius: 6px;
	line-height: 1;
	font-size: 16px;
	padding: 20px 1em;
	background: #1dbe2b;
	border: 1px solid rgba(0, 0, 0, .04);
	box-shadow: 0 3px 0 #0b7b15, -1px 1px 0px rgba(255, 255,255, .5) inset;text-indent: -7px;
}

.next_btn::before {
	content: "\f054";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 1.28571429em;
	text-align: center;
}

.next_btn:hover {
	box-shadow: -1px 1px 1px rgba(255, 255,255, .35) inset;
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	transform: translateY(3px);
	color: #FFF;
}

.submit_btn {
	background: #ff9510;
	box-shadow: 0 3px 0 #ad6101, -1px 1px 0px rgba(255, 255,255, .5) inset;
}

.corporation_option {
	display: none;
}

#attention_area {
	margin-top: 60px;
	border: 2px solid #eee;
}

#attention_area > .form-section-title {
	padding: 10px 15px;
	text-align: center;
	color: #d80000;
	border: solid #d80000;
	border-width: 4px 0;
	margin: 20px 20px 0;
}

.scroll {
	padding: 1em;
	height: 20em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
.scroll > h4 {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: .5em;
}
.scroll > h4 +h4{
	margin-top: 1.5em;
}
.scroll > p + h4 {
	margin-top: 1.5em;
}

#attention_area {
	display: none;
}
#agreement {
	position: absolute;
	visibility: hidden;
}

.agreement-label {
	cursor: pointer;
	padding-left: 1.5em;
	position: relative;
}

#agreement_area {
	margin: 50px auto;
	border: 5px solid #d80000;
	padding: 1em;
	width: 90%;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	display: none;
}

.agreement-label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1em;
	height: 1em;
	border: 2px solid #000;
	background: #fff;
	transform: translateY(-50%);
}

.agreement-label::after {
	content: "";
	position: absolute;
	display: block;
	opacity: 0;
	top: 5px;
	left: 5px;
	width: 11px;
	height: 16px;
	border-right: 4px solid #d80000;
	border-bottom: 4px solid #d80000;
	transform: rotate(45deg) scale(0);
}

#submit_btn {
	display: none;
}
.disabled {
	background: #aaa;
	box-shadow: -1px 1px 1px rgba(255, 255,255, .35) inset;
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	transform: translateY(3px);
	color: #666;
}

.disabled:hover {
	background: #aaa;
	box-shadow: -1px 1px 1px rgba(255, 255,255, .35) inset;
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	transform: translateY(3px);
	color: #666;
}

.agreement_checked {
	background: #ffeaea;
}

input:checked + .agreement-label::after {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}

#apply_addr_option,
#sendingBefore_addr_option,
#sendingAfter_addr_option,
ul.input-item-list > li.corporation_option {
	display: none;
}


.back_Btn {
    background: #999;
    box-shadow: 0 3px 0 #666, -1px 1px 0px rgba(255, 255,255, .5) inset;
    color: #555;
    font-size: 14px;
    width: 200px;
    padding: 15px 1em;
}

.back_Btn:hover {
    color: #555;
}

.back_Btn::before {content: "\f053";}

.error {
	color: #FFF;
	font-weight: bold;
	background: #d80000;
	padding: 3px 1em !important;
	width: auto;
	max-width: 30em;
	text-align: center;
	margin: 15px 0 0;
	font-size: 12px;
	position: relative;
	display: inline-block;
}

.error::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent #d80000 transparent;
	top: -7px;
	left: 20px;
}


input::-webkit-input-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}
input:-moz-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}
input:-ms-input-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}
textarea::-webkit-input-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}
textarea:-moz-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}
textarea:-ms-input-placeholder {
	color: #bbb;
	font-size: 1.6rem;
}

.post ul.caution {
	margin: .5em auto;
}
.post ul.caution > li {
	font-size: 13px;
	padding-left: 1.3em;
	text-indent: -1.3em;
	background: none;
	margin: 0 auto;
	word-break: break-all;
	line-height: 1.2;
	color: #555;
}
.post ul.caution > li + li {
	margin-top: .5em;
}
.post ul.caution > li::before {
	content: "※";
	margin-right: .3em;
}

.post ul.caution.exclamation > li {
	padding-left: 2em;
	text-indent: -2em;
	padding-bottom: .2em;
}
.post ul.caution.exclamation > li::before {
	content: "！）";
}
span.textline {
/*	background: linear-gradient(transparent 90%, #eb4034 0%);*/
	text-decoration: underline;
	text-decoration-color: #d80000;
	text-decoration-thickness: 2px;
}


/* 幅644px以下から ヘッダー等微調節
------------------------------------------------------------*/
@media only screen and (max-width: 644px){
	.form-section > .input-wrap {
		padding: 10px;
	}
	ul.check-list > li {
		width: 100%;
	}
	ul.check-list.col-3 > li {
		width: 100%;
	}

	.input-item dt, .input-item dd {
		width: 100%;
		display: block;
		padding: 1em;
	}

	.input-item dt {
		padding-bottom: 0;
	}
	ul.input-item-list-inline > li + li {
		margin-left: 0;
	}
	
	#attention_area > .form-section-title {
		margin: 20px 10px 10px;
	}
	
	.scroll {
		padding: .5em;
	}
	#agreement_area {
		padding: 10px;
		width: 98%;
		font-size: 14px;
	}
	.agreement-label::after {
		top: -2px;
		left: 2px;
	}
}

.simulator {
	text-align: center;
	margin: 0 auto;
}
.simulator p {
	padding: 0;
}
.simulator .title {
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
	border-bottom: 2px solid #c01a1a;
	padding: 0;
	margin-bottom: 20px;
}
.simulator .choice {
	font-size: 12px;
	font-weight: bold;
	color: #555;
	padding: 0;
	margin-bottom: 30px;
}

.simulator table {
	width: 100%;
}
.simulator table th {
	text-align: center;
	border: 1px solid #0d8b85;
	color: #0d8b85;
	background: #e7fdfc;
	font-weight: bold;
	font-size: 16px;
	width: 50%;
}
.simulator table td {
	padding: 5px;
	text-align: center;
	border: 1px solid #0d8b85;
}
.simulator table td .calc_wrap {
	text-align: right;
	margin: 0 auto;
	display: inline-block;
	padding: 10px 0;
}
.simulator .red {
	color: #dd5258;
}
.simulator hr {
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #d3dbe6;
	padding-top: 0;
	padding-bottom: 10px;
	margin-top: 20px;
	margin-bottom: 0;
}
#month_sum_wrap, #construction_sum {
	font-size: 24px;
}
.simulator table th.initial_th_sptb {display: none;}

@media only screen and (max-width: 644px){
	.simulator table th,.simulator table td {
		display: block;
		width: 100%;
	}
	.simulator table th.initial_th_pctb {display: none;}
	.simulator table th.initial_th_sptb {display: block;}
	.simulator table tr:nth-child(2) th,.simulator table tr:nth-child(2) td {
		border-top: none;
	}
}

input[readonly] {
	background: #ddd;
}

.newcp,
.newcp1g,
.newcp10g {
	display: none;
	position: relative;
}
ul.newcp1g::before,
ul.newcp10g::before {
	content: "＼新規お申し込み限定キャンペーン！／";
	display: block;
	width: 100%;
	height: auto;
	font-size: 18px;
	color: #e8757a;
	font-weight: bold;
	margin: 10px auto -10px;
	text-align: center;
}

ul.gigacp > li::before {
	content: "＼割引キャンペーン実施中！／";
	display: block;
	width: 100%;
	height: auto;
	font-size: 18px;
	color: #e8757a;
	font-weight: bold;
	margin: auto;
	text-align: center;
}