@charset "utf-8";
/* CSS Document */


/* -----------------------------------------------
 *  	         form style setting
 * ----------------------------------------------- */




/* =========== form elements =========== */



/* ----- reset -----*/
input,
select,
textarea,
button,
label {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}



/* ----- input -----*/

input{
    border-radius: 30px;
}

/** text **/
input.input-text,
input.input-mail,
input.input-tel {
	border: 1px solid #999999;
	background: #FFFFFF;
	padding: 1.3em;
	margin: 0;
}


/** radio **/
input.input-radio {
	margin: 5px 0;
}


/** checkbox **/
input[type=checkbox] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
	margin-bottom:10px;
	padding-right:5px;
}
input[type=radio] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}



/* ----- select -----*/
select {
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background-size: 20px, 100%;
	border-radius: 30px;
	margin: 5px 0;
}



/* ----- textarea -----*/
textarea {
	border: 1px solid #999999;
	background: #FFFFFF;
}



/* ----- label -----*/


/**tit**/

/*001*/
form .tit_001 {
	display: block;
	margin: 0 0 0 0;
	font-size:0.9em;
}

/*002*/
form .tit_002 {
	display: block;
}


/**txt**/

/*001*/
form .txt_001 {
	margin: 0;
}
form .error .txt_001 {
	color: #FF4D4D;
}

/*002*/
form .txt_002 {
	display: block;
	margin: 0.5em 0;
	color: #FF4D4D;
}

/*003*/
form .txt_003 {
	display: block;
	margin: 0.5em 0;
}



/* ----- width -----*/


/**10**/
form .width10 {
	width: 80%;
}

/**30**/
form .width30 {
	width: 80%;
}


/**80%**/
form .width80 {
	width: 98%;
}


/* ==== width 768px以上の場合 ==== */
@media screen and (min-width : 768px){
/**10**/
form .width10 {
	width: 10em;
}

/**30**/
form .width30 {
	width: 30em;
}


/**80%**/
form .width80 {
	width: 80%;
}
}



/* ----- focus -----*/
form .focus {
	border: 1px solid #333333;
	/* for IE */
	border: 1px solid #333333 !important;
}



/* ----- clear -----*/
form .clear {
	color: #666666;
	background: #EEEEEE;
	/* for IE */
	background: #EEEEEE !important;
}



/* ----- error -----*/
form .error dt label {
	color: #FF4D4D;
}

form .error input,
form .error select {
	border: 1px solid #FF4D4D;
	color: #FF4D4D;
}




/* =========== form-box =========== */
.form-box {
	width: 100%;
	margin: 0 auto;
	border-top: 1px solid #CCCCCC;
}




/* =========== col =========== */
form .col {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #CCCCCC;
	/*background-color:rgba(250,250,250,0.5);*/
	list-style: none;
	*zoom: 1;     /* clear float, ~WinIE7 */
	_height: 1px; /* clear float, ~WinIE6 */
}

form .col:after {
	clear: both;
	display: block;
	content: "";
	height: 0;
	visibility: hidden;
}

form .col dt {

/*	width: 240px;*/
	width: 95%;
	margin: 0;
	padding: 19px 0 0 4%;

}
/*form .col dt.plusIcon:after {
	content:  url(../img/required-ico.png);
}*/

form .col dd {

/*	width: 560px;*/
	width: 95%;
	margin: 0;
	padding: 19px 0 28px 1%;
	background-color:rgba(255,255,255,0);
	min-height: 1.2em;
}

form .col dt.plusIcon:after {
	content: "必須";
	width: 150px;
	height: 20px;
	background-color: #570000;
	padding: 1px 10px;
	color: #FFF;
	border-radius: 5px;
}


/* ==== width 769px以上の場合 ==== */
@media screen and (min-width : 769px){
	form .col {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #CCCCCC;
	/*background-color:rgba(250,250,250,0.5);*/
	list-style: none;
	*zoom: 1;     /* clear float, ~WinIE7 */
	_height: 1px; /* clear float, ~WinIE6 */
	}
	
	form .col dt {
	float: left;
/*	width: 240px;*/
	width: 20%;
	margin: 0;
	padding: 19px 0 19px 4%;
	}


	form .col dd {
	float: left;
/*	width: 560px;*/
	width: 70%;
	margin: 0;
	padding: 19px 0 28px 1%;
	background-color:rgba(255,255,255,0);
	min-height: 1.3em;
	}
}


