
form{
	margin: 0 0 0 0
}

form.inline{
	margin: 0;
}


@media screen and (max-width:736px){




/*-------------------------------------
 text box
-------------------------------------*/

.formPartsAdjuster{
	margin: 0 0 20px 0;
}

.nonMargin{
	margin: 0;
}


input[type="text"],
input[type="email"],
input[type="password"]{
	/*margin: 0 0 10px 0;*/
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-size: 1.1rem;
}

input[type="datetime-local"]{
	/*margin: 0 0 10px 0;*/
	margin: 3px;
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-size: 1.1rem;
	background-color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
}

input[type="text"].max,
input[type="email"].max{
	width:100%;
	}
input[type="text"].large,
input[type="email"].large,
input[type="password"].large{
	width:100%;
	}
input[type="text"].mid,
input[type="email"].mid,
input[type="password"].mid
	{
	width:250px;
	}
input[type="text"].small,
input[type="email"].small
	{
	width:100%;
	}
input[type="text"].mini,
input[type="email"].mini{
	width:40px;
	}



/*-------------------------------------
 radio button 
-------------------------------------*/
.cp_ipradio {
	width: 100%;
	/*margin: 0 0 10px 0;*/
	text-align: left;
}

.cp_ipradio .option-input {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 1rem;
	margin-bottom: 4px;

	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #ffffff;
	border: none;
	outline: none;
	background: #FFF;
	border: 2px solid #ffcc33;
	-webkit-appearance: none;
	        appearance: none;
}
.cp_ipradio .option-input:hover {
	background: #ffcc33;
}
.cp_ipradio .option-input:checked {
	background: #ff4a03;
}
.cp_ipradio .option-input:checked::before {
	font-size: 30px;
	line-height: 23px;
	position: absolute;
	display: inline-block;
	left: 4px;
	width: 30px;
	height: 30px;
	content: '●';
	text-align: left;
}
.cp_ipradio .option-input:checked::after {
	position: relative;
	display: block;
	content: '';
	-webkit-animation: click-wave 0.65s;
	        animation: click-wave 0.65s;
	background: #ff4a03;
}
.cp_ipradio .option-input.radio {
	border-radius: 50%;
}
.cp_ipradio .option-input.radio::after {
	border-radius: 50%;
}
.cp_ipradio label {
	line-height: 40px;
	display: block;
	font-size: 16px;
}

.float label{
	display: inline-block;
	margin: 0 10px 0 0;
}


/* checkbox */
.cp_ipcheck {
	width: 100%;
	margin: 0 0 10px 0;
	text-align: center;
}

.cp_ipcheck .option-input02 {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 0.5rem;
	margin-bottom: 4px;
	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #ffffff;
	border: none;
	outline: none;
	background: #FFF;
	border: 2px solid #3C9999;
	-webkit-appearance: none;
	        appearance: none;
}
.cp_ipcheck .option-input02:hover {
	background: #3C9999;
}
.cp_ipcheck .option-input02:checked {
	background: #B8D4D4;
}
.cp_ipcheck .option-input02:checked::before {
	font-size: 20px;
	line-height: 28px;
	position: absolute;
	display: inline-block;
	left: 5px;
	width: 30px;
	height: 30px;
	content: '✔';
	text-align: left;
}
.cp_ipcheck .option-input02:checked::after {
	position: relative;
	display: block;
	content: '';
	-webkit-animation: click-wave 0.65s;
	        animation: click-wave 0.65s;
	background: #da3c41;
}
.cp_ipcheck .option-input02.radio {
	border-radius: 50%;
}
.cp_ipcheck .option-input02.radio::after {
	border-radius: 50%;
}
.cp_ipcheck label {
	line-height: 40px;
	display: block;
	font-size: 16px;
}



.float label{
	display: inline-block;
	margin: 0 10px 0 0;
}

/*-------------------------------------
 select box
-------------------------------------*/
.cp_ipselect{
	display:inline-block;
	/*margin: 0 0 10px 0;*/
}

.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}

