@charset "UTF-8";
/*
    Template: swell
    Theme Name: tokusho_theme
    Description: トクショーテーマ
    Version: 1.0.0
    Author: Shou Aoi
*/

/* =========================================================
   共通
========================================================= */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

[id] {
	scroll-margin-top: 90px;
}

@media (max-width: 959px) {
	html {
		scroll-padding-top: 76px;
	}

	[id] {
		scroll-margin-top: 76px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body.tks-front {
	margin: 0;
}

body.tks-front .l-header,
body.tks-front #breadcrumb,
body.tks-front .l-footer {
	display: none;
}

.tks-main {
	margin: 0;
}
@media screen and (min-width: 600px){
  .spbr{
    display: none;
  }
}

/* =========================================================
   ヘッダー
========================================================= */

.tks-header {
	position: fixed;
	top: 20px;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 0 30px;
}

.tks-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	max-width: 1400px;
	height: 92px;
	margin: 0 auto;
	padding: 0 42px 0 28px;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(10px);
}

.tks-header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.tks-header__logo img {
	display: block;
	width: 50px;
	height: auto;
}

.tks-header__logo span {
	font-size: clamp(15px, 1.2vw, 20px);
	white-space: nowrap;
}

.tks-header__nav {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

.tks-header__nav>a,
.tks-header__nav-item>a {
	position: relative;
	display: flex;
	align-items: center;
	height: 76px;
	color: #111;
	font-size: clamp(13px, 1.05vw, 18px);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.25s ease, font-weight 0.25s ease;
}

.tks-header__nav>a::after,
.tks-header__nav-item>a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 0;
	height: 2px;
	background: #2f72b8;
	transform: translateX(-50%);
	transition: width 0.25s ease;
}

.tks-header__nav>a:hover,
.tks-header__nav-item:hover>a {
	color: #2f72b8;
	font-weight: 700;
}

.tks-header__nav>a:hover::after,
.tks-header__nav-item:hover>a::after {
	width: 100%;
}

.tks-header__nav-item {
	position: relative;
	display: flex;
	align-items: center;
	height: 76px;
}

.tks-header__submenu {
	position: absolute;
	top: calc(100% - 8px);
	left: 50%;
	z-index: 101;
	display: flex;
	flex-direction: column;
	min-width: 170px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	backdrop-filter: blur(10px);
}

.tks-header__nav-item:hover .tks-header__submenu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.tks-header__submenu a {
	display: block;
	padding: 10px 12px;
	color: #111;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 6px;
	transition: color 0.25s ease, background 0.25s ease;
}

.tks-header__submenu a:hover {
	color: #2f72b8;
	background: rgba(47, 114, 184, 0.08);
}

.tks-header__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 144px;
	height: 48px;
	margin-left: 28px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	background: #2f72b8;
	border-radius: 6px;
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.tks-header__contact:hover {
	background: #2264a7;
	transform: scale(1.06);
	box-shadow: 0 8px 18px rgba(47, 114, 184, 0.28);
}

.tks-menu-check {
	display: none;
}

.tks-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
}

