@charset "UTF-8";

.grecaptcha-badge { visibility: hidden; }

.formItem.recaptcha
{
	padding: max(5rem, 5vw) 0 2rem 0;
	font-size: .8em;
	color: rgb(100, 100, 100);
	border-bottom-width: 0;
	font-family: GG-R, sans-serif;
}

.sentMessage > p
{
	font-family: GG-R, sans-serif;
	font-weight: 400;
	margin-bottom: 1rem;
}

/************************************************/
/*******************フォーム********************/
/***********************************************/

input:not([type=checkbox]):not([type=radio]), textarea, option
{
	font-family: GG-R, sans-serif;
	font-weight: 400;
	box-sizing:border-box;
	padding: .5em;
	font-size: 1rem;
	border:1px solid rgb(230,230,230);
	-moz-border-radius: 0em;
	-webkit-border-radius: 0em;
	border-radius: 0em;
	-webkit-appearance: none;
}

input[type=checkbox], input[type=radio]
{
	margin-right: .5em;
}

label + label
{
	margin-left: 1em;
}

input[type=checkbox]{margin-top:.1em;}
input[type="text"]:focus{outline: 0; background-color: rgb(250, 250, 250)}
textarea:focus{outline: 0; background-color: rgb(250, 250, 250)}
textarea{width: 100%;}

.formWrapper
{
	margin-top: 3em;
	border-top: 1px solid rgb(200, 200, 200);
}

.formItem
{
	-webkit-align-items: center;
	align-items: center;
	
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	
	border-bottom: 1px solid rgb(200, 200, 200);
}

input, textarea, option, select
{
	box-sizing:border-box;
	padding: .5em;
	font-size: 1rem;
	border:1px solid rgb(230,230,230);
}
input[type="text"]:focus{outline: 0; background-color: rgb(250, 250, 250)}
textarea:focus{outline: 0; background-color: rgb(250, 250, 250)}
textarea{width: 100%;}

.contatct_wrappre .contents
{
	padding: 2em;
/*	border-left: 1px solid rgb(200, 200, 200);
	margin-left: -1px;*/
	width: calc(100% - 15rem);
}

.q-title
{
	box-sizing:border-box;
	display:block;
	width: 15em;
	padding: 2em 0;
	padding-right: 1em;
}
/*label.q-title{border-right: 1px solid rgb(200, 200, 200);}*/

.contatct_wrappre .q-title._s
{
	padding: 0;
	border-right-width: 0px;
}
.contatct_wrappre._d div{margin-top: 1em;}

.q-short{width:100%; max-width: 20rem;}
.q-large{width: 100%;}
.q-textArea{height:10em; padding: .5em;}
.form{display:block;}
span.req{color: rgb(226, 0, 43);}
.noReq{display: none;}
.q-title .smallerText{letter-spacing:0;}
.q-smaller{font-size:.9em; margin-left:15px;}
.q-caution
{
	color:rgb(100, 100, 100);
	margin-top: 1em;
	font-size:.9em;
}

.q-radio{display:inline; margin-right:5px;}

.statement
{
	position: relative;
	box-sizing:border-box;
	margin:1em 0;
	border:1px solid rgb(150,150,150);
	height:8em;
	overflow: auto;
	width: 100%;
}
.statement div{padding: 1em;}
.statement div .strongText
{
	margin-top: 1em;
}

#privacyArea{margin-right: 1em;}
#privacyArea + span
{
	display: inline-block;
	color: rgb(0, 0, 0);
}

#sendDate
{
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
}


.submitBtWrapper
{
	margin-top: 3em;
}



.submitBt
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5em 2em;
	background-color:rgb(230, 230, 230);
	color: rgb(255, 255, 255);
	border-radius: 1.5em;
	
	font-size: 1rem;
	font-family: R-B, GG-B, sans-serif;
	
	letter-spacing: .25em;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.submitBt._clear
{
	cursor: pointer;
	background-color:rgb(75, 75, 75);
	color: rgb(255, 255, 255);
}

.submitBt > span:nth-of-type(1)
{
	display: flex;
}

.submitBt > span:nth-of-type(2)
{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 1.3em;
	height: .8em;
	padding: 0;
	margin-left: .5em;
	background-color: rgb(255, 255, 255);
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.submitBt > span:nth-of-type(2):after
{
content: "";
	display: block;
	width: .75em;
	height: .75em;
	border-style: solid;
	border-color: rgb(230, 230, 230);
	border-width: 1px 1px 0 0;
	transform: rotate(135deg) translateY(.275em) translateX(-.275em);
}

.submitBt._clear > span:nth-of-type(2):after
{
	border-color: rgb(75, 75, 75);
}

body:not(.touch) .submitBt._clear:hover > span:nth-of-type(2)
{
	transform: translateX(.25em);
}

.flex .selectorWrapper
{
	margin: .5em .5em .5em 0em;
}

.selectorWrapper label
{
	position: relative;		/* 選択ボックスの位置指定 */ 
	display: inline-block;			/* ブロックレベル要素化にする */ 
	box-sizing:border-box;
	width: auto;
	padding: .5em;
	padding-right: 2em;
	border: 1px solid rgb(230,230,230);/* ボックスの境界線を実線で指定する */
}
.selectorWrapper label:before
{
	content: "";
	position: absolute;
	width: .4em;
	height: .4em;
	
	top: 50%;
	right: 1em;
	display: block;
	margin-top: -.3em;
	
	border-color: rgb(0, 0, 0);
	border-style: solid;
	border-width: 0 1px 1px 0;
	
	transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
}
.selectorWrapper select
{
/*	font-family: NotoSerif-M, serif;
	font-weight: 500;*/
	cursor: pointer;
	font-size: 1rem;
	padding: .2em .5em;
	box-sizing:border-box;
	-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
	-moz-appearance: none;	/* ベンダープレフィックス(Firefox用) */
	appearance: none;		/* 標準のスタイルを無効にする */ 
	display: block;			/* ブロックレベル要素化する */ 
	border: none;			/* 境界線をなしに指定する */
	background: transparent;/* 背景を透過指定する */
}
.selectorWrapper select:focus
{
	outline: none;
}

/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 650px)
{
	.contatct_wrappre{flex: 1;}
}


@media screen and (max-width: 650px)
{
	.telfax > p > span
	{
		display: block;
	}

	.formItem
	{
		width: 100%;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		border-bottom-width: 0;
	}
	
	.q-short{width:100%}
	
	.q-title
	{
		width: 100%;
		padding: 2em 0em;
		padding-right: 0em;
	}
	label.q-title
	{
		border-right-width: 0;
	}
	.contatct_wrappre .contents
	{
		padding: 0 0em;
		padding-bottom: 2em;
		width: 100%;
		border-left-width: 0;
		border-bottom: 1px solid rgb(200, 200, 200);
	}
	.statement{width: 100%;}
}