.cp_ipselect.cp_sl02 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}

.cp_ipselect.cp_sl02::before {/*下向き▼*/
	position: absolute;
	top: 18px;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 1px solid #bbbbbb;
}
.cp_ipselect.cp_sl02 select {
	padding: 8px 52px 8px 8px;
	color: #666666;
	font-size: 16px;
}


.cp_ipselect.cp_sl01 {
	position: relative;
	border: 2px solid #b2b2b2;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl01::before {/*下向き▼*/
	position: absolute;
	top: 14px;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01:after {
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 2px solid #b2b2b2;
}
.cp_ipselect.cp_sl01 select {
	padding: 4px 62px 4px 8px;
	color: #666666;
	font-size: 16px;
}

textarea{
	width: 100%;
	height: 150px;
	margin: 0 0 0 0;
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-family: san-serif;
	font-size:1.1rem;
}

pre{
	width: 100%;
	margin: 0 0 10px 0;
	border-radius: 3px;
	font-family: san-serif;
	font-size:1.3rem;
}

input[type="submit"]{
	display: block;
	width: 450px;
	height: 40px;
	margin: 0 0 15px 0;
	background-color: #da3c41;
	border-radius: 25px;
	font-size: 1.5rem;
	color: #FFF;
}

input[type="submit"].normal{
	display: inline-block;
	width: 56px;
	height: 28px;
	padding: 0;
	margin: 0;
	background-color: white;
	border: 2px solid #b2b2b2;
	border-radius: 2px;
	font-size: 0.9rem;
	line-height: 26px;
	color: #666;
}

.ticketNo{
	
}

button{
	display: block;
}

button.defaultButton{
	cursor: pointer;
	color: #333;
	padding: 3px 5px;
	background-color: #f5f4f5;
	font-size: 14px;
	border: 1px solid #aaaaaa;
	border-radius: 2px;
}

button.centering{
	display: block;
	width: 60px;
	margin: 0 auto;
	font-size: 1.3rem;
}

button.wideRoundButton{
	cursor: pointer;
	width: 100%;
	margin: 0 auto 10px auto;
	height: 44px;
	color: #FFF;
	font-weight: bold;
	padding: 3px 5px;
	background-color: #C96567;
	font-size: 1.3rem;
	line-height: 40px;
	border: 0px solid #aaaaaa;
	border-radius: 22px;
}

button.wideRoundButton i{
	margin: 0 10px 0 0;
}

button.terimnate{
	cursor: pointer;
	width: 100%;
	margin: 0 auto 15px auto;
	height: 44px;
	color: #FFF;
	font-weight: bold;
	padding: 3px 5px;
	background-color: #666666;
	font-size: 1.3rem;
	line-height: 40px;
	border-radius: 22px;
}


object{
	border: 0px solid #FFF;
}

iframe{
	background-color: #FFF;
}

.dropArea{
	width: 300px;
	height: 50px;
	line-height: 46px;
	margin: 0 0 10px 0;
	text-align: center;
	border: 3px dotted #999999;
	border-radius: 10px;
	background-color: #eeeeee;
	color: #666;
}


.newEntryAnker{
	display: inline-block;
	width: 450px;
	height: 40px;
	margin: 0 0 15px 0;
	padding:;
	background-color: #996600;
	line-height: 40px;
	text-align: center;
	border-radius: 25px;
	font-size: 1.5rem;
	color: #FFF;
}

.newEntryAnker i{
	margin: 0 7px 0 0;
}


.returnAnker{
	cursor:pointer;
	display: block;
	width: 80%;
	height: 40px;
	margin: 0 auto 20px auto;
	padding:;
	background-color: #999999;
	line-height: 40px;
	text-align: center;
	border-radius: 25px;
	font-size: 1.0rem;
	color: #FFF;
}

.returnAnker i{
	margin: 0 7px 0 0;
}


/*-------------------------------------------------
 pager
-------------------------------------------------*/

.pager{
	display:flex;
	justify-content: center;
	list-style-type:none;
	margin: 0 0 50px 0;
}

.pager li{
	margin: 0 5px 0 0;
	font-size: 18px;
}

.pager li.stay{
	display:block;
	width: 40px;
	height: 40px;
	padding: 0;
	border:1px solid #689897;
	text-align:center;
	line-height: 37px;
	color: #689897;
	background-color: #FFF;
}

.pager li.anker{
	display:block;
	width: 40px;
	height: 40px;
	padding: 0;
	border:1px solid #689897;
	text-align:center;
	line-height: 37px;
	background-color: #689897;
}

.pager li.anker a{
	display: block;
	width: 38px;
	height: 38px;
	color: #FFF;
}

.pager li.anker a:hover{
	display: block;
	color: #689897;
}

#tbl1{
	margin: 0 0 10px 0;
}

