@charset "UTF-8";
/* CSS Document */


/* ==============================
   Header
   ============================== */
.header {
	background: transparent;
	background-image: linear-gradient(180deg, #4c4948db, #4c494800);
	backdrop-filter: blur(2px);
}
.header__logo-img {
	display: none;
}
.header__logo-img-top {
	display: block;
	filter: drop-shadow(0 0 8px #4C494880);
}
.header__logo.is-show .header__logo-img {
	display: block;
}
.header__logo.is-show .header__logo-img-top {
	display: none;
}
.header.is-attach {
/*	background: #4C4948cc;*/
}
.header.is-show {
	background: #fff;
}
.header.is-show .header__logo-img {
	display: block;
}
.header.is-show .header__logo-img-top {
	display: none;
}


/* ==============================
   Main
   ============================== */
.section {
	position: relative;
	padding: 60px 30px;
	overflow: hidden;
	z-index: 1;
}
.section__title {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
	margin-bottom: 3rem;
}
.section__title-en {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .1rem;
}
.section__title-en::first-letter {
	color: var(--color-primary);
}
.section__title-jp {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: .05rem;
}
.section-divider {
	height: 1px;
	background-color: var(--color-text-sub);
	margin: 30px 0;
}
.section-link {
	margin-top: 3rem;
}
.link-wave {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: .05rem;
	text-decoration: var(--color-text) wavy underline;
	text-underline-offset: .3rem;
}
.link-wave .icon--external {
	display: inline-block;
	margin-left: .6rem;
}


.movie {
	position: relative;
	padding: 0;
/*	height: 100vh;*/
	height: 100dvh;
	max-height: 1024px;
	background: var(--color-text);
	overflow: hidden;
}
.movie__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.movie__title {
	position: absolute;
	bottom: 18%;
	left: 50%;
	transform: translateX(-50%);
	width: 71%;
}
.movie__button {
	position: absolute;
	bottom: 6%;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 264px;
	padding: 13px 40px;
	border: 1px solid #fff;
	background: #ffffffD9;
	font-size: 1.3rem;
	text-align: center;
	cursor: pointer;
}
.movie__button .icon {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}
.movie__button .icon--play {
	position: absolute;
	top: 50%;
	right: auto;
	left: 1.5rem;
	transform: translateY(-50%);
}


.intro-wrapper {
	height: 300vh; /* ← stickyが固定される領域を作る */
	position: relative;
}
.intro {
	position: sticky;
	top: 0;
	padding: 0;
	color: #fff;
	background: var(--color-text);
	opacity: 1;
	transition: opacity 0.1s ease;
	will-change: opacity;
}
.intro__block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	height: 100vh;
}
.intro__text {
	margin-left: 1.3rem;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	letter-spacing: .2rem;
	opacity: 1;
	transition: opacity 0.1s ease;
}


/* ---- アニメーションセクション ---- */
.values {
	position: relative;
	background: #000;
	overflow: hidden;
	height: 300vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	padding: 0;
	z-index: 0;
}
.values__bg {
	position: fixed;
	inset: 0;
	z-index: 1;
	transition: position 0s, transform 0.4s ease;
}
.values__bg.is-unfixed {
	position: absolute; /* ← 固定解除 */
	top: 200vh; /* ← valuesが終わった地点で自然に続く */
	left: 0;
	width: 100%;
}
.values__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.values__bg-list {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.values__bg-item {
	width: 100%;
/*	height: 100vh;*/
	height: 100dvh;
	background-size: cover;
	background-position: center;
}
/* 黒い板（中央に“穴”を開ける） */
.values__mask {
	position: fixed;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.values__mask-inner {
	width: 100%;
	height: 100%;
	/* 穴の半径をCSS変数で制御。初期は0vmax（完全に黒） */
	--hole: 0vmax;
	--cx: 50%;
	--cy: 50%;
	/* 透明（中心）→ 黒（外側）にする放射状グラデーションで“穴”を作る */
	background:
		radial-gradient(circle at var(--cx) var(--cy),
			transparent 0vmax,
			transparent var(--hole),
			var(--color-text) var(--hole),
			var(--color-text) 100%);
	transition: opacity 0.5s ease;
	will-change: background;
}
.values__text-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	opacity: 1;
	transition: opacity 0.1s ease;
	color: #fff;
}
.values__text {
	margin-left: 1.3rem;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	letter-spacing: .2rem;
	opacity: 1;
}
.values__logo {
	width: 100px;
}
.values__bg::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 630px;
	background: linear-gradient(180deg,#00000000 0%, #000000ff 100%);
	mix-blend-mode: multiply;
	z-index: 0;
}
.values__list {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding: 30px;
	z-index: 1;
}
.values__item {
	writing-mode: vertical-rl;
}
.values__link {
	position: relative;
	display: inline-block;
	height: 260px;
	font-size: 1.7rem;
	line-height: 1;
	white-space: nowrap;
	letter-spacing: .2rem;
	color: #fff;
}
.values__link > .hashtag {
	writing-mode: horizontal-tb;
	display: inline-block;
	margin-left: 4px;
	margin-bottom: 4px;
}
.values__link > .icon--arrow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	writing-mode: horizontal-tb;
	display: inline-block;
	margin-left: 1px;
}
@media (min-width: 441px) {
	.values__bg {
		top: 0;
		left: auto;
		bottom: auto;
		right: calc(50% - 219px);
		width: 438px;
		height: 100vh;
/*		height: 100dvh;*/
	}
	.values__mask {
		top: 0;
		left: auto;
		bottom: auto;
		right: calc(50% - 219px);
		width: 438px;
		height: 100vh;
/*		height: 100dvh;*/
	}
}
@media (min-width: 768px) {
	.values__bg {
		right: 21px;
		width: 388px;
	}
	.values__mask {
		right: 21px;
		width: 388px;
	}
}
@media (min-width: 999px) {
	.values__bg {
		right: 61px;
	}
	.values__mask {
		right: 61px;
	}
}
@media (min-width: 1241px) {
	.values__bg {
		right: calc(50% - 620px + 60px + 1px);
	}
	.values__mask {
		right: calc(50% - 620px + 60px + 1px);
	}
/*
	.values__bg {
		top: 0;
		left: calc(50vw + (620px - 390px - 67px));
		bottom: auto;
		right: auto;
	}
	.values__mask {
		top: 0;
		left: calc(50vw + (620px - 390px - 67px));
		bottom: auto;
		right: auto;
	}
*/
}


.interview__thumbnail {
	position: relative;
	border: 8px solid #fff;
	border-radius: 5px 5px 5px 0;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.interview__sns {
	position: absolute;
	top: -8px;
	left: -8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 8px 8px;
	border-radius: 5px 0 20px 0;
	background: #fff;
	z-index: 2;
}
.interview__thumbnail.is-playing {
	border-radius: 5px;
}

.interview__sns-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 3px;
}
.interview__thumbnail.is-playing .interview__sns {
	display: none;
}
.interview__sns-text {
	writing-mode: vertical-rl;
	font-size: .7rem;
	line-height: 1;
	white-space: nowrap;
	vertical-align: middle;
	color: var(--color-primary);
}
.interview__sns-link .icon {
	background-color: var(--color-primary);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}
.interview__sns-link .icon--instagram svg {
	width: 8.2px;
}
.interview__sns-link .icon--tiktok svg {
	width: 7px;
}
.interview__sns-link .icon--youtube svg {
	width: 9.6px;
}
.interview__movie,
.interview__thumbnail-image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.interview__thumbnail-image {
	filter: brightness(80%);
}
.interview__caption {
	position: absolute;
	bottom: -8px;
	left: -8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #fff;
	border-radius: 0 10px 0 0;
	padding: 10px 10px 8px 8px;
	line-height: 1.2;
	z-index: 2;
}
.interview__caption-label {
	position: absolute;
	bottom: calc(100% - 1px);
	left: 0;
	display: inline-block;
	background: #fff;
	border-radius: 0 10px 0 0;
	color: var(--color-primary);
	font-size: .75rem;
	font-weight: 700;
	padding: 9px 10px 0 8px;
	letter-spacing: .05rem;
}
.interview__caption-title {
	display: inline-block;
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: .05rem;
}
.interview__caption-subtitle {
	display: inline-block;
	color: var(--color-text-sub);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .05rem;
}
.interview__play-icon-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}
.interview__play-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 68px;
	height: 68px;
	padding-left: 5px;
}
.interview__play-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 68px;
	height: 68px;
	border-radius: 68px;
	border: 1px dashed #fff;
	transform-origin: center;
	animation: 8s linear infinite play-icon-rotation;
}
@keyframes play-icon-rotation {
	0% { transform:rotate(0); }
	100% { transform:rotate(360deg); }
}

