@charset "utf-8";
/* ------------------------------------------------------------ registration */
#registration { padding: 100px 0 125px; }
#registration h2 { padding: 0 0 90px; text-align: left!important; }

#registration .sec { display: flex; padding: 35px 0; border-top: 1px solid #DDDDDD; width: 100%; }
#registration .sec h3 { width: 400px; font-size: 19px; font-family: 'Noto-Sans-JP-Medium'; }
#registration .sec h3 span { padding: 0 10px 0 0; font-size: 31px; font-family: neue-haas-grotesk-display, sans-serif; font-weight: 600; font-style: normal; }
#registration .sec h3 span.long { display: block; padding: 0 0 10px;  }
#registration .sec h3 .required { font-size: 12px; color: #C11A2D; font-weight: normal; }

#registration .sec .box { width: 800px; padding: 0 0 0 70px; }
#registration .sec .box p { padding: 10px 0 0; font-size: 18px; font-family: 'Noto-Sans-JP-Medium'; }

/* テキスト入力 */
#registration .sec .text_box { text-align: left; }
#registration .sec .text_box input[type="text"] { font-size: 18px; padding: 15px; width: 100%; border-radius: 5px; border: 1px solid #C6C6C6; }
#registration .sec .text_box input[type="text"].short { width: 200px; }
#registration .sec .text_box input[type="file"] { font-size: 14px; }

#registration .sec .address_box p { margin-bottom: 10px; }
#registration .sec .address_box p input { display: inline-block; width: auto !important; }

/* 利用区分選択 */
#registration .type_select { border-top: none; padding-top: 0; }
#registration .type_radio { display: flex; gap: 20px; }
#registration .type_label { display: flex; align-items: center; cursor: pointer; }
#registration .type_radio_input { display: none; }
#registration .type_radio_text {
	display: inline-block;
	padding: 20px 50px;
	border: 2px solid #C6C6C6;
	border-radius: 10px;
	font-size: 18px;
	font-family: 'Noto-Sans-JP-Medium';
	transition: all 0.3s;
}
#registration .type_radio_input:checked + .type_radio_text {
	background: #FFE8E8;
	border-color: #C11A2D;
}

/* 身分証明書種類 */
#registration .id_card_radio label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	cursor: pointer;
}
#registration .id_card_radio input[type="radio"] {
	margin-right: 10px;
}

/* 注意書き */
#registration .note {
	font-size: 13px !important;
	color: #666;
	padding: 5px 0 0 !important;
}

/* アップロード済みファイル表示 */
#registration .uploaded_file {
	display: inline-block;
	margin-bottom: 10px;
	padding: 8px 15px;
	background: #e8f5e9;
	border: 1px solid #4caf50;
	border-radius: 5px;
	color: #2e7d32;
	font-size: 14px !important;
}

/* 規約同意 */
#registration .box .terms_check p {
	line-height: 150%;
	padding: 0 0 20px;
}
#registration .terms_check label {
	display: block;
	margin-bottom: 15px;
	font-size: 16px;
	cursor: pointer;
}
#registration .terms_check input[type="checkbox"] {
	margin-right: 10px;
}
#registration .terms_check .required {
	font-size: 12px;
	color: #C11A2D;
}

#registration .terms_pdf {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
#registration .terms_pdf p {
	padding: 5px 0 !important;
}
#registration .pdf_download {
	display: inline-block;
	padding: 10px 20px;
	background: #404040;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
}
#registration .pdf_download:hover {
	background: #666;
}
#registration .pdf_upload {
	margin-top: 15px;
}
#registration .pdf_upload span {
	display: block;
	margin-bottom: 10px;
	font-size: 14px !important;
}

/* 支払い方法選択 */
#registration .payment_radio {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
#registration .payment_label {
	display: block;
	padding: 20px;
	border: 2px solid #C6C6C6;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
}
#registration .payment_label:has(input:checked) {
	background: #FFE8E8;
	border-color: #C11A2D;
}
#registration .payment_label input[type="radio"] {
	margin-right: 10px;
}
#registration .payment_text {
	font-size: 18px;
	font-family: 'Noto-Sans-JP-Medium';
}
#registration .payment_desc {
	display: block;
	margin-top: 5px;
	margin-left: 25px;
	font-size: 14px;
	color: #666;
}

/* 発行書類選択 */
#registration .documents_check label {
	display: block;
	margin-bottom: 15px;
	font-size: 16px;
	cursor: pointer;
}
#registration .documents_check input[type="checkbox"] {
	margin-right: 10px;
}

/* ステップインジケーター */
#registration .step_indicator {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 50px;
}
#registration .step_indicator .step {
	display: inline-block;
	padding: 10px 25px;
	background: #eee;
	border-radius: 5px;
	font-size: 14px;
	color: #999;
}
#registration .step_indicator .step.active {
	background: #C11A2D;
	color: #fff;
}
#registration .step_indicator .step.done {
	background: #404040;
	color: #fff;
}

