/*------------------------------------------------------*/
/* element style */

input[type="text"],
input[type="tel"],
input[type="password"]{
	
	border-radius:1px;
	border:solid 1px #dbd9d9;
	font-size:100%;
	padding:0 0.5em;
	
	-webkit-transition: border-color 0.2s ease,background-color 0.2s ease;
	-ms-transition: border-color 0.2s ease,background-color 0.2s ease;
	transition: border-color 0.2s ease,background-color 0.2s ease;
}
input[type="text"],
input[type="tel"],
input[type="password"],
select,
select > option { min-height:2em; }

.formError + input[type="text"],
.formError + input[type="tel"],
.formError + input[type="password"],
.formError + select,
.formError + textarea {
	
	border-color: #FF1464 !important;
	background: #E9D1D1 !important;
}

textarea::-webkit-input-placeholder { color:#858585; }
textarea:-ms-input-placeholder { color:#858585; }
textarea::-moz-placeholder { color:#858585; }
textarea:input-placeholder { color:#858585; }

.input_color_warrning {
	background-color:#f5dcdc;
}


input::-webkit-input-placeholder { color:#858585; }
input:-ms-input-placeholder { color:#858585; }
input::-moz-placeholder { color:#858585; }

select {
	
	-webkit-appearance: normal;
	-moz-appearance: normal;
	-ms-appearance: normal;
	appearance: normal;
	
	border-radius:1px;
	border:solid 1px #dbd9d9;
	box-shadow:2px 2px 0px 0px rgba(0,0,0,0.05) inset;
	padding:0 0.5em;
	line-height: 1;
}
select::-ms-expand { display: none; }

.input_select {
	display: table;
	border-collapse: separate;
	width: 100%;
}
.input_select > label {
	display: table-cell;
	vertical-align: middle;
}
.input_select > label > select {
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	width: 100%;
	padding: 0.75rem 2.25rem 0.75rem 0.5rem;
	border: 1px solid #ebebeb;
	border-radius: 0 4px 4px 0;
	box-shadow: none;
	color: #444;
	
	background-color: #fff;
	background-image: url(../img/btn_select_arrow.png);
	background-repeat: no-repeat;
	background-position: right 50%;
	background-size: auto 100%;
}
.input_select > label > select::-ms-expand { display: none; }

.input_select > label:first-child > select {
	border-radius: 4px;
}
.input_select_head {
	
	display: inline-block;
	border: 1px solid #fd7686;
	border-radius: 4px 0 0 4px;
	background-color: #fd7686;
	color: #fff;
	font-weight: bold;
	font-size: 0.875rem;
	width: 3rem;
	padding: 0.5rem 0;
	text-align: center;
}
.input_select > .input_select_head {
	display: table-cell;
	vertical-align: middle;
	padding: 0;
}


/*------------------------------------------------------*/
/* element style */

.input_style_file {
	display: inline-block;
}
.input_style_file label {
	
	position:relative;
	display: block;
}
.input_style_file label > .btn {
	
	width:100%;
	display: block;
	/*padding-left: 0;*/
	/*padding-right: 0;*/
	cursor: pointer;
}

.input_style_file input[type="file"]{
	
	width:1px;
	height:1px;
	overflow:hidden;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	opacity:0;
	position: absolute;
	left: 0;
	top: 0;
}
/*------------------------------------------------------*/
/* common style */

/* title */
.form_label_title {
	
	display: inline-block;
	min-width: 6em;
	margin-right: 1em;
}
.form_label_title_wide { min-width: 9em; }
.form_label_title_tight { min-width: 0; }
.form_label_block {
	
	display: block;
	margin: 0 0 0.25em;
}
.form_label_block:last-child { margin-bottom: 0; }


/* subtitle */
.form_label_subtitle {
	
	display: inline-block;
	min-width: 7.5em;
	margin-right: 1.25em;
	color: #999;
	font-size: 80%;
}
.form_label_subtitle.form_label_title_wide { min-width: 11.25em; }
.form_label_subtitle.form_label_title_tight { min-width: 0; }
.form_label_subtitle.form_label_block {
	
	display: block;
	margin: 0 0 0.3125em;
}
.form_label_subtitle.form_label_block:last-child { margin-bottom: 0; }


/* item */
.form_item {
	font-feature-settings: 'palt';
}

.form_item_figure { width: 10em; }
.form_item_figure .square { margin-bottom: 0.5em !important; }

.form_item_notes01,
.form_item_notes02,
.form_item_notes {
	
	display: inline-block;
	color: #999;
}
.form_item_notes { font-size: 80%; }
.form_item_notes01 { font-size: 66.66%; }
.form_item_notes02 {
	
	font-size: 80%;
	position: relative;
	padding: 0 0 0 2.5em;
}
.form_item_notes02 i {
	
	position: absolute;
	left: 0;
	top: 0;
}
.form_item_block {
	display: block;
	margin: 0 0 0.25em;
}
.form_item_block:last-child { margin-bottom: 0; }

@media screen and (max-width:767px) {
	
	.form_label_title {

		display: block;
		min-width: 0;
		margin: 0 0 0.25em;
	}
	.form_item {
		
		display: block;
		margin: 0 0 0.5em;
	}
	.form_item input[type="text"],
	.form_item input[type="tel"],
	.form_item input[type="password"]{ min-width: 100%; }
	
	.form_item_inline {
		display: inline;
		margin-right: 1em;
	}
	.form_item_inline input[type="text"],
	.form_item_inline input[type="tel"],
	.form_item_inline input[type="password"]{ min-width: 0; }
}

.form_add_control {
	
	margin: 0 0 1em;
	font-size: 80%;
	text-align: right;
}
.form_add_control .btn { margin: 0 0 0 1em; }

.form_add_area {}

.form_add_item {
	
	padding: 1.5em;
	margin-bottom: 1.5em;
	border: solid 1px #E3E6E8;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	position: relative;
	
	box-shadow:1px 2px 6px 0 rgba(0,0,0,0.1);
	-moz-box-shadow:1px 2px 6px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow:1px 2px 6px 0 rgba(0,0,0,0.1);
}
.form_add_item:last-child { margin-bottom: 0; }
.form_add_item > p { margin-bottom: 0.5em; }
.form_add_item > p:last-child { margin-bottom: 0; }

@media screen and (max-width:767px) {
	
	.form_add_item {

		padding: 1.5em 0.75em 0.75em;
	}
}

.form_add_item_checkbox {
	
	display: block;
	width: 2.5em;
	text-align: center;
	vertical-align: middle;
	padding: 0.5em 0;
	border-top: none;
	border-right: none;
	/*border-bottom: solid 1px #E3E6E8;*/
	/*border-left: solid 1px #E3E6E8;*/
	-webkit-border-radius: 0 0 0 6px;
	-moz-border-radius: 0 0 0 6px;
	border-radius: 0 0 0 6px;
	
	position: absolute;
	top: 0;
	right: 0;
}

.input_size03 { width: 3em; }
.input_size04 { width: 4em; }
.input_size06 { width: 6em; }
.input_size12 { width: 12em; }
.input_size24 { width: 24em; }

.input_size_w50 { width: 50%; }
.input_size_w100 { width: 100%; }

/* ---------------------------------------
  button sytle */

.table_form + .box_btn {
	text-align: center;
	margin: 1rem 0 0;
}
.table_form + .box_btn form {
	display: inline-block;
}
.table_form + .box_btn .btn {
	min-width: 15rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	margin: 0 0.5rem;
	white-space: nowrap;
}
@media screen and (max-width:767px) {
	
	.table_form + .box_btn form {
		display: block;
	}
	.table_form + .box_btn .btn {
		
		width: 100%;
		min-width: 0;
		padding-top: 1rem;
		padding-bottom: 1rem;
		display: block;
		margin: 0 0 0.75rem;
	}
	.table_form + .box_btn .btn:last-child { margin: 0; }
}

/* ---------------------------------------
  kiyaku sytle */

.box_kiyaku {
	
	overflow-x: visible;
	overflow-y: auto;
	height: 10rem;
	padding: 1rem;
	font-size: 0.83rem;
	line-height: 1.5;
	box-shadow:0px -5px 9px -4px rgba(0,0,0,0.27) inset;
}
iframe.box_kiyaku {
	
	padding: 0;
	border: none;
}

/* ---------------------------------------
  list_calendar_btns sytle */

.list_calendar_btns {}
.list_calendar_btns > li {
	display: table;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 1rem;
}
.list_calendar_btns > li > div {
	display: table-cell;
	vertical-align: top;
}
.list_calendar_btns > li > div:first-child { width: 8rem; }

/* ---------------------------------------
  flow style common
*/

/* init style */
.flow_form,
.flow_form * { box-sizing: border-box; }


/* style */
.flow_form { margin: 0 0 20px }

.flow_form ul {
	
	display:table;
	width:100%;
	height: 4em;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.flow_form ul > li {
	
	padding:0 0 0 1em;
	position:relative;
	
	display:table-cell;
	vertical-align: middle;
	text-align: center;
}
.flow_form ul > li > a,
.flow_form ul > li > div {
	
	display: table;
	width:100%;
	height: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	position:relative;
	z-index: 10;
	
	color: inherit;
}
.flow_form ul > li > a > span,
.flow_form ul > li > div > span {
	
	padding:0;	
	display:table-cell;
	vertical-align: middle;
	text-align: center;
}
@media only screen and (max-width: 767px) {

.flow_form ul > li > a > span,
.flow_form ul > li > div > span {
	font-size: 12px;
	}
}

/* ribbon type */
.flow_type_ribbon {}
.flow_type_ribbon ul > li {
	
	padding-left: 1em;
	background-color: #ccc;
	color: #fff;
}
.flow_type_ribbon ul > li:last-child {}
.flow_type_ribbon ul > li:before {
	
	display: block;
	content: '';
	z-index: 1;
	
	position: absolute;
	right: -2em;
	top: 0;
	margin-right: -1px;
	
	border-style: solid;
	border-width: 2em 1em;
	border-color: transparent transparent transparent #fff;
}
.flow_type_ribbon ul > li:after {
	
	display: block;
	content: '';
	z-index: 2;
	
	position: absolute;
	right: -2em;
	top: 0;
	
	border-style: solid;
	border-width: 2em 1em;
	border-color: transparent transparent transparent #ccc;
}
.flow_type_ribbon ul > li:last-child:before { display: none; }
.flow_type_ribbon ul > li:last-child:after { display: none; }

.flow_type_ribbon ul > li.active { background-color: #999; }
.flow_type_ribbon ul > li.active:after { border-left-color: #999; }


/* icon type */
.flow_type_icon {}


/* ---------------------------------------
  flow style color variation
*/

.flow_type_ribbon.flow_color01 {padding: 0}
.flow_type_ribbon.flow_color01 ul > li { background-color: #F0F3F5; color: #434343; }
.flow_type_ribbon.flow_color01 ul > li:after { border-left-color: #F0F3F5; }
.flow_type_ribbon.flow_color01 ul > li.active { background-color: #DCE9F2; }
.flow_type_ribbon.flow_color01 ul > li.active:after { border-left-color: #DCE9F2; }

.flow_type_ribbon.flow_color02 {}
.flow_type_ribbon.flow_color02 ul > li { background-color: #ccc; color: #fff; }
.flow_type_ribbon.flow_color02 ul > li:after { border-left-color: #ccc; }
.flow_type_ribbon.flow_color02 ul > li.active { background-color: #999; }
.flow_type_ribbon.flow_color02 ul > li.active:after { border-left-color: #999; }

.flow_type_ribbon.flow_color03 {}
.flow_type_ribbon.flow_color03 ul > li { background-color: #ccc; color: #fff; }
.flow_type_ribbon.flow_color03 ul > li:after { border-left-color: #ccc; }
.flow_type_ribbon.flow_color03 ul > li.active { background-color: #999; }
.flow_type_ribbon.flow_color03 ul > li.active:after { border-left-color: #999; }


/* ---------------------------------------
  flow style color variation
*/
.list_radio:before,
.list_radio:after { content: ''; display: table; }
.list_radio:after { clear: both; }
.list_radio { *zoom: 1; }
.list_radio {}
.list_radio > label {
	float: left;
	display: block;
	width: 50%;
	margin: 0 0 0.5rem !important;
}


