@charset "utf-8";

.pc_only { display: block; }
.tablet_only { display: block; }
.sp_only { display: none; }

@media print, screen and (max-width: 981px) {

	.pc_only { display: block; }
	.tablet_only { display: none; }
	.sp_only { display: none; }

}
@media print, screen and (max-width: 768px) {

	.pc_only { display: none; }
	.sp_only { display: block; }

}





/* ヘッダー */
header {
	position: fixed;
	z-index: 998;
	width: 100%;
	height: 100px;
}
header #contents-header {

}
header #contents-header .contents-header-logo {
	position: absolute;
	top: 14px;
	left: 20px;
	width: 260px;
	height: auto;
}
header #contents-header .contents-header-menu-block {
	position: absolute;
	top: 32.5px;
	right: 20px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: fit-content;
	height: auto;
}
.header-menu-link-wrap {
	display: flex;
	width: fit-content;
	height: auto;
}
.header-menu-link {
	display: inline-flex;
	width: fit-content;
	height: auto;
	margin: 0 5px;
	font-size: 15px;
	font-weight: 700;
}
.header-menu-link a {
	color: #000;
	text-decoration: none;
}
.header-menu-link a:hover {
	color: #cf000e;
	text-decoration: underline;
}

.header-menu-exhibitors-wrap {
	display: flex;
	width: fit-content;
	height: 28px;
	margin: 0 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	background: #684a29;
	border-radius: 20px;
}
.header-menu-exhibitors-wrap a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 10px;
	text-decoration: none;
	color: #fff;
}

.header-menu-sns-wrap {
	display: flex;
	width: 135px;
	height: auto;
}
.header-menu-sns-link {
	display: inline-flex;
	width: 35px;
	height: 35px;
	margin: 0 5px;
}

#header-global-menu {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	justify-content: center;
	flex-wrap: nowrap;
}

#global-menu .global-menu-wrapper {
	position: absolute;
	top: -10px;
	right: 0;
}
#global-menu .global-menu-wrapper li {
	font-size: 1.1rem; 
}
#global-menu .global-menu-wrapper li a {
	padding: 8px 0;
}

#global-menu-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

#global-menu {
	width: 100%;
	/*width: 400px;*/
	height: auto;
	background-color: rgba( 255,255,255, 0.9 );
	position: fixed;
	top: 15px;
	right: 0;
	z-index: 100;
	transform: translate(120%);
	transition: all .3s;
}
#global-menu.open {
	transform: translate(0);
}

.global-menu-background {
	position: fixed;
	top: 0;
	right: 0;
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba( 0,78,162, 0.9 );
	z-index: 99;
	opacity: 0;
	transition: opacity 0.5s;
}
.global-menu-background.open {
	width: 400px;
	height: 100%;
	opacity: 1;
}

.global-menu-open {
	width: 100%;
	height: auto;
}

.global-menu-close {
	display: none;
	z-index: 101;
	padding-top: 12px;
}

.global-menu-close-btn {
	position: absolute;
	top: 0px;
	right: 20px;
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	z-index: 101;
	transition: opacity 0.5s;
}

#global-menu .global-menu-wrapper {
	position: absolute;
	top: 80px;
	right: 0;
	width: 350px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	display: flex; 
	flex-wrap: wrap;
	/*border-top: 1px solid #fff;*/
}
#global-menu .global-menu-wrapper li {
	display: flex; 
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto; 
	margin: 0;
	padding: 0;
	font-size: 18px; 
	font-weight: 500; 
	text-align: left; 
	color: #ffffff; 
	overflow: hidden;
}
#global-menu .global-menu-wrapper li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 8px 0;
	color: #fff;
	text-decoration: none;
}
#global-menu .global-menu-wrapper li:hover a {
	color: #fff100;
}

#site-logo {
	position: absolute;
	z-index: 999;
	top: 10px;
	left: 20px;
	width: 110px;
	height: auto;
}

