@charset "utf-8";

/* =====================================================
   PC（既存設計をベース）
   ===================================================== */

/*
NG: PC用CSSを media query で囲うと
    レスポンシブ上書きが困難になるため廃止
-----------------------------------------------------
@media print,screen and (min-width: 769px) {
@media print,screen {
-----------------------------------------------------
*/

.center {
	text-align: center;
}

.font_red {
	color: #F50000 !important;
}

.font_bold {
		font-weight: 700 !important;
}

.form-control,
.form-select {
	border-radius: initial;
}

.backcolor_gray {
	background-color: #96A9B3 !important;
}

.file-name { margin-top: 6px; color: #374151; font-size: 0.95rem; }
.file-name .muted { color: #6b7280; }
.file-name .error { color: #b91c1c; }

/* ログイン タイトル */
#contents_title {
	text-align: center;
	width: 100%;
	margin-top: 60px;
	padding: 75px 0;
	font-size: 36px;
	font-weight: 700;
}

/* メインコンテンツ */
#main_contents {
	/*
	NG: 固定幅センタリングはSPで崩れる
	width: 800px;
	margin: 0 auto;
	*/
	margin-top: 116px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

#contents_flex {
	width: 800px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

#contents_explain,
#contents_message {
	text-align: center;
	font-size: 16px;
	line-height: 180%;
	font-weight: 400;
	margin-bottom: 30px;
}

.contents_label {
	font-size: 18px;
	font-weight: 700;
}

.contents_label2 {
	font-size: 16px;
	line-height: 180%;
}

#contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

#contents h1 {
	display: flex;
	width: 100%;
	padding: 80px 0;
	justify-content: center;
	align-items: center;
}

.contents_title_text {
	text-align: center;
	font-family: "Noto Sans CJK JP";
	font-size: 36px;
	font-weight: 700;
	line-height: 160%;
}

/* ボタン（PC） */
.btn_red {
	width: 350px;
	min-height: 56px;
	padding: 15px;
	font-size: 16px;
	font-weight: 700;
	background-color: #F50000;
	color: #FFF;
	margin-top: 30px;
	cursor: pointer;
	line-height: 120%;
}

.caution,
.caution2 {
	font-size: 14px;
	font-weight: 400;
	line-height: 180%;
}

.caution { margin-top: 10px; }
.caution2 { margin-top: 5px; }

.check_polisy {
	font-size: 16px;
	line-height: 180%;
}

/* メッセージ */
.message_block {
	width: 545px;
	border: 1px solid #CBD5DC;
	box-sizing: border-box;
	padding: 40px;
	text-align: center;
}

.message_block_title {
	font-size: 24px;
	font-weight: 700;
	line-height: 160%;
}

.message_block_body {
	margin-top: 30px;
	font-size: 16px;
	line-height: 180%;
}

/* 共通ボタンBOX */
.contents_button_box,
.contents_button_box_gray,
.contents_button_box_left {
	display: flex;
	width: 350px;
	min-height: 56px;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 16px;
}

.contents_button_box,
.contents_button_box_left {
	background: #F50000;
	cursor: pointer;
}

.contents_button_box_gray {
	background: #96A9B3;
}

.contents_button_box input,
.contents_button_box_left input,
.contents_button_box_gray input {
	width: 100%;
	text-align: center;
	font-family: "Noto Sans CJK JP";
	font-size: 16px;
	font-weight: 700;
	line-height: 120%;
	border: none;
	background: transparent;
}

.contents_button_box input,
.contents_button_box_left input {
	color: #FFF;
	cursor: pointer;
}

.contents_button_box_gray input {
	color: #627A86;
}

.button_large_arrow,
.button_large_arrow_icon,
.button_large_arrow_icon_gray,
.button_large_arrow_icon_left,
.button_large_icon_list_check {
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
}

.button_large_arrow_icon { background-image: url(/images/icon_arrow_right.svg); }
.button_large_arrow_icon_red { background-image: url(/images/icon_arrow_right_red.svg); }
.button_large_arrow_icon_gray { background-image: url(/images/icon_arrow_right_gray.svg); }
.button_large_arrow_icon_left { background-image: url(/images/icon_arrow_left.svg); }
.button_large_icon_list_check { background-image: url(/images/icon_list_check.svg); }

a.link_no_line {
	text-decoration: none;
}

.download {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #FFF;
	background-color: #F50000;
	padding: 4px 8px;
	text-decoration: none;
}

/* テキストページ */
.contents_text_page {
	max-width: 740px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contents_text_page p {
	font-size: 16px;
	line-height: 180%;
}

.width_free { width: unset !important; }
.height_free { height: unset !important; }

.disabled-link {
	pointer-events: none;
	opacity: 0.5;
}

/* =====================================================
   Tablet（768px 以下）
   ===================================================== */
@media screen and (max-width: 768px) {

	#contents_flex,
	.message_block,
	.btn_red,
	.contents_button_box,
	.contents_button_box_gray,
	.contents_button_box_left {
		width: 90%;
	}

	.contents_title_text {
		font-size: 30px;
	}

	
	#contents {
		padding-top: 0 !important;
	}

	#contents h1 {
		padding: 100px 0 60px 0;
	}

	#main_contents {
	    padding-bottom: 40px;

		margin-left: 5px;
		margin-right: 5px;;
	}
}

/* =====================================================
   Smartphone（737px 以下）
   ===================================================== */
@media screen and (max-width: 737px) {

	#contents_title {
		font-size: 26px;
		padding: 40px 0;
		margin-top: 30px;
	}

	.contents_title_text {
		font-size: 24px;
	}

	#contents_flex {
		flex-direction: column;
		gap: 20px;
	}

	.message_block {
		padding: 20px;
	}

	.btn_red,
	.contents_button_box,
	.contents_button_box_gray,
	.contents_button_box_left {
		width: 100%;
	}

}