@charset "UTF-8";
/* CSS Document */

/* ===================================
				title
   =================================== */
   
h1 {
	 font-size: 1.6em;
	 color: #666;
	 border-bottom: 1px dotted #CCC;
	 padding-bottom: 10px;
	 line-height: 1.2em;
	 text-align: center;
}

h1 .subtitle {
	font-size: 0.6em;	
}
   
h2 {
	font-size: 1.2em;
	font-weight: bold;
	color: #666;
}

h2.q-title {
	font-size: 1.2em;
	font-weight: bold;
	color: #099;
	margin-top: 40px;
	border-left: 5px solid #099;
	padding-left: 5px;
}

h3 {
	font-size: 1.2em;
	color: #FFF;
	margin: 0;	
}
   
   
/* ===================================
				basic
   =================================== */
   
.container {
	width: 940px;
	margin: 0 auto 20px;
	box-sizing: border-box;
	padding: 15px;
}

.content-box {
	width: 100%;
	margin: 0 0 20px 0;
}


/* ===================================
				lead
   =================================== */
   
.lead p{
	font-size: 1.1em;
	line-height: 1.7em;
	color: #666;
}


   
/* ==================================
			privacy
   ================================== */
   
.privacy {
	box-sizing: border-box;
	border: 1px solid #CCC;	
	padding: 20px;
	margin-bottom: 30px;
}

.privacy .left-box{
	float: left;
	width: 70%;
}

.privacy .left-box p{
	color: #666;
	font-size: 0.8em;
}

.privacy .left-box ul{
	list-style-type: none;
	margin-left:-1em;
}

.privacy .left-box ul li{
	color: #666;
	font-size: 0.8em;
}

.privacy .right-box{
	float: right;
	width: 25%;
	text-align: center;
}

.privacy p.caution {
	font-size: 0.7em;
	line-height: 1.5em;
}	

.br-sp {
		display: none;	
}
	
@media screen and (max-width: 768px) {
	
	.br-sp {
		display: block;	
	}
	
	#contact-form-submit{
		width: 90%;
		min-height: 50px;
		font-size: 16px;
		font-weight: bold;
		letter-spacing: 0;	
	}
	
}



/* ===================================
				question
   =================================== */
   
.question {
	background: #099;
	box-sizing: border-box;
	padding: 10px 10px;
	border-radius: 10px 10px 0 0;
}

.question p {
	margin: 5px 0 0;
	font-size: 1.1em;	
	color: #444;
}

.must {
	font-size: 0.7em;
	color: #F30;
}



/* ===================================
				answer
   =================================== */

.answer {
	border:1px solid #099;
	border-radius: 0 0 10px 10px;	
	box-sizing: border-box;
	padding: 10px 10px;
	font-size: 16px;
	color: #444;
}

.answer h4 {
	font-size: 	1.1em;
	color: #099;
	border-bottom: 1px dotted #099;
	padding-bottom: 10px;
	text-indent: -33px;
	margin-left: 33px;
}

.answer h4.digit2 {
	text-indent: -54px;
	margin-left: 56px;
}

.answer.mar-left {
	padding-left: 26px;	
}

.answer ul {
	list-style-type: none;
	margin-left: -24px;
	margin-bottom: 0;	
	display: block;
}

.answer ul li {
	margin-bottom: 15px;
}

.answer ul.left li{
	margin-bottom: 15px;
	margin-right: 20px;
	float:left;
}

.answer ul.col2 li label{
	max-width: 150px;
	width: 44%;	
}


/* ===================================
			sub-question
   =================================== */
   
.sub-question {
	background: #d1852b;
	box-sizing: border-box;
	padding: 10px 10px;
	margin-top: 20px;
	border-radius: 10px 10px 0 0;
}

.sub-question h3 {
	font-size: 1.1em;
	color: #FFF;
}

.sub-answer h4{
	font-size: 	1.2em;
	color: #d1852b;
	border-bottom: 1px dotted #d1852b;
	margin-top: 10px;
	text-indent: -40px;
	margin-left: 43px;
}

