@charset "utf-8";
/* CSS Document */
input:focus::-webkit-input-placeholder {
	color: transparent;
}
input:focus::-moz-placeholder {
	color: transparent;
}
input:focus::-ms-input-placeholder {
	color: transparent;
}
input:focus::placeholder {
	color: transparent;
}

.outer {
	text-align: justify;
	text-justify: distribute-all-lines;
}

.outer:after {
	content: "";
	display: inline-block;
	width: 100%;
	line-height: 0;
	height: 0;
}

#index {
	width: 100%;
	position: relative;
	z-index: 0;
}

/*index
-------------------------------------*/


.fv {
	overflow: hidden;
	width: 100%;
	z-index: -1;
	margin: 0 auto;
	position: relative;
}

section.fv>.container {
	padding-top: 0px;
	padding-bottom: 0px;
}

.fv h2 {
	display: block;
	width: 100%;
	max-width: 100%;
}

/*timer*/

.timer_box {
	position: absolute;
	margin: 0 auto;
	bottom: 5px;
	width: 100%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.timer_box h3 {
	flex-basis: 25%;
}

.timer {
	background: #000;
	border-radius: 10px;
	display: block;
	padding: 5px;
	display: flex;
	justify-content: center;
	margin: 20px;
}


.timer_tit {
	background: #fff;
	padding: 8px 15px;
	text-align: center;
	display: block;
	border-radius: 5px;
	font-size: 30px;
	font-weight: bolder;
}

.timer_time {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

.timer_time li {
	display: inline-block !important;
	vertical-align: middle !important;
	color: #fff;
	padding: 0px 6px 0;
	font-weight: bold;
}

.timer_time span {
	color: #b2d508;
	font-family: 'Fjalla One', sans-serif;
	font-size: 40px;
	font-weight: bold;
}

/*sec1*/

section.formarea {
	position: relative;
	overflow: hidden;
	background: #e7f6ff url(../images/form_bg.jpg) no-repeat center top;
	background-size: 100% auto;
}

section.formarea:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 200%;
	height: 215px;
	margin: 0;
	background: #0168b8;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	transform: rotate(-8deg);
	z-index: -1;
}

section.formarea .container {
	margin: 0 auto;
	padding-top: 20px;
}

.formarea h3 img {
	/*max-height:200px;*/
}

.formarea h4 img {
	max-width: 60%;
	margin-top: -20px;
	position: relative;
	z-index: 0;
	margin-bottom: 10px;
}

.formarea p {}

label.error {
	color: #b10000;
}

.formarea .text_form {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
	display: block;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.formarea .text_form span {
	font-weight: bold;
	color: #b10000;
	font-size: 140%;
	font-family: "Arial Black", Gadget, sans-serif;
}

.form_box {
	background: #fff;
	box-shadow: 0 0 10px #ccc;
	padding: 50px 60px 20px;
	margin-top: 30px;
	rgba(0, 0, 0, 0.3);
	margin: 26px auto 0;
	min-height: 300px;
	position: relative;
}

.form_box:before,
.form_box:after {
	content: "";
	height: 98%;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.form_box:before {
	background: #fafafa;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	left: -5px;
	top: 4px;
	transform: rotate(-2.5deg);
}

.form_box:after {
	background: #f6f6f6;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	right: -3px;
	top: 1px;
	transform: rotate(1.4deg);
}

.form_tag {
	max-width: 500px;
	margin: 0 auto 20px;
	display: none;
}

.form-horizontal .form-group {
	margin-left: 0px;
	margin-right: 0px;
	position: relative;
	margin-bottom: 10px;
}

.form_box .form-group-lg .form-control {
	height: 70px;
	padding: 12px 80px;
	font-size: 22px;
	line-height: 1.3333333;
	border-radius: 10px;
	border: 7px solid #a3a3a3;
	box-shadow: none;
	position: relative;
	z-index: 10;
	background: transparent;
}

.form_box .form-group-lg textarea.form-control {
	height: auto;

}
.form_box .form-horizontal .form-group-lg .control-label {
	font-size: 24px;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: #006ea0;
	color: #fff;
	font-weight: bold;
	padding: 18px 28px 0 5px;
	border-radius: 10px 0 0 10px;
	font-family: 'Fjalla One', sans-serif;
	width: 70px;
	height: 70px;
}
.form_box .form-group-lg.now .form-control{
	animation: blink 1s infinite;
}
@keyframes blink {
	0% {
		border: 7px solid red;
	}
	100% {
		border: 7px solid #a3a3a3;
	}
}
		.form_box .form-group-lg.filled .form-control,.form_box .form-group-lg.now.filled .form-control {
		padding: 15px 10px 15px 70px;
		background-color:#f3f9ff;
		background-image: url("../images/check.png");
		background-size: 30px auto;
		background-repeat: no-repeat;
		background-position:95% 50%;
		z-index: 0;
		border: 7px solid #006ea0!important;
		animation: none;
	}
.form_box .form-horizontal .form-group-lg.filled .control-label {
			z-index:1;
	}
.btn-submit {
	width: 546px;
	margin: 30px auto 0;
	display: block;
	max-width: 100%;
	border: none;
	background: url(/images/form_img_btn.jpg) no-repeat;
	height: 150px;
	background-size: 100%;
	overflow: hidden;
	text-indent: -1000px;
}

.form_input {
	background: #fff;
	border-radius: 10px;
}

.form_btn {
	width: 80%;
	margin: 40px auto;
	display: block !important;
}


.form_btn input {
	display: block;
	max-width: 100%;
	height: auto;
	cursor: pointer;
}

.form_btn img {
	display: block;
	max-width: 100%;
	height: auto;
	cursor: pointer;
}

.form_btn img.active {
	display: none;
}

#submitBtn1.inactive {
	opacity: 0.8;
}

#submitBtn2.inactive {
	opacity: 0.8;
}

.form_comment {
	padding: 8px 12px;
	border: 2px solid #ffbc28;
	border-radius: 5px;
	background: #ffffdf;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 18px;
}

.form_comment span {
	color: #b10000;
}

.form_input>label {
	padding-left: 80px;
}

.formarea .radio,
.formarea .checkbox {
	position: static;
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
}


.formarea input[type="radio"],
input[type="checkbox"] {
	margin: 8px 0px 0;
	position: static;

}

.radio .form-control {
	padding-top: 20px !important;
}

.sub_form_box div.inner_appo {
	display: none;
}



/*明日までに資金が欲しい*/
#sec2 {
	background: #12a73b;
}

