/* =========================================
	newtop animation
	KV / scroll reveal / hover motion
========================================= */

/* =========================================
	KV title animation
	日本語コピー → 一拍 → 英語上段 → 英語下段 → リード文/ボタン
	英語のふわふわはwrap側で制御
========================================= */

.top-kv-copy,
.top-kv-text,
.top-btn {
	opacity: 0;
	transform: translate3d(0, 12px, 0);
	filter: blur(5px);
}

/* 英語wrapは表示状態に固定。ふわふわはこのwrap側に付ける */
.top-kv-en-wrap {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	filter: none;
	overflow: hidden;
	will-change: transform;
}

/* 英語画像本体だけ非表示スタート。表示演出は画像側に付ける */
.top-kv-en {
	opacity: 0;
	transform: translate3d(-22px, 0, 0);
	filter: blur(5px);
	clip-path: inset(0 100% 0 0);
	will-change: opacity, transform, filter, clip-path;
}

/* 1. 日本語コピー：浮かび上がるフェードイン */
.is-loaded .top-kv-copy {
	animation: kvCopyFloatReveal 1.0s cubic-bezier(.22, 1, .36, 1) .12s forwards;
}

/* 2. 英語上段：日本語完了後、少し間を置いて開始 */
.is-loaded .top-kv-en-wrap-1 .top-kv-en {
	animation: kvEnLeftReveal 0.85s cubic-bezier(.16, 1, .3, 1) 1.20s forwards;
}

/* ふわふわはwrap側。表示完了後に開始 */
.is-loaded .top-kv-en-wrap-1 {
	animation: kvTitleFloatWrap1 8s ease-in-out 2.25s infinite;
}

/* 3. 英語下段 */
.is-loaded .top-kv-en-wrap-2 .top-kv-en {
	animation: kvEnLeftReveal 0.85s cubic-bezier(.16, 1, .3, 1) 1.78s forwards;
}

/* ふわふわはwrap側。上段より少し遅れて開始 */
.is-loaded .top-kv-en-wrap-2 {
	animation: kvTitleFloatWrap2 9s ease-in-out 2.80s infinite;
}

/* 4. リード文 */
.is-loaded .top-kv-text {
	animation: kvLeadReveal .82s cubic-bezier(.22, 1, .36, 1) 2.55s forwards;
}

/* 5. ボタン */
.is-loaded .top-btn {
	animation: kvLeadReveal .82s cubic-bezier(.22, 1, .36, 1) 2.82s forwards;
}


