@charset "UTF-8";

/*-----------------------
	リセットcss
-----------------------*/

*, *:before, *:after{
    box-sizing: border-box;
}
html{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
body{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    width: 100%;
    height: 100%;
	margin: 0;
    overflow: hidden;
	background-color: #E7EEF1;
}
a{
    color: inherit;
    text-decoration: none;
}

select,
input,
button{
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	border: none;
	outline: none;
	color: inherit;
	margin: 0;
}

input[type="radio"],
input[type="checkbox"]{
	display: none;
}

input[type="text"]:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #fff inset;
}

input[type="text"]:disabled:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}
/*-----------------------
	共通要素
-----------------------*/

body{
	font-family: "Yu Gothic UI", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "Roboto", "Meiryo", "Helvetica Neue", sans-serif;
	color: #333333;
}

.common_wrapper{
	position: absolute;
    left: 50%;
    top: 0;
    width: 1366px;
    overflow: hidden;
    transform-origin: center top;
    transform: translate(-50%, 0);
}

.common_header{
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 50px;
}

.common_logo_wrapper{
	width: 105px;
	height: 36px;
	position: relative;
	margin-right: 50px;
}

.common_logo{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.common_header_title{
	font-size: 18px;
	font-weight: bold;
}

.common_body{
	width: 100%;
    height: calc(100% - 80px);
    overflow-x: hidden;
    overflow-y: auto;
}

.caution{
	position: relative;
	padding-left: 30px;
	color: #dc0032;
	font-weight: bold;
}

.caution::before{
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	background-image: url("../images/caution.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.radio_btn{
	position: relative;
	padding-left: 29px;
	font-size: 16px;
	cursor: pointer;
}

.radio_btn::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	background-image: url("../images/radio_off.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 19px;
	height: 19px;
}

input[type="radio"]:checked + .radio_btn::before{
	background-image: url("../images/radio_on.png");
}

.common_modal{
	display: none;
    position: absolute;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.common_modal_scroll_inner{
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100%;
}

.common_modal_back{
	position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.common_modal_contents{
	position: relative;
    z-index: 2;
    width: 700px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
	margin: 30px;
}

.common_modal_title{
	font-size: 20px;
	font-weight: bold;
	line-height: 27px;
	padding-bottom: 6px;
	margin-bottom: 10px;
	position: relative;
}

.common_modal_title.underline::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #dc0032;
}

.common_modal_text{
	font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.common_modal_close{
	position: absolute;
    right: -25px;
    top: -25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
	background-image: url("../images/modal_close.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.modal_privacy_num{
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	margin-bottom: 10px;
}

.modal_privacy_text{
	margin-bottom: 9px;
}

.modal_privacy_text.text_head{
	padding-left: 20px;
}

.modal_privacy_red{
	color: #dc0032;
	text-decoration: underline;
	font-weight: bold;
}

/*-----------------------
	registration.html
-----------------------*/

/*登録ページのみ個別のヘッダー*/
.registration_header{
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	padding: 0 50px;
	border-bottom: 1px solid rgba(0,0,0,0.16);
	background: #fff;
}

.registration_logo_wrapper{
	width: 114px;
	height: 39px;
	position: relative;
	margin-right: 50px;
}

.registration_logo{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.registration_header_title{
	font-size: 18px;
	font-weight: bold;
}

.registration_content{
	width: 100%;
	min-height: 100%;
	position: relative;
	background: #e7eef1;
	padding: 48px 0 200px 0;
}

.registration_title{
	font-size: 24px;
	font-weight: bold;
	line-height: 32px;
	text-align: center;
	margin-bottom: 24px;
}

.registration_title_sub{
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin-bottom: 24px;
}

.registration_title_sub.red{
	color:#DC0032;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin-bottom: 24px;
}

.registration_form{
	width: 700px;
	background: #fff;
	margin: 0 auto;
	border-radius: 5px;
	padding: 50px;
}


.registration_caution{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.registration_item_wrapper{
	margin-bottom: 20px;
}


.registration_item_name{
	font-size: 16px;
	font-weight: bold;
	line-height: 21px;
	margin-bottom: 3px;
	display: flex;
	align-items: center;
}

.registration_item_wrapper[data-id="company"] .registration_item_name,
.registration_item_wrapper[data-id="kind"] .registration_item_name,
.registration_item_wrapper[data-id="reason"] .registration_item_name{
	margin-bottom: 10px;
}

.registration_radio_wrapper{
	display: flex;
	align-items: center;
	gap: 0 32px;
	margin-bottom: 20px;
}

.before_company.disabled,
.after_company.disabled{
	display: none;
}

.before_company,
.after_company{
	width: 64px;
	flex: 1 0 auto;
}

.registration_input_text{
	width: 600px;
	height: 50px;
	flex: 1 1 auto;
	border: 1px solid #ccc;
	background :#fff;
	padding: 13px 20px;
	font-size: 18px;
}

.registration_input_text::-ms-reveal{
	display: none;
}

.registration_input_text:read-only{
	background: #f7f7f7;
}

.registration_input_text::placeholder{
	color: #ccc;
}

.registration_item_wrapper.err1 .registration_input_text,
.registration_item_wrapper.err2 .registration_input_text,
.registration_item_wrapper.err3 .registration_input_text{
	border-color: #dc0032;
	background: #fef2f4;
}

.registration_item_wrapper.err1 input[type="text"]:-webkit-autofill,
.registration_item_wrapper.err2 input[type="text"]:-webkit-autofill,
.registration_item_wrapper.err3 input[type="text"]:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #fef2f4 inset;
}

/* .registration_item_wrapper.err1 input[type="text"]:disabled:-webkit-autofill,
.registration_item_wrapper.err2 input[type="text"]:disabled:-webkit-autofill,
.registration_item_wrapper.err3 input[type="text"]:disabled:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #fef2f4 inset;
} */



.registration_company_wrapper{
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-bottom: 5px;
}

.registration_company_coution,
.registration_password_coution{
	position: relative;
	padding-left: 19px;
	font-size: 14px;
	line-height: 19px;
}

.registration_company_coution::before,
.registration_password_coution::before{
	content: "※";
	position: absolute;
	/* top: 50%; */
	left: 0;
	/* transform: translate(0,-50%); */
}

.registration_name_wrapper{
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.registration_input_name{
	width: 295px;
	height: 50px;
	border: 1px solid #ccc;
	padding: 13px 20px;
	font-size: 18px;
}

.registration_input_name::placeholder{
	color: #ccc;
}

.registration_item_wrapper.err1 .registration_input_name{
	border-color: #dc0032;
	background: #fef2f4;
}

.registration_kind_wrapper{
	display: flex;
	flex-wrap: wrap;
	gap : 10px 28px;
}

.registration_kind:nth-of-type(odd){
	width: 285px;
}

.registration_location_wrapper{
	position: relative;
}

.registration_location_wrapper::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translate(0,-50%);
	background-image: url(../images/select_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 12px;
	height: 8px;
}

.registration_location{
	width: 600px;
	border: 1px solid #ccc;
	padding: 15px 34px 14px 20px;
	font-size: 16px;
}

.registration_tel_wrapper{
	display: flex;
	gap: 0 22px;
}

.registration_tel{
	width: 185px;
	height: 50px;
	border: 1px solid #ccc;
	position: relative;
	padding: 13px 20px;
	font-size: 18px;
}

.registration_item_wrapper.err1 .registration_tel,
.registration_item_wrapper.err2 .registration_tel{
	border-color: #dc0032;
	background: #fef2f4;
}

.registration_tel_haifun{
	position: relative;
}

.registration_tel_haifun::before{
	content: "ー";
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translate(0,-50%);
	font-size: 16px;
	font-weight: bold;
	width: 10px;
	height: 21px;
}

.registration_reason_wrapper{
	display :flex;
	flex-wrap: wrap;
	gap: 10px 149px;
}

.registration_reason:nth-of-type(odd){
	width: 151px;
}

.registration_reason.w-342{
	width: 342px;
}

.registration_reason_text{
	width: 600px;
	height: 50px;
	background: #fff;
	border: 1px solid #ccc;
	padding: 13px 20px;
	font-size: 18px;
}

.registration_item_wrapper.err1 input:not(:disabled).registration_reason_text{
	border-color: #dc0032;
	background: #fef2f4;
}

.registration_reason_text:disabled{
	background: #f7f7f7;
}

/* パスワード追加分 */
.registration_item_wrapper[data-id="password"] .registration_input_text{
	margin-bottom: 5px;
}

.registration_input_pass_wrraper{
	position: relative;
}

.registration_input_pass_wrraper .registration_input_text{
	padding-right: 56px;
}

.password_eye{
	background-image: url(../images/eye-slash-solid.svg);
	background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
	width: 22px;
	height: 19px;
	position: absolute;
	right: 0;
	top: 30%;
	z-index: 100;
	margin-right: 16px;
	cursor: pointer;
}
.password_eye.active{
	background-image: url(../images/eye-solid.svg);
}
/* パスワード追加分ここまで */


.registration_privacy{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	margin-bottom: 21px;
	font-size: 14px;
	font-weight: bold;
}

.registration_privacy_label{
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

.registration_privacy_label::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	background-image: url("../images/check.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

input[type="checkbox"]:checked + .registration_privacy_label::before{
	background-image: url("../images/checked.png");
}

.registration_privacy_red{
	color: #dc0032;
	text-decoration: underline;
}

.registration_btn,
.login-btn,
.signup-btn{
	width: 360px;
	height: 50px;
	background: #dc0032;
	color: #fff;
	text-align:center;
	margin: 0 auto;
	display: block;
	border-radius: 4px;
	padding: 14px 0 13px 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
}

.registration_btn:hover,
.login-btn:hover,
.signup-btn:hover{
	background: #ed7f98;
}


.login-btn.disabled,
.registration_btn.disabled{
	background: #ccc;
	pointer-events: none;
}

.registration_err_txt1,
.registration_err_txt2,
.registration_err_txt3{
	display: none;
	color: #dc0032;
	position: relative;
	padding-left: 14px;
	margin-left: 15px;
	font-size: 12px;
}

.registration_item_wrapper.err1 .registration_err_txt1{
	display: block;
}

.registration_item_wrapper.err2 .registration_err_txt2{
	display: block;
}

.registration_item_wrapper.err3 .registration_err_txt3{
	display: block;
}

.registration_err_txt1::before,
.registration_err_txt2::before,
.registration_err_txt3::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 12px;
	transform: translate(0,-50%);
	background-image: url("../images/caution.png");
	background-size: contain;
	background-repeat: no-repeat;
}

/*登録完了画面*/
.maintitle{
	font-size:20px;
	font-weight:bold;
}

.header{
	top:0;
	width:100%;
	height:80px;
	position:fixed;
	background-color:#FFFFFF;
}

.logo{
	left:50px;
}

.title{
	top:28px;
	left:218px;
	position:absolute;
}

.registration_container{
	margin-top:100px;
	text-align:center;
}

.contents_inner {
    width: 780px;
	background: #FFFFFF;
	padding: 40px 100px;
	margin: 20px auto 50px;
}

.contents-info-title {
	font-size: 24px;
	margin-bottom:25px;
}

.contents-info-text{
	font-size: 16px;
}

.contents-info-text.red{
	color:#DC0032;
	font-weight:bold;
}

.signup-btn.disabled{
    background: #CCCCCC;
    pointer-events: none;
}

.warning{
    background: rgba(0,0,0,0.5);
    margin: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: rgb(255,255,255);
    display: none;
    position: fixed;
    z-index: 9999;
}

.warning p{
    top:50%;
    font-size:40px;
    position:relative;
    text-align:center;
}


/* ユーザ登録以外のページ */
body:not([data-id="registration"]) .registration_form{
	width: 440px;
	padding: 40px;
}
body:not([data-id="registration"]) .registration_input_text{
	width: 360px;
}

[data-id="registcomp"] .signup-btn{
	margin-bottom: 48px;
}

.exhibition-info {
	padding-top: 16px;
	font-size: 16px;
	text-align: center;
	margin-bottom: 16px;
	line-height: 24px;
}

.exhibition-info-before {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 8px;
}

.add-schedule-btn{
	width: fit-content;
    display: flex;
	align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #1F93EC;
    padding: 7px 6px;
    background: #1F93EC14;
    border: 1px solid #1F93EC;
    border-radius: 4px;
    cursor: pointer;
	margin: 0 auto;
}

[data-id="after_sending_screen"] .add-schedule-btn{
	margin: 0;
}

.add-schedule-btn::before{
    content: '';
    display: block;
    width: 13.5px;
    height: 15px;
    margin-right: 4.25px;
    background: url('../images/calendar.png') no-repeat;
    background-size: contain;
}

.add-schedule-btn:hover {
    opacity: 0.7;
}

.registration_title_before{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 24px;
}

.registration_video {
    width: 476px;
    height: 268px;
	margin: 0 auto 24px;
    background: gray;
    text-align: center;
    color: white;
}

.registration_schedule{
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.registration_date{
	font-size: 18px;
	font-weight: bold;
}

.registration_before{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 24px;
}

.sp-break{
	display: none;
}

.pc-only-visible{
	color: inherit;
	font-weight: inherit;
}

/* ------------------

	Preログイン画面

--------------------*/

.pre_login_form{
	padding: 48px 40px;
	width: 440px;
	margin: 0 auto;
}

.pre_login_form_title{
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.login_error_box{
    display: flex;
    padding: 4px 10px;
    color: #DC0032;
    background: #FFF2F5;
    border: 2px solid #DC0032;
}

.login_error_box_left{
    margin-right: 10px;
}

.login_error_box_left i{
    font-size: 15px;
}

.login_error_box_right{
    padding-top: 1px;
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
}

.login_error_box_right span{
    display: block;
    margin-top: 5px;
}

.pre_login_form_container{
	padding-top: 20px;
}

.pre_login_form_box{
	margin: 0 auto 8px;
}

.pre_login_form_box.pass{
	margin-bottom: 40px;
}

.pre_login_form_box_title{
	font-size: 14px;
	font-weight: bold;
}

.pre_login_form_box_inpt{
	width: 360px;
	height: 50px;
	padding: 16px 20px 13px;
	border: 1px solid #CDD6DD;
	background: #FFFFFF;
}

.pre_login_form_box_inpt::placeholder{
	color: #CDD6DD;
	font-size: 16px;
	font-weight: 400;
}

[data-id="pre-login"] #container{
	width: 100%;
    height: 100%;
}

[data-id="pre-login"] .login-btn{
	width: 360px;
	margin: 0 0 40px;
}

[data-id="pre-login"] .pre_login_form_box_inpt{
	font-size: 18px;
}

.login_contact{
	font-size: 16px;
	font-weight: bold;
}

/* タブレット端末 */
@media screen and (hover: none) and (max-width: 1380px) {
	.registration_item_name{
		margin-bottom: 8px;
		flex-wrap: wrap;
		gap: 0 15px;
	}

	.registration_err_txt1, .registration_err_txt2, .registration_err_txt3{
		margin-left: 0;
	}

	.registration_kind_wrapper,
	.registration_reason_wrapper{
		flex-direction: column;
	}

	.registration_kind:nth-of-type(odd),
	.registration_reason:nth-of-type(odd){
		width: auto;
	}

	
}

/* スマホ端末 */
@media screen and (max-width: 650px) {

	.common_wrapper {
		width: 390px;
	}

	.common_modal_contents {
		width: 334px;
		padding: 20px;
		margin: 100px 0;
	}

	.common_modal_text{
		font-size: 13px;
	}

	.common_body{
		height: calc(100% - 60px);
	}

	.caution{
		padding-left: 33.6px;
	}

	.caution::before{
		top: 1px;
	}

	.radio_btn {
		padding-left: 23px;
		font-size: 14px;
	}

	[data-id="registration"] .registration_header {
		border: none;
	} 

	.registration_header{
		height: 60px;
		padding: 0 16px;
	}

	.registration_logo_wrapper{
		width: 81.38px;
		height: 28px;
		position: relative;
		margin-right: 16px;
	}

	.registration_header_title{
		font-size: 14px;
	}

	[data-id="registration"] .registration_content{
		padding-top: 8px;
		background: #ffffff;
	}

	.registration_title{
		font-size: 23px;
	}

	.registration_content{
		padding: 48px 16px 200px ;
	}

	.registration_title_sub{
		font-size: 13px;
	}

	.registration_title_sub.red{
		font-size: 13px;
	}

	.registration_form{
		width: auto;
		padding: 0;
		margin: 0;
		border-radius: 0;
	}

	.registration_caution{
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
	}

	.registration_item_wrapper[data-id="company"] .registration_item_name,
	.registration_item_wrapper[data-id="kind"] .registration_item_name,
	.registration_item_wrapper[data-id="reason"] .registration_item_name {
		margin-bottom: 8px;
	}

	.registration_radio_wrapper{
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 8px;
		gap: 8px 32px;
	}

	.registration_company_wrapper{
		margin-bottom: 8px;
	}

	.registration_company_coution,
	.registration_password_coution{
		padding-left: 14px;
	}

	.registration_item_wrapper{
		margin-bottom: 24px;
	}

	.registration_input_text{
		width: 358px;
		padding: 13px 12px;
	}

	.registration_name_wrapper {
		gap: 0 8px;
	}

	.registration_input_name{
		width: 175px;
		padding: 13px 12px;
	}

	.registration_kind_wrapper {
		gap: 8px 28px;
	}

	.registration_kind:nth-of-type(odd){
		width: 340px;
	}
	
	.registration_location {
		width: 358px;
		padding: 15px 34px 14px 12px;
	}

	.registration_tel_wrapper {
		gap: 0 22px;
	}

	.registration_tel {
		width: 104px;
		padding: 13px 12px;
	}

	.registration_tel_haifun::before {
		left: -16px;
	}

	.registration_reason_wrapper{
		gap: 8px 149px;
	}

	.registration_reason_text{
		width: 100%;
		padding: 13px 12px;
	}

	.registration_item_wrapper[data-id="password"] .registration_input_text{
		margin-bottom: 8px;
	}

	.registration_privacy {
		margin-top: 65px;
		margin-bottom: 16px;
	}

	[data-id="registration"] .registration_btn{
		width: 358px;
	}

	.registration_container{
		margin: 48px 16px 0;
		
	}

	.registration_item_name{
		margin-bottom: 8px;
	}

	.registration_btn,
	.login-btn{
		width: 310px;
		padding: 12px 0;
	}

	.signup-btn {
		padding: 12px 0;
	}

	/* ユーザ登録以外のページ */
	body:not([data-id="registration"]) .registration_form{
		width: 359px;
		padding: 24px;
	}
	body:not([data-id="registration"]) .registration_input_text{
		width: 310px;
	}

	.registration_video {
		width: 357px;
		height: 201px;
	}

	.registration_schedule{
		display: flex;
		gap: 8px;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.registration_before{
		font-size: 14px;
	}
	

	.sp-break{
		display: inline;
	}

	.pc-only-visible{
		display: none;
	}


	.pre_login_form{
		padding: 40px 16px;
		width: 390px;
		margin: 0 auto;
	}
	
}