@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: 5px;
	font-weight: bold;
	color: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	background: #1E474B;
	text-align: center;
	white-space: nowrap;
	width: 150px;
}

.main th a {
    color: #FFF;
    text-decoration: underline;
}

.main th a:hover {
    opacity: 0.7;
}

.main td {
	padding: 10px;
	vertical-align: middle;
	background: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
}

.main_payment {
	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;
	overflow: auto;
}

.main_payment th {
	padding: 5px;
	font-weight: bold;
	color: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	background: #1E474B;
	text-align: center;
	white-space: nowrap;
	width: 150px;
}

.main_payment th a {
    color: #FFF;
    text-decoration: underline;
}

.main_payment th a:hover {
    opacity: 0.7;
}

.main_payment td {
	padding: 10px;
	vertical-align: middle;
	background: #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
}

.main_payment th:first-child {
    width: 280px;
}

.sub_title {
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	gap: 30px;
	border-bottom: 1px solid #1E474B;
}

.preparing {
	font-size:3.0rem;
	text-align: center;
}

.entry_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	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;
}

.content_padding {
	margin-top: 20px;
	margin-bottom: 30px;
}

ol.list_brackets {
	margin-left: 1.2em;
	padding: 0;
}

.text_red {
	color: red;
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	.contents {
		padding: 0 10px;
	}
	.left-contents {
		width: 210px;
	}
	.middle-contents {
		width: calc(100% - 240px);
	}
}

/* 表示領域が570px以下の場合に適用するスタイル */
@media print, screen and (max-width: 570px) {
    .main th, .main td {
        display: block;
        width: 100%;
    }

    .main_payment {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .main_in {
        margin: 0;
        padding: 10px; 
    }

    .sub_title {
        flex-direction: column;
        gap: 10px;
    }

	.card_img {
		width: 90%;
	}
}