@charset "UTF-8";
/**!
 * SK200 LP
 * rev. 2026-07-13
 */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;900&family=Barlow+Condensed:wght@600;700&display=swap");

.c-sk200 {
	--color-kobelco-blue: #00a7ac;
	--color-dark-blue: #00767c;
	--color-bg-blue-gray: #eff2f5;
	--color-bg-blue: #e9f4f4;
	--color-gray-01: #e3e3e3;
	--color-gray-02: #959595;
	--color-gray-03: #7d7d7d;
	--color-gray-04: #5c5c5c;
	--color-gray-05: #2e2e2e;
	--color-darkest: #101010;
	--color-btn-catalog-hover: #00f2ff;
	--color-btn-contact-hover: #11dbea;
	--gradient-accent: linear-gradient(90deg, #00aeda, #00bac0);
	--gradient-solution: linear-gradient(to right, #00767c, #00a7ac);
	--gradient-btn-catalog: linear-gradient(to right, #00f2ff, #39caff);
	--gradient-btn-contact: linear-gradient(to right, #00daf5, #fff144);
	--gradient-menu-hover: linear-gradient(to bottom, #ddf2f2, #d5edf6);
	--gradient-video-btn: linear-gradient(to bottom, #007486, #004043);
	--font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--font-heading: "M PLUS 1p", "Noto Sans JP", sans-serif;
	--font-num: "Barlow Condensed", "Noto Sans JP", sans-serif;
	--header-height: 66px;
	--menu-btn-size: 106px;
}

@media only screen and (max-width: 767px) {
	.c-sk200 .pc-only {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.c-sk200 .sp-only {
		display: none !important;
	}
}

/* ---------------------------------------------
 * ヘッダー
 * --------------------------------------------- */
#header {
	position: static !important;
}

body {
	margin-top: 0 !important;
}

#header #head_btncontact,
#header .menuIconWrapper {
	display: none;
}

/* ---------------------------------------------
 * 追従ヘッダーボタン（お問い合わせ・メニュー）
 * --------------------------------------------- */
.c-header-nav__catalog,
.c-header-nav__contact,
.c-header-nav__menu {
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: var(--menu-btn-size);
	padding: 22px 24px 24px;
	border: 0;
	font-family: var(--font-jp);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	color: var(--color-darkest);
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.c-header-nav__catalog {
	right: calc(var(--menu-btn-size) + 224px);
	z-index: 1010;
	width: 224px;
	background: var(--gradient-btn-catalog);
	transition: box-shadow 300ms ease;
}

.c-header-nav__catalog::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	background: url("/pickup/solution/images/icon-catalog.svg") no-repeat center / contain;
}

.c-header-nav__contact {
	right: var(--menu-btn-size);
	z-index: 1010;
	width: 224px;
	background: var(--gradient-btn-contact);
	transition: box-shadow 300ms ease;
}

.c-header-nav__contact::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	background: url("/pickup/solution/images/icon-mail.svg") no-repeat center / contain;
}

.c-header-nav__menu {
	right: 0;
	z-index: 1110;
	width: var(--menu-btn-size);
	background: #fff;
	transition: color 300ms ease;
}

@media screen and (min-width: 768px) {
	.c-header-nav__catalog:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-catalog-hover);
	}

	.c-header-nav__contact:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-contact-hover);
	}

	.c-header-nav__menu:hover {
		color: var(--color-gray-04);
	}
}

.c-header-nav__menu-icon {
	position: relative;
	width: 25px;
	height: 25px;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-size: 25px 2px;
	background-position: 0 11.5px;
}

.c-header-nav__menu-icon::before,
.c-header-nav__menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 25px;
	height: 2px;
	background: currentColor;
	transition: 300ms ease;
}

.c-header-nav__menu-icon::before {
	top: 3.5px;
}

.c-header-nav__menu-icon::after {
	top: 19.5px;
}

.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-icon {
	background: none;
}

.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-icon::before {
	top: 11.5px;
	transform: rotate(135deg);
}

.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-icon::after {
	top: 11.5px;
	transform: rotate(45deg);
}

.c-header-nav__menu-label--close,
.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-label {
	display: none;
}

.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-label--close {
	display: inline;
}

@media only screen and (max-width: 767px) {
	.c-header-nav {
		position: sticky;
		top: 0;
		left: 0;
		z-index: 1110;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.c-sk200 section {
		scroll-margin-top: calc(50 / 375 * 100vw);
	}

	.c-header-nav__catalog,
	.c-header-nav__contact,
	.c-header-nav__menu {
		position: static;
		top: auto;
		right: auto;
		height: calc(50 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
	}

	.c-header-nav__catalog,
	.c-header-nav__contact {
		flex: 1 1 0;
		min-width: 0;
		gap: calc(8 / 375 * 100vw);
		width: auto;
		flex-direction: row;
		justify-content: center;
		padding: 0 calc(8 / 375 * 100vw);
		line-height: 1.4;
		white-space: normal;
		text-align: left;
	}

	.c-header-nav__catalog::before,
	.c-header-nav__contact::before {
		width: calc(18 / 375 * 100vw);
		height: calc(18 / 375 * 100vw);
	}

	.c-header-nav__menu {
		flex: 0 0 auto;
		gap: calc(3 / 375 * 100vw);
		width: calc(60 / 375 * 100vw);
		padding: 0;
		font-size: calc(10 / 375 * 100vw);
	}


	.c-header-nav__menu-icon {
		width: calc(16 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
		background-size: calc(16 / 375 * 100vw) calc(2 / 375 * 100vw);
		background-position: 0 calc(6 / 375 * 100vw);
	}

	.c-header-nav__menu-icon::before,
	.c-header-nav__menu-icon::after {
		width: calc(16 / 375 * 100vw);
	}

	.c-header-nav__menu-icon::before {
		height: calc(2 / 375 * 100vw);
		top: 0;
	}

	.c-header-nav__menu-icon::after {
		height: calc(2 / 375 * 100vw);
		top: calc(12 / 375 * 100vw);
	}

	.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-icon::before {
		top: calc(6 / 375 * 100vw);
	}

	.c-header-nav__menu[aria-expanded='true'] .c-header-nav__menu-icon::after {
		top: calc(6 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * ベース
 * --------------------------------------------- */
.c-sk200 {
	font-family: var(--font-jp);
	color: var(--color-darkest);
	line-height: 1.6;
	font-size: 16px;
	overflow-x: hidden;
	overflow-x: clip;
}

.c-sk200 * {
	box-sizing: border-box;
}

.c-sk200 img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.c-sk200 [hidden] {
	display: none !important;
}

.c-sk200 section {
	scroll-margin-top: var(--header-height);
}

.c-sk200 button {
	font-family: inherit;
}

/* ---------------------------------------------
 * メニュー
 * --------------------------------------------- */
.c-menu {
	position: fixed;
	inset: 0;
	z-index: 1100;
}

.c-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 400ms ease;
}

.c-menu__container {
	position: absolute;
	top: var(--menu-btn-size);
	right: 0;
	max-height: calc(100% - var(--menu-btn-size));
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.c-menu[data-open] .c-menu__overlay {
	opacity: 1;
}

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

	.c-menu__overlay,
	.c-header-nav__menu-icon::before,
	.c-header-nav__menu-icon::after {
		transition-duration: 0ms;
	}
}

.c-menu__panel {
	width: 450px;
	background: #fff;
	border-top-left-radius: 24px;
	overflow: hidden;
	padding-bottom: 24px;
	flex-shrink: 0;
}

.c-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-menu__link,
.c-menu__sub-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--color-gray-05);
}

.c-menu__link::before,
.c-menu__sub-link::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--gradient-menu-hover);
	opacity: 0;
	transition: opacity 300ms ease;
	pointer-events: none;
}

@media screen and (min-width: 768px) {

	.c-menu__link:hover::before,
	.c-menu__sub-link:hover::before {
		opacity: 1;
	}
}

.c-menu__link>*,
.c-menu__sub-link>* {
	position: relative;
	z-index: 1;
}

.c-menu__link {
	padding: 14px 24px 14px 36px;
	font-size: 18px;
	font-weight: 700;
	border-bottom: 1px solid var(--color-kobelco-blue);
}

.c-menu__link--sub-head {
	border-bottom: none;
}

.c-menu__link span {
	flex: 1;
}

.c-menu__sub-link {
	margin-left: 24px;
	padding: 12px 24px 12px 16px;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	background: var(--color-bg-blue-gray);
	border-bottom: 1px solid #fff;
}

.c-menu__sub-link--last {
	padding-bottom: 18px;
	border-bottom: none;
}

.c-menu__item--sub-last {
	border-bottom: 1px solid var(--color-kobelco-blue);
}

.c-menu__link::after,
.c-menu__sub-link::after {
	content: "";
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: url("/pickup/solution/images/icon-chevron-blue.svg") no-repeat center / contain;
	transform: rotate(90deg);
}

.c-menu__sub-link span {
	flex: 1;
}

.c-menu__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--color-kobelco-blue);
	color: #fff;
	font-family: var(--font-num);
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
}

.c-menu__btn-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 16px;
}

.c-menu__btn-row {
	display: flex;
	gap: 12px;
}

.c-menu__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 12px 8px;
	border-radius: 16px;
	text-decoration: none;
	color: var(--color-darkest);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	flex: 1;
	transition: box-shadow 300ms ease;
}

@media screen and (min-width: 768px) {
	.c-menu__btn--product:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-gray-04);
	}
}

.c-menu__btn--catalog {
	background: var(--gradient-btn-catalog);
}

@media screen and (min-width: 768px) {
	.c-menu__btn--catalog:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-catalog-hover);
	}
}

.c-menu__btn--catalog::before {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 25px;
	background: url("/pickup/solution/images/icon-catalog.svg") no-repeat center / contain;
}