@keyframes kvCopyFloatReveal {
	0% {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
		filter: blur(5px);
	}

	62% {
		opacity: 1;
		filter: blur(1px);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}

@keyframes kvEnLeftReveal {
	0% {
		opacity: 0;
		transform: translate3d(-22px, 0, 0);
		filter: blur(5px);
		clip-path: inset(0 100% 0 0);
	}

	34% {
		opacity: .58;
		filter: blur(3px);
	}

	74% {
		opacity: 1;
		filter: blur(.5px);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
		clip-path: inset(0 0 0 0);
	}
}

@keyframes kvLeadReveal {
	0% {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
		filter: blur(5px);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}

/* 英語画像の微浮遊：上段 */
@keyframes kvTitleFloatWrap1 {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -4px, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

/* 英語画像の微浮遊：下段 */
@keyframes kvTitleFloatWrap2 {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, 5px, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

/* =========================================
	newtop animation
	BtoB向け：軽量・控えめなアニメーション
========================================= */

/* 初期状態：blurは重くなりやすいので使わない */
.js-reveal {
	opacity: 0;
	transform: translate3d(0, 14px, 0);

	transition:
		opacity .55s cubic-bezier(.22, 1, .36, 1),
		transform .55s cubic-bezier(.22, 1, .36, 1);
}

/* 表示状態 */
.js-reveal.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* =========================================
	Solution step
	1個ずつ「しゅんしゅん」表示
========================================= */

.solution-step.js-reveal {
	opacity: 0;
	transform: translate3d(20px, 8px, 0);

	transition:
		opacity .42s cubic-bezier(.16, 1, .3, 1),
		transform .42s cubic-bezier(.16, 1, .3, 1);
}

.solution-step.js-reveal.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* 1個ずつ確実に見えるよう、少しだけ間隔を空ける */
.solution-step.js-reveal[data-reveal-delay="1"] {
	transition-delay: .00s;
}

.solution-step.js-reveal[data-reveal-delay="2"] {
	transition-delay: .14s;
}

.solution-step.js-reveal[data-reveal-delay="3"] {
	transition-delay: .28s;
}

.solution-step.js-reveal[data-reveal-delay="4"] {
	transition-delay: .42s;
}


/* =========================================
	その他リスト系：控えめ
========================================= */

.event-heading.js-reveal,
.case-card.js-reveal,
.services-section .section-title.js-reveal,
.group-layout.js-reveal {
	transform: translate3d(0, 16px, 0);
}

.event-item.js-reveal,
.information-item.js-reveal,
.top-service-item.js-reveal,
.bottom-link-card.js-reveal {
	transform: translate3d(0, 12px, 0);
}

.event-item.js-reveal[data-reveal-delay="1"],
.information-item.js-reveal[data-reveal-delay="1"],
.top-service-item.js-reveal[data-reveal-delay="1"],
.bottom-link-card.js-reveal[data-reveal-delay="1"] {
	transition-delay: .00s;
}

.event-item.js-reveal[data-reveal-delay="2"],
.information-item.js-reveal[data-reveal-delay="2"],
.top-service-item.js-reveal[data-reveal-delay="2"],
.bottom-link-card.js-reveal[data-reveal-delay="2"] {
	transition-delay: .08s;
}

.event-item.js-reveal[data-reveal-delay="3"],
.information-item.js-reveal[data-reveal-delay="3"],
.top-service-item.js-reveal[data-reveal-delay="3"] {
	transition-delay: .16s;
}

.event-item.js-reveal[data-reveal-delay="4"],
.information-item.js-reveal[data-reveal-delay="4"],
.top-service-item.js-reveal[data-reveal-delay="4"] {
	transition-delay: .24s;
}

.event-item.js-reveal[data-reveal-delay="5"],
.information-item.js-reveal[data-reveal-delay="5"] {
	transition-delay: .32s;
}


/* =========================================
	service card hover refinement
	軽めに調整
========================================= */

.service-card {
	transition:
		opacity .22s ease,
		transform .22s ease;
}

.service-card:hover {
	opacity: .88;
	transform: translateY(-2px);
}

.service-card::after {
	transition: transform .22s ease;
}

.service-card:hover::after {
	transform: translate3d(2px, -2px, 0);
}

.service-card-external .nav-external__icon {
	transition: transform .22s ease;
}

.service-card-external:hover .nav-external__icon {
	transform: translate3d(2px, -2px, 0);
}


/* =========================================
	bottom link hover refinement
	重くならない程度
========================================= */

.bottom-link-card:hover {
	transform: translateY(-2px);
	filter: brightness(1.03);
}

/* =========================================
	reduced motion
========================================= */

@media (prefers-reduced-motion: reduce) {

	.top-bg-area > .top-bg-gradation,
	.top-kv-en,
	.top-kv-en-wrap,
	.top-kv-copy,
	.top-kv-text,
	.top-btn,
	.js-reveal,
	.js-reveal.is-revealed,
	.solution-step.js-reveal,
	.solution-step.js-reveal.is-revealed {
		animation: none !important;
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
		clip-path: none !important;
		transition: none !important;
	}

	.service-card:hover,
	.bottom-link-card:hover,
	.service-card:hover::after,
	.service-card-external:hover .nav-external__icon {
		transform: none !important;
	}
}


/* =========================================
	root
========================================= */

:root {
	/* color */
	--color-text: #3E3A39;
	--color-white: #fff;
	--color-key: #dadf00;
	--color-blue: #0097dd;
	--color-blue-service: #0098dc;
	--color-green: #00A384;
	--color-pink: #e73656;
	--color-purple: #a588bd;

	--color-gray-700: #555;
	--color-gray-500: #777;
	--color-gray-400: #999;
	--color-gray-300: #dde2e6;
	--color-bg-light: #f3f5f7;
	--color-bg-soft: #f5f7f9;
	--color-border: #3E3A39;

	/* font */
	--font-ja: "Noto Sans JP", sans-serif;
	--font-en: Arial, sans-serif;
	--font-icon: "ilm";

	/* font size */
	--fs-caption: 12px;
	--fs-small: 14px;
	--fs-base: 16px;
	--fs-title-sm: 21px;
	--fs-title-md: 24px;
	--fs-title-lg: 30px;

	/* spacing */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 32px;
	--space-xl: 48px;
	--space-2xl: 64px;
	--space-section: 80px;

	/* radius / shadow / transition */
	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 8px;

	--shadow-card: 0 8px 28px rgba(0,0,0,.08);
	--shadow-panel: 0 10px 28px rgba(0,0,0,.08);
	--shadow-float: 0 10px 36px rgba(0,0,0,.08);

	--duration: .25s;
}


/* =========================================
	base
========================================= */

.top-page {
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-ja);
	font-size: var(--fs-base);
	overflow: hidden;
}

.top-page * {
	box-sizing: border-box;
}

.top-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

.section-inner {
	width: min(86%, 1100px);
	margin: 0 auto;
}

.section-label {
	margin: 0 0 var(--space-sm);
	color: var(--color-key);
	font-size: var(--fs-small);
	font-weight: 700;
	letter-spacing: .08em;
}

.top-page p {
	margin-top: 0;
	line-height: 1.9;
}

.top-page h2,
.top-page h3,
.top-page h4 {
	margin-top: 0;
	color: var(--color-text);
	font-weight: 700;
}

.section-title {
	margin: 0 0 var(--space-md);
	font-size: var(--fs-title-md);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: .02em;
}


/* =========================================
	accessibility
========================================= */

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}


/* =========================================
	button
========================================= */

.top-btn {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 260px;
	height: 48px;
	padding: 0 var(--space-md);

	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);

	background: var(--color-white);
	color: var(--color-text);

	font-size: var(--fs-base);
	font-weight: 700;
	text-decoration: none;

	transition:
		opacity var(--duration) ease,
		transform var(--duration) ease,
		box-shadow var(--duration) ease,
		background-color var(--duration) ease,
		color var(--duration) ease;
}

.top-btn::after {
	content: "";

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;
	margin-left: 18px;

	border-radius: 50%;
	background: var(--color-key);
}

.top-btn::before {
	content: "›";

	position: absolute;
	right: 32px;
	top: 50%;
	z-index: 1;

	transform: translateY(-54%);

	color: var(--color-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.top-btn:hover {
	opacity: 1;
	background: var(--color-text);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.top-btn:hover::after {
	background: var(--color-key);
}

.top-btn:hover::before {
	color: var(--color-white);
}

.btn {
	display: flex;
	align-items: center;
	justify-content: space-between;

	max-width: 300px;
	height: 48px;
	padding: 0 var(--space-md);

	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);

	background: var(--color-white);
	color: var(--color-text);

	font-size: var(--fs-base);
	font-weight: 700;
	text-decoration: none;

	transition: opacity var(--duration) ease;
}

.btn::after {
	content: "";

	width: 12px;
	height: 18px;

	background: url("/cms/wp-content/themes/cicom_renewal_theme/data/about/images/common/arrow-oblique_up.svg") center / contain no-repeat;
}

.btn:hover {
	opacity: .75;
}

.btn-white {
	background: rgba(255,255,255,.92);
}


/* =========================================
	KV - CASE background area
========================================= */

.top-bg-area {
	position: relative;
	overflow: hidden;
	background: var(--color-white);
}

.top-bg-area > .top-bg-gradation {
	position: absolute;
	top: -260px;
	left: 0;
	z-index: 0;

	width: 100%;
	height: calc(100% + 700px);

	pointer-events: none;
	opacity: .78;

	will-change: transform;
}

.top-bg-gradation-object {
	position: absolute;
	display: block;
	pointer-events: none;
}

.top-bg-gradation-object-1 {
	width: 1240px;
	height: 1240px;
	left: -540px;
	top: 60px;
	opacity: .9;
}

.top-bg-gradation-object-2 {
	width: 560px;
	height: 560px;
	right: -60px;
	top: 260px;
	opacity: .76;
}

/* 下方向は「繰り返し」ではなく、広がる背景として扱う */
.top-bg-gradation-object-3 {
	width: 1480px;
	height: 1480px;
	left: -720px;
	top: 820px;
	opacity: .38;
	transform: rotate(18deg);
	transform-origin: center;
}

.top-bg-gradation-object-4 {
	width: 720px;
	height: 720px;
	right: 6%;
	top: 1320px;
	opacity: .28;
	transform: rotate(-12deg);
	transform-origin: center;
}

.top-kv,
.solution-section,
.case-section {
	position: relative;
	z-index: 2;
	background: transparent;
}


/* =========================================
	KV
========================================= */

.top-kv {
	padding: 110px 0 var(--space-section);
	text-align: center;
	overflow: hidden;
}

.top-kv-inner {
	position: relative;
	z-index: 2;
	width: min(90%, 1100px);
	margin: 0 auto;
}

.top-kv-title-area {
	position: relative;
	width: min(100%, 980px);
	margin: 0 auto var(--space-lg);
}

.top-kv-en-wrap {
	position: relative;
}

.top-kv-en {
	display: block;
	height: auto;
	margin: 0 auto;
	will-change: transform;
}

.top-kv-en-1 {
	position: relative;
	z-index: 1;
	width: 100%;
}

.top-kv-copy {
	display: block;
	position: relative;
	z-index: 2;

	margin: -8px 0 var(--space-sm);

	color: var(--color-text);
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .02em;
}

.top-kv-en-2 {
	position: relative;
	z-index: 1;
	width: 68%;
}

.top-kv-text {
	margin: 28px 0 26px;

	color: var(--color-text);
	font-size: var(--fs-base);
	font-weight: 700;
	line-height: 1.9;
	letter-spacing: .04em;
}

/* =========================================
	KV figure
========================================= */

.top-kv-photo-list {
	position: relative;
	z-index: 2;

	width: min(96%, 1280px);
	margin: var(--space-section) auto 0;
}

.top-kv-photo-list img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0;
}


/* =========================================
	solution
========================================= */

.solution-section {
	padding: var(--space-section) 0 60px;
}

.solution-visual-bg {
	background-image: url("/cms/wp-content/themes/cicom_renewal_theme/data/newtop/images/solution_bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.solution-card {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: var(--space-xl);
	align-items: center;

	padding: var(--space-xl) 56px;

	box-shadow: var(--shadow-float);
}

.solution-text p:last-of-type {
	margin-bottom: 28px;
}

.solution-visual {
	position: relative;
	min-height: 300px;
	overflow: visible;
}

.solution-step-list {
	position: relative;
	z-index: 1;

	width: 100%;
	margin: 0;
	padding: 28px 0 0;
	list-style: none;
}

.solution-step {
	position: relative;

	display: grid;
	grid-template-columns: 14px 1fr;
	column-gap: 10px;

	width: 320px;
	min-height: 58px;
	margin: 0 0 14px;
	padding: 12px 22px 10px 18px;

	background: rgba(255,255,255,.96);
	box-shadow:
		10px 10px 18px rgba(60,80,100,.16),
		0 2px 4px rgba(60,80,100,.08);

	color: var(--color-text);
}

.solution-step-icon {
	grid-row: 1 / span 2;

	width: 11px;
	height: 11px;
	margin-top: 7px;

	background: linear-gradient(
		-32deg,
		#84d5f2 0%,
		#b68dc7 100%
	);
}

.solution-step-main {
	display: block;

	font-family: var(--font-en);
	font-size: var(--fs-title-md);
	font-weight: 700;
	line-height: 1.05;
}

.solution-step-sub {
	display: block;

	margin-top: 3px;

	color: var(--color-text);
	font-size: var(--fs-caption);
	font-weight: 700;
	line-height: 1.3;
}

.solution-step-1 {
	margin-left: 110px;
}

.solution-step-2 {
	margin-left: 76px;
}

.solution-step-3 {
	margin-left: 40px;
}

.solution-step-4 {
	margin-left: 0;
}


/* =========================================
	case
========================================= */

.case-section {
	position: relative;
	padding: 50px 0 180px;
	background: transparent;
}

.case-card {
	position: relative;
	z-index: 99;

	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: stretch;

	min-height: 250px;

	background: rgba(255,255,255,.9);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(10px);
}

.case-image {
	min-height: 250px;
	overflow: hidden;
}

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

.case-text {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 34px var(--space-xl) 44px;
}

.case-text .section-label {
	margin: 0 0 10px;
}

.case-text .section-title {
	margin: 0 0 var(--space-sm);

	font-size: var(--fs-title-md);
	line-height: 1.6;
}

.case-text p:not(.section-label) {
	margin: 0;

	color: var(--color-text);
	font-size: var(--fs-base);
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: .02em;
}


/* =========================================
	case accordion trigger button
========================================= */

.case-accordion-trigger {
	appearance: none;
	-webkit-appearance: none;

	position: absolute;
	left: 50%;
	bottom: -20px;
	z-index: 5;

	transform: translateX(-50%);

	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	width: 320px;
	height: 48px;
	padding: 0 28px 0 34px;

	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);

	background: rgba(255,255,255,.94);
	color: var(--color-text);

	font-family: inherit;
	font-size: var(--fs-small);
	font-weight: 700;
	line-height: 1;
	text-align: left;
	text-decoration: none;

	cursor: pointer;

	transition:
		opacity var(--duration) ease,
		background-color var(--duration) ease;
}

.case-accordion-trigger:hover {
	opacity: .75;
}

.case-accordion-trigger span {
	display: block;
}

.case-accordion-trigger::after {
	content: "";

	display: block;
	flex: 0 0 auto;

	width: 10px;
	height: 10px;
	margin-left: 18px;

	border-right: 3px solid var(--color-key);
	border-bottom: 3px solid var(--color-key);

	transform: rotate(45deg) translate(-2px, -3px);
	transform-origin: center;

	transition: transform var(--duration) ease;
}

.case-accordion-trigger.is-open::after {
	transform: rotate(-135deg) translate(-2px, -3px);
}


/* =========================================
	case support accordion area
========================================= */

.case-accordion-panel-wrap {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-12px);

	transition:
		max-height .55s cubic-bezier(.22, 1, .36, 1),
		opacity .35s ease,
		transform .45s cubic-bezier(.22, 1, .36, 1);

	will-change: max-height, opacity, transform;
}

.case-accordion-panel-wrap.is-open {
	max-height: 760px;
	opacity: 1;
	transform: translateY(0);
}

.case-support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;

	margin-top: 42px;

	background: var(--color-key);
	box-shadow: var(--shadow-panel);
}

