@charset "utf-8";

/*
Theme Name: General Purchase Inc. Theme
Description: General Purchase Inc. Theme
Version: 1.0.0
*/


/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

*:focus {outline:0;}

/* padding,border内側設定 */
*,::before,::after{box-sizing:border-box;}

/* HTML5 */
article, aside, figure, figcaption, footer, header, nav, section{display: block;}

/*------------------------------------------------------------
	Base
------------------------------------------------------------*/

:root {
	--gp-blue: #3986c6;
	--gp-blue-light: rgba(107, 177, 202, 1);
	--gp-blue-mid: rgba(82, 156, 200, 1);
	--gp-blue-dark: rgba(30, 96, 163, 1);
	--header-height: 100px;
	--transition-duration: 0.8s;

	--blue: #3986C6;
	--overlay: #1f4f7f80;
	--black: #000;
	--white: #fff;
	--input: rgba(255,255,255,0.6);
	--radial-gradient: radial-gradient(44.65% 86.08% at 50% 50%, #6BB1CA 5.29%, #3986C6 50.85%, #1E60A3 100%);
	--linear-gradient: linear-gradient(263.27deg, #6BB1CA 13.14%, #3986C6 55.54%, #1E60A3 101.28%);
	--ja: "Noto Sans JP", sans-serif;
	--min: "BIZ UDPMincho", serif;
	--en: "Cardo", serif;
	--headerHeight: 100px;
	--px: min(88px,6.875vw);
}
@media screen and (max-width: 800px) {
	:root {
		--headerHeight: 76px;
		--px: 24px;
	}
}

html {scroll-behavior:smooth;margin:0px;padding:0px;height: 100%;width:100%;-webkit-text-size-adjust:none;}

a:link {color:inherit;text-decoration:none;}
a:hover {color:inherit;text-decoration:none;}
a:active {color:inherit;text-decoration:none;}
a:visited {color:inherit;text-decoration:none;}


/* clearfix */
.clearfix:after {visibility:hidden;display:block;font-size:0;content:"";clear:both;height:0;}
/* clearfix for ie7 */
.clearfix {display:inline-block;}
.clearfix {display:block;}

img {max-width: 100%;height: auto;vertical-align: bottom;}
iframe {
	max-width: 100%;
	vertical-align: bottom;
}

body {
	font-family: var(--ja);
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	background: transparent;
	color: var(--white);
	position: relative;
	height: auto;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.inview {
	opacity: 0;
	transition: opacity 1s .25s;
}
.inview.visible {
	opacity: 1;
}
.inviewelm > * {
	opacity: 0;
	transition: opacity 1s .25s;	
}
.inviewelm > *.visible {
	opacity: 1;
}
/* フェードトランジション共通 */
.fade-out {
	opacity: 0 !important;
	transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
	opacity: 1 !important;
	transition: opacity 0.8s ease-in;
}


@media screen and (min-width: 801px) {
	.onlySP {display: none;}
}
@media screen and (max-width: 800px) {
	body {
		min-width: 0;
	}
	
	.onlyPC {display: none;}
}



/*------------------------------------------------------------
	index.html専用スタイル (クイズページ)
------------------------------------------------------------*/

/* index.html用の設定 */
html:has(body.blog),
body.blog {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--black);
	font-family: var(--min);
	font-weight: 400;
}

/* アニメーションコンテナ */
#animation-container {
	width: 1280px;
	height: 100vh;
	position: relative;
	margin: 0 auto;
	background: #000;
	overflow: hidden;
}

/* グラデーションオーバーレイ */
.gradient-overlay {
	position: absolute;
	top: 39%;
	left: 50%;
	width: 1800px;
	height: 1200px;
	transform: translate(-50%, -50%) rotate(-35deg);
	pointer-events: none;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	z-index: 2;
	-webkit-mask-image: radial-gradient(ellipse closest-side at center, black 50%, transparent 100%);
	mask-image: radial-gradient(ellipse closest-side at center, black 50%, transparent 100%);
}

.gradient-overlay.golden {
	background: radial-gradient(
		94.55% 60.41% at 50% 50%,
		rgba(119, 110, 65, 0.5) 0%,
		rgba(0, 0, 0, 0.5) 85.1%
	);
}

.gradient-overlay.blue {
	background: radial-gradient(
		94.55% 60.41% at 50% 50%,
		rgba(30, 140, 191, 0.5) 0%,
		rgba(0, 0, 0, 0.5) 85.1%
	);
}

.gradient-overlay.visible {
	opacity: 0.8;
}

.gradient-overlay.fade-half {
	opacity: 0.5;
}

/* 炎動画 - index.html用 */
#flame-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.3);
	width: 400px;
	height: 400px;
	z-index: 1;
	opacity: 0;
	transition:
		transform 2s ease-out,
		opacity 1.5s ease-in-out;
	mix-blend-mode: screen;
	will-change: transform;
}

#flame-container.visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

#flame-container.pulsing {
	animation: flamePulse 5s ease-in-out infinite;
}

/* index.html用 flame-video */
#animation-container .flame-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	mix-blend-mode: screen;
	filter: brightness(1.1) contrast(1.05);
}

#animation-container .flame-video.active {
	opacity: 1;
}

#animation-container .flame-video.half {
	opacity: 0.5;
}

#flame-blue {
	opacity: 0;
}

#flame-blue.active {
	opacity: 1;
}

/* シーン共通 */
.scene {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
	opacity: 1;
	transition: opacity 0.8s ease-in-out;
}

.scene.hidden {
	opacity: 0;
	pointer-events: none;
}

/* 質問テキスト */
.question-text {
	text-align: center;
	font-size: 30px;
	line-height: 1.6;
	letter-spacing: -1.2px;
	font-feature-settings:
		"palt",
		"kern" 0;
	position: absolute;
	top: 238px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.8s ease-out,
		transform 0.8s ease-out;
}

.question-text.visible {
	opacity: 1;
	transform: translateY(0);
}

.question-text.single-line {
	font-size: 40px;
	letter-spacing: -1.6px;
	top: 274px;
	width: 100%;
	left: 0;
	margin-left: -15px;
}

.question-text p {
	margin: 0;
}

/* ボタンコンテナ */
.buttons-container {
	position: absolute;
	top: 401px;
	display: flex;
	gap: 30px;
	opacity: 0;
	transition: opacity 0.8s ease-out 0.3s;
}

.buttons-container.visible {
	opacity: 1;
}

.button-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.button-group.left {
	margin-right: 0;
}

.button-group.right {
	margin-left: 0;
}

/* サークルボタン */
.circle-button {
	width: 240px;
	height: 240px;
	cursor: pointer;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	position: relative;
}

.circle-button:hover {
	transform: scale(1.05);
}
/*
.circle-button.inactive {
	opacity: 0.5;
}
*/

.circle-button.inactive:hover {
	opacity: 0.7;
}

.circle-svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.button-circle {
	fill: none;
	stroke: rgba(255, 255, 255, 0.8);
	stroke-width: 1;
	transition: stroke 0.3s ease;
}

.ripple-circle {
	fill: none;
	stroke: rgba(255, 255, 255, 0);
	stroke-width: 1;
	opacity: 0;
	transform-origin: 120px 120px;
	transform: scale(1);
	will-change: transform, opacity;
}

.circle-button:hover .button-circle {
	stroke: rgba(255, 255, 255, 1);
}

.circle-button.clicked .ripple-1 {
	animation: rippleExpand 1.4s ease-out forwards;
}

.circle-button.clicked .ripple-2 {
	animation: rippleExpand 1.4s ease-out 0.15s forwards;
}

.circle-button.clicked .ripple-3 {
	animation: rippleExpand 1.4s ease-out 0.3s forwards;
}

@keyframes rippleExpand {
	0% {
		transform: scale(0.96);
		stroke: rgba(255, 255, 255, 0.8);
		stroke-width: 2;
		opacity: 1;
	}
	30% {
		stroke: rgba(255, 255, 255, 0.5);
		stroke-width: 1.5;
		opacity: 0.7;
	}
	60% {
		stroke: rgba(255, 255, 255, 0.25);
		stroke-width: 1;
		opacity: 0.4;
	}
	100% {
		transform: scale(1.6);
		stroke: rgba(255, 255, 255, 0);
		stroke-width: 0.5;
		opacity: 0;
	}
}

/* ボタンラベル */
.button-label {
	font-family: "Cardo", serif;
	font-size: 30px;
	letter-spacing: -1.2px;
	font-feature-settings: "palt";
	transition: opacity 0.3s ease;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/*
.circle-button.inactive .button-label {
	opacity: 0.5;
}
*/

.circle-button:hover .button-label {
	opacity: 1;
}

/* SVGテキストコンテナ */
#text-svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* ロゴコンテナ */
.logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 1.2s ease-out,
		transform 1.2s ease-out;
}

.logo-container.visible {
	opacity: 1;
	transform: translateY(0);
}

.gp-logo-image {
	width: 208px;
	height: 136px;
	object-fit: contain;
	transform: translateY(22px);
}

.recruit-text {
	font-family: "Cardo", serif;
	font-size: 30px;
	text-align: center;
	margin-top: 40px;
	transform: translateY(-15px);
}

/* 炎スケールアニメーション */
@keyframes flamePulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.04);
	}
}

/* 色変化トランジション */
.color-transition {
	transition: all 2s ease-in-out;
}

/* No回答時の結果画面 */
#scene-no {
	background: #000;
}

.no-result-container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 100px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.8s ease-out,
		transform 0.8s ease-out;
}

.no-result-container.visible {
	opacity: 1;
	transform: translateY(0);
}

