:root {
	/* ========================================
	FONTS
	======================================== */
	--font-family-ja: "Noto Sans JP", sans-serif;
	--font-family-en: "Manrope", sans-serif;

	/* ========================================
	FONT SIZES
	変数名の数字 = カンプ上のpx（16px基準）/ 値はremで同比率拡縮
	======================================== */
	--fz-12: 0.75rem;
	--fz-13: 0.8125rem;
	--fz-14: 0.875rem;
	--fz-15: 0.9375rem;
	--fz-16: 1rem;
	--fz-18: 1.125rem;
	--fz-20: 1.25rem;
	--fz-24: 1.5rem;
	--fz-32: 2rem;
	--fz-36: 2.25rem;
	--fz-40: 2.5rem;
	--fz-48: 3rem;
	--fz-64: 4rem;

	/* ========================================
	LETTER SPACING  (em統一・昇順)
	======================================== */
	--ls-none: 0;
	--ls-xs: 0.04em;
	--ls-sm: 0.05em;
	--ls-md: 0.07em;
	--ls-lg: 0.08em;
	--ls-xl: 0.125em;

	/* ========================================
	COLORS — Palette（実値はここでのみ定義）
	======================================== */
	/* Blue */
	--blue-1: #EBF2FC;
	--blue-2: #C0D8F8;
	--blue-3: #0758B3;
	--blue-4: #2C4B6E;
	--blue-5: #1D3D62;

	/* Orange */
	--orange: #D0490E;

	/* Neutral（white → gray 4階層 → black） */
	--white:  #FFFFFF;
	--gray-1: #F0F2F5;
	--gray-2: #D1D5DB;
	--gray-3: #9CA3AF;
	--gray-4: #6B7280;
	--gray-5: #595F6B;
	--black:  #333333;

	/* Danger */
	--danger: #E60404;

	/* ========================================
	SPACING  (変数名の数字 = px)
	======================================== */
	--space-0: 0;
	--space-4: 4px;
	--space-8: 8px;
	--space-10: 10px;
	--space-12: 12px;
	--space-14: 14px;
	--space-16: 16px;
	--space-20: 20px;
	--space-24: 24px;
	--space-30: 30px;
	--space-32: 32px;
	--space-36: 36px;
	--space-40: 40px;
	--space-48: 48px;
	--space-56: 56px;
	--space-60: 60px;
	--space-64: 64px;
	--space-80: 80px;
	--space-96: 96px;

	/* ========================================
	LAYOUT
	======================================== */
	--content-width: 1240px;
}


/* ========================================
RESET
======================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	font-size: clamp(16px, 1.25vw, 18px);
	font-weight: 500;
	font-family: var(--font-family-ja);
	line-height: 1.5;
	scroll-behavior: smooth;
	scroll-padding: 138px;
}

@media screen and (max-width: 1240px) {
	html {
		scroll-padding: 68px;
	}
}

@media screen and (max-width: 1240px) {
	body:has( .l-header-bottom-nav.show) {
		overflow: hidden;
	}
}

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

ul, ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

@media screen and (min-width: 769px) {
	.u-visible-sp {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.u-visible-pc {
		display: none;
	}
}


/* ========================================
HEADER
======================================== */
.l-header {
	position: fixed;
	inset: 0 auto auto 0;
	width: 100vw;
	z-index: 100;
}

.l-header.shadow {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.l-header-inner {
	padding: 0 var(--space-30);
}

.l-header-top {
	background: var(--blue-5);
	color: var(--white);
}

.l-header-top .row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--space-16);
	height: 48px;
}

.l-header-top-lang {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: var(--space-14);
}

.l-header-top-lang li + li::before {
	content: ' ｜ ';
	font-size: var(--fz-12);
}

.l-header-top-lang a {
	font-size: var(--fz-14);
	font-weight: 600;
}

.l-header-top-lang a.active {
	text-decoration: 1px underline;
}

.l-header-bottom {
	background: var(--white);
}

.l-header-bottom .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}

.l-header-bottom-logo {
	width: 204px;
}

.l-header-bottom-nav {
	display: flex;
	align-items: center;
	gap: var(--space-40);
}

.l-header-bottom-lang {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	padding-bottom: var(--space-36);
}

.l-header-bottom-lang li + li::before {
	content: ' ｜ ';
	font-size: var(--fz-12);
}

.l-header-bottom-lang a {
	font-size: var(--fz-14);
	font-weight: 600;
}

.l-header-bottom-lang a.active {
	text-decoration: 1px underline;
}

.l-header-bottom-links {
	display: flex;
	align-items: center;
	gap: var(--space-40);
}

.l-header-bottom-links > li > a {
	display: flex;
	align-items: center;
	height: 90px;
	font-size: var(--fz-16);
	font-weight: 700;
	transition: color .2s ease;
}

@media (hover: hover) {
	.l-header-bottom-links > li > a:hover {
		color: var(--blue-3);
	}
}

.l-header-bottom-links > li > a:has( + .l-header-bottom-sub) {
	position: relative;
}

.l-header-bottom-links2 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-16) var(--space-24);
	padding-bottom: var(--space-32);
}

.l-header-bottom-links2 li a {
	color: var(--gray-5);
	font-size: var(--fz-14);
	font-weight: 500;
	text-decoration: 1px underline var(--gray-5);
}

.l-header-bottom-tel a {
	color: var(--gray-4);
	display: block;
	font-size: var(--fz-15);
	font-weight: 500;
	text-align: center;
}

.l-header-bottom-tel a span {
	display: block;
	color: var(--blue-3);
	font-size: var(--fz-24);
	font-weight: 700;
}