.interview__list {
	width: 668px;
}
.interview__item {
	position: relative;
	width: 322px;
	max-width: 322px;
	margin-right: 12px;
}
.interview__link {
	display: block;
	padding-left: 9px;
}
.interview__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.interview__company {
	position: absolute;
	top: 16px;
	left: 0;
	padding: 0 .5rem;
	background: var(--color-primary);
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: .05rem;
}
.interview__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 65px 10px 19px;
}
.interview__title {
	padding: .1rem .5rem;
	background: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .1rem;
	-webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.interview__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	margin-bottom: 2px;
}
.interview__tag {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: .05rem;
}
.interview__hashtags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 10px;
}
.interview__hashtag {
	padding: 0 .4rem;
	font-size: 1.1rem;
	font-weight: 700;
	background: #fff;
	color: var(--color-primary);
	letter-spacing: .05rem;
}
.interview__arrow {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 47px;
	height: 47px;
	border-radius: 47px;
	background: #ffffff73;
	border: 1px solid #fff;
}

.interview__action {
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.interview__button {
	position: relative;
	display: inline-block;
	min-width: 170px;
	padding: 1rem 4rem;
	border-radius: 40px;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}
.interview__button--video {
	background: var(--color-text);
	color: #fff;
}
.interview__button--youtube {
	background-color: #E94738;
	color: #fff;
}
.interview__button .icon {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}
.interview__button .icon--youtube {
	position: absolute;
	top: 50%;
	right: auto;
	left: 1.5rem;
	transform: translateY(-50%);
}

.interview__filter {
	position: relative;
	margin-bottom: 2.0rem;
	padding-left: 2.3rem;
}
.interview__filter-lead {
	position: absolute;
	top: .5rem;
	left: 0;
	writing-mode: vertical-rl;
	font-size: 1rem;
	line-height: 1;
	white-space: nowrap;
	color: var(--color-text-sub);
}
.interview__filter-title {
	margin-bottom: .5rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: .1rem;
}
.interview__filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem 1rem;
}
.interview__filter-button {
	display: inline-block;
	padding: .5rem .8rem;
	border-radius: 2rem;
	background: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .03rem;
	cursor: pointer;
}
.interview__filter-button:hover {
	background: var(--color-text);
	color: #fff;
}