@media print, screen and (max-width: 980px) {


}
@media print, screen and (max-width: 768px) {

	header {
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 60px;
	}

	header #contents-header .contents-header-logo {
		position: absolute;
		top: 10px;
		left: 10px;
		width: 150px;
		height: auto;
	}
	
	header #contents-header .contents-header-menu-block {
		display: none;
	}

	#header-global-menu {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: nowrap;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: -10px;
		right: 0;
	}
	#global-menu .global-menu-wrapper li {
		font-size: 1.1rem; 
	}
	#global-menu .global-menu-wrapper li a {
		padding: 8px 0;
	}

	#global-menu-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 45px;
		height: 45px;
		cursor: pointer;
	}

	#global-menu {
		width: 100%;
		/*width: 400px;*/
		height: auto;
		background-color: rgba( 255,255,255, 0.9 );
		position: fixed;
		top: 10px;
		right: 0;
		z-index: 100;
		transform: translate(120%);
		transition: all .3s;
	}
	#global-menu.open {
		transform: translate(0);
	}

	.global-menu-background {
		position: fixed;
		top: 0;
		right: 0;
		content: "";
		display: block;
		width: 0;
		height: 0;
		background-color: rgba( 255,255,255, 0.9 );
		border-top: 10px solid #cf000e;
		z-index: 99;
		opacity: 0;
		transition: opacity 0.5s;
	}
	.global-menu-background.open {
		width: 90%;
		/*width: 400px;*/
		height: 100%;
		opacity: 1;
	}

	.global-menu-open {
		width: 100%;
		height: auto;
	}

	.global-menu-close {
		display: none;
		z-index: 101;
		padding-top: 12px;
	}

	.global-menu-close-btn {
		position: absolute;
		top: 0px;
		right: 10px;
		width: 35px;
		height: 35px;
		margin: 0;
		padding: 0;
		cursor: pointer;
		z-index: 101;
		transition: opacity 0.5s;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: 60px;
		right: 0;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0;
		display: flex; 
		flex-wrap: wrap;
		/*border-top: 1px solid #fff;*/
	}
	#global-menu .global-menu-wrapper li {
		display: flex; 
		flex-direction: column;
		flex-wrap: nowrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto; 
		margin: 0;
		padding: 0;
		font-size: 1.5rem; 
		font-weight: 500; 
		text-align: center; 
		color: #ffffff; 
		/*border-bottom: 1px solid #fff;*/
		overflow: hidden;
	}
	#global-menu .global-menu-wrapper li a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 0;
		color: #000;
		text-decoration: none;
	}
	#global-menu .global-menu-wrapper li:hover a {
		color: #cf000e;
	}


	#site-logo {
		position: absolute;
		z-index: 999;
		top: 10px;
		left: 10px;
		width: 60px;
		height: auto;
	}

}




/* フッター */
footer {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 60px 0;
	background: #fff;
}

#contents-footer {

}
.contents-footer-block {
	width: 800px;
	margin: auto;
}
.contents-footer-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 0 auto 20px auto;
}
.footer-subject {
	display: inline;
	width: 130px;
	height: 27px;
	margin-right: 20px;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	background: #004ea2;
	border-radius: 30px;
}
.footer-item {
	display: inline-flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: calc(100% - 150px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.footer-item-2 {
	display: block;
	width: calc(100% - 150px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.op-c-name {
	font-size: 20px;
	font-weight: 700;
}
.op-c-address {
	font-size: 13px;
	font-weight: 400;
}
.op-c-tel {
	font-size: 30px;
	font-family: "oswald", sans-serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1;
}

@media print, screen and (max-width: 880px) {

	.contents-footer-block {
		width: 100%;
		margin: auto;
	}
	.contents-footer-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 90%;
		height: auto;
		margin: 0 auto 20px auto;
	}
	.footer-subject {
		display: inline;
		width: 130px;
		height: 27px;
		margin-right: 15px;
		margin-bottom: 10px;
		padding: 0;
		font-size: 15px;
		font-weight: 500;
		text-align: center;
		color: #fff;
		background: #004ea2;
		border-radius: 30px;
	}
	.footer-item {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 98%;
		padding-left: 2%;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.5;
	}

}
@media print, screen and (max-width: 768px) {

	.footer-subject {
		width: 120px;
		height: 24px;
		margin-right: 0;
		margin-bottom: 10px;
		font-size: 13px;
		font-weight: 500;
	}	
	.footer-item {
		width: 98%;
		padding-left: 2%;
		font-size: 14px;
	}
	.footer-item-2 {
		width: 98%;
		padding-left: 2%;
		font-size: 14px;
	}

	.op-c-tel {
		font-size: 22px;
	}

}







/* 共通 */
#main {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.contents-block-title {
	width: 100%;
	font-size: 48px;
	font-family: "gotham", sans-serif;
	font-weight: 800;
	font-style: normal;
	line-height: 1.2;
	color: #004ea2;
	text-align: center;
}
.contents-block-sub-title {
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	color: #000;
	text-align: center;
}
.contents-block-lead-title {
	width: 100%;
	font-size: 28px;
	font-weight: 700;
	font-style: normal;
	color: #000;
	text-align: center;
}
.contents-block-lead-title .red {
	color: #e60012;
}
.contents-block-title-2 {
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
}


@media print, screen and (max-width: 980px) {


}
@media print, screen and (max-width: 768px) {


	.contents-block-title {
		font-size: 28px;
	}
	.contents-block-sub-title {
		font-size: 14px;
	}
	.contents-block-lead-title {
		font-size: 17px;
	}

	.contents-block-title-2 {
		font-size: 26px;
		font-weight: 700;
		font-style: normal;
	}


}




/* TOP */
#top-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	margin: auto;
}



/* コンテンツ */

#contents-wrapper {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	background: #f7f3f1;
}