/* ボタン */
#registration .btn {
	display: block;
	margin: 35px auto 0;
	padding: 25px 0;
	width: 335px;
	border-radius: 40px;
	background: #C11A2D;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: none;
	cursor: pointer;
}
#registration .btn:hover {
	opacity: 0.8;
}

#registration .btns {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}
#registration .btns .btn {
	margin: 0;
}
#registration .back.btn {
	background: #959595;
}

/* ------------------------------------------------------------ error */
#registration #error { }
#registration #error h3 { font-size: 32px; text-align: center; margin: 0 0 40px; padding: 0 0 30px; font-family: 'Noto-Sans-JP-Bold'; }
#registration #error .caution { font-size: 16px; text-align: center; margin: 0 0 40px; }
#registration #error .alert { margin: 0 0 50px; }
#registration #error .alert span { display: block; text-align: center; margin: 0 0 20px; color: #C11A2D; }

/* ------------------------------------------------------------ confirm */
#registration #confirm { }
#registration #confirm h3 { font-size: 32px; text-align: center; margin: 0 0 40px; font-family: 'Noto-Sans-JP-Bold'; }
#registration #confirm .caution { font-size: 16px; text-align: center; margin: 0 0 40px; }
#registration #confirm table { width: 100%; margin: 0 0 50px; font-size: 18px; }
#registration #confirm table tr { border-bottom: solid 1px #e5e5e5; }
#registration #confirm table tr:first-of-type { border-top: solid 1px #e5e5e5; }
#registration #confirm table tr th { width: 250px; line-height: 1.5; text-align: left; padding: 25px 0; font-family: 'Noto-Sans-JP-Bold'; }
#registration #confirm table tr td { line-height: 1.5; padding: 25px 0; }

/* ------------------------------------------------------------ thanks */
#thanks { margin: 50px 0 100px; }
#thanks h2 { font-size: 32px; text-align: center; margin: 0 0 40px; padding: 0 0 30px; font-family: 'Noto-Sans-JP-Bold'; }
#thanks .caution { font-size: 18px; text-align: center; line-height: 1.7; margin: 0 0 30px; }
#thanks small { display: block; font-size: 14px; text-align: center; line-height: 2; margin: 0 0 40px; }
#thanks .more { display: block; margin: 0 auto; width: 200px; text-align: center; color: #000; text-decoration: none; }

/* ------------------------------------------------------------
	mobile
------------------------------------------------------------ */
@media only screen and (max-width: 640px) {

#registration { padding: 40px 0 50px; }
#registration h2 { padding: 0 0 50px; }

#registration .sec { padding: 22px 0; flex-direction: column; }
#registration .sec h3 { width: 100%; padding: 0 0 18px; font-size: 16px; }
#registration .sec h3 span { font-size: 24px; }

#registration .sec .box { width: 100%; padding: 0; }

/* テキスト入力 */
#registration .sec .text_box input[type="text"] { font-size: 14px; padding: 12px; height: 50px; }
#registration .sec .text_box input[type="text"].short { width: 100%; }
#registration .sec .text_box input[type="text"].postal { width: 40% !important; }

#registration .box .terms_check p { font-size: 14px;}


/* 利用区分選択 */
#registration .type_radio {  gap: 10px; }
#registration .type_label { width: 50%;}
#registration .type_radio_text { padding: 15px 30px; font-size: 16px; width: 100%; text-align: center; }

/* ステップインジケーター */
#registration .step_indicator { gap: 5px; margin-bottom: 30px; flex-wrap: wrap; }
#registration .step_indicator .step { padding: 8px 15px; font-size: 12px; }

/* ボタン */
#registration .btn { width: 80%; padding: 20px 0; font-size: 18px; }
#registration .btns { flex-direction: column; align-items: center; gap: 15px; }
#registration .btns .back.btn { order: 2; }

/* 支払い方法 */
#registration .payment_label { padding: 15px; }
#registration .payment_text { font-size: 16px; }

/* ------------------------------------------------------------ error */
#registration #error h3 { font-size: 22px; margin: 0 0 25px; padding: 0 0 20px; }
#registration #error .caution { font-size: 14px; line-height: 1.7; margin: 0 0 40px; }
#registration #error .alert span { font-size: 14px; }

/* ------------------------------------------------------------ confirm */
#registration #confirm h3 { font-size: 22px; margin: 0 0 25px; }
#registration #confirm .caution { font-size: 14px; line-height: 1.7; margin: 0 0 40px; }
#registration #confirm table { display: block; }
#registration #confirm table tbody { display: block; }
#registration #confirm table tr { display: block; }
#registration #confirm table tr th { display: block; width: 100%; font-size: 14px; padding: 15px 0 5px; }
#registration #confirm table tr td { display: block; font-size: 16px; padding: 0 0 15px; }

/* ------------------------------------------------------------ thanks */
#thanks { margin: 30px 0 70px; }
#thanks h2 { font-size: 22px; margin: 0 0 25px; padding: 0 0 20px; }
#thanks .caution { font-size: 14px; line-height: 1.7; margin: 0 0 20px; }
#thanks small { font-size: 12px; text-align: left; margin: 0 0 30px; }

}