.case-support-card {
	position: relative;
	min-height: 210px;
	padding: 26px 28px;

	overflow: hidden;
}

.case-support-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.case-support-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.case-support-card-inner {
	position: relative;
	z-index: 2;
}

.case-support-card h4 {
	margin: 0 0 4px;

	font-size: var(--fs-title-md);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	letter-spacing: .04em;
}

.case-support-card p {
	margin: 0 0 18px;

	font-size: var(--fs-caption);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.case-support-card ul {
	margin: 0;
	padding: 18px 22px;

	background: rgba(255,255,255,.86);
	list-style: none;
}

.case-support-card li {
	position: relative;

	padding-left: 1em;

	color: var(--color-text);
	font-size: var(--fs-caption);
	font-weight: 500;
	line-height: 1.8;
}

.case-support-card li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.case-support-card-org {
	color: var(--color-white);
}
.case-support-card-org h4,
.case-support-card-org p {
	color: var(--color-white);
}
.case-support-card-org::before {
	background-image: url("/cms/wp-content/themes/cicom_renewal_theme/data/newtop/images/case_accordion_org.png");
}

.case-support-card-org::after {
	background: rgba(0,0,0,.28);
}

.case-support-card-org ul {
	background: rgba(255,255,255,.86);
}

.case-support-card-org li {
	color: var(--color-text);
}

.case-support-card-career,
.case-support-card-wellbeing {
	background: var(--color-key);
	color: var(--color-text);
}

.case-support-card-career::before,
.case-support-card-wellbeing::before {
	background-image:
		linear-gradient(
			rgba(218,223,0,.78),
			rgba(218,223,0,.78)
		);
	opacity: .45;
}

.case-support-card-global {
	background: #f4f4f4;
	color: var(--color-text);
}

.case-support-card-global::before {
	background-image: url("/cms/wp-content/themes/cicom_renewal_theme/data/newtop/images/case_accordion_global.png");
}


/* =========================================
	event
========================================= */

.event-section {
	position: relative;
	padding: 86px 0 78px;

	background:
		linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.58)),
		url("/cms/wp-content/themes/cicom_renewal_theme/data/newtop/images/event_bg.jpg")
		center / cover no-repeat;

	color: var(--color-white);
}