.no-result-header {
	font-size: 24px;
	text-align: center;
	letter-spacing: -0.96px;
	font-feature-settings:
		"palt",
		"kern" 0;
	margin-bottom: 40px;
	/*
	position: absolute;
	top: 149px;
	*/
}
/*
.no-result-container[data-active-variant="1"] .no-result-header {
	top: 127px;
}
.no-result-container[data-active-variant="2"] .no-result-header {
	top: 117px;
}
*/


.no-result-content {
	font-size: 36px;
	line-height: 1.8;
	text-align: center;
	letter-spacing: -1.44px;
	font-feature-settings:
		"palt",
		"kern" 0;
	display: none;
}

.no-result-content.active {
	display: block;
}

.no-result-content p {
	margin: 0;
}
/*
.no-result-content[data-variant="1"] {
	margin-top: -58px;
}
.no-result-content[data-variant="2"] {
	margin-top: -77px;
}
.no-result-content[data-variant="3"] {
	margin-top: -78px;
}
*/

.no-result-footer {
	font-size: 24px;
	line-height: 1.8;
	text-align: center;
	letter-spacing: -0.96px;
	font-feature-settings:
		"palt",
		"kern" 0;
	margin-top: 50px;
}

.no-result-footer p {
	margin: 0;
}

.no-result-cta {
	position: relative;
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 728px;
	height: 110px;
	border: 1px solid white;
	text-decoration: none;
	color: white;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease;
}
/*
.no-result-container[data-active-variant="1"] .no-result-cta {
	bottom: 110px;
}
.no-result-container[data-active-variant="2"] .no-result-cta {
	bottom: 120px;
}
.no-result-container[data-active-variant="3"] .no-result-cta {
	bottom: 153px;
}
*/

.no-result-cta:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.no-result-cta span {
	font-size: 24px;
	letter-spacing: -0.96px;
	font-feature-settings:
		"palt",
		"kern" 0;
	line-height: 1.5;
}

.cta-arrow {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
}

.cta-arrow svg {
	width: 100%;
	height: 100%;
}



@media (max-width: 800px) {
  #content-hero {
	background: radial-gradient(72.38% 89.38% at 50% 50%, #6BB1CA 5.29%, #3986C6 50.85%, #1E60A3 100%);
  }
}



/*------------------------------------------------------------
	Top - Intro
------------------------------------------------------------*/

/* スティッキーコンテナ */
.sticky-container {
	position: relative;
	height: 700vh;
}

.sticky-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: radial-gradient(
		ellipse 94.55% 60.41% at 50% 50%,
		rgba(107, 177, 202, 1) 5.29%,
		rgba(82, 156, 200, 1) 28.07%,
		rgba(57, 134, 198, 1) 50.85%,
		rgba(30, 96, 163, 1) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.sticky-container.done .sticky-background {
	display: none;
}

.scroll-track {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.scroll-trigger {
	height: 100vh;
}

/* 炎コンテナ - main.html用 */
.flame-container-fixed {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease-out;
	pointer-events: none;
	mix-blend-mode: screen;
}

.flame-container-fixed.visible {
	opacity: 1;
	transition: opacity 1s ease-out;
}

.sticky-container.done .flame-container-fixed {
	display: none;
}

/* main.html用 flame-video */
.flame-container-fixed .flame-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: screen;
}

/* 固定コンテンツ */
.sticky-content {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10;
	overflow: hidden;
}

/* コンテンツレイヤー */
.content-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	pointer-events: none;
}

.content-layer.active {
	opacity: 1;
	pointer-events: auto;
}

/* ヒーローコンテンツ */
.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.gp-logo-hero {
	width: 100px;
	height: auto;
	margin-bottom: 40px;
}

.hero-tagline {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 60px;
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 100%;
	margin-bottom: 30px;
}

.hero-subtitle {
	font-family: 'Cardo', serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
}

.scroll-indicator {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 30px;
	height: 140px;
}

.scroll-bar-container {
	position: relative;
	width: 3px;
	height: 140px;
}

.scroll-bar-static {
	position: absolute;
	top: 0;
	left: 1px;
	width: 1px;
	height: 140px;
	background: white;
}

.scroll-bar-moving {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: white;
	animation: scrollBarStretch 2s ease-in-out infinite;
}

@keyframes scrollBarStretch {
	0% {
		top: 0;
		height: 0;
	}
	50% {
		top: 0;
		height: 140px;
	}
	100% {
		top: 140px;
		height: 0;
	}
}

.scroll-text {
	font-family: 'Cardo', serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	writing-mode: vertical-rl;
}

/* メッセージ1 */
.message-centered {
	text-align: center;
	max-width: 1000px;
	padding: 0 40px;
}

.message-headline {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 60px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.04em;
	text-align: center;
	margin-bottom: 100px;
}

.message-body {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.04em;
	text-align: center;
}

.message-body p {
	margin: 0;
}

/* ストーリーコンテンツ */
.story-content {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 88px;
}

.story-content.story-left {
	flex-direction: row;
}

.story-content.story-right {
	flex-direction: row;
}

.story-text {
	flex: 1;
	padding-right: 40px;
}

.story-headline {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.04em;
	margin-bottom: 80px;
}

.story-body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.04em;
}

.story-body p {
	margin: 0;
}

.story-image {
	flex: 0 0 45%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.story-image img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

.story-image-right {
	justify-content: flex-end;
}

.story-image-left {
	justify-content: flex-start;
	padding-right: 40px;
}

.story-content.story-right .story-text {
	padding-right: 0;
	padding-left: 40px;
}

/* セールスセクション */
#content-sales {
	background: #0a1628;
}

.sales-background {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.sales-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.sales-content {
	position: relative;
	z-index: 10;
	text-align: center;
}

.sales-text {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.04em;
	text-align: center;
}

/* 通常スクロールセクション */
#normal-scroll-content {
	position: relative;
	z-index: 5;
	background: var(--gp-blue);
}

/* Company Hub セクション */
.company-hub-section {
	background: var(--gp-blue);
	padding: 120px 0;
}

.company-hub-inner {
	max-width: 1104px;
	margin: 0 auto;
	padding: 0 40px;
}

.section-title {
	font-family: 'Cardo', serif;
	font-size: 48px;
	text-align: center;
	margin-bottom: 60px;
}

.section-title.white {
	color: white;
}

.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.hub-card {
	display: block;
	text-decoration: none;
	color: white;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hub-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hub-card-image {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.hub-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.hub-card:hover .hub-card-image img {
	transform: scale(1.05);
}

.hub-card-content {
	padding: 24px;
}

.hub-card-en {
	font-family: 'Cardo', serif;
	font-size: 12px;
	opacity: 0.7;
	display: block;
	margin-bottom: 8px;
}

.hub-card-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 500;
}

/* CEOセクション */
.ceo-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.ceo-background-image {
	position: absolute;
	inset: 0;
}

.ceo-background-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ceo-inner {
	position: relative;
	z-index: 10;
	max-width: 1104px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
}

.ceo-content {
	max-width: 600px;
}

.ceo-label {
	font-family: 'Cardo', serif;
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

.ceo-headline {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 36px;
	line-height: 1.8;
	font-weight: normal;
	margin-bottom: 40px;
}

.ceo-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	color: white;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	transition: opacity 0.3s ease;
}

.ceo-link:hover {
	opacity: 0.7;
}

.arrow-icon::after {
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 1px solid white;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px;
}

/* 事業セクション */
.business-section {
	background: var(--gp-blue);
	padding: 120px 0;
}

.business-inner {
	max-width: 1104px;
	margin: 0 auto;
	padding: 0 40px;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.business-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.business-card-image {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.business-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-card-content {
	padding: 24px;
}

.business-card-en {
	font-family: 'Cardo', serif;
	font-size: 12px;
	opacity: 0.7;
	display: block;
	margin-bottom: 8px;
}

.business-card-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
}

.business-card-desc {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

/* Freedomセクション */
.freedom-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.freedom-background {
	position: absolute;
	inset: 0;
}

.freedom-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.freedom-content {
	position: relative;
	z-index: 10;
	text-align: center;
}

.freedom-text {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 48px;
	line-height: 1.6;
}

/* Answerセクション */
.answer-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(
		ellipse 94.55% 60.41% at 50% 50%,
		rgba(107, 177, 202, 1) 5.29%,
		rgba(82, 156, 200, 1) 28.07%,
		rgba(57, 134, 198, 1) 50.85%,
		rgba(30, 96, 163, 1) 100%
	);
}

.answer-background {
	position: absolute;
	inset: 0;
	background: inherit;
}

.answer-content {
	position: relative;
	z-index: 10;
	text-align: center;
}

.answer-text {
	font-family: 'BIZ UDPMincho', serif;
	font-size: 48px;
	line-height: 1.6;
}

/* 社員セクション */
.people-section {
	background: var(--gp-blue);
	padding: 120px 0;
}

.people-inner {
	max-width: 1104px;
	margin: 0 auto;
	padding: 0 40px;
}

.people-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.people-card {
	display: block;
	text-decoration: none;
	color: white;
	transition: transform 0.3s ease;
}

.people-card:hover {
	transform: translateY(-8px);
}

.people-card-image {
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 16px;
}

.people-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.people-card:hover .people-card-image img {
	transform: scale(1.05);
}

.people-card-content {
	text-align: center;
}

.people-card-name {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
}

.people-card-position {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	opacity: 0.7;
}

/* エントリーセクション */
.entry-section {
	background: var(--gp-blue);
	padding: 120px 0;
	text-align: center;
}

.entry-inner {
	max-width: 1104px;
	margin: 0 auto;
	padding: 0 40px;
}

.entry-title {
	font-family: 'Cardo', serif;
	font-size: 48px;
	margin-bottom: 16px;
}

.entry-subtitle {
	font-family: 'Cardo', serif;
	font-size: 24px;
	opacity: 0.8;
	margin-bottom: 60px;
}

.entry-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 24px 80px;
	border: 1px solid white;
	color: white;
	text-decoration: none;
	font-family: 'Cardo', serif;
	font-size: 24px;
	transition: background 0.3s ease, color 0.3s ease;
}

.entry-cta:hover {
	background: white;
	color: var(--gp-blue);
}

/* フェードインアニメーション */
.fade-in-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-item.visible {
	opacity: 1;
	transform: translateY(0);
}


/* ============================================
	 レスポンシブ対応 (共通ブレークポイント: 800px)
	 ============================================ */
@media (max-width: 1280px) {
	body {
		overflow-x: hidden;
	}

	/* index.html用 */
	#animation-container {
		transform-origin: top left;
		transform: scale(calc(100vw / 1280));
	}
}