#btn1{
	cursor:pointer;
	width: 200px;
	margin: 0 auto 40px auto;
	padding: 10px 20px;
	background-color: #fbce3f;
	font-size: 13px;
	border-radius: 3px;
}

.errMessage{
	width: 500px;
	margin: 0 auto 20px auto;
	padding: 8px 0;
	text-align: center;
	color: #990000;
	background-color: #ff9999;
	font-size: 16px;
	line-height: 23px;
	
}



/*-------------------------------------------------
 table
-------------------------------------------------*/

table.basic{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.2rem;
}

table.basic tr th,
table.basic tr td{
	display: block;
	padding: 6px 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
	font-size: 1rem;
}

table.basic tr td{
	background-color: #FFF;
}

table.basic tr td span.reqTag{
	display: inline-block;
	margin: 0 0 0 7px;
	padding: 0 7px;
	background-color: #cc6666;
	color: #FFF;
	line-height:1.8rem;
	font-size: 1.1rem;
	border-radius: 2px;
}


table.basic tr td span.textExam{
	display: inline-block;
	margin: 5px 0 0 0;
	padding: 0;
	font-size: 0.9rem;
	line-height: 1.3rem;
}

table.basic tr td span.underText{
	display: inline-block;
	margin: 0 0 0 0;
	padding: 0;
	font-size: 0.9rem;
	line-height: 1.3rem;
}


table.basic tr th{
	background-color: #96a1ab;
	font-weight: normal;
	color: #FFF;
}

table.basic tr td.itemName{
	width: 200px;
	background-color: #fffaec;
}

table.basic tr td.center{
	text-align: center;
	background-color: #fffaec;
}

table.basic tr :first-child{
	/*width: 30%;
	background-color: #fffaec;
	*/
}

table.basic tr td.fixed{
	width:150px;
}

table.basic tr td.rightAdjust{
	text-align:right;
}

table.basic tr td.centering{
	text-align:center;
}

table.basic tr td a{
	color: #996600;
}

table.basic tr td.chargedMember{
	color: #ff6600;
	font-weight:bold;
}

table.basic tr td.upfile{
	width:500px;
}	


/* table event */


table.events{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.2rem;
}


table.events tr td{
	display: block;
	padding: 6px 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
	font-size: 1rem;
}

table.events tr td{
	background-color: #FFF;
	border-bottom: 1px solid #CCC;
}

table.events tr td:first-child{
	background-color: #fafdda;
}



/* table profile */

table.profile{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.0rem;
}

table.profile tr td{
	display: block;
	padding: 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
	background-color: #FFF;
}

table.profile tr td br{
	display: none;
}

table.profile tr td:first-child{
	width: 100%;
	padding: 8px 12px;
	background-color: #FEFAEC;
	text-align: center;
	font-weight: bold;
}


td .form-div{
	margin: 15px 0 15px 7px;
	padding: 0 0 0 15px;
	border-left: 4px solid #d4d4d4;
}

