@charset "UTF-8";

#sct02{
	font-size: 1.1rem;
}

label{
	box-sizing: border-box;
}
.form-grid{
	display: grid;
	grid-template-columns: 1fr;
	border: solid 1px #fff;
}

.form-group{
	display: flex;
	border: solid 1px #fff;
}

.form-label{
	flex: 0 0 35%;
	background: #bcdfe3;
	padding: 10px;
	box-sizing: border-box;
	font-weight: 500;
}

.form-field{
	flex: 1 1 auto;
	background: #eeeeee;
	min-width: 0;
	padding: 12px 8px;
	box-sizing: border-box;
}
.required-badge{
	color: red;
	font-weight: 900;
}
.optional-note{
	font-size: 0.8rem;
	font-weight: 400;
}
.hint{
	font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select {
	width: 100%;
	padding: 4px 8px;
	box-sizing: border-box;
}

.checkbox-group.two-col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:6px;
}

.radio-item{
	margin-right: 18px;
}

input[type="checkbox"]{
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-bottom: 5px;
	margin-right: 5px;
}


.seminar_intro{
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
}
.re_item_title{
	color: #D6006F;
}
.re_seminar_title{
	font-weight: 700;
	color: #008694;
}

.re_seminar_member{
	display: flex;
	gap:20px;
}

.inptBox{
	display: flex;
	gap:20px;
	margin: 16px 0;
}

.re_text_underline{
	text-decoration: underline;
}
.setting{
	font-size: 1.4rem;
	font-weight: 900;
	margin: 16px;
	margin-top: 48px;
	text-align: center;
}
.regist{
	padding-top: 28px;
}
.re_input_time{
	margin: 18px 0;
	margin-bottom: 32px;
	display: flex;
	gap:76px;
}
.re_input_time select{
	width: auto;
	padding: 4px;
}

.consultation_input{
	width: 100%;
	height: 8em;
	margin-bottom: 16px;
}
.re_matching_atention{
	font-weight: 900;
	color: red;
}


.re_input_time select:disabled {
	background: #f3f3f3;
	color: #999;
	cursor: not-allowed;
}

.submit-area{
	text-align: center;
}
.submit-area button{
	width: 300px;
	padding: 8px;
	font-size: 18px;
	font-weight: 700;
	border: solid 2px #000;
	border-radius: 18px;
	margin: 30px;
	transition: 0.2s;
}
.submit-area button:hover{
	color: #fff;
	background-color: #000;
	cursor: pointer;
}

.prvCol{
	width: 1000px;
	margin: 64px auto;
	margin-top: 100px;
}


/***************************************************/
/*確認画面*/
/***************************************************/
.wrap {
	max-width: 1000px;
	margin: 0 auto;
	background: #ffffff;
	padding: 30px;
	box-sizing: border-box;
}
.wrap h1 {
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #1f5fa8;
	font-size: 28px;
}
.wrap h2 {
	margin: 35px 0 15px;
	padding-left: 10px;
	border-left: 5px solid #1f5fa8;
	font-size: 20px;
}
p.note {
	margin: 0 0 20px;
	font-size: 14px;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 25px;
}
th, td {
	border: 1px solid #cccccc;
	padding: 12px;
	text-align: left;
	vertical-align: top;
}
th {
	width: 32%;
	background: #f0f4f8;
}
.empty {
	color: #999999;
}
.btn-area {
	margin-top: 35px;
	text-align: center;
}
.btn-box {
	display: inline-block;
	margin: 0 8px;
}
.btn-box button {
	min-width: 180px;
	padding: 14px 20px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}
.btn-back button {
	background: #666666;
	color: #ffffff;
}
.btn-submit button {
	background: #1f5fa8;
	color: #ffffff;
}
.small-note {
	margin-top: 10px;
	color: #666666;
	font-size: 13px;
	text-align: center;
}











@media (any-hover: none) or (max-width: 767px) {
	#sct02{
		font-size: 1rem;
	}
	.phone_version{
		height: auto;
		text-align: center;
	}
	.form-group{
		display: block;
		margin: 12px 0;
	}
	

	.form-label{
		display: block;
		width: 100%;
	}

	.checkbox-group.two-col {
		display: block;
	}
	.checkbox-group.two-col label{
		display: block;
	}
	
	.inptBox{
		display: block;
	}
	.re_seminar_member{
		display: block;
	}
	
	.re_input_time{
		display: block;
	}
	.re_input_time label{
		display: block;
		margin: 12px 0;
	}
	

	.prvCol{
		width: 94%;
		margin: 48px auto;
		margin-top: 80px;
	}
}