.contact_box {
	background: #fff;
	padding: 40px;
	text-align: center;
}

.contact_box:first-of-type {
	border-bottom: 5px solid #000;
}

/*sec3 こんなことで、
頭を抱えていませんか？*/
#sec3 {
	background: url(../images/sec3_bg.jpg) no-repeat center top;
	background-size: cover;
}

/*sec4 それ、ファクタリングで 解決できます！*/
#sec4 {
	background: url(../images/sec4_bg.jpg) no-repeat center top;
	background-size: cover;
}

#sec4 .container {
	position: relative;
}

.sec4_txt {
	width: 52%;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	line-height: 1.8;
}

.sec4_img {
	position: absolute;
	bottom: 0px;
	right: 0;
	diplay: block;
	width: 40%;
}

/*sec5 最も早い資金調達方法であるファクタリングについて詳しく知っていますか？*/
#sec5 {
	background: url(../images/sec5_bg.jpg) no-repeat center bottom;
	background-size: cover;
}

#sec5 h3 {
	max-width: 800px;
}

/*sec6 ファクタリングには  3社間 と 2社間 の 種類があります！*/

#sec6 {
	background: linear-gradient(to bottom, #007bee 0, #007bee 50%, transparent 50%, transparent 100%);
}

#sec6 .container {
	padding-bottom: 0;
}

#sec6 .sec6_cnt1 {

	margin-top: 5.087719298245614%;
	background: #e9f4f5;
	padding-bottom: 11.31578947368421%;
}

#sec6 .sec6_cnt1 .container {
	padding-top: 0;
	position: relative;
}

#sec6 .sec6_cnt1 img {
	margin-top: -5.087719298245614%;
}

#sec6 .sec6_cnt2 {

	margin-top: -40px;
	background: linear-gradient(to top, transparent 0, transparent 50px, #cc2a1e 50px, #cc2a1e 100%);
}

#sec6 .sec6_cnt2 .container {
	padding-top: 0;
	position: relative;
}

#sec6 .sec6_cnt2 img {
	margin-top: -11.31578947368421%;
}

/*sec7 建設業の資金繰りレスキュー隊は2社間を中心とした 建設業専門の ファクタリング屋です！*/
#sec7 {
	background: url(../images/sec7_bg.png) no-repeat center bottom;
	background-size: cover;
	margin-top: -60px;
	position: relative;
	z-index: -1;
}

.sec7 {
	background: url(../images/sec7_bg.png) no-repeat center bottom;
	background-size: cover;
	position: relative;
	z-index: -1;
}

/*sec8 ファクタリングは国からも 認められている資金調達方法なんです*/

#sec8 {
	background-size: 100% auto;
	background-image: url(../images/sec8_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin-top: -14.2%;
	position: relative;
	z-index: -2;
}

#sec8 .container {
	padding-top: 0;
}

#sec8 h3 {
	margin-bottom: 25px;
}

.sec8_box {
	border: 5px solid #000;
}

.sec8_box p {
	padding: 20px;
	font-weight: bold;
}

.sec9 {
	background: #b10000
		/*url(../images/sec_bg_pink.jpg) no-repeat center bottom*/
	;
	background-size: cover;
	padding-bottom: 170px;

}
@media screen and (max-width:767px) {
	.sec9 {
		background: #f7d300;
	}
}
.sec9 .container {
	padding-top: 40px;

}

.sec9_1 {
	padding-bottom: 80px;
}

.sec9_2 {
	/*background:url(../images/sec_bg_pink.jpg) no-repeat center bottom;*/
	background-size: cover;
	padding-bottom: 0px;
	padding-top: 60px;
	margin-top: -15%;
	position: relative;
	z-index: -3;
}

.sec9_2 .container {
	padding-top: 8%;

}

.sec9 img {
	max-width: 760px;
}

section:nth-last-of-type(4).sec9_2 {
	padding-top: 90px;
}


.sec9_3 {
	/*background:url(../images/sec9_3_bg.png) no-repeat center top;*/
	background-size: cover;
	margin-top: -14%;
	position: relative;
	z-index: 1;
}

.sec9_3 .nm {
	padding-top: 3%;
	padding-bottom: 6.29166666666667%;
	margin-bottom: -12.29166666666667%;
}

section.sec9_3 .container {
	padding-top: 40px;
	padding-bottom: 20px;
}

/*sec9 SOS*/

#sec9 {
	background: url(../images/sec9_bg.png) no-repeat center top;
	background-size: auto 100%;
	margin-top: -10%;
	padding-top: 12%;
	padding-bottom: 12%;
}

#sec9 .container {
	padding-bottom: 3%;
}

/*sec10 そんな社長の苦痛のSOS・・・*/
#sec10 {
	position: relative;
	margin-top: -8.333333333333333%;
	z-index: -3;
}

#sec10:before {
	content: '';
	position: absolute;
	top: 4.16%;
	left: -20px;
	width: 200%;
	height: 260px;
	margin: 0;
	background: #b10000;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-6deg);
	-ms-transform: rotate(-6deg);
	transform: rotate(-6deg);
	z-index: -1;
}

#sec10 .container {
	padding-top: 8.333333333333333%;
}

#sec10 h3 {
	/*max-width:900px;*/
	margin-bottom: 30px;
}