/* BLOCK 1 (トピックス) */

#contents-wrapper-1 {
	z-index: 1;
	position: relative;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
	padding: 60px 0;
}

.contents-1-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 40px 0;
}

.topics-index-block {
	width: 100%;
	border-top: 1px solid #b4afa7;
}
.topics-index-wrap {
	display: flex;
	flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #b4afa7;
}
.topics-index-date {
	display: inline-flex;
	width: 10%;
	font-weight: 700;
}
.topics-index-category {
	display: inline-flex;
	align-content: center;
    align-items: center;
	justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
	width: 16%;
	margin: 0 2%;
	color: #cf000e;
	background: #fff;
	border-radius: 30px;
}
.topics-index-title {
	display: inline-flex;
	width: 70%;
}



@media print, screen and (max-width: 1080px) {

	#contents-wrapper-1 {
		width: 90%;
	}

	.topics-index-date {
		display: inline-flex;
		width: 90px;
	}
	.topics-index-category {
		display: inline-flex;
		justify-content: center;
		width: 200px;
		margin: 0 2%;
		color: #cf000e;
		background: #fff;
		border-radius: 30px;
	}
	.topics-index-title {
		display: inline-flex;
		width: 100%;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-1 {
		width: 90%;
		height: auto;
		margin: 0 auto 30px auto;
		padding: 30px 0;
	}

	.contents-1-1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 20px 0;
	}

	.topics-index-wrap {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: flex-start;
		align-items: flex-start;
		justify-content: flex-start;
		width: 100%;
		padding: 10px 0;
		font-size: 14px;
	}

	.topics-index-date {
		display: inline-flex;
		width: 80px;
	}
	.topics-index-category {
		display: inline-flex;
		justify-content: center;
		width: fit-content;
		margin: 0 2%;
		padding: 0 15px;
		border-radius: 30px;
	}


}



/* BLOCK 2 (Overview) */

#contents-wrapper-2 {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
	padding: 60px 0;
	background-image: url(../img/home/overview_1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.contents-2-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}
.contents-2-2 {
	display: flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: auto;
}
.contents-2-2-1 {
	display: inline-flex;
	width: 20%;
	height: auto;
}
.contents-2-2-2 {
	display: inline-block;
	width: 60%;
	height: auto;
	font-size: 24px;
	font-weight: 700;
	font-style: normal;
	text-align: center;
}
.contents-2-2-2 .red {
	color: #e60012;
}
.contents-2-2-3 {
	display: inline-flex;
	width: 20%;
	height: auto;
}


@media print, screen and (max-width: 1080px) {

}
@media print, screen and (max-width: 980px) {

	.contents-2-2-2 {
		display: inline-block;
		width: 60%;
		height: auto;
		font-size: 20px;
	}

}
@media print, screen and (max-width: 768px) {

	.contents-2-2-2 {
		display: inline-block;
		width: 60%;
		height: auto;
		font-size: 17px;
	}

}



/* BLOCK 3 (STAMP RALLY) */

#contents-wrapper-3 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
}

.contents-3-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 40px 0;
}

.contents-3-2 {
	display: flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: auto;
}
.contents-3-2-1 {
	display: inline-flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: calc((100% - 30px) / 3);
	height: 90px;
	margin: 0 5px 10px 5px;
	padding: 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	background-color: #004ea2;
	border-radius: 20px;
}
.contents-3-2-1 a {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}
.contents-3-2-1 a:hover {
	color: #fff100;
}

@media print, screen and (max-width: 1080px) {

	#contents-wrapper-3 {
		width: 90%;
		height: auto;
		margin: 0 auto;
		padding: 30px 0;
	}

}
@media print, screen and (max-width: 980px) {

	.contents-3-2-1 {
		font-size: 18px;
	}

}
@media print, screen and (max-width: 768px) {

	.contents-3-1 {
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 30px 0;
	}

	.contents-3-2-1 {
		width: calc((100% - 60px) / 2);
		height: 70px;
		margin: 0 5px 10px 5px; 
		padding: 0 10px;
		font-size: 15px;
	}

}
@media print, screen and (max-width: 580px) {

	.contents-3-2-1 {
		width: calc((100% - 60px) / 2);
		height: 70px;
		margin: 0 5px 10px 5px; 
		padding: 0 10px;
		font-size: 14px;
	}

}





/* BLOCK 4 (STAMP RALLY) */

#contents-wrapper-4 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
}

.contents-4-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}

.contents-4-2 {
	max-width: 600px;
	width: 100%;
	height: auto;
	margin: 0 auto 80px;
}

.contents-4-3 {
	max-width: 800px;
	width: calc(100% - 40px);
	height: auto;
	margin: auto;
	padding: 60px 20px;
	border-radius: 20px;
	background-image: url(../img/home/how_to_participate_9.png);
	background-repeat: repeat;
	background-position: center center;
	background-size: 15px 15px;
}