.l-header-bottom-tel a span::before {
	content: '';
	background: url(../img/icon-tel-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-right: 8px;
	vertical-align: middle;
}

.l-header-bottom-button a {
	background: var(--orange);
	color: var(--white);
	display: block;
	position: relative;
	padding: var(--space-16) var(--space-24);
	font-size: var(--fz-14);
	font-weight: 700;
	border: 1px solid var(--orange);
}

.l-header-bottom-button a::before {
	content: '';
	background: url(../img/icon-request.svg) no-repeat center / cover;
	display: inline-block;
	margin-right: var(--space-14);
	width: 20px;
	aspect-ratio: 20 / 16;
	vertical-align: sub;
}

.l-header-bottom-sub {
	display: none;
	background: var(--white);
	position: fixed;
	inset: 138px auto auto 0;
	padding: 64px 0 106px;
	padding: 0;
	width: 100vw;
}

.l-header-bottom-sub-inner {
	background: var(--white);
	width: min(100%, var(--content-width));
	margin: auto;
	padding: 46px 94px 63px;
}

.l-header-bottom-sub-title {
	position: relative;
	padding: 23px 0 36px;
	font-size: var(--fz-24);
	font-weight: 700;
}

.l-header-bottom-sub-title::before {
	content: '';
	background: linear-gradient(to right, var(--blue-3) 0%, var(--blue-3) 72.31%, var(--blue-2) 72.31%, var(--blue-2) 100%);
	position: absolute;
	inset: 0 auto auto 0;
	width: 65px;
	height: 3px;
}

.l-header-bottom-sub-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.l-header-bottom-sub-thumb {
	width: 420px;
}

.l-header-bottom-sub-links {
	display: grid;
	grid-template-columns: repeat(2, 280px);
	align-items: flex-end;
	gap: var(--space-24) var(--space-48);
}

.l-header-bottom-sub-links li a {
	display: block;
	position: relative;
	padding: var(--space-12) var(--space-20) var(--space-12) 0;
	font-size: var(--fz-16);
	font-weight: 600;
	line-height: 1.4;
	border-bottom: 1px solid #E5EAF0;
	transition: .2s ease;
}

.l-header-bottom-sub-links li a:hover {
	color: var(--blue-3);
}

.l-header-bottom-sub-links li a::after {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	position: absolute;
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	width: 20px;
	aspect-ratio: 1 / 1;
	transition: .2s ease;
}

.l-header-bottom-sub-links li a:hover::after {
	transform: translateX(2px);
}

.l-header-bottom-menu-button {
	width: 40px;
	height: 40px;
	aspect-ratio: 1 / 1;
	padding: 13px 6px;
}

.l-header-bottom-menu-button .inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.l-header-bottom-menu-button .inner::before,
.l-header-bottom-menu-button .inner span,
.l-header-bottom-menu-button .inner::after {
	background: var(--blue-3);
	position: absolute;
	width: 100%;
	height: 2px;
	transition: .2s ease;
}

.l-header-bottom-menu-button .inner::before {
	content: '';
	inset: 0 auto auto 0;
}

.l-header-bottom-menu-button .inner span {
	background: var(--blue-3);
	inset: calc(50% - 1px) auto auto 0;
}

.l-header-bottom-menu-button .inner::after {
	content: '';
	inset: auto auto 0 0;
}

.l-header-bottom-menu-button.menu-open .inner::before {
	rotate: 40deg;
	inset: calc(50% - 1px) auto auto 0;
}

.l-header-bottom-menu-button.menu-open .inner span {
	opacity: 0;
	visibility: hidden;
}

.l-header-bottom-menu-button.menu-open .inner::after {
	rotate: -40deg;
	inset: calc(50% - 1px) auto auto 0;
}

.l-header-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99;
	pointer-events: none;
}

.l-header-overlay.active {
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width: 1241px) and (max-width: 1700px) {
	.l-header-bottom-logo {
		width: 115px;
	}
	
	.l-header-bottom-nav {
		gap: var(--space-20);
	}
	
	.l-header-bottom-links {
		gap: var(--space-20);
	}
	
	.l-header-bottom-links > li > a {
		font-size: var(--fz-14);
	}
	
	.l-header-bottom-button a {
		padding: var(--space-16) var(--space-20) var(--space-10);
		font-size: var(--fz-12);
	}

	.l-header-bottom-button a::before {
		display: block;
		width: 24px;
		margin: 0 auto 8px;
	}
}

@media screen and (min-width: 1241px) {
	.l-header-bottom-lang {
		display: none;
	}
	
	.l-header-bottom-links > li > a:has( + .l-header-bottom-sub) {
		padding-right: var(--space-20);
	}

	.l-header-bottom-links > li > a:has( + .l-header-bottom-sub)::after {
		content: '';
		background: url(../img/icon-arrow-blue.svg) no-repeat center / cover;
		position: absolute;
		inset: 50% 0 auto auto;
		translate: 0 -50%;
		width: 12px;
		aspect-ratio: 12 / 8;
	}
	
	.l-header-bottom-links2 {
		display: none;
	}
	
	.l-header-bottom-menu-button {
		display: none;
	}
}

