@charset "UTF-8";


/************************************************/
/********************* Form *********************/
/***********************************************/

.formWrapper
{
	max-width: 1200px;
	margin-top: 2em;
}

.formItem
{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	
	-webkit-align-items: flex-start;
	align-items: flex-start;
	
	-webkit-justify-content: flex-start;
	justify-content: flex-start;

	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;

	padding: 1em 0;
}

input:not([type=checkbox]), textarea, option
{
	box-sizing:border-box;
	padding: .5em;
	font-size: 1em;
	border:1px solid rgb(230,230,230);
	-moz-border-radius: 0em;
	-webkit-border-radius: 0em;
	border-radius: 0em;
	-webkit-appearance: none;
}
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%;}

#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
{
	cursor: pointer;
	font-size: 1rem;
	padding: .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;
}

::-ms-expand
{		/* select要素のデザインを無効にする（IE用） */
	display: none;
}
#formContainer .contents
{
	box-sizing:border-box;
	padding: 2em;
	border-left: 0px solid rgb(200, 200, 200);
	margin-left: -1px;
}

.q-title
{
	font-family: NotoSerif-SB, serif;
	font-weight: 600;
	box-sizing:border-box;
	display:block;
	letter-spacing: .1em;
}
label.q-title{border-right: 0px solid rgb(200, 200, 200);}

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

.q-large{width: 100%;}
.q-textArea{height:7em;}
.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
{
	font-size:.8em;
}

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

#formContainer .formItem .statement
{
	position: relative;
	box-sizing:border-box;
	border:1px solid rgb(230,230,230);
	height: 100px;
	overflow: auto;
	width: 100%;
}
#formContainer .formItem .statement div{padding: 1em; font-size: 1em;}
#formContainer .formItem .statement div .strongText{margin-top: 1em;}

.privacy
{
	margin-top: 2em;
	
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	
	-webkit-align-items: flex-start;
	align-items: flex-start;
	
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.privacy div
{
	margin-left: 1em;
}
.privacy div p{line-height: 1;}

.privacy div p + p{margin-top: 1em;}

#sendDate
{
	font-weight: bold; margin-top: 2em; text-align: center; border: 1px solid; padding: .5em;
	color: black;
	-moz-border-radius: 0em;
	-webkit-border-radius: 0em;
	border-radius: 0em;
}


.submitBtWrapper{margin-top: 3em;}

.submitBt
{
	font-family: Roboto-R, sans-serif;
	font-weight: 400;

	cursor: pointer;
	box-sizing:border-box;
	font-size: .9em;
	display:inline-block;
	margin-top: 2em;
	padding: .5em 4em;
	
	color: rgb(255, 255, 255);
	background-color: rgba(0, 0, 0, 1);
	border: 1px solid rgb(0, 0, 0);
	
	-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:hover
{
	background-color: rgb(199, 174, 0);
	border-color: rgb(199, 174, 0);
	color: rgb(255, 255, 255);
}

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


.q-short{width:100%; max-width: 20em;}

label.q-title
{
	border-right-width: 0;
}
#formContainer .contents
{
	padding: 0 0em;
	padding-bottom: 1em;
	width: 100%;
	border-left-width: 0;
}
#formContainer .statement{width: 100%;}