.event-section .section-inner {
	width: min(86%, 960px);
}

.event-heading {
	margin-bottom: 28px;
}

.event-heading .section-label {
	margin-bottom: 10px;
	color: var(--color-key);
}

.event-heading .section-title {
	margin: 0 0 var(--space-sm);

	color: var(--color-white);
	font-size: var(--fs-title-md);
	line-height: 1.6;
	letter-spacing: .03em;
}

.event-heading p {
	margin: 0;

	color: var(--color-white);
	font-size: var(--fs-base);
	line-height: 1.9;
	letter-spacing: .02em;
}

.event-list {
	display: grid;
	gap: var(--space-sm);
}

.event-item {
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(0,0,0,.16);

	transition:
		transform var(--duration) ease,
		box-shadow var(--duration) ease;
}

.event-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(0,0,0,.24);
}

.event-item a {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 18px;
	align-items: center;

	min-height: 86px;
	padding: var(--space-sm) 18px;

	color: var(--color-text);
	text-decoration: none;

	transition: opacity var(--duration) ease;
}

.event-item a:hover {
	opacity: 1;
}

.event-thumb {
	position: relative;
	width: 86px;
	height: 64px;
	overflow: hidden;
	background: #eee;
}

.event-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform .35s ease;
}

.event-item a:hover .event-thumb img {
	transform: scale(1.06);
}


