@charset "UTF-8";
/*********************************************
 *
 * 新規会員登録
 * 各種お問い合わせ・カタログ請求
 *
 *********************************************/
body{
	margin: 0 auto;
	background: var(--bg-color);
}
.container{
	margin: 50px auto;
	padding: 50px;
	max-width: 1000px;
	background: #fff;
	/*box-shadow: 0 0 20px rgba(0,0,0,.1);*/
	position: relative;
}
.logo{
	margin: 0 0;
	width: 150px;
	display: block;
	position: absolute;
	right: 5%;
}
.logo img{
	width: 150px;
	height: auto;
}
.container p{
	margin: 10px 0;
}
h2{
	margin: 0 0 25px;
	border: none;
}
select,
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="text"]{
	width: 100%;
}
table{
	font-size: 1.4rem;
}
th{
	font-size: 1.5rem;

}
input[type="submit"].btm{
	margin: 5% auto 0;
}
/*th　左寄せ*/
.th_text_left{
	text-align: left;
	position: relative;
}
.formTable th{
	width: 30%;
}
/*必須*/
.hissu{
	margin: 0 5px;
	padding: 1px 5px;
	background: rgb(190,0,3);
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	display: inline-block;
	position: absolute;
	right: 10px;
}
/*テーブル内コメント*/
.note{
	color: #999;
}
a.btm_arrow{
	font-size: 1.5rem;
}
/*------------
新規会員登録
------------*/
/*----ステップ----*/
.member-step li{
	margin-bottom: 10px;
	padding: 10px;
	background: var(--bg-color);
	position: relative;
	text-align: center;
	flex: 1;
}
.member-step li.current:first-child:after,
.member-step li:nth-child(2).current:after,
.member-step li:nth-child(3).current:after,
.member-step li:nth-child(4).current:after,
.member-step li:nth-child(2).current:before,
.member-step li:nth-child(3).current:before,
.member-step li:nth-child(4).current:before,
.member-step li:nth-child(5).current:before{
	content: '';
	position: absolute;
	right:-15px;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 23px 0 23px 15px;
	border-color: transparent transparent transparent var(--accent-color);
	z-index: 1;
}
.member-step li:last-child.current:after{
	content: none;
}
.member-step li:nth-child(2).current:before,
.member-step li:nth-child(3).current:before,
.member-step li:nth-child(4).current:before,
.member-step li:nth-child(5).current:before{
	left:0;
	right: inherit;
	border-color: transparent transparent transparent var(--bg-color);
}
.member-step li.current{
	background: var(--accent-color);
	color: #fff;
}
.member-checkbox-ttl{
	margin: 15px 0 5px;
	font-size: 1.6rem;
	display: inline-block;
}
/*----利用規約----*/
.termsBox{
	margin-bottom: 5%;
	padding: 10px 15px;
	height: 300px;
	overflow-y: scroll;
	border: solid 1px var(--line-color);
	text-align: justify;
}
.terms-checkbox{
	text-align: center;
}
.termsBtn{
	width: 120px;
	height: 40px;
	font-weight: bold;
	font-size: 1.3rem;
	display: inline-block;
}

/*----エラー表示 ----*/
.onTeedaError {
	background-color: #FFCCCC !important;
}
.err_msg {
	color: red;
	font-weight: bold;
	text-align: left;
}