@media screen and (max-width: 1240px) {
	.l-header-inner {
		padding: 0 var(--space-20);
	}

	.l-header-top {
		display: none;
	}

	.l-header-bottom .row {
		height: 68px;
	}

	.l-header-bottom-logo {
		width: 97px;
	}

	.l-header-bottom-nav {
		background: var(--gray-1);
		flex-direction: column;
		align-items: normal;
		gap: 0;
		position: fixed;
		inset: 68px auto auto 0;
		width: 100vw;
		height: calc(100vh - 68px);
		padding: var(--space-40) var(--space-20);
		overflow: scroll;
		translate: 100% 0;
		transition: translate .2s ease;
	}
	
	.l-header-bottom-nav.show {
		translate: 0 0;
	}

	.l-header-bottom-links {
		flex-direction: column;
		align-items: normal;
		gap: var(--space-24);
		padding-bottom: var(--space-24);
	}

	.l-header-bottom-links > li > a {
		position: relative;
		height: auto;
		padding: 0 var(--space-32) var(--space-14) 0;
		font-size: var(--fz-15);
		border-bottom: 1px solid var(--gray-3);
	}

	.l-header-bottom-links > li > a::after {
		content: '';
		background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
		position: absolute;
		inset: 0 8px auto auto;
		width: 24px;
		aspect-ratio: 1 / 1;
	}
	
	.l-header-bottom-tel {
		background: var(--white);
		margin-bottom: var(--space-20);
		padding: var(--space-10);
	}
	
	.l-header-bottom-button a {
		text-align: center;
	}

	.l-header-bottom-sub {
		display: block !important;
		position: relative;
		inset: auto;
		width: 100%;
		padding: var(--space-20) 0 0;
		background: none;
	}

	.l-header-bottom-sub-inner {
		background: none;
		padding: 0;
	}
	
	.l-header-bottom-sub-title {
		display: none;
	}
	
	.l-header-bottom-sub-thumb {
		display: none;
	}
	
	.l-header-bottom-sub-links {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--space-16);
	}
	
	
	.l-header-bottom-sub-links li a {
		color: var(--gray-5);
		padding: 0 0 0 8px;
		font-size: var(--fz-14);
		font-weight: 700;
		border-bottom: none;
	}

	.l-header-bottom-sub-links li a::after {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.l-header-bottom-button a {
		transition: background .2s ease, color .2s ease;
	}

	.l-header-bottom-button a:hover {
		background: var(--white);
		color: var(--orange);
	}
	
	.l-header-bottom-button a:hover::before {
		background-image: url(../img/icon-request-orange.svg);
	}
}


/* ========================================
FOOTER
======================================== */
.l-footer-inner {
	padding: 0 var(--space-96);
}

.l-footer-top {
	background: var(--blue-3) url(../img/footer-top-bg-pc.png) no-repeat right bottom / 1033px auto;
	color: var(--white);
	padding: var(--space-80) 0;
}

.l-footer-top-title {
	padding-bottom: var(--space-40);
	font-size: var(--fz-32);
	font-weight: 700;
	text-align: center;
}

.l-footer-top-text {
	padding-bottom: var(--space-60);
	font-size: var(--fz-16);
	font-weight: 500;
	text-align: center;
}

.l-footer-top-box {
	background: rgba(255, 255, 255, .75);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-16);
	width: min(100%, 788px);
	margin: auto;
	padding: var(--space-32);
}

.l-footer-top-box li:last-child {
	grid-column: span 2;
}

.l-footer-top-box li a {
	padding: var(--space-24) 0;
}

.l-footer-top-box-request,
.l-footer-top-box-download {
	font-size: var(--fz-20);
	font-weight: 700;
	text-align: center;
}

.l-footer-top-box-request::before,
.l-footer-top-box-download::before {
	content: '';
	display: block;
	margin: 0 auto var(--space-24);
	width: 70px;
	aspect-ratio: 1 / 1;
}

.l-footer-top-box-request::after,
.l-footer-top-box-download::after {
	content: '';
	display: inline-block;
	margin-left: var(--space-14);
	width: 24px;
	aspect-ratio: 1 / 1;
	vertical-align: sub;
}

.l-footer-top-box-request {
	background: var(--orange);
	display: block;
	border: 2px solid var(--orange);
}

.l-footer-top-box-request::before {
	background: url(../img/icon-request-circle.svg) no-repeat center / cover;
}

.l-footer-top-box-request::after {
	background: url(../img/icon-arrow-circle.svg) no-repeat center / cover;
}

.l-footer-top-box-download {
	background: var(--blue-3);
	display: block;
	border: 2px solid var(--blue-3);
}

.l-footer-top-box-download::before {
	background: url(../img/icon-download-circle.svg) no-repeat center / cover;
}

.l-footer-top-box-download::after {
	background: url(../img/icon-arrow-circle.svg) no-repeat center / cover;
}

.l-footer-top-box-tel {
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 90px;
}

.l-footer-top-box-tel-left {
	color: var(--black);
	font-size: var(--fz-20);
	font-weight: 700;
}

.l-footer-top-box-tel-right {
	color: var(--gray-5);
	font-size: var(--fz-16);
	font-weight: 500;
	text-align: center;
}

.l-footer-top-box-tel-right strong {
	color: var(--blue-3);
	display: block;
	font-size: var(--fz-32);
	font-weight: 700;
}

.l-footer-top-box-tel-right strong::before {
	content: '';
	background: url(../img/icon-tel-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 29px;
	margin-right: 8px;
	aspect-ratio: 1 / 1;
}

.l-footer-bottom {
	padding: var(--space-96) 0 var(--space-60);
}

.l-footer-bottom .row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-48);
	padding-bottom: var(--space-96);
}

.l-footer-bottom-logo {
	width: 185px;
	margin-bottom: 35px;
}

.l-footer-bottom-address .name {
	padding-bottom: var(--space-12);
	font-size: var(--fz-16);
	font-weight: 700;
}

.l-footer-bottom-address .address li {
	position: relative;
	padding-left: 28px;
	font-size: var(--fz-16);
	font-weight: 500;
}

.l-footer-bottom-address .address li + li {
	margin-top: var(--space-12);
}

.l-footer-bottom-address .address li::before {
	content: '';
	background: url(../img/icon-address.svg) no-repeat center / cover;
	position: absolute;
	inset: 2px auto auto 4px;
	width: 16px;
	aspect-ratio: 16 / 20;
}

.l-footer-bottom-links {
	column-count: 3;
	column-gap: var(--space-60);
}

.l-footer-bottom-links > li {
	break-inside: avoid;
}

.l-footer-bottom-links > li + li {
	margin-top: 40px;
}