.sec10_box_inner {
	background: #fad80b;
	margin-top: 5px;
	padding: 20px;
	15px;
	position: relative;
}

.sec10_box_inner .icon {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36%;
	height: 0;
	padding-bottom: 50%;
	display: block;
	z-index: 0;
}

.sec10_box_inner h4 {
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: bold;
	position: relative;
	z-index: 1;
	line-height: 1.4;
}

.sec10_box_inner p {
	font-size: 16px;
}

.sec10_txt {
	position: relative;
	z-index: 1;
}

/*sec12 日本政策金融公庫の審査でも、約50%が落ちる!?*/

#sec12 {
	/*background-size: contain;*/
	background-image: url(../images/sec12_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	z-index: -2;
}

#sec12 .container {
	padding-top: 0;
}

#sec12 h5 {
	border-bottom: 7px solid #e0c93c;
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 10px;
	padding-bottom: 5px
}

/**/

#sec13 {
	background-size: cover;
	background-image: url(../images/sec13_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

#sec13 h3 {
	max-width: 800px;
}

section#sec14 {
	position: relative;
	overflow: hidden;
}

section#sec14:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 200%;
	height: 315px;
	margin: 0;
	background: #f8d500;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-9.4deg);
	-ms-transform: rotate(-9.4deg);
	transform: rotate(-9.4deg);
	z-index: -1;
}

section#sec14 .container {
	padding-top: 20px;
}

section#sec14 h3 img {
	max-height: 320px;
}

section#sec14 .graph {
	margin-top: -240px;
}

#sec15 {
	background: #fad706;
}

#sec16 {
	background-size: cover;
	background-image: url(../images/sec16_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	z-index: 10;

}

section#sec16 h3 {
	margin-bottom: 6%;
}

#sec17 {
	margin-top: -10%;
	position: relative;
	z-index: 100;
	padding-top: 20px;
	background: url(../images/sec17_bg.png) no-repeat center top;
	background-size: cover;
}

#sec17 .container {
	padding-top: 8%;
}

#sec18 {
	background: url(../images/sec18_bg.jpg) no-repeat center top;
	background-size: cover;
}

#sec19 {
	background: url(../images/sec19_bg.jpg) no-repeat center top;
	background-size: cover;
	position: relative;
	z-index: 1;
	padding-bottom: 12%;
}

#sec20 {
	background: linear-gradient(to bottom, transparent 0, transparent 25%, #e4c815 25%, #e4c815 100%);
	position: relative;
	z-index: 10;
	margin-top: 8%;
}

#sec20:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 80%;
	margin: % -10% 0;
	background: #e4c815;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-9deg);
	-ms-transform: rotate(-9deg);
	transform: rotate(-9deg);
	z-index: -1;
}

#sec20 .container {
	padding-top: 20px;
}

#sec20 h3 {
	margin-top: -12%;
	padding-top: 0;
	margin-bottom: 40px;
}

#sec20 h3 img {
	max-height: 300px;
}

#sec20 .col-lg-10 {
	width: 100%;
}

#sec20 .col-lg-offset-1 {
	margin-left: 0;
}

.voice_box {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	display: flex;
	margin-bottom: 40px;
	align-items: center;
}

.voice_img {
	flex-basis: 40%;
	margin: 20px 40px 0 0;
}

/*FAQ
-----------------------------------*/
#sec21 h3 {
	width: 30%;
	max-width: 300px;
	margin: 0 auto 30px;
}

#faq {
	background: #e6eef2;
}

.faq_wrapper {

	width: 100%;
	background: #fff;
	border-top: none;
}

.inner_faq {
	position: relative;
	z-index: 1;
	padding: 25px;
	border: 2px solid #000;
}

.faq_wrapper:first-of-type {
	border-top: 1px solid #ccc;
}


#faq .copy-tit-05:before {
	content: "";
	background: url(../images/top/icon_faq.png) no-repeat center top;
	display: block;
	position: absolute;
	top: -35px;
	left: 50%;
	margin-left: -80px;
	width: 160px;
	background-size: contain;
	height: 70px;

}

.faq_q:after {
	content: "";
	position: absolute;
	right: 30px;
	top: 38%;
	transition: all 0.2s ease-in-out;
	/*   要素の動きを指定 */

	display: block;
	width: 12px;
	height: 12px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;

	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	/* transform: rotateで要素の角度を指定 */

}

.faq_q.open:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 45%;
	/*   .openクラスがついた時の要素の角度を指定 */
}

.faq_q h4 {
	font-size: 18px;
	margin-left: 80px;
	margin-right: 20px;
	line-height: 1.4;
}


.box_icn {
	position: absolute;
	width: 80px;
	display: block;
	height: 100%;
	line-height: 40px;
	font: 22px 'Fjalla One', sans-serif;
	left: 1px;
	top: 1px;
	text-align: center;
	padding-top: 20px;
	bottom: 1px;

}

.box_icn_q {
	background: #000;
	color: #fff;
}

.box_icn_a {
	background: #ee7b00;
	color: #fff;
}

.inner_faq h3 {
	margin-left: 75px;
	line-height: 1.2;
	color: #d42a51;
}

.inner_faq p,
.inner_faq ol,
.inner_faq ul {
	margin-left: 75px;
	font-weight: 300;
}

.inner_faq ul li {
	margin-left: 24px;
}


.faq dd:before {
	content: "A";
	color: #e7dfcd;
	padding-right: 20px;
	font-family: 'Pinyon Script', cursive;
	font-size: 48px;
	font-weight: bold;
	line-height: 1;
	display: inline-block;
}


.faq dl:last-of-type dd {
	margin-bottom: 0;
}

/*FAQ
-------------------------------------*/
.inner_faq {
	cursor: pointer;
}

.accordion-toggle a:after {
	font-family: 'Glyphicons Halflings';
	content: "\e113";
	float: right;
	color: inherit;
}

.accordion-toggle a.collapsed:after {
	font-family: 'Glyphicons Halflings';
	content: "\e114";
	float: right;
	color: inherit;
}

