@charset "utf-8";


/* -----------------------------------------------------------
    form
-------------------------------------------------------------- */
#form {

}

/* -----------------------------------------------------------
    共通
-------------------------------------------------------------- */
/*ヘッダー固定なし*/
.header, .drawer-hamburger, #sp_head .sp_head_contact{
	position: absolute !important;
}

/*フッタはコピーライトのみ*/
.footer{
    padding: 0 0 40px;
}

.f_left_area, .f_sitemap {
	display: none;
}

.f_right_area{
    width: 100%;
    text-align: center;
}

.f_copy.sp_display_b{
    display: block;
    margin: 25px 0 0;
}

.f_btm_area .inner{
    justify-content: center;
}

.contact-footer {
    position: relative;
    height: auto;
    z-index: 10;
    display: block;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 50px;
    top: unset;
    padding: unset;
    background: none;
    margin: unset;
    color: #bebebe;
}

.contact-footer .copy{
    font-size: 1.4rem;
}

@media screen and (max-width: 768px){

	/*フッタはコピーライトのみ*/
    .footer{
        padding: 30px 0;
    }

    .f_copy.sp_display_b{
        margin: 10px 0 0;
    }

    .contact-footer {
        position: relative;
        z-index: 10;
        display: block;
        width: 100%;
        text-align: center;
        left: 0;
        bottom: unset;

        padding: 10px;
        min-height: unset;
    }

    .contact-footer .copy{
        font-size: 1.2rem;
        color: #bebebe;
        position: relative;
        text-align: center;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        width: 100%;
        transform: unset;
    }
}

/* -----------------------------------------------------------
    お問い合わせ
-------------------------------------------------------------- */
#form .form-content {
    width: 100%;
    height: auto;
    /* background: url("../img/contact-bg.jpg") center center / cover; */
    /* background: url("../img/plofile-bg.png") top center / cover; */
    height: auto;
    padding: 40px 0 120px;
    position: relative;
}

#form .form-content .img-box {
    width: 1600px;
    height: 1450px; /* 画像の高さ */
    background-image: url("../img/contact-bg.png");
    background-repeat: repeat-x;
    background-size: auto 1450px; /* 画像の高さ */
    animation: loop 60s linear infinite;
    top: -30px;
    left: 0;
    z-index: -1;
}

@keyframes loop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -2000px 0; /* 画像のマイナス幅 */
    }
}

#form .form_area{
    width: calc((100% - 1100px) / 2);
    max-width: 1100px;
    min-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
    /* border: solid 1px rgb(255, 255, 255, .4); */
    padding: 70px 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    /* background: rgba(242,242,242,.4); */
}

#form .form_area::before {
    content: '';
    display: inline-block;
    background: inherit;
    background: #fff;
    background-color: #42452e;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#form .form-top-txt{
	line-height: 2.5;
	text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 50px;
}

#form .form-top-txt a,
#form .form_btn_txt a{
    text-decoration: underline;
}

@media screen and (max-width: 768px){

    #form .form-content {
        padding: 40px 0 60px;
    }

	#form .form_area{
		padding: 25px 25px 35px;
        width: 100%;
        max-width: unset;
        min-width: unset;
	}

    #form .form_area::before {
        content: '';
        display: inline-block;
        background: inherit;
        background-color: #42452e;
        backdrop-filter: blur(10px);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

	#form .form_area.complete{
		padding: 40px 20px 40px;
	}

	#form .form-top-txt{
		padding: 0 8px;
		font-size: 1.5rem;
		text-align: left;
        margin: 0 0 25px;
	}

	#form .form-top-txt.s{
		padding: 0 20px;
	}

}

/* -----------------------------------------------------------
    form-item
-------------------------------------------------------------- */

#form .form-item {
    width: 100%;
    display: flex;
    /* margin: 15px 0; */
    padding: 30px 0;
    border-top: solid 1px rgba(194, 194, 194, 0.8);
}

#form .form-item.last {
    border-bottom: solid 1px rgb(255, 255, 255, .4);
    margin: 0 0 60px;
}

#form .form-item .headline {
    display: flex;
    /* align-items: center; */
    line-height: 1;
    justify-content: space-between;
    width: 220px;
    margin: 0 30px 0 0;
}