@media (max-width: 800px) {
	/* PC/SP表示切り替え */
	.pc-only {
		display: none !important;
	}

	.sp-only {
		display: block !important;
	}

	.sp-br {
		display: inline;
	}

	/* SP専用改行を表示 */
	br.sp-only {
		display: inline;
	}

	/* ============================================
		 index.html SP対応
		 ============================================ */
	#animation-container {
		width: 100vw;
		height: 100vh;
		transform: none;
	}

	.gradient-overlay {
		position: absolute;
		top: 48%;
		left: 50%;
		width: 1800px;
		height: 950px;
		transform: translate(-50%, -50%) rotate(-35deg);
		pointer-events: none;
		opacity: 0;
		transition: opacity 1.5s ease-in-out;
		z-index: 2;
		-webkit-mask-image: radial-gradient(ellipse closest-side at center, black 50%, transparent 100%);
		mask-image: radial-gradient(ellipse closest-side at center, black 50%, transparent 100%);
	}

	#flame-container {
		width: 61.54vw;
		height: 61.54vw;
	}

	#flame-container.visible {
		transform: translate(-50%, -50%) scale(1);
	}

	.logo-container {
		margin-top: 6px;
		gap: 40px;
	}

	.gp-logo-image {
		width: 166px;
		height: 108px;
		margin-left: 112px;
		margin-right: 112px;
		transform: translateY(0);
	}

	.recruit-text {
		font-family: "Cardo", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 28px;
		line-height: 100%;
		letter-spacing: 0%;
		text-align: center;
		margin-top: 0;
		transform: translateY(0);
	}

	.question-text {
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 24px;
		line-height: 160%;
		letter-spacing: -0.96px;
		text-align: center;
		top: auto;
		position: relative;
		width: 100%;
		padding: 0 24px;
	}

	.question-text.single-line {
		font-size: 24px;
		letter-spacing: -0.96px;
		top: auto;
		margin-left: 0;
	}

	.buttons-container {
		position: relative;
		top: auto;
		margin-top: 60px;
		display: flex;
		gap: 10px;
		padding: 0 24px;
		justify-content: space-between;
		width: 100%;
	}

	.circle-button {
		overflow: visible;
		width: calc((100vw - 24px - 24px - 10px) / 2);
		height: calc((100vw - 24px - 24px - 10px) / 2);
	}

	.button-group {
		flex: 0 0 auto;
	}

	.button-label {
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 20px;
		line-height: 100%;
		letter-spacing: -0.8px;
		text-align: center;
	}

	#text-svg .svg-text {
		font-size: 16px !important;
		letter-spacing: -0.04em;
	}

	.no-result-container {
		padding: 0 24px;
	}

	.no-result-header {
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		line-height: 100%;
		letter-spacing: -0.64px;
		text-align: center;
		position: relative;
		top: 0;
		margin-bottom: 40px;
	}

	.no-result-container[data-active-variant="1"] .no-result-header,
	.no-result-container[data-active-variant="2"] .no-result-header,
	.no-result-container[data-active-variant="3"] .no-result-header {
		top: 0;
	}

	.no-result-content {
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 20px;
		line-height: 160%;
		letter-spacing: -0.8px;
		text-align: center;
	}

	.no-result-content[data-variant="1"],
	.no-result-content[data-variant="2"],
	.no-result-content[data-variant="3"] {
		margin-top: 0;
	}

	.no-result-footer {
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		line-height: 160%;
		letter-spacing: -0.64px;
		text-align: center;
		margin-top: 40px;
	}

	.no-result-cta {
		position: relative;
		bottom: auto;
		width: 100%;
		height: 80px;
		margin: 40px 24px 0;
		padding: 20px;
		justify-content: flex-start;
	}

	.no-result-container[data-active-variant="1"] .no-result-cta,
	.no-result-container[data-active-variant="2"] .no-result-cta,
	.no-result-container[data-active-variant="3"] .no-result-cta {
		bottom: auto;
	}

	.no-result-cta span {
		font-size: 16px;
		letter-spacing: -0.64px;
		text-align: left;
	}

	.cta-arrow {
		right: 20px;
		width: 40px;
		height: 40px;
	}

	/* ============================================
		 main.html SP対応
		 ============================================ */

	/* スティッキーコンテナを通常スクロールに変更 */
	.sticky-container {
		height: auto;
	}

	.sticky-background {
		position: absolute;
		height: 100%;
	}

	.scroll-track {
		display: none;
	}

	.sticky-content {
		position: relative;
		height: auto;
	}

	.content-layer {
		position: relative;
		opacity: 1;
		pointer-events: auto;
		min-height: 100vh;
		padding: 80px 0;
	}

	.content-layer.active {
		opacity: 1;
	}

	/* 炎コンテナを非表示 */
	.flame-container-fixed {
		position: fixed;
		width: 300px;
		height: 300px;
		top: 50svh;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	/* フェードインアイテムを最初から表示 */
	.fade-in-item {
		opacity: 1;
		transform: translateY(0);
	}

	/* 炎だけのセクションを非表示 */
	#content-flame {
		display: none;
	}

	/* ヒーローコンテンツ */
	.hero-content {
		padding: 0 24px;
	}

	.hero-tagline {
		font-size: 30px;
		line-height: 160%;
		letter-spacing: -0.04em;
	}

	.hero-subtitle {
		font-size: 24px;
		line-height: 100%;
		letter-spacing: 0;
	}

	.scroll-indicator {
		transition: opacity 0.5s ease-out;
	}

	.scroll-indicator.hidden {
		opacity: 0;
		pointer-events: none;
	}

	/* メッセージ1セクション */
	.message-centered {
		padding: 0 24px;
	}

	.message-headline {
		font-size: 32px;
		line-height: 160%;
		letter-spacing: -0.04em;
		margin-bottom: 32px;
	}

	.message-body {
		font-size: 20px;
		line-height: 200%;
		letter-spacing: -0.04em;
	}

	/* ストーリーセクション */
	.story-content {
		flex-direction: column;
		padding: 0 24px;
		justify-content: center;
	}

	.story-content.story-left,
	.story-content.story-right {
		flex-direction: column;
	}

	.story-text {
		padding: 0;
		text-align: left;
		order: 1;
	}

	.story-content.story-right .story-text {
		padding: 0;
	}

	.story-headline {
		font-size: 28px;
		line-height: 160%;
		letter-spacing: -0.04em;
		margin-bottom: 40px;
		text-align: left;
	}

	.story-body {
		font-family: 'BIZ UDPMincho', serif;
		font-size: 14px;
		line-height: 160%;
		letter-spacing: -0.04em;
		text-align: left;
	}

	.story-image {
		order: 2;
		flex: 0 0 auto;
		height: auto;
		margin-top: 40px;
	}

	.story-image-left {
		justify-content: flex-start;
		align-self: flex-start;
		padding: 0;
	}

	.story-image-right {
		justify-content: flex-end;
		align-self: flex-end;
		padding: 0;
	}

	.story-image img {
		width: 260px;
		height: 364px;
		max-height: none;
		object-fit: cover;
	}

	/* セールスセクション */
	#content-sales {
		min-height: 600px;
		height: 600px;
	}

	.sales-content {
		padding: 0 24px;
	}

	.sales-text {
		font-size: 30px;
		line-height: 180%;
		letter-spacing: -0.04em;
	}
}