.tks-menu-btn span {
	display: block;
	width: 26px;
	height: 2px;
	background: #222;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.tks-header__mobile-head,
.tks-header__mobile-contact {
	display: none;
}

@media (max-width: 959px) {
	.tks-header {
		top: 12px;
		padding: 0 8px;
	}

	.tks-header__inner {
		position: relative;
		width: 100%;
		height: 64px;
		padding: 0 16px;
	}

	.tks-header__logo img {
		width: 40px;
	}

	.tks-header__contact {
		display: none;
	}

	.tks-menu-btn {
		display: flex;
		margin-left: auto;
	}

	.tks-header__nav {
		position: fixed;
		top: 82px;
		left: 8px;
		right: 8px;
		z-index: 199;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 0;
		width: auto;
		height: calc(100vh - 110px);
		padding: 34px 24px;
		background: rgba(255, 255, 255, 0.92);
		border-radius: 8px;
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
		backdrop-filter: blur(10px);
	}
.tks-header__mobile-head {
	display: block;
	width: 100%;
	margin-bottom: 18px;
	padding-bottom: 18px;
	text-align: center;
	border-bottom: 1px solid rgba(47, 114, 184, 0.18);
}

.tks-header__mobile-head span {
	display: block;
	color: #2f72b8;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.16em;
}

.tks-header__mobile-head p {
	margin: 12px auto 0;
	color: rgba(0, 0, 0, 0.68);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.03em;
}

.tks-header__mobile-contact {
	display: block;
	width: 100%;
	margin-top: 22px;
	padding-top: 24px;
	border-top: 1px solid rgba(47, 114, 184, 0.18);
}

.tks-header__mobile-contact-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: 0 42px 0 18px;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(90deg, #5aa4e8 0%, #174f9f 100%);
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(47, 114, 184, 0.24);
}

.tks-header__mobile-contact-button::after {
	content: "›";
	position: absolute;
	right: 20px;
	top: 50%;
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	transform: translateY(-50%);
}

.tks-header__mobile-tel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 16px;
}

.tks-header__mobile-tel div {
	padding: 14px 10px;
	text-align: center;
	background: rgba(47, 114, 184, 0.08);
	border: 1px solid rgba(47, 114, 184, 0.14);
	border-radius: 12px;
}

.tks-header__mobile-tel span {
	display: block;
	margin-bottom: 6px;
	color: #2f72b8;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.08em;
}

.tks-header__mobile-tel a,
.tks-header__mobile-tel strong {
	display: block;
	color: #111;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.tks-header__mobile-contact p {
	margin: 12px 0 0;
	color: rgba(0, 0, 0, 0.62);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

	.tks-menu-check:checked~.tks-header__nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.tks-header__nav>a,
	.tks-header__nav-item>a {
		justify-content: center;
		width: 100%;
		height: auto;
		padding: 12px 0;
		font-size: 17px;
		font-weight: 700;
		text-align: center;
	}

	.tks-header__nav>a::after,
	.tks-header__nav-item>a::after {
		display: none;
	}

	.tks-header__nav-item {
		display: block;
		width: 100%;
		height: auto;
		text-align: center;
	}

	.tks-header__submenu {
		position: static;
		left: auto;
		top: auto;
		display: flex;
		width: 100%;
		min-width: 0;
		padding: 0 0 12px;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		backdrop-filter: none;
	}

	.tks-header__nav-item:hover .tks-header__submenu {
		transform: none;
	}

	.tks-header__submenu a {
		width: 100%;
		padding: 8px 0;
		color: #2f72b8;
		font-size: 14px;
		font-weight: 600;
		text-align: center;
		background: transparent;
	}

	.tks-header__submenu a::before {
		content: "− ";
	}

	.tks-header__submenu a:hover {
		color: #174f8b;
		background: transparent;
	}

	.tks-menu-check:checked~.tks-menu-btn span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.tks-menu-check:checked~.tks-menu-btn span:nth-child(2) {
		opacity: 0;
	}

	.tks-menu-check:checked~.tks-menu-btn span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* =========================================================
   固定背景
========================================================= */

.tks-fixed-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.tks-fixed-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tks-fixed-bg__glass {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	backdrop-filter: blur(0);
}

/* =========================================================
   ヒーロー
========================================================= */

.tks-hero {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tks-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	padding: 64px 20px 0;
	color: #fff;
	text-align: center;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.tks-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

.tks-hero__title span {
	display: block;
}

.tks-hero__lead {
	margin: 14px 0 0;
	color: #fff;
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: 500;
	letter-spacing: 0.06em;
}

.tks-hero__title,
.tks-hero__lead {
	opacity: 0;
	filter: blur(18px);
	transform: scale(1.04);
	animation: tksInkReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tks-hero__lead {
	animation-delay: 0.35s;
}

@keyframes tksInkReveal {
	0% {
		opacity: 0;
		filter: blur(22px);
		transform: scale(1.07);
		text-shadow: 0 0 24px rgba(255, 255, 255, 0.9), 0 3px 14px rgba(0, 0, 0, 0.35);
	}

	45% {
		opacity: 0.72;
		filter: blur(9px);
		transform: scale(1.025);
		text-shadow: 0 0 18px rgba(255, 255, 255, 0.75), 0 3px 14px rgba(0, 0, 0, 0.35);
	}

	100% {
		opacity: 1;
		filter: blur(0);
		transform: scale(1);
		text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
	}
}

@media (max-width: 959px) {
	.tks-hero {
		min-height: 100svh;
	}

	.tks-hero__content {
		min-height: 100svh;
		padding: 110px 20px 0;
	}

	.tks-hero__title {
		font-size: 30px;
		line-height: 1.55;
	}

	.tks-hero__lead {
		font-size: 14px;
		line-height: 1.8;
	}
}

/* =========================================================
   私たちについて 導入
========================================================= */

.tks-about-intro {
	position: relative;
	z-index: 2;
	min-height: 120vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 20px;
	text-align: center;
	color: #111;
	background: transparent;
}

.tks-about-intro__content {
	width: min(760px, calc(100% - 40px));
	margin: 0 auto;
	opacity: 0;
	filter: blur(20px);
	transform: translateY(40px);
	transition:
		opacity 0.6s ease,
		filter 0.6s ease,
		transform 0.6s ease;
}

.tks-about-intro.is-visible .tks-about-intro__content {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.tks-about-intro__title {
	margin: 0 0 34px;
	font-size: clamp(22px, 2.1vw, 34px);
	font-weight: 800;
	line-height: 1.7;
	letter-spacing: 0.04em;
}

.tks-about-intro__title span {
	display: block;
}

.tks-about-intro__text {
	font-size: clamp(14px, 1.1vw, 17px);
	font-weight: 500;
	line-height: 2.1;
	letter-spacing: 0.03em;
}

.tks-about-intro__text p {
	margin: 0 0 28px;
}

.tks-about-intro__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 959px) {
	.tks-about-intro {
		min-height: 110vh;
		padding: 90px 16px;
	}

	.tks-about-intro__content {
		width: 100%;
	}

	.tks-about-intro__title {
		margin-bottom: 28px;
		font-size: 22px;
		line-height: 1.75;
	}

	.tks-about-intro__text {
		font-size: 14px;
		line-height: 2;
	}

	.tks-about-intro__text p {
		margin-bottom: 24px;
	}
}

/* =========================================================
   事業内容
========================================================= */

.tks-service {
	position: relative;
	z-index: 3;
	padding: 120px 20px 130px;
	background: #fff;
	color: #111;
}

.tks-service__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-service__heading {
	display: inline-block;
	position: relative;
	margin-bottom: 54px;
}

.tks-service__heading::before {
	content: "";
	position: absolute;
	top: -30px;
	left: -50px;
	z-index: 0;
	width: 300px;
	height: 300px;
	background: url("/wp-content/uploads/2026/04/simb-b.webp") no-repeat center / contain;
	opacity: 1;
}

.tks-service__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(13em + 20px);
	height: 72px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-service.is-visible .tks-service__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-service__title {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: none;
}

.tks-service.is-visible .tks-service__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-service__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	filter: blur(10px);
}

.tks-service.is-visible .tks-service__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-service__lead {
	position: relative;
	z-index: 2;
	margin: 14px 0 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.9;
}

.tks-service__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 36px;
	perspective: 1000px;
}

.tks-service-card {
	position: relative;
	min-height: 185px;
	overflow: visible;
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: translateY(34px);
	transform-style: preserve-3d;
	transform-origin: center;
	transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.4s ease;
	will-change: transform;
}

.tks-service.is-visible .tks-service-card {
	animation: tksFadeUp 0.75s ease forwards;
}

.tks-service.is-visible .tks-service-card:nth-child(1) {
	animation-delay: 0.25s;
}

.tks-service.is-visible .tks-service-card:nth-child(2) {
	animation-delay: 0.4s;
}

.tks-service.is-visible .tks-service-card:nth-child(3) {
	animation-delay: 0.55s;
}

.tks-service-card.is-ready,
.tks-service-bottom.is-ready {
	opacity: 1;
	animation: none !important;
	transform: translateY(0);
}

.tks-service-card.is-hovered,
.tks-service-bottom.is-hovered {
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.tks-service-card.is-ready:hover,
.tks-service-bottom.is-ready:hover {
	transform: translateY(-4px) scale(1.012);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.tks-service-card__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	border-radius: 14px;
}

.tks-service-card__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 14px;
}

.tks-service-card__object {
	position: absolute;
	z-index: 4;
	object-fit: contain;
	filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.35));
	pointer-events: none;
}

