@charset "UTF-8";

/*======================================================
 *  お問い合わせ（contact）
======================================================*/

#form_area {
	color: #3c3c3c;
}



/*******上テキスト*******/
#form_area .txt_hissu span {
	background-color: #a92224;
	color: #fff;
	display: -webkit-inline-box;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: 0.9em;
	width: 3em;
	height: 1.6em;
	margin-right: 0.5em;
}




/*******フォームテーブル*******/
#form_area table {
	width:100%;
	font-size: 18px;
	line-height: 1.75;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
#form_area table th {
	border-top: 1px solid;
	color: var(--main);
	letter-spacing: 0.06em;
	padding: 30px 30px 30px 0;
	width: 240px;
	text-align:left;
	position: relative;
	background-clip: padding-box;
}
#form_area table tbody:last-of-type tr:last-of-type th {
	border-bottom: 1px solid;
}

#form_area table th span {
	display: block;
	position: relative;
}

#form_area table th span::after {
	position: absolute;
	content: '必須';
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background-color: #a92224;
	color: #fff;
	display: block;
	font-size: 77.8%;
	letter-spacing: 0;
	width: 3em;
	padding: 0.4em 0;
	line-height: 1;
	text-align: center;
}

#form_area table td {
	border-top: 1px solid #c8c8c8;
	padding: 30px;
}
#form_area table tbody:last-of-type tr:last-of-type td {
	border-bottom: 1px solid #c8c8c8;
}


/*td内パーツ*/
body:not(.confirm) #form_area table #add div {
	margin-bottom: 15px;
}
body.confirm #form_area table #add span {
	display: inline-block;
	width: 4.6em;
}

#form_area table #name span {
	width: 2.1em;
	display: inline-block;
    text-align: right;
    margin-right: 10px;
}
#form_area table p:not(.sp) {
	display: inline-block;
	font-size: 16px;
	margin-left: 0.5em;
}
#form_area table ul {
	font-size: 16px;
	margin-top: 1em;
}


/*フォームパーツ*/
#form_area table select,
#form_area table input[type=text],
#form_area table input[type=tel],
#form_area table input[type=email],
#form_area table input[type=number],
#form_area table input[type=url] {
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
}
#form_area table select {
	padding: 0 2em 0 0.5em;
	border-radius: 3px;
	border: 1px solid #c8c8c8;
	-webkit-appearance: none;
	appearance: none;
	background: #fffff0 url(../images/select_icon.svg) center right 0.6em no-repeat;
	height: 46px;
	line-height: normal;
}
#form_area table input[type=text],
#form_area table input[type=tel],
#form_area table input[type=email],
#form_area table input[type=number],
#form_area table input[type=url] ,
#form_area table input[type=date] {
	padding: 0 0.5em;
	background-color: #fffff0;
	border: 1px solid #c8c8c8;
	border-radius: 3px;
	-webkit-appearance: none;
	appearance: none;
	line-height: normal;
	height: 46px;
	width: 290px;
}
#form_area table input[type=date] {
	color: #999;
}

input:placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
	color: #999;
}
input:-ms-input-placeholder {
	color: #999;
}

#form_area table #name input {
	display: block;
}
#form_area table #name input + input{
	margin-top: 20px;
}
#form_area table #add input {
	width: 480px;
}
#form_area table #add .input_postal {
	width: 180px;
	margin: 0 10px;
}
#form_area table #add select {
	width: 240px;
}

#form_area table #mail input,
#form_area table .company input  {
	width: 390px;
}

#form_area table textarea {
	background-color: #fffff0;
	border: 1px solid #c8c8c8;
	border-radius: 3px;
	width: 100%;
	height: 140px;
	padding: 0.3em 0.5em;
	vertical-align:bottom;
	-webkit-appearance: none;
	appearance: none;
}



/*チェックボックス＋ラジオボタン*/
#form_area table .radio_list label,
#form_area table .check_list label {
	position: relative;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	line-height: 1.56;
}
#form_area table .radio_list label + label,
#form_area table .check_list label + label {
	margin-top: 1em;
}
#form_area table .radio_list label input:not([type=text]),
#form_area table .check_list label input:not([type=text]) {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#form_area table .radio_list label > span,
#form_area table .check_list label > span {
	position: relative;
	padding-left: 2.23em;
	display: block;
}
#form_area table .radio_list label > span::before,
#form_area table .radio_list label > span::after,
#form_area table .check_list label > span::before,
#form_area table .check_list label > span::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	display: block;
}
#form_area table .radio_list label > span::before,
#form_area table .radio_list label > span::after {
	border-radius: 50%;
	width: 1.56em;
	height: 1.56em;
}
#form_area table .radio_list label > span::before,
#form_area table .check_list label > span::before {
	border: 1px solid #c8c8c8;
	z-index: 1;
}
#form_area table .check_list label > span::before {
	width: 1.56em;
	height: 1.56em;
}
#form_area table .radio_list label input:checked + span::after {
	background-color: var(--main);
	border: 0.39em solid #fff;
	z-index: 0;
}
#form_area table .check_list label input:checked + span::after {
	top: 0.39em;
	left: 0.3em;
    width: 0.95em;
	height: 0.56em;
    border-bottom: 2px solid var(--main);
	border-left: 2px solid var(--main);
	z-index: 2;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}


/*******プライバシーポリシー*******/
#form_area table .td_privacy p {
	display: block;
	font-size: inherit;
	margin-right: 0!important;
	margin-left: 0!important;
}


