@charset "utf-8";
/* CSS Document */

.contents {
	max-width: 1260px;
	width: 100%;
}
.main_in {
	margin: 10px;
	padding: 10px 30px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.main_in p {
    margin: 0;
}

.main {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
	width: 100%;
	border-top: 10px solid #FFF;
	border-left: 10px solid #FFF;
	margin-bottom: 1.5em;
}
.main th {
	padding: 10px;
	font-weight: bold;
	color: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	background: #080059;
	text-align: center;
	white-space: nowrap;
	width: 150px;
}

.main td {
	padding: 10px;
	vertical-align: middle;
	background: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
}

.text_big {
	font-size:2.0rem;
	font-weight: bold;
}

.sub_title {
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	gap: 30px;
	border-bottom: 1px solid #080059;
}

.preparing {
	font-size:3.0rem;
	text-align: center;
}

.entry_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	padding: 10px 5px;
    margin: 10px auto;
	border: 1px solid #080059;
	text-decoration: none;
	border-radius: 7px;
}

.entry_button:hover {
	background: #E2E8EC;
	color: #080059;
	text-decoration: none;
}

.entry_disabled_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	padding: 10px 5px;
	margin-top: 10px;
	margin-bottom: 5px;
	border: 1px solid #626263ff;
	background: #ccccccff;
	opacity: 75%;
	color: #626263ff;
	text-decoration: none;
	border-radius: 7px;
	pointer-events: none;
}

.entry_disabled_button:hover {
	background: #acabaeff;
	color: #626263ff;
	text-decoration: none;
}

.category_table {
	width: 95%;
	margin: 0.5em auto;
	border-collapse: collapse;
	border: solid 1px rgb(95, 90, 147);
}

.category_table td {
	border-right: solid 1px rgb(95, 90, 147);
	border-bottom: solid 1px rgb(95, 90, 147);
	padding: 3px 7px;
	/* text-align: center; */
}

.category_table th {
	border-right: solid 1px rgb(95, 90, 147);
	border-bottom: solid 1px rgb(95, 90, 147);
	padding: 3px 7px;
	text-align: center;
}

.bg-main-color {
	background: #080059;
	color: white;
}

ol.list_brackets {
	margin-left: 1.2em;
	padding: 0;
}

ol li {
	line-height: 1.2;
	margin-bottom: 10px;
}

.content_padding {
	margin-top: 20px;
	margin-bottom: 30px;
}

.text_red {
	color: red;
}

.text_blue {
	color: blue;
}

.text_bold {
    font-weight: bold;
}

.text_right {
    text-align: right;
}

.block {
    margin-bottom: 20px;
}

.step {
    font-weight: bold;
    margin: 0 10px 20px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-left: 4px solid #080059;
    border-bottom: 1px solid #080059;
}

.col_content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
}

.col_content .img {
	max-width: 400px;
	margin: 10px;
}

.col_content .img img {
	width: 100%;
	border: 1px solid #000;
}

.col_content .img img:hover {
	opacity: 50%;
}

.period {
	font-size: 20px;
	padding-bottom: 5px;
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	.contents {
		padding: 0 10px;
	}
	.left-contents {
		width: 210px;
	}
	.middle-contents {
		width: calc(100% - 240px);
	}
	
	.period {
		width: 70%;
	}
}

/* 表示領域が570px以下の場合に適用するスタイル */
@media print, screen and (max-width: 570px) {
	.category_table {
		width: 100%;
	}

	.main_in {
		padding: 10px;
	}

	.sub_title {
		flex-direction: column;
		gap: 10px;
	}
}
