@charset "utf-8";
/* CSS Document */
#contents{
	padding-bottom: 0;
}

#loginPart {
	background-color: #ffffff;
	border: 1px solid #f2f2f2;
	padding: 24px 24px 44px;
	margin: 0 auto 23px;
	width: 312px;
	float: left;
	font-size: 1.4rem;
}

.loginPartComplete {
	width: auto !important;
}


.formList {
	border-collapse: separate;
	border-spacing: 20px;
	margin-top: 1em; 
}

.formList dt {
	color: #666666;
	font-weight: bold;
}

.formList dd {
	margin-bottom: 22px;
}

.nessary {
	color: #ff0000;
}

.ps {
	text-align: right;
	display: block;
	font-size: 10px;
	padding: 2px 0 0 0;
}


.textStyle {
	background-color: #fcfcfc;
	border: 1px solid #e7e7e1;
	padding: 2px;
	line-height: 30px;
}


.midWidth {
	width: 305px;
}



.submitBox {
	text-align: center;
	width: 192px;
	height: 42px;
	line-height: 42px;
	margin: 0 auto;
	font-size: 14px;
	border-radius: 4px;
	position: relative;
}

.submitBox.joinBtn {
	background: #2FDEA5;
}

.submitBox.loginBtn {
	background: #FC5696;
}

.submitBox::before {
	content: "";
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50px;
	width: 16px;
	height: 16px;
	z-index: 1;
	background: #fff;
}

.submitBox a {
	color: #ffffff;
	text-decoration: none;
	display: block;
	font-weight: 600;
}

.submitBox a::before {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0;
	margin: auto;
	z-index: 2;
	right: 16px;
	width: 4px;
	height: 4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: 2px solid #2FDEA5;
    border-right: 2px solid #2FDEA5;
}

.submitBox .loginBtnStyle {
	display: inline-block;
}

.submitBox .loginBtnStyle::before {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0;
	margin: auto;
	z-index: 2;
	right: 16px;
	width: 4px;
	height: 4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: 2px solid #FC5696;
    border-right: 2px solid #FC5696;
}

.btnStyle {
	/* text-indent: -9999px; */
	color: #fff;
	width: 191px;
	height: 42px;
	border: none;
	cursor: pointer;
}

#btnLogin {
	background: transparent;
	margin: 0 0 10px 0;
	font-weight: 600;
}

#btnRegist {
	background: url(../img/login/btnRegist.jpg) no-repeat left top;
}

#btnConfirm {
	background: url(../img/contact/btnConfirm.jpg) no-repeat left top;
}

#btnSend {
	background: transparent;
}

.subTtl {
	margin-bottom: 20px;
	color: #2FDEA5;
	text-align: center;
	font-size: 22px;
	padding: 10px 0 5px;
	border-bottom: 1px solid #f4f4e9;
	font-weight: 600;
}


#firstTimePart {
	background-color: #ffffff;
	width: 305px;
	border: 8px solid #f4f4e9;
	padding: 0 10px 30px;
	float: right;
}

.firestTimeIntro {
	text-align: center;
	padding-bottom: 15px;
	font-size: 1.4rem;
}

.firestTimeIntro a,
.ps a {
	color: #49a5f4;
	font-weight: 600;
	text-decoration: underline;
}

#shopLoginTtl {
	background: url(../img/login/arrow.jpg) no-repeat left top;
	padding: 0 0 0 17px;
	margin-bottom: 10px;
	width: 230px;
}

.active {
	background: url(../img/login/arrow_active.jpg) no-repeat left top !important;
}

.boxStyle {
	margin-bottom: 10px;
}

.itemBox dt {
	color: #ffffff;
	padding: 3%;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	background: -moz-linear-gradient(center top, #5E85E2 0%, #0835a1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5E85E2), color-stop(1, #0835a1));
}

.itemBox dt .arrow {
	background: url(../img/recruit/arrow.png) no-repeat right center / 11px 11px rgba(0, 0, 0, 0);
}

.itemBox dt.active .arrow {
	background: url(../img/recruit/arrow_active.png) no-repeat right center / 11px 11px rgba(0, 0, 0, 0);
}


/*--- shop_modal ---*/
.modal_open{
  cursor: pointer;  
}

.modal {
    visibility: hidden;
	z-index: -1;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    
}

.modal.open {
    visibility: inherit;
    height: 100vh;
    z-index: 1050;
}

.modal_bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal_content {
    background: #fff;
    left: 50%;
    padding: 40px 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    max-width: 490px;
    box-sizing: border-box;
}

.modal_content_head {
  display: flex;
  border-bottom: 1px solid #E8E5E5;
  padding-bottom: 10px;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal_content_head strong{
	color: #F0619A;
	font-weight: bold;
}

.modal_content p{
	padding-bottom: 10px;
}

.attention{
	display: block;
	color: #ff0000;
	font-weight: bold;
}

.modal_content ul{
	margin-bottom: 20px; 
}

.modal_content li {
  list-style: disc;
  margin-left: 16px;
}

.modal_content li #login_id_input_realtime {
	color: #ff0000;
	font-weight: bold;
}

.modal_content_head .btn_close{
	position: relative;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.modal_content_head .btn_close span{
	position: absolute;
    width: 16px;
    height: 2px;
    background: #aaa;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;	
}

.modal_content_head .btn_close span:nth-of-type(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.modal_content_head .btn_close span:nth-of-type(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}






@media screen and (max-width: 896px) {

	input{
		font-size: 16px;
		font-size: 1.6rem;
	}	


	#innerBox {
		width: 100%;
		margin: 0 auto;
	}

	#loginPart {
		width: 92%!important;
		margin: 0 auto 40px;
		padding: 4% 5% 14%;
	}

	.midWidth {
		width: 98%;
	}

	#firstTimePart {
		width: 92%;
		margin: 0 auto 40px;
		padding: 4% 2%;
	}

	.subTtl {
		text-align: center;
		margin: 0 auto 10px;
	}

	.subTtl span {
		border-left: none !important;
	}


	.modal_content {
		top: 50%;
	    width: 94%;
		padding: 30px 20px;
		height: 50%;
        overflow: scroll;
	}

}