.form-div label{
	display: inline-block;
	width: 300px;
	margin: 0 0 5px 0;
	font-size: 17px;
	
}


}

@media screen and (min-width:737px){
	

/*-------------------------------------
 text box
-------------------------------------*/

.formPartsAdjuster{
	margin: 0 0 20px 0;
}

.nonMargin{
	margin: 0;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="datetime-local"]{
	/*margin: 0 0 10px 0;*/
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-size: 1.1rem;
}

input[type="text"].max,
input[type="email"].max{
	width:100%;
	}
input[type="text"].large,
input[type="email"].large,
input[type="password"].large{
	width:100%;
	}
input[type="text"].mid,
input[type="email"].mid,
input[type="password"].mid
	{
	width:250px;
	}
input[type="text"].small,
input[type="email"].small
	{
	width:150px;
	}
input[type="text"].mini,
input[type="email"].mini{
	width:40px;
	}



/*-------------------------------------
 radio button 
-------------------------------------*/
.cp_ipradio {
	width: 100%;
	/*margin: 0 0 10px 0;*/
	text-align: left;
}

.cp_ipradio .option-input {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 1rem;
	margin-bottom: 4px;

	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #ffffff;
	border: none;
	outline: none;
	background: #FFF;
	border: 2px solid #ffcc33;
	-webkit-appearance: none;
	        appearance: none;
}
.cp_ipradio .option-input:hover {
	background: #ffcc33;
}
.cp_ipradio .option-input:checked {
	background: #ff4a03;
}
.cp_ipradio .option-input:checked::before {
	font-size: 30px;
	line-height: 23px;
	position: absolute;
	display: inline-block;
	left: 4px;
	width: 30px;
	height: 30px;
	content: '●';
	text-align: left;
}
.cp_ipradio .option-input:checked::after {
	position: relative;
	display: block;
	content: '';
	-webkit-animation: click-wave 0.65s;
	        animation: click-wave 0.65s;
	background: #ff4a03;
}
.cp_ipradio .option-input.radio {
	border-radius: 50%;
}
.cp_ipradio .option-input.radio::after {
	border-radius: 50%;
}
.cp_ipradio label {
	line-height: 40px;
	display: block;
	font-size: 16px;
}

.float label{
	display: inline-block;
	margin: 0 10px 0 0;
}

/* checkbox */
.cp_ipcheck {
	width: 100%;
	margin: 0 0 10px 0;
	text-align: center;
}

.cp_ipcheck .option-input02 {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 0.5rem;
	margin-bottom: 4px;
	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #ffffff;
	border: none;
	outline: none;
	background: #FFF;
	border: 2px solid #3C9999;
	-webkit-appearance: none;
	        appearance: none;
}
.cp_ipcheck .option-input02:hover {
	background: #3C9999;
}
.cp_ipcheck .option-input02:checked {
	background: #B8D4D4;
}
.cp_ipcheck .option-input02:checked::before {
	font-size: 20px;
	line-height: 28px;
	position: absolute;
	display: inline-block;
	left: 5px;
	width: 30px;
	height: 30px;
	content: '✔';
	text-align: left;
}
.cp_ipcheck .option-input02:checked::after {
	position: relative;
	display: block;
	content: '';
	-webkit-animation: click-wave 0.65s;
	        animation: click-wave 0.65s;
	background: #da3c41;
}
.cp_ipcheck .option-input02.radio {
	border-radius: 50%;
}
.cp_ipcheck .option-input02.radio::after {
	border-radius: 50%;
}
.cp_ipcheck label {
	line-height: 40px;
	display: block;
	font-size: 16px;
}



.float label{
	display: inline-block;
	margin: 0 10px 0 0;
}

/*-------------------------------------
 select box
-------------------------------------*/
.cp_ipselect{
	display:inline-block;
	/*margin: 0 0 10px 0;*/
}

.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}