.interview__filter-button.is-active {
	background: var(--color-text);
	color: #fff;
}



.news {
	background: #fff;
}
.news__item {
	margin-bottom: 2rem;
}
.news__cat {
	display: inline-block;
	margin-right: 1rem;
	font-size: 10px;
	font-weight: 400;
}
.news__date {
	display: inline-block;
	font-size: 10px;
	font-weight: 400;
	color: var(--color-primary);
}
.news__title {
	display: block;
	font-size: 12px;
	font-weight: 700;
}



.topics__list {
	width: 668px;
	margin-bottom: 3rem;
}
.topics__item {
	position: relative;
	width: 322px;
	max-width: 322px;
	margin-right: 12px;
}
.topics__link {
	display: block;
	padding-left: 9px;
}
.topics__img {
	width: 100%;
	margin-bottom: 1rem;
}
.topics__title {
	margin-bottom: .3rem;
	font-size: 1.3rem;
}
.topics__date {
	font-size: 10px;
	font-weight: 400;
	color: var(--color-text-sub);
}


.data__list {
	width: 500px;
}
.data__item {
	width: 234px;
	max-width: 234px;
	margin-right: 16px;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
}
.data__title {
	position: relative;
	display: block;
	padding-left: 1.6rem;
	font-size: 1.4rem;
	font-weight: 700;
}
.data__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 2px;
	background: var(--color-primary);
}
.data__num {
	display: inline-block;
	font-size: 5rem;
	line-height: 1.25;
	color: var(--color-primary);
}
.data__unit {
	display: inline-block;
	margin-left: .5rem;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.25;
}
.data__note {
	display: block;
	font-size: 1.2rem;
	color: var(--color-text-sub);
}


.links__title {
	position: relative;
	margin-bottom: 2.5rem;
	padding-left: 1.6rem;
	font-size: 1.7rem;
	font-weight: 700;
}
.links__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 1.5rem;
	background: var(--color-primary);
	border-radius: 3px;
}
.links__list {
	margin-bottom: 3rem;
	border-botton: 1px solid #A5A4A3;
}
.links__list:first-child {
	border-botton: none;
}
.links__item {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 1.6rem;
	font-size: 1.5rem;
}
.links__item:last-child {
	margin-bottom: 0;
}
.links__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background: var(--color-primary);
	border-radius: 50%;
}
.links__item-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	width: 100%;
}
.links__action {
	text-align: center;
}

.links__button {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 1rem 3.5rem;
	background: var(--color-primary);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
}
.links__button .icon {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}

