/*------------------------------------------------------------
	header
------------------------------------------------------------*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--headerHeight);
	background-color: transparent;
	z-index: 100;
	transition: ease-out .3s;
	pointer-events: none;
}
.page-template-main .header {
	opacity: 0;
	margin-top: -20px;
	transition: opacity 0.6s ease-out, margin 0.6s ease-out;
}
.page-template-main .header.visible {
	opacity: 1;
	margin-top: 0;
	pointer-events: auto;
}

#header a {
	pointer-events: auto;
}
#header .logo {
	display: flex;
	align-items: center;
	gap: 20px;
	position: absolute;
	top: 50%;
	left: var(--px);
	transform: translate(0,-50%);
	font-family: var(--en);
	font-weight: 400;
	color: var(--white);
	transition: 0.5s;
	z-index: 101;
}
#header .logo img {
	width: 61px;
	height: auto;
}
#header .logo:hover {
	opacity: 0.5;
}
#header .logo span {
	font-size: 16px;
	text-box: trim-both cap alphabetic;
}
#header .btn {
	position: absolute;
	right: calc(var(--px) + 42px);
	top: 50%;
	transform: translate(0,-50%);
}
#header .btn a {
	font-size: 12px;
	line-height: 1;
	font-family: var(--en);
	height: 28px;
	width: 90px;
	display: flex;
	border-radius: 100px;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--blue);
	background: var(--white);
	transition: .5s;
}
.menu .main-nav {
	position: absolute;
	top: 50%;
	right: var(--px);
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	line-height: 1;
	font-size: 16px;
	font-family: var(--ja);
	font-weight: 400;
	height: auto;
	gap: 20px;
	color: var(--white);
}
.menu .main-nav > li a {
	line-height: 2;
	display: block;
	position: relative;
}
.menu .main-nav > li a[target=_blank] {
	padding-right: 23px;
}
.menu .main-nav > li a[target=_blank]::before {
	content: '';
	display: block;
	background: url(images/icon-external.svg) center center/contain no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
.menu .main-nav > li:not(.entry) a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	height: 1px;
	width: 0;
	background: currentcolor;
	transition: .5s;
}
.menu .main-nav > li a:hover::after {
	width: 100%;
}
.menu .main-nav > li.entry a {
	line-height: 1;
	font-family: var(--en);
	height: 34px;
	width: 119px;
	display: flex;
	border-radius: 100px;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--blue);
	background: var(--white);
	transition: .5s;
}
.menu .main-nav > li.entry a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 800px) {
	#header .logo {
		gap: 10px;
	}
	#header .logo img {
		width: 50px;
	}
	#header .logo span {
		font-size: 12px;
		line-height: 1.2;
	}
	.page-template-main .header {
		opacity: 1;
		margin-top: 0;
	}
	.menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: var(--black);
		color: var(--white);
		z-index: 100;
		max-height: 100vh;
		overflow-y: scroll;
		opacity: 0;
		padding: 0 var(--px);
		display: block;
		transition: transform .4s ease-in 0s, opacity .15s ease-in 0s;
		transform: translateY(-100%);
	}
	.opened .menu {
		pointer-events: auto;
		opacity: 1;
		transform: translateY(0);
		transition: transform .4s ease-out .1s, opacity .2s ease-out .5s;
	}
	.menu .menu-wrap {
		display: flex;
		width: 100%;
		height: 100%;
		padding: 60px var(--px);
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.menu .copy {
		color: var(--white);
		position: absolute;
		bottom: 50px;
		left: 0;
		width: 100%;
		text-align: center;
		font-size: 12px;
		text-box: trim-both cap alphabetic;
	}
	.menu .main-nav {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 40px;
		text-align: center;
		margin: 0;
		position: static;
		transform: none;
		font-weight: 500;
		font-size: 16px;
	}
	.menu .main-nav > li a {
		line-height: 1;
		text-box: trim-both cap alphabetic;
	}
	.menu .main-nav > li:not(.entry) a::after {
		display: none;
	}
	.menu .main-nav > li.entry {
		margin-top: 20px;
	}
	.menu .main-nav > li.entry a {
		width: 220px;
		height: 50px;
		color: var(--black);
	}

}


/*------------------------------------------------------------
	MENU - BUTTON
------------------------------------------------------------*/

@media screen and (min-width: 801px) {
	.menu-close {
		display: none;
	}
	
	.menu-trigger {
		display: none;
	}
}


.menu-close {
	width: 32px;
	height: 32px;
	position: fixed;
	top: 50%;
	right: var(--px);
	z-index: 104;
	opacity: 0;
	background-color: transparent;
	display: none;
	cursor: pointer;
	transform: translate(0,-50%);
	pointer-events: auto;
}
.opened .menu-close {
	display: block;
}

.menu-trigger {
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	right: var(--px);
	z-index: 101;
	cursor: pointer;
	transition: opacity .3s linear 0s;
	transform: translate(0,-50%);
	pointer-events: auto;
}
.menu-trigger:hover {
	opacity: .75;
}
.menu-trigger span {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 1;
	background-color: var(--white);
	backface-visibility: hidden;
}
.opened .menu-trigger span {
	background-color: var(--white);
}
.menu-trigger span:nth-of-type(1),
.menu-trigger span:nth-of-type(3) {
	transition: background-color .4s ease 0s, margin-top .4s ease .4s, transform .4s ease 0s;
}
.menu-trigger span:nth-of-type(1) {
	margin-top: -4px;
}
.menu-trigger span:nth-of-type(2) {
	display: none;
}
.menu-trigger span:nth-of-type(3) {
	margin-top: 4px;
}
.opened .menu-trigger span:nth-of-type(1),
.opened .menu-trigger span:nth-of-type(3) {
	transition: background-color .4s ease 0s, margin-top .2s ease 0s, transform .2s ease .3s;
}
.opened .menu-trigger span:nth-of-type(1) {
	margin-top: -1px;
	transform: rotate(-30deg);
}
.opened .menu-trigger span:nth-of-type(3) {
	margin-top: -1px;
	transform: rotate(30deg);
}

@media screen and (max-width: 800px) {
}





/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
#cv {
	position: relative;
	z-index: 3;
	width: 100%;
	text-align: center;
	background: var(--black);
	color: var(--white);
}
#cv video {
	width: 400px;
	height: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#cv .cv-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.8;
}

#cv .cv-wrap {
	position: relative;
	z-index: 3;
	padding: 280px var(--px);
}
#cv h2 {
	font-family: var(--min);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.5;
	text-box: trim-both cap alphabetic;
	letter-spacing: -0.04em;
}
#cv .cv-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 24px;
	margin-top: 50px;
}
#cv .cv-btn li {
	height: 140px;
	width: 540px;
}
#cv .cv-btn li a {
	display: flex;
	align-items: center;
	padding: 0 100px 0 44px;
	position: relative;
	width: 100%;
	height: 100%;
	border: 1px solid var(--white);
	color: var(--white);
	gap: 20px;
	transition: 0.5s;
}
#cv .cv-btn li a:hover {
	background: rgba(255,255,255,0.2);
}
#cv .cv-btn li .en {
	font-family: var(--en);
	font-weight: 400;
	font-size: 36px;
	letter-spacing: -0.04em;
	text-box: trim-both cap alphabetic;
}
#cv .cv-btn li .ja {
	font-size: 16px;
	margin-top: 12px;
	text-box: trim-both cap alphabetic;
}
#cv .cv-btn li .arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translate(0,-50%);
	border: 1px solid var(--white);
	border-radius: 50%;
}
#cv .cv-btn li .arrow img {
	width: 12px;
}

@media screen and (max-width: 800px) {
	#cv video {
		width: 240px;
		height: 240px;
	}
	#cv .cv-wrap {
		padding: 150px var(--px);
	}
	#cv h2 {
		font-size: 20px;
		line-height: 1.6;
	}
	#cv .cv-btn {
		margin-top: 60px;
	}
	#cv .cv-btn li {
		height: 80px;
		width: 100%;
	}
	#cv .cv-btn li a {
		padding: 0 80px 0 20px;
		gap: 10px;
	}
	#cv .cv-btn li .en {
		font-size: 20px;
	}
	#cv .cv-btn li .ja {
		font-size: 12px;
		margin-top: 5px;
	}
	#cv .cv-btn li .arrow {
		width: 40px;
		height: 40px;
		right: 20px;
	}
	#cv .cv-btn li .arrow img {
		width: 10px;
	}

}


#footer {
	position: relative;
	z-index: 3;
	width: 100%;
	background: var(--blue);
	color: var(--white);
	height: auto;
	padding: 60px var(--px) 50px;
}
#footer .footer-wrap {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--white);
}
#footer .logo {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: var(--en);
	font-weight: 400;
	color: var(--white);
	transition: 0.5s;
	z-index: 101;
}
#footer .logo img {
	width: 80px;
	height: auto;
}
#footer .logo:hover {
	opacity: 0.5;
}
#footer .logo span {
	font-size: 16px;
	text-box: trim-both cap alphabetic;
}
#footer .left {
	padding-top: 50px;
}
#footer .right {
	padding-top: 77px;
	max-width: 352px;
}
#footer .footer-nav {
	font-size: 16px;
	column-count: 2;
	column-gap: 10px;
}
#footer .footer-nav li {
	break-inside: avoid;
	margin-bottom: 30px;
	white-space: nowrap;
	text-box: trim-both cap alphabetic;
}
#footer .footer-nav li a {
	display: inline-block;
	position: relative;
	text-box: trim-both cap alphabetic;
}
#footer .footer-nav li a[target=_blank] {
	padding-right: 23px;
}
#footer .footer-nav li a[target=_blank]::before {
	content: '';
	display: block;
	background: url(images/icon-external.svg) center center/contain no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	
}
#footer .copyright {
	font-size: 13px;
	text-box: trim-both cap alphabetic;
	margin-top: 50px;
}

@media screen and (max-width: 800px) {
	#footer {
		padding: 50px var(--px) 30px;
	}
	#footer .footer-wrap {
		flex-direction: column;
		justify-content: flex-start;
	}
	#footer .logo img {
		width: 65px;
		height: auto;
	}
	#footer .logo span {
		font-size: 14px;
	}
	#footer .left {
		padding-top: 30px;
	}
	#footer .right {
		padding-top: 100px;
	}
	#footer .footer-nav {
		font-size: 14px;
	}
	#footer .copyright {
		font-size: 12px;
		margin-top: 20px;
	}
}





