@charset "utf-8";

/* -----------------------------------------------------------
    form
-------------------------------------------------------------- */

#form .form-area .inner {
	max-width: 1000px;
	min-width: 1000px;
    position: relative;
}

.intro-area{
	margin: 50px 0 0;
}
.intro-area .inner1000{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
.intro-area .title{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
}
.intro-area .loop-img{
	background: url("../img/top-mv-scroll.jpg") center / contain;
	background-size: auto 300px;
	height: 300px;
	min-height: 300px;
	overflow: hidden;
	-moz-animation: mv-loop 80s linear infinite;
	animation: mv-loop 80s linear infinite;
	width: 65%;
}

@keyframes mv-loop {
0% {
	background-position: 0 0;
	}

100% {
	background-position: -2047px 0;
	}
}

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

	#form .form-area .inner {
		max-width: 100%;
		min-width: 100%;
        margin: 0;
	}

	#form.confirm .txt-area {
		padding: 30px 20px 0;
	}

	.intro-area{
		margin: 80px 0 0;
	}
	.intro-area .inner1000{
		display: block;
	}
	.intro-area .txt-area{
		padding: 20px 20px 0;
	}
	.intro-area .title{
		font-size: 2.3rem;
	}
	
	.intro-area .loop-img{
		background-size: auto 200px;
		height: 200px;
		min-height: 200px;
		width: 100%;
	}


}


/* -----------------------------
	cer-btn-tbox
-------------------------------- */

.txt-area.cer-btn-tbox {
	align-items: center;
	padding: 60px 0 30px;
}


.txt-area.cer-btn-tbox .copy {
	font-weight: bold;
	font-size: 2.4rem;
}

.txt-area.cer-btn-tbox .txt {
	padding: 20px 0 0;
}

@media screen and (max-width: 768px){
	
	.txt-area.cer-btn-tbox {
		display: block;
		flex-flow:column;
		align-items: flex-start;
		padding: 50px 20px 0;
	}

	.txt-area.cer-btn-tbox .img {
		text-align: center;
		height: 80px;
	}

	.txt-area.cer-btn-tbox .img img {
		height: 100%;
	}

	.txt-area.cer-btn-tbox div {
		padding: 20px 0 0;
	}

	.txt-area.cer-btn-tbox .copy {
		font-size: 2.0rem;
	}

	.txt-area.cer-btn-tbox .txt {
		padding: 10px 0 0;
	}

}


/* -----------------------------------------------------------
    input
-------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"], 
input[type="date"],

select,
textarea {
	border: 1px solid #ddd;
	padding: 15px;
	font-size: 1.5rem;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #333;
	letter-spacing: 0.03em;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;	
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,

select:focus,
textarea:focus {
	border: 1px solid #0099dd;
}

input[type="number"] {
	-moz-appearance:textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select{
	width: 30%;
	margin: 0 5px 0 0;
	background: #fff url(../img/icon_arrow_under.png) no-repeat 95% 50%;
	background-size: 20px auto;
}

td.area select{
	width: 40%;
	padding: 9px;
	margin: 0 0 0 0;
	background: #fff url(../img/icon_arrow_under.png) no-repeat 95% 50%;
	background-size: 20px auto;
}

select:hover {
	cursor: pointer;
}

option {
	padding: 5px 15px;
}

select option selected {
	color: #999;
}

textarea {
	width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align:-1px;
	margin: 0 8px 0 0;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    border-radius: 0;
}

.form-area label:hover {
	cursor: pointer;
}

/*
.form-area label.label_first {
	display: inline-block;
	margin: 0 40px 0 0;
}
*/


/* -----------------------------------------------------------
    button / submit
-------------------------------------------------------------- */

#form input[type="submit"],
#form input[type="button"] {
	display: block;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	letter-spacing: 0.05em;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #FFF;
	font-size: 2rem;
	font-weight: bold;
	width: 360px;
	padding: 20px 30px 22px 30px;
	text-align: center;
	box-shadow: 2px 2px 3px #ccc;
}

#form input[type="submit"],
#form input[type="button"]{
	min-width: 300px;
}

.submit_btn {
	color: #fff !important;
	background:#BFA049;
}

.submit_org {
	background: #FF8C53;
}
input[type="submit"].submit_gray,
input[type="button"].submit_gray{
	color: #333 !important;
	width: 400px;
	background: #F5F5F5;
	padding: 18px 10px 22px 10px;
	text-align: center;
	box-shadow: 2px 2px 3px #DDD;
}
.submit_magenta {
	background: #3EC473;
}
.submit_green {
	background: #F45C18;
}