.l-footer-bottom-links > li > a {
	display: block;
	position: relative;
	padding: 0 0 var(--space-16) var(--space-36);
	font-size: var(--fz-16);
	font-weight: 700;
	border-bottom: 1px solid var(--gray-2);
}

.l-footer-bottom-links > li > a::before {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	position: absolute;
	inset: 0 auto auto 0;
	width: 24px;
	aspect-ratio: 1 / 1;
}

.l-footer-bottom-sub-links li {
	margin-top: var(--space-20);
}

.l-footer-bottom-sub-links > li > a {
	color: var(--gray-5);
	display: block;
	font-size: var(--fz-14);
	font-weight: 700;
}

.l-footer-bottom-other {
	display: flex;
	justify-content: space-between;
}

.l-footer-bottom-other .copy {
	color: var(--gray-5);
	font-size: var(--fz-14);
	font-weight: 500;
}

.l-footer-bottom-other .other {
	color: var(--gray-5);
	display: flex;
	font-size: var(--fz-14);
	font-weight: 700;
}

.l-footer-bottom-other .other li + li::before {
	content: '/';
	margin: 0 .5em;
}

@media screen and (min-width: 1241px) and (max-width: 1700px) {
	.l-footer-bottom .row {
		flex-direction: column;
		gap: var(--space-80);
	}
}

@media screen and (max-width: 1240px) {
	.l-footer-inner {
		padding: 0 var(--space-20);
	}

	.l-footer-top {
		background: var(--blue-3) url(../img/footer-top-bg-sp.png) no-repeat right bottom / 366px auto;
		padding: var(--space-60) 0;
	}

	.l-footer-top-title {
		padding-bottom: var(--space-20);
		font-size: var(--fz-20);
		line-height: 1.8;
	}

	.l-footer-top-text {
		padding-bottom: var(--space-40);
		font-size: var(--fz-15);
		line-height: 2;
	}

	.l-footer-top-box {
		grid-template-columns: repeat(1, 1fr);
	}

	/* .l-footer-top-box li:last-child {
		grid-column: span 1;
	} */

	.l-footer-top-box-request,
	.l-footer-top-box-download {
		font-size: var(--fz-16);
	}
	
	.l-footer-top-box-request::after,
	.l-footer-top-box-download::after {
		vertical-align: bottom;
	}

	.l-footer-top-box-tel {
		flex-direction: column;
		gap: var(--space-12);
	}

	.l-footer-top-box-tel-left {
		font-size: var(--fz-14);
	}

	.l-footer-top-box-tel-right {
		font-size: var(--fz-12);
	}

	.l-footer-top-box-tel-right strong {
		padding-bottom: var(--space-12);
		font-size: var(--fz-20);
	}

	.l-footer-top-box-tel-right strong::before {
		width: 19px;
		aspect-ratio: 19 / 21;
		vertical-align: sub;
	}

	.l-footer-bottom {
		padding: var(--space-48) 0;
	}

	.l-footer-bottom .row {
		flex-direction: column;
		align-items: inherit;
		padding-bottom: var(--space-40);
	}

	.l-footer-bottom-logo {
		margin-bottom: var(--space-32);
	}

	.l-footer-bottom-links {
		column-count: inherit;
	}

	.l-footer-bottom-links > li > a {
		padding: 0 var(--space-32) var(--space-16) 0;
		font-size: var(--fz-15);
	}

	.l-footer-bottom-links > li + li {
		margin-top: var(--space-24);
	}

	.l-footer-bottom-links > li > a::before {
		inset: 0 8px auto auto;
	}

	.l-footer-bottom-sub-links > li > a {
		padding-left: 8px;
		font-size: var(--fz-14);
	}

	.l-footer-bottom-other {
		flex-direction: column-reverse;
		gap: var(--space-40);
	}

	.l-footer-bottom-other .copy {
		font-size: var(--fz-12);
		text-align: center;
	}

	.l-footer-bottom-other .other {
		justify-content: center;
	}

	.l-footer-bottom-other .other li + li::before {
		margin: 0 .2em;
	}
}

@media screen and (min-width: 769px) {
	.l-footer-top-box-request,
	.l-footer-top-box-download {
		transition: background .2s ease, color .2s ease;
	}

	.l-footer-top-box-request:hover {
		background: var(--white);
		color: var(--orange);
	}

	.l-footer-top-box-request:hover::before {
		background-image: url(../img/icon-request-circle-orange.svg);
	}

	.l-footer-top-box-request:hover::after {
		background-image: url(../img/icon-arrow-circle-orange.svg);
	}

	.l-footer-top-box-download:hover {
		background: var(--white);
		color: var(--blue-3);
	}

	.l-footer-top-box-download:hover::before {
		background-image: url(../img/icon-download-circle-blue.svg);
	}

	.l-footer-top-box-download:hover::after {
		background-image: url(../img/icon-arrow-circle-blue.svg);
	}
}



/* ========================================
COMPONENTS
======================================== */
.c-title {
	position: relative;
	padding: var(--space-20) 0 var(--space-32);
	font-size: var(--fz-32);
	font-weight: 700;
}

.c-title::before {
	content: '';
	background: linear-gradient(to right, var(--blue-3) 0%, var(--blue-3) 72%, var(--blue-2) 72%, var(--blue-2) 100%);
	position: absolute;
	inset: 0 auto auto 0;
	width: 50px;
	height: 3px;
}

.c-title.center {
	text-align: center;
}

.c-title.center::before {
	inset: 0 auto auto calc(50% - 25px);
}

@media screen and (max-width: 768px) {
	.c-title {
		font-size: var(--fz-24);
	}
}



/* ========================================
MAIN
======================================== */
main {
	padding-top: 138px;
}

@media screen and (max-width: 1240px) {
	main {
		padding-top: 68px;
	}
}

.l-inner {
	width: min(calc(100% - 100px), var(--content-width));
	margin: auto;
}

