@charset "UTF-8";

.p-front {
	--front-max: 48rem;
	overflow: hidden;
}

.p-front-section {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3rem, 12vw, 5.5rem);
}

.p-front-section__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 1rem), var(--front-max));
	margin-inline: auto;
}

.c-section-heading {
	margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
	text-align: center;
}

.c-section-heading__line {
	display: block;
	width: 4.125rem;
	height: 0.3125rem;
	margin: 0 auto 0.35rem;
	background: var(--color-brand);
}

.c-section-heading__title,
.c-section-heading__subtitle {
	margin: 0;
}

.c-section-heading__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 8.5vw, 3rem);
	font-weight: 400;
	line-height: 1.2;
}

.c-section-heading__subtitle {
	font-size: clamp(0.9rem, 4vw, 1rem);
	line-height: 1.5;
}

.p-hero {
	width: min(100%, var(--front-max));
	margin-inline: auto;
}

.p-hero__utility {
	display: flex;
	justify-content: flex-end;
	min-height: 1.5rem;
	padding: 0.15rem 0.8rem;
	font-size: 0.75rem;
}

.p-hero__utility a {
	text-decoration: none;
}

.p-hero__media {
	position: relative;
	aspect-ratio: 375 / 210;
	overflow: hidden;
	border-radius: 0.4rem;
	background: #ddd;
}

.p-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-hero__arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: grid;
	place-items: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	background: rgb(255 255 255 / 92%);
	box-shadow: 0 0.1rem 0.4rem rgb(0 0 0 / 20%);
	font-size: 1.9rem;
	line-height: 1;
	transform: translateY(-50%);
}

.p-hero__arrow--previous {
	left: 0.65rem;
}

.p-hero__arrow--next {
	right: 0.65rem;
}

.p-hero__pagination {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	height: 2.4rem;
	padding-top: 1rem;
}

.p-hero__pagination span {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #bbb;
}

.p-hero__pagination .is-current {
	background: var(--color-brand);
}

.p-primary-links {
	width: min(100%, var(--front-max));
	margin-inline: auto;
	padding: 0.85rem 1rem;
	background: var(--color-white);
}

.p-primary-links__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
}

.c-primary-link {
	display: grid;
	place-items: center;
	min-height: 3.6rem;
	padding: 0.25rem;
	border: 2px solid var(--color-brand);
	border-radius: 0.625rem;
	color: var(--color-text);
	font-size: clamp(0.62rem, 3.2vw, 0.75rem);
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.c-primary-link__icon {
	font-size: 1.1rem;
	line-height: 1;
}

.p-services {
	width: min(calc(100% - 1rem), var(--front-max));
	margin-inline: auto;
	padding: 1.25rem 0.75rem 2.2rem;
}

.p-services__title {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1.1rem;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}

.p-services__title::before,
.p-services__title::after {
	flex: 1;
	height: 1px;
	background: #aaa;
	content: "";
}

.p-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.45rem;
}

.c-service-link {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 4.6rem;
	padding: 0.35rem 0.15rem;
	border: 0;
	border-radius: 0.5rem;
	background: var(--color-white);
	box-shadow: 0 0.2rem 0.8rem rgb(0 0 0 / 14%);
	font-size: clamp(0.48rem, 2.4vw, 0.68rem);
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.c-service-link__icon {
	font-size: 1.65rem;
}

.p-news {
	background-color: #f3f3f3;
	background-image:
		radial-gradient(circle at 15% 20%, rgb(255 255 255 / 70%) 0 5rem, transparent 5.1rem),
		radial-gradient(circle at 90% 55%, rgb(255 255 255 / 65%) 0 8rem, transparent 8.1rem);
}

.p-news__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem 0.65rem;
}

.c-news-card {
	min-width: 0;
	background: var(--color-white);
	border-radius: 0.35rem;
	box-shadow: 0 0.2rem 0.8rem rgb(0 0 0 / 8%);
	overflow: hidden;
}

.c-news-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.c-news-card__media {
	aspect-ratio: 165 / 102;
	overflow: hidden;
	background: #ddd;
}