/*------------------------------------------------------------
	Button
------------------------------------------------------------*/
#main .btn {
	line-height: 1;
}
#main .btn a {
	display: inline-flex;
	align-items: center;
	text-align: center;
	height: 34px;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	padding: 0 34px 0 0;
	position: relative;
	transition: 0.6s;
}
#main .btn a .txt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	height: 34px;
	padding: 0 36px;
	color: var(--white);
	text-box: trim-both cap alphabetic;
	border: 1px solid currentcolor;
	border-radius: 1000px;
	transition: 0.5s;
}
#main .btn a:hover .txt {
	background: rgba(255,255,255,0.2);
}
#main .btn a .arrow {
	width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid currentcolor;
	color: var(--white);
	border-radius: 1000px;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	transition: 0.5s;
}
#main .btn a:hover .arrow {
	background: rgba(255,255,255,0.2);
}
#main .btn a .arrow::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 11px;
	width: 10px;
	height: 8px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/icon-arrow.svg) center center/contain no-repeat;
}
#main .btn a .arrow::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 11px;
	width: 10px;
	height: 8px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/icon-arrow.svg) center center/contain no-repeat;
}
#main .btn a .arrow::after {
	transform: translateX(-22px);
}
#main .btn a:hover .arrow::before {
	animation: transformBefore 0.5s;
}
#main .btn a:hover .arrow::after {
	animation: transformAfter 0.5s;
}
@keyframes transformBefore {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(22px);
		opacity: 0;
	}
}
@keyframes transformAfter {
	0% {
		transform: translateX(-22px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}



@media screen and (max-width: 800px) {
}



/*------------------------------------------------------------
	Top
------------------------------------------------------------*/
#main {
	position: relative;
	z-index: 3;
}
.section-mv {
	position: relative;
	z-index: 1;
}
.section-mv .section-mv-bg {
	position: relative;
	z-index: -1;
	width: 100%;
	height: auto;
}
.section-mv::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--overlay);
	z-index: 1;
	top: 0;
	left: 0;
}
.section-mv .section-mv-txt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 80px var(--px);
	color: var(--white);
	z-index: 2;
}
.section-mv .section-mv-txt .btn {
	position: absolute;
	bottom: 80px;
	right: var(--px);
}
.section-mv .section-mv-title {
	margin-bottom: 60px;
}
.section-mv .section-mv-title .main {
	display: block;
	font-family: var(--min);
	font-weight: 400;
	font-size: 50px;
	line-height: 1.4;
	letter-spacing: -0.04em;
	text-box: trim-both cap alphabetic;
}
.section-mv .section-mv-title .sub {
	display: block;
	text-box: trim-both cap alphabetic;
	font-family: var(--en);
	font-size: 20px;
	margin-bottom: 30px;
	letter-spacing: 0;
}
.section-mv .section-mv-title .en {
	display: block;
	font-family: var(--en);
	font-weight: 400;
	font-size: 60px;
	line-height: 1.4;
	letter-spacing: -0.04em;
	text-box: trim-both cap alphabetic;
}

.section-mv .section-mv-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 2;
	letter-spacing: -0.04em;
	text-box: trim-both cap alphabetic;
	padding-right: 300px;
}

.section-contents {
	padding: 120px var(--px) 250px;
	background: var(--blue);
}

@media screen and (max-width: 800px) {
	.section-mv .section-mv-txt {
		padding: 50px var(--px);
	}
	.section-mv .section-mv-title {
		margin-bottom: 50px;
	}
	.section-mv .section-mv-title .main {
		font-size: 24px;
	}
	.section-mv .section-mv-title .sub {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.section-mv .section-mv-title .en {
		font-size: 30px;
	}
	.section-mv .section-mv-description {
		font-size: 14px;
		line-height: 1.6;
		padding-right: 0;
	}
	.section-mv .section-mv-txt .btn {
		position: static;
		text-align: right;
		margin-top: 30px;
	}
	.section-contents {
		padding: 80px var(--px) 160px;
	}

}


/*------------------------------------------------------------
	Top -- Common
------------------------------------------------------------*/
.list-common {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.list-common .list-item {
	display: grid;
	grid-template-columns: 514fr 540fr;
	gap: 50px;
}
.list-common .list-title .main {
	font-family: var(--min);
	font-weight: 400;
	font-size: 36px;
	line-height: 1.4;
	letter-spacing: -0.04em;
	text-box: trim-both cap alphabetic;
	display: block;
}
.list-common .list-title .sub {
	display: block;
	text-box: trim-both cap alphabetic;
	font-family: var(--ja);
	font-size: 16px;
	letter-spacing: 0;
	position: relative;
	padding-left: 18px;
	margin-bottom: 30px;
}
.list-common .list-title .sub::before {
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: currentcolor;
	position: absolute;
	top: 6px;
	left: 0;
}
.list-common .list-excerpt {
	margin-top: 60px;
	font-size: 16px;
	line-height: 1.8;
	white-space: pre-wrap;
	text-box: trim-both cap alphabetic;
}
.list-common .list-name {
	margin-top: 60px;
	font-size: 30px;
	line-height: 1.8;
	text-box: trim-both cap alphabetic;
}
.list-common .list-detail {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.8;
	text-box: trim-both cap alphabetic;
}
.list-common .btn {
	margin-top: 30px;
}
.list-common .list-thumb img {
	width: 100%;
}
.list-common a.list-thumb {
	overflow: hidden;
}
.list-common a.list-thumb img {
	transition: 0.5s;
}
.list-common a.list-thumb:hover img {
	transform: scale(1.05);
	opacity: 0.7;
}

#top-business .section-contents .btn {
	text-align: right;
	margin-top: 60px;
}

#top-blog .btn .arrow {
	transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
	.list-common {
		gap: 40px;
	}
	.list-common .list-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.list-common .list-title .main {
		font-size: 24px;
	}
	.list-common .list-title .sub {
		font-size: 12px;
		margin-bottom: 20px;
	}
	.list-common .list-title .sub::before {
		top: 4px;
	}
	.list-common .list-excerpt {
		margin-top: 50px;
		font-size: 14px;
		line-height: 1.6;
	}
	.list-common .list-name {
		margin-top: 40px;
		font-size: 24px;
	}
	.list-common .list-detail {
		font-size: 12px;
	}
	.list-common .btn {
		margin-top: 20px;
	}
	#top-business .section-contents .btn {
		margin-top: 40px;
	}
}

/*------------------------------------------------------------
	Page
------------------------------------------------------------*/
#page {
	.page-mv {
		overflow: hidden;
		padding: 240px var(--px) 80px;
		position: relative;
		&:has(img.page-mv-img) {
			padding-bottom: 100px;
			.page-title {
				border-bottom: none;
				margin-bottom: 70px;
			}
		}
		&::after {
			content: '';
			display: block;
			position: fixed;
			z-index: -1;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: var(--blue);
		}
		&:has(.page-mv-img)::after {
			background: var(--linear-gradient);
		}
		.page-mv-img {
			max-width: 100vw;
			width: 100vw;
			position: relative;
			left: 50%;
			transform: translate(-50%,0);
		}
		.page-title {
			display: flex;
			flex-direction: column;
			gap: 30px;
			padding-bottom: 30px;
			border-bottom: 1px solid currentcolor;
			.ja {
				font-size: 20px;
				line-height: 1.4;
				text-box: trim-both cap alphabetic;
			}
			.en {
				font-family: var(--en);
				font-size: 70px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
		}
	}
	.page-contents {
		padding: 0 var(--px) 250px;
		.inner {
			position: relative;
			font-size: 20px;
			line-height: 2;
		}
	}
}

@media screen and (max-width: 800px) {
	#page {
		.page-mv {
			padding: 180px var(--px) 40px;
			&:has(img.page-mv-img) {
				padding-bottom: 160px;
				.page-title {
					margin-bottom: 30px;
				}
			}
			.page-title {
				gap: 20px;
				padding-bottom: 20px;
				.ja {
					font-size: 12px;
				}
				.en {
					font-size: 40px;
				}
			}
		}
		.page-contents {
			padding: 0 var(--px) 160px;
			.inner {
				font-size: 14px;
				line-height: 1.6;
				& > p {
					font-family: var(--min);
					letter-spacing: -0.04em;
				}
			}
		}
	}

}


/*------------------------------------------------------------
	Page common
------------------------------------------------------------*/

@media screen and (max-width: 800px) {
}

/*------------------------------------------------------------
	Business
------------------------------------------------------------*/
.page-mv-secondary {
	display: flex;
	align-items: center;
	align-content: center;
	min-height: 100vh;
	padding: 100px var(--px);
	.grid-img-txt {
		display: grid;
		gap: min(80px,6.25vw);
		grid-template-columns: 578fr 446fr;
		align-items: center;
		&.reverse {
			grid-template-columns: 446fr 578fr;
			.img {
				order: -1;
			}
		}
		h3 {
			padding-left: 18px;
			position: relative;
			font-size: 16px;
			text-box: trim-both cap alphabetic;
			margin-bottom: 30px;
			&::before {
				content: '';
				display: block;
				width: 10px;
				height: 1px;
				background: currentcolor;
				position: absolute;
				top: 6px;
				left: 0;
			}
		}
		h2 {
			font-family: var(--min);
			font-size: min(48px,3.75vw);
			line-height: 1.4;
			letter-spacing: -0.04em;
			text-box: trim-both cap alphabetic;
		}
		p {
			margin-top: 80px;
			font-size: 20px;
			line-height: 2;
			letter-spacing: -0.04em;
			text-box: trim-both cap alphabetic;
		}
	}
}
.page-mv-bg-fire {
	overflow: hidden;
	position: relative;
	z-index: 3;
	width: 100%;
	text-align: center;
	background: var(--black);
	color: var(--white);
	video {
		width: 400px;
		height: 400px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 1;
	}
	.bg {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		opacity: 0.8;
	}
	.txt-wrap {
		position: relative;
		z-index: 3;
		padding: 200px var(--px);
		min-height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		h2 {
			font-family: var(--min);
			font-size: 36px;
			line-height: 1.6;
			letter-spacing: -0.04em;
		}
	}
}

@media screen and (max-width: 800px) {
	.page-mv-secondary {
		padding: 0 var(--px) 160px;
		.grid-img-txt {
			gap: 60px;
			grid-template-columns: 1fr;
			align-items: center;
			&.reverse {
				grid-template-columns: 1fr;
				.img {
					order: 1;
				}
			}
			h3 {
				font-size: 12px;
				&::before {
					top: 4px;
				}
			}
			h2 {
				font-size: 28px;
				line-height: 1.6;
			}
			p {
				margin-top: 60px;
				font-family: var(--min);
				font-size: 14px;
				line-height: 1.6;
				text-box: trim-both cap alphabetic;
			}
			.img {
				padding-left: 88px;
			}
		}
	}
	.page-mv-bg-fire {
		video {
			width: 300px;
			height: 300px;
		}
		.txt-wrap {
			padding: 173px var(--px);
			min-height: 100lvh;
			h2 {
				font-size: 20px;
			}
		}
	}

}