.contents-4-3-1 {
	width: 60%;
	height: auto;
	margin: auto;
}

.contents-4-3-2,
.contents-4-3-4,
.contents-4-3-6 {
	width: 80%;
	height: auto;
	margin: 20px auto;
	padding: 0;
	border-radius: 20px;
	background: #fff;
	box-shadow: 6px 6px 2px rgba(0,0,0,0.3);
}

.contents-4-3-2-1,
.contents-4-3-6-1 {
	width: 95%;
	height: auto;
	margin: auto;
	padding: 20px 0;
}
.contents-4-3-4-1 {
	width: 95%;
	height: auto;
	margin: auto;
	padding: 20px 0 0 0;
}


.contents-4-3-2-2 {
	width: 200px;
	height: auto;
	margin: auto;
	padding-bottom: 30px;
}

.contents-4-3-3,
.contents-4-3-5 {
	width: 70px;
	height: auto;
	margin: auto;
	padding: 10px 0;
}

.contents-4-3-4-3 {
	padding: 0 0 30px 170px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.contents-4-3-6-2 {
	width: 350px;
	height: auto;
	margin: auto;
	padding: 10px 0;
}

.contents-4-3-7 {
	width: 80%;
	margin: auto;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
}

.contents-4-4 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 40px 0;
}

@media print, screen and (max-width: 860px) {

	.contents-4-3-4-3 {
		padding: 0 10px 30px 20vw;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.3;
	}

}
@media print, screen and (max-width: 768px) {

	.contents-4-2 {
		width: 80%;
		height: auto;
		margin: 0 auto 40px;
	}

	.contents-4-3 {
		width: calc(90% - 20px);
		height: auto;
		margin: auto;
		padding: 30px 10px;
	}

	.contents-4-3-1 {
		width: 70%;
		height: auto;
		margin: auto;
	}

	.contents-4-3-2,
	.contents-4-3-4,
	.contents-4-3-6 {
		width: 90%;
		height: auto;
		margin: 20px auto;
		padding: 0;
		border-radius: 20px;
		background: #fff;
		box-shadow: 5px 5px 2px rgba(0,0,0,0.3);
	}
	.contents-4-3-2-2 {
		width: 200px;
		height: auto;
		margin: auto;
		padding-bottom: 30px;
	}
	.contents-4-3-4-3 {
		padding: 0 5px 30px 20vw;
		font-size: 14px;
		line-height: 1.3;
	}	
	.contents-4-3-6-2 {
		width: 60%;
		height: auto;
		margin: auto;
		padding: 10px 0;
	}
	.contents-4-3-7 {
		width: 90%;
		font-size: 13px;
	}

	.contents-4-4 {
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 30px 0;
	}

}
@media print, screen and (max-width: 580px) {

	.contents-4-3-2-2 {
		width: 50%;
		height: auto;
		margin: auto;
		padding-bottom: 15px;
	}


}





/* BLOCK 5 (PRESENT) */

#contents-wrapper-5 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
	background: #fff;
}

.contents-5-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}
.contents-5-1-1 {
	position: absolute;
	top: 0;
	left: 60vw;
	width: 300px;
	height: auto;
}

.contents-5-2 {
	position: relative;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
	width: 600px;
	height: 150px;
	margin: 40px auto;
	border-radius: 20px;
	background: #f7f3f1;
	box-shadow: 6px 6px 2px rgba(0,0,0,0.3);
}
.contents-5-2-1,
.contents-5-2-1-b {
	position: relative;
	left: 90px;
	font-size: 30px;
    font-weight: 800;
    line-height: 1.4;
}
.contents-5-2-1-2 {
	font-size: 18px;
	font-weight: 500;
}
.contents-5-2-1-3 {
	color: #f08300;
}

.contents-5-2-2 {
	position: absolute;
	top: 25px;
	left: -40px;
	width: 100px;
	height: 100px;
}
.contents-5-2-3 {
	position: absolute;
	top: 35px;
	right: -95px;
	width: 125px;
	padding: 10px 0 10px 20px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color:#fff;
	background: #004ea2;
	border-radius: 10px;
}
.contents-5-2-3-2 {
	color: #fff100;
}