input[type="submit"]:hover,
input[type="button"]:hover{
	cursor: pointer;
	opacity: 0.8;
}

/*		送信ボタン		*/
.form_btn_area {
	padding: 0 0 70px 0;
	text-align: center;
}
.form_btn_area .fl {
	float: left;
}
.form_btn_area .fr {
	float: right;
}

.form_btn_txt {
	margin: 0 0 40px;
}

.form_btn_txt a {
	color: #3171C5;
    border-bottom: 1px solid #3171C5;
    width: fit-content;
}

.form_btn_txt a:hover {
	opacity: 0.8;
}

.error_message{
	text-align:center;
	padding:130px 0 40px;
	line-height:1.8;
}

/* -----------------------------------------------------------
    入力画面共通  /  table
-------------------------------------------------------------- */
.form-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.6rem;
	line-height: 1.8;
	border-top: 1px #e2e2e2 solid;
	margin: 30px 0 50px;
}

.form-table tr{
}

.form-table th {
	padding: 30px 0 30px 40px;
	width: 300px;
	vertical-align: top;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px #e2e2e2 solid;
}

.form-table td {
	padding: 30px 40px 30px 40px;
	border-bottom: 1px #e2e2e2 solid;
}

.form-th-title {
	display: inline-block;
	padding: 5px 0 0;
}

.form-th-title span{
	font-size: 1.2rem;
	color: #666;
}

.form-th-notes {
	float: right;
	display: inline-block;
	margin: 5px 0 0;
	padding: 3px 12px;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff !important;
	background: #bfa049;
}
.form-th-notes.est {
	float: none;
	padding: 6px 10px;
	margin: 0 0 0 10px;
	vertical-align: middle;
}
.form-th-notes.any {
	background: #1294D5;
}

.form-table input[type="text"],
.form-table input[type="password"],
.form-table input[type="tel"],
.form-table input[type="email"], 
.form-table input[type="date"]{
	width: 80%;
	line-height: normal;
}
.form-table input[type="number"] {
	width: 30%;
}

/*		生年月日		*/
input[type="text"].birth {
	width: 40%;
}


/*		姓名		*/
input[type="text"].half {
	width: 36%;
	margin: 0 20px 0 10px;
}
input[type="text"].half.l {
	margin: 0 20px 0 10px;
}


/*		郵便番号		*/
input[type="number"].input_zip {
	width: 30%;
	margin: 0 0 0 10px;
}
.zip_btn {
	width: 30%;
	margin: 15px 0 0;
	text-align: center;
}
.zip_btn a {
	display: block;
	padding: 10px 0;
	color: #fff;
	background: #7FB2AA;
}

td.area .name_txt{
	margin: 0 0 5px;
	font-size: 1.4rem;
}

/*		調査ご希望日時		*/
#datepicker1, #datepicker2 {
	/*
    background-image: url(../img/ico_calendar.png);
    background-repeat: no-repeat;
    background-position: top 50% left 10px;
    padding-left: 35px;
	*/
    width: 200px;
    margin: 5px 10px 5px 0;
}

/*		お問い合わせ		*/
.radio-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 0 10px;
}

.radio-list label {
	line-height: 2.4;
}

.radio-list li{
    margin: 0 30px 0 0;
}


/*		注釈		*/
.form_td_notes {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 1.5rem;
}

.form_td_notes a{
    color: #3171C5;
    border-bottom: 1px solid #3171C5;
    width: fit-content;
}

.form-td-notes02 {
	margin: 15px 0;
	font-size: 1.4rem;
}
.form_td_notes03 {
	margin: 15px 0 0;
	font-size: 1.4rem;
}
.form_td_notes04 {
	margin: 7px 0 15px;
	font-size: 1.4rem;
}
.form_td_notes05 {
	margin: 0 0 15px;
	font-size: 1.4rem;
}


/* -----------------------------------------------------------
    個人情報の取扱い
-------------------------------------------------------------- */

/*.privacy_box {
	margin: 40px auto;
	border: 1px solid #EDEDED;
	width: 70%;
	font-size: 1.3rem;
	letter-spacing: 0.03em;
	line-height: 1.5;
}

.privacy_box_title {
	padding: 20px 0 0;
	font-size: 1.6rem;
	text-align: center;
}

.privacy_box .content_box {
	width: 100%;
	height: 150px;
	padding: 20px 20px 30px;
}

.privacy_title {
	padding: 30px 0 15px;
}*/