.sub-answer .left-box {
	float: left;
	width: 50%;
}

.sub-answer .right-box {
	float: right;
	width: 50%;
}

.sub-answer h4.digit2 {
	text-indent: -54px;
	margin-left: 56px;
}

.sub-question p {
	margin: 5px 0 0;
	font-size: 1.1em;	
	color: #5d4800;
}

.sub-answer {
	background: #fffcf2;
	border:1px solid #EEE;	
	border-radius: 0 0 10px 10px;
	box-sizing: border-box;
	padding: 10px 10px;
	color: #444;
}

.sub-answer.mar-left {
	padding-left: 26px;	
}

.sub-answer ul {
	list-style-type: none;
	margin-left: -24px;	
}

.sub-answer ul li {
	margin-bottom: 15px;	
}

.sub-answer ul.col2 li label{
	max-width: 150px;
	width: 44%;	
}

.smallfont {
	font-size: 13px;
}


/* ===================================
				form
   =================================== */
   
/*Radio Check*/
label.radio, label.radio_text, label.checkbox, label.checkbox_text {
	position      : relative;
	cursor        : pointer;
	display       : inline-block;
	overflow      : hidden;
	box-sizing    : border-box;
}
label.radio {
	width         : 24px;
	height        : 24px;
	border        : 1px solid #666666;
	border-radius : 100%;
}
label.radio_text {
	min-height   : calc(24px + 5px);
	/* margin-right : calc(24px + 5px); */
	padding-left : calc(28px + 5px);
	line-height  : calc(24px + 5px);
}
label.checkbox {
	width      : 24px;
	height     : 24px;
	border     : 1px solid #B3B3B3;
	background : #fff;
}
label.checkbox_text {
	padding-left : calc(24px + 5px);
	line-height  : 24px;
}
/** before after **/
label.radio:before, label.radio_text:before, label.checkbox_text:before,
label.checkbox:after, label.radio_text:after, label.checkbox_text:after{
	content  : '';
	position : absolute;
	box-sizing : border-box;
}
label.radio:before, label.radio_text:before{
	border-radius    : 100%;
}
label.radio:before, label.checkbox:after{
	top              : 0px;
	bottom           : 0px;
	left             : 0px;
	right            : 0px;
	margin           : auto;
}
label.checkbox:after, label.checkbox_text:after{
	transform         : rotate(45deg);
	-webkit-transform : rotate(45deg);
	-moz-transform    : rotate(45deg);
	border-right      : 3px solid #099;
	border-bottom     : 3px solid #099;
	top               : calc(50% - (((20px / 12 ) * 5) / 2));
	display           : block;
	margin-top        : calc(((20px / 12 ) * 5) * -1);
	width             : calc(((20px / 12 ) * 5));
	height            : 20px;
	z-index           : 1;
}
label.radio_text:before, label.radio_text:after{
	top              : 0px;
	bottom           : 0px;
	margin-top       : auto;
	margin-bottom    : auto;
}
label.radio:before {
	display          : block;
	width            : 18px;
	height           : 18px;
	z-index          : 1;
	background-color : #DD6655; 
}
label.radio_text:before {
	width         : 28px;
	height        : 28px;
	border        : 1px solid #666666;
	left          : 0px;
	z-index       : 3;
}
label.checkbox_text:before {
	width    : 24px;
	height   : 24px;
	left     : 0px;
	top      : 0;
	border   : 1px solid #B3B3B3;
	z-index  : 3;
	box-sizing: border-box;
}
label.radio_text:after {
	width            : 22px;
	height           : 22px;
	border-radius    : 100%;
	left             : calc(((24px/2) - (18px) / 2));
	background-color : #099;
	z-index          : 1;
}
label.checkbox_text:after {
	left : calc((24px / 2) - (((20px / 12 ) * 5) / 2));
}
/** input **/
label.radio input[type="radio"], label.radio_text input[type="radio"], label.checkbox input[type="checkbox"], label.checkbox_text input[type="checkbox"]{
	-moz-appearance: none;
	-webkit-appearance: none;
	position   : absolute;
	z-index    : 2;
	margin     : 0px;
	width      : 24px;
	height     : 24px;
	box-sizing    : border-box;
	outline       : none;
}
label.radio input[type="radio"], label.radio_text input[type="radio"]{
	left       : calc(24px * -1);
	width      : 24px;
	height     : 24px;
	top           : 0px;
	bottom        : 0px;
	margin-top    : auto;
	margin-bottom : auto;
	border-radius : 100%;
}
label.checkbox input[type="checkbox"], label.checkbox_text input[type="checkbox"]{
	left       : calc(24px * -1);
	padding    : 0;
}
label.radio input[type="radio"] {
	display    : block;
	box-shadow : 24px 0px #FFF;
}
label.radio_text input[type="radio"] {
	box-shadow : 26px 0px #FFF;
}
label.checkbox input[type="checkbox"] {
	box-shadow : 24px 0px #FFF;
}
label.checkbox_text input[type="checkbox"] {
	display    : block;
	box-shadow : 24px 0px #FFF;
}
/** checked forcus */
label.checkbox_text input[type="checkbox"]:checked,
label.checkbox input[type="checkbox"]:checked,
label.radio_text input[type="radio"]:checked,
label.radio input[type="radio"]:checked{
	box-shadow : none;
}
label.checkbox_text input[type="checkbox"]:checked:focus,
label.checkbox input[type="checkbox"]:checked:focus{
	opacity: 0.1;
}
label.radio_text input[type="radio"]:focus,
label.radio input[type="radio"]:focus{
	opacity: 0.2;
}