@media print, screen and (max-width: 1280px) {

	.contents-5-1-1 {
		left: 68vw;
	}

}
@media print, screen and (max-width: 980px) {

	.contents-5-1-1 {
		top: 0;
		left: 68vw;
		width: 250px;
		height: auto;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-5 {
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 0 30px 0;
	}

	.contents-5-1 {
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 0 0;
	}
	.contents-5-1-1 {
		top: -11.5vw;
		left: 56vw;
		width: 30vw;
		height: auto;
	}

	.contents-5-2 {
		position: relative;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: flex-start;
		align-items: center;
		width: 80%;
		height: 135px;
		margin: 40px auto;
	}
	.contents-5-2-1,
	.contents-5-2-1-b {
		position: relative;
		left: 13%;
		width: 85%;
		font-size: 20px;
	}
	.contents-5-2-1-2 {
		font-size: 14px;
		font-weight: 500;
	}

	.contents-5-2-2 {
		position: absolute;
		top: 25px;
		left: -40px;
		width: 70px;
		height: auto;
	}
	.contents-5-2-3 {
		position: absolute;
		top: -30px;
		right: -30px;
		width: 85px;
		padding: 10px 0 10px 10px;
		font-size: 18px;
	}

}
@media print, screen and (max-width: 580px) {

	.contents-5-1-1 {
		top: -16vw;
		left: 56vw;
		width: 41vw;
		height: auto;
	}

	.contents-5-2 {
		position: relative;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
		width: 80%;
		height: 135px;
		margin: 40px auto;
	}
	.contents-5-2-1 {
		position: relative;
		left: 13%;
		top: 35px;
		width: 85%;
		font-size: 17px;
	}
	.contents-5-2-1-b {
		position: relative;
		left: 13%;
		top: 50px;
		width: 85%;
		font-size: 17px;
	}
	.contents-5-2-1-2 {
		font-size: 12.5px;
		font-weight: 500;
	}

}




/* BLOCK 6 (CHECKPOINT) */

#contents-wrapper-6 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
}

.contents-6-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 40px 0;
}

.contents-6-2 {
	position: relative;
	width: 100%;
	height: 600px;
	margin: 20px auto 80px;
}
.contents-6-2 iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

@media print, screen and (max-width: 768px) {

	#contents-wrapper-6 {
		position: relative;
		z-index: 1;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 30px 0;
	}

	.contents-6-1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 20px 0;
	}

	.contents-6-2 {
		position: relative;
		width: 100%;
		height: 600px;
		margin: 10px auto 40px;
	}

}




/* BLOCK 7 (PASSPORT) */

#contents-wrapper-7 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
	background: #d0ebcc;
}

.contents-7-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}

.contents-7-2 {
	position: relative;
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 20px auto 10px;
	padding: 40px 20px;
	background: #45b035;
	border-radius: 10px;
}
.contents-7-2-1 {
	width: 90%;
	height: auto;
	margin: auto;
}
.contents-7-2-2 {
	width: 100%;
	height: auto;
	padding: 20px 0;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
.contents-7-2-2 .red {
	font-size: 120%;
	font-weight: 700;
	color: #e60012;
	-webkit-text-stroke: 5px rgb(255, 255, 255);
	text-stroke: 5px rgb(255, 255, 255);
	paint-order: stroke;
}
.contents-7-2-3 {
	width: 300px;
	height: 300px;
	margin: auto;
}

.contents-7-3 {
	width: 100px;
	height: auto;
	margin: 0 auto 10px auto;
}

.contents-7-4 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0;
}

.contents-7-5 {
	position: relative;
	width: 100%;
	height: 600px;
	margin: 20px auto 80px;
}
.contents-7-5 iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}


.contents-7-6 {
	position: relative;
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 20px auto 80px;
	padding: 40px 20px;
	background: #45b035;
	border-radius: 10px;
}
.contents-7-6-1 {
	width: 95%;
	height: auto;
	margin: auto;
}
table.contents-7-6-1-1 {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #fff100;
}
table.contents-7-6-1-1 th {
	padding: 5px;
	vertical-align: top;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	background: rgba(255,241,0, 0.4);
	border: 1px solid #fff100;
}
table.contents-7-6-1-1 td {
	padding: 5px;
	vertical-align: top;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	border: 1px solid #fff100;
}
table.contents-7-6-1-1 .facility {
	white-space: nowrap;
}
table.contents-7-6-1-1 .address {
	white-space: nowrap;
}
table.contents-7-6-1-1 .benefit {

}

.contents-7-6-1-2 {
	width: 95%;
	margin: auto;
	padding: 0 0 20px 0;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	color: #fff100;
}