.tks-service-card:nth-child(1) .tks-service-card__object {
	right: -12px;
	bottom: -16px;
	max-width: 42%;
	max-height: 120%;
}

.tks-service-card:nth-child(2) .tks-service-card__object {
	right: -8px;
	bottom: -14px;
	max-width: 42%;
	max-height: 115%;
}

.tks-service-card:nth-child(3) .tks-service-card__object {
	right: -18px;
	bottom: -18px;
	max-width: 46%;
	max-height: 100%;
}

.tks-service-card__content {
	position: relative;
	z-index: 5;
	width: 72%;
	padding: 28px 24px;
	color: #fff;
}

.tks-service-card__content h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.tks-service-card__content p {
	margin: 0;
	color: #fff;
	font-size: 13px;
	line-height: 1.75;
}

.tks-service-bottom {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	border-radius: 18px;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: translateY(34px);
	transition: transform 0.32s ease, box-shadow 0.32s ease, opacity 0.45s ease;
}

.tks-service.is-visible .tks-service-bottom {
	animation: tksFadeUp 0.75s ease 0.72s forwards;
}

.tks-service-bottom::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.74);
}

.tks-service-bottom__content {
	position: relative;
	z-index: 1;
	min-height: 210px;
	padding: 42px 54px;
	color: #fff;
	text-align: center;
}

.tks-service-bottom__content h3 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
}

.tks-service-bottom__content p {
	margin: 0 auto;
	max-width: 820px;
	color: #fff;
	font-size: 15px;
	line-height: 1.9;
}