/*3STEP*/

section#sec22 {
	position: relative;
	overflow: hidden;
}

section#sec22:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 200%;
	height: 315px;
	margin: 0;
	background: #f8d500;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-9.4deg);
	-ms-transform: rotate(-9.4deg);
	transform: rotate(-9.4deg);
	z-index: -1;
}

section#sec22 .container {
	padding-top: 20px;
	padding-bottom: 120px;
}

section#sec22 h3 img {
	max-height: 360px;
	margin-bottom: 40px;
}

#sec22 {
	background: url(../images/sec22_bg.png) no-repeat center bottom;
	background-size: cover;
	position: relative;
	z-index: 0;
}

#sec22 h3 {}

.step_box {
	background: #fff;
	padding-bottom: 15px;
	margin: 0 auto 10px;
}

.step_img {
	padding: 0 15px;
}

.step_txt {
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
}

.step_txt span {
	color: #b10000;
}

.step_btn {
	width: 80px;
	margin: 0 auto 15px;
}

.sec22_cnt {
	margin-top: 30px;
}

section#sec23 {
	position: relative;
	overflow: hidden;
}

section#sec23:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 200%;
	height: 315px;
	margin: 0;
	background: #f8d500;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-9.4deg);
	-ms-transform: rotate(-9.4deg);
	transform: rotate(-9.4deg);
	z-index: -1;
}

section#sec23 .container {
	padding-top: 20px;
}

#sec23 h4 {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 80px;
	line-height: 1.6;
}

.staff_box {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	display: flex;
	margin-bottom: 80px;
	border: 4px solid #000;
}

.staff_box:last-of-type {
	margin-bottom: 0px;
}

.staff_img {
	flex-basis: 30%;
	margin: -80px 40px 0 -30px;
	box-shadow: 5px 5px #333;
	height: fit-content;
}
.staff_txt {
	flex-basis: 70%;
}
#sec24 {
	position: relative;
	z-index: 100;
	background: url(../images/sec24_bg.jpg) no-repeat center top;
	background-size: cover;
}

#sec24 .container {}

.sp {
	display: none;
}

@media (max-width:768px) {
	.sp {
		display: block;
	}

	#header {
		height: 70px;
		max-width: 100%;
	}

	#logo {
		margin: 5px 0 0 0px;
	}

	#logo img {
		max-width: 160px;
		margin: 0 auto;
	}

	.img_tell {
		flex-basis: 30%;
		max-width: 220px;
		margin-left: 5px;
	}

	.img_freedial {
		margin-left: auto;
		flex-basis: 25%;
		max-width: 250px;
	}

	#footer {
		padding: 20px 0 0;
		margin-top: 0px;
	}

	#footer h2 {
		margin-bottom: 5px;
	}

	#footer h2 {
		margin-bottom: 20px;
		max-width: 100%;
		margin: 0 auto;
		margin-bottom: 0px;
	}

	#footer h2 img {
		max-width: 50%;
		margin: 0 auto;
	}

	#footer .row {
		border-top: 1px solid #ccc;
		padding: 5px 0 0;
	}

	#footer h3 {
		margin-bottom: 0px;
		font-size: 18px;
		margin-top: 10px;

	}

	#footer p {
		font-size: 14px;
		max-width: 50%;
		margin: 0 auto;
	}


}

@media (min-width:460px) and (max-width:768px) {

	/* header footer */

	.discription {
		text-align: center;
		/*position: absolute;
 top: 90px;*/
	}

	.discription p.main_txt {
		font-size: 70px;
		line-height: 1.2;
		margin-bottom: 30px;
		text-shadow: 0px 0px 30px #999;
		font-weight: bold;
		text-align: left;
	}

	#page .page .discription {
		top: 115px;
	}


}

@media (max-width:460px) {

	.index .discription {
		text-align: center;
		/*position: absolute;
 top: 110px;*/
		padding: 0 15px !important;

	}

}

/*下層
-------------------------------------*/
/* header footer */
#page #header {
	height: 110px;
	z-index: 1000 !important;
	position: static;
	text-align: left;
	top: 0;
	background: #ffe200;
}

#page {
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	-webkit-background-size: cover;
	/*Android4*/
	z-index: -1;
}

#page #top {
	width: 100%;
	height: 100%;
	padding-bottom: 0;
	padding-top: 0;
}

#page .jumbotron {
	-webkit-background-size: cover;
	/*Android4*/
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	padding: 110px 0;
	color: #fff;
}

#page .jumbotron:before {
	z-index: 0;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);

}

#bg-bk {
	background: #000 none repeat scroll 0 0;
	color: #fff;
}

#page section {}

/*お問い合わせ*/

.bg_contact01 {
	width: 100%;
	background: url(../images/contact/contact_bg.jpg) no-repeat fixed center top;
	background-size: cover;
}

.contact_tel {
	font-size: 48px;
	font-weight: bolder;
	line-height: 1.1;
	color: #000;
}

.contact_tel span {
	font-size: 48px;
	font-weight: bolder;
}

/**/
.point_box {
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	margin-top: 60px;
	margin-bottom: 60px;
}

.point_txt {
	width: 100px;
	height: 100px;
	background: #fff;
	color: #FF6600;
	text-align: center;
	border-radius: 50%;
	margin: -50px auto 20px;

}

.point_txt p {
	display: table-cell;
	width: 100px;
	height: 100px;
	text-align: center;
	vertical-align: middle;
	font-size: 18px;
	line-height: 1.2;
}

.point_txt p span {
	font-size: 40px;
}


#bg-gr {
	background: #f5f5f3 none repeat scroll 0 0;
}

/*会社概要
---------------------------------------------------*/

.com_tab {
	border-bottom: 1px solid #ddd;
}

.com_tab th {
	font-weight: normal;
	padding: 10px 15px !important;
}