label.checkbox_text input[type="checkbox"]:checked:focus {
	box-shadow : 24px 0px #666;
}
label.checkbox_text input[type="checkbox"]:focus {
	box-shadow : 24px 0px #EEE;
}
label.checkbox input[type="checkbox"]:checked:focus {
	box-shadow : 24px 0px #666;
}
label.checkbox input[type="checkbox"]:focus {
	box-shadow : 24px 0px #EEE;
}
label.radio_text input[type="radio"]:focus {
	box-shadow : 24px 0px #FFF;
}
label.radio input[type="radio"]:focus {
	box-shadow : 24px 0px #FFF;
}

textarea.freetxt {
	width: 95%;
	margin-left: 20px;
	font-size: 1em;
}

.inline input {	
	vertical-align: middle;
	line-height: 2em;
	border-radius: 5px;
	border: 1px solid #888;
	box-sizing: border-box;
	padding: 5px;
	font-size: 1em;	
	width: 95%;
	height: 3em;
}


.inline.col1f input{
	margin:-10px 0 0 20px;	
	vertical-align: middle;
	line-height: 2em;
	border-radius: 5px;
	border: 1px solid #888;
	box-sizing: border-box;
	padding: 5px;
	font-size: 1em;	
}

.inline.col2f input{
	margin:-10px 0 0 10px;	
	vertical-align: middle;
	line-height: 2em;
	border-radius: 5px;
	border: 1px solid #888;
	box-sizing: border-box;
	padding: 5px;
	font-size: 1em;	
}

.yourheight {
	font-size: 1em;	
	height: 24px;
	width: 50%;
	margin-bottom: 10px;
	margin-right: 10px;
}

.q-img {
	width: 100%;
}

.q-img img{
	width: 100%;
	height: auto;
}


/* ===================================
			branch
   =================================== */
   
.branch {
	border: 1px dotted #BBB;
	border-radius: 10px;	
	box-sizing: border-box;
	padding: 15px;
	margin-bottom: 40px;
}

.branch p{
	font-size: 1em;
	line-height: 1em;
	text-decoration: none;
	color: #099;
	margin: 0;
}
.branch a{
	font-size: 1em;
	line-height: 2em;
	text-decoration: none;
	color: #099;	
}