/* =========== form-btn =========== */
ul.form-btn {
	list-style: none;
	width: 300px;
	height:80px;
	margin: 25px auto 80px;
	padding: 0;
	text-align: center;
	*zoom: 1;     /* clear float, ~WinIE7 */
	_height: 1px; /* clear float, ~WinIE6 */
	border-radius: 5px;
}

body.confirm ul.form-btn {
	width: 320px;
	margin: 25px auto 0 auto;
}

ul.form-btn:after {
	clear: both;
	display: block;
	content: "";
	height: 0;
	visibility: hidden;
}

ul.form-btn li {
	width: 300px;
	height: 60px;
	float: left;
	margin: 0 auto 10px auto;
}

ul.form-btn li input {
	line-height: 0;
	font-size: 0;
}

.input-image {
	margin-top: 10px;
	/*margin-right: 10px;*/
	margin-bottom: 30px;
	/*margin-left: 10px;*/
}


/* =========== form-address-box =========== */
.form-address-box {
	width: 90%;
	margin: 40px auto 0;
	padding: 18px 0 19px;
	background: #B4DCE0;
	*zoom: 1;     /* clear float, ~WinIE7 */
	_height: 1px; /* clear float, ~WinIE6 */
}

.form-address-box:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: "";
}

.form-address-box address,
.form-address-box em {
	font-style: normal;
}

.form-address-box h2.title {
	float: left;
	width: 328px;
	margin: 30px 0 0;
	padding: 0;
	text-align: center;
}

.form-address-box div.content {
	float: left;
/*	width: 471px;*/
	width: 439px;
	padding: 0 0 0 32px;
	border-left: 1px solid #FFFFFF;
	font-size: 14px;
	color: #666666;
}

.form-address-box div.content p {
	margin: 0;
	padding: 0;
}

.form-address-box div.content p em {
	font-size: 18px;
}



/* =========== ▼フォーム内フェア日程表示 =========== */
.boderbox_01{
	border: solid 1px #570000;
	outline: solid 1px #570000;
	outline-offset: 3px;
	margin: 60px auto;
	width: 900px;
	text-align: center;
	padding: 20px 0;
}
@media only screen and (max-width: 800px) {
	.boderbox_01{
	outline-offset: 3px;
	margin: 50px 10px;
	width: 400px;
	padding: 20px 0;
}
}
@media only screen and (max-width: 48em) {
	.boderbox_01{
	outline-offset: 3px;
	margin: 50px auto;
	width: 94%;
	padding: 20px 0;
}
}
p.text_02{
	font-weight: bold;
	font-size: 18px;
	margin: 10px auto 2px;
}
@media only screen and (max-width: 48em) {
p.text_02{
	font-size: 16px;
}
}
p.text_03{
	font-weight: bold;
	font-size: 20px;
	/*color: #570000;*/
	letter-spacing:1.5px;
	border-bottom: 1px solid #570000;
	width: 490px;
	margin: 0 auto;
}
@media only screen and (max-width: 48em) {
	p.text_03{
		font-weight: bold;
		font-size: 18px;
	}
}
@media only screen and (max-width: 48em) {
	p.text_03{
	width: 285px;
}
}
p.text_04{
	font-weight: bold;
	font-size: 18px;
}
p.text_04 span{
	font-size: 23px;
}
p.text_04mt{
	font-weight: bold;
	font-size: 18px;
	margin-top: 10px;
}
p.text_04mt span{
	font-weight: bold;
	font-size: 23px;
}
/* =========== ▲フォーム内フェア日程表示 =========== */


/*=============== parts <br> ===============*/
/*本文 PCスマホbr有り*/
.pcmb_show {
	display: block !important;
}
/*本文 PC時のみbr有り*/
.pc_show {
	display: block !important;
}
/*本文 スマホ時のみbr有り*/
.mb_show {
	display: none;
}
@media only screen and (max-width: 48em) {
/*本文 PC時のみbr有り*/
.pc_show {
	display: none !important;
}
/*本文 スマホ時のみbr有り*/
.mb_show {
	display: block !important;
}
}
@media only screen and (max-width: 48em) {
	.center{
		text-align: center !important;
	}
}

/* =========== completion-txt =========== */
.completion-txt {
	margin: 0 0 20px;
	color: #6d6b6b;
	line-height: 1.6;
	text-align: center;
}

/* =========== base.css上書き =========== */
.header-area.type-d .header-title {
    font-size: 24px !important;
    font-size: 2.4rem !important;
}