﻿@charset "UTF-8";

/* common
---------------------------------------------------*/
#Header {
	margin-bottom: 0;
}
.section-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* mv
---------------------------------------------------*/
#mv {
	position: relative;
	width: 100%;
	padding: 20px 0;
	margin: 0 auto 40px;
}
#mv .figure {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
#mv .figure img {
	width: 100%;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#mv {
		padding: 3.125vw;
		margin: 0 auto 6.25vw;
	}
}

/* information
---------------------------------------------------*/
#information {
	width: 66%;
}
#information .information {
	display: flex;
	background-color: #f0ffff;
}
#information .information-figure {
	width: 40%;
	padding: 10px;
}
#information .information-figure img {
	width: 100%;
}
#information .information-text {
	width: 60%;
	padding: 1em;
}
#information .information-text p {
	line-height: 1.6em;
}
#information .information-text p:not(:last-of-type) {
	margin-bottom: 1em;
}
#information .information-text p.date {
	margin-bottom: 0;
}
#information .information-text p.times {
	color: var(--orange-color);
	margin-bottom: 0.5em;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#information {
		width: 100%;
		margin-bottom: 6.25vw;
	}
	#information .information-figure {
		width: 30%;
		padding: 3.125vw 1.5625vw;
	}
	#information .information-text {
		width: 70%;
		padding: 1em;
	}
	#information .information-text p {
		font-size: var(--font-size-s);
	}
	#information .information-text p:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
}

/* pickup
---------------------------------------------------*/
#pickup {
	width: 30%;
}
#pickup .pickup {
	background-color: #fff9f0;
	padding-bottom: 20px;
}
#pickup .pickup a:hover {
	opacity: 0.8;
}
#pickup .pickup-figure {
	text-align: center;
	padding: 10px;
}
#pickup .pickup-figure img {
	width: 100%;
	max-width: 200px;
}
#pickup .pickup-text {
	text-align: center;
}
#pickup .pickup-text .name {
	color: var(--main-color);
	text-decoration: underline;
	margin-bottom: 0.5em;
}
#pickup .pickup-text .times {
	color: var(--blue-color);
}
#pickup ul.pickup-list li:not(:nth-child(1)) {
	display: none;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#pickup {
		width: 100%;
	}
	#pickup .pickup {
		padding: 3.125vw 1.5625vw;
	}
	#pickup .pickup-figure {
		padding: 0;
		margin-bottom: 1.5625vw;
	}
	#pickup .pickup-figure img {
		width: 100%;
		max-width: none;
	}
	#pickup ul.pickup-list {
		display: flex;
		gap: 1.5625vw;
	}
	#pickup ul.pickup-list li {
		flex: 1;
		/*width: calc(100% / 3);*/
	}
	#pickup ul.pickup-list li:not(:nth-child(1)) {
		display: block;
	}
	#pickup .pickup-text .name {
		margin-bottom: 1em;
	}
	#pickup .pickup-text .times {
		font-size: var(--font-size-s);
	}
}


/* cast
---------------------------------------------------*/
#cast {
	margin-top: 40px;
}
#cast ul.cast-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 2%;
}
#cast ul.cast-list li {
	width: 18.4%;
}
#cast ul.cast-list li a {
	display: block;
	border: 1px solid var(--secondary-color);
	padding: 5px 5px 20px;
}
#cast ul.cast-list li a:hover {
	border: 1px solid var(--main-color);
	opacity: 0.8;
}
#cast ul.cast-list li .figure {
	margin-bottom: 10px;
	width: 100%;
}
#cast ul.cast-list li .figure img {
	width: 100%;
}
#cast ul.cast-list li .name {
	text-align: center;
	text-decoration: underline;
	color: var(--main-color);
}
#cast ul.cast-list li:nth-child(n+6) {
	display: none;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#cast {
		margin-top: 6.25vw;
	}
	#cast ul.cast-list {
		display: flex;
		flex-wrap: wrap;
		gap: 6.25vw 1.5625vw;
	}
	#cast ul.cast-list li {
		/*flex: 1;*/
		width: calc((100% - 3.125vw) / 3);
	}
	#cast ul.cast-list li:nth-child(n+6) {
		display: block;
	}

}