/* ------------------ MV ------------------ */
.top-mv {
	width: 100%;
	padding: 30px;
	padding-bottom: 0;
	margin-bottom: 80px;
	overflow: hidden;
	position: relative;
}
.top-mv > figure {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.top-mv > figure.top-mv-pc {
	aspect-ratio: 1610 / 666;
}
.top-mv > figure.top-mv-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.top-mv {
		padding: 15px 3.85% 0;
		margin-bottom: 30px;
	}
	.top-mv > figure.top-mv-pc {
		display: none;
	}
	.top-mv > figure.top-mv-sp {
		display: flex;
		aspect-ratio: 720 / 1200;
	}
}
/* ------------------ Program ------------------ */
.sec-top-program {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
	padding: 0 4.79%;
}
.top-program-list-wrapper {
	width: 100%;
	overflow-x: auto;
	position: relative;
}
.top-program-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 20px;
	position: relative;
}
.card-top-program {
	display: flex;
	flex-flow: column;
	width: 100%;
	min-width: 286px;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
	transition: all ease-in-out 0.33s;
}
.card-top-program:hover {
	opacity: 0.6;
}
.card-top-program > figure {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 286 / 191;
	border-radius: 15px;
	flex-shrink: 0;
}
.card-top-program > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all ease-in-out 0.33s;
}
.card-top-program:hover > figure > img {
	transform: scale(1.06);
}
.card-tp-body {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}

.card-tp-heading {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 14px;
	align-items: flex-start;
}
.card-tp-info {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.card-tp-date {
	font-size: 26px;
	line-height: 1.73;
	width: auto;
	max-width: 195px;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	flex-shrink: 0;
	gap: 6px;
	font-weight: 600;
	letter-spacing: 0;
	font-family: "Montserrat", "fot-tsukuardgothic-std", sans-serif;
}
.card-tp-date > span {
	font-size: 12px;
	font-family: "fot-tsukuardgothic-std", sans-serif;
}
.card-tp-place {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #3a4652;
	color: #3a4652;
	border-radius: 999px;
	padding: 5px 13px;
	flex-shrink: 0;
	line-height: 1;
	font-size: 12px;
}
.card-tp-ttl {
	width: 100%;
	font-size: 18px;
	line-height: 1.4;
}
.card-tp-bottom {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	position: relative;
	align-items: center;
}
.card-tp-venue {
	position: relative;
	width: auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}
.card-tp-venue::before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/common/icon-pin.svg");
	width: 9px;
	height: auto;
	aspect-ratio: 9 / 12;
	position: relative;
	min-width: 9px;
}

.sec-top-program .btn-box {
	justify-content: flex-end;
	width: 100%;
}

/* translated style */
html.translated-ltr .card-tp-date {
	font-size: 20px;
}
html.translated-ltr .card-tp-place {
	font-size: 10px;
}
html.translated-ltr .card-tp-venue {
	font-size: 10px;
}

@media screen and (max-width: 999px) {
	.sec-top-program {
		margin-bottom: 50px;
		padding: 0 3.85%;
	}
	.card-top-program {
		min-width: 220px;
	}
	.card-tp-date {
		font-size: 22px;
	}
	.card-tp-date > span {
		font-size: 10px;
	}
	.card-tp-ttl {
		font-size: 14px;
	}
	.sec-top-program .btn-box {
		justify-content: center;
	}

	/* translated style */
	html.translated-ltr .card-tp-info {
		flex-direction: column;
		gap: 0;
	}
	html.translated-ltr .card-tp-date {
		margin: 0 auto 0 0;
	}
	html.translated-ltr .card-tp-place {
		margin: 0 0 0 auto;
	}
}

/* ------------------ Schedule ------------------ */
.sec-top-schedule {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
	padding: 0 4.79%;
}
.calendar-area {
	width: 100%;
	position: relative;
}

@media screen and (max-width: 999px) {
	.sec-top-schedule {
		margin-bottom: 50px;
		padding: 0 3.85%;
	}
}
/* ------------------ News ------------------ */
.sec-top-news {
	width: 100%;
	position: relative;
	margin-bottom: 50px;
	padding: 0 4.79%;
	padding-top: 100px;
	padding-bottom: 66px;
	background: rgb(254 254 254 / 50%);
	border-radius: 50px 50px 0 0;
}
.news-list-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 50px;
	align-items: flex-start;
}

@media screen and (max-width: 1400px) {
	.sec-top-news .sec-cont-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 50px;
	}
}
@media screen and (max-width: 999px) {
	.sec-top-news {
		margin-bottom: 50px;
		padding: 0 3.85%;
		padding-top: 50px;
		padding-bottom: 50px;
		border-radius: 15px 15px 0 0;
	}
	.news-list-area {
		gap: 30px;
		align-items: center;
	}
	.news-list-area .btn-box {
		justify-content: center;
	}
}
/* ------------------ Instagram ------------------ */
.sec-top-instagram {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
	padding: 0 4.79%;
}
.instagram-area {
	width: 100%;
	position: relative;
	height: 465px;
}
#sb_instagram .sbi_photo_wrap{
 border-radius: 15px;
}
#sb_instagram .sbi_caption_wrap{
 display: ruby;
 padding: 20px 0 0;
 text-align: left;
 font-size: 18px;
 line-height: 1.4!important;
 height: 5.4em;
}
.instagram-area .btn-box{
 gap: 20px;
 justify-content: right;
}
@media screen and (max-width: 999px) {
	.sec-top-instagram {
		margin-bottom: 50px;
		padding: 0;
	}
	.sec-top-instagram .h2-box {
		padding: 0 3.85%;
	}
	.instagram-area{
		width: 90%;
		margin: 0 auto;
		height: auto;
	}
	.instagram-area .btn-box{
		flex-flow: column;
		justify-content: center;
	}
	#sb_instagram.sbi_mob_col_2 #sbi_images{
		gap: 20px!important;
	}
	#sb_instagram .sbi_caption_wrap{
		padding: 5px 0 0!important;
		font-size: 15px!important;
		height: 5em !important;
		line-height: 1.5 !important;
	}
}