.tks-service-bottom__link {
	position: absolute;
	right: 28px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.tks-service-bottom__link::after {
	content: "›";
	width: 38px;
	height: 38px;
	display: inline-flex;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	color: #fff;
	font-size: 30px;
	font-weight: 300;
	line-height: 1;
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.tks-service-bottom__link:hover::after {
	transform: translateX(4px);
	background-color: rgba(255, 255, 255, 0.12);
}

@keyframes tksHeadingBgBox {
	0% {
		transform: scaleX(0);
		transform-origin: left center;
	}

	46% {
		transform: scaleX(1);
		transform-origin: left center;
	}

	62% {
		transform: scaleX(1);
		transform-origin: left center;
	}

	100% {
		transform: scaleX(0);
		transform-origin: left center;
	}
}

@keyframes tksHeadingText {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes tksBlurFade {
	0% {
		opacity: 0;
		filter: blur(10px);
	}

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

@keyframes tksFadeUp {
	0% {
		opacity: 0;
		transform: translateY(34px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 959px) {
.tks-service-bottom__content{
        padding: 35px 30px 70px;

}
	.tks-service {
		padding: 82px 40px 92px;
	}

	.tks-service__cards {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.tks-service-card {
		min-height: 210px;
	}

	.tks-service-bottom__link {
		right: 20px;
		bottom: 20px;
	}
}

/* =========================================================
   私たちの使命　+　選ばれる理由
========================================================= */
.tks-mission-reason {
	position: relative;
	z-index: 3;
}

.tks-mission-reason__sticky {
	position: sticky;
	top: 0;
	z-index: 1;
	height: 100vh;
	overflow: hidden;
}

.tks-mission {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
	padding: 0;
	color: #fff;
	background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url("/wp-content/uploads/2026/04/mission.webp") center / cover no-repeat;
}

.tks-mission__inner {
	display: grid;
	grid-template-columns: minmax(0, 55%) minmax(0, 45%);
	align-items: center;
	width: 100%;
	margin: 0;
}

.tks-mission__content {
	position: relative;
	z-index: 2;
	padding-left: max(40px, calc((100vw - 1120px) / 2));
	padding-right: 52px;
}

.tks-mission__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 32px;
}

.tks-mission__heading::before {
	content: "";
	position: absolute;
	top: -30px;
	left: -50px;
	z-index: 0;
	width: 300px;
	height: 300px;
	background: url("/wp-content/uploads/2026/04/simb-w.webp") no-repeat center / contain;
	opacity: 0.2;
}

.tks-mission__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 72px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-mission__title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
}

.tks-mission__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	color: #2f72b8;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.1em;
	opacity: 0;
	filter: blur(10px);
}

.tks-mission__lead,
.tks-mission__text,
.tks-mission__button {
	opacity: 0;
	transform: translateY(28px);
}

.tks-mission__lead {
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(23px, 1.8vw, 32px);
	font-weight: 800;
	line-height: 1.55;
	letter-spacing: 0.04em;
}

.tks-mission__text {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
}

.tks-mission__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 360px;
	min-height: 58px;
	margin-top: 34px;
	padding: 0 28px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(90deg, #5aa4e8 0%, #174f9f 100%);
	border-radius: 6px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.tks-mission__button:hover {
	transform: scale(1.06);
	box-shadow: 0 12px 26px rgba(47, 114, 184, 0.35), 0 0 18px rgba(90, 164, 232, 0.55);
	filter: brightness(1.08);
}

.tks-mission__image {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
	border-radius: 56px 0 0 56px;
	opacity: 0;
	transform: translateX(90px);
}

.tks-mission__image img {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
	object-position: center;
}

.tks-mission__marquee {
	position: absolute;
	bottom: -10px;
	z-index: 1;
	width: 100%;
	margin-top: 72px;
	overflow: hidden;
}

.tks-mission__marquee2 {
	position: absolute;
	top: -5px;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}

.tks-mission__marquee-track {
	display: flex;
	width: max-content;
	animation: tksMissionMarquee 30s linear infinite;
}

.tks-mission__marquee span,
.tks-mission__marquee2 span {
	display: block;
	padding-right: 60px;
	color: rgba(255, 255, 255, 0.22);
	font-size: clamp(70px, 11vw, 170px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.tks-mission.is-visible .tks-mission__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-mission.is-visible .tks-mission__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-mission.is-visible .tks-mission__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-mission.is-visible .tks-mission__lead {
	animation: tksFadeUp 0.75s ease 1.12s forwards;
}

.tks-mission.is-visible .tks-mission__text {
	animation: tksFadeUp 0.75s ease 1.28s forwards;
}

.tks-mission.is-visible .tks-mission__button {
	animation: tksFadeUp 0.75s ease 1.44s forwards;
}

.tks-mission.is-visible .tks-mission__image {
	animation: tksMissionImageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.tks-reason {
	position: relative;
	z-index: 2;
	padding-top: 120px;
	padding-bottom: 160px;
	background: #fff;
}

.tks-reason__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 0 40px;
}

.tks-reason__heading {
	position: relative;
	z-index: 0;
	z-index: 0;
	display: inline-block;
	margin-bottom: 90px;
	background: #fff;
}

.tks-reason__heading::before {
	content: "";
	position: absolute;
	top: -30px;
	left: -80px;
	z-index: -100;
	width: 280px;
	height: 280px;
	background: url("/wp-content/uploads/2026/04/simb-b.webp") no-repeat center / contain;
	opacity: 0.8;
}

.tks-reason__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(300px + 60px);
	height: 72px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-reason__title {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
}

.tks-reason__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	filter: blur(10px);
}

.tks-reason__lead {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 18px 0 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: translateY(28px);
}

.tks-reason__stack {
	position: relative;
}

.tks-reason__cards {
	position: relative;
	z-index: 10;
	height: 100%;
}

.tks-reason-card {
	position: sticky;
	top: clamp(72px, calc(50vh - 315px), 220px);
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 430px);
	align-items: center;
	gap: 72px;
	min-height: 430px;
	margin-bottom: 0;
	padding: 100px 0;
	background: #fff;
	border-top: 0;
	box-shadow: none;
}

.tks-reason-card::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 1;
	width: 100vw;
	background: #fff;
	transform: translateX(-50%);
}

.tks-reason-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
	height: 1px;
	background: rgba(0, 0, 0, 0.22);
}

.tks-reason-card.is-passed::after {
	opacity: 0;
}

.tks-reason-card__body,
.tks-reason-card__image {
	position: relative;
	z-index: 3;
}

.tks-reason-card:nth-child(1) {
	z-index: 11;
}

.tks-reason-card:nth-child(2) {
	z-index: 12;
}

.tks-reason-card:nth-child(3) {
	z-index: 13;
}

.tks-reason-card:nth-child(4) {
	z-index: 14;
}

.tks-reason-card__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.tks-reason-card__label span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	background: #111;
}

.tks-reason-card__label em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 22px;
	color: #111;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	border: 1px solid #111;
	border-radius: 999px;
}

.tks-reason-card__title {
	margin: 0 0 22px;
	padding-bottom: 22px;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 900;
	line-height: 1.65;
	border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.tks-reason-card__catch {
	margin: 0 0 18px;
	color: #2f72b8;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.6;
}

.tks-reason-card__catch::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 20px;
	margin-right: 8px;
	background: #2f72b8;
	vertical-align: -4px;
}

.tks-reason-card__text {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.03em;
}

.tks-reason-card__image img {
	display: block;
	width: 100%;
	height: 290px;
	object-fit: cover;
	border-radius: 12px;
}

.tks-reason.is-visible .tks-reason__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-reason.is-visible .tks-reason__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-reason.is-visible .tks-reason__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-reason.is-visible .tks-reason__lead {
	animation: tksFadeUp 0.75s ease 1.12s forwards;
}

@keyframes tksMissionImageIn {
	0% {
		opacity: 0;
		transform: translateX(90px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tksMissionMarquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 959px) {
	.tks-mission {
		height: auto;
		min-height: 100vh;
		padding: 120px 0 80px;
	}

	.tks-mission-reason__sticky {
		position: relative;
		height: auto;
	}

	.tks-mission__inner {
		display: block;
	}

	.tks-mission__image {
		margin: 2em 0 2em 2em;
	}

	.tks-mission__image img {
		height: 250px;
	}

	.tks-reason {
		padding-top: 90px;
		padding-bottom: 100px;
	}

	.tks-reason__inner {
		padding: 0 24px;
	}

	.tks-reason-card {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 30px 0;
	}

	.tks-reason-card__image img {
		height: 240px;
	}
.tks-mission__button {
min-width:100%;
}
}

/* =========================================================
   サービスの流れ
========================================================= */

.tks-flow {
	position: relative;
	z-index: 3;
	overflow: hidden;
	min-height: 420px;
	padding: 110px 40px;
	color: #fff;
	background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url("/wp-content/uploads/2026/04/flow-bg.webp") center / cover no-repeat;
}

.tks-flow__inner {
	position: relative;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-flow__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
}

.tks-flow__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 22px;
}

.tks-flow__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 62px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-flow__title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 3.2vw, 44px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
}

.tks-flow__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	color: #2f72b8;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.tks-flow__text {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
}

.tks-flow__title {
	opacity: 0;
}

.tks-flow__subtitle {
	opacity: 0;
	filter: blur(10px);
}

.tks-flow__text {
	opacity: 0;
	transform: translateY(28px);
}

.tks-flow.is-visible .tks-flow__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-flow.is-visible .tks-flow__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-flow.is-visible .tks-flow__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-flow.is-visible .tks-flow__text {
	animation: tksFadeUp 0.75s ease 1.12s forwards;
}