.cp_ipselect.cp_sl02 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 3px;
	background: #ffffff;
}

.cp_ipselect.cp_sl02::before {/*下向き▼*/
	position: absolute;
	top: 14px;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 1px solid #bbbbbb;
}
.cp_ipselect.cp_sl02 select {
	padding: 8px 52px 8px 8px;
	color: #666666;
	font-size: 16px;
}


.cp_ipselect.cp_sl01 {
	position: relative;
	border: 2px solid #b2b2b2;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl01::before {/*下向き▼*/
	position: absolute;
	top: 14px;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01:after {
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 2px solid #b2b2b2;
}
.cp_ipselect.cp_sl01 select {
	padding: 4px 62px 4px 8px;
	color: #666666;
	font-size: 16px;
}

textarea{
	width: 100%;
	height: 150px;
	margin: 7px 0 0 0;
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-family: san-serif;
	font-size:1.1rem;
}

pre{
	width: 100%;
	margin: 0 0 10px 0;
	border-radius: 3px;
	font-family: san-serif;
	font-size:1.3rem;
}

input[type="submit"]{
	display: block;
	width: 450px;
	height: 40px;
	margin: 0 0 15px 0;
	background-color: #da3c41;
	border-radius: 25px;
	font-size: 1.5rem;
	color: #FFF;
}

input[type="submit"].normal{
	display: inline-block;
	width: 66px;
	height: 36px;
	padding: 0;
	margin: 0;
	background-color: white;
	border: 2px solid #b2b2b2;
	border-radius: 2px;
	font-size: 1.1rem;
	line-height: 36px;
	color: #666;
}

.ticketNo{
	
}

button{
	display: block;
}

button.defaultButton{
	cursor: pointer;
	color: #333;
	padding: 3px 5px;
	background-color: #f5f4f5;
	font-size: 14px;
	border: 1px solid #aaaaaa;
	border-radius: 2px;
}

button.centering{
	display: block;
	width: 60px;
	margin: 0 auto;
	font-size: 1.3rem;
}

button.wideRoundButton{
	cursor: pointer;
	width: 100%;
	margin: 0 auto 15px auto;
	height: 44px;
	color: #FFF;
	font-weight: bold;
	padding: 3px 5px;
	background-color: #C96567;
	font-size: 1.3rem;
	line-height: 40px;
	border: 0px solid #aaaaaa;
	border-radius: 22px;
}

button.wideRoundButton i{
	margin: 0 10px 0 0;
}

button.terimnate{
	cursor: pointer;
	width: 100%;
	margin: 0 auto 15px auto;
	height: 44px;
	color: #FFF;
	font-weight: bold;
	padding: 3px 5px;
	background-color: #666666;
	font-size: 1.3rem;
	line-height: 40px;
	border-radius: 22px;
}


object{
	border: 0px solid #FFF;
}

iframe{
	background-color: #FFF;
}

.dropArea{
	width: 300px;
	height: 50px;
	line-height: 46px;
	margin: 0 0 10px 0;
	text-align: center;
	border: 3px dotted #999999;
	border-radius: 10px;
	background-color: #eeeeee;
	color: #666;
}


.newEntryAnker{
	display: inline-block;
	width: 450px;
	height: 40px;
	margin: 0 0 15px 0;
	padding:;
	background-color: #996600;
	line-height: 40px;
	text-align: center;
	border-radius: 25px;
	font-size: 1.5rem;
	color: #FFF;
}

.newEntryAnker i{
	margin: 0 7px 0 0;
}


.returnAnker{
	cursor:pointer;
	display: block;
	width: 80%;
	height: 40px;
	margin: 0 auto 20px auto;
	padding:;
	background-color: #999999;
	line-height: 40px;
	text-align: center;
	border-radius: 25px;
	font-size: 1.0rem;
	color: #FFF;
}

.returnAnker i{
	margin: 0 7px 0 0;
}


/*-------------------------------------------------
 pager
-------------------------------------------------*/

.pager{
	display:flex;
	justify-content: center;
	list-style-type:none;
	margin: 0 0 50px 0;
}

.pager li{
	margin: 0 5px 0 0;
	font-size: 18px;
}

.pager li.stay{
	display:block;
	width: 40px;
	height: 40px;
	padding: 0;
	border:1px solid #689897;
	text-align:center;
	line-height: 37px;
	color: #689897;
	background-color: #FFF;
}

.pager li.anker{
	display:block;
	width: 40px;
	height: 40px;
	padding: 0;
	border:1px solid #689897;
	text-align:center;
	line-height: 37px;
	background-color: #689897;
}

.pager li.anker a{
	display: block;
	width: 38px;
	height: 38px;
	color: #FFF;
}

.pager li.anker a:hover{
	display: block;
	color: #689897;
}

#tbl1{
	margin: 0 0 10px 0;
}