#form .form-item .headline span {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    padding: 5px 5px;
    background: linear-gradient(#eaa23b, #545f0a);
    color: #fff;
    border-radius: 3px;
    margin: 0 0 0 auto;
    height: 24px;
}

#form .form-item label {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    font-size: 1.8rem;
    line-height: 1.2;
}

#form .form-item label input[type="radio"] {
}

#form .form-item textarea {
    width: 100%;
}

#form .privacy {
    display: block;
    width: 80%;
    margin: 30px auto 0;
    font-size: 1.5rem;
    letter-spacing: .15em;
    line-height: 2;
    color: #bebebe;
}

@media screen and (max-width: 768px){  
    #form .form-item {
        width: 100%;
        display: block;
        padding: 20px 0;
        border-top: solid 1px rgba(194, 194, 194, 0.7);
    }
    
    #form .form-item.last {
        margin: 0 0 10px;
    }
    
    #form .form-item .headline {
        display: inline-block;
        width: 100%;
        margin: 0 0 20px;
        font-size: 1.5rem;
    }
    
    #form .confirm .form-item .headline {
        color: #bdbb48;
        margin: 0 0 10px;
    }
    
    #form .form-item .headline span {
        font-size: 1.2rem;
        padding: 2px 4px;
        border-radius: 2px;
        margin: 0 0 0 8px;
        height: 20px;
    }
    
    #form .form-item label {
        margin: 0 0 8px;
        font-size: 1.8rem;
        line-height: 1.6;
    }
    
    #form .form-item textarea {
        width: 100%;
    }
    
    #form .privacy {
        width: 95%;
        margin: 30px auto 0;
        font-size: 1.5rem;
        line-height: 1.8;
        text-align: left;
    }
}

/* -----------------------------------------------------------
    input
-------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
input[type="url"],
select,
textarea {
	border: 1px solid #ccc;
	padding: 15px;
	font-size: 1.5rem;
    font-family: 'Noto Serif JP',"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #333;
	letter-spacing: 0.05em;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    width: 300px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"],
select:focus,
textarea:focus {
	border: 1px solid #0099dd !important; 
}

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: 300px;
	margin: 0;
	background: #fff url(../img/icon_arrow_under.png) no-repeat 95% 50%;
	background-size: 20px auto;
}

td.area select{
	width: 40%;
	padding: 15px;
	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: auto;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align:-1px;
	margin: 0 8px 0 0;
	font-family: 'Noto Serif JP',"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "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: 'Noto Serif JP',"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;sans-serif;
	letter-spacing: 0.05em;
	margin: 0 auto;
    transition: 0.5s;
	border: none;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	color: #FFF;
	font-size: 1.8rem;
	font-weight: bold;
	width: 400px;
	padding: 20px 0;
    border-radius: 35px;
	text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

#form input[type="submit"],
#form input[type="button"]{
	min-width: 300px;
}

.submit-btn {
    color: #fff !important;
    background: linear-gradient(#eaa23b, #545f0a);
}

input[type="submit"][disabled] {
    background: #e4e4e4;
}

input[type="submit"].submit_gray,
input[type="button"].submit_gray{
	color: #333 !important;
	width: 400px;
	background: #eee;
	padding: 18px 10px 22px 10px;
	text-align: center;
}

input[type="submit"]:hover,
input[type="button"]:hover{
	cursor: pointer;
	opacity: 0.8;
}

/*		送信ボタン		*/
.form_btn_area {
	padding: 0;
	text-align: center;
}
.form_btn_area .fl {
	float: left;
}
.form_btn_area .fr {
	float: right;
}

.submit-gray {
    color: #fff !important;
	background:  linear-gradient(90deg, rgba(125,125,125,1) 0%, rgba(175,171,171,1) 70%, rgba(125,125,125,1) 100%); 
}

.form_btn_txt {
	margin: 0 0 40px;
	line-height: 1.8;
}

.error_message{
	text-align:center;
	padding:130px 0 40px;
	line-height:1.8;
}


/* -----------------------------------------------------------
    入力画面共通  /  table
-------------------------------------------------------------- */
table {
    width: 100%;
    margin: 0 0 50px;
}