.tks-flow__circle {
	position: absolute;
	right: calc((1120px - 100vw) / 2 - 90px);
	bottom: -150px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 380px;
	height: 380px;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.tks-flow__circle:hover {
	transform: translate(-8px, -8px) scale(1.03);
	box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.tks-flow__circle-text {
	position: absolute;
	inset: -30px;
	width: calc(100% + 60px);
	height: calc(100% + 60px);
	overflow: visible;
	animation: tksFlowCircleRotate 22s linear infinite;
}

.tks-flow__circle-text text {
	fill: #fff;
	font-size: 19px;
	font-weight: 300;
	letter-spacing: 0.16em;
}

.tks-flow__circle-label {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding-right: 34px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.tks-flow__circle-label::after {
	content: ">";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	font-weight: 300;
}

@keyframes tksFlowCircleRotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 959px) {
	.tks-flow {
		min-height: auto;
		padding: 90px 24px;
	}

	.tks-flow__inner {
		width: 100%;
	}

	.tks-flow__content {
		max-width: none;
	}

	.tks-flow__text {
		line-height: 2;
	}

	.tks-flow__circle {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 360px;
		height: 58px;
		margin: 32px 0 0;
		border: none;
		border-radius: 6px;
		background: linear-gradient(90deg, #5aa4e8 0%, #174f9f 100%);
		box-shadow: none;
	}

	.tks-flow__circle-text {
		display: none;
	}

	.tks-flow__circle-label {
		min-width: 0;
		padding-right: 28px;
		font-size: 16px;
		font-weight: 700;
		white-space: nowrap;
	}

	.tks-flow__circle:hover {
		transform: none;
		box-shadow: none;
	}
}

/* =========================================================
   対応エリア
========================================================= */
.tks-area {
	position: relative;
	z-index: 3;
	overflow: hidden;
	padding: 110px 0 0;
	color: #111;
	background: #fff;
}

.tks-area__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
	align-items: center;
	gap: 30px;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-area__content {
	position: relative;
	z-index: 2;
}

.tks-area__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.tks-area__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 62px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-area__heading::before {
	content: "";
	position: absolute;
	top: -28px;
	left: -58px;
	z-index: 0;
	width: 280px;
	height: 280px;
	background: url("/wp-content/uploads/2026/04/simb-b.webp") no-repeat center / contain;
	opacity: 0.8;
}

.tks-area__title {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
}

.tks-area__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	filter: blur(10px);
}

.tks-area__text {
	margin: 0 0 26px;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: translateY(28px);
}

.tks-area__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 150px));
	gap: 14px 34px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	opacity: 0;
	transform: translateY(28px);
}

.tks-area__list li {
	position: relative;
	padding-left: 34px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
}

.tks-area__list li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle at 35% 30%, #5aa4e8 0%, #2f72b8 42%, #0e397b 100%);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 3px 8px rgba(19, 58, 122, 0.28);
}

.tks-area__note {
	margin: 0 0 28px;
	color: #2f72b8;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: translateY(28px);
}

.tks-area__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	min-height: 54px;
	padding: 0 50px 0 24px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(90deg, #5aa4e8 0%, #174f9f 100%);
	border-radius: 6px;
	opacity: 0;
	transform: translateY(28px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.tks-area__button::after {
	content: "›";
	display: inline-flex;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 50%;
	width: 20px;
	height: 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	transform: translateY(-50%);
}

.tks-area__button:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 26px rgba(47, 114, 184, 0.35), 0 0 18px rgba(90, 164, 232, 0.55);
	filter: brightness(1.08);
}

.tks-area__map {
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateX(50px);
}

.tks-area__map img {
	display: block;
	width: 100%;
	height: auto;
}

.tks-area__marquee {
	position: relative;
	z-index: 10;
	width: 100vw;
	margin-top: 42px;
	overflow: hidden;
}

.tks-area__marquee-track {
	display: flex;
	width: max-content;
	animation: tksMissionMarquee 30s linear infinite;
}

.tks-area__marquee span {
	display: block;
	padding-right: 60px;
	color: rgba(47, 114, 184, 0.95);
	font-size: clamp(72px, 12vw, 170px);
	font-weight: 500;
	line-height: 0.85;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.tks-area.is-visible .tks-area__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-area.is-visible .tks-area__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-area.is-visible .tks-area__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-area.is-visible .tks-area__text {
	animation: tksFadeUp 0.75s ease 1.12s forwards;
}

.tks-area.is-visible .tks-area__list {
	animation: tksFadeUp 0.75s ease 1.28s forwards;
}

.tks-area.is-visible .tks-area__note {
	animation: tksFadeUp 0.75s ease 1.44s forwards;
}

.tks-area.is-visible .tks-area__button {
	animation: tksFadeUp 0.75s ease 1.6s forwards;
}

.tks-area.is-visible .tks-area__map {
	animation: tksMissionImageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@media (max-width: 959px) {
	.tks-area__inner {
		display: block;
		width: 100%;
		padding: 82px 24px 0;
	}

	.tks-area__heading {
		margin-bottom: 18px;
	}

	.tks-area__title {
		font-size: 32px;
	}

	.tks-area__subtitle {
		font-size: 15px;
	}

	.tks-area__text {
		font-size: 13px;
		line-height: 1.9;
	}

	.tks-area__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 20px;
	}

	.tks-area__list li {
		padding-left: 28px;
		font-size: 18px;
	}

	.tks-area__list li::before {
		width: 18px;
		height: 18px;
	}

	.tks-area__button {
		width: 100%;
		min-width: 0;
		min-height: 56px;
	}

	.tks-area__map {
		position: absolute;
		top: 210px;
		right: -90px;
		z-index: 0;
		width: 92%;
		margin-top: 0;
		pointer-events: none;
	}

	.tks-area__map img {
		opacity: 0.5;
	}

	.tks-area__marquee {
		margin-top: 34px;
	}

	.tks-area__marquee span {
		font-size: 72px;
	}
}

/* =========================================================
   会社情報セクション
========================================================= */
.tks-company-links {
	position: relative;
	z-index: 3;
	padding: 0;
	background: #fff;
	color: #111;
}

.tks-company-links__grid {
	display: grid;
	grid-template-columns: 1.35fr 0.95fr 0.82fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	width: 100%;
	height: 90vh;
	margin: 0;
	padding: 12px;
}

.tks-company-links__card {
	position: relative;
	display: block;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	background: #1f1f1f;
}

.tks-company-links__card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background: #1f1f1f;
	transform: translateY(0);
	transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.tks-company-links__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.42);
	opacity: 1;
	transition: opacity 0.35s ease, background 0.35s ease;
}
/* 最初のカードの疑似要素だけ、背景を透明にする */
.tks-company-links__card:first-child::after {
    background: transparent; /* または none */
}