@media print, screen and (max-width: 980px) {

	.contents-7-2 {
		width: calc(90% - 20px);
		height: auto;
		margin: 20px auto 10px;
		padding: 20px 10px;
	}

	.contents-7-6 {
		width: calc(90% - 20px);
		height: auto;
		margin: 20px auto 80px;
		padding: 20px 10px;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-7 {
		position: relative;
		z-index: 1;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 30px 0;
		background: #d0ebcc;
	}

	.contents-7-1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 20px 0;
	}

	.contents-7-2 {
		width: calc(90% - 20px);
		height: auto;
		margin: 10px auto 10px;
		padding: 20px 10px;
	}
	.contents-7-2-2 {
		width: 100%;
		height: auto;
		padding: 20px 0;
		font-size: 16px;
	}
	.contents-7-2-3 {
		width: 200px;
		height: 200px;
	}

	.contents-7-3 {
		width: 100px;
		height: auto;
		margin: 0 auto 10px auto;
	}


	.contents-7-6 {
		width: calc(90% - 20px);
		height: auto;
		margin: 10px auto 40px;
		padding: 20px 10px;
	}

	table.contents-7-6-1-1 th {
		padding: 4px;
		vertical-align: top;
		font-size: 15px;
		font-weight: 700;
		white-space: nowrap;
	}
	table.contents-7-6-1-1 td {
		padding: 4px;
		vertical-align: top;
		font-size: 13px;
		font-weight: 500;
	}
	table.contents-7-6-1-1 .facility {
		width: 30%;
		white-space: normal;
	}
	table.contents-7-6-1-1 .address {
		width: 30%;
		white-space: normal;
	}
	table.contents-7-6-1-1 .benefit {
		width: 40%;
	}

	.contents-7-6-1-2 {
		width: 95%;
		margin: auto;
		padding: 0 0 10px 0;
		font-size: 18px;
	}

}




/* BLOCK 8 (EVENT) */

#contents-wrapper-8 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
	background: #fff;
}

.contents-8-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}

.contents-8-2 {
	position: relative;
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 20px auto 20px;
	padding: 20px 20px;
	background: #45b035;
	border-radius: 10px;
}
.contents-8-2-1 {
	width: 55%;
	height: auto;
}
.contents-8-2-2 {
	position: relative;
    z-index: 2;
	width: 100%;
	height: auto;
	margin: 10px 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
	-webkit-text-stroke: 5px rgb(255, 255, 255);
    text-stroke: 5px rgb(255, 255, 255);
    paint-order: stroke;
}
.contents-8-2-2 .red {
	color: #e60012;
}
.contents-8-2-3 {
	position: absolute;
	z-index: 1;
	top: 20px;
	right: 20px;
	width: 35%;
	height: auto;
}
.contents-8-2-4 {
	display: flex;
	width: 100%;
	height: auto;
	margin: 20px 0;
}
.contents-8-2-7 {
	display: flex;
	width: 100%;
	height: auto;
	margin: 20px 0;
}
.contents-8-2-4-1 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 49%;
	height: auto;
	margin-right: 2%;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
}

.contents-8-2-4-2 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 49%;
	height: auto;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
}

.contents-8-2-7-1 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 50%;
	height: auto;

}
.contents-8-2-7-2 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 50%;
	height: auto;
}
.contents-8-2-7-1-1,
.contents-8-2-7-1-2 {
	display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-right: 2%;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}
.contents-8-2-7-2-1,
.contents-8-2-7-2-2 {
	display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-left: 2%;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}
.contents-8-2-7-1-1,
.contents-8-2-7-2-1 {
	margin-bottom: 15px;
}

.contents-8-2-4-1-1,
.contents-8-2-4-2-1 {
	width: fit-content;
	margin-bottom: 10px;
	padding: 2px 8px;
	font-size: 24px;
	font-family: corporate-logo-ver2, sans-serif;
	font-style: normal;
	font-weight: 700;
	color: #fff;
	background: #004ea2;
}
.contents-8-2-7-1-10,
.contents-8-2-7-2-10 {
	width: fit-content;
	margin-right: 40%;
	margin-bottom: 10px;
	padding: 2px 8px;
	font-size: 24px;
	font-family: corporate-logo-ver2, sans-serif;
	font-style: normal;
	font-weight: 700;
	color: #fff;
	background: #004ea2;
}
.contents-8-2-4-1-2,
.contents-8-2-4-2-2 {
	width: 33%;
	margin-right: 2%;
	font-size: 36px;
	font-family: "din-2014", sans-serif;
	font-weight: 800;
	font-style: normal;
	line-height: 1.4;
	color: #000;
}