@media screen and (max-width: 768px) {
	.l-inner {
		width: min(calc(100% - 40px), var(--content-width));
	}
}



/* ========================================
LOW
======================================== */
.low-head {
	background: var(--blue-4) url(../img/low-head-bg.png) no-repeat center / auto 100%;
	color: var(--white);
	padding: var(--space-80) 0;
}

.low-head-title {
	font-size: var(--fz-48);
	font-weight: 700;
}

.low-head-lead {
	padding-top: var(--space-32);
	font-size: var(--fz-16);
	line-height: 1.7;
}

.low-breadcrumbs {
	padding: var(--space-16) 0;
}

.low-breadcrumbs.bg-gray {
	background: var(--gray-1);
}

.low-breadcrumbs ul {
	display: flex;
}

.low-breadcrumbs ul li {
	font-size: var(--fz-13);
	white-space: nowrap;
}

.low-breadcrumbs ul li + li::before {
	content: '/';
	margin: 0 6px;
}

.low-breadcrumbs ul li a {
	color: #0656AF;
}

@media screen and (max-width: 768px) {
	.low-head {
		background-size: cover;
		padding: var(--space-40) 0;
	}

	.low-head-title {
		font-size: var(--fz-32);
	}
	
	.low-head-lead {
		padding-top: var(--space-16);
		font-size: var(--fz-14);
	}
	
	.low-breadcrumbs {
		padding: 8px 0;
	}
	
	.low-breadcrumbs ul li:last-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}


.low-pager {
	display: flex;
	justify-content: center;
	gap: var(--space-20);
	padding-top: var(--space-32);
}

.low-pager li :is(a, span) {
	color: var(--blue-3);
	display: block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-weight: 500;
	font-family: var(--font-family-en);
	text-align: center;
}

.low-pager li :is(a, .current) {
	font-size: var(--fz-18);
	border: 1px solid var(--blue-3);
	border-radius: 50%;
}

.low-pager li .current {
	background: var(--blue-3);
	color: var(--white);
}

.low-pager li :is(.prev, .next) {
	position: relative;
	width: auto;
	border: none;
}

.low-pager li :is(.prev, .next)::before {
	content: '';
	background: url(../img/icon-arrow-gray.svg) no-repeat center / cover;
	display: inline-block;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	width: 10px;
	aspect-ratio: 10 / 18;
}

.low-pager li .prev::before {
	rotate: 180deg;
}

.low-pager li .number {
	font-size: var(--fz-14);
}

.low-pager li .number i {
	font-style: normal;
}



/* ========================================
COLUMN
======================================== */
.sec-column {
	padding: var(--space-80) 0;
}

.column-filter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: var(--space-32);
}

.column-filter-cat {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-16);
}

.column-filter-cat li a {
	background: var(--blue-1);
	color: var(--blue-3);
	display: block;
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
	transition: 0.2s;
}
@media (hover: hover) {
	.column-filter-cat li a:hover {
		background: var(--blue-3);
		color: var(--white);
	}
}

.column-filter-search {
	position: relative;
}

.column-filter-search input {
	background: var(--gray-1);
	font-size: var(--fz-14);
	font-weight: 500;
	padding: var(--space-12) var(--space-32) var(--space-12) var(--space-16);
	border: 1px solid var(--gray-2);
	border-radius: 0;
	outline: none;
}

.column-filter-search button {
	background: url(../img/icon-search.svg) no-repeat center / cover;
	position: absolute;
	inset: 50% 8px auto auto;
	translate: 0 -50%;
	width: 18px;
	aspect-ratio: 1 / 1;
	border: none;
}

.column-lists {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
	gap: var(--space-32);
}

.column-lists .thumb {
	margin-bottom: var(--space-16);
	overflow: hidden;
}

.column-lists .thumb img {
	aspect-ratio: 624 / 374;
	object-fit: cover;
	transition: .2s ease;
}

.column-lists .cat {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-10);
	padding-bottom: 8px;
}

.column-lists .cat span {
	background: var(--blue-1);
	color: var(--blue-3);
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
}

.column-lists .title {
	padding-bottom: 8px;
	font-size: var(--fz-16);
	font-weight: 700;
	line-height: 1.4;
	transition: .2s ease;
}

.column-lists .day {
	font-size: var(--fz-14);
	font-weight: 600;
	font-family: var(--font-family-en);
}
@media (hover: hover) {
	.column-lists li a:hover img,
	.sec-column-related .lists li a:hover img {
		scale: 1.05;
	}
	.column-lists li a:hover .title,
	.sec-column-related .lists li a:hover .title {
		color: var(--blue-3);
		text-decoration: underline;
	}
}

@media screen and (min-width: 769px) {
	.column-lists:not(.column-cat-lists) li:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}

	.column-lists:not(.column-cat-lists) li:first-child .title {
		font-size: var(--fz-20);
	}
}

@media screen and (max-width: 768px) {
	.sec-column {
		padding: var(--space-40) 0;
	}
	
	.column-filter {
		flex-direction: column;
		gap: 22px;
	}

	.column-lists {
		grid-template-columns: repeat(1, 1fr);
	}

	.column-lists .cat {
		padding-bottom: var(--space-10);
	}
}

.sec-column-detail {
	padding: var(--space-80) 0;
}

.sec-column-detail .row {
	display: flex;
	gap: var(--space-56);
}

.sec-column-detail-main {
	flex: 1;
}

.sec-column-detail-main-head {
	padding-bottom: 64px;
}

.sec-column-detail-main-head .cat {
	display: flex;
	gap: var(--space-10);
	padding-bottom: 8px;
}

.sec-column-detail-main-head .cat li {
	background: var(--blue-1);
	color: var(--blue-3);
	display: block;
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
}

.sec-column-detail-main-head .cat li.cat-industry {
	background: var(--blue-3);
	color: var(--white);
}