.tks-company-links__card img {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.tks-company-links__card-en {
	position: absolute;
	right: 18px;
	bottom: -5px;
	z-index: 4;
	color: rgba(255, 255, 255, 0.58);
	font-size: clamp(28px, 2.4vw, 44px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.tks-company-links__card-content {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	color: #fff;
	text-align: center;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.tks-company-links__card-title {
	display: block;
	color: #fff;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.08em;
}

.tks-company-links__card-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 42px;
	padding: 0 34px 0 20px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 999px;
}

.tks-company-links__card-button::after {
	content: "›";
	position: absolute;
	right: 16px;
	top: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	transform: translateY(-50%);
}

.tks-company-links__card:hover .tks-company-links__card-content {
	opacity: 1;
	transform: translateY(0);
}

.tks-company-links__card:hover::after {
	background: rgba(0, 0, 0, 0.76);
}

.tks-company-links__card:hover img {
	filter: grayscale(0.2);
	transform: scale(1.03);
}

.tks-company-links__card:hover .tks-company-links__card-en {
	color: rgba(255, 255, 255, 0.24);
	opacity: 1;
	transform: translateY(0);
}

.tks-company-links__card--philosophy {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.tks-company-links__card--overview {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
}

.tks-company-links__card--access {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.tks-company-links__card--material {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

.tks-company-links__info {
	position: relative;
	z-index: 2;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 36px 34px 36px 40%;
	text-align: left;
	background: #fff;
	opacity: 0;
	transform: translateY(28px);
}

.tks-company-links__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 22px;
	text-align: left;
}

.tks-company-links__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 62px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-company-links__title {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
}

.tks-company-links__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	filter: blur(10px);
}

.tks-company-links__text {
	margin: 0 0 28px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: translateY(28px);
}

.tks-company-links__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	min-height: 54px;
	padding: 0 50px 0 24px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(90deg, #5aa4e8 0%, #174f9f 100%);
	border-radius: 6px;
	opacity: 0;
	transform: translateY(28px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.tks-company-links__button::after {
	content: "›";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 50%;
	width: 20px;
	height: 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	transform: translateY(-50%);
}

.tks-company-links__button:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 26px rgba(47, 114, 184, 0.35), 0 0 18px rgba(90, 164, 232, 0.55);
	filter: brightness(1.08);
}

.tks-company-links.is-visible .tks-company-links__card::before {
	transform: translateY(-100%);
}

.tks-company-links.is-visible .tks-company-links__card img {
	opacity: 1;
	transform: scale(1);
}

.tks-company-links.is-visible .tks-company-links__card-en {
	opacity: 1;
	transform: translateY(0);
}

.tks-company-links.is-visible .tks-company-links__card:nth-of-type(1)::before,
.tks-company-links.is-visible .tks-company-links__card:nth-of-type(1) img {
	transition-delay: 0.1s;
}

.tks-company-links.is-visible .tks-company-links__card:nth-of-type(2)::before,
.tks-company-links.is-visible .tks-company-links__card:nth-of-type(2) img {
	transition-delay: 0.25s;
}

.tks-company-links.is-visible .tks-company-links__card:nth-of-type(3)::before,
.tks-company-links.is-visible .tks-company-links__card:nth-of-type(3) img {
	transition-delay: 0.4s;
}

.tks-company-links.is-visible .tks-company-links__card:nth-of-type(4)::before,
.tks-company-links.is-visible .tks-company-links__card:nth-of-type(4) img {
	transition-delay: 0.55s;
}

.tks-company-links.is-visible .tks-company-links__info {
	animation: tksFadeUp 0.75s ease 0.35s forwards;
}

.tks-company-links.is-visible .tks-company-links__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) 0.55s forwards;
}

.tks-company-links.is-visible .tks-company-links__title {
	animation: tksHeadingText 0.01s linear 1.17s forwards;
}

.tks-company-links.is-visible .tks-company-links__subtitle {
	animation: tksBlurFade 0.8s ease 1.5s forwards;
}

.tks-company-links.is-visible .tks-company-links__text {
	animation: tksFadeUp 0.75s ease 1.67s forwards;
}

.tks-company-links.is-visible .tks-company-links__button {
	animation: tksFadeUp 0.75s ease 1.83s forwards;
}

.tks-company-marquee {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.tks-company-marquee__track {
	display: flex;
	width: max-content;
	animation: tksCompanyMarquee 60s linear infinite;
	will-change: transform;
}

.tks-company-marquee__track img {
	display: block;
	width: 320px;
	height: 150px;
	margin-right: 12px;
	object-fit: cover;
}

.tks-company-marquee:hover .tks-company-marquee__track {
	animation-play-state: paused;
}

@keyframes tksCompanyMarquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 959px) {
	.tks-company-links {
		padding: 0 16px;
	}

	.tks-company-links__grid {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
		height: auto;
		padding: 0;
	}

	.tks-company-links__info,
	.tks-company-links__card {
		border-radius: 12px;
	}

	.tks-company-links__info {
		order: 1;
		padding: 70px 18px 42px;
	}

	.tks-company-links__card {
		min-height: 220px;
		height: 220px;
	}

	.tks-company-links__card--philosophy {
		order: 2;
	}

	.tks-company-links__card--overview {
		order: 3;
	}

	.tks-company-links__card--access {
		order: 4;
	}

	.tks-company-links__card--material {
		order: 5;
	}

	.tks-company-links__heading {
		margin-bottom: 20px;
	}

	.tks-company-links__title {
		font-size: 32px;
	}

	.tks-company-links__text {
		font-size: 14px;
	}

	.tks-company-links__button {
		display: none;
	}

	.tks-company-links__card-en {
		right: 18px;
		bottom: 16px;
		font-size: 30px;
		opacity: 1;
		transform: none;
	}

	.tks-company-links__card-content {
		opacity: 1;
		transform: none;
	}

	.tks-company-links__card-title {
		font-size: 22px;
	}

	.tks-company-links__card-button {
		min-width: 140px;
		min-height: 40px;
	}

	.tks-company-links__card::after {
		background: rgba(0, 0, 0, 0.46);
	}

	.tks-company-marquee {
		margin-top: 12px;
		margin-left: -16px;
		width: calc(100% + 32px);
	}

	.tks-company-marquee__track {
		animation-duration: 55s;
	}

	.tks-company-marquee__track img {
		width: 210px;
		height: 110px;
		border-radius: 10px;
	}
}

/* =========================================================
   お知らせ
========================================================= */

.tks-news {
	position: relative;
	z-index: 3;
	padding: 96px 24px 110px;
	background: #fff;
	color: #111;
}

.tks-news__inner {
	width: min(860px, 100%);
	margin: 0 auto;
}

.tks-news__heading {
	margin-bottom: 34px;
	text-align: center;
}

.tks-news__title {
	margin: 0;
	font-size: clamp(32px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.tks-news__subtitle {
	margin-top: 6px;
	color: #2f72b8;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
}

.tks-news__lead {
	margin: 22px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.03em;
}

.tks-news__list {
	border-top: 1px solid rgba(0, 0, 0, 0.22);
}

.tks-news__item {
	position: relative;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 34px;
	padding: 28px 16px 28px 22px;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.22);
	transition: background 0.25s ease;
}

.tks-news__item:hover {
	background: rgba(47, 114, 184, 0.04);
}

.tks-news__thumb {
	width: 160px;
	height: 90px;
	background: #4a4a4a;
	overflow: hidden;
}

.tks-news__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.tks-news__item:hover .tks-news__thumb img {
	transform: scale(1.05);
}

.tks-news__body {
	min-width: 0;
}

.tks-news__meta {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 14px;
}

.tks-news__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 68px;
	height: 24px;
	padding: 0 14px;
	color: #111;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	border: 1px solid rgba(0, 0, 0, 0.55);
	border-radius: 999px;
}

.tks-news__meta time {
	color: #333;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}

.tks-news__item-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.02em;
}

.tks-news__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: 18px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.tks-news__item:hover .tks-news__arrow {
	transform: translateX(4px);
}

.tks-news__empty {
	margin: 0;
	padding: 36px 20px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.22);
	border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.tks-news__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(420px, 100%);
	min-height: 52px;
	margin: 36px auto 0;
	color: #111;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.35);
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.tks-news__button:hover {
	color: #fff;
	background: #2f72b8;
	border-color: #2f72b8;
}

@media (max-width: 959px) {
	.tks-news {
		padding: 76px 20px 86px;
	}

	.tks-news__heading {
		margin-bottom: 28px;
	}

	.tks-news__lead {
		font-size: 13px;
	}

	.tks-news__item {
		grid-template-columns: 96px minmax(0, 1fr) 20px;
		gap: 16px;
		padding: 22px 0;
	}

	.tks-news__thumb {
		width: 96px;
		height: 54px;
	}

	.tks-news__meta {
		flex-wrap: wrap;
		gap: 8px 14px;
		margin-bottom: 10px;
	}

	.tks-news__cat {
		min-width: 62px;
		height: 22px;
		padding: 0 12px;
		font-size: 11px;
	}

	.tks-news__meta time {
		font-size: 11px;
	}

	.tks-news__item-title {
		font-size: 14px;
		line-height: 1.55;
	}

	.tks-news__button {
		min-height: 50px;
		margin-top: 28px;
	}
}

/* =========================================================
   お問い合わせ
========================================================= */

.tks-inquiry {
	position: relative;
	z-index: 3;
	overflow: hidden;
	min-height: 420px;
	padding: 96px 40px 92px;
	color: #fff;
	background: #111;
}

.tks-inquiry__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url("/wp-content/uploads/2026/04/inquiry-bg.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.tks-inquiry__inner {
	position: relative;
	z-index: 2;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-inquiry__content {
	max-width: 600px;
}

.tks-inquiry__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 22px;
}

.tks-inquiry__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 62px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
}

.tks-inquiry__title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 3.2vw, 44px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.03em;
	opacity: 0;
}

.tks-inquiry__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	color: #2f72b8;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.1em;
	opacity: 0;
	filter: blur(10px);
}