.com_tab td {
	font-weight: normal;
	padding: 10px 15px !important;
}

#page .discription p.name {
	width: 15%;
	float: right;
}

.name img {
	width: 80%;
	max-width: 150px;
	height: auto;
	text-shadow: rgba(0, 0, 0, 0.5);
}

.compliance_box {
	list-style-type: none;
}

.compliance_box ul:after {
	content: "";
	border: 1px solid #ddd;
	bo
}

.compliance_box li {
	list-style-type: none;
	border: 1px solid #ddd;
	padding: 10px 20px;
	background: #fff;
	display: block;
	margin-bottom: ;
	margin: 0 auto 40px;
	border-radius: 6px;
}

.compliance_box li:nth-child(-n + 3) {

	display: block;
	width: 50%;
	text-align: center;
	font-weight: bold;
	font-size: 110%;
}

.compliance_box li span {
	font-size: 24px;
}

/*---メディアごとの設定-----------------------------*/

@media (max-width:767px) {
	body {
		line-height: 1.5;
		overflow: hidden;
		font-size: 16px;
	}

	#page>#wrapper>h2 {
		font-size: 30px;
		padding: 92px 0 20px 0;
	}

	#main {
		width: 100%;
		margin: 0 auto;
		padding-top: 72px;
	}

	#mainCarousel .carousel-indicators {
		position: static;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	#mainCarousel .carousel-indicators>li {
		background: #fff;
		display: inline-block;
		float: none;
		border: none;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		margin: 0 0.5%;
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
	}

	#mainCarousel .carousel-indicators>li.active {
		background: #666;
	}

	#mainCarousel .carousel-indicators>li>img {
		display: none;
	}

	#infoblock {
		position: absolute;
		left: 0;
		right: 0;
		top: 72px;
		background: rgba(0, 0, 0, 0.8);
		font-size: 12px;
		text-align: center;
		border-bottom: 1px solid #ccc;
	}

	#infoblock .set-contact {
		margin-top: 10px;
	}

	#infoblock .set-contact .set-contact-tit {
		margin-bottom: 5px;
		display: block;
	}

	#infoblock .well {
		padding: 8px;
		margin: 12px;
		color: #333;
	}

	small {
		font-size: 75%;
	}

	h1,
	.h1 {
		font-size: 0 !important;
	}

	/*マージン
---------------------------------------------------- */
	.mt5 {
		margin-top: 0;
	}

	.mt10 {
		margin-top: 0;
	}

	.mt15 {
		margin-top: 0;
	}

	.mt20 {
		margin-top: 0;
	}

	.mt25 {
		margin-top: 0;
	}

	.mt30 {
		margin-top: 30px;
	}

	.mb5 {
		margin-bottom: 0;
	}

	.mb10 {
		margin-bottom: 0;
	}

	.mb15 {
		margin-bottom: 0;
	}

	.mb20 {
		margin-bottom: 0;
	}

	.mb25 {
		margin-bottom: 0;
	}

	.mb30 {
		margin-bottom: 0;
	}

	.mb35 {
		margin-bottom: 0;
	}

	.mb40 {
		margin-bottom: 0;
	}

	.mb45 {
		margin-bottom: 0;
	}

	.mb50 {
		margin-bottom: 0;
	}

	.mb60 {
		margin-bottom: 0;
	}

	.mb70 {
		margin-bottom: 0;
	}

	.mb80 {
		margin-bottom: 0;
	}

	.mb90 {
		margin-bottom: 0;
	}

	.mb100 {
		margin-bottom: 0;
	}

	.mb110 {
		margin-bottom: 0;
	}

	.mb120 {
		margin-bottom: 0;
	}

	.mb130 {
		margin-bottom: 0;
	}

	.mb140 {
		margin-bottom: 0;
	}

	.mb150 {
		margin-bottom: 0;
	}

	.mlr5 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr10 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr15 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr20 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr25 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr30 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr35 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr40 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr45 {
		margin-left: 0;
		margin-right: 0;
	}

	.mlr50 {
		margin-left: 0;
		margin-right: 0;
	}

	.ml5 {
		margin-left: 0;
	}

	.ml10 {
		margin-left: 0;
	}

	.ml15 {
		margin-left: 0;
	}

	.ml20 {
		margin-left: 0;
	}

	.ml25 {
		margin-left: 0;
	}

	.ml30 {
		margin-left: 0;
	}

	.ml35 {
		margin-left: 0;
	}

	.ml40 {
		margin-left: 0;
	}

	.ml45 {
		margin-left: 0;
	}

	.ml50 {
		margin-left: 0;
	}

	.mr5 {
		margin-right: 0;
	}

	.mr10 {
		margin-right: 0;
	}

	.mr15 {
		margin-right: 0;
	}

	.mr20 {
		margin-right: 0;
	}

	.mr25 {
		margin-right: 0;
	}

	.mr30 {
		margin-right: 0;
	}

	.mr35 {
		margin-right: 0;
	}

	.mr40 {
		margin-right: 0;
	}

	.mr45 {
		margin-right: 0;
	}

	.mr50 {
		margin-right: 0;
	}

	#page #header {
		height: 60px;
	}

	body,
	#page {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		width: 100%;
		height: 100%;
	}


	#page #footer {
		margin-top: auto;
	}

	section .container {
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 20px;
		padding-right: 20px;
	}

	/*table*/

	.table {}

	.table th {
		width: 100% !important;
		display: block;
		background: #f6f6f6;
	}

	.table td {
		width: 100%;
		display: block;
	}

	.access_txt span {
		border: 1px solid #999;
		border-radius: 3px;
		display: block;
		line-height: 1;
		padding: 0;
		text-align: center;
		width: 70px;
		float: left;
	}

	/*改行設定*/
	.br_xs {
		display: block;
	}

	.br_sm {
		display: none;
	}

	.br_md {
		display: none;
	}

	.br_lg {
		display: none;
	}

	.name {
		width: 40% !important;
	}

	.text-xs-left {
		text-align: left !important;
	}

	.fv {
		padding-top: 30px;
		background: #fad706;
	}

	/*timer*/

	.timer_box {
		position: absolute;
		margin: 0 auto;
		bottom: 3px;
		left: 0;
		right: 0;
		justify-content: center;
		align-items: center;
	}

	.timer_box h3 {
		flex-basis: 30%;
	}

	.timer {
		background: #000;
		border-radius: 10px;
		display: block;
		padding: 5px;
		display: flex;
		justify-content: flex-start;
		margin: 5px 0;
	}


	.timer_tit {
		background: #fff;
		padding: 2px 8px;
		text-align: center;
		display: block;
		border-radius: 5px;
		font-size: 16px;
		font-weight: bolder;
	}

	.timer_time {
		display: inline-block;
		vertical-align: middle;
		margin-left: 10px;
	}

	.timer_time li {
		display: inline-block !important;
		vertical-align: middle !important;
		color: #fff;
		padding: 0px 6px 0;
		font-weight: bold;
	}

	.timer_time span {
		color: #b2d508;
		font-family: font-family: 'Fjalla One', sans-serif;
		font-size: 18px;
		font-weight: bold;
	}

	section.formarea::before {
		height: 80px;
	}

	section.formarea .container {
		width: 100%;
		padding-top: 10px;
	}

	.formarea h3 {
		background: url(../images/sec_form_sp_tit.png) no-repeat center top;
		background-size: 100% auto;
		display: block;
		width: 100%;
		height: 0;
		padding-bottom: 54.375%;
	}

	.formarea h3 img {
		max-height: 100%;
		position: relative;
		z-index: 1;
		width: 100%;
		display: none;
	}

	.formarea h4 img {
		max-width: 60%;
		margin-top: -20px;
		position: relative;
		z-index: 0;
		margin-bottom: 10px;
	}

	.formarea .text_form {
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 10px;
		margin-top: 0px;
	}

	.form_box .form-group-lg .form-control {
		height: 61px;
		padding: 15px 10px 15px 70px;
		font-size: 16px;
		line-height: 1.3333333;
		border-radius: 10px;
		border: 4px solid #0168b8;
		box-shadow: none;
	}


	.form_box .form-horizontal .form-group-lg .control-label {
		padding-top: 14.333333px;
		font-size: 18px;
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		background: #0168b8;
		color: #fff;
		font-weight: bold;
		padding: 16px 25px 0;
		border-radius: 10px 0 0 10px;
		font-family: 'Fjalla One', sans-serif;
		width: 60px;
		height: 60px;
		z-index: 100;
	}

	.form_box .form-group-lg .radio .form-control {
		height: 80px;
	}


	.radio .form-control {
		padding-top: 10px !important;
	}

	.form_box {
		padding: 20px 20px;
		margin: 10px 5px 10px;
		;
	}

	.form_tag {
		width: 60%;
		margin: 0 auto 20px;
	}

	.form_btn {
		margin: 20px auto 0;
		display: block !important;
	}

	.contact_box {
		background: #fff;
		padding: 10px 15px;
		text-align: center;
	}

	.con_tel {
		width: 80%;
		margin: 0 auto 5px;
	}

	.con_time {
		width: 40%;
		margin: 0 auto;
	}

	#sec4 {
		background: url(../images/sec4_bg.jpg) no-repeat 70% top;
		background-size: cover;
	}

	#sec4 .container {
		position: relative;
		padding-top: 0;
	}

	.sec4_txt {
		width: 80%;
		font-size: 14px;
		font-weight: bold;
		color: #fff;
		line-height: 1.8;
		margin-bottom: 10px;
	}


	.sec4_img {
		position: inherit;
		width: 70%;
		float: right;
	}

	#sec6 .sec6_cnt2 {
		margin-top: -40px;
		background: linear-gradient(to top, transparent 0, transparent 20px, #cc2a1e 20px, #cc2a1e 100%);
	}

	#sec7 {
		margin-top: -40px;
	}

	#sec7 img {
		width: 120%;
	}

	#sec8 {
		margin-top: -16.5%;
		background-size: 137%;
	}

	#sec8 h3 {
		margin-bottom: 15px;
	}

	.sec8_btn {
		width: 60%;
		margin: -20px auto 0;
	}

	#sec9 {
		margin-top: -12%;
		background-size: 137%;
	}

	#sec9 {
		background: none;
		background-size: auto;
		background-size: auto 100%;
		margin-top: -10%;
		padding-top: 0;
		padding-bottom: 12%;
	}

	.sec9 {
		padding-bottom: 60px;
	}

	.sec9 .container {
		padding-top: 30px;
	}


	.sec9 img {
		max-width: 90%;
	}

	.sec9_1 {
		padding-bottom: 30px;
	}

	.sec9_2 {
		margin-top: -24%;
		padding-bottom: 0px;
	}

	.sec9_2 .container {
		padding-top: 12%;
	}



	.sec9_3 {
		/*background: url(../images/sec9_3_bg.png) no-repeat center center;
        background-size: auto;
    background-size: cover;*/
		margin-top: -12.29166666666667%;
		position: relative;
	}

	section.sec9_3 .container {
		padding-top: 50px;
		padding-bottom: 20px;
	}

	.sec9_3 .nm {
		padding-top: 8%;
		padding-bottom: 15%;
		margin-bottom: -12.29166666666667%;
	}

	section:nth-last-of-type(4).sec9_2 {
		margin-top: -28%;
		padding-bottom: 0px;
		padding-top: 20px;
	}

	#sec10 {
		margin-top: -20%;
	}

	#sec10::before {
		content: '';
		position: absolute;
		top: 0;
		left: -20px;
		width: 150%;
		height: 120px;
		margin: 0;
		background: #b10000;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg);
		z-index: -1;
	}

	#sec10 h3 {
		margin-bottom: 0px;
		padding-top: 7.5%;
	}

	#sec10 .container {
		padding-top: 10px;
	}

	.sec10_box {
		margin-bottom: 10px;
	}

	#sec12 {
		background-size: 137%;
	}

	#sec12 p {
		margin-bottom: 15px;
	}

	#sec12 .container {
		padding-bottom: 15px;
	}

	#sec13 {
		background-position: 80% top;
	}

	section#sec14::before {
		content: '';
		position: absolute;
		top: 0;
		left: -20px;
		width: 200%;
		height: 105px;
		margin: 0;
		background: #f8d500;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
		z-index: -1;
	}

	section#sec14 .container {
		padding-top: 5px;
	}

	section#sec14 .graph {
		margin-top: -100px;
	}

	#sec16 {
		background-size: cover;
		background-image: url(../images/sec16_bg.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		position: relative;
	}

	#sec17 {
		margin-top: -9%;
		position: relative;
		padding-top: 0px;
		background: none;
		background-size: cover;
		z-index: 1;
	}

	#sec19 {
		padding-bottom: 0%;
	}


	#sec20 {
		background: linear-gradient(to bottom, transparent 0, transparent 13%, #e4c815 13%, #e4c815 100%);
		margin-top: 0;
	}

	#sec20::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 120%;
		height: inherit;
		margin: % -10% 0;
		background: #e4c815;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
		-webkit-transform: rotate(-9deg);
		-ms-transform: rotate(-9deg);
		transform: rotate(-9deg);
		z-index: -1;
	}


	#sec20 h3 {
		margin-top: -12.29166666666667%;
	}

	.voice_box {
		background: #fff;
		border-radius: 10px;
		padding: 40px;
		display: flex;
	}

	.voice_img {
		flex-basis: 40%;
		margin: 20px 40px 0 0;
	}

	.faq_q h4 {
		font-size: 16px;
		margin-left: 70px;
		margin-right: 25px;
		line-height: 1.4;
		font-weight: bold;
	}

	#sec20 h3 {
		margin-top: -12.29166666666667%;
		margin-bottom: 5%;
	}

	.voice_box {
		background: #fff;
		border-radius: 10px;
		padding: 15px;
		display: block;
		text-align: center;
		margin-top: 10px;
	}

	.voice_img {
		flex-basis: 40%;
		width: 40%;
		margin: 0px auto 10px;
	}



	section#sec22::before {
		height: 115px;
	}

	section#sec22 .container {
		padding-bottom: 130px;
	}

	section#sec22 h3 img {
		max-height: 360px;
		margin-bottom: 0px;
	}

	.sec22_cnt {
		max-width: 70%;
		margin: 20px auto 20px;
	}

	section#sec23::before {
		content: '';
		background: none;
	}



	#sec23 h4 {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 40px;
		line-height: 1.6;
	}

	section#sec23 .container {
		padding-top: 10px;
		padding-bottom: 30px;
	}

	.staff_box {
		background: #fff;
		border-radius: 10px;
		padding: 20px;
		display: flex;
		margin-bottom: 40px;
		border: 4px solid #000;
		margin-left: 0px;
		margin-right: 20px;
	}

	.staff_img {
		flex-basis: 40%;
		margin: -40px 20px 20px -30px;
		box-shadow: 5px 5px #333;
		    height: fit-content;
	}
	.staff_txt {
		flex-basis:60%;
	}
	.staff_box:last-of-type {
		margin-bottom: 0;
	}

}