.sec-column-detail-main-head .title {
	padding-bottom: 8px;
	font-size: var(--fz-36);
	font-weight: 700;
}

.sec-column-detail-main-head .day {
	display: flex;
	gap: var(--space-16);
}

.sec-column-detail-main-head .day span {
	font-size: var(--fz-14);
	font-weight: 600;
}

.sec-column-detail-main-head .day span i {
	font-family: var(--font-family-en);
	font-style: normal;
}

.sec-column-detail-main-head .day span.update {
	color: var(--gray-3);
}

.sec-column-detail-main-lead {
	font-size: var(--fz-16);
	line-height: 1.4;
	white-space: pre-wrap;
	margin-bottom: var(--space-48);
}

.sec-column-detail-main-thumb {
	margin-bottom: var(--space-48);
}

.sec-column-detail-main-toc {
	background: var(--gray-1);
	margin-bottom: var(--space-48);
	padding: var(--space-24) var(--space-16) var(--space-32);
	border: none;
}

.sec-column-detail-main-toc .toc_title {
	padding-bottom: var(--space-24);
	font-size: var(--fz-20);
	font-weight: 800;
}

.sec-column-detail-main-toc .toc_list li + li{
	margin-top: 8px;
}

.sec-column-detail-main-toc .toc_list a {
	display: inline-block;
	position: relative;
	padding-left: var(--space-16);
	font-size: var(--fz-14);
	font-weight: 700;
	text-decoration: 1px underline;
	text-underline-offset: 2px;
}

.sec-column-detail-main-toc .toc_list a::before {
	content: '';
	background: var(--blue-3);
	position: absolute;
	inset: 6px auto auto 0;
	width: 9px;
	aspect-ratio: 1 / 1;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%);
}

.sec-column-detail-main-toc .toc_list a + ul {
	margin: 8px auto auto var(--space-12);
}

.sec-column-detail-main-toc .toc_list a + ul a::before {
	background: var(--black);
}

.sec-column-detail-main-assignment {
	background: var(--gray-1);
	margin-bottom: var(--space-48);
    padding: var(--space-24) var(--space-24) var(--space-32);
}

.sec-column-detail-main-assignment .assignment-title {
	padding-bottom: var(--space-24);
	font-size: var(--fz-20);
	font-weight: 800;
	text-align: center;
}

.sec-column-detail-main-assignment .assignment-lists li {
	position: relative;
	padding-left: var(--space-32);
	font-size: var(--fz-16);
	font-weight: 700;
	word-break: break-all;
}

.sec-column-detail-main-assignment .assignment-lists li + li {
	margin-top: var(--space-24);
}

.sec-column-detail-main-assignment .assignment-lists li::before {
	content: '';
	background: url(../img/icon-check-circle-blue.svg) no-repeat center / cover;
	display: inline-block;
	position: absolute;
	inset: 0 auto auto 0;
	width: 24px;
	aspect-ratio: 1 / 1;
}

.sec-column-detail-main-content > * + * {
	margin-top: var(--space-8);
}

.sec-column-detail-main-content {
	counter-reset: num 0;
}

.sec-column-detail-main-content h2 {
	background: var(--blue-5);
	color: var(--white);
	position: relative;
	margin-top: var(--space-80);
	margin-bottom: var(--space-24);
	padding: 8px var(--space-24);
}

.sec-column-detail-main-content h2::before {
	counter-increment: num 1;
	content: counter(num) ". ";
}

.sec-column-detail-main-content h3 {
	font-size: var(--fz-24);
	font-weight: 700;
	margin-top: var(--space-56);
	margin-bottom: var(--space-24);
}

.sec-column-detail-main-content p {
	font-size: var(--fz-15);
	line-height: 1.8;
}

.sec-column-detail-main-content p span.yellow {
	background: linear-gradient(transparent 40%, #FFFA66 60%);
}

.sec-column-detail-main-content ul li {
	position: relative;
	padding-left: 1em;
	font-size: var(--fz-15);
	line-height: 1.8;
}

.sec-column-detail-main-content ul li::before {
	content: '';
	background: var(--black);
	position: absolute;
	inset: 12px auto auto calc(.5em - 2px);
	width: 4px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}

.sec-column-detail-main-content table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border-right: 1px solid var(--gray-2);
	border-bottom: 1px solid var(--gray-2);
}

.sec-column-detail-main-content table thead {
	background: var(--blue-4);
	color: var(--white);
}

.sec-column-detail-main-content table tr {
	display: flex;
}

.sec-column-detail-main-content table tr > *:first-child {
	width: 300px;
}

.sec-column-detail-main-content table tr > *:not(:first-child) {
	flex: 1;
}

.sec-column-detail-main-content table :is(th, td) {
	padding: var(--space-14) var(--space-16);
	font-size: var(--fz-16);
	text-align: left;
	vertical-align: middle;
	border-left: 1px solid var(--gray-2);
	border-top: 1px solid var(--gray-2);
}

.sec-column-detail-main-content table th {
	font-weight: 700;
}

.sec-column-detail-main-content .box {
	background: var(--gray-1);
	padding: var(--space-24) var(--space-16) var(--space-32);
}

.sec-column-detail-main-content .box p {
	padding-bottom: var(--space-16);
	font-size: var(--fz-18);
	font-weight: 700;
}

.sec-column-detail-main-content .cta {
	background: var(--blue-3) url(../img/low-cta-bg.png) no-repeat center / auto 100%;
	padding: var(--space-32) var(--space-24);
}

