@charset "utf-8";

.js-modal-open {
	cursor: pointer;
}

.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.modal_bg{
	background: rgba(0,0,0,0.7);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal_content{
	background: #fff;
	/* 左メニューのwidthを考慮 */
/*	left: calc(50% - 115px);*/
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 30%;
	border-radius: 25px;
	height: 250px;
}

a.js-modal-close {
	text-decoration: none;
	position: absolute;
	top: 2px;
	right: 12px;
	font-size: 30px;
	line-height: 30px;
}

.modal_content .inner {
	padding: 20px;
	text-align: center;
	line-height: 2;
    height: calc(100% - 55px);
    display: flex;
    align-items: center;
}

.modal_content .inner.not_flex{
	display: block;
    align-items: inherit;
}

.modal_content .inner div.pop_title{
	color: #595757;
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	line-height: 1.4;
}
.modal_content .pop_text_contents{
	margin-top: 20px;
}

.modal_content .modal_button {
    border-top: 1px solid #c6c6c6;
    width: 100%;
    position: absolute;
    /*bottom: 0;*/

}

.modal_content .modal_button input {
	display: inline-block;
	font-size: 17px;
	padding: 6px 8px;
	outline: none;
    width: 100%;
    background: none;
    color: #989898;
    line-height: 2.5;
    border-radius: initial;
}
.modal_content .modal_button.choice input {
	width: calc(50% - 4px);
	margin: 0px;
}
.modal_content .modal_button.choice input:first-child {
    border-right: 1px solid #c6c6c6;
    color: #499ed8;
}


.modal_content .inner input[type="text"],
.modal_content .inner input[type="password"] {
	width: 100%;
}

.modal_content .inner div {
	max-width: 900px;
    max-height: 510px;
	margin-left: auto;
    margin-right: auto;
	width: 100%;
	font-size: 17.5px;
}

/*2020/12/23 kagawa add*/
.modal_content .inner div.t_left,
.modal_content .inner div.t_center,
.modal_content .inner div.pop_text_contents{
	font-size: 13.5px;
}

.modal_content .inner span.small {
	font-size: 12.5px;
}

.modal_content .pop_btn{
	text-align: center;
    margin-top: 30px;
}
.modal_content .create_btn.long_login_btn{
	width: 100%;
    max-width: 220px;
    border-radius: 0px;
	height: 40px;
    font-size: 15px;
}


/* レスポンシブ サイズ */
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 900px) {
	.modal_content{
		width: 50%;
	}
}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 480px) {
	.modal_content{
		width: 80%;
	}
}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 360px) {}
@media screen and (max-width: 320px) {}