@media (min-width:768px) and (max-width:991px) {
	/*sm*/
	/*メインイメージ*/

	/*改行設定*/
	.br_xs {
		display: none;
	}

	.br_sm {
		display: block;
	}

	.br_md {
		display: block;
	}

	.br_lg {
		display: block;
	}

	.contents {
		width: 100%;
		margin: 0 auto;
		padding: 20px;
	}

	#banner-area {
		margin-bottom: 30px;
	}

	section {}

	.nav-justified>li>a,
	.nav-justified>li>a:hover,
	.nav-justified>li>a:active,
	.nav-justified>li>a:focus,
	.nav-justified>li.active>a {
		font-size: 13px;
	}

	#set-info .set-address {
		padding: 5px 10px;
	}

	#set-info .set-contact {
		padding: 5px 0 5px 10px;
	}

	.copy-type-1 {
		font-size: 30px;
		font-weight: 100;
		color: #023994;
		margin-bottom: 30px;
	}

	#point4>div {
		margin-bottom: 30px;
	}

	.text-xlg {
		font-size: 42px;
	}

	.copy-type-6 {
		margin-bottom: 30px;
	}

	footer #set-info .set-contact {
		padding: 5px 10px 5px 10px;
	}

	footer nav {
		padding: 20px 0 20px 20px;
	}

	#logo {
		text-align: left;
		float: left;
	}

	#logo img {
		width: 100%;
		height: auto;
		max-width: 250px;
		margin: 15px auto 0;
	}

	.nav>li>a {
		padding: 10px 5px;
	}

	.sm {
		display: none;
	}

	.txt-sm-small {
		font-size: 14px;
	}

	#page .discription p.name {
		width: 20%;
	}

	#mnav ul.nav li:hover>ul.dropdown-menu {
		display: block;
	}

	.sec9_1 {
		padding-bottom: 30px;
	}

	.sec9_2 {
		background: url(../images/sec_bg_pink.jpg) no-repeat center bottom;
		background-size: auto;
		background-size: cover;
		padding-bottom: 0px;
		padding-top: 0px;
		margin-top: -22%;
		position: relative;
		z-index: -3;
	}

	.sec9_2 .container {
		padding-top: 12%;
		padding-bottom: 40px;
	}

	.staff_box {
		margin-left: 60px;
		margin-right: 40px;
	}

	#sec10:before {
		content: '';
		height: 200px;
		top: 0;
	}

	section#sec23::before {
		content: '';
		background: none;
	}

	#sec8 {
		margin-top: -17.3%;
	}

}