/*------------------------------------------------------------
	Business
------------------------------------------------------------*/
#business-contents {
	padding-bottom: 250px;
	background: var(--blue);
	.section-wrap {
		padding: 250px var(--px) 0;
		h2 {
			font-family: var(--en);
			font-size: 50px;
			text-box: trim-both cap alphabetic;
			padding-bottom: 30px;
			border-bottom: 1px solid currentcolor;
		}
		.service-list {
			counter-reset: li;
			li {
				counter-increment: list;
				border-bottom: 1px solid currentcolor;
				padding: 40px 0;
				h3 {
					padding-left: 55px;
					position: relative;
					font-family: var(--min);
					font-size: 40px;
					line-height: 1.4;
					letter-spacing: -0.04em;
					text-box: trim-both cap alphabetic;
					&::before {
						content: counter(list, decimal-leading-zero);
						font-family: var(--en);
						font-size: 30px;
						position: absolute;
						top: 0;
						left: 0;
						text-box: trim-both cap alphabetic;
					}
				}
				p {
					margin-top: 30px;
					font-size: 16px;
					line-height: 2;
					letter-spacing: -0.04em;
					text-box: trim-both cap alphabetic;
				}
			}
		}
		.job_details-list {
			.list-item {
				padding-top: 80px;
				width: 100%;
				.thumb img {
					width: 100%;
				}
				h3 {
					margin-top: 50px;
					font-family: var(--min);
					font-size: 40px;
					line-height: 1.4;
					letter-spacing: -0.04em;
					text-box: trim-both cap alphabetic;
				}
				.list-content {
					margin-top: 50px;
					font-size: 16px;
					line-height: 1.8;
					letter-spacing: -0.04em;
					& > * + * {
						margin-top: 40px;
					}
					.wp-block-preformatted, p {
						text-box: trim-both cap alphabetic;
					}
					.wp-block-list {
						display: flex;
						flex-direction: column;
						gap: 20px;
						li {
							padding-left: 16px;
							position: relative;
							text-box: trim-both cap alphabetic;
							&::before {
								content: '';
								width: 4px;
								height: 4px;
								position: absolute;
								left: 2px;
								top: 4px;
								border-radius: 50%;
								background: currentcolor;
							}
						}
					}
					.wp-block-table {
						display: none;
					}
				}
				.btn {
					margin-top: 40px;
					text-align: right;
				}
			}
		}
	}
}
@media screen and (max-width: 800px) {
	#business-contents {
		padding-bottom: 160px;
		.section-wrap {
			padding: 160px var(--px) 0;
			h2 {
				font-size: 30px;
				padding-bottom: 20px;
			}
			.service-list {
				li {
					padding: 30px 0;
					h3 {
						padding-left: 0;
						padding-top: 34px;
						font-size: 30px;
						&::before {
							font-size: 20px;
						}
					}
					p {
						font-size: 14px;
						line-height: 1.6;
					}
				}
			}
			.job_details-list {
				.list-item {
					padding-top: 30px;
					h3 {
						margin-top: 30px;
						font-size: 24px;
					}
					.list-content {
						margin-top: 20px;
						font-size: 14px;
						line-height: 1.6;
						& > * + * {
							margin-top: 30px;
						}
						.wp-block-list {
							li {
								padding-left: 8px;
								&::before {
									width: 2px;
									height: 2px;
									left: 0px;
								}
							}
						}
					}
					.btn {
						margin-top: 30px;
					}
				}
			}
		}
	}
}



/*------------------------------------------------------------
	Environment
------------------------------------------------------------*/
#environment-contents {
	padding-top: 150px;
	padding-bottom: 100px;
	.section-wrap {
		padding: 0 var(--px) 150px;
		&.wp-contents {
			h2.wp-block-heading {
				font-family: var(--min);
				font-size: 48px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
			p {
				font-size: 16px;
				line-height: 2;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
			& > * + * {
				margin-top: 80px;
			}
			& > p + p {
				margin-top: 65px;
			}
			& > *.onlyPC:first-child + *.onlySP {
				margin-top: 0;
			}
		}
		&.program {
			h2 {
				display: flex;
				flex-direction: column;
				gap: 30px;
				padding-bottom: 30px;
				border-bottom: 1px solid currentcolor;
				margin-bottom: 80px;
				.ja {
					font-size: 16px;
					text-box: trim-both cap alphabetic;
				}
				.en {
					font-family: var(--en);
					font-size: 50px;
					text-box: trim-both cap alphabetic;
				}
			}
			.program-contents {
				h3 {
					font-family: var(--min);
					font-size: 30px;
					text-box: trim-both cap alphabetic;
				}
				h4 {
					display: inline-block;
					padding: 11px;
					border: 1px solid currentcolor;
					border-radius: 100px;
					margin-top: 30px;
					font-family: var(--min);
					font-size: 16px;
					line-height: 1.8;
					text-box: trim-both cap alphabetic;
				}
				h5 {
					font-size: 16px;
					line-height: 1.6;
					margin-top: 30px;
				}
				p {
					margin-top: 20px;
					font-size: 16px;
					line-height: 1.8;
				}
				ul {
					margin-top: 10px;
					font-size: 16px;
					line-height: 1.8;
					li {
						padding-left: 1em;
						position: relative;
						&::before {
							content: '';
							position: absolute;
							left: 5px;
							top: 0.9em;
							margin-top: -2px;
							display: block;
							width: 4px;
							height: 4px;
							border-radius: 50%;
							background: currentcolor;
						}
					}
				}
			}
		}
	}
}
#environment-career-vision {
	.wrap {
		padding: 200px var(--px);
		background: url(images/career-vision-bg.webp) center center/cover no-repeat;
		h2 {
			display: flex;
			flex-direction: column;
			gap: 30px;
			padding-bottom: 30px;
			border-bottom: 1px solid currentcolor;
			margin-bottom: 60px;
			.ja {
				font-size: 16px;
				text-box: trim-both cap alphabetic;
			}
			.en {
				font-family: var(--en);
				font-size: 50px;
				text-box: trim-both cap alphabetic;
			}
		}
		p {
			font-size: 16px;
			line-height: 2;
			letter-spacing: -0.04em;
			text-box: trim-both cap alphabetic;
		}
		.img {
			position: relative;
			margin-top: 60px;
			overflow: hidden;
			isolation: isolate;
			img {
				width: 100%;
				height: auto;
			}
			& > img {
				position: relative;
				z-index: 2;
			}
			.arrow {
				position: absolute;
				top: 0;
				left: calc(100% * 66 / 1104);
				width: calc(100% * 635 / 1104);
				z-index: 1;
				img {
					position: relative;
					z-index: -1;
					transition: 0.75s 0.2s;
					transform: translate(-100%, 100%);
				}
			}
			&.show .arrow img {
				transform: translate(0, 0);
			}
		}
	}
}
#environment-persona {
	.wrap {
		padding: 250px var(--px);
		background: var(--blue);
		display: grid;
		grid-template-columns: 514fr 540fr;
		gap: 50px;
		.left {
			h2 {
				font-family: var(--min);
				font-size: 48px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
				margin-bottom: 80px;
			}
			p {
				font-size: 16px;
				line-height: 2;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
		}
		.right {
			ol {
				border-top: 1px solid currentcolor;
				counter-reset: li;
				li {
					counter-increment: list;
					position: relative;
					border-bottom: 1px solid currentcolor;
					padding: 40px 0 40px 55px;
					font-family: var(--min);
					font-size: 20px;
					line-height: 1.4;
					letter-spacing: -0.04em;
					text-box: trim-both cap alphabetic;
					&::before {
						content: counter(list, decimal-leading-zero);
						position: absolute;
						top: 50%;
						left: 0;
						transform: translate(0,-50%);
						font-family: var(--en);
						font-size: 16px;
						letter-spacing: -0.04em;
						text-box: trim-both cap alphabetic;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 800px) {
	#environment-contents {
		padding-top: 0;
		padding-bottom: 0;
		.section-wrap {
			padding: 0 var(--px) 160px;
			&.wp-contents {
				h2.wp-block-heading {
					font-size: 28px;
					line-height: 1.6;
				}
				p {
					font-size: 14px;
					line-height: 1.6;
				}
				& > * + * {
					margin-top: 60px;
				}
				& > p + p {
					margin-top: 34px;
				}
			}
			&.program {
				h2 {
					gap: 20px;
					padding-bottom: 20px;
					margin-bottom: 40px;
					.ja {
						font-size: 12px;
					}
					.en {
						font-size: 30px;
					}
				}
				.program-contents {
					h3 {
						font-size: 24px;
					}
					h4 {
						font-size: 13px;
					}
					h5 {
						margin-top: 20px;
					}
					p {
						margin-top: 20px;
					}
					ul {
						margin-top: 12px;
						li {
							padding-left: 0.5em;
							&::before {
								left: 0;
								margin-top: -1px;
								width: 2px;
								height: 2px;
							}
						}
					}
				}
				.list-common {
					gap: 60px;
				}
			}
		}
	}
	#environment-career-vision {
		.wrap {
			padding: 80px var(--px);
			h2 {
				gap: 20px;
				padding-bottom: 20px;
				margin-bottom: 30px;
				.ja {
					font-size: 12px;
				}
				.en {
					font-size: 30px;
				}
			}
			p {
				font-family: var(--min);
				font-size: 14px;
				line-height: 1.6;
			}
			.img {
				margin-top: 30px;
				.arrow {
					left: calc(100% * 22 / 342);
					width: calc(100% * 211 / 342);
				}
			}
		}
	}
	#environment-persona {
		.wrap {
			padding: 160px var(--px);
			grid-template-columns: 1fr;
			gap: 60px;
			.left {
				h2 {
					font-size: 28px;
					line-height: 1.6;
					margin-bottom: 60px;
				}
				p {
					font-family: var(--min);
					font-size: 14px;
					line-height: 1.6;
				}
			}
			.right {
				ol {
					border-top: 1px solid currentcolor;
					counter-reset: li;
					li {
						padding: 46px 0 20px;
						font-size: 16px;
						line-height: 1.4;
						&::before {
							top: 20px;
							left: 0;
							transform: none;
							font-size: 14px;
						}
					}
				}
			}
		}
	}
}


/*------------------------------------------------------------
	Member Story
------------------------------------------------------------*/
#member-story-contents {
	padding-top: 150px;
	.section-wrap {
		padding: 200px var(--px);
		&.wp-contents {
			padding-top: 0;
			h2.wp-block-heading {
				font-family: var(--min);
				font-size: 48px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
			p {
				font-size: 20px;
				line-height: 2;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
			& > * + * {
				margin-top: 80px;
			}
			& > p + p {
				margin-top: 65px;
			}
			& > *.onlyPC:first-child + *.onlySP {
				margin-top: 0;
			}
		}
	}
}

@media screen and (max-width: 800px) {
	#member-story-contents {
		padding-top: 0;
		.section-wrap {
			padding: 0 var(--px) 160px;
			&.wp-contents {
				h2.wp-block-heading {
					font-size: 28px;
					line-height: 1.6;
				}
				p {
					font-size: 14px;
					line-height: 1.6;
				}
				& > * + * {
					margin-top: 60px;
				}
				& > p + p {
					margin-top: 34px;
				}
			}
		}
	}

}


/*------------------------------------------------------------
	Requirement
------------------------------------------------------------*/
#requirement-contents {
	padding: 0 var(--px) 250px;
	.requirement-title {
		background: var(--white);
		padding: 40px;
		font-family: var(--min);
		font-size: 40px;
		letter-spacing: -0.04em;
		color: var(--blue);
		position: relative;
		text-box: trim-both cap alphabetic;
		&::before, &::after {
			content: '';
			display: block;
			width: 30px;
			height: 2px;
			background: currentcolor;
			position: absolute;
			right: 40px;
			top: 50%;
			margin-top: -1px;
			transition: 0.5s;
		}
		&::after {
			transform: rotate(270deg);
		}
		&.opened::before, &.opened::after {
			transform: rotate(360deg);
		}
	}
	.requirement-list {
		display: flex;
		flex-direction: column;
		gap: 30px;
		.list-item {
			padding-top: var(--headerHeight);
			margin-top: calc(-1 * var(--headerHeight));
		}
	}
	.requirement-table {
		display: none;
		padding-top: 20px;
		& > *:not(.wp-block-table, .btn) {
			display: none;
		}
		.wp-block-table {
			table-layout: fixed;
			td {
				font-size: 16px;
				line-height: 2;
				padding: 40px 0;
				border: none;
				border-bottom: 1px solid currentcolor;
				text-box: trim-both cap alphabetic;
				&:first-child {
					font-size: 20px;
					line-height: 1.4;
					width: 182px;
				}
			}
		}
		.btn {
			margin-top: 40px;
			text-align: center;
			padding-bottom: 70px;
		}
	}
}

@media screen and (max-width: 800px) {
	#requirement-contents {
		padding: 0 var(--px) 160px;
		.requirement-title {
			padding: 20px;
			font-size: 24px;
			&::before, &::after {
				width: 20px;
				right: 16px;
			}
		}
		.requirement-list {
			gap: 20px;
		}
		.requirement-table {
			padding-top: 10px;
			.wp-block-table {
				table-layout: fixed;
				td {
					display: block;
					width: 100%;
					font-size: 14px;
					line-height: 1.8;
					padding: 20px 0 30px;
					border: none;
					border-bottom: 1px solid currentcolor;
					&:first-child {
						border: none;
						padding: 30px 0 0;
						font-size: 16px;
						width: 100%;
					}
				}
			}
			.btn {
				margin-top: 40px;
				text-align: center;
				padding-bottom: 40px;
			}
		}
	}
}


