@charset "utf-8";
@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,700';

/*----------------------------------------------------- 
normalize.min.css
 -----------------------------------------------------*/
button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} menu,article,aside,details,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}/*# sourceMappingURL=normalize.min.css.map */



/*-----------------------------------------------------
reset+
-----------------------------------------------------*/
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

img {
	vertical-align: bottom
	}

a {
	vertical-align: baseline;
	background: transparent;
	}


/*-----------------------------------------------------
__ float （サイズwidthは各所で設定）
-----------------------------------------------------*/
.f_right {
	float: right;
	display: inline;
	}
.f_left {
	float: left;
	display: inline;
	}

/*-----------------------------------------------------
［cf］micro clearfix
-----------------------------------------------------*/
.cf:before,
.cf:after {
	content: " ";
	display: table;
	}
.cf:after {
	clear: both;
	}
.cf {
	*zoom: 1;
	}

/*-----------------------------------------------------
回り込みさせない（p class=など） 
-----------------------------------------------------*/
.no-wrap{
	overflow:hidden;
	_zoom:1;
	}


/* ==================================================
page_Layout
================================================== */
/*-----------------------------------------------------
基本設定
-----------------------------------------------------*/
html {
	font-size: 18px;
}
body {
	color: #333;
	background: #f9f9f9;
}
a {
	color: #12a1e1;
	text-decoration: none;
	outline: none;
}
a:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}
strong {
	font-weight: bold;
}


/* wide_set */
.wide_set {
	width: calc(100% - 60px);
	max-width: 900px;
	margin: 0 auto;
}

@media (max-width: 899px) {
	.wide_set {
		width: calc(100% - 40px);
	}
}
@media (max-width: 599px) {
	html {
		font-size: 16px;
	}
	.wide_set {
		width: calc(100% - 30px);
	}
}


/*-----------------------------------------------------
header
-----------------------------------------------------*/
header {
}
header p {
	margin: 0;
	padding: 0;
}
header p a {
	display: block;
	background: #09f;
	background: rgba(0, 153, 255, 1);
	text-align: center;
	color: #fff;
	padding: 0.75em 0;
	font-size: 1.25rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
header p a:before {
	font-family: fontAwesome;
	content: "\f0a9";
	margin-right: 0.25em;
}

/*-----------------------------------------------------
footer
-----------------------------------------------------*/
footer {
	background: #333333;
	background: -webkit-gradient(linear, left top, left bottom, from(#777777), to(#333333));
	background: linear-gradient(to bottom, #777777 0%, #333333 100%);
	color: #fff;
	text-align: center;
}
footer p {
	margin: 0;
}
footer p.copyright {
	font-size: 1rem;
	padding: 3em 0;
	font-family: 'Roboto', sans-serif;
}



/*-----------------------------------------------------
formset_area
-----------------------------------------------------*/
.formset_area {
	margin: 50px 0;
	}

/* タイトル */
.formset_area h1 {
	color: #0099ff;
	font-size: 2rem;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.75em;
	padding-bottom: 0.25em;
	border-bottom: 1px solid #09f;
}
/* 説明 */
.form_using p {
	font-size: 0.9em;
	line-height: 1.5;
	text-align: left;
	margin: 0 0 0.5em;
}
/* エラーの表示 */
p.error_msg {
	border: 2px solid #e00;
	border-radius: 4px;
	color: #e00;
	padding: 0.5em 0.5em;
	text-align: center;
}
p.error_msg:before {
}
/* 必須マーク */
.required {
	background: #e00;
	color: #fff;
	padding: 0.125em 0.5em;
	font-size: 0.75em;
	border-radius: 4px;
	margin-left: 0.1em;
	font-weight: normal;
}

.formset_area p {
	line-height: 1.3;
	}


/* table */
.formset_area table {
	border-collapse: collapse;
	background: #fff;
	width: 100%;
	margin-top: 2em;
	}
.formset_area table th,
.formset_area table td {
	background: #fff;
	font-size: 1rem;
	line-height: 1.3;
	border: solid #ccc;
	border-width: 1px;
	padding: 10px ;
	}
.formset_area table th {
	background: rgba(0, 153, 255, 0.1);
	text-align: right;
	width: 16em;
	}
.formset_area table td {
	}

/* table内 input */
td input {
	background: #f9f9f9;
	font-size: 1rem;
	padding: 0.5em;
	color:#333;
	border: solid 1px #ccc;
	border-radius: 4px;
	}

/* 欄幅 */
td input {
	width: 100%;
}
.zipcode-field input[type="text"],
.telnumber-field input[type="tel"],
.birthday-field input[type="text"] {
	display: inline-block;
	width: auto;
	margin: 0 0px;
}
.zipcode-field input[type="text"],
.telnumber-field input[type="tel"] {
	width: 5em;
}
.birthday-field input[type="text"] {
	width: 4em;
}
	
/* 画像をサムネイルサイズに */
table td img {
	max-width: 100px;
}



/* 性別、オーディション希望会場（radio）radio02 */
.radio02 input {
	display: none;
}
.radio02 input + label {
	position: relative;
	padding-left: 1.5em;
	margin-right: 0.75em;
}
.radio02 input + label:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	border: 1px solid #999;
	border-radius: 50%;
	-webkit-box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
	box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
	background: #fff;
}
.radio02 input:checked + label{
	color: #e00;
}
.radio02 input:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 0.25em;
	left: 0.25em;
	width: 0.7em;
	height: 0.7em;
	background: #e00;
	border-radius: 50%;
}


/* アンケート（checkbox）checkbox02 */
.checkbox02 {
	margin: 0.5em 0 ;
}
.checkbox02 input {
	display: none;
}
.checkbox02 input + label {
	position: relative;
	padding-left: 1.5em;
	margin-right: 0.75em;
}
.checkbox02 input + label:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	border: 1px solid #999;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
	box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
	background: #fff;
}
.checkbox02 input:checked + label {
	color: #e00;
}
.checkbox02 input:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 7px;
	width: 7px;
	height: 14px;
	transform: rotate(45deg);
	border-bottom: 3px solid #e00;
	border-right: 3px solid #e00;
}
span.others {
	display: block;
	margin: 1em 0 0.25em;
	font-size: 90%;
}