.sec-column-detail-main-content .cta .title {
	color: #fff;
	padding-bottom: var(--space-16);
	font-size: var(--fz-16);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.sec-column-detail-main-content .cta .title span {
	display: block;
	font-size: var(--fz-32);
}
.sec-column-detail-main-content .cta .title img {
	max-width: 200px;
	height: auto;
	margin: 0 auto;
}

.sec-column-detail-main-content .cta .buttons {
	background: rgba(255, 255, 255, .6);
	display: flex;
	justify-content: center;
	gap: var(--space-20);
	width: max-content;
	margin: auto;
	padding: var(--space-16);
}

.sec-column-detail-main-content .cta .buttons .download a {
	background: var(--blue-3);
}

.sec-column-detail-main-content .cta .buttons .request a {
	background: var(--orange);
}

.sec-column-detail-main-content .cta .buttons a {
	color: #fff;
	display: block;
	width: 222px;
	padding: var(--space-16) 0 var(--space-16) var(--space-24);
	font-size: var(--fz-16);
	font-weight: 700;
}

.sec-column-detail-main-content .cta .buttons a::after {
	content: '';
	background: url(../img/icon-arrow-circle.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-left: var(--space-24);
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	.sec-column-detail-main-head .title {
		font-size: var(--fz-24);
	}
	.sec-column-detail-main-content h2 {
		font-size: var(--fz-20)
	}
	.sec-column-detail-main-content h3 {
		font-size: var(--fz-20);
	}
	.sec-column-detail {
		padding: var(--space-40) 0;
	}

	.sec-column-detail-main-content table tr > *:first-child {
		width: auto;
		flex: 1;
	}

	.sec-column-detail-main-content .cta .buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.sec-column-detail-main-content .cta .buttons a {
		width: 100%;
		text-align: center;
	}
	.sec-column-detail-main-content table :is(th, td) {
		font-size: var(--fz-14);
	}
}

.aside {
	width: 320px;
}

.aside > * + * {
	margin-top: var(--space-32);
}

.aside .aside-title {
	padding-bottom: var(--space-16);
	font-size: var(--fz-18);
	font-weight: 700;
}

.aside .cta {
	background: var(--blue-3) url(../img/low-aside-cta-bg.png) no-repeat center / cover;
	padding: var(--space-32) var(--space-24);
}

.aside .cta .title {
	color: #fff;
	padding-bottom: var(--space-32);
	font-size: var(--fz-15);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.aside .cta .title span {
	display: block;
	font-size: var(--fz-32);
}

.aside .cta .title img {
	max-width: 200px;
	height: auto;
	margin: 0 auto;
}

.aside .cta .buttons {
	background: rgba(255, 255, 255, .6);
	display: flex;
	flex-direction: column;
	gap: var(--space-20);
	padding: var(--space-16);
}

.aside .cta .buttons .download a {
	background: var(--blue-3);
	border: 1px solid var(--blue-3);
}

.aside .cta .buttons .request a {
	background: var(--orange);
	border: 1px solid var(--orange);
}

.aside .cta .buttons a {
	color: #fff;
	display: block;
	padding: var(--space-16) 0;
	font-size: var(--fz-16);
	font-weight: 700;
	text-align: center;
}

.aside .cta .buttons a::after {
	content: '';
	background: url(../img/icon-arrow-circle.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-left: var(--space-24);
	vertical-align: bottom;
}

.aside .service .lists li + li {
	margin-top: var(--space-24);
}

.aside .service .lists li a {
	display: block;
	position: relative;
	padding-bottom: var(--space-16);
	font-size: var(--fz-15);
	font-weight: 700;
	border-bottom: 1px solid var(--gray-3);
	transition: .2s ease;
}

.aside .service .lists li a::before {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	position: absolute;
	inset: 0 0 auto auto;
	width: 24px;
	aspect-ratio: 1 / 1;
	transition: .2s ease;
}

@media (hover: hover) {
	.aside .service .lists li a:hover {
		color: var(--blue-3);
	}
	.aside .service .lists li a:hover::before {
		transform: translateX(10%);
	}
}

.aside .cat .lists {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-10);
}

.aside .cat .lists li a {
	background: var(--blue-1);
	color: var(--blue-3);
	display: block;
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
	transition: .2s ease;
}
@media (hover: hover) {
	.aside .cat .lists li a:hover {
		background: var(--blue-3);
		color: var(--blue-1);
	}
}

.aside .related .lists li + li {
	margin-top: 8px;
}

.aside .related .lists li a {
	display: flex;
	align-items: center;
	gap: var(--space-16);
}

.aside .related .lists li .thumb {
	width: 104px;
	overflow: hidden;
}

.aside .related .lists li .thumb img {
	aspect-ratio: 104 / 87;
	object-fit: cover;
	transition: .2s ease;
}

.aside .related .lists li .text {
	flex: 1;
}

.aside .related .lists li .text .title {
	margin-bottom: 8px;
	font-size: var(--fz-14);
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	transition: .2s ease;
}

.aside .related .lists li .text .day {
	font-size: var(--fz-14);
	font-weight: 600;
	font-family: var(--font-family-en);
}

@media (hover: hover) {
	.aside .related .lists li a:hover img {
		scale: 1.05;
	}
	.aside .related .lists li a:hover .title {
		color: var(--blue-3);
		text-decoration: underline;
	}
}

@media screen and (max-width: 1240px) {
	.aside {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.aside .cta .buttons a {
		transition: background .2s ease, color .2s ease;
	}

	.aside .cta .buttons .download a:hover {
		background: var(--white);
		color: var(--blue-3);
	}

	.aside .cta .buttons .download a:hover::after {
		background-image: url(../img/icon-arrow-circle-blue.svg);
	}

	.aside .cta .buttons .request a:hover {
		background: var(--white);
		color: var(--orange);
	}

	.aside .cta .buttons .request a:hover::after {
		background-image: url(../img/icon-arrow-circle-orange.svg);
	}
}

.sec-column-related {
	padding: var(--space-80) 0;
}

.sec-column-related .lists {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-32);
}

.sec-column-related .lists .thumb {
	margin-bottom: var(--space-16);
	overflow: hidden;
}

.sec-column-related .lists .thumb img {
	aspect-ratio: 297 / 177;
	object-fit: cover;
	transition: .2s ease;
}

.sec-column-related .lists .cat {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-10);
	padding-bottom: 8px;
}

.sec-column-related .lists .cat span {
	background: var(--blue-1);
	color: var(--blue-3);
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
}

.sec-column-related .lists .title {
	margin-bottom: 8px;
	font-size: var(--fz-16);
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	transition: .2s ease;
}

.sec-column-related .lists .day {
	font-size: var(--fz-14);
	font-weight: 600;
	font-family: var(--font-family-en);
}

.sec-column-related .button {
	padding-top: var(--space-32);
	text-align: right;
}

.sec-column-related .button a {
	font-size: var(--fz-16);
	font-weight: 700;
	transition: .2s ease;
}

.sec-column-related .button a::after {
	content: '';
	background: url(../img/icon-arrow-circle-gray.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-left: 8px;
	vertical-align: bottom;
	transition: .2s ease;
}

@media (hover: hover) {
	.sec-column-related .button a:hover {
		color: var(--blue-3);
	}
	.sec-column-related .button a:hover::after {
		transform: translateX(10%);
	}
}

@media screen and (max-width: 1240px) {
	.sec-column-related {
		padding: var(--space-40) 0;
	}

	.sec-column-related .lists {
		display: flex;
		overflow: scroll;
	}
	
	.sec-column-related .lists li a {
		display: block;
		width: 240px;
	}
}

.sec-column-service {
	padding: var(--space-80) 0;
}

@media screen and (max-width: 768px) {
	.sec-column-service {
		padding: var(--space-40) 0;
	}
}



/* ========================================
CASE
======================================== */
.sec-case {
	padding: var(--space-80) 0;
}

.case-filter-cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-16);
	padding-bottom: var(--space-32);
}

.case-filter-cat li a {
	background: var(--blue-1);
	color: var(--blue-3);
	display: block;
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
}

.case-lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-24);
}