.c-news-card__image,
.c-news-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-news-card__placeholder {
	background: linear-gradient(135deg, #e5e5e5, #cfcfcf);
}

.c-news-card__body {
	position: relative;
	min-height: 5.6rem;
	padding: 0.45rem 1.5rem 0.65rem 0.55rem;
}

.c-news-card__meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.c-news-card__category {
	display: block;
	width: fit-content;
	padding: 0.05rem 0.35rem;
	background: #111;
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.58rem;
	line-height: 1.4;
}

.c-news-card__date {
	font-family: var(--font-display);
	font-size: 0.7rem;
}

.c-news-card__title {
	display: -webkit-box;
	margin: 0.1rem 0 0;
	overflow: hidden;
	font-size: 0.68rem;
	font-weight: 500;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.c-news-card__arrow {
	position: absolute;
	right: 0.4rem;
	top: 50%;
	font-size: 1.65rem;
	line-height: 1;
	transform: translateY(-50%);
}

.c-more-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(11.3rem, 80%);
	min-height: 2.55rem;
	margin: 1.35rem auto 0;
	border: 2px solid var(--color-brand);
	border-radius: 100vmax;
	background: var(--color-white);
	font-family: var(--font-display);
	font-size: 1rem;
	text-decoration: none;
	gap: 0.35rem;
}

.c-more-button--disabled {
	cursor: default;
}

.c-empty-state {
	grid-column: 1 / -1;
	padding: 2rem;
	background: var(--color-white);
	text-align: center;
}

.p-talent {
	padding-bottom: 3.5rem;
	background:
		linear-gradient(170deg, transparent 0 67%, var(--color-brand) 67.2% 73%, #f0f0f0 73.2%);
}

.p-talent__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem 0.45rem;
}

.c-talent-card {
	display: block;
	min-width: 0;
	background: var(--color-white);
	text-decoration: none;
	border-radius: 0.35rem;
	box-shadow: 0 0.15rem 0.65rem rgb(0 0 0 / 8%);
	overflow: hidden;
}

.c-talent-card__image {
	width: 100%;
	aspect-ratio: 114 / 123;
	object-fit: cover;
}

.c-talent-card__name {
	display: block;
	padding: 0.35rem 0.4rem;
	overflow: hidden;
	font-size: clamp(0.6rem, 2.7vw, 0.76rem);
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.p-schedule {
	background: #f5f5f5;
}

.p-schedule__month {
	display: grid;
	place-items: center;
	min-height: 5rem;
	margin-inline: 0;
	border-radius: 0.45rem 0.45rem 0 0;
	background: var(--color-white);
	line-height: 1;
}

.p-schedule__month strong {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 400;
}

.p-schedule__month span {
	font-family: var(--font-display);
	font-size: 0.9rem;
}

.p-schedule__list {
	display: grid;
	gap: 0;
	margin-top: 0;
	padding: 0 0.75rem 0.5rem;
	border-radius: 0 0 0.45rem 0.45rem;
	background: var(--color-white);
}

.c-schedule-card {
	background: var(--color-white);
	border-top: 1px solid #ddd;
}

.c-schedule-card__header {
	display: none;
	font-size: 0.78rem;
	font-weight: 700;
}

.c-schedule-card__body {
	display: grid;
	grid-template-columns: 3.7rem minmax(0, 1fr) 1rem;
	min-height: 4.2rem;
	align-items: center;
}

.c-schedule-card__body::after {
	content: "›";
	font-size: 1.5rem;
}

.c-schedule-card__date {
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: center;
	padding: 0.3rem 0.45rem;
	border-right: 1px solid #aaa;
}

.c-schedule-card__date strong {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
}

.c-schedule-card__date span {
	align-self: center;
}

.c-schedule-card__date small {
	grid-column: 1 / -1;
	font-family: var(--font-display);
	font-size: 0.85rem;
	text-align: center;
}

.c-schedule-card__content {
	min-width: 0;
	padding: 0.55rem;
}

.c-schedule-card__content h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.c-schedule-card__content p {
	margin: 0.35rem 0 0;
	font-size: 0.68rem;
	font-weight: 700;
}

.p-live__placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 340 / 125;
	border: 0;
	border-radius: 0.45rem;
	background: var(--color-white);
	box-shadow: 0 0.2rem 0.8rem rgb(0 0 0 / 8%);
	text-align: center;
}

.p-live__placeholder p {
	font-weight: 700;
}

.p-sns {
	padding-bottom: 2.2rem;
	background-color: var(--color-muted);
	background-image:
		radial-gradient(circle at 15% 35%, rgb(255 255 255 / 70%) 0 7rem, transparent 7.1rem),
		radial-gradient(circle at 85% 80%, rgb(255 255 255 / 60%) 0 9rem, transparent 9.1rem);
}

.p-sns__content {
	display: none;
}

.p-sns__links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.55rem;
}

.c-sns-link {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 5.8rem;
	padding: 0.5rem 0.15rem;
	border-radius: 0.5rem;
	background: rgb(255 255 255 / 70%);
	font-size: clamp(0.48rem, 2.3vw, 0.7rem);
	text-align: center;
}

.c-sns-link__icon {
	display: grid;
	place-items: center;
	width: 2.2rem;
	height: 2.2rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.c-sns-link__icon--instagram {
	border-radius: 0.55rem;
	color: #fff;
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.c-sns-link__icon--youtube {
	border-radius: 0.5rem;
	color: #fff;
	background: #f00;
	font-size: 1.1rem;
}

.c-sns-link__icon--facebook {
	border-radius: 0.35rem;
	color: #fff;
	background: #1877f2;
}

.p-sns__content a {
	display: grid;
	gap: 1rem;
}

.p-sns__content img {
	width: 100%;
	border: 1px solid #ddd;
}

@media (min-width: 48rem) {
	.p-front {
		width: min(100%, 64rem);
		margin-inline: auto;
		box-shadow: 0 0 2rem rgb(0 0 0 / 8%);
	}

	.p-front-section__inner {
		width: min(calc(100% - 4rem), var(--front-max));
	}

	.p-primary-links {
		padding-inline: 2rem;
	}

	.p-news__grid {
		gap: 1rem;
	}

	.c-news-card__title {
		font-size: 0.85rem;
	}

	.p-talent__grid {
		gap: 1rem;
	}

	.c-talent-card__name {
		font-size: 0.85rem;
	}
}

@media (hover: hover) {
	.c-primary-link[href],
	.c-service-link[href],
	.c-more-button[href],
	.c-news-card__link,
	.c-talent-card[href] {
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.c-primary-link[href]:hover,
	.c-service-link[href]:hover,
	.c-more-button[href]:hover,
	.c-news-card__link:hover,
	.c-talent-card[href]:hover {
		opacity: 0.75;
		transform: translateY(-2px);
	}
}