.c-menu__btn--contact {
	background: var(--gradient-btn-contact);
}

@media screen and (min-width: 768px) {
	.c-menu__btn--contact:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-contact-hover);
	}
}

.c-menu__btn--contact::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	background: url("/pickup/solution/images/icon-mail.svg") no-repeat center / contain;
}

.c-menu__btn--product {
	flex-direction: row;
	gap: 10px;
	padding: 8px 24px;
	border-radius: 99px;
	background: var(--color-gray-05);
	color: #fff;
}

.c-menu__btn--product::after {
	content: "";
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: url("/pickup/solution/images/icon-external.svg") no-repeat center / contain;
}

.c-menu__btn--product span {
	flex: 1;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.c-menu__container {
		top: calc(50 / 375 * 100vw);
		width: 100%;
		max-height: calc(100% - calc(50 / 375 * 100vw));
	}

	.c-menu__panel {
		padding-bottom: calc(24 / 375 * 100vw);
		width: 100%;
		border-top-left-radius: 0;
	}

	.c-menu__link {
		gap: calc(12 / 375 * 100vw);
		padding: calc(14 / 375 * 100vw) calc(16 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-menu__sub-link {
		gap: calc(8 / 375 * 100vw);
		margin-left: calc(16 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}

	.c-menu__num {
		padding: calc(2 / 375 * 100vw) calc(8 / 375 * 100vw);
		border-radius: calc(4 / 375 * 100vw);
		min-width: calc(22 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}


	.c-menu__sub-link--last {
		padding-bottom: calc(18 / 375 * 100vw);
	}

	.c-menu__link::after,
	.c-menu__sub-link::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}

	.c-menu__btn-group {
		gap: calc(12 / 375 * 100vw);
		padding: calc(15 / 375 * 100vw) calc(13 / 375 * 100vw);
	}

	.c-menu__btn-row {
		gap: calc(10 / 375 * 100vw);
	}

	.c-menu__btn {
		border-radius: calc(16 / 375 * 100vw);
		gap: calc(4 / 375 * 100vw);
		padding: calc(10 / 375 * 100vw) calc(6 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}

	.c-menu__btn--catalog::before {
		width: calc(20 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}

	.c-menu__btn--contact::before {
		width: calc(25 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}

	.c-menu__btn--product {
		border-radius: calc(99 / 375 * 100vw);
		gap: calc(10 / 375 * 100vw);
		padding: calc(8 / 375 * 100vw) calc(24 / 375 * 100vw);
	}

	.c-menu__btn--product::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * FV
 * --------------------------------------------- */
.c-hero {
	position: relative;
}

.c-hero__picture {
	display: block;
}

.c-hero__visual {
	display: block;
	width: 100%;
}

.c-hero__copy {
	position: absolute;
	top: 18.5%;
	left: 48%;
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin: 0;
}

.c-hero__copy-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}

.c-hero__line {
	margin: 0;
	background: #fff;
	display: flex;
	align-items: center;
	clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
}

.c-hero__line--sub {
	--slant: 30px;
	padding: 10px var(--slant) 10px 14px;
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.c-hero__text-lg {
	font-size: 38px;
	color: var(--color-gray-05);
}

.c-hero__text-md {
	font-size: 30px;
	color: var(--color-gray-05);
	margin-left: 4px;
	padding-right: 10px;
}

.c-hero__line--main {
	--slant: 52px;
	padding: 10px var(--slant) 10px 14px;
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1;
	align-items: flex-end;
	gap: 10px;
}

.c-hero__catch {
	font-size: 80px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-hero__catch-sub {
	font-size: 50px;
	color: var(--color-gray-05);
}

.c-hero__line--lead {
	--slant: 16px;
	padding: 5px calc(10px + var(--slant)) 5px 14px;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 22px;
	line-height: 1;
	color: var(--color-gray-05);
}

.c-hero__line--product {
	--slant: 18px;
	background: var(--color-gray-05);
	gap: 10px;
	align-items: center;
	padding-right: var(--slant);
}

.c-hero__badge {
	display: inline-flex;
	align-items: center;
	align-self: stretch;
	padding: 9px 12px;
	background: var(--gradient-accent);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.c-hero__product-type {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding: 9px 12px 11px 0;
}

.c-hero__catalog-btn {
	position: absolute;
	top: 61.3%;
	left: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 20px 20px 20px 32px;
	border-radius: 0 99px 99px 0;
	background: var(--gradient-btn-catalog);
	text-decoration: none;
	color: var(--color-darkest);
	font-size: 18px;
	font-weight: 700;
	transition: box-shadow 300ms ease;
	line-height: 1.4;
}

.c-hero__catalog-btn::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	background: url("/pickup/solution/images/icon-catalog.svg") no-repeat center / contain;
}

.c-hero__catalog-btn::after {
	content: "";
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-left: 12px;
	background: url("/pickup/solution/images/icon-arrow.svg") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
	.c-hero__catalog-btn {
		top: min(61.3%, calc(100vh - var(--header-height) - 90px));
	}

	.c-hero__catalog-btn:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-catalog-hover);
	}
}

@media only screen and (max-width: 767px) {
	.c-hero__visual {
		position: relative;
		z-index: 0;
	}

	.c-hero__copy {
		gap: calc(28 / 375 * 100vw);
		position: absolute;
		inset: 0;
		z-index: 1;
		display: block;
	}

	.c-hero__copy-group {
		gap: calc(6 / 375 * 100vw);
		position: absolute;
		left: calc(10 / 375 * 100vw);
	}

	.c-hero__copy-group:first-child {
		top: 17.6%;
	}

	.c-hero__copy-group:last-child {
		top: 66%;
	}

	.c-hero__line--sub {
		--slant: calc(20 / 375 * 100vw);
		padding: calc(4 / 375 * 100vw) var(--slant) calc(4 / 375 * 100vw) calc(8 / 375 * 100vw);
	}

	.c-hero__text-lg {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-hero__text-md {
		margin-left: calc(4 / 375 * 100vw);
		padding-right: 0;
		font-size: calc(15 / 375 * 100vw);
	}

	.c-hero__line--main {
		--slant: calc(30 / 375 * 100vw);
		padding: calc(4 / 375 * 100vw) var(--slant) calc(4 / 375 * 100vw) calc(8 / 375 * 100vw);
		gap: calc(8 / 375 * 100vw);
	}

	.c-hero__catch {
		font-size: calc(48 / 375 * 100vw);
	}

	.c-hero__catch-sub {
		font-size: calc(28 / 375 * 100vw);
	}

	.c-hero__line--lead {
		--slant: calc(14 / 375 * 100vw);
		padding: calc(2 / 375 * 100vw) calc(calc(1 / 375 * 100vw) + var(--slant)) calc(2 / 375 * 100vw) calc(8 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-hero__line--product {
		gap: calc(10 / 375 * 100vw);
		--slant: calc(16 / 375 * 100vw);
	}

	.c-hero__badge {
		padding: calc(4 / 375 * 100vw) calc(8 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}

	.c-hero__product-type {
		padding: calc(4 / 375 * 100vw) calc(12 / 375 * 100vw) calc(6 / 375 * 100vw) 0;
		font-size: calc(14 / 375 * 100vw);
	}

	.c-hero__catalog-btn {
		border-radius: 0 calc(99 / 375 * 100vw) calc(99 / 375 * 100vw) 0;
		position: absolute;
		top: 78%;
		left: 0;
		z-index: 1;
		margin-top: 0;
		padding: calc(10 / 375 * 100vw) calc(16 / 375 * 100vw) calc(10 / 375 * 100vw) calc(18 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		gap: calc(8 / 375 * 100vw);
	}

	.c-hero__catalog-btn::before {
		width: calc(20 / 375 * 100vw);
		height: calc(20 / 375 * 100vw);
	}

	.c-hero__catalog-btn::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
		margin-left: 0;
	}
}

/* ---------------------------------------------
 * 課題と解決策
 * --------------------------------------------- */
.c-issues {
	position: relative;
	margin: -300px auto 0;
	background:
		linear-gradient(var(--color-bg-blue-gray), var(--color-bg-blue-gray)) top center / 1110px 300px no-repeat,
		linear-gradient(var(--color-bg-blue-gray), var(--color-bg-blue-gray)) 0 300px / 100% calc(100% - 300px) no-repeat;
}

.c-issues__inner {
	max-width: 1110px;
	margin: 0 auto;
	padding: 80px 80px 0;
}

.c-issues__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-bottom: 46px;
}

.c-issues__label {
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
}

.c-issues__label-inner {
	padding: 0 10px;
	background: var(--color-gray-05);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.c-issues__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 1.75px;
	text-align: center;
}

.c-issues__title-sm {
	font-size: 35px;
	color: var(--color-gray-05);
}

.c-issues__title-em {
	position: relative;
	display: inline-block;
	font-size: 40px;
	color: var(--color-kobelco-blue);
}

.c-issues__title-em::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 180px;
	height: 8px;
	background: radial-gradient(circle 4px at 4px 50%, var(--color-kobelco-blue) 98%, transparent) repeat-x 0 0 / 43px 8px;
}

.c-issues__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 950px;
	margin: 0 auto;
}

.c-issue-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--color-darkest);
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	.c-issue-card:hover .c-issue-card__header {
		box-shadow: inset 0 0 0 100vmax var(--color-kobelco-blue);
	}

	.c-issue-card:hover .c-issue-card__body {
		border: 2px solid var(--color-kobelco-blue);
		border-top: none;
	}
}

.c-issue-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px 12px 16px;
	border-radius: 8px 8px 0 0;
	background: var(--gradient-solution);
	transition: box-shadow 300ms ease;
}

.c-issue-card__header::after {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: url("/pickup/solution/images/icon-chevron-white.svg") no-repeat center / contain;
}

.c-issue-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fff;
	color: var(--color-dark-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.c-issue-card__badge b {
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 600;
	line-height: 0.9;
}

.c-issue-card__title {
	flex: 1;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

.c-issue-card__body {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 15px;
	background: #fff;
	border: 2px solid var(--color-gray-01);
	border-top: 0;
	flex: 1;
	transition: 300ms ease;
}

.c-issue-card__icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.c-issue-card__list {
	flex: 1;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.c-issue-card__list li {
	position: relative;
	padding-left: 12px;
	font-size: 15px;
	line-height: 1.4;
}

.c-issue-card__list li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 21px;
	background: url("/pickup/solution/images/icon-list-marker.svg") no-repeat center / contain;
}

.c-issues__inner::after {
	content: "";
	display: block;
	width: 380px;
	height: 40px;
	margin: 36px auto 32px;
	background: linear-gradient(rgba(0, 167, 172, 0), var(--color-kobelco-blue));
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-solve {
	position: relative;
	z-index: 1;
}

.c-solve::before {
	content: "";
	position: absolute;
	top: 113px;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--gradient-accent);
	z-index: -1;
}

.c-solve__banner {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.c-solve__bg {
	display: block;
	width: 100%;
}

.c-solve__bg img {
	display: block;
	width: 100%;
	vertical-align: top;
}

.c-solve__body {
	position: absolute;
	top: 0;
	left: 43.9%;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	padding: 26px 40px;
}

.c-solve__headline-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-solve__lead {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}

.c-solve__headline {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.c-solve__headline-row {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.c-solve__headline-lg {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 36px;
	line-height: 1;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-solve__headline-sm {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.c-solve__headline-md {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
}

.c-solve__bar {
	margin: 0;
	align-self: flex-start;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px 6px;
	background: var(--color-gray-05);
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

.c-solve__bar-line {
	display: contents;
}

.c-solve__bar-sm {
	font-size: 18px;
}

.c-solve__bar-md {
	font-size: 22px;
}

.c-solve__accent {
	margin-left: -0.5em;
	color: #13dce2;
	font-size: 24px;
}

.c-solve__text {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
	text-align: left;
}

.c-solve__note-group {
	max-width: 1000px;
	margin: 0 auto;
}

.c-solve__note {
	display: flex;
	justify-content: flex-end;
	gap: 2px;
	font-size: 13px;
	text-align: right;
}

.c-solve__note span {
	flex-shrink: 0;
}

.c-solutions {
	margin-top: -200px;
	padding: 200px 0 130px;
	background: linear-gradient(to bottom, #ddf2f2, #d5edf6);
}

.c-solutions__inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-top: 50px;
}

.c-solution {
	background: #fff;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
}

.c-solution__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: var(--gradient-solution);
}

.c-solution__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 9px;
	border-radius: 4px;
	background: #fff;
	color: var(--color-dark-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.c-solution__badge b {
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 600;
	line-height: 0.9;
}

.c-solution__title {
	margin: 0;
	flex: 1;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.4;
}

.c-solution__lead {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 36px;
	padding: 0 24px;
	border-bottom: 1px solid #00aeda;
}

.c-solution__pill {
	flex-shrink: 0;
	margin: 18px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--gradient-accent);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
}

.c-solution__points {
	flex: 1;
	margin: 0;
	padding: 24px 0 34px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-solution__points li {
	position: relative;
	padding-left: 14px;
	font-size: 20px;
	line-height: 1.6;
}

.c-solution__points li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 32px;
	background: url("/pickup/solution/images/icon-list-marker-lg.svg") no-repeat center / contain;
}

.c-solution__points strong {
	color: var(--color-kobelco-blue);
	font-weight: 700;
}

.c-solution__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 0 36px 36px;
}

.c-solutions__footer-btn {
	display: flex;
	justify-content: center;
}

.c-feature {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	background: var(--color-bg-blue-gray);
	padding-bottom: 36px;
}

.c-feature--full {
	flex-direction: column;
	gap: 0;
	padding: 24px 0 24px;
}

.c-feature--flush {
	padding-bottom: 0;
}

.c-feature__main {
	flex: 1;
	min-width: 0;
	padding-top: 24px;
}

.c-feature__title {
	margin: 0 0 18px;
	padding: 2px 20px;
	border-left: 6px solid var(--color-kobelco-blue);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-darkest);
}

.c-feature__subtitle {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-gray-03);
}

.c-feature__content {
	padding-left: 36px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.c-feature__content--full {
	padding: 0 36px;
}

.c-feature__lead {
	margin: 0;
	color: var(--color-kobelco-blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.c-feature__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

.c-feature__result {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

.c-feature__result strong {
	color: var(--color-kobelco-blue);
	font-weight: 700;
}

.c-feature__note {
	margin: 0;
	display: flex;
	gap: 2px;
	font-size: 13px;
	line-height: 1.4;
}

.c-feature__content>.c-feature__note {
	margin-top: -6px;
}

.c-feature__content>.c-feature__note--offset-none {
	margin-top: 0;
}

.c-feature__content>.c-feature__note--offset-sm {
	margin-top: 2px;
}

.c-feature__note--center {
	justify-content: center;
}

.c-feature__note span {
	flex-shrink: 0;
}

.c-feature__box {
	background: #fff;
	padding: 12px 24px;
}

.c-feature__box-title {
	margin: 0;
	position: relative;
	padding-left: 15px;
	color: var(--color-kobelco-blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.c-feature__box-title::before {
	content: "";
	position: absolute;
	top: 6.5px;
	left: 0;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 9px solid var(--color-gray-02);
}

.c-feature__box-note {
	margin: 0 0 8px;
	display: flex;
	gap: 2px;
	font-size: 12px;
	line-height: 1.4;
}

.c-feature__box-text {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.6;
}

.c-feature__box-title+.c-feature__box-text {
	margin-top: 8px;
}

.c-feature__box-text:last-child {
	margin-bottom: 0;
}

.c-feature__stat-line {
	margin: 4px 0 0;
	display: flex;
	align-items: baseline;
	gap: 2px;
	white-space: nowrap;
	font-size: 16px;
}

.c-feature__inline {
	display: flex;
	gap: 12px;
	align-items: flex-end;
}

.c-feature__inline>p {
	flex: 1;
}

.c-feature__inline>.c-feature__text {
	align-self: flex-start;
}

.c-feature__inline img {
	flex-shrink: 0;
	width: 180px;
	object-fit: cover;
}

.c-feature__pointer {
	margin: 0;
	flex: 1;
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.4;
}

.c-feature__pointer::before {
	content: "";
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-top: 3px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 9px solid #00a7ac;
}

.c-feature__img {
	position: relative;
	flex-shrink: 0;
	width: 425px;
}

.c-feature__img img {
	display: block;
	width: 100%;
}

.c-feature__img--crop img {
	height: 100%;
	object-fit: cover;
}

.c-video-btn {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px 8px 43px;
	border: 0;
	background: var(--gradient-video-btn);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	clip-path: polygon(21px 0, 100% 0, 100% 100%, 0 100%);
	transition: box-shadow 300ms ease;
}

@media screen and (min-width: 768px) {
	.c-video-btn:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-dark-blue);
	}
}

.c-video-btn::after {
	content: "";
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: url("/pickup/solution/images/icon-external.svg") no-repeat center / contain;
}

.c-video-btn--inline {
	position: static;
	clip-path: none;
	padding: 6px 14px 6px 22px;
	align-self: flex-start;
}

.c-feature__box .c-video-btn--inline {
	display: flex;
	margin: 0 auto;
	padding: 15px 34px 15px 42px;
}

.c-solutions__footer-btn .c-video-btn--inline {
	padding: 15px 34px 15px 42px;
}

.c-feature-columns {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

.c-feature-column {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: var(--color-bg-blue-gray);
	padding-top: 24px;
}

.c-feature-column .c-feature__title {
	margin-bottom: 18px;
}

.c-feature-column__text {
	margin: 0 14px 14px 24px;
	font-size: 16px;
	flex: 1;
}

.c-feature-column__text>p:not(:last-child) {
	margin: 0 0 14px;
}

.c-feature-columns--loose .c-feature-column__text {
	margin: 0 36px 14px;
	line-height: 1.6;
}

.c-feature-column__img {
	display: block;
	width: calc(100% - 24px);
	margin-left: 24px;
	aspect-ratio: 558 / 352;
	object-fit: cover;
}

.c-feature-column__media {
	position: relative;
	width: calc(100% - 24px);
	margin-left: 24px;
}

.c-feature-column__media .c-feature-column__img {
	width: 100%;
	margin-left: 0;
}

.c-interval-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: auto auto;
	gap: 0 10px;
}

.c-interval-card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	background: #fff;
	padding: 12px 12px 24px;
}

.c-interval-card__title {
	margin: 0;
	position: relative;
	padding-left: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-gray-02);
	color: var(--color-kobelco-blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.c-interval-card__title::before {
	content: "";
	position: absolute;
	top: 6.5px;
	left: 0;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 9px solid var(--color-gray-02);
}

.c-interval-card__numbers {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	padding: 18px 0 8px;
}

.c-interval-card__before {
	display: inline-flex;
	align-items: flex-end;
	white-space: nowrap;
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 30px;
	line-height: 0.7;
	color: var(--color-gray-03);
}

.c-interval-card__before small,
.c-interval-card__after small {
	font-family: var(--font-jp);
	font-weight: 900;
	font-size: 14px;
	line-height: 1;
	margin-left: 2px;
}

.c-interval-card__arrow {
	display: flex;
	align-items: center;
	padding: 3px 0 5px;
}

.c-interval-card__arrow::before {
	content: "";
	width: 10px;
	height: 11px;
	background: url("/pickup/solution/images/icon-arrow-double-01.svg") no-repeat center / contain;
}

.c-interval-card__after {
	display: inline-flex;
	align-items: flex-end;
	white-space: nowrap;
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 45px;
	line-height: 0.7;
	padding: 10px 4px;
	margin: -10px -4px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-interval-card__after small {
	font-size: 16px;
}

.c-interval-card__after sup {
	font-size: 12px;
	line-height: 1;
	align-self: flex-end;
	padding-bottom: 14px;
}

.c-stat-box {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	background: #fff;
	padding: 10px 16px 16px;
}

.c-stat__label {
	margin: 0 0 6px;
	color: var(--color-gray-04);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.c-stat__value {
	margin: 0;
	display: flex;
	align-items: flex-end;
	gap: 2px;
	color: var(--color-kobelco-blue);
	white-space: nowrap;
}

.c-stat__value small {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 2px;
}

.c-stat__value b {
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 60px;
	line-height: 0.6;
	padding-bottom: 6px;
}

.c-stat__value b i {
	font-style: normal;
	font-size: 30px;
}

.c-stat__value em {
	font-style: normal;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 6px;
}

.c-stat__value sup {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 8px;
}

.c-stat-num {
	display: inline-flex;
	align-items: flex-end;
	gap: 2px;
	padding: 14px 5px;
	margin: -14px -5px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-weight: 900;
}

.c-stat-num small {
	font-size: 16px;
	line-height: 1;
	padding-bottom: 2px;
}

.c-stat-num b {
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 60px;
	line-height: 0.6;
}

.c-stat-num b i {
	font-style: normal;
	font-size: 40px;
}

.c-stat-num sup {
	font-size: 12px;
	line-height: 1;
	align-self: flex-end;
	padding-bottom: 8px;
}

.c-stat-num--lg b {
	font-size: 80px;
	line-height: 0.6;
	padding-bottom: 8px;
}

.c-stat-num--lg sup {
	padding-bottom: 20px;
}

.c-stat-num--lg small {
	font-size: 30px;
	font-weight: 900;
}

.c-stat-num--lg em {
	font-style: normal;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	padding-bottom: 18px;
}

.c-feature__stat-line .c-stat-num {
	align-items: baseline;
}

.c-feature__stat-line .c-stat-num b {
	align-items: flex-end;
	display: inline-flex;
	position: relative;
	top: 2px;
	padding-block: 0.3em;
	margin-block: -0.3em;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) {
	.c-issues {
		margin: calc(-300 / 375 * 100vw) auto 0;
		margin-top: 0;
		background: var(--color-bg-blue-gray);
	}

	.c-issues__inner {
		max-width: none;
		padding: calc(28 / 375 * 100vw) calc(25 / 375 * 100vw) 0;
	}

	.c-issues__header {
		gap: calc(18 / 375 * 100vw);
		padding-bottom: calc(28 / 375 * 100vw);
	}

	.c-issues__label {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-issues__labels {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: calc(6 / 375 * 100vw);
	}

	.c-issues__title-sm {
		font-size: calc(26 / 375 * 100vw);
	}

	.c-issues__title-em {
		font-size: calc(32 / 375 * 100vw);
	}

	.c-issues__title-em::before {
		top: calc(-5 / 375 * 100vw);
		width: calc(142 / 375 * 100vw);
		height: calc(6 / 375 * 100vw);
		background: radial-gradient(circle calc(3 / 375 * 100vw) at calc(3 / 375 * 100vw) 50%, var(--color-kobelco-blue) 98%, transparent) repeat-x 0 0 / calc(34 / 375 * 100vw) calc(6 / 375 * 100vw);
	}

	.c-issues__grid {
		grid-template-columns: 1fr;
		gap: calc(18 / 375 * 100vw);
		max-width: none;
	}

	.c-issue-card__header {
		border-radius: calc(8 / 375 * 100vw) calc(8 / 375 * 100vw) 0 0;
		gap: calc(12 / 375 * 100vw);
		padding: calc(10 / 375 * 100vw) calc(24 / 375 * 100vw) calc(8 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-issue-card__header::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}

	.c-issue-card__title {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-issue-card__badge {
		gap: calc(4 / 375 * 100vw);
		border-radius: calc(4 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		padding: calc(2 / 375 * 100vw) calc(4 / 375 * 100vw);
	}

	.c-issue-card__badge b {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-issue-card__body {
		gap: calc(16 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(14 / 375 * 100vw);
	}

	.c-issue-card__icon {
		width: calc(60 / 375 * 100vw);
		height: calc(60 / 375 * 100vw);
	}

	.c-issue-card__list {
		gap: calc(6 / 375 * 100vw);
	}

	.c-issue-card__list li {
		padding-left: calc(12 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}

	.c-issues__inner::after {
		width: calc(295 / 375 * 100vw);
		height: calc(35 / 375 * 100vw);
		margin: calc(28 / 375 * 100vw) auto;
	}

	.c-solve::before {
		top: 52%;
		left: calc(-16 / 375 * 100vw);
		right: calc(-16 / 375 * 100vw);
		height: calc(6 / 375 * 100vw);
		margin-top: calc(-3 / 375 * 100vw);
	}

	.c-solve__banner {
		max-width: none;
		margin: 0 calc(16 / 375 * 100vw);
	}

	.c-solve__body {
		gap: calc(20 / 375 * 100vw);
		position: absolute;
		inset: 0;
		display: block;
		padding: 0;
		text-align: center;
	}

	.c-solve__headline-group {
		position: absolute;
		top: 4.6%;
		left: 0;
		right: 0;
		gap: calc(6 / 375 * 100vw);
	}

	.c-solve__headline {
		align-items: center;
	}

	.c-solve__headline-row {
		gap: calc(4 / 375 * 100vw);
		justify-content: center;
		white-space: nowrap;
	}

	.c-solve__lead {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-solve__headline-lg {
		font-size: calc(30 / 375 * 100vw);
	}

	.c-solve__headline-sm {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-solve__headline-md {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-solve__bar {
		position: absolute;
		top: 49%;
		left: 1.7%;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: calc(3 / 375 * 100vw);
		padding: 0;
		background: none;
	}

	.c-solve__bar-line {
		display: inline-flex;
		align-items: center;
		gap: calc(4 / 375 * 100vw);
		width: max-content;
		max-width: 100%;
		padding: calc(3 / 375 * 100vw) calc(28 / 375 * 100vw) calc(3 / 375 * 100vw) calc(16 / 375 * 100vw);
		background: var(--color-gray-05);
		color: #fff;
		clip-path: polygon(0 0, 100% 0, calc(100% - calc(14 / 375 * 100vw)) 100%, 0 100%);
	}

	.c-solve__bar-sm {
		font-size: calc(15 / 375 * 100vw);
	}

	.c-solve__bar-md {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-solve__accent {
		display: inline-flex;
		align-items: flex-end;
		margin-left: 0;
		padding: calc(5 / 375 * 100vw) calc(24 / 375 * 100vw) calc(6 / 375 * 100vw) calc(2 / 375 * 100vw);
		font-family: var(--font-heading);
		font-weight: 800;
		font-size: calc(30 / 375 * 100vw);
		letter-spacing: 2.4px;
		line-height: 1;
		background: var(--gradient-accent), var(--color-gray-05);
		-webkit-background-clip: text, padding-box;
		background-clip: text, padding-box;
		-webkit-text-fill-color: transparent;
		color: transparent;
		clip-path: polygon(0 0, 100% 0, calc(100% - calc(16 / 375 * 100vw)) 100%, 0 100%);
	}

	.c-solve__text {
		position: absolute;
		top: 70%;
		left: 0;
		right: 0;
		margin: 0;
		padding: 0 calc(24 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
		font-weight: 600;
		line-height: 1.4;
		text-align: left;
	}

	.c-solve__note-group {
		max-width: none;
        margin: 0 calc(16 / 375 * 100vw);
	}

	.c-solve__note {
		justify-content: flex-start;
		font-size: calc(13 / 375 * 100vw);
		text-align: left;
	}

	.c-solutions {
		margin-top: calc(-225 / 375 * 100vw);
		padding: calc(250 / 375 * 100vw) 0 calc(56 / 375 * 100vw);
	}

	.c-solutions__inner {
		padding-top: calc(50 / 375 * 100vw);
		max-width: none;
		gap: calc(30 / 375 * 100vw);
		padding: 0 calc(5 / 375 * 100vw);
	}

	.c-solution__header {
		gap: calc(10 / 375 * 100vw);
		padding: calc(8 / 375 * 100vw) calc(10 / 375 * 100vw);
	}

	.c-solution__badge {
		gap: calc(4 / 375 * 100vw);
		border-radius: calc(4 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		padding: calc(2 / 375 * 100vw) calc(4 / 375 * 100vw);
	}

	.c-solution__badge b {
		font-size: calc(20 / 375 * 100vw);
	}

	.c-solution__title {
		font-size: calc(22 / 375 * 100vw);
	}

	.c-solution__lead {
		gap: calc(12 / 375 * 100vw);
		align-items: flex-start;
		margin: 0 0 calc(16 / 375 * 100vw);
		padding: calc(8 / 375 * 100vw) calc(10 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-solution__pill {
		flex-shrink: 0;
		width: calc(60 / 375 * 100vw);
		height: calc(60 / 375 * 100vw);
		margin: calc(4 / 375 * 100vw) 0 0;
		font-size: calc(14 / 375 * 100vw);
	}

	.c-solution__points {
		gap: calc(4 / 375 * 100vw);
		padding: 0;
	}

	.c-solution__points li {
		padding-left: calc(10 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-solution__points li::before {
		width: calc(6 / 375 * 100vw);
		height: calc(26 / 375 * 100vw);
	}

	.c-solution__body {
		gap: calc(16 / 375 * 100vw);
		padding: 0 calc(10 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-feature {
		flex-direction: column;
		gap: calc(14 / 375 * 100vw);
		padding-bottom: 0;
	}

	.c-feature__main {
		padding-top: calc(24 / 375 * 100vw);
	}

	.c-feature__title {
		margin: 0 0 calc(16 / 375 * 100vw);
		padding: calc(2 / 375 * 100vw) calc(18 / 375 * 100vw);
		font-size: calc(22 / 375 * 100vw);
	}

	.c-feature__subtitle {
		font-size: calc(14 / 375 * 100vw);
	}

	.c-feature__content {
		padding-left: calc(36 / 375 * 100vw);
		padding: 0 calc(14 / 375 * 100vw) 0 calc(24 / 375 * 100vw);
		gap: calc(14 / 375 * 100vw);
	}

	.c-feature--full {
		padding: calc(24 / 375 * 100vw) 0 calc(24 / 375 * 100vw);
		gap: 0;
	}

	.c-feature__content--full {
		padding: 0 calc(14 / 375 * 100vw) calc(14 / 375 * 100vw) calc(24 / 375 * 100vw);
	}

	.c-feature__lead {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-feature__text,
	.c-feature__result {
		font-size: calc(15 / 375 * 100vw);
	}

	.c-feature__img {
		padding-left: calc(25 / 375 * 100vw);
		width: 100%;
	}

	.c-feature__inline {
		flex-direction: column;
		align-items: flex-start;
		gap: calc(12 / 375 * 100vw);
	}

	.c-feature__inline>img {
		width: calc(180 / 375 * 100vw);
	}

	.c-feature__pointer {
		gap: calc(8 / 375 * 100vw);
		width: 100%;
		font-size: calc(14 / 375 * 100vw);
	}

	.c-feature__pointer::before {
		margin-top: calc(6 / 375 * 100vw);
		border: 0;
		border-right: calc(6 / 375 * 100vw) solid transparent;
		border-bottom: calc(10 / 375 * 100vw) solid #00a7ac;
		border-left: calc(6 / 375 * 100vw) solid transparent;
	}

	.c-feature__inline--media-center {
		flex-direction: column-reverse;
		align-items: center;
	}

	.c-feature__inline--media-center .c-feature__text {
		width: 100%;
	}

	.c-feature__box {
		padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-feature__box-title {
		padding-left: calc(15 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-feature__box-text {
		margin: 0 0 calc(14 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
	}

	.c-video-btn {
		gap: calc(8 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
		padding: calc(4 / 375 * 100vw) calc(12 / 375 * 100vw) calc(8 / 375 * 100vw) calc(38 / 375 * 100vw);
	}

	.c-feature__box .c-video-btn--inline {
		padding: calc(11 / 375 * 100vw) calc(34 / 375 * 100vw) calc(11 / 375 * 100vw) calc(42 / 375 * 100vw);
	}

	.c-solutions__footer-btn .c-video-btn--inline {
		padding: calc(11 / 375 * 100vw) calc(34 / 375 * 100vw) calc(11 / 375 * 100vw) calc(42 / 375 * 100vw);
	}

	.c-feature__stat-line {
		margin: calc(4 / 375 * 100vw) 0 0;
		gap: calc(2 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		flex-wrap: wrap;
		white-space: normal;
	}

	.c-feature-columns {
		flex-direction: column;
		gap: calc(16 / 375 * 100vw);
	}

	.c-feature-column__text,
	.c-feature-columns--loose .c-feature-column__text {
		margin: 0 calc(14 / 375 * 100vw) calc(12 / 375 * 100vw) calc(24 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
	}

	.c-feature-column__img,
	.c-feature-column__media {
		width: calc(100% - calc(25 / 375 * 100vw));
		margin-left: calc(25 / 375 * 100vw);
	}

	.c-interval-list {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: calc(12 / 375 * 100vw);
	}

	.c-interval-card {
		display: block;
		grid-template-rows: none;
		grid-row: auto;
		padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw) calc(12 / 375 * 100vw);
	}

	.c-interval-card__title {
		padding-left: calc(15 / 375 * 100vw);
		padding-bottom: calc(12 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-interval-card__numbers {
		padding: calc(18 / 375 * 100vw) 0 calc(8 / 375 * 100vw);
		gap: calc(8 / 375 * 100vw);
		padding-top: calc(19 / 375 * 100vw);
	}

	.c-interval-card__before {
		font-size: calc(30 / 375 * 100vw);
	}

	.c-interval-card__after {
		padding: calc(10 / 375 * 100vw) calc(4 / 375 * 100vw);
		margin: calc(-10 / 375 * 100vw) calc(-4 / 375 * 100vw);
		font-size: calc(45 / 375 * 100vw);
	}

	.c-stat-box {
		flex-direction: column;
		gap: calc(16 / 375 * 100vw);
		padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw) calc(12 / 375 * 100vw);
	}

	.c-stat {
		display: flex;
		align-items: center;
		gap: calc(16 / 375 * 100vw);
	}

	.c-stat__label {
		margin: 0;
		font-size: calc(14 / 375 * 100vw);
		white-space: nowrap;
	}

	.c-stat__value small {
		padding-bottom: calc(2 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
	}

	.c-stat__value b {
		padding-bottom: calc(6 / 375 * 100vw);
		font-size: calc(54 / 375 * 100vw);
	}

	.c-stat__value b i {
		font-size: calc(26 / 375 * 100vw);
	}

	.c-stat__value em {
		padding-bottom: calc(6 / 375 * 100vw);
		font-size: calc(32 / 375 * 100vw);
	}

	.c-stat__value sup {
		padding-bottom: calc(8 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
	}

	.c-stat-num b {
		font-size: calc(54 / 375 * 100vw);
	}

	.c-stat-num b i {
		font-size: calc(32 / 375 * 100vw);
	}

	.c-stat-num--lg b {
		padding-bottom: calc(8 / 375 * 100vw);
		font-size: calc(70 / 375 * 100vw);
	}

	.c-stat-num--lg small,
	.c-stat-num--lg em {
		font-size: calc(24 / 375 * 100vw);
	}


	.c-issues__label-inner {
		padding: 0 calc(10 / 375 * 100vw);
	}

	.c-issue-card__list li::before {
		width: calc(6 / 375 * 100vw);
		height: calc(21 / 375 * 100vw);
	}

	.c-feature__note {
		gap: calc(2 / 375 * 100vw);
		font-size: calc(13 / 375 * 100vw);
	}

	.c-feature__content>.c-feature__note {
		margin-top: calc(-6 / 375 * 100vw);
	}

	.c-feature__box-title::before {
		border-top: calc(8 / 375 * 100vw) solid transparent;
		border-bottom: calc(8 / 375 * 100vw) solid transparent;
		border-left: calc(9 / 375 * 100vw) solid var(--color-gray-02);
		top: calc(6.5 / 375 * 100vw);
	}

	.c-feature__box-note {
		gap: calc(2 / 375 * 100vw);
		margin: 0 0 calc(8 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
	}

	.c-feature__box-title+.c-feature__box-text {
		margin-top: calc(8 / 375 * 100vw);
	}

	.c-feature__inline img {
		width: calc(180 / 375 * 100vw);
	}

	.c-video-btn::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}

	.c-video-btn--inline {
		padding: calc(6 / 375 * 100vw) calc(14 / 375 * 100vw) calc(6 / 375 * 100vw) calc(22 / 375 * 100vw);
	}

	.c-feature-column {
		padding-top: calc(24 / 375 * 100vw);
	}

	.c-feature-column .c-feature__title {
		margin-bottom: calc(18 / 375 * 100vw);
	}

	.c-interval-card__title::before {
		border-top: calc(8 / 375 * 100vw) solid transparent;
		border-bottom: calc(8 / 375 * 100vw) solid transparent;
		border-left: calc(9 / 375 * 100vw) solid var(--color-gray-02);
		top: calc(6.5 / 375 * 100vw);
	}

	.c-interval-card__before small,
	.c-interval-card__after small {
		font-size: calc(14 / 375 * 100vw);
	}

	.c-interval-card__arrow {
		padding: calc(3 / 375 * 100vw) 0 calc(5 / 375 * 100vw);
	}

	.c-interval-card__arrow::before {
		width: calc(10 / 375 * 100vw);
		height: calc(11 / 375 * 100vw);
	}

	.c-interval-card__after small {
		margin-left: calc(2 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-interval-card__after sup {
		font-size: calc(12 / 375 * 100vw);
		padding-bottom: calc(14 / 375 * 100vw);
	}

	.c-stat-num {
		gap: calc(2 / 375 * 100vw);
		padding: calc(14 / 375 * 100vw) calc(5 / 375 * 100vw);
		margin: calc(-14 / 375 * 100vw) calc(-5 / 375 * 100vw);
	}

	.c-stat-num small {
		padding-bottom: calc(2 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}

	.c-stat-num sup {
		font-size: calc(12 / 375 * 100vw);
		padding-bottom: calc(8 / 375 * 100vw);
	}

	.c-stat-num--lg sup {
		padding-bottom: calc(20 / 375 * 100vw);
	}

	.c-solution {
		border-radius: calc(8 / 375 * 100vw) calc(8 / 375 * 100vw) 0 0;
	}

	.c-feature__content>.c-feature__note--offset-sm {
		margin-top: calc(2 / 375 * 100vw);
	}

	.c-feature-column__text>p:not(:last-child) {
		margin: 0 0 calc(14 / 375 * 100vw);
	}

	.c-interval-card__before small {
		margin-left: calc(2 / 375 * 100vw);
	}

	.c-stat__value {
		gap: calc(2 / 375 * 100vw);
	}

	.c-stat-num--lg em {
		padding-bottom: calc(18 / 375 * 100vw);
	}

	.c-feature__stat-line .c-stat-num b {
		top: calc(2 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * 機能拡張できるプラットフォーム
 * --------------------------------------------- */
.c-platform {
	position: relative;
	padding: 100px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 37px;
	background: url("/pickup/solution/images/bg-platform-pc.avif") no-repeat calc(50% + 225px) bottom / 4096px auto;
	overflow: hidden;
}

.c-platform::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 234, 255, 0.3);
	mix-blend-mode: overlay;
	pointer-events: none;
}

.c-platform::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		url("/pickup/solution/images/obj-corner-tl-pc.avif") no-repeat top left / 167px 325px,
		linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	pointer-events: none;
}

.c-platform__inner {
	max-width: 1100px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c-platform__title {
	margin: 0 0 16px;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 50px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}

.c-platform__label {
	--slant: 19px;
	margin: 0 0 37px;
	background: var(--color-gray-05);
	padding: 0 calc(10px + var(--slant));
	clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% 100%, var(--slant) 100%);
}

.c-platform__label span {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 26px;
	line-height: 1.4;
	background: linear-gradient(90deg, #00daf5, #fff144);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-platform__card {
	background: #fff;
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.c-platform__intro {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}

.c-platform__diagram {
	display: block;
	max-width: 1000px;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.c-platform {
		gap: calc(24 / 375 * 100vw);
		padding: calc(60 / 375 * 100vw) calc(16 / 375 * 100vw);
		background: url("/pickup/solution/images/bg-platform-sp.avif") no-repeat center / auto;
		background-position: center bottom;
		background-size: cover;
	}

	.c-platform::after {
		background: url("/pickup/solution/images/obj-corner-tl-sp.avif") no-repeat top left / calc(70 / 375 * 100vw) calc(136 / 375 * 100vw),
			linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))
	}

	.c-platform__title {
		margin: 0 0 calc(16 / 375 * 100vw);
		font-size: calc(38 / 375 * 100vw);
	}

	.c-platform__label {
		--slant: calc(19 / 375 * 100vw);
		padding: 0 calc(calc(10 / 375 * 100vw) + var(--slant));
		margin: 0 0 calc(24 / 375 * 100vw);
	}

	.c-platform__labels {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: calc(6 / 375 * 100vw);
		margin: 0 0 calc(40 / 375 * 100vw);
	}

	.c-platform__labels .c-platform__label {
		margin: 0;
	}

	.c-platform__label span {
		font-size: calc(17 / 375 * 100vw);
	}

	.c-platform__card {
		padding: calc(16 / 375 * 100vw) calc(10 / 375 * 100vw);
		gap: calc(14 / 375 * 100vw);
	}

	.c-platform__intro {
		font-size: calc(15 / 375 * 100vw);
		text-align: left;
	}
}

/* ---------------------------------------------
 * CTA
 * --------------------------------------------- */
.c-cta {
	padding: 42px 40px;
	background: var(--color-kobelco-blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.c-cta__text {
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.6;
	text-align: center;
}

.c-cta__note {
	font-size: 13px;
	color: #fff;
	text-align: center;
	margin: 0;
}

.c-cta__btn-group {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.c-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px 16px 27px;
	border-radius: 99px;
	text-decoration: none;
	color: var(--color-darkest);
	font-weight: 700;
	transition: box-shadow 300ms ease;
}

.c-cta-btn::after {
	content: "";
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	background: url("/pickup/solution/images/icon-arrow.svg") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
	.c-cta-btn--catalog:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-catalog-hover);
	}

	.c-cta-btn--contact:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-contact-hover);
	}
}

.c-cta-btn--catalog {
	background: var(--gradient-btn-catalog);
	font-size: 18px;
}

.c-cta-btn--catalog::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	margin-right: 4px;
	background: url("/pickup/solution/images/icon-catalog.svg") no-repeat center / contain;
}

.c-cta-btn--catalog span {
	min-width: 200px;
}

.c-cta-btn--contact {
	background: var(--gradient-btn-contact);
	font-size: 24px;
	padding-left: 56px;
	padding-right: 30px;
}

.c-cta-btn--contact::before {
	content: "";
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	margin-right: 4px;
	background: url("/pickup/solution/images/icon-mail.svg") no-repeat center / contain;
}

.c-cta-btn--contact::after {
	margin-left: 10px;
}

@media only screen and (max-width: 767px) {
	.c-cta {
		gap: calc(24 / 375 * 100vw);
		padding: calc(24 / 375 * 100vw) calc(15 / 375 * 100vw) calc(36 / 375 * 100vw);
	}

	.c-cta__text {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-cta__note {
		font-size: calc(13 / 375 * 100vw);
	}

	.c-cta__btn-group {
		flex-direction: column;
		gap: calc(16 / 375 * 100vw);
		align-self: stretch;
	}

	.c-cta-btn::after {
		width: calc(14 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}

	.c-cta-btn--catalog {
		font-size: calc(16 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw) calc(12 / 375 * 100vw) calc(24 / 375 * 100vw);
	}

	.c-cta-btn--catalog::before {
		width: calc(20 / 375 * 100vw);
		height: calc(20 / 375 * 100vw);
		margin-right: 0;
	}

	.c-cta-btn--catalog span {
		min-width: 0;
	}

	.c-cta-btn--contact {
		padding-left: calc(24 / 375 * 100vw);
		padding-right: calc(16 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}

	.c-cta-btn--contact::before {
		margin-right: calc(4 / 375 * 100vw);
		width: calc(22 / 375 * 100vw);
		height: calc(22 / 375 * 100vw);
	}


	.c-cta-btn {
		border-radius: calc(99 / 375 * 100vw);
		gap: calc(10 / 375 * 100vw);
		padding: calc(16 / 375 * 100vw) calc(20 / 375 * 100vw) calc(16 / 375 * 100vw) calc(27 / 375 * 100vw);
	}

	.c-cta-btn--contact::after {
		margin-left: calc(10 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * セクション見出し
 * --------------------------------------------- */
.c-section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	isolation: isolate;
}

.c-section-header__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 50px;
	line-height: 1.4;
	text-align: center;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-section-header__marker {
	position: relative;
	padding: 0 4px;
}

.c-section-header__marker::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 24px;
	background: #fff;
	z-index: 0;
}

.c-section-header__marker-text {
	position: relative;
	z-index: 1;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.c-section-header__band {
	display: inline-flex;
	align-items: stretch;
	margin: 30px 0 0;
}

.c-section-header__band-text {
	--slant: 18.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	padding: 0 calc(10px + var(--slant));
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 26px;
	line-height: 1.4;
	color: #fff;
	background: #2e2e2e;
	clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% 100%, var(--slant) 100%);
}

@media only screen and (max-width: 767px) {
	.c-section-header__title {
		font-size: calc(36 / 375 * 100vw);
	}

	.c-section-header__marker::after {
		bottom: calc(2 / 375 * 100vw);
		height: calc(14 / 375 * 100vw);
	}

	.c-section-header__line {
		width: calc(105 / 375 * 100vw);
	}

	.c-section-header__band {
		margin: calc(16 / 375 * 100vw) 0 0;
	}

	.c-section-header__band-text {
		--slant: calc(18.5 / 375 * 100vw);
		padding: 0 calc(calc(10 / 375 * 100vw) + var(--slant));
		min-width: 0;
		font-size: calc(20 / 375 * 100vw);
	}


	.c-section-header__marker {
		padding: 0 calc(4 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * 数値でみる次世代油圧ショベルの強み
 * --------------------------------------------- */
.c-strengths {
	position: relative;
	padding: 100px 40px;
	background: var(--color-bg-blue-gray);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
}

.c-strengths::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 167px;
	height: 325px;
	background: url("/pickup/solution/images/obj-corner-tl-pc.avif") no-repeat top left / contain;
	pointer-events: none;
}

.c-strengths__inner {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.c-strengths__row {
	display: flex;
	gap: 20px;
	align-items: stretch;
}

.c-strengths__cards {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.c-strengths__photo {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

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

.c-strength-card {
	background: #fff;
	display: flex;
	flex-direction: column;
}

.c-strength-card__tag {
	--slant: 20px;
	margin: 0;
	align-self: flex-start;
	background: var(--color-kobelco-blue);
	padding: 6px calc(12px + var(--slant)) 6px 12px;
	clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
}

.c-strength-card__tag:has(br) {
	--slant: 34px;
}

.c-strength-card__tag span {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.c-strength-card__tag small {
	font-size: 12px;
	font-weight: 600;
}

.c-strength-card__body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	flex: 1;
}

.c-strength-card__body--column {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.c-strength-card__body--column:has(.c-strength-card__note) {
	gap: 0;
}

.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__stat+.c-strength-card__stat {
	margin-top: 36px;
}

.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__note {
	margin-top: 16px;
}

.c-strength-card__stat {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 18px;
}

.c-strength-card__label {
	color: var(--color-gray-03);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__label {
	width: 72px;
	white-space: nowrap;
}

.c-strength-card__note {
	margin: 0;
	display: flex;
	gap: 2px;
	font-size: 13px;
	line-height: 1.4;
}

.c-strength-card__subtitle {
	margin: 0;
	color: var(--color-kobelco-blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.c-strength-card__pair {
	display: flex;
	gap: 24px;
	width: 100%;
}

.c-strength-card__pair-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.c-strength-card__pair-label {
	margin: 0;
	color: var(--color-gray-03);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.c-strengths__interval-row {
	display: flex;
	gap: 20px;
}

.c-strengths__interval-row .c-strength-card {
	flex: 1;
	min-width: 0;
}

.c-strength-card__body--interval {
	flex-direction: column;
	justify-content: flex-end;
	gap: 6px;
	padding: 16px 24px 24px;
}

.c-strength-card__before {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 2px;
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 36px;
	line-height: 0.8;
	color: var(--color-gray-03);
}

.c-strength-card__before small,
.c-strength-card__after small {
	font-family: var(--font-jp);
	font-weight: 900;
	font-size: 16px;
	margin-left: 2px;
}

.c-strength-card__before small {
	margin-left: 0;
	line-height: 1;
}

.c-strength-card__before-num {
	transform: translateY(-3px);
}

.c-strength-card__arrow {
	display: flex;
	justify-content: center;
}

.c-strength-card__arrow::before {
	position: relative;
	content: "";
	width: 20px;
	height: 18px;
	background: url("/pickup/solution/images/icon-arrow-double-02.svg") no-repeat center / contain;
}

.c-strength-card__after {
	margin: -12px -5px;
	display: flex;
	align-items: flex-end;
	gap: 2px;
	font-family: var(--font-num);
	font-weight: 600;
	font-size: 60px;
	line-height: 0.8;
	padding: 12px 5px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.c-strength-card__after-unit {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 4px;
	padding-bottom: 4px
}

.c-strength-card__after small {
	margin-left: 0;
	font-size: 22px;
	line-height: 1;
}

.c-strength-card__after sup {
	font-size: 12px;
	line-height: 1;
	vertical-align: baseline;
}

.c-strengths__notes {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.c-strengths__notes li {
	display: flex;
	gap: 2px;
	font-size: 13px;
	line-height: 1.4;
}

.c-strengths__notes li span {
	flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
	.c-strengths {
		gap: calc(40 / 375 * 100vw);
		padding: calc(60 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-strengths::before {
		width: calc(70 / 375 * 100vw);
		height: calc(136 / 375 * 100vw);
		background: url("/pickup/solution/images/obj-corner-tl-sp.avif") no-repeat top left / contain;
	}

	.c-strengths__row {
		flex-direction: column;
		gap: calc(20 / 375 * 100vw);
	}

	.c-strengths__row:has(.c-strengths__photo--tall) {
		flex-direction: column-reverse;
	}

	.c-strengths__interval-row {
		flex-direction: column;
		gap: calc(20 / 375 * 100vw);
	}

	.c-strength-card__body {
		padding: calc(13 / 375 * 100vw) calc(12 / 375 * 100vw);
	}

	.c-strength-card__tag {
		--slant: calc(20 / 375 * 100vw);
		padding: calc(4 / 375 * 100vw) calc(calc(12 / 375 * 100vw) + var(--slant)) calc(4 / 375 * 100vw) calc(12 / 375 * 100vw);
	}

	.c-strength-card__tag span {
		font-size: calc(16 / 375 * 100vw);
	}

	.c-strength-card__label,
	.c-strength-card__pair-label,
	.c-strength-card__subtitle {
		font-size: calc(15 / 375 * 100vw);
	}

	.c-strength-card__subtitle {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-strength-card__stat {
		gap: calc(18 / 375 * 100vw);
	}

	.c-strengths .c-stat-num {
		flex-shrink: 0;
	}

	.c-strengths .c-stat-num small,
	.c-strengths .c-stat-num em {
		flex-shrink: 0;
		white-space: nowrap;
	}

	.c-strengths .c-strength-card__body--column .c-strength-card__label {
		width: auto;
	}

	.c-strengths .c-stat-num--lg small,
	.c-strengths .c-stat-num--lg em {
		font-size: calc(30 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-stat-num--lg b {
		font-size: calc(54 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-stat-num--lg b i {
		font-size: calc(26 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-stat-num--lg small {
		font-size: calc(15 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-stat-num--lg em {
		font-size: calc(32 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__stat {
		gap: calc(16 / 375 * 100vw);
	}

	.c-strengths .c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__stat+.c-strength-card__stat {
		gap: calc(16 / 375 * 100vw);
	}

	.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__stat+.c-strength-card__stat {
		margin-top: calc(16 / 375 * 100vw);
	}

	.c-strength-card__pair {
		flex-direction: column;
		gap: calc(24 / 375 * 100vw);
	}

	.c-strength-card__pair-item {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: calc(18 / 375 * 100vw);
		width: 100%;
	}

	.c-strength-card__body--interval {
		flex-direction: row;
		align-items: flex-end;
		justify-content: center;
		gap: calc(12 / 375 * 100vw);
		padding: calc(14 / 375 * 100vw) calc(16 / 375 * 100vw) calc(24 / 375 * 100vw);
	}

	.c-strength-card__arrow {
		transform: rotate(-90deg);
	}

	.c-strength-card__arrow::before {
		height: calc(18 / 375 * 100vw);
		width: calc(15 / 375 * 100vw);
		right: calc(-2 / 375 * 100vw);
	}

	.c-strength-card__before {
		gap: calc(2 / 375 * 100vw);
		font-size: calc(36 / 375 * 100vw);
	}

	.c-strength-card__before small {
		font-size: calc(16 / 375 * 100vw);
		margin-left: calc(2 / 375 * 100vw);
		transform: translateY(calc(2 / 375 * 100vw));
	}

	.c-strength-card__after {
		margin: calc(-12 / 375 * 100vw) calc(-5 / 375 * 100vw);
		gap: calc(2 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(5 / 375 * 100vw);
		font-size: calc(56 / 375 * 100vw);
	}

	.c-strength-card__after small {
		margin-left: calc(2 / 375 * 100vw);
		font-size: calc(20 / 375 * 100vw);
	}

	.c-strengths__notes {
		margin: calc(16 / 375 * 100vw) 0 0;
		gap: calc(8 / 375 * 100vw);
		margin-top: 0;
	}


	.c-strengths__inner {
		gap: calc(20 / 375 * 100vw);
	}

	.c-strengths__cards {
		gap: calc(20 / 375 * 100vw);
	}

	.c-strength-card__tag:has(br) {
		--slant: calc(34 / 375 * 100vw);
	}

	.c-strength-card__tag small {
		font-size: calc(12 / 375 * 100vw);
	}

	.c-strength-card__body--column {
		gap: calc(8 / 375 * 100vw);
	}

	.c-strength-card__body--column:has(.c-strength-card__note) {
		padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw) calc(12 / 375 * 100vw);
	}

	.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__note {
		margin-top: calc(16 / 375 * 100vw);
	}

	.c-strength-card__body--column:has(.c-strength-card__note) .c-strength-card__label {
		width: auto;
		font-size: calc(14 / 375 * 100vw);
	}

	.c-strength-card__note {
		gap: calc(2 / 375 * 100vw);
		font-size: calc(13 / 375 * 100vw);
	}

	.c-strength-card__before-num {
		transform: translateY(calc(-3 / 375 * 100vw));
	}

	.c-strength-card__after-unit {
		gap: calc(4 / 375 * 100vw);
		padding-bottom: calc(4 / 375 * 100vw);
	}

	.c-strength-card__after sup {
		font-size: calc(12 / 375 * 100vw);
	}

	.c-strengths__notes li {
		gap: calc(2 / 375 * 100vw);
		font-size: calc(13 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * プロモーションムービー
 * --------------------------------------------- */
.c-movie {
	padding: 100px 40px;
	background: linear-gradient(to bottom, #ddf2f2, #d5edf6);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
}

.c-movie__inner {
	width: 100%;
	max-width: 1000px;
}

.c-movie__player {
	margin: 0 auto;
}

.c-movie__player iframe {
	display: block;
	width: 100%;
	height: 560px;
}

@media only screen and (max-width: 767px) {
	.c-movie {
		gap: calc(32 / 375 * 100vw);
		padding: calc(60 / 375 * 100vw) calc(16 / 375 * 100vw);
	}

	.c-movie__player iframe {
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

/* ---------------------------------------------
 * 対象機種
 * --------------------------------------------- */
.c-models {
	position: relative;
	padding: 100px 40px;
	background: var(--color-bg-blue-gray);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	overflow: hidden;
}

.c-models::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 167px;
	height: 325px;
	background: url("/pickup/solution/images/obj-corner-tl-pc.avif") no-repeat top left / contain;
	pointer-events: none;
}

.c-models__inner {
	width: 100%;
	max-width: 900px;
	display: flex;
	gap: 50px;
	justify-content: center;
}

.c-model-card {
	position: relative;
	flex: 1;
	max-width: 425px;
	background: #fff;
	border-top: 4px solid #00aeda;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-bottom: 36px;
}

.c-model-card__img {
	border-bottom: 1px solid var(--color-gray-01);
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-model-card__img img {
	display: block;
	width: 100%;
}

.c-model-card__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 0 36px;
}

.c-model-card__heading {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.c-model-card__category {
	margin: 0;
	color: var(--color-gray-05);
	font-size: 18px;
	line-height: 1.4;
}

.c-model-card__name {
	margin: 0;
	color: var(--color-kobelco-blue);
	font-family: var(--font-num);
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
}

.c-model-card__type {
	margin: 0;
	color: var(--color-gray-05);
	font-size: 14px;
	line-height: 1.4;
}

.c-model-card__specs {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.c-model-card__spec {
	display: flex;
	align-items: center;
	gap: 24px;
}

.c-model-card__spec dt {
	width: 150px;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 700;
}

.c-model-card__spec dd {
	margin: 0;
	font-size: 18px;
}

.c-model-card__features {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 -24px 12px 0;
}

.c-model-card__features-label {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	flex-shrink: 0;
}

.c-model-card__tags {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.c-model-card__tags li {
	padding: 1px 4px 2px;
	background: var(--color-kobelco-blue);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

.c-model-card__btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.c-model-card__detail-btn {
	width: 310px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px 16px 46px;
	border-radius: 99px;
	background: linear-gradient(to bottom, var(--color-dark-blue), #004043);
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	transition: box-shadow 300ms ease;
}

@media screen and (min-width: 768px) {
	.c-model-card__detail-btn:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-dark-blue);
	}
}

.c-model-card__detail-btn span {
	flex: 1;
	text-align: center;
}

.c-model-card__detail-btn::after {
	content: "";
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	background: url("/pickup/solution/images/icon-chevron-white.svg") no-repeat center / contain;
	transform: rotate(-90deg);
}

.c-model-card__catalog-btn {
	width: 310px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 20px 16px 27px;
	border-radius: 99px;
	background: var(--gradient-btn-catalog);
	text-decoration: none;
	color: var(--color-darkest);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	transition: box-shadow 300ms ease;
}

.c-model-card__catalog-btn::before {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 25px;
	background: url("/pickup/solution/images/icon-catalog.svg") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
	.c-model-card__catalog-btn:hover {
		box-shadow: inset 0 0 0 100vmax var(--color-btn-catalog-hover);
	}
}

.c-model-card__catalog-btn span {
	flex: 1;
	text-align: center;
}

.c-model-card__pdf {
	flex-shrink: 0;
	padding: 2px 3px;
	background: var(--color-darkest);
	color: #fff;
	font-size: 9px;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.05em;
}

.c-model-card__note {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
}

.c-model-card__note p {
	font-size: 13px;
	margin: 0;
}

@media only screen and (max-width: 767px) {
	.c-models {
		gap: calc(40 / 375 * 100vw);
		padding: calc(60 / 375 * 100vw) calc(15 / 375 * 100vw);
	}

	.c-models::before {
		width: calc(70 / 375 * 100vw);
		height: calc(136 / 375 * 100vw);
		background: url("/pickup/solution/images/obj-corner-tl-sp.avif") no-repeat top left / contain;
	}

	.c-models__inner {
		flex-direction: column;
		gap: calc(50 / 375 * 100vw);
		max-width: none;
	}

	.c-model-card {
		padding-bottom: calc(36 / 375 * 100vw);
		max-width: none;
		gap: calc(16 / 375 * 100vw);
		padding: calc(4 / 375 * 100vw) 0 calc(24 / 375 * 100vw);
	}

	.c-model-card__body {
		gap: calc(24 / 375 * 100vw);
		padding: 0 calc(16 / 375 * 100vw);
	}

	.c-model-card__category {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-model-card__name {
		font-size: calc(50 / 375 * 100vw);
	}

	.c-model-card__spec {
		gap: calc(16 / 375 * 100vw);
	}

	.c-model-card__specs {
		gap: 0;
	}

	.c-model-card__spec dt {
		width: calc(140 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
	}

	.c-model-card__spec dd {
		font-size: calc(16 / 375 * 100vw);
	}

	.c-model-card__features {
		gap: calc(12 / 375 * 100vw);
		margin: 0 calc(-24 / 375 * 100vw) calc(12 / 375 * 100vw) 0;
		margin-right: 0;
		align-items: flex-start;
	}

	.c-model-card__features-label {
		font-size: calc(15 / 375 * 100vw);
	}

	.c-model-card__tags li {
		padding: calc(1 / 375 * 100vw) calc(4 / 375 * 100vw) calc(2 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
	}

	.c-model-card__detail-btn,
	.c-model-card__catalog-btn {
		width: 100%;
		max-width: calc(258 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		white-space: nowrap;
	}

	.c-model-card__detail-btn {
		gap: calc(10 / 375 * 100vw);
		border-radius: calc(99 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw) calc(12 / 375 * 100vw) calc(18 / 375 * 100vw);
	}

	.c-model-card__catalog-btn {
		gap: calc(8 / 375 * 100vw);
		border-radius: calc(99 / 375 * 100vw);
		padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw) calc(12 / 375 * 100vw) calc(24 / 375 * 100vw);
	}


	.c-model-card__type {
		font-size: calc(14 / 375 * 100vw);
	}

	.c-model-card__tags {
		gap: calc(4 / 375 * 100vw);
	}

	.c-model-card__btns {
		gap: calc(12 / 375 * 100vw);
	}

	.c-model-card__detail-btn::after {
		width: calc(16 / 375 * 100vw);
		height: calc(16 / 375 * 100vw);
	}

	.c-model-card__catalog-btn::before {
		width: calc(20 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}

	.c-model-card__pdf {
		padding: calc(2 / 375 * 100vw) calc(3 / 375 * 100vw);
		font-size: calc(9 / 375 * 100vw);
	}

	.c-model-card__heading {
		gap: calc(2 / 375 * 100vw);
	}

	.c-model-card__note p {
		font-size: calc(13 / 375 * 100vw);
	}
}

/* ---------------------------------------------
 * インタビュー動画
 * --------------------------------------------- */
.c-interview {
	position: relative;
	padding: 100px 0;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
}

.c-interview::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 167px;
	height: 325px;
	background: url("/pickup/solution/images/obj-corner-tl-pc.avif") no-repeat top left / contain;
	pointer-events: none;
}

.c-interview__list {
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 30px;
	justify-content: safe center;
	padding: 0 200px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.c-interview-card {
	flex-shrink: 0;
	width: 315px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.c-interview-card__tag {
	--slant: 24px;
	margin: 0;
	align-self: flex-start;
	background: var(--color-kobelco-blue);
	padding: 8px var(--slant) 4px 12px;
	width: calc(250px + var(--slant));
	clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% 100%, 0 100%);
}

.c-interview-card__tag span {
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.6;
}

.c-interview-card__tag b {
	font-family: var(--font-num);
	font-weight: bold;
	font-size: 30px;
	text-transform: uppercase;
	line-height: 1;
	margin-left: 8px;
	text-transform: uppercase;
}

.c-interview-card__player {
	width: 315px;
	aspect-ratio: 315 / 560;
	cursor: pointer;
}

.c-interview-card__player iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.c-interview-card__comment {
	margin: 20px 0 0;
	position: relative;
	background: var(--color-bg-blue);
	padding: 10px 20px;
	font-size: 18px;
}

.c-interview-card__comment::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-bottom-color: var(--color-bg-blue);
	border-top-width: 0;
}

@media only screen and (max-width: 767px) {
	.c-interview {
		gap: calc(32 / 375 * 100vw);
		padding: calc(60 / 375 * 100vw) 0;
	}

	.c-interview::before {
		width: calc(92 / 375 * 100vw);
		height: calc(179 / 375 * 100vw);
		background-size: calc(92 / 375 * 100vw) calc(179 / 375 * 100vw);
	}

	.c-interview__list {
		gap: calc(24 / 375 * 100vw);
		padding: 0 calc(16 / 375 * 100vw);
	}

	.c-interview-card__tag {
		--slant: calc(24 / 375 * 100vw);
		padding: calc(8 / 375 * 100vw) var(--slant) calc(4 / 375 * 100vw) calc(12 / 375 * 100vw);
		width: calc(calc(250 / 375 * 100vw) + var(--slant));
		max-width: 100%;
	}

	.c-interview-card__tag span {
		font-size: calc(18 / 375 * 100vw);
	}

	.c-interview-card__tag b {
		margin-left: calc(8 / 375 * 100vw);
		font-size: calc(30 / 375 * 100vw);
	}

	.c-interview-card__player {
		width: 100%;
	}

	.c-interview-card__comment {
		margin: calc(20 / 375 * 100vw) 0 0;
		padding: calc(10 / 375 * 100vw) calc(20 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}


	.c-interview-card {
		width: calc(315 / 375 * 100vw);
	}

	.c-interview-card__comment::before {
		border: calc(10 / 375 * 100vw) solid transparent;
	}
}

/* ---------------------------------------------
 * YouTubeモーダル
 * --------------------------------------------- */
.c-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 16, 16, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.c-modal[data-open] .c-modal__overlay {
	opacity: 1;
}

.c-modal__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: min(92vw, 688px);
	padding: 0 24px 24px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(-30px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-modal[data-open] .c-modal__content {
	opacity: 1;
	transform: translateY(0);
}

.c-modal__content--vertical {
	width: auto;
}

.c-modal__close {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin-right: -24px;
	border: 0;
	background: none;
	cursor: pointer;
}

.c-modal__close-icon {
	position: relative;
	width: 25px;
	height: 25px;
}

.c-modal__close-icon::before,
.c-modal__close-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 2px;
	background: #101010;
	transition: background 200ms ease;
}

.c-modal__close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 768px) {

	.c-modal__close:hover .c-modal__close-icon::before,
	.c-modal__close:hover .c-modal__close-icon::after {
		background: #5c5c5c;
	}
}

.c-modal__close-label {
	margin-top: 4px;
	color: #101010;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	transition: color 200ms ease;
}

@media screen and (min-width: 768px) {
	.c-modal__close:hover .c-modal__close-label {
		color: #5c5c5c;
	}
}

.c-modal__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.c-modal__player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.c-modal__player--vertical {
	aspect-ratio: 9 / 16;
	width: min(calc(80vh * 9 / 16), 92vw);
}

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

	.c-modal__overlay,
	.c-modal__content {
		transition: none;
	}
}

/* ---------------------------------------------
 * YouTubeモーダル（SP）
 * --------------------------------------------- */
@media only screen and (max-width: 767px) {
	.c-modal__content {
		border-radius: calc(8 / 375 * 100vw);
		padding: 0 calc(24 / 375 * 100vw) calc(24 / 375 * 100vw);
		transform: translateY(calc(-30 / 375 * 100vw));
	}

	.c-modal__close {
		width: calc(80 / 375 * 100vw);
		height: calc(80 / 375 * 100vw);
		margin-right: calc(-24 / 375 * 100vw);
	}

	.c-modal__close-icon {
		width: calc(25 / 375 * 100vw);
		height: calc(25 / 375 * 100vw);
	}

	.c-modal__close-icon::before,
	.c-modal__close-icon::after {
		width: calc(25 / 375 * 100vw);
	}

	.c-modal__close-label {
		margin-top: calc(4 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}

	.c-modal__close-icon::before {
		height: calc(2 / 375 * 100vw);
	}

	.c-modal__close-icon::after {
		height: calc(2 / 375 * 100vw);
	}
}