@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.slider_area {
	width: 100%;
	min-width: 1080px;
	margin-top: 75px;
}
.slider_area .wrap {
	position: relative;
	width: 100%;
	height: 0;
	background-color: #000000;
	padding-top: 37.5%;
}
ul.slider {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
}
.slider_area img {
	width: 100%;
	height: auto;
}
.slider2 {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	animation: slider2 15s linear infinite;
}
.slider_logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.65);
	padding-top: 10.5%;
}
.slider_logo div {
	width: 15.36%;
	margin-bottom: 2.9%;
}
.slider_logo p {
	text-align: center;
	font-family: "M PLUS 1p", serif;
	color: #FFFFFF;
	font-size: max(1.5vw,16px);
	font-weight: 300;
}
@keyframes slider2 {
	/* 非表示ゾーン（0〜8秒） */
	0% {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	53.333% {		/* = 8s / 15s */
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	/* フェードイン（8〜9秒） */
	60% {			/* = 9s / 15s */
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	/* 表示維持（9〜14秒） */
	93.333% {		/* = 14s / 15s */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
	/* フェードアウト（14〜15秒） */
	100% {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

main {
	padding-top: 15px;
}
main section {
	margin-bottom: 50px;
}
.title, .guide, .guide_01, .guide_02, .txt_guide, .schedule, .year ul, .event ul, .link ul {
	display: flex;
}
.guide, .event ul, .schedule, .year ul {
	justify-content: space-between;
}
.year ul, .link ul {
	align-items: center;
}

.title p:first-of-type {
	min-width: 235px;
	font-size: 2.6rem;
	margin-bottom: 15px;
	padding-right: 15px;
}
.title p:last-of-type {
	font-size: 1.1rem;
	margin: 9px 0 0 15px;
}
.event .title p:last-of-type {
	margin-left: -115px;
}
.title p:first-of-type, .txt_guide p:first-of-type {
	font-family: "M PLUS 1p", serif;
	color: #666666;
	border-bottom: 1px solid #666666;
	padding-bottom: 5px;
}
.title p:first-of-type, .txt_guide p {
	padding-left: 5px;
}

.img_guide {
	display: block;
	width: 270px;
	height: 200px;
	overflow: hidden;
}
.txt_guide {
	flex-direction: column;
	justify-content: center;
	margin-left: 10px;
}
.txt_guide p:first-of-type {
	width: 220px;
	font-size: 2.2rem;
	margin-bottom: 5px;
}
.txt_guide p:last-of-type {
	font-family: "Roboto Condensed", serif;
	color: #9EC2EC;
	font-size: 2.4rem;
	font-weight: 500;
}
.guide_02 .txt_guide p:first-of-type {
	letter-spacing: -0.075em
}

.year {
	position: relative;
}
.year > p {
	color: #888888;
	font-size: 2.0rem;
	font-weight: 700;
	font-style: italic;
	margin-left: 10px;
}
.year ul {
	position: relative;
	width: 536px;
	height: 80px;
	background-color: #E8E8E8;
	padding: 0 6px;
}
.year li {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.back {
	background-color: #000000;
	opacity: 0.1;
}
.front {
	position: absolute;
	box-shadow: 2px 2px rgba(0,0,0,0.2);
}
.this .front, .this .evnt a {
	background-color: #3772D1;
}
.this .evnt a:hover {
	background-color: #588BDD;
}
.last .front, .last .evnt a {
	background-color: #00A9DD;
}
.last .evnt a:hover {
	background-color: #33BAE4;
}
.evnt .over:hover {
	cursor: default;
}
.this .evnt .over:hover {
	background-color: #3772D1;
}
.last .evnt .over:hover {
	background-color: #00A9DD;
}

.evnt {
	display: flex;
	width: fit-content;
	position: absolute;
	top: -20px;
	z-index: 10;
}
.evnt a {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 140px;
	height: 60px;
	text-align: center;
	color: #FFFFFF;
	font-weight: 700;
	border-radius: 4px;
	margin-right: 2px;
	padding-top: 5px;
	box-shadow: 3px 3px rgba(0,0,0,0.2);
}
.evnt a:last-of-type {
	margin-right: 0;
}
.evnt a p:first-of-type {
	width: 90%;
	font-size: 1.2rem;
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 2px;
}
.evnt a p:last-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-size: 1.0rem;
	line-height: 1.4;
}
#t01, #l01 {
	left: 6px;
}
#t02, #l02 {
	left: 50px;
}
#t03, #l03 {
	left: 94px;
}
#t04, #l04 {
	left: 138px;
}
#t05, #l05 {
	left: 182px;
}
#t06, #l06 {
	left: 226px;
}
#t07, #l07 {
	right: 226px;
}
#t08, #l08 {
	right: 182px;
}
#t09, #l09 {
	right: 138px;
}
#t10, #l10 {
	right: 94px;
}
#t11, #l11 {
	right: 50px;
}
#t12, #l12 {
	right: 6px;
}
#t01e, #l01e {
	left: -44px;
}
#t02e, #l02e {
	left: 0;
}
#t03e, #l03e {
	left: 44px;
}
#t04e, #l04e {
	left: 88px;
}
#t05e, #l05e {
	left: 132px;
}
#t06e, #l06e {
	left: 176px;
}
#t07e, #l07e {
	right: 176px;
}
#t08e, #l08e {
	right: 132px;
}
#t09e, #l09e {
	right: 88px;
}
#t10e, #l10e {
	right: 44px;
}
#t11e, #l11e {
	right: 0;
}
#t12e, #l12e {
	right: -44px;
}
.off {
	visibility: hidden;
}

.event .title a {
	font-size: 1.2rem;
	text-decoration: underline;
}
.event .title a:hover {
	color: #888888;
	text-decoration: none;
}
.img_evnt {
	width: 204px;
	height: 153px;
	overflow: hidden;
}
.border.img_evnt {
	border: 1px solid #CCCCCC;
}
a:hover .border.img_evnt {
	border-color: #E8E8E8;
}
.txt_evnt {
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.3;
	margin-top: 5px;
}
.event li a:hover .txt_evnt {
	color: #888888;
	text-decoration: underline;
}

.news iframe {
	width: 100%;
	height: 300px;
	border: 0;
}

.link {
	border-top: 1px solid #E8E8E8;
	padding-top: 40px;
}
.link ul {
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 60px
}
.link li {
	width: 120px;
	text-align: center;
	margin-right: 48px;
}
.link li:nth-of-type(6n), .link li:last-of-type {
	margin-right: 0;
}
.link li:nth-of-type(-n+6) {
	margin-bottom: 20px;
}
.link li img {
	display: inline-block;
	vertical-align: top;
}
.link a:hover {
	opacity: 0.6;
}

.img_guide img, .event .title a, .border.img_evnt, .event li a img, .txt_evnt, .link a, .this .evnt a, .last .evnt a {
	transition: 0.2s ease-out;
}
.img_guide:hover img, .event li a:hover img {
	transform: scale(1.05, 1.05);
	opacity: 0.6;
}