.tks-inquiry__text {
	margin: 0 0 24px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
	opacity: 0;
	transform: translateY(28px);
}

.tks-inquiry__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(520px, 100%);
	min-height: 56px;
	margin-bottom: 22px;
	padding: 0 34px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	opacity: 0;
	transform: translateY(28px);
	transition: color 0.25s ease, background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.tks-inquiry__button:hover {
	color: #111;
	background: #fff;
	transform: scale(1.03);
	box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.tks-inquiry__tel-list {
	display: flex;
	align-items: baseline;
	gap: 22px;
	margin-top: 4px;
	opacity: 0;
	transform: translateY(28px);
}

.tks-inquiry__tel-item {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: #fff;
}

.tks-inquiry__tel-item span {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.tks-inquiry__tel-item a,
.tks-inquiry__tel-item strong {
	color: #fff;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.tks-inquiry__hours {
	margin: 12px 0 0;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(28px);
}

.tks-inquiry.is-visible .tks-inquiry__heading-bg {
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.tks-inquiry.is-visible .tks-inquiry__title {
	animation: tksHeadingText 0.01s linear 0.62s forwards;
}

.tks-inquiry.is-visible .tks-inquiry__subtitle {
	animation: tksBlurFade 0.8s ease 0.95s forwards;
}

.tks-inquiry.is-visible .tks-inquiry__text {
	animation: tksFadeUp 0.75s ease 1.12s forwards;
}

.tks-inquiry.is-visible .tks-inquiry__button {
	animation: tksFadeUp 0.75s ease 1.28s forwards;
}

.tks-inquiry.is-visible .tks-inquiry__tel-list {
	animation: tksFadeUp 0.75s ease 1.44s forwards;
}

.tks-inquiry.is-visible .tks-inquiry__hours {
	animation: tksFadeUp 0.75s ease 1.6s forwards;
}

@media (max-width: 959px) {
	.tks-inquiry {
		min-height: auto;
		padding: 78px 24px 82px;
	}

	.tks-inquiry__bg {
		inset: -8% 0;
	}

	.tks-inquiry__content {
		max-width: none;
	}

	.tks-inquiry__title {
		font-size: 32px;
	}

	.tks-inquiry__text {
		font-size: 13px;
		line-height: 1.9;
	}

	.tks-inquiry__button {
		min-height: 54px;
		padding: 0 22px;
		font-size: 13px;
	}

	.tks-inquiry__tel-list {
		display: block;
	}

	.tks-inquiry__tel-item {
		margin-top: 12px;
	}

	.tks-inquiry__tel-item a,
	.tks-inquiry__tel-item strong {
		font-size: 26px;
	}
}

/* =========================================================
   フッター
========================================================= */

.tks-footer {
	position: relative;
	z-index: 3;
	overflow: hidden;
	padding: 34px 40px 42px;
	color: #fff;
	background: #303030;
}

.tks-footer__inner {
	position: relative;
	width: min(1400px, 100%);
	margin: 0 auto;
}

.tks-footer__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tks-footer__mark {
	position: absolute;
	left: 0;
	top: -14px;
	width: 280px;
	height: 150px;
	background: url("/wp-content/uploads/2026/04/simb-w.webp") no-repeat left top / contain;
	opacity: 0.08;
	pointer-events: none;
}

.tks-footer__nav {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.tks-footer__nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: color 0.25s ease;
}

.tks-footer__nav a+a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.45);
	transform: translateY(-50%);
}

.tks-footer__nav a:hover {
	color: #fff;
}

.tks-footer__bottom {
	position: relative;
	z-index: 2;
	padding: 42px 0 0;
}

.tks-footer__catch {
	margin: 0;
	color: #fff;
	font-size: clamp(24px, 2.5vw, 40px);
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0.03em;
}

.tks-footer__lead {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.03em;
}

.tks-footer__copy {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.tks-footer__company {
	position: absolute;
	right: -12px;
	bottom: -38px;
	z-index: 1;
	color: rgba(255, 255, 255, 0.04);
	font-size: clamp(56px, 8vw, 100px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
	pointer-events: none;
}

@media (max-width: 959px) {
	.tks-footer {
		padding: 32px 24px 38px;
	}

	.tks-footer__top {
		justify-content: flex-start;
		min-height: auto;
		padding-bottom: 24px;
	}

	.tks-footer__mark {
		left: -48px;
		top: -20px;
		width: 220px;
		height: 120px;
	}

	.tks-footer__nav {
		justify-content: flex-start;
		gap: 12px 0;
	}

	.tks-footer__nav a {
		padding: 0 14px;
		font-size: 12px;
	}

	.tks-footer__bottom {
		padding-top: 34px;
	}

	.tks-footer__catch {
		font-size: 24px;
		line-height: 1.55;
	}

	.tks-footer__lead {
		font-size: 13px;
	}

	.tks-footer__copy {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 28px;
	}

	.tks-footer__company {
		display: none;
	}
}
/* =========================================================
   共通FAQ
========================================================= */

.tks-faq-section {
	position: relative;
	padding: 110px 40px 120px;
	background: #f7f9fc;
}

.tks-faq-section__inner {
	width: min(960px, 100%);
	margin: 0 auto;
}

.tks-faq-section__heading {
	margin-bottom: 38px;
	text-align: center;
}

.tks-faq-section__heading h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.tks-faq-section__heading div {
	margin-top: 8px;
	color: #2f72b8;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.12em;
}

.tks-faq-section__heading p {
	margin: 20px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.03em;
}

.tks-faq-section__list {
	display: grid;
	gap: 14px;
}

.tks-faq-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.tks-faq-item__question {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 68px;
	padding: 18px 24px;
	color: #111;
	font: inherit;
	text-align: left;
	background: transparent;
	border: none;
	cursor: pointer;
}

.tks-faq-item__q,
.tks-faq-item__a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	border-radius: 50%;
}

.tks-faq-item__q {
	background: #2f72b8;
}

.tks-faq-item__a {
	flex: 0 0 auto;
	background: #aeb6c2;
}

.tks-faq-item__question-text {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.7;
	letter-spacing: 0.03em;
}

.tks-faq-item__icon {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
}

.tks-faq-item__icon::before,
.tks-faq-item__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 1px;
	background: #2f72b8;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.tks-faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.tks-faq-item.is-faq-open .tks-faq-item__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0);
}

.tks-faq-item__answer {
	height: 0;
	overflow: hidden;
	transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.tks-faq-item__answer-inner {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	column-gap: 14px;
	align-items: start;
	padding: 0 24px 28px 24px;
}

.tks-faq-item__a {
	margin-top: 20px;
}

.tks-faq-item__answer-inner p {
	margin: 0;
	padding-top: 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.03em;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.tks-faq-item.is-faq-open .tks-faq-item__answer-inner p {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 959px) {
	.tks-faq-section {
		padding: 78px 20px 86px;
	}

	.tks-faq-section__heading {
		margin-bottom: 30px;
	}

	.tks-faq-item__question {
		grid-template-columns: 26px minmax(0, 1fr) 26px;
		gap: 12px;
		min-height: 64px;
		padding: 16px 18px;
	}

	.tks-faq-item__q,
	.tks-faq-item__a {
		width: 26px;
		height: 26px;
		font-size: 13px;
	}

	.tks-faq-item__question-text {
		font-size: 14px;
	}

	.tks-faq-item__answer-inner {
	grid-template-columns: 26px minmax(0, 1fr);
	column-gap: 12px;
	padding: 0 18px 22px 18px;
}

.tks-faq-item__a {
	margin-top: 18px;
}

.tks-faq-item__answer-inner p {
	font-size: 13px;
	line-height: 1.9;
}
}