.contents-8-2-4-1-2 .sat,
.contents-8-2-4-2-2 .sat {
	color: #004ea2;
}
.contents-8-2-4-1-2 .sun,
.contents-8-2-4-2-2 .sun {
	color: #e60012;
}
.contents-8-2-4-1-2 .week,
.contents-8-2-4-2-2 .week {
	font-size: 14px;
}
.contents-8-2-4-1-2 .time,
.contents-8-2-4-2-2 .time {
	font-size: 24px;
	font-family: "din-2014", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.contents-8-2-4-1-3,
.contents-8-2-4-2-3 {
	/*display: inline-flex;*/
	display: inline-block;
	/*
    flex-wrap: wrap;
    justify-content: flex-start;
	*/
    align-content: center;
    align-items: center;
    /*flex-direction: row;*/
	width: 63%;
	height: 85px;
	margin-left: 2%;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}
.contents-8-2-4-1-3 .address,
.contents-8-2-4-2-3 .address {
	font-size: 15px;
	font-weight: 400;
}


.contents-8-2-5 {
	position: relative;
	width: 100%;
	height: 34px;
	margin: 40px 0 20px 0;
}
.contents-8-2-5-1 {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: fit-content;
	padding: 5px 15px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #e60012;
	background: #fff;
	border-radius: 30px;
}
.contents-8-2-5-2 {
	position: absolute;
	z-index: 1;
	top: 15px;
	right: 0;
	width: 90%;
	border-top: 2px solid #fff;
}

.contents-8-2-6 {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
}
.contents-8-2-6-1 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 49%;
}
.contents-8-2-6 .left {
	margin-right: 2%;
}
.contents-8-2-6-1-1 {
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	-webkit-text-stroke: 5px rgb(255, 255, 255);
    text-stroke: 5px rgb(255, 255, 255);
    paint-order: stroke;
}
.contents-8-2-6-1-2 {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

@media print, screen and (max-width: 980px) {

	.contents-8-2 {
		width: calc(90% - 40px);
		height: auto;
		margin: 20px auto 20px;
		padding: 10px 20px;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-8 {
		position: relative;
		z-index: 1;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 30px 0;
		background: #fff;
	}

	.contents-8-1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 20px 0;
	}

	.contents-8-2 {
		width: calc(90% - 30px);
		height: auto;
		margin: 10px auto 10px;
		padding: 10px 15px;
	}
	.contents-8-2-1 {
		width: 65%;
		height: auto;
	}
	.contents-8-2-2 {
		position: relative;
		z-index: 2;
		width: 100%;
		height: auto;
		margin: 10px 0;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.3;
		color: #000;
		-webkit-text-stroke: 4px rgb(255, 255, 255);
		text-stroke: 4px rgb(255, 255, 255);
		paint-order: stroke;
	}
	.contents-8-2-4 {
		display: flex;
		flex-wrap: wrap;
        flex-direction: row;
		width: 100%;
		height: auto;
		margin: 20px 0;
	}
	.contents-8-2-7 {
		display: flex;
		flex-wrap: wrap;
        flex-direction: row;
		width: 100%;
		height: auto;
		margin: 20px 0;
	}

	.contents-8-2-4-1 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
		margin-right: 0%;
		margin-bottom: 15px;
		padding: 15px;
	}
	.contents-8-2-4-2 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
		padding: 15px;
	}

	.contents-8-2-7-1 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;

	}
	.contents-8-2-7-2 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
	}
	.contents-8-2-7-1-1,
	.contents-8-2-7-1-2 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
		margin-right: 0;
	}
	.contents-8-2-7-2-1,
	.contents-8-2-7-2-2 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
		margin-left: 0;
		padding: 15px;
	}
	.contents-8-2-7-1-1,
	.contents-8-2-7-2-1 {
		margin-bottom: 15px;
	}
	.contents-8-2-7-1-2 {
		margin-bottom: 15px;
	}

	.contents-8-2-4-1-1,
	.contents-8-2-4-2-1 {
		width: 100%;
		margin-bottom: 10px;
		padding: 2px 8px;
		font-size: 18px;
		text-align: center;
	}
	.contents-8-2-7-1-10,
	.contents-8-2-7-2-10 {
		width: 100%;
		margin-right: 0%;
		margin-bottom: 10px;
		padding: 2px 8px;
		font-size: 18px;
		text-align: center;
	}

	.contents-8-2-4-1-2,
	.contents-8-2-4-2-2 {
		width: 90px;
		margin-right: 10px;
		font-size: 26px;
	}
	.contents-8-2-4-1-2 .time,
	.contents-8-2-4-2-2 .time {
		font-size: 18px;
	}

	.contents-8-2-4-1-3,
	.contents-8-2-4-2-3 {
		display: block;
		width: calc(100% - 100px);
		height: auto;
		margin-left: 0;
		font-size: 16px;
	}
	.contents-8-2-4-1-3 .address,
	.contents-8-2-4-2-3 .address {
		font-size: 13px;
	}


	.contents-8-2-5 {
		position: relative;
		width: 100%;
		height: 26px;
		margin: 20px 0 10px 0;
	}
	.contents-8-2-5-1 {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: fit-content;
		padding: 5px 15px;
		font-size: 16px;
	}


	.contents-8-2-6 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
	}
	.contents-8-2-6-1 {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
	}
	.contents-8-2-6 .left {
		margin-right: 0%;
	}
	.contents-8-2-6-1-1 {
		width: 100%;
		font-size: 15px;
		font-weight: 700;
		-webkit-text-stroke: 4px rgb(255, 255, 255);
		text-stroke: 4px rgb(255, 255, 255);
		paint-order: stroke;
	}
	.contents-8-2-6-1-2 {
		font-size: 12px;
		font-weight: 500;
		color: #fff;
	}

}




/* BLOCK 9 (PASS) */

