@charset "utf-8";
/* CSS Document */


/* -----------------------------------------------
 *  	         form style setting
 * ----------------------------------------------- */




/* =========== form elements =========== */



/* ----- reset -----*/
input,
select,
textarea,
button,
label {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}

@media only screen and (max-width: 48em){
body {
    font-size: 14px;
    font-size: 1.4rem;
}
}

/* ----- 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;
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: bold;
}

/*002*/
form .tit_002 {
	display: block;
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: bold;
}


/**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;
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: bold;
}

form .col dt.plusIcon:after {
	content: "必須";
	width: 150px;
	height: 20px;
	background-color: #5A825C !important;
	padding: 1px 10px;
	color: #FFF;
	border-radius: 5px;
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: bold;
}


/* ==== 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;
}

/* =========== ▼フォーム内フェア日程表示 =========== */
@media only screen and (max-width: 48em) {
.schedule_top_box {
	width: 95%;
	padding: 4% 2%;
	margin: 3% auto;
}
}
p.schedule_maintxt{
	/*font-family: "Yu Mincho","Yumintyo";*/
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 30px;
	/*font-weight: bold;*/
	color: #5d5753;
	line-height: 40px;
    text-align: center;
    margin-top: 10px;
}
@media only screen and (max-width: 48em) {
p.schedule_maintxt{
	font-size: 20px;
	line-height: 25px
}
}
.schedule_maintxt span{
	font-size: 22px;
}
@media only screen and (max-width: 60em) {
.schedule_maintxt span{
	font-size: 16px;
}
}
.schedule_maintxt strong{
	color: #83ad60;
}
span.day{
	font-size: 20px;
	display: inline-block;
	color: #463e3a;
	font-weight: bold;
}
@media only screen and (max-width: 60em) {
span.day{
	font-size: 15px;
}
}
p.acces_titl {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
    text-align: center;
}
@media only screen and (max-width: 60em) {
p.acces_titl {
	font-weight: bold;
	font-size: 20px;
	margin: 10px auto;
}
}

p.acces_txt{
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
    text-align: center;
}
@media only screen and (max-width: 60em) {
p.acces_txt{
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
}
}
p.acces_txt span{
 color: #A90000;
 font-size: 15px;
font-weight: bold;

}
/* =========== ▲フォーム内フェア日程表示 =========== */




/* =========== completion-txt =========== */
.completion-txt {
	margin: 0 0 20px;
	color: #6d6b6b;
	line-height: 1.6;
	text-align: center;
}


/* =========== font =========== */
.gothic1 {
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}




/* =========== reservationArea =========== */
h3.topics_fairtitle_h3 {
	margin-bottom: 20px;
	padding:0;
	text-align:center;
	font-size: 28px;
	color: #5A825C !important;
	line-height: 1.2;
}
h3.topics_fairtitle_h3 span{
	font-size: 18px;
}
.special_box {
	max-width: 1024px;
	margin: auto;
	text-align: center;
}
.special_box .special_box_text1{
	font-size: 24px;
	font-weight: bold;
}
.special_box .special_box_text1 span{
	font-size: 18px;
}
.special_box .special_box_text2{
	font-size: 14px;
	font-weight: normal;
}
br.add_480{
	display: none;
}

/* 768px */
@media only screen and (max-width: 48em) {
.special_box {
	margin: auto 3%;
}
}

/* 480px */
@media only screen and (max-width: 30em) {
h3.topics_fairtitle_h3 {
	font-size: 26px;
}
h3.topics_fairtitle_h3 span{
	font-size: 16px;
}
.special_box .special_box_text1{
	font-size: 18px;
}
.special_box .special_box_text1 span{
	font-size: 14px;
}
.special_box .special_box_text2{
	font-size: 12px;
}
br.add_480{
	display: block;
}
}