.branch a:hover{
	text-decoration: underline;	
}

.linkmark {
	font-size: 2em;	
	vertical-align: middle;,
}

.underline {
	text-decoration: underline;	
}

.note {
	font-size: 0.9em;
	font-weight: bold;
	color: #C00;
	margin: 0 0 30px 0;
}

/* ===================================
			table
   =================================== */
   
table {
	width: 90%;	
	margin: 0 auto;
}

td {
	box-sizing: border-box;
	padding: 10px;	
	width: 33.3%;
}

   
/* 2line */

table.table2line tr:nth-child(even) td
 {
	background: rgba(0,0,0,0.03);
}
	
table.table2line tr:nth-child(even) th
 {
	background: rgba(0,0,0,0.5);
}

table.table2line {
    border-collapse: collapse;
    border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	border-right:1px solid #CCC;
	margin-bottom: 30px;
}

.table2line td {
    border-collapse: collapse;
    border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	border-left:1px solid #CCC;
}


/* 3line */

table.table3line,.table3line td,.table3line th {
    border-collapse: collapse;
    border:1px solid #CCC;
}

table.table3line tr:nth-child(odd) td
 {
	background: rgba(0,0,0,0.03);
}

table.table3line tr:nth-child(odd) th
 {
	background: rgba(0,0,0,0.5);
}


/* 4line */

table.table4line,.table4line th {
    border-collapse: collapse;
    border:1px solid #CCC;
}

.table4line th {
 	width: 20%;
	font-size: 0.9em;
	box-sizing: border-box;
	padding: 10px 0;
	background: #eefbd8;
	color: #333;
}

.table4line td {
    border-collapse: collapse;
    border-right:1px dotted #DDD;
	border-bottom:1px solid #999;
	border-left:1px dotted #DDD;
	width: 20%;
	text-align: center;
}

table.table4line tr:nth-child(odd) td
 {
	background: rgba(0,0,0,0.02);
}

table.table4line tr:nth-child(odd) th
 {
	background: #def3bd;
}

table.table4line tr.select:nth-child(odd) th,
table.table4line tr.select:nth-child(even) th
 {
	background: rgba(209,133,43,1);
	color: #FFF;
}


/* 5line */

table.table5line,.table5line th {
    border-collapse: collapse;
    border:1px solid #CCC;
	font-size: 1em;
}

.table5line th {
 	width: 20%;
	font-size: 0.9em;
	box-sizing: border-box;
	padding: 10px 0;
	background: #eefbd8;
	color: #333;
}

.table5line td {
    border-collapse: collapse;
    border-right:1px dotted #DDD;
	border-bottom:1px solid #999;
	border-left:1px dotted #DDD;
	width: 20%;
	text-align: center;
}

   
table.table5line tr:nth-child(odd) td
 {
	background: rgba(0,0,0,0.03);
}

table.table5line tr:nth-child(odd) th
 {
	background: #def3bd;
}

table.table5line tr.select:nth-child(odd) th,
table.table5line tr.select:nth-child(even) th
 {
	background: rgba(209,133,43,1);
	color: #FFF;
}

.package {
	width: 60px;
	float:left;	
}

table.table3line .checkbox_text {
	vertical-align: middle;
	margin: 10px 0;
	font-size: 0.9em;
}

table.table2line  .checkbox_text {
	vertical-align: middle;
	margin: 10px 0;	
	font-size: 0.9em;
}


/* ===================================
			user's info
   =================================== */
   
.usersinfo {
	background: #e5f5f6;	
	box-sizing: border-box;
	padding: 10px 10px;
}

.usersinfo .answer{
	border-radius: 10px;
}


.usersinfo h3{
	color: #099;
}
.usersinfo h4{
	margin: 20px 0 0 0;
	text-indent: 0;
	color: #555;
	border-bottom: 1px dotted #555;
}

.usersinfo p {	
	color: #444;
}

.usersinfo small{
	font-size: 0.7em;
}

.usersinfo .left-box{
	float:left;
	width: 50%;
}