#contents-wrapper-9 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 80px 0;
	background: #d0ebcc;
}

.contents-9-1 {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0 0 20px 0;
}

.contents-9-2 {
	position: relative;
	max-width: 760px;
	width: 100%;
	height: auto;
	margin: 20px auto 20px;
	padding: 20px 40px;
	background: #ef8200;
	border: 2px solid #fff;
	border-radius: 10px;
}
.contents-9-2-1 {
	width: 80%;
	height: auto;
}
.contents-9-2-2 {
	position: relative;
	z-index: 3;
	width: 80%;
	height: auto;
	margin: 20px 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	-webkit-text-stroke: 5px rgb(255, 255, 255);
    text-stroke: 5px rgb(255, 255, 255);
    paint-order: stroke;
}
.contents-9-2-2 .red {
	color: #e60012;
}

.contents-9-2-3 {
	width: fit-content;
	background: #fff;
	border: 1px solid #fff;
}
.contents-9-2-3-1 {
	width: 100%;
	padding: 5px 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: #004ea2;
}
.contents-9-2-3-1 .number {
	font-size: 28px;
}
.contents-9-2-3-2 {
	width: calc(100% - 20px);
	padding: 5px 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.contents-9-2-3-2 .red {
	font-size: 40px;
	font-family: corporate-logo-ver2, sans-serif;
	font-style: normal;
	font-weight: 700;
	color: #e60012;
}

.contents-9-2-4 {
	width: 80%;
	font-size: 14px;
	font-weight: 700;
	-webkit-text-stroke: 3px rgb(255, 255, 255);
    text-stroke: 3px rgb(255, 255, 255);
    paint-order: stroke;
}

.contents-9-2-5 {
	position: relative;
	bottom: 0;
	left: 20%;
	width: 40%;
	height: auto;
	margin-top: 40px;
}

.contents-9-2-6 {
	position: absolute;
	z-index: 1;
	bottom: 15px;
	right: 20px;
	width: 31%;
	height: auto;
}

@media print, screen and (max-width: 980px) {

	.contents-9-2 {
		width: calc(90% - 40px);
		height: auto;
		margin: 20px auto 20px;
		padding: 10px 20px;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-9 {
		position: relative;
		z-index: 1;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 40px 0;
		background: #d0ebcc;
	}

	.contents-9-1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: auto;
		margin: auto;
		padding: 0 0 20px 0;
	}

	.contents-9-2 {
		width: calc(90% - 30px);
		height: auto;
		margin: 10px auto 10px;
		padding: 10px 15px;
	}
	.contents-9-2-1 {
		width: 90%;
		height: auto;
	}
	.contents-9-2-2 {
		width: 100%;
		height: auto;
		margin: 20px 0;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4;
		-webkit-text-stroke: 4px rgb(255, 255, 255);
		text-stroke: 4px rgb(255, 255, 255);
		paint-order: stroke;
	}

	.contents-9-2-3 {
		width: fit-content;
		background: #fff;
		border: 1px solid #fff;
	}
	.contents-9-2-3-1 {
		width: 100%;
		padding: 5px 0;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.4;
		color: #fff;
		text-align: center;
		background: #004ea2;
	}
	.contents-9-2-3-1 .number {
		font-size: 28px;
	}
	.contents-9-2-3-2 {
		width: calc(100% - 20px);
		padding: 5px 10px;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.4;
		text-align: center;
	}
	.contents-9-2-3-2 .red {
		font-size: 30px;
		font-family: corporate-logo-ver2, sans-serif;
		font-style: normal;
		font-weight: 700;
		color: #e60012;
	}

	.contents-9-2-4 {
		width: 80%;
		font-size: 12px;
		font-weight: 700;
		-webkit-text-stroke: 3px rgb(255, 255, 255);
		text-stroke: 3px rgb(255, 255, 255);
		paint-order: stroke;
	}

	.contents-9-2-5 {
		position: relative;
		bottom: 0;
		left: 20%;
		width: 40%;
		height: auto;
		margin-top: 40px;
	}

	.contents-9-2-6 {
		position: absolute;
		z-index: 1;
		bottom: 15px;
		right: 20px;
		width: 31%;
		height: auto;
	}


}



.topics-contents-block {
	width: 100%;
}

.topics-contents-title {
	width: 100%;
	padding: 15px 0;
    font-size: 22px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    color: #000;
    text-align: center;
}
.topics-contents-date {
	width: 100%;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    color: #000;
    text-align: right;
}
.topics-contents-body {
	width: 100%;
	padding: 40px 0 0 0;

}

@media print, screen and (max-width: 768px) {

	.topics-contents-title {
		width: 100%;
		padding: 15px 0;
		font-size: 18px;
		font-weight: 800;
		font-style: normal;
		line-height: 1.2;
		color: #000;
		text-align: center;
	}

}