/* -----------------------------------------------------------
    確認画面共通
-------------------------------------------------------------- */

.confirm.form-area .txt-area {
	padding: 50px 0 5px;
}

/* -----------------------------------------------------------
    完了画面共通
-------------------------------------------------------------- */

.thanks .form-area .txt-area {
	padding: 100px 0;
}

.thanks .form-area .txt-area .complete-title {
	color: #333;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	padding: 0 0 50px;
}

.thanks .form-area .txt-area .complete-txt {
	margin: 0 0 15px;
	line-height: 1.8;
	text-align: center;
}

.thanks .form-area .txt-area .back-link {
	margin: 30px 0 0;
	text-align: center;
}

@media screen and (max-width: 768px){
	
	.thanks .form-area .txt-area {
		padding: 80px 20px;
	}

	.thanks .form-area .txt-area .complete-title {
		font-size: 2.0rem;
		padding: 0 0 20px;
	}

	.thanks .form-area .txt-area .complete-txt {
		margin: 0 0 10px;
		line-height: 1.7;
	}

	.thanks .form-area .txt-area .back-link {
		margin: 15px 0 0;
	}

}



/* -----------------------------------------------------------
    SP
-------------------------------------------------------------- */
@media screen and (max-width:768px){


		
	/* -----------------------------------------------------------
		input
	-------------------------------------------------------------- */
	 input[type="text"],  input[type="tel"],  input[type="password"],
	 input[type="email"],  input[type="number"],
	 select,  textarea {
		padding: 15px;
		
		-webkit-box-sizing: border-box;	
		-moz-box-sizing: border-box;	
		box-sizing: border-box;
		font-size: 1.6rem;
		
		-webkit-appearance: none;
		border-radius: 0;
	}

	 input[type="text"],  input[type="email"],  input[type="number"],  input[type="tel"],  input[type="password"],  select,  textarea {
		width: 100%;
	}

	
	select{
		padding: 15px;
		background: #fff url(../img/icon_arrow_under.png) no-repeat 95% 50%;
		background-size: 18px auto
	}
	td.area select{
		width: 100%;
		padding: 15px;
		background: #fff url(../img/icon_arrow_under.png) no-repeat 95% 50%;
		background-size: 18px auto
	}

	input[type="radio"], input[type="checkbox"] {
	}


	/* -----------------------------------------------------------
		button / submit
	-------------------------------------------------------------- */
	
	 .btn {
	}
					
	 .btn.back_btn {
		top: 0;
	}
	
	 .btn.back_btn a {
		display: inline-block;
		width: auto;
		padding: 10px 5px 10px 20px;
		border: none;
		font-size: 1.6rem;
		text-align: left;
		background: #fff url(../img/icon_arrow03.png) no-repeat 0 50%;
		background-size: 11px 11px;
	}
	
	
	 .form-area input[type="submit"] {
		display: block;
		width: 100%;
		padding: 20px 10px;
		font-size: 1.80rem;
		-webkit-appearance: none;
		
		-webkit-box-sizing: border-box;	
		-moz-box-sizing: border-box;	
		box-sizing: border-box;
		 
		box-shadow: 2px 2px 3px #DDD;
		 
	}
	
	
	#form input[type="submit"],
	#form input[type="button"]{
		min-width: inherit;
		padding: 17px 30px 19px 30px;
		width: 100%;
	}

	input[type="submit"].submit_gray,
	input[type="button"].submit_gray{
		width: 100%;
		font-size: 1.4rem;
		padding: 10px 10px;
	}
	
	.form_btn_area {
		padding: 30px 0 0;
		text-align: left;
	}
	
	
	.form_btn_txt {
		margin: -20px 0 20px;
		line-height: 1.8;
		text-align: center;
	}
	
	
	.submit_org {
	}
	.submit_gray {
		font-size: 1.4rem;
		box-shadow: 2px 2px 3px #DDD;
	}
	.submit_magenta {
	}
	.submit_green {
	}

	.form_btn_area .fl,
	.form_btn_area .fr{
		float: none;
	}
	
	.form_btn_area .fl{
		margin: 30px 0 0 0;
	}
	
	.form_btn_area {
		padding: 0 20px 50px 20px;
	}
	
	.form_btn_area .chk_txt {
		font-size: 1.8rem;
	}
	.form_btn_area .muryo_txt {
		padding: 30px 0 0;
		text-align: center;
	}
	.form_btn_area .muryo_txt span {
		font-size: 1.4rem;
		margin-right: 5px;
		padding: 3px 8px;
	}

	.form_btn_area .security {
		padding: 40px 0 0 0;
	}
	.form_btn_area .security p {
		display: block;
		margin: 0 0 10px 0;
	}
	.form_btn_area .security img {
		width: 20px;
	}
	
	.error_message{
		text-align:left;
		padding:30px 0 20px;
	}

		
	/* -----------------------------------------------------------
		入力画面共通  /  table
	-------------------------------------------------------------- */

	.form-table {
		margin: 20px 0 0;
		width:100%;
		font-size: 1.5rem;
		border-top: 1px none;
		border-bottom: none;
	}
	.form-table:nth-of-type(n+2){
		margin: 0;
	}
	
	.form-table tr {
		border: none;
	}
	
	.form-table th {
		align-items: center;
		display: flex;
		width: auto;
		padding: 10px 20px;
		text-align: left;
		vertical-align: middle;
		font-weight: bold;
		background: #f3f3f3;
		border-bottom: none;
	}
	
    .form-table th.bb-none {
        padding: 10px 20px;
    }
    
	.form-table td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
		padding: 15px 20px 30px 20px;
		text-align: left;
		vertical-align: top;
	}
    
    .form-table td.bb-none {
        padding: 15px 20px 30px 20px;
    }
    
	.form-table td.pc_display{
		display: none;
	}
	
	.form-th-title span{
		color: #efefef;
	}
	.form-th-title {
		padding: 0;
	}
		
	.form-table th .form-th-notes {
		float: none;
		font-size: 1.2rem;
		font-weight: bold;
		display: inline-block;
		margin: 0 0 0 10px;
		max-width: 60px;
		padding: 2px 15px;
		text-align: center;
	}
		
	.form-table input[type="text"],
	.form-table input[type="password"],
	.form-table input[type="tel"],
	.form-table input[type="email"], 
	.form-table input[type="date"],
	.form-table select {
		width: 100%;
	}
	.form-table input[type="number"] {
		width: 100%;
	}

	/*		生年月日		*/
	input[type="text"].birth {
		width: 50%;
	}

	/*		姓名		*/
	input[type="text"].half {
		width: 33%;
		margin: 0 0 0 5px;
	}
	input[type="text"].half.l {
		margin: 0 10px 0 10px;
	}
	
	
	/*		郵便番号		*/
	input[type="text"].input_zip,
	input[type="number"].input_zip{
		width: 50%;
		margin: 0 10px 0 10px;
	}
	
	/*		調査ご希望日時		*/
	#datepicker1, #datepicker2 {
		margin: 5px 10px 5px 0;
		width: 150px;
	}
	.hope-day select{
		width: calc(100% - 170px);
	}

	/*		お問い合わせ		*/
	.radio-list {
	}

	.radio-list li {
		line-height: 1.8;
	}
	
	.radio-list label {
		display: block;
		padding: 5px;
	}
	
	
	/*		注釈		*/
	.form_td_notes {
		display: inline-block;
		margin: 10px 0 0;
		font-size: 1.4rem;
	}
	.form-td-notes02 {
		margin: 10px 0;
		font-size: 1.4rem;
	}
	.form_td_notes03 {
		margin: 10px 0 0;
		font-size: 1.4rem;
	}
	.form_td_notes05 {
		margin: 0 0 10px;
	}

	
	
	/*		見積り合計費用		*/
	.form-table th.total {
		font-size: 1.8rem;
	}
	.form-table td.total {
	}
	.form-table td.total span {
	}
	.form-table td.total span.num {
		font-size: 2rem;
	}
			
		
	
	/* -----------------------------------------------------------
		確認画面共通
	-------------------------------------------------------------- */
	.confirm .form-table {
		margin: 30px auto 0 auto;
	}
	
	.confirm .form_btn_area {
		width: 100%;
	}
	
	/* -----------------------------------------------------------
		完了画面共通
	-------------------------------------------------------------- */
	
	.form-area .complete-title {
		font-size: 2.4rem;
    	font-weight: bold;
    	text-align: left;
    	line-height: 1.6;
    	padding: 60px 0 10px;
	}

	.form-area .complete-txt {
		margin: 30px 0 15px;
    	line-height: 1.8;
    	text-align: left;
	}

	.form-area .back-link {
		margin: 20px 0 50px;
	}
}


.contact-footer .copy{
    font: 1.2rem / 1 'Poppins' , sans-serif;
    font-weight: normal;
    font-weight: 500;
    padding: 0 0 50px;
    text-align: center;
}


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

}