@media (min-width:992px) and (max-width:1399px) {
	/*md*/
	/*メインイメージ*/

	/*改行設定*/
	.br_xs {
		display: none;
	}

	.br_sm {
		display: none;
	}

	.br_md {
		display: block;
	}

	.br_lg {
		display: block;
	}

	.text-xlg {
		font-size: 52px;
	}

	.news_img {
		padding-top: 40px;
	}

	#logo img {
		width: 100%;
		height: auto;
		max-width: 250px;
	}

	.txt-sm-small {
		font-size: 80%;
	}

	#mnav ul.nav li:hover>ul.dropdown-menu {
		display: block;
	}

	#sec8 {
		margin-top: -17.3%;
	}


	#sec10:before {
		content: '';
		height: 200px;
		top: 0;
	}


}

@media (min-width:1200px) and (max-width:1399px) {

	#sec8 {
		margin-top: -14.3%;
	}

	#sec8 h3 {
		margin-bottom: 25px;
		margin-top: -40px;
	}


	#sec10:before {
		content: '';
		height: 260px;
	}

	#sec17 .container {
		padding-top: 8%;
	}
}

@media (min-width:1400px) {
	/*lg*/
	/*メインイメージ*/

	/*改行設定*/
	.br_xs {
		display: none;
	}

	.br_sm {
		display: none;
	}

	.br_md {
		display: none;
	}

	.br_lg {
		display: block;
	}

	#logo {}

	h1 img {
		width: 100%;
		height: auto;
		max-width: 295px;
	}

	.lg {
		display: none;
	}

	#section02::after {
		margin-left: -32px;
	}

	#section03::after {
		margin-left: -40px;
	}

	#sec10::before {
		content: '';
		position: absolute;
		height: 260px;
		top: 0;
	}

	#sec17 .container {
		padding-top: 7%;
	}

	#sec12 .container {
		padding-top: 60px;
	}

	.sec9_3 .nm {
		padding-bottom: 10.29166666666667%;
		margin-bottom: -12.29166666666667%;
	}

	#sec9 {
		background: url(../images/sec9_bg.png) no-repeat center top;
		background-size: cover;
	}

}