#btn1{
	cursor:pointer;
	width: 200px;
	margin: 0 auto 40px auto;
	padding: 10px 20px;
	background-color: #fbce3f;
	font-size: 13px;
	border-radius: 3px;
}

.errMessage{
	width: 500px;
	margin: 0 auto 20px auto;
	padding: 8px 0;
	text-align: center;
	color: #990000;
	background-color: #ff9999;
	font-size: 16px;
	line-height: 23px;
	
}



/*-------------------------------------------------
 table
-------------------------------------------------*/

table.basic{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.2rem;
}

table.basic tr th,
table.basic tr td{
	padding: 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
}

table.basic tr td{
	background-color: #FFF;
}

table.basic tr td span.reqTag{
	display: inline-block;
	margin: 0 0 0 7px;
	padding: 0 7px;
	background-color: #cc6666;
	color: #FFF;
	line-height:1.8rem;
	font-size: 1.1rem;
	border-radius: 2px;
}


table.basic tr td span.textExam{
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 0;
	line-height: 32px;
}

table.basic tr td span.underText{
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;
	line-height: 32px;
}


table.basic tr th{
	background-color: #96a1ab;
	font-weight: normal;
	color: #FFF;
}

table.basic tr td.itemName{
	width: 200px;
	background-color: #fffaec;
}

table.basic tr td.center{
	text-align: center;
	background-color: #fffaec;
}

table.basic tr :first-child{
	/*width: 30%;
	background-color: #fffaec;
	*/
}

table.basic tr td.fixed{
	width:150px;
}

table.basic tr td.rightAdjust{
	text-align:right;
}

table.basic tr td.centering{
	text-align:center;
}

table.basic tr td a{
	color: #996600;
}

table.basic tr td.chargedMember{
	color: #ff6600;
	font-weight:bold;
}

table.basic tr td.upfile{
	width:500px;
}	



/* table event */


table.events{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.2rem;
}


table.events tr td{
	padding: 6px 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
	font-size: 1rem;
}

table.events tr td{
	background-color: #FFF;
	border-bottom: 1px solid #CCC;
}

table.events tr td:first-child{
	background-color: #fafdda;
}


/* table profile */

table.profile{
	width: 100%;
	margin: 0 0 20px 0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 1.0rem;
}

table.profile tr td{
	padding: 12px;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;	
	vertical-align: middle;
	line-height:1.6rem;
	background-color: #FFF;
}

table.profile tr td:first-child{
	width: 180px;
	background-color: #FEFAEC;
	text-align: center;
	font-weight: bold;
}

td .form-div{
	margin: 15px 0 15px 25px;
	padding: 0 0 0 20px;
	border-left: 4px solid #d4d4d4;
}

.form-div label{
	display: inline-block;
	width: 300px;
	font-size: 17px;
}

.form-div label.kanyu{
	width: 100px;
}


.checkSelectWpr{
	margin: 0 0 10px 0;
}

.checkSelectWpr span{
	margin: 0 10px 0 0;
}
	
}