td.privacy-check {
	text-align: center;
    margin: 0 0 50px;
}

table td.privacy-check a {
	color: #bdbb48;
	/* border-bottom: solid 1px #505f83; */
	letter-spacing: 0.03em;
    opacity: 1;
    transition: all .4s ease;
    letter-spacing: .1em;
}

table td.privacy-check a:hover {
	opacity: .5;
}


.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 input[type="url"]{
	width: 70%;
	line-height: normal;
}
.form_table input[type="number"] {
	width: 30%;
}

/*		お問い合わせ項目		*/
input[type="text"].category_other {
    margin: 0 0 0 15px;
}

/*		住所		*/
input[type="number"].input_zip {
    width: 30%;
    margin: 0 0 0 10px;
}


/*		お問い合わせ		*/
.radio_list {
}

.radio_list li {
	line-height: 2.4;
}


/*		注釈		*/
.form_td_notes {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 1.4rem;
}
.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;
}


@media screen and (max-width: 768px){ 
    table {
        margin: 0 0 30px;
    }

    td.privacy-check {
        font-size: 1.5rem;
        letter-spacing: .15em;
        line-height: 1.8;
        text-align: center;
        font-feature-settings: "palt";
    }
}

/* -----------------------------------------------------------
    確認画面共通
-------------------------------------------------------------- */

.form_table.confirm {
}

.form_table.confirm th {
	width: 30%;
}

/*		写真添付		*/
.form_table .form_photo {
	margin: 10px 0 0;
}
.form_table .form_photo img {
	width: 300px;
}



/* -----------------------------------------------------------
    完了画面共通
-------------------------------------------------------------- */

.form_area .complete_title {
    font-weight: bold;
	font-size: 2.4rem;
	text-align: center;
	line-height: 1.6;
    letter-spacing: .1em;
}

.form_area .complete_txt {
	margin: 25px 0 15px;
	line-height: 2;
	text-align: center;
}

.form_area .back_link {
	margin: 50px 0 30px;
	text-align: center;
}

.form_area .back_link a {
	margin: 40px 0 30px;
	text-align: center;
    color: #e7e688;
}






/* -----------------------------------------------------------
    SP
-------------------------------------------------------------- */
@media screen and (max-width:768px){



	/* -----------------------------------------------------------
		input
	-------------------------------------------------------------- */
	 input[type="text"],  input[type="tel"],  input[type="password"],
	 input[type="email"],  input[type="number"], input[type="url"],
	 select,  textarea {
		padding: 15px;

		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"], input[type="url"], 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;
		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: left;
	}

	.submit_gray {
		font-size: 1.4rem;
		box-shadow: 2px 2px 3px #DDD;
	}

	.form_btn_area .fl,
	.form_btn_area .fr{
		float: none;
	}

	.form_btn_area .fl{
		margin: 30px 0 0 0;
	}

	.form_btn_area {
		padding: 20px 20px 0;
	}

	.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 {
		display: block;
		width: auto;
		padding: 10px 20px;
		text-align: left;
		vertical-align: middle;
		font-weight: bold;
		background: #f0f0f0;
		border-bottom: none;
	}

	.form_table td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
		padding: 15px 20px 25px 20px;
		text-align: left;
		vertical-align: top;
	}
	.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;
		margin: -5px 0 0 10px;
		padding: 2px 10px;
		font-size: 1.2rem;
	}

	.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 input[type="url"],
	.form_table select {
		width: 100%;
	}
	.form_table input[type="number"] {
		width: 100%;
	}

    /*		お問い合わせ項目		*/
    input[type="text"].category_other {
        margin: 5px 0 0;
    }

    /*		住所		*/
    input[type="number"].input_zip {
        width: 50%;
        margin: 0 10px;
    }

	/*		お問い合わせ		*/
	.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;
	}



	/* -----------------------------------------------------------
		完了画面共通
	-------------------------------------------------------------- */

	.form_area .complete_title {
		font-size: 2rem;
		padding: 10px 0 0;
	}

	.form_area .complete_txt {
		margin: 15px 0 20px;
		text-align: left;
        font-size: 1.5rem;
        letter-spacing: .05em;
	}

	.form_area .back-link {
		margin: 0;
	}
}