@media (min-width:1515px) {
	#sec8 .container {
		padding-top: 0;
	}
}

@media (min-width:1650px) {
	#sec10::before {
		content: '';
		position: absolute;
		height: 300px;
		top: 0;
	}
}

@media (min-width:1800px) {
	#sec10::before {
		content: '';
		position: absolute;
		height: 300px;
		top: 0;
	}
}

.no-gutter>[class*='col-'] {
	padding-right: 0;
	padding-left: 0;
	overflow: hidden;
}



@media print {
	body {
		background-image: none;
	}

	.container {
		width: 991px !important;
	}

	#pagetop {
		display: none;
	}
}

.header-t {
	padding: 100px 0;
	background:url('../images/t-bg1.png');
	background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: auto 100% ;
}
.t-step {
	background:url('../images/t-stepbg.png');
	background-position: 50% 50%;
	background-repeat: no-repeat;
		background-size: cover;
}
.t-line {
	background:url('../images/t-bg3.png');
	background-position: 50% 50%;
	background-repeat: no-repeat;
		background-size: cover;
}
.t-line a {
	display: block
}
.t-line a img {
	display: block;
	margin: 0 auto 30px;
}
.t-line p {
	font-size: 14px;
	margin: 0 auto;
	width: 700px;
	max-width: 100%;
}
@media screen and (max-width:767px) {
	.header-t {
	padding: 60px 0;
	}
	.sec9_3 .container {
    padding-left: 10px;
    padding-right: 10px;
}
.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #f7d300;
	padding: 15px;
	display: flex;
	justify-content: space-between;
}
.fixed a {
	background: #000;
	padding: 8px;
	width: calc(100% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.fixed a img {
	display: block;
}
.fixed a:last-child {
	width: 50px;
}
#pagetop {
	display: none;
}
	.pc {
		display: none!important;
	}
}
@media screen and (min-width:768px) {
 .sp {
	 display: none!important;
 }
}
.simulate  {
	background: url(../images/simulate-bg.png) no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.simulate img{
	display: block;
	margin: 0 auto 30px;
}
.simulate .numbox {
	display: flex;
	justify-content: center;
	align-items:flex-end;
	margin: 0 auto 30px;
}
.simulate .numbox span{
	margin-left: 3%;
	font-size: 30px;
	font-weight: bold;
}
	@media screen and (max-width:767px){
		.simulate .numbox span{
			font-size: 18px;
		}
	}
.simulate .error {
	color: #ea112b;
	background: #FFF;
	width: 400px;
	max-width: 100%;
	margin: 0 auto 30px;
	padding: 10px;
	max-width: 100%;
	text-align: center;
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: bold;
}
.simulate input{
	padding: 10px;
	border-radius: 6px;
	background:#000000;
	color: #97b50d;
	font-weight: bold;
	font-size:30px;
	text-align: right;
	display: block;
	width:80%;
}
@media screen and (max-width:767px){
	.simulate input{
		width:70%;
	}
}
.simulate .container img{
	display: block;
	max-width: 100%;
}
.simulate .container{
	position:relative;
}
.simulate .reset {
	margin:20px auto 0;
		display: block;
	}
	.simulate .reset img {
		width: 130px;
		max-width: 100%;
	}
@media screen and (min-width:768px) {
	.simulate .reset {
		position: absolute;
		right:0;
		top: 40px;
		display: block;
	}
	.simulate .container .calc img{
		width: 70%;
	}
}
.simulate .sum{
	text-align: center;
	color:#ea112b ;
	font-weight: bold;font-size:30px;
}
.simulate .sum .total{
	font-size: 40px;
}
@media screen and (max-width:768px) {
	.simulate .sum{
		font-size:20px;
	}
	.simulate .sum .total{
		font-size: 25px;
	}
}