/*------------------------------------------------------------
	Page - Contact
------------------------------------------------------------*/
.page-entry {
	.wpcf7 {
		margin-top: 90px;
	}
	.wpcf7 table {
		max-width: 918px;
		width: 100%;
		table-layout: fixed;
	}
	.wpcf7 th {
		font-size: 20px;
		line-height: 1.4;
		letter-spacing: -0.04em;
		text-align: left;
		vertical-align: top;
		padding-top: 17px;
		width: 284px;
		text-box: trim-both cap alphabetic;
	}
	.wpcf7 .req {
		color: yellow;
		margin-left: 0.25em;
	}
	.wpcf7 th small {
		font-size: 70%;
	}
	.wpcf7 tr:has(.wpcf7-radio) th {
		padding-top: 5px;
	}
	
	.wpcf7 td {
		font-size: 16px;
		line-height: 2;
		letter-spacing: -0.04em;
		padding-bottom: 40px;
	}
	.wpcf7 select,
	.wpcf7 input[type=text],
	.wpcf7 input[type=email],
	.wpcf7 input[type=tel] {
		-webkit-appearance: none;
		box-shadow: none;
		font-size: 16px;
		line-height: 2;
		letter-spacing: -0.04em;
		padding: 9px 20px;
		background-color: var(--input);
		width: 100%;
		border: none;
		border-radius: 6px;
	}
	.wpcf7 select {
		padding-right: 40px;
		background: var(--input) url(images/icon-select.svg) right 20px center/13px 8px no-repeat;
	}
	.wpcf7 select option {
		font-family: var(--ja);
		font-weight: 500;
	}
	.wpcf7 ::placeholder {
		color: var(--placeholder);
	}
	.wpcf7 .your-acceptance-wrap label {
		position: relative;
		display: block;
		cursor: pointer;
	}
	
	.wpcf7 .wpcf7-list-item {
		margin-left: 0;
		line-height: 1;
	}
	.wpcf7 .wpcf7-list-item label {
		display: inline-block;
		
	}
	.wpcf7 .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.wpcf7 input[type=radio],
	.wpcf7 input[type=checkbox] {
		position: absolute;
		opacity: 0;
	}
	.wpcf7 input[type=radio] + span,
	.wpcf7 input[type=checkbox] + span {
		position: relative;
		padding: 7px 0 7px 38px;
		display: block;
		min-width: 100%;
		font-size: 16px;
		line-height: 2;
		text-box: trim-both cap alphabetic;
	}
	.wpcf7 input[type=radio] + span::before,
	.wpcf7 input[type=checkbox] + span::before {
		content: '';
		box-sizing: border-box;
		position: absolute;
		top: 0;
		left: 0;
		height: 26px;
		width: 26px;
		border-radius: 50%;
		background-color: #fff;
		border: none;
		z-index: 1;
	}
	
	.wpcf7 input[type=radio] + span::after,
	.wpcf7 input[type=checkbox] + span::after {
		content: '';
		box-sizing: border-box;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: var(--blue);
		opacity: 0;
		transform: scale(0.625);
		transition: .5s;
	}
	.wpcf7 input[type=radio]:checked + span::after,
	.wpcf7 input[type=checkbox]:checked + span::after {
		opacity: 1;
	}
	.wpcf7 .wpcf7-acceptance a {
		text-decoration: underline;
	}
	.wpcf7 .wpcf7-acceptance a:hover {
		text-decoration: none;
	}
	.wpcf7 p:has(span[data-name="your-acceptance"]) {
		text-align: center;
		padding-top: 20px;
	}
	.wpcf7 textarea {
		-webkit-appearance: none;
		box-shadow: none;
		padding: 9px 20px;
		font-size: 16px;
		line-height: 2;
		letter-spacing: -0.04em;
		height: 300px;
		background-color: var(--input);
		width: 100%;
		border: none;
		border-radius: 6px;
		vertical-align: top;
	}
	.wpcf7-not-valid-tip {
		color: yellow; 指定があれば
	}
	
	.wpcf7 p:has(.wpcf7-submit) {
		text-align: center;
		padding-top: 0;
		position: relative;
		margin-top: 60px;
	}
	.wpcf7 .wpcf7-spinner {
		position: absolute;
		top: 0;
		right: 0;
	}
	.wpcf7 input[type=submit] {
		display: inline-flex;
		max-width: 728px;
		width: 100%;
		height: 114px;
		align-items: center;
		justify-content: center;
		-webkit-box-sizing: content-box;
		-webkit-appearance: button;
		box-shadow: none;
		font-size: 50px;
		font-family: var(--en);
		letter-spacing: -0.04em;
		padding: 0;
		color: var(--blue);
		line-height: 1;
		border: none;
		border-radius: 0;
		background: var(--white) url(images/icon-submit.svg) right 40px center/54px 54px no-repeat;
		cursor: pointer;
		transition: .5s;
	}
	.wpcf7 input[type=submit]:hover {
		opacity: 0.5;
	}
	.wpcf7 input[type=submit]:disabled {
		opacity: 0.25;
		cursor: not-allowed;
	}
	.wpcf7 input[type=submit]:disabled:hover {
		opacity: 0.25;
	}
	.wpcf7 label.file {
		cursor: pointer;
		display: inline-flex;
		font-size: 16px;
		color: var(--blue);
		width: 160px;
		border-radius: 6px;
		height: 40px;
		background: var(--white);
		text-align: center;
		justify-content: center;
		align-items: center;
		line-height: 1;
		transition: 0.5s;
		position: relative;
	}
	.wpcf7 label.file .wpcf7-form-control-wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.wpcf7 label.file .wpcf7-not-valid-tip {
		position: absolute;
		top: 100%;
		left: 0;
		display: block;
		line-height: 2;
		white-space: nowrap
	}
	.wpcf7 label.file:hover {
		opacity: 0.5;
	}
	.wpcf7 label.file input {
		display: none;
	}
}
.page-thanks {
	.btn {
		position: absolute;
		bottom: 0;
		right: 0;
	}
}