.privacy_area {
	padding: 100px 120px 120px;
}

.privacy_area .privacy_list dt {
	font-size: 28px;
	line-height: 1.5;
	margin-top: 60px;
}
.privacy_area .privacy_list dt span {
	flex-shrink: 0;
	width: 44px;
}
.privacy_area .privacy_list dd {
	padding: 0.5em 0 0 44px;
}


.privacy_area .btn_close {
	border: 1px solid #c8c8c8;
	border-radius: 100vh;
	color: #222;
	cursor: pointer;
	font-size: 22px;
	font-weight: bold;
	height: 100px;
	width: 400px;
	margin: 70px auto 0;
}
.privacy_area .btn_close:hover {
	background-color: #c8c8c8;
}





/*******reCAPTCHA*******/
@media screen and (min-width:501px) {
	.grecaptcha-badge {
		bottom: 250px!important;
	}
}


/*******お問い合わせ系ボタン*******/
#form_area .button {
	text-align:center;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 70px auto;
	width: 400px;
}
#form_area .button:last-of-type {
	margin-bottom: 0;
}
.confirm #form_area .button {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
}


#form_area .button input[type=submit],
#form_area .button a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	border-radius: 100vh;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.06em;
	width: 100%;
	height: 100px;
	cursor: pointer;
	padding: 0;
	-webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
#form_area .button input[type=submit] {
	background-color: var(--main);
	border: none;
	color: #fff;
}
#form_area .button a {
	border: 1px solid #c8c8c8;
}
#form_area .button a:hover {
	background-color: var(--main);
	border-color: var(--main);
	color: #fff;
}
#form_area .button input[type=submit]:hover {
	opacity: 0.7;
}
#form_area .button input[type=submit]:disabled {
	opacity: 0.7;
	pointer-events: none;
}
#form_area .button input.gray {
	border: none;
	border-bottom: 1px solid;
	background-color: transparent;
	cursor: pointer;
	color: #636363;
	display: inline-block;
	font-size: 18px;
	padding: 0 0 0.5em;
	margin-top: 60px;
	-webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
#form_area .button input.gray:hover {
	color: var(--main);
}












/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {




/*******フォームテーブル*******/
#form_area table {
	font-size: 4.3vw;
}
@media screen and (max-width:320px) {
	#form_area table {
		font-size: 5vw;
	}	
}


#form_area table th,
#form_area table td {
	display: list-item;
	list-style-type:none;
}

#form_area table th {
	border-bottom: 1px solid;
	padding: 4vw 0;
	width: 100%;
}
#form_area table td {
	border: none!important;
	padding: 6vw 0 10vw;
}
#form_area table tbody:last-of-type tr:last-of-type td {
	padding-bottom: 0;
}



/*td内パーツ*/
body:not(.confirm) #form_area table #add div {
	margin-bottom: 3vw;
}

#form_area table p,
#form_area table ul {
	font-size: 4vw!important;
}
#form_area table p:not(.sp) {
	margin-right: -1em;
}
html:lang(en) #form_area table p:not(.sp) {
	margin: 0.5em 0 0;
	display: block;
	text-align: right;
}
#form_area table p.pc {
	display: none;
}



/*フォームパーツ*/
#form_area table input[type=text],
#form_area table input[type=tel],
#form_area table input[type=email],
#form_area table input[type=number],
#form_area table input[type=url],
#form_area table input[type=date] {
	height: 13vw;
	width: 100%;
}

#form_area table select{
    background-size: 3vw!important;
	height: 13vw;
}

#form_area table #name input,
#form_area table .commpany input {
	width: 100%;
}
#form_area table #name input + input {
	margin-top: 3vw;
}
#form_area table #add input {
	width: 100%;
}
#form_area table #add .input_postal {
	width: 46vw;
	margin: 0 1.5vw;
}
#form_area table #add select {
	width: 35vw;
}

#form_area table #mail input,
#form_area table #number input{
	width: 100%;
}
#form_area table #mail p,
#form_area table #number p {
	display: block;
	margin: 0.9em 0 0 -0.5em!important;
	width: 100%;
}

#form_area table textarea {
	height: 40vw;
}



/*チェックボックス＋ラジオボタン*/
#form_area table .radio_list label + label,
#form_area table .check_list label + label {
	margin-top: 0.5em;
}



/*******プライバシーポリシー*******/
#form_area table .td_privacy .check_list label {
	font-size: 4vw;
}



.privacy_area {
	padding: 12vw 5vw;
}
.privacy_area > p,
.privacy_area .privacy_list {
	line-height: 1.75;
}

.privacy_area .privacy_list dt {
	font-size: 4.4vw;
	margin-top: 8vw;
}
.privacy_area .privacy_list dt span {
	width: 6.8vw;
}
.privacy_area .privacy_list dd {
	padding: 0.5em 0 0 6.8vw;
}


.privacy_area .btn_close {
	font-size: 4.8vw;
	height: 15vw;
	width: 70vw;
	margin: 8vw auto 0;
}



/*******お問い合わせ系ボタン*******/
#form_area .button {
	width: 70vw!important;
	font-size: 5vw;
	margin: 12vw auto;
}
#form_area .button input[type=submit],
#form_area .button a {
	font-size: 5vw;
	width: 100%;
	height: 16vw;
}
#form_area .button input.gray {
	font-size: 4.2vw;
	margin-top: 8vw;
}

	
}