@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 {
	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: 15px 5px;
	margin-top: 10px;
	margin-bottom: 5px;
	color: #fff !important;
	background: #ed6b04;
	font-size:2.0rem;
	text-decoration: none;
	border-radius: 7px;
}

.entry_button:hover {
	background-color: #fd9644;
	color: #fff;
	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;
}

dl.list_faq {
	margin: 0 0 10px;
	padding: 8px 5px 18px;
	border-bottom: dashed 1px #ddd;
}

dl.list_faq dt {
	width: 100%;
	margin: 0 0 5px;
	padding: 0;
	color: #080059;
	font-weight: 600;
	display: flex;
}

dl.list_faq dd {
	margin: 0;
	padding: 0;
	display: flex;
}

dl.list_faq .question {
	width: 30px;
	margin: 0;
	padding: 0;
}

dl.list_faq dd .question {
	padding-left: 7px;
	color: #ed3434;
	font-weight: 600;
}

dl.list_faq .answer {
	width: calc(100% - 30px);
	margin: 0;
	padidng: 0;
}

.category_table {
	width: 50%;
	margin: 0.5em 0;
	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;
}

.bg-main-color {
	background: #080059;
	color: white;
}

ol.ol01 {
	margin-left: 1em;
	padding: 0;
}

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;
}

.period {
	font-size: 20px;
}

.index_menu {
	margin: 20px;
}

.workshop_table {
	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;
}
.workshop_table 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;
}
.workshop_table td {
	padding: 10px;
	vertical-align: top;
	background: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	.contents {
		padding: 0 10px;
	}
	.left-contents {
		width: 210px;
	}
	.middle-contents {
		width: calc(100% - 240px);
	}
	
	.period {
		width: 70%;
	}
}

.return_top {
	padding: 10px;
	border-radius: 5px;
	font-size: 1.4rem;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
	text-align: center;
	border: 1px solid #080059;
	background: #fff;
	box-shadow: 1px 1px 5px #948bf7ff;
}

@media (hover: hover) {
    .return_top:hover {
        color: #fff;
        background: #080059;
        text-decoration: none;
    }
}

.return_top:active {
    color: #fff;
    background: #080059;
    text-decoration: none;
}

.return_top.is-hidden {
    display: none;
}

/* 表示領域が570px以下の場合に適用するスタイル */
@media print, screen and (max-width: 570px) {
	.category_table {
		width: 100%;
	}

	.workshop_table th, td {
		display: block;
 		width: 100%;
	}

	.main_in {
		padding: 10px;
	}

	.sub_title {
		flex-direction: column;
		gap: 10px;
	}

	.return_top {
		font-size: 1.2rem;
	}
}