/* event label */

.event-item.free .event-thumb::after,
.event-item.experience .event-thumb::after,
.event-item.paid .event-thumb::after {
	content: "";

	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;

	display: block;

	width: 55px;
	height: 55px;
	padding: 40px 0 0;

	transform: translate(-50%, -50%) rotate(-45deg);

	color: var(--color-white);
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	letter-spacing: 2px;
	box-sizing: border-box;
}

.event-item.free .event-thumb::after {
	content: "無料";
	background: var(--color-blue);
}

.event-item.experience .event-thumb::after {
	content: "体験";
	background: var(--color-key);
	color: var(--color-text);
}

.event-item.paid .event-thumb::after {
	content: "有料";
	background: var(--color-text);
}


/* event text */

.event-category {
	margin: 0 0 2px;

	color: var(--color-gray-700);
	font-size: var(--fs-caption);
	font-weight: 700;
	line-height: 1.4;
}

.event-title {
	margin: 0 0 3px;

	color: var(--color-text);
	font-size: var(--fs-small);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .02em;
}

.event-item a:hover .event-title {
	color: var(--color-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.event-subtitle {
	margin: 0 0 6px;

	color: var(--color-gray-700);
	font-size: var(--fs-caption);
	font-weight: 500;
	line-height: 1.45;
}

.event-subtitle .titleSub {
	display: inline;
}

.event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;

	margin: 0;

	color: var(--color-gray-500);
	font-size: var(--fs-caption);
	font-weight: 500;
	line-height: 1.4;
}

.event-date,
.event-place {
	display: inline-flex;
	align-items: center;
}

.event-date::before,
.event-place::before {
	margin-right: .5em;

	color: #9fa0a0;
	font-family: var(--font-icon);
	font-size: 18px;
	line-height: 1;
	vertical-align: middle;
}

.event-date::before {
	content: "T";
}

.event-place::before {
	content: "M";
}

.event-empty {
	color: var(--color-white);
}

.section-button {
	margin-top: var(--space-lg);
	text-align: right;
}

.event-section .btn-white {
	background: rgba(255,255,255,.08);
	color: var(--color-white);
	border-color: rgba(255,255,255,.9);
}


/* =========================================
	services
========================================= */

.services-section {
	padding: var(--space-section) 0;
	background: var(--color-white);
}

.top-service-box {
	margin-top: var(--space-lg);
	margin-bottom: 60px;
}

.top-service-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-sm);

	margin: 0;
	padding: 0;

	list-style: none;
}

