@charset "utf-8";

#GHead {
	position: relative;
	z-index: 9000;
}

#wrap {
	padding-top: 0;
}

/*================================================================
# mv
================================================================ */
.mv {
	margin: 0;
	background: url("/department/management/sports-management/img/mv_bg_sp.png") no-repeat center top / auto 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 700 / 953;
}

.mv__box {
	width: 180px;
	height: 180px;
	margin: auto;
	padding: 7px;
	background: var(--gradient);
	box-shadow: 0 8px 6px rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 14%;
	left: 0;
	color: var(--white);
	text-align: center;
	box-sizing: border-box;
}

.mv__inner {
	width: 100%;
	height: 100%;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.95);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.mv__title .faculty {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.mv__title h1 {
	margin: 16px 0 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.03em;
}

/*================================================================
# partners
================================================================ */
.partners {
	padding: 48px 0 0;
	background: var(--white);
	overflow: hidden;
}

.partners__title {
	font-family: var(--mincho);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.65;
	text-align: center;
	letter-spacing: 0.06em;
}

.partners__title span {
	width: 310px;
	margin: 0 auto;
	padding: 0 8px;
	position: relative;
	display: block;
	box-sizing: border-box;
	z-index: 0;
}

.partners__title span::before {
	height: 8px;
	background: linear-gradient(90deg, #a8e6e9 0%, #dce5f5 100%);
	position: absolute;
	content: "";
	right: 0;
	bottom: 5px;
	left: 0;
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.partners__lead {
	margin: 56px 0 0;
	padding: 0 24px;
	font-family: var(--mincho);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.6;
	color: #00a2bd;
	text-align: center;
	letter-spacing: 0.02em;
}

.partners__slider {
	margin: 8px 0 0;
}

.partners__slider .splide__track {
	overflow: visible;
}

.partners__slider .splide__list {
	align-items: center;
}

.partners__slider .splide__slide {
	width: 126px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.partners__slider .splide__slide img {
	width: auto;
	max-width: 112px;
	height: auto;
	max-height: 120px;
	object-fit: contain;
}

.partners__note {
	margin: 8px 24px 0;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.7;
	text-align: left;
}

/*================================================================
# sp-page-nav
================================================================ */
.sp-page-nav-space {
	width: 100%;
	position: relative;
}

.sp-page-nav {
	width: 100%;
	padding: 0;
	background: var(--gradient);
	position: fixed;
	top: 58px;
	right: 0;
	left: 0;
	color: var(--white);
	box-sizing: border-box;
	z-index: 1000;
}

.sp-page-nav .wrap {
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}

.sp-page-nav__inner {
	min-height: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.sp-page-nav__title {
	min-width: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-shrink: 1;
}

.sp-page-nav__title a {
	display: block;
	line-height: 1;
}

.sp-page-nav__title .faculty {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}

.sp-page-nav__title .course {
	margin: 2px 0 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
	letter-spacing: .03em;
}

.sp-page-nav__trigger {
	padding: 8px 0 8px 12px;
	cursor: pointer;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	font-family: var(--text-en);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	letter-spacing: .08em;
	gap: 10px;
}

.sp-page-nav__trigger i {
	width: 20px;
	height: 20px;
	border: 1px solid var(--white);
	border-radius: 50%;
	position: relative;
	display: block;
	flex-shrink: 0;
	box-sizing: border-box;
	transition: transform .4s ease;
	transform: rotate(0);
}

.sp-page-nav__trigger i::before,
.sp-page-nav__trigger i::after {
	width: 5px;
	height: 2px;
	background: var(--white);
	position: absolute;
	content: "";
	top: 10px;
}

.sp-page-nav__trigger i::before {
	left: 4px;
	transform: rotate(45deg);
	transform-origin: right center;
}

.sp-page-nav__trigger i::after {
	right: 4px;
	transform: rotate(-45deg);
	transform-origin: left center;
}

.sp-page-nav.is-open .sp-page-nav__trigger i {
	transform: rotate(180deg);
}

.sp-page-nav__menu {
	height: 0;
	margin: 0 -20px;
	background: var(--gradient);
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
	transition: height .4s ease;
	overscroll-behavior: contain;
}

.sp-page-nav__link {
	width: 100%;
	min-height: 80px;
	padding: 6vh 20px;
	border-top: 1px solid rgba(255, 255, 255, .35);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	transition: opacity .3s ease;
}

.sp-page-nav__link .ja {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .06em;
}

.sp-page-nav__link .en {
	margin: 8px 0 0;
	font-family: var(--text-en);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .12em;
}

.sp-page-nav__link:hover {
	opacity: .65;
}

body.is-sp-page-nav-open {
	overflow: hidden;
}

/*================================================================
# topics
================================================================ */
.topics {
	padding: 100px 0 64px;
	position: relative;
}

.topics::before {
	width: calc(100% - 64px);
	height: 500px;
	border-radius: 0 0 0 32px;
	background: linear-gradient(90deg, #c4edf1 0%, #dfe9f7 100%);
	position: absolute;
	content: "";
	top: 200px;
	right: 0;
}

.topics .wrap {
	position: relative;
	z-index: 1;
}

.topics__heading {
	display: flex;
	align-items: center;
	gap: 16px;
}

.topics h2.topics__title {
	font-family: var(--text-en);
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
}

.topics__more {
	display: flex;
	align-items: center;
	letter-spacing: 0.06em;
	gap: 8px;
}

.topics__more .label {
	font-family: var(--text-en);
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
}

.topics__more .arrow {
	width: 44px;
	height: 20px;
	position: relative;
	display: block;
	flex-shrink: 0;
}

.topics__more .arrow::before {
	width: 20px;
	height: 20px;
	border: 1px solid var(--black);
	border-radius: 50%;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}

.topics__more .line {
	width: 24px;
	height: 1px;
	background: var(--black);
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	transition: transform 0.35s ease;
	transform: translateY(-50%);
	transform-origin: left center;
}

.topics__more .line::after {
	width: 7px;
	height: 1px;
	background: var(--black);
	position: absolute;
	content: "";
	right: -1px;
	bottom: 0;
	transform: rotate(52deg);
	transform-origin: right center;
}

.topics__more:hover .line {
	transform: translate(4px, -50%);
}

.topics_wrap {
	margin: 24px 0 0;
}

.topics .pcInner,
.topics .spInner,
.topics .mainCont {
	width: 100%;
	margin: 0;
	padding: 0;
}

.topics .modTopics {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 16px;
}

.topics .modTopics::before,
.topics .modTopics::after {
	content: none;
	display: none;
}

.topics .modTopics>li {
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	float: none;
}

.topics .modTopics>li>a {
	height: 100%;
	display: block;
}

.topics .modTopics_itemInner {
	height: 100%;
	padding: 0;
	table-layout: auto;
	border: 0;
	display: flex;
	flex-direction: column;
}

.topics .modTopics_photo {
	width: 100%;
	height: fit-content;
	display: block;
	aspect-ratio: 500 / 306;
}

.topics .modTopics_photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 500 / 306;
}

.topics .modTopics_txtCol {
	padding: 8px 0 0;
}

.topics .modTopics_dateRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
}

.topics .modTopics_date {
	margin: 0;
	font-family: var(--text-en);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
}

.topics .modGenre {
	min-width: 72px;
	margin: 0;
	padding: 4px 6px;
	border-radius: 5px;
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	color: var(--white);
	text-align: center;
	letter-spacing: 0.03em;
	box-sizing: border-box;
}

.topics .modTopics_tit {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
}

.topics .modTopics_depart {
	margin: 8px 0 0;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.6;
	color: #d95555;
}

.topics .modTopics a:hover .modTopics_photo img {
	transform: scale(1.04);
}

.topics .modArrowTxt01 {
	display: none;
}

/*================================================================
# features
================================================================ */
.features {
	margin: 24px 0 0;
	padding: 128px 0 64px;
	background-color: var(--bg01);
	position: relative;
	overflow: hidden;
}

.features::before {
	width: 100%;
	height: 720px;
	background: var(--white) url("../img/features_bg.png") no-repeat center top / auto 720px;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 0;
}

.features::after {
	width: 100%;
	height: 560px;
	pointer-events: none;
	background: url("/department/management/sports-management/img/features_bg02.png") no-repeat center top / auto 560px;
	position: absolute;
	content: "";
	top: 52%;
	right: 0;
	left: 0;
	z-index: 0;
}

.features .wrap {
	position: relative;
	z-index: 1;
}

.features__heading {
	margin: 0 0 -16px;
	text-align: center;
}

.features__heading h2 {
	font-family: var(--text-en);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
}

.features__heading p {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: var(--primary);
	letter-spacing: 0.05em;
}

.features__panel {
	margin: 112px auto 0;
	padding: 24px 20px 40px;
	border: 2px solid var(--white);
	border-radius: 0 18px 18px;
	background: var(--white);
	position: relative;
	box-sizing: border-box;
}

.features__title {
	width: 310px;
	min-height: 64px;
	padding: 12px 32px 13px 16px;
	background: var(--white);
	position: absolute;
	top: -64px;
	left: -2px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	gap: 8px;
	clip-path: path("M18 0 H272 Q282 0 288 9 L310 72 H0 V18 Q0 0 18 0 Z");
}

.features__title .number {
	width: 36px;
	margin: 0;
	flex-shrink: 0;
	font-family: var(--text-en);
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: var(--black);
	letter-spacing: 0.02em;
}

.features__title h3 {
	width: calc(100% - 36px);
	padding: 0;
	text-align: center;
}

.features__title h3 span {
	background: linear-gradient(90deg, #009fb9 0%, #009fb9 58%, #91a9dc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: var(--mincho);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: transparent;
	text-align: center;
	letter-spacing: 0;
}

.features__title h3 small {
	font-size: 10px;
	letter-spacing: 0;
}

.features__overview {
	margin: 0;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--primary);
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
}

.features__overview .label {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border: 1px solid var(--primary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--primary);
	text-align: center;
}

.features .text {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.03em;
}

.features__list {
	margin: 28px 0 0;
}

.features__item {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 24px;
}

.features__item+.features__item {
	margin: 48px 0 0;
}

.features__item-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.features__item-title .place {
	width: 56px;
	height: 40px;
	padding: 6px 8px;
	background: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 56px;
	font-family: var(--mincho);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--white);
	text-align: center;
	box-sizing: border-box;
}

.features__item-title h4 {
	flex: 1 1 0;
	font-family: var(--mincho);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.55;
	color: var(--primary);
	letter-spacing: 0;
}

.features__body>.text {
	margin: 14px 0 0;
}

.features__item img {
	width: 100%;
	display: block;
}

.features__item figcaption {
	margin: 4px 0 0;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.features__slider {
	width: 100%;
	padding: 0 0 24px;
}

.features__slider .splide__track {
	overflow: hidden;
}

.features__slider .splide__slide {
	width: 100%;
	overflow: hidden;
}

.features__slider .splide__slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.features__slider .splide__pagination {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	bottom: 2px;
	left: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}

.features__slider .splide__pagination li {
	height: 8px;
	display: flex;
	align-items: center;
}

.features__slider .splide__pagination__page {
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 1px solid var(--gray03);
	border-radius: 50%;
	background: var(--white);
	box-sizing: border-box;
	transition: background-color 0.3s ease;
	transform: none;
}

.features__slider .splide__pagination__page.is-active {
	background: var(--gray03);
	transform: none;
}

.features__voice {
	width: 220px;
	min-height: 48px;
	margin: 20px auto 0;
	padding: 7px 28px 8px 22px;
	cursor: pointer;
	border: 0;
	border-radius: 32px;
	background: linear-gradient(90deg, #00a0b7 0%, #19a4bd 55%, #8ba8d9 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--white);
	box-sizing: border-box;
	transition: filter 0.3s ease;
}

.features__voice strong {
	font-family: var(--text-en);
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	letter-spacing: 0.05em;
}

.features__voice span {
	margin: 0 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	white-space: nowrap;
}

.features__voice i {
	width: 20px;
	height: 20px;
	margin: 0 0 0 auto;
	border: 1px solid var(--white);
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
	color: var(--white);
	box-sizing: border-box;
}

.features__voice i::before {
	width: 20px;
	height: 1px;
	background: var(--white);
	position: absolute;
	content: "";
	top: 50%;
	left: 10px;
	transition: transform 0.3s ease;
	transform: translateY(-50%);
}

.features__voice i::after {
	width: 7px;
	height: 1px;
	background: var(--white);
	position: absolute;
	content: "";
	top: 50%;
	right: -12px;
	transition: transform 0.3s ease;
	transform: translateY(-50%) rotate(52deg);
	transform-origin: right center;
}

.features__voice:hover {
	filter: brightness(1.08);
}

.features__voice:hover i::before {
	transform: translate(4px, -50%);
}

.features__voice:hover i::after {
	transform: translate(4px, -50%) rotate(52deg);
}

/*================================================================
# features 02
================================================================ */
.features__panel__02 {
	background: transparent;
}

.features__panel__02 .features__item {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 24px;
}

.features__panel__02 .features__internship-media {
	display: grid;
	align-items: start;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.features__panel__02 .features__item:first-child .features__internship-media {
	grid-template-columns: 1.35fr 0.85fr;
}

.features__panel__02 .features__internship-image {
	margin: 0;
}

.features__panel__02 .features__internship-image img {
	width: 100%;
	height: 160px;
	display: block;
	object-fit: cover;
}

.features__panel__02 .features__item:first-child .features__internship-image img {
	height: 160px;
}

.features__panel__02 .features__internship-image figcaption {
	margin: 4px 0 0;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
}

.features__panel__02 .features__body>.text {
	margin: 14px 0 0;
	line-height: 1.9;
}

.features__panel__02 .features__item-title h4 {
	font-size: 16px;
	line-height: 1.5;
}

.features__panel__02 .voice-modal__panel--single {
	width: calc(100% - 40px);
	max-width: none;
}

.features__panel__02 .voice-modal__panel--single .voice-modal__list {
	display: block;
}

.features__panel__02 .voice-modal__panel--single .voice-modal__list::before {
	display: none;
}

.features__panel__02 .voice-modal__panel--single .voice-modal__item {
	max-width: none;
	margin: 0;
}

/*================================================================
# features 03
================================================================ */
.features__panel__03 .features__item {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 24px;
}

.features__panel__03 .text {
	line-height: 1.9;
}

.features__experience-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.features__experience-image {
	margin: 0;
}

.features__experience-image img {
	width: 100%;
	height: 140px;
	display: block;
	object-fit: cover;
}

.features__experience-voice {
	margin: 64px 0 0;
	padding: 112px 20px 88px;
	border-radius: 24px;
	background: linear-gradient(90deg, #009fb9 0%, #20a4bc 58%, #8aa9da 100%);
	position: relative;
	display: block;
	color: var(--white);
	box-sizing: border-box;
}

.features__experience-person {
	width: 136px;
	height: 136px;
	margin: 0 auto;
	border: 6px solid var(--primary);
	border-radius: 50%;
	background: var(--white);
	position: absolute;
	top: -40px;
	right: 0;
	left: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.features__experience-person img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.features__experience-comment {
	position: relative;
	z-index: 1;
}

.features__experience-comment>p {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: 0.02em;
}

.features__experience-comment .profile {
	margin: 12px 0 0;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 2px;
}

.features__experience-comment .profile strong,
.features__experience-comment .profile span {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.features__experience-voice-label {
	width: 100%;
	height: 64px;
	padding: 0 0 3px;
	border-radius: 0 0 24px 24px;
	background: var(--black);
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	color: var(--white);
	gap: 12px;
}

.features__experience-voice-label strong {
	font-family: var(--text-en);
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

.features__experience-voice-label span {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

/*================================================================
# features 04
================================================================ */
.features__panel__04 {
	background: transparent;
}

.features__panel__04 .features__item {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 24px;
}

.features__pbl-lead .text {
	line-height: 1.9;
}

.features__pbl-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.features__pbl-gallery figure {
	margin: 0;
}

.features__pbl-gallery figure:first-child {
	grid-column: 1 / -1;
}

.features__pbl-gallery img {
	width: 100%;
	height: 132px;
	display: block;
	object-fit: cover;
}

.features__pbl-gallery figure:first-child img {
	height: 188px;
}

/*================================================================
# features 05
================================================================ */
.features__seminar-lead {
	margin: 0;
	font-family: var(--mincho);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--primary);
	letter-spacing: 0.03em;
}

.features__seminar-grid {
	margin: 24px 0 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.features__seminar-item {
	min-width: 0;
}

.features__seminar-head {
	padding: 0 0 0 8px;
	border-left: 5px solid var(--black);
}

.features__seminar-item h4 {
	margin: 0;
	font-family: var(--mincho);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--primary);
	letter-spacing: 0;
}

.features__seminar-item:nth-child(5) h4 {
	letter-spacing: 0;
}

.features__seminar-tags {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--gray03);
	letter-spacing: 0;
}

.features__seminar-item .text {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.85;
	letter-spacing: 0.02em;
}

/*================================================================
# features 06
================================================================ */
.features__panel__06 {
	background: transparent;
}

/*================================================================
# features career slider
================================================================ */
.features__career-slider {
	padding: 0 0 32px;
}

.features__career-slider .splide__track {
	overflow: hidden;
}

.features__career-slider .splide__list {
	align-items: stretch;
}

.features__career-slider .splide__slide {
	height: auto;
}

.features__career-page {
	height: 100%;
	position: relative;
	display: block;
}

.features__career-page::before {
	display: none;
}

.features__career-card {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.features__career-card+.features__career-card {
	margin: 32px 0 0;
	padding: 32px 0 0;
	border-top: 2px solid var(--white);
}

.features__career-card-head {
	display: grid;
	align-items: center;
	grid-template-columns: 80px 1fr;
	gap: 16px;
}

.features__career-image {
	width: 80px;
	height: 104px;
	margin: 0;
	border-radius: 50%;
	overflow: hidden;
}

.features__career-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.features__career-body {
	min-width: 0;
}

.features__career-company {
	width: fit-content;
	margin: 0;
	padding: 3px 6px 4px;
	background: var(--black);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--white);
}

.features__panel__06 h4 {
	margin: 12px 0 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--primary);
	letter-spacing: 0;
}

.features__career-profile {
	margin: 10px 0 0;
	display: flex;
	flex-direction: column;
}

.features__career-profile strong,
.features__career-profile span {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
}

.features__career-text {
	margin: 20px 0 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: 0.02em;
}

.features__career-page--main {
	display: block;
}

.features__career-main {
	display: block;
}

.features__career-page.features__career-page--main::before {
	display: none;
}

.features__career-main-image {
	width: 64%;
	height: auto;
	margin: 0 auto;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 660 / 484;
}

.features__career-main-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.features__career-main-head {
	padding: 20px 0 0;
}

.features__career-main-label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.features__career-main-label>p:first-child {
	margin: 0;
	font-family: var(--mincho);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.features__career-main-head .features__career-profile {
	margin: 12px 0 0;
}

.features__career-main-text {
	margin: 20px 0 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: 0.02em;
}

.features__career-slider .splide__arrow {
	width: 36px;
	height: 36px;
	margin: auto;
	opacity: 1;
	border: 1px solid var(--gray03);
	border-radius: 50%;
	background: transparent;
	background-color: var(--bg01);
	top: 0;
	bottom: 32px;
	transition: background-color 0.3s ease;
	transform: none;
}

.features__career-slider .splide__arrow--prev {
	left: -40px;
}

.features__career-slider .splide__arrow--next {
	right: -40px;
}

.features__career-slider .splide__arrow svg {
	width: 11px;
	height: 11px;
	transition: fill 0.3s ease;
	fill: var(--gray03);
}

.features__career-slider .splide__arrow:hover {
	background: var(--gray03);
}

.features__career-slider .splide__arrow:hover svg {
	fill: var(--white);
}

.features__career-slider .splide__pagination {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 44px;
	bottom: 0;
	left: 44px;
	gap: 6px;
}

.features__career-slider .splide__pagination__page {
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 1px solid var(--gray03);
	border-radius: 50%;
	background: transparent;
	transform: none;
}

.features__career-slider .splide__pagination__page.is-active {
	background: var(--gray03);
	transform: none;
}

/*================================================================
# features career accordion
================================================================ */
.features__career-accordion {
	margin: 32px 0 0;
	border-radius: 16px;
	background: var(--gradient);
	overflow: hidden;
	color: var(--white);
}

.features__career-trigger {
	width: 100%;
	padding: 18px 20px;
	cursor: pointer;
	border: 0;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--white);
	text-align: left;
	box-sizing: border-box;
	gap: 16px;
}

.features__career-trigger i {
	width: 25px;
	height: 12px;
	position: relative;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	transform: rotate(180deg);
}

.features__career-trigger i::before,
.features__career-trigger i::after {
	width: 13px;
	height: 1px;
	background: var(--white);
	position: absolute;
	content: "";
	top: 2px;
}

.features__career-trigger i::before {
	left: 0;
	transform: rotate(-42deg);
	transform-origin: right center;
}

.features__career-trigger i::after {
	right: 0;
	transform: rotate(42deg);
	transform-origin: left center;
}

.features__career-accordion.is-open .features__career-trigger i {
	transform: rotate(0);
}

.features__career-content {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease;
}

.features__career-content-inner {
	padding: 0 20px 24px;
	position: relative;
	display: block;
}

.features__career-column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.features__career-column+.features__career-column {
	margin: 24px 0 0;
}

.features__career-group h4 {
	width: fit-content;
	margin: 0;
	padding: 4px 8px 5px;
	background: var(--black);
	font-family: var(--mincho);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--white);
}

.features__career-group p {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.01em;
}

.features__career-note {
	margin: 20px 0 0;
	position: static;
	font-size: 11px;
	font-weight: 700;
	text-align: right;
}

/*================================================================
# voice modal
================================================================ */
.voice-modal {
	width: 100%;
	height: 100%;
	padding: 40px 20px;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	z-index: 10000;
	transition: visibility .3s ease, opacity .3s ease;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.voice-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.voice-modal__overlay {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	left: 0;
}

.voice-modal__panel {
	width: 100%;
	margin: auto 0;
	padding: 56px 20px 24px;
	border-radius: 20px;
	background: var(--bg01);
	position: relative;
	overflow: visible;
	box-sizing: border-box;
	transition: transform .3s ease;
	transform: translateY(20px);
}

.voice-modal.is-open .voice-modal__panel {
	transform: translateY(0);
}

.voice-modal__title {
	width: 170px;
	margin: 0;
	pointer-events: none;
	position: absolute;
	top: 0px;
	left: 16px;
}

.voice-modal__title img {
	width: 100%;
	height: auto;
	display: block;
}

.voice-modal__list {
	position: relative;
	display: block;
}

.voice-modal__list::before {
	display: none;
}

.voice-modal__item {
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 92px 1fr;
	gap: 16px;
}

.voice-modal__item+.voice-modal__item {
	margin: 32px 0 0;
	padding: 32px 0 0;
	border-top: 2px solid var(--primary);
}

.voice-modal__image {
	width: 92px;
	margin: 0;
	border-radius: 50%;
	overflow: hidden;
}

.voice-modal__image img {
	width: 100%;
	height: auto;
	display: block;
}

.voice-modal__body {
	min-width: 0;
}

.voice-modal__profile {
	margin: 0;
	padding: 0 0 0 8px;
	border-left: 6px solid var(--primary);
	display: flex;
	flex-direction: column;
}

.voice-modal__profile strong {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.voice-modal__profile span {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

.voice-modal__text {
	margin: 12px 0 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.02em;
}

.voice-modal__close {
	width: 160px;
	margin: 32px auto 0;
	padding: 12px 20px 13px;
	cursor: pointer;
	border: 0;
	border-radius: 28px;
	background: var(--primary);
	position: sticky;
	right: auto;
	bottom: 8px;
	left: auto;
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	z-index: 2;
	transition: filter .3s ease;
}

.voice-modal__close:hover {
	filter: brightness(1.1);
}

body.is-voice-modal-open {
	overflow: hidden;
}

/*================================================================
# movie
================================================================ */
.movie {
	padding: 120px 0 72px;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.movie::before {
	width: 100%;
	height: 520px;
	pointer-events: none;
	background: var(--bg01) url("../img/movie_bg.png") no-repeat center top / auto 520px;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
}

.movie__title {
	position: relative;
	font-family: var(--text-en);
	font-size: 38px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.05em;
	z-index: 1;
}

.movie__slider {
	margin: 32px 0 0;
	position: relative;
	z-index: 1;
}

.movie__slider .splide__slide {
	max-width: none;
}

.movie__media {
	width: 100%;
	background: var(--black);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.movie__media iframe {
	width: 100%;
	height: 100%;
	display: block;
}

.movie__slider .splide__arrow {
	width: 38px;
	height: 38px;
	padding: 0;
	opacity: 1;
	border: 0;
	background: transparent;
	background-color: #fff;
	top: 50%;
	transform: translateY(-50%);
}

.movie__slider .splide__arrow--prev {
	left: 12px;
}

.movie__slider .splide__arrow--next {
	right: 12px;
}

.movie__slider .splide__arrow svg {
	width: 38px;
	height: 38px;
	display: block;
	overflow: visible;
}

.movie__slider .splide__arrow--prev svg {
	transform: rotate(180deg);
}

.movie__slider .splide__arrow .arrow-shape {
	transition: fill 0.3s ease;
	fill: var(--primary);
}

.movie__slider .splide__arrow:hover .arrow-shape {
	fill: var(--white);
}

.movie__slider .splide__arrow:hover {
	border-radius: 50%;
	background: var(--primary);
}

.movie__slider .splide__pagination {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	bottom: -36px;
	left: 0;
	gap: 4px;
}

.movie__slider .splide__pagination__page {
	width: 9px;
	height: 9px;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 1px solid var(--primary);
	border-radius: 50%;
	background: var(--white);
	transform: none;
}

.movie__slider .splide__pagination__page.is-active {
	background: var(--primary);
	transform: none;
}