.usersinfo .right-box{
	float:right;
	width: 50%;
}

.wform-input-text {
	font-size: 1em;	
	height: 24px;
	width: 94%;
	margin-bottom: 10px;
}

.selecter {
	width: 100%;
	font-size: 18px;
	height: 2em;	
	margin-bottom: 10px;
}

.wform-submitbtn {
	text-align: center;	
}

.wform-submitbtn input{
	width: 100%;	
	height: 50px;
	font-size: 1em;
}

.wform-submitbtn button{
	width: 100%;	
	height: 50px;
	font-size: 1em;
}


.pre-btn {
	border: 1px solid #CCC;
	box-sizing: border-box;
	padding: 10px;
	font-size: 0.8em;	
	margin-bottom: 20px;
}

.pre-btn ul {
	list-style-type: none;
	margin-left: -3em;	
	width: 100%;
	color: #444;
}


.usersinfo table {
	width: 90%;	
	margin: 30px auto 30px auto;
	background: #FFF;
}


/* 4line */

.usersinfo .table4line th {
 	width: 25%;
	font-size: 0.9em;
	box-sizing: border-box;
	padding: 10px 0;
	background: #def1fb;
	color: #333;
}

.usersinfo .table4line td {
    border-collapse: collapse;
    border-right:1px solid #999;
	border-bottom:1px dotted #BBB;
	border-left:1px solid #999;
	width: 20%;
	text-align: center;
}

.usersinfo table.table4line tr:nth-child(odd) th
 {
	background: #c0dcf0;
}

.usersinfo table.table4line tr.select:nth-child(odd) th,
.usersinfo table.table4line tr.select:nth-child(even) th
 {
	background: #5194c2;
	color: #FFF;
}

table.office td {
	padding-left: 28px;	
}



/* ===================================
			user's info
   =================================== */

p.userid {
	font-weight: bold;
	color: #099;
	margin-top: 10px;
}

.inputuinfo{
	border: 1px solid #099;
	box-sizing: border-box;
	padding: 10px;
	margin: 20px auto 0;
	border-radius: 10px;
	background: #ceeaf4;
}

.inputuinfo p{
	margin: 5px 0 0;
}

.nameform {
	width: 50%;
}

.placeform {
	width: 20%;
}

.footer {
	margin: 0 !important;
	background: #AAA;
	height: 60px;	
	padding-top: 18px;
	font-size: 12px;
}

.footer p{
	text-align: center;
	color: #FFF;
}


/* ===================================
			enq_ans
   =================================== */
   
.enq-err,
.enq-ans {
	background: #e5f5f6;
}

.enq-err h1,
.enq-ans h1 {
	font-size: 1.5em;
	line-height: 1.5em;
}
   
.enq-err .content-box,
.enq-ans .content-box {
	background: #FFF;
	box-sizing: border-box;
	padding: 15px;	
}

.btn-back {
	margin-top: 2em auto;
	text-align: center;
}

.btn-back input {
	width: 70%;
	height: 50px;
	font-size: 18px;
}


.mt-00{
	margin-top: 0px;
}

.mt-20 {
	margin-top: 20px;	
}

.mt-50 {
	margin-top: 50px;	
}

.mb-00{
	margin-bottom: 0px;
}

.mb-20{
	margin-bottom: 20px;
}


.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


/* ===================================
			chui
   =================================== */

.chui {
	margin-bottom: 50px;
}

.chui h2 {
	border: 1px solid #C00;
	box-sizing: border-box;
	padding: 15px;
	background: #C00;
	border-radius: 10px 10px 0 0;
	margin-bottom: 0;
	color: #FFF;
}


.chui .text-box {
	border: 1px solid #C00;
	box-sizing: border-box;
	padding: 15px;
	border-radius: 0 0 10px 10px;
}

.chui .text-box p{
	color: #C00;
}



/* ===================================
			option
   =================================== */
   
.note01 {
	font-size: 10px;
	color: #555;
	line-height: 11px;	
}