.top-service-item {
	margin: 0;
	padding: 0;
}

.service-card {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	height: 150px;

	border-radius: var(--radius-sm);

	color: var(--color-white);
	font-size: var(--fs-base);
	font-weight: 700;
	text-decoration: none;

	transition: opacity var(--duration) ease;
}

.service-card:hover {
	opacity: .75;
}

.service-card::after {
	content: "";

	position: absolute;
	right: 18px;
	bottom: 14px;

	width: 12px;
	height: 18px;

	background: url("/cms/wp-content/themes/cicom_renewal_theme/data/about/images/common/arrow-oblique_up.svg") center / contain no-repeat;
}

.service-card-external::after {
	content: none;
}

.service-card-pink {
	background: var(--color-pink);
}

.service-card-purple {
	background: var(--color-purple);
}

.service-card-blue {
	background: var(--color-blue-service);
}

.service-card-green {
	background: var(--color-white);
	color: var(--color-green);
	border: 2px solid var(--color-green);
}

.service-card-green::after {
	color: var(--color-green);
}

.service-card-external::after {
	content: none;
}

.service-card-external .nav-external__icon {
	position: absolute;
	right: 18px;
	bottom: 16px;

	width: 22px;
	height: 22px;

	color: var(--color-green);
}

.service-card-text {
	display: block;
}

#home.-since_2023 #contentsWrap .-digital a:after {
	display: none;
}

#home.-since_2023 #contentsWrap .-open_class a:after,
#home.-since_2023 #contentsWrap .-assessment a:after,
#home.-since_2023 #contentsWrap .-program a:after {
	color: var(--color-white);
}

#home.-since_2023 .popupPlate .popupbox:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background: url("/images/images2016/home/popup-bgi-item.png") center top no-repeat;
	background-size: 100% auto;
	mix-blend-mode: multiply;
	content: "";
}

#home.-since_2023 .popupPlate .popupbox.-assessment {
	background: rgba(23,170,223,.8);
}


/* =========================================
	search
========================================= */

.top-search-form {
	width: min(100%, 560px);
	margin: 34px auto 0;
}

.top-search-form form {
	display: flex;
	width: 100%;
	height: 42px;
	margin: 0;

	border: 1px solid #ddd;
	border-radius: 999px;

	overflow: hidden;
	background: var(--color-white);
}

.top-search-form input[type="text"],
.top-search-form input[type="search"] {
	flex: 1;
	width: 100%;
	border: 0;
	padding: 0 22px;
	outline: none;
	background: var(--color-white);
	font-size: var(--fs-small);
}

.top-search-form button,
.top-search-form input[type="submit"] {
	width: 92px;
	border: 0;

	background: var(--color-key);
	color: var(--color-text);

	font-weight: 700;
	cursor: pointer;
}


/* =========================================
	information
========================================= */

.information-section {
	padding: var(--space-section) 0;
	background: var(--color-bg-soft);
}

.information-list {
	margin: var(--space-md) 0 var(--space-lg);
}

.information-item {
	border-bottom: 1px solid var(--color-gray-300);
}

.information-item a,
.information-item-inner {
	display: grid;
	grid-template-columns: 110px 80px 1fr;
	gap: var(--space-sm);

	padding: var(--space-sm) 0;

	color: var(--color-text);
	text-decoration: none;

	transition:
		opacity var(--duration) ease,
		background-color var(--duration) ease;
}

.information-item a:hover {
	opacity: 1;
	background: rgba(0,151,221,.06);
}

