@charset "utf-8";
.pgr_count {
	float: right;
}
.pgr_count ul li.thispage {
	background: none repeat scroll 0 0 #EEE;
	border: 0 none;
	border-radius: 5px;
	color: #999;
	font-weight: bold;
	padding: 7px 9px;
}
.pgr_count ul li {
	display: inline-block;
	vertical-align: middle;
}
.pgr_count ul li a {
	background-color: #ffffff;
	background-image: linear-gradient(#f5f5f5, #ffffff 30%);
	border: 1px solid #cad0c6;
	border-radius: 5px;
	box-shadow: 0 1px 1px #ccc, 0 2px 0 white inset, 0 -2px 0 #eeeeee inset;
	padding: 6px 8px;
	display: inline-block;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	color: #000;
}
.pgr_count ul li a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
}
.prm_login_area li {
	float: left;
}
.prm_login_area li.prm_boshu_bnr {
	width: 578px;
	margin-left: 7px;
}
.prm_login_area li.login_btn0 {
	width: 283px;
	margin-left: 48px;
	margin-top: 10px;
}
input.error {
	background-color: #FFE4E4
}
select.error {
	background-color: #FFE4E4
}
/* form,input
--------------------------------------------------------------------------------------------------------------------*/
select {
	-moz-appearance: button;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 1px 1px #ccc, 0 2px 0 white inset, 0 -2px 0 #eeeeee inset;
	font-size: 12px;
	padding: 5px 4px;
}
input {
	padding: 5px 0 5px 5px;
	border:1px solid #ddd;
}
textarea{
	border:1px solid #ddd;
}
input[type=radio], input[type=checkbox] {
	display: inline-block;
}
input[type=radio] + label, input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	margin-right: 12px;
	cursor: pointer;
}
input[type=radio] + label, input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
input[type=radio] + label, input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
 @media (min-width: 1px) {
input[type=radio],  input[type=checkbox] {
	display: none;
	margin: 0;
}
input[type=radio] + label,  input[type=checkbox] + label {
	padding: 3px 0 3px 24px;
	left: 7px;
}
input[type=radio] + label::before,  input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background: #FFF;
}
input[type=radio] + label::before {
	border: 2px solid #ccc;
	border-radius: 30px;
}
input[type=checkbox] + label::before {
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
input[type=radio]:checked + label::after,  input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}
input[type=radio]:checked + label::after {
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #4EA51A;
	border-radius: 8px;
}
input[type=checkbox]:checked + label::after {
	left: 4px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #4EA51A;
	border-bottom: 3px solid #4EA51A;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* エラーテキスト */
.err_t {
	color: #d80000;
	font-weight: bold;
}
/* input幅 */
.ptn1 {
	width: 135px;
}
.ptn2 {
	width: 60px;
}
.ptn3 {
	width: 78px;
}
.ptn4 {
	width: 300px;
}
.ptn5 {
	width: 400px;
}
.ptn6 {
	width: 500px;
}
.ptn7 {
	width: 140px;
}

/* ステップ図
--------------------------------------------------------------------------------------------------------------------*/
.flows_area {
	margin: 10px 0;
	display: inline-block;
}
ul.flows {
	float: left;
	margin-right: 26px;
}
li.flow {
	height: 30px;
	line-height: 30px;
	list-style: none;
	text-align: center;
	font-size: 12px;
	margin-left: 20px;
	float: left;
	position: relative;
	z-index: 10;
	padding: 0 16px;
	background: #dbdbea;/*基本背景色*/
}
li.flow:first-child {
	margin-left: 0px;
}
li.flow::after {
	content: "";
	height: 0;
	border-top: solid 15px rgba(0, 0, 0, 0);
	border-bottom: solid 15px rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	right: -15px;
	z-index: 5;
	border-left: solid 15px #dbdbea;/*矢印部分色*/
}
li.flow.current {
	background: #922A40;/*現在地 背景色*/
	color: #fff;
}
li.flow.current::after {
	border-left: solid 15px #922A40;/*現在地 矢印部分色*/
}
li.flow:last-child::after {
	display: none;
	width: 0;
}
.flows:after {
	content: "";
	display: block;
	clear: both;
}
/*偶数色変え*/
/*li.flow:nth-child(odd){
	background: #FCC;
}
li.flow:nth-child(odd)::after{
	border-left: solid 15px #FCC;
}
li.flow span{
	position: relative;
	z-index: 20;
}*/ 
/*指定非表示の場合*/
/*
li.flow.fnot::after{
	display:none;
}
*/

/* mailform
--------------------------------------------------------------------------------------------------------------------*/
.icon-hiss {
	background-color: #d90000;
	color: #fff;
	font-size: 10px;
	margin-right: 15px;
	padding: 2px 6px 1px;
}
#form_Table > dl,.form_Table > dl {
	border: 0 none;
	display: table;
	margin: 0;
	padding: 0;
	width: 100%;
}
#form_Table > dl:first-child > dt,.form_Table > dl:first-child > dt {
	border-top: 1px solid #DBDBEA;
}
#form_Table > dl.top_line,.form_Table > dl.top_line {
	border-top: 1px solid #DBDBEA;
}
#form_Table > dl > dt,.form_Table > dl > dt {
	background: #f2f2f2;
	border-bottom: 1px solid #DBDBEA;
	border-right: 1px solid #DBDBEA;
	display: table-cell;
	font-weight: normal;
	margin: 0;
	padding: 1em 15px;
	text-align: left;
	vertical-align: middle;
	width: 30%;
}
#form_Table dl dt,.form_Table dl dt {
	font-weight: bold;
	margin-bottom: 0.5em;
	border-left: 1px solid #DBDBEA;
}
#form_Table > dl:first-child > dd,.form_Table > dl:first-child > dd {
	border-top: 1px solid #DBDBEA;
}
#form_Table > dl > dd,.form_Table > dl > dd {
	border-bottom: 1px solid #DBDBEA;
	border-right: 1px solid #DBDBEA;
	display: table-cell;
	vertical-align: middle;
}
#form_Table > dl > dd,.form_Table > dl > dd {
	padding: 1em 15px;
	width: 70%;
}
#form_Table > dl > dd p,.form_Table > dl > dd p {
	padding: 5px 0 0 0;
}
ul.formname-list li {
	display: inline-block;
	padding-right: 12px;
}
/* 規約読み込み
--------------------------------------------------------------------------------------------------------------------*/
.kiyaku {
	border: 1px solid #c2c2c2;
	height: 160px;
	overflow-y: scroll;
	margin: 10px 0px;
	padding: 20px 10px;
}
/* コメントエリア
--------------------------------------------------------------------------------------------------------------------*/
.comment_area {
	background: #fffbd2 none repeat scroll 0 0;
	text-align: center;
	vertical-align: middle;
	padding:10px 0 0 10px;
	
}
.comment_area2 {
	background: #fffbd2 none repeat scroll 0 0;
	border: 0 solid #dbdbea;
	height: auto;
	padding: 10px;
	text-align: left;
}
.comment_area3 {
	background: #fffbd2 none repeat scroll 0 0;
	border: 0 solid #dbdbea;
	height: auto;
	padding: 10px;
	text-align: center;
}
.comment_area4 {
	background: #fffbd2 none repeat scroll 0 0;
	border: 0 solid #dbdbea;
	height: auto;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;
}
.desc {
	color: #0059b2;
}
.desc ul, .desc ul li{
	list-style: disc;
	margin:0 0 0 10px;
	padding: 0;
}
.ev_nintei{
	padding-left:10px;
}
dl.ev_payall{
	padding:30px 20px;
}
dl.ev_payall dt{
	font-size:22px;
	border-bottom:1px solid #444;
	text-align:center;
	padding:0 0 8px;
	font-weight:600;
}
dl.ev_payall div {
	font-size: 140%;
}
dl.ev_payall dd{
	font-size:28px;
	color:#d80000;
	font-weight:600;
	text-align:center;
	padding:5px 0 0 0;
}
/**/}
 @media only screen and (max-width: 767px) {
textarea{
 width:100% !important;
	border-radius:0;
	margin-top:10px;
}
 #form_Table > dl:first-child > dd,
	.form_Table > dl:first-child > dd {
 border-top: 0px solid #DBDBEA;
}
#form_Table > dl > dt,
.form_Table > dl > dt {
 border-bottom: 1px solid #DBDBEA;
 border-right: 0px solid #DBDBEA;
 display: block;
 border-left: 0px solid #DBDBEA;
 padding: 1em 15px;
 text-align: left;
 width:100%;
	 -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
#form_Table > dl > dd,
.form_Table > dl > dd {
 display: block;
 width:100%;
	padding: 1em 5px;
	-webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 box-sizing: border-box;
 border-right: 0px solid #DBDBEA;
	
}
ul.formname-list li {
    padding-right: 0;
				padding-bottom:1em;
}
a[href$="/zipcode/"] {
	display: block;
	padding-top:10px;
}
span.ml10{
	margin:0;
}
ul.formname-list li {
	display:block;
	padding-right: 12px;
}
li.flow {
	display:none;
}
li.flow.current {
	display:block;
	margin-left:0;
}
/* input幅 */
.ptn1 {
 width: 80%;
}
.ptn2 {
 width: 22%;
}
.ptn3 {
 width: 26%;
}
.ptn4 {
 width: auto;
}
.ptn5 {
 width: 80%;
}
.ptn6 {
 width: 80%;
}
.ptn7 {
	width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
text-align:center;
}
.ptn_l_put{
 width: 80%;
}
.comment_area2,
.comment_area3,
.comment_area4 {
	width: 100%;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 box-sizing: border-box;
}
.w30per.flt_rgt.t_right .btn_line2 a{
	margin-top:10px;
	
}
.ev_nintei{
	display:block;
	padding-top:10px;
	padding-left:0;
}
/**/}
.open_area {
	margin: 0 0px 10px;
}
.open_area a {
	display: block;
}
.open_area .toggle2.toggle_menu .child {
	display: none;
	padding: 10px;
}
.open_area .toggle2.toggle_menu.active .child {
	display: block;
}
.open_area .toggle2.toggle_menu .toggle_title {
	color: #0059b2;
	border-bottom: 1px solid #ddd;
	padding: 10px 0 10px 12px;
	cursor: pointer;
	background: #f8f8f8;
}
.open_area .toggle2.toggle_menu .toggle_title:hover {
	color: #922a40;
	text-decoration: underline;
	background: #eee;
}
.switch .toggle_menu:after {
	position: absolute;
	top: 26px;
	right: 10px;
	margin-top: -1.4rem;
	content: '>';
	font-size: 1.4rem;
	font-weight: bold;
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-moz-transition: all, 0.25s, linear;
	-o-transition: all, 0.25s, linear;
	-webkit-transition: all, 0.25s, linear;
	transition: all, 0.25s, linear;
}
.switch .toggle_menu.active:after {
	-moz-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.toggle_menu {
	display: block;
	position: relative;
}
/* Chrome, Safari, Edge, Opera */
input.hide_scroll::-webkit-outer-spin-button,
input.hide_scroll::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type=number].hide_scroll {
  -moz-appearance: textfield;
}