@media screen and (max-width: 800px) {
	.page-entry {
		.wpcf7 {
			margin-top: 80px;
		}
		.wpcf7 th {
			display: block;
			width: 100%;
			font-family: var(--min);
			font-size: 16px;
			line-height: 1.4;
			padding-top: 0;
			padding-bottom: 20px;
		}
		.wpcf7 th small {
			font-size: 80%;
			margin-left: 0.5em;
		}
		.wpcf7 tr:has(.wpcf7-radio) th {
			padding-top: 0;
		}
		
		.wpcf7 td {
			display: block;
			width: 100%;
			font-size: 14px;
			padding-bottom: 50px;
		}
		.wpcf7 select,
		.wpcf7 input[type=text],
		.wpcf7 input[type=email],
		.wpcf7 input[type=tel] {
			font-size: 14px;
			padding: 6px 12px;
			border-radius: 3px;
		}
		.wpcf7 select {
			padding-right: 30px;
			background: var(--input) url(images/icon-select.svg) right 12px center/13px 8px no-repeat;
		}
		.wpcf7 .wpcf7-form-control {
			gap: 12px;
		}
		.wpcf7 input[type=radio] + span,
		.wpcf7 input[type=checkbox] + span {
			font-size: 14px;
		}
		.wpcf7 p:has(span[data-name="your-acceptance"]) {
			padding-top: 0;
		}
		.wpcf7 textarea {
			padding: 6px 12px;
			font-size: 14px;
			height: 200px;
			border-radius: 3px;
		}
		.wpcf7 p:has(.wpcf7-submit) {
			margin-top: 80px;
		}
		.wpcf7 input[type=submit] {
			max-width: 100%;
			height: 80px;
			font-size: 40px;
			background: var(--white) url(images/icon-submit.svg) right 20px center/40px 40px no-repeat;
		}		
	}
	.page-thanks {
		.btn {
			margin-top: 40px;
			position: relative;
			bottom: 0;
			right: 0;
			text-align: right;
		}
	}
}


/*------------------------------------------------------------
	Single
------------------------------------------------------------*/


#single {
	background: var(--blue);
}
.single-title {
	h1 {
		font-size: 50px;
		font-family: var(--min);
		letter-spacing: -0.04em;
		line-height: 1.4;
		text-box: trim-both cap alphabetic;
		padding-bottom: 30px;
		border-bottom: 1px solid currentcolor;
	}
	padding: 240px var(--px) 100px;
}
.single-mv {
	position: relative;
	text-align: right;
	padding: 0 var(--px) 20px;
	margin-bottom: 70px;
	img {
		width: calc(100% - 282px);
	}
	.single-catchphrase {
		position: absolute;
		bottom: 0;
		z-index: 1;
		text-align: left;
		display: flex;
		flex-direction: column;
		gap: 50px;
		.sub {
			position: relative;
			font-size: 16px;
			line-height: 1.4;
			text-box: trim-both cap alphabetic;
			padding-left: 18px;
			&::before {
				content: '';
				display: block;
				width: 10px;
				height: 1px;
				background: currentcolor;
				position: absolute;
				top: 6px;
				left: 0;
			}
		}
		.main {
			font-family: var(--min);
			letter-spacing: -0.04em;
			font-size: 60px;
			line-height: 1.6;
			text-box: trim-both cap alphabetic;
			.txt-bg-white {
				color: var(--blue);
				background-image: linear-gradient(transparent 0%, #fff 0);
				background-repeat: no-repeat;
				display: inline;
				-webkit-box-decoration-break: clone;
				box-decoration-break: clone;
				padding: 13px 20px;
			}
		}
	}
}
.single-table {
	padding: 0 var(--px) 80px;
	.grid {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		border-right: 1px solid currentcolor;
		border-bottom: 1px solid currentcolor;
		dl {
			border-top: 1px solid currentcolor;
			border-left: 1px solid currentcolor;
			display: flex;
			align-items: center;
			min-height: 60px;
			padding: 18px 40px;
			font-family: var(--min);
			font-size: 20px;
			line-height: 1.4;
			letter-spacing: -0.04em;
			&.big {
				font-size: 30px;
			}
			dt {
				width: 120px;
				text-box: trim-both cap alphabetic;
				
			}
			dd {
				flex: 1 1 0;
				text-box: trim-both cap alphabetic;
			}
		}
	}
}
.single-resume {
	padding: 0 var(--px) 160px;
	.bg-paper {
		padding: 50px;
		gap: 50px;
		display: grid;
		grid-template-columns: 242px auto;
		background: var(--white) url(images/pat.png) left top/15px 15px repeat;
		color: var(--blue);
		.left {
			h2 {
				font-family: var(--min);
				font-size: 42px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
			}
		}
		.right {
			h3 {
				font-family: var(--min);
				font-size: 30px;
				line-height: 1.4;
				letter-spacing: -0.04em;
				text-box: trim-both cap alphabetic;
				margin-bottom: 20px;
			}
			& * + h3 {
				margin-top: 40px;
			}
			table {
				width: 100%;
				color: var(--black);
				table-layout: fixed;
				border-collapse: collapse;
				font-family: var(--min);
				font-size: 16px;
				line-height: 1.8;
				letter-spacing: -0.04em;
				th {
					width: 140px;
					text-align: left;
				}
				th, td {
					border: 1px solid #717171;
					padding: 18px 20px;
					text-box: trim-both cap alphabetic;
				}
				&.after tr:last-child th {
					background: var(--blue);
					color: var(--white);
					border-right: 1px solid var(--white);
				}
				&.after tr:last-child td {
					background: var(--blue);
					color: var(--white);
					border-left: 1px solid var(--white);
				}
			}
		}
	}
}
.single-contents {
	padding: 0 var(--px) 180px;
	.wrap {
		max-width: 916px;
		margin: auto;
		h2.wp-block-heading {
			font-family: var(--min);
			font-size: 24px;
			line-height: 1.4;
			letter-spacing: -0.04em;
			text-box: trim-both cap alphabetic;
			padding-bottom: 20px;
			border-bottom: 1px solid currentcolor;
			margin-bottom: 30px;
		}
		& > * + h2.wp-block-heading {
			margin-top: 80px;
		}
		p {
			font-size: 16px;
			line-height: 1.8;
			text-box: trim-both cap alphabetic;
		}
		& > * + p {
			margin-top: 30px;
		}
		.wp-block-image {
			margin-bottom: 80px;
		}
		& > * + .wp-block-image {
			margin-top: 80px;
		}
	}
}
#other-member-story {
	background: var(--blue);
	padding: 180px var(--px) 250px;
}

@media screen and (max-width: 800px) {
	.single-title {
		h1 {
			font-size: 32px;
			padding-bottom: 20px;
		}
		padding: 180px var(--px) 30px;
	}
	.single-mv {
		display: flex;
		flex-direction: column;
		text-align: left;
		padding: 0 var(--px);
		gap: 20px;
		margin-bottom: 50px;
		img {
			width: 100%;
			order: -1;
		}
		.single-catchphrase {
			position: relative;
			bottom: auto;
			z-index: 1;
			text-align: left;
			gap: 20px;
			.sub {
				font-size: 12px;
				&::before {
					top: 4px;
				}
			}
			.main {
				font-size: min(24px,100vw * 24 / 390);
				line-height: 1.75;
				.txt-bg-white {
					padding: 0.29em 0.41em;
				}
			}
		}
	}
	
	.single-table {
		padding: 0 var(--px) 40px;
		.grid {
			grid-template-columns: repeat(1,1fr);
			dl {
				min-height: 40px;
				padding: 15px 20px;
				font-size: 14px;
				&.big {
					font-size: 14px;
				}
				dt {
					width: 80px;
				}
			}
		}
	}
	.single-resume {
		padding: 0 var(--px) 100px;
		.bg-paper {
			padding: 40px 20px;
			gap: 40px;
			grid-template-columns: 1fr;
			.left {
				h2 {
					font-size: 30px;
				}
			}
			.right {
				h3 {
					font-size: 20px;
				}
				& * + h3 {
					margin-top: 30px;
				}
				table {
					font-size: 14px;
					line-height: 1.6;
					th {
						width: 75px;
					}
					th, td {
						padding: 12px;
					}
				}
			}
		}
	}
	.single-contents {
		padding: 0 var(--px) 60px;
		.wrap {
			h2.wp-block-heading {
				font-size: 16px;
			}
			& > * + h2.wp-block-heading {
				margin-top: 60px;
			}
			.wp-block-image {
				margin-bottom: 60px;
			}
			& > * + .wp-block-image {
				margin-top: 60px;
			}
		}
	}
	#other-member-story {
		padding: 160px var(--px);
	}
	
}



/* =====================================================
   Skip ボタン (OP演出中に右下固定表示)
   ===================================================== */
.skip-btn {
  position: fixed;
  bottom: 40px;
  left: 50%;
  z-index: 1000;
  color: #FFFFFF;
  font-family: 'BIZ UDPMincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%,0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.skip-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.skip-btn:hover {
  opacity: 0.6;
}