.information-item time {
	color: var(--color-blue);
	font-size: var(--fs-small);

	transition: color var(--duration) ease;
}

.information-item a:hover time {
	color: #007fb8;
}

.information-category {
	color: var(--color-gray-400);
	font-size: var(--fs-caption);
}

.information-title {
	margin: 0;

	color: var(--color-text);
	font-size: var(--fs-small);
	font-weight: 500;
	line-height: 1.7;

	transition: color var(--duration) ease;
}

.information-item a:hover .information-title {
	color: var(--color-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.information-empty {
	color: var(--color-text);
}


/* =========================================
	group
========================================= */

.group-section {
	padding: var(--space-section) 0;
	background: var(--color-white);
}

.group-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.group-text p {
	margin: var(--space-md) 0 var(--space-lg);
}
.group-text p:not(.section-label) {
	font-size: var(--fs-base);
}

.group-image {
	text-align: center;
}

.btn img {
	width: 70%;
}


/* =========================================
	bottom link
========================================= */

.bottom-link-section {
	padding: 70px 0 90px;
	background: var(--color-bg-light);
}

.bottom-link-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.bottom-link-card {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: flex-start;

	min-height: 220px;
	padding: 0 36px;

	overflow: hidden;

	color: var(--color-white);
	text-decoration: none;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transition:
		opacity var(--duration) ease,
		transform var(--duration) ease,
		box-shadow var(--duration) ease,
		filter var(--duration) ease;
}

.bottom-link-card-business {
	background-image: url("/cms/wp-content/themes/cicom_renewal_theme/data/about/images/home/our-business.webp?202411");
}

.bottom-link-card-mvv {
	background-image: url("/cms/wp-content/themes/cicom_renewal_theme/data/about/images/home/our-mvv.webp");
}

.bottom-link-card::before {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 0;

	background: rgba(40,80,120,.16);

	transition: background-color var(--duration) ease;
}

.bottom-link-card::after {
	content: "";

	position: absolute;
	right: 26px;
	bottom: 28px;
	z-index: 1;

	width: 12px;
	height: 18px;

	background: url("/cms/wp-content/themes/cicom_renewal_theme/data/about/images/common/arrow-oblique_up.svg") center / contain no-repeat;
}

.bottom-link-text {
	position: relative;
	z-index: 1;

	display: block;
	text-align: left;
}

.bottom-link-title {
	display: block;

	color: var(--color-white);
	font-size: var(--fs-title-lg);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .01em;
}

.bottom-link-sub {
	display: block;

	margin-top: 4px;

	color: var(--color-white);
	font-size: var(--fs-small);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .04em;
}

.bottom-link-card:hover {
	opacity: 1;
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0,0,0,.18);
	filter: brightness(1.05);
}

.bottom-link-card:hover::before {
	background: rgba(20,60,100,.18);
}

.bottom-link-card:hover span {
	text-decoration: underline;
	text-underline-offset: 5px;
}


/* =========================================
	responsive
========================================= */

@media (max-width: 768px) {

	.section-inner {
		width: min(92%, 640px);
	}

	.top-bg-area > .top-bg-gradation {
		top: -120px;
		height: calc(100% + 260px);
		opacity: .65;
	}

	.top-bg-gradation-object-1,
	.top-bg-gradation-object-3 {
		width: 760px;
		height: 760px;
		left: -300px;
	}

	.top-bg-gradation-object-1 {
		top: 100px;
	}

	.top-bg-gradation-object-3 {
		top: 760px;
	}

	.top-bg-gradation-object-2,
	.top-bg-gradation-object-4 {
		display: none;
	}

	.top-kv {
		padding: 86px 0 56px;
	}

	.top-kv-title-area {
		width: 100%;
		margin-bottom: 28px;
	}

	.top-kv-copy {
		margin: -4px 0 -8px;
		font-size: 20px;
		line-height: 1.6;
	}

	.top-kv-en-2 {
		width: 78%;
	}

	.top-kv-text {
		margin: var(--space-md) 0;
		font-size: var(--fs-small);
		line-height: 1.8;
	}

	.top-btn {
		min-width: 280px;
		height: 44px;
		font-size: var(--fs-small);
	}

	.top-kv-photo-list {
		margin-top: 52px;
	}

	.solution-section {
		padding: 56px 0 var(--space-xl);
	}

	.solution-section .section-inner {
		width: min(92%, 640px);
	}

	.solution-visual-bg {
		background-size: 100% auto;
		background-position: center bottom;
		background-repeat: no-repeat;
	}

	.solution-card {
		display: block;
		padding: 36px var(--space-md) 40px;
		box-shadow: 0 8px 24px rgba(0,0,0,.08);
	}

	.solution-text {
		margin-bottom: var(--space-lg);
	}

	.solution-text .section-title {
		font-size: var(--fs-title-md);
		line-height: 1.65;
	}

	.solution-text p:not(.section-label) {
		font-size: var(--fs-small);
		line-height: 1.9;
	}

	.solution-text .btn {
		width: 100%;
		max-width: none;
	}

	.solution-visual {
		min-height: auto;
		padding: 18px 0 var(--space-xs);
	}

	.solution-step-list {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.solution-step {
		width: 100%;
		max-width: 360px;
		min-height: 60px;

		margin: 0 auto var(--space-sm);
		padding: 13px 18px 12px;

		grid-template-columns: 14px 1fr;
		column-gap: 10px;
	}

	.solution-step-1,
	.solution-step-2,
	.solution-step-3,
	.solution-step-4 {
		margin-left: auto;
		margin-right: auto;
	}

	.solution-step-main {
		font-size: 20px;
	}

	.solution-step-sub {
		font-size: var(--fs-caption);
	}

	.case-card,
	.group-layout,
	.bottom-link-list {
		grid-template-columns: 1fr;
	}

	.case-support-grid {
		grid-template-columns: 1fr;
	}

	.top-service-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.information-item a,
	.information-item-inner {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.bottom-link-card {
		min-height: 180px;
	}

	.btn {
		margin: 0 auto;
	}
}


@media (max-width: 480px) {

	.top-kv {
		padding-top: 72px;
	}

	.top-kv-copy {
		font-size: 18px;
	}

	.top-kv-en-2 {
		width: 86%;
	}

	.top-btn {
		width: 100%;
		min-width: 0;
	}

	.solution-section {
		padding: var(--space-xl) 0 40px;
	}

	.solution-card {
		padding: var(--space-lg) 20px 36px;
	}

	.solution-text .section-title {
		font-size: var(--fs-title-sm);
	}

	.solution-text .section-title br {
		display: none;
	}

	.solution-step {
		max-width: 100%;
		padding: 12px var(--space-sm);
	}

	.solution-step-main {
		font-size: 18px;
		letter-spacing: .03em;
	}

	.case-accordion-trigger {
		width: min(90%, 320px);
	}

	.top-service-list {
		grid-template-columns: 1fr;
	}

	.bottom-link-card {
		min-height: 160px;
		padding: 0 var(--space-md);
	}

	.bottom-link-title {
		font-size: var(--fs-title-md);
	}
}
/* =========================================
	smartphone fixes
========================================= */

@media (max-width: 768px) {

	/* KV：日本語キャッチを1行にする */
	.top-kv-copy {
		margin-bottom: var(--space-xs);
		white-space: nowrap;
		font-size: clamp(14px, 4.2vw, 20px);
		line-height: 1.4;
	}

	/* KV：お問い合わせボタンの矢印位置補正 */
	.top-btn {
		position: relative;
		padding: 0 48px 0 24px;
	}

	.top-btn::after {
		position: absolute;
		right: 18px;
		top: 50%;

		margin-left: 0;
		transform: translateY(-50%);
	}

	.top-btn::before {
		right: 25px;
		top: 50%;
		transform: translateY(-54%);
	}

	/* CASE：上のsolution-cardと余白感を合わせる */
	.case-card {
		display: block;
	}

	.case-text {
		padding: 36px 24px 40px;
	}

	.case-text .section-title {
		font-size: var(--fs-title-md);
		line-height: 1.65;
	}

	.case-text p:not(.section-label) {
		font-size: var(--fs-small);
		line-height: 1.9;
	}

	/* CASE：アコーディオン展開時に見切れないようにする */
	.case-accordion-panel-wrap.is-open {
		max-height: 2400px;
	}

	.case-support-grid {
		grid-template-columns: 1fr;
	}

	.case-support-card {
		min-height: auto;
		padding: 28px 24px;
	}

	.case-support-card ul {
		padding: 18px 20px;
	}

	.case-support-card li {
		font-size: var(--fs-caption);
		line-height: 1.8;
	}
}


@media (max-width: 480px) {

	/* KV：さらに狭い端末で1行維持 */
	.top-kv-copy {
		font-size: clamp(13px, 4vw, 18px);
		letter-spacing: 0;
	}

	/* KV：ボタン幅いっぱいでも矢印が消えないように */
	.top-btn {
		width: 100%;
		min-width: 0;
		padding-right: 52px;
	}

	.top-btn::after {
		right: 18px;
	}

	.top-btn::before {
		right: 25px;
	}

	/* CASE：スマホ最小幅の余白 */
	.case-text {
		padding: 32px 20px 40px;
	}

	.case-text .section-title {
		font-size: 20px;
	}

	.case-text .section-title br {
		display: none;
	}

	.case-accordion-panel-wrap.is-open {
		max-height: 2600px;
	}
}