.case-lists a {
	background: var(--gray-1);
	display: block;
	height: 100%;
	padding: var(--space-16);
}

.case-lists .thumb {
	margin-bottom: var(--space-24);
	overflow: hidden;
}

.case-lists .thumb img {
	aspect-ratio: 380 / 227;
	object-fit: cover;
	transition: .2s ease;
}

.case-lists .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-bottom: var(--space-16);
}

.case-lists .cat span {
	background: var(--white);
	color: var(--blue-3);
	display: block;
	padding: 4px var(--fz-12);
	font-size: var(--fz-14);
	font-weight: 500;
	line-height: 1;
	border-radius: 50px;
}

.case-lists .cat span.cat-industry{
	background: var(--blue-3);
	color: var(--white);
}

.case-lists .title {
	padding-bottom: var(--space-32);
	font-size: var(--fz-18);
	font-weight: 700;
	border-bottom: 1px solid var(--gray-2);
	transition: .2s ease;
}

.case-lists .company {
	display: flex;
	align-items: center;
	gap: var(--space-10);
	padding-top: var(--space-16);
}

.case-lists .company-thumb {
	width: 96px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.case-lists .company-thumb img {
	max-width: 75%;
    max-height: 60%;
}

.case-lists .company-title {
	flex: 1;
	font-size: var(--fz-16);
	font-weight: 500;
}

@media (hover: hover) {
	.case-lists a:hover .thumb img {
		scale: 1.05;
	}
	.case-lists a:hover .title {
		color: var(--blue-3);
	}
}

@media screen and (max-width: 768px) {
	.sec-case {
		padding: var(--space-40) 0;
	}
	
	.case-filter-cat {
		justify-content: flex-start;
	}
	
	.case-lists {
		grid-template-columns: repeat(1, 1fr);
	}
}

.sec-achieve {
	background: var(--blue-4) url(../img/low-sec-achieve-bg.png) no-repeat center bottom / 100% auto;
	padding: var(--space-80) 0;
}

.sec-achieve :is(h2.c-title, .lead) {
	color: var(--white);
}

.sec-achieve .lead {
	padding-bottom: var(--space-32);
	font-size: var(--fz-16);
}

.achieve-lists {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-24);
}

.achieve-lists > li {
	background: var(--gray-1);
	padding: var(--space-24);
}

.achieve-enterprise {
	grid-column: span 2;
}

.achieve-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: var(--space-24);
}

.achieve-title {
	font-size: var(--fz-24);
	font-weight: 700;
}

.achieve-number {
	color: var(--blue-3);
	font-size: var(--fz-16);
	font-weight: 700;
}

.achieve-number span {
	font-size: var(--fz-32);
	line-height: 1;
}

.achieve-text {
	color: var(--gray-4);
	font-size: var(--fz-15);
	line-height: 1.6;
}

.achieve-enterprise-lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-16);
}

.achieve-enterprise-lists > li {
	background: var(--white);
	padding: var(--space-24) var(--space-16);
}

.achieve-enterprise-title {
	padding-bottom: var(--space-16);
	font-size: var(--fz-16);
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.sec-achieve {
		padding: var(--space-40) 0;
	}
	
	.achieve-lists {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.achieve-head {
		flex-direction: column;
		gap: 8px;
	}

	.achieve-enterprise {
		grid-column: span 1;
	}
	
	.achieve-enterprise-lists {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* block editer costom */
.sec-column-detail .has-background {
    background-color: var(--gray-1) !important;
	margin: var(--space-24) 0;
}

.sec-column-detail .wp-block-image img,
.sec-column-detail .wp-block-table table {
	margin: var(--space-24) 0 !important;
}

.sec-column-detail .wp-block-table thead {
	border-bottom: 0;
}

.sec-column-detail .wp-block-paragraph a {
	color: var(--blue-3);
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (hover: hover){
	.sec-column-detail .wp-block-paragraph a:hover{ text-decoration: none; }
}