/* 確認ボタン（submit） */
.submit_box {
	margin: 2em auto;
	text-align: center;
}

.formset_area   input[type="submit"] {
	display: inline-block;
	width: 7em;
	border:solid 1px #999;
	border-radius: 4px;
	padding:10px 1em;
	font-size:1.5em;
	text-transform:uppercase;
	color:#fff;
	cursor:pointer;
	margin: 0 auto;
	text-shadow: 1px 1px 1px #666;
	background: #333333;
	background: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#999999));
	background: linear-gradient(to bottom, #bbbbbb 0%, #999999 100%);
	}
.formset_area   input[type="submit"]:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	}

/* 確認画面エラー表示 */
.error {
	color: #e00;
	margin: 0.25em 0 0;
	padding: 0;
	font-size: 90%;
}
.error:before {
	font-family: fontAwesome;
	content: "\f071";
	margin-right: 0.25em;
}

/* entry_confirm.phpで、「入力画面に戻る」「送信する」のフォームが2コ並ぶところ */
div.confirm_form_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
div.confirm_form_box form {
	margin: 0 5px;
}
div.confirm_form_box form   input[type="submit"] {
	width: auto;
}
@media only screen and (max-width: 599px) {
	div.confirm_form_box form   input[type="submit"] {
		font-size: 1em;
	}
}



@media only screen and (max-width: 899px) {
	.formset_area {
		margin: 30px 0;
	}
	.formset_area table {
		margin-top: 3em;
		width: 100%;
		background: transparent;
	}
	.formset_area table th,
	.formset_area table td {
		text-align: left;
		width: 100%;
		display: block;
		border: 0;
		background: transparent;
	}
	.formset_area table th {
		border-top: 1px solid #333;
		padding: 0.5em 0 0;
		margin-bottom: 0.5em;
	}
	.formset_area table td {
		margin: 0 0 1.5em;
		padding: 0;
	}
	td input {
		background: #fff;
	}

	/* チェックボックスのリストをブロック要素に */
	.checkbox02 input + label  {
		display: block;
		margin: 5px 0;
	}

	.formset_area .mw_wp_form_confirm table th {
		font-size:0.8em;
		font-weight: normal;
		}
	.formset_area .mw_wp_form_confirm table td {
		font-size:1.2em;
		}
}

/* h1改行処理 */
@media (min-width: 900px) {
	.formset_area h1 .min {
		padding-right: 0.1em;
	}
}
@media (max-width: 767px) {
	.formset_area h1 {
		font-size: 1.75rem;
	}
	.formset_area h1 .min {
		display: block;
	}
}
@media (max-width: 320px) {
	.formset_area h1 {
		font-size: 1.35rem;
	}
}



/*-----------------------------------------------------
プライバシーポリシー
privacy.html
-----------------------------------------------------*/
.privacy_page {
}
.privacy_page p {
	line-height: 1.6;
	margin: 0;
}
.privacy_page h2 {
	background:#eee;
	border-radius: 5px;
	padding: 0.25em;
	margin-top: 2em;
}

ul.policy_list {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.policy_list li {
	line-height: 1.6;
	margin: 0 0.5em 1em;
}
.privacy_page span.num {
	font-size: 120%;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color: #09f;
}


.privacy_page p.company_info {
	background: #fff;
	padding: 1em;
	margin: 1em 0.5em 3em;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.privacy_page p.company_info br.smp {
	display: none;
}
@media only screen and (max-width: 599px) {
	.privacy_page h2 {
		font-size: 1.25em;
	}
	.privacy_page p.company_info br.smp {
		display: block;
	}
}