@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
	margin: auto;
	position: fixed;
	top: 16px;
	right: 0;
	left: 0;
	z-index: 5;
}

.header .container {
	width: calc(100% - 80px);
	margin: auto;
	padding: 16px 24px;
	pointer-events: auto;
	border-radius: 3px;
	background: var(--white);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.header .left h1 {
	margin: 0;
	line-height: 0;
}

.header .left a {
	display: block;
	will-change: transform, filter;
	transition:
		transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1),
		filter 0.32s cubic-bezier(0.2, 0.9, 0.2, 1),
		opacity 0.32s ease;
	transform: translateZ(0);
}

.header .left a:hover {
	opacity: 1;
	filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.16));
	transform: scale(1.02);
}

.header .left img {
	width: auto;
	height: 40px;
}

.gnav_pc .primary {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.gnav_pc .li_item a {
	padding: 16px;
	position: relative;
	display: block;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	letter-spacing: 0.06em;
	transition:
		transform 0.28s ease,
		opacity 0.28s ease;
	transform: translateZ(0);
}

.gnav_pc .li_item a::after {
	height: 1px;
	opacity: 0.85;
	background: currentColor;
	position: absolute;
	content: "";
	right: 10px;
	bottom: 10px;
	left: 10px;
	transition: transform 0.28s ease;
	transform: scaleX(0);
	transform-origin: left;
}

.gnav_pc .li_item a:hover {
	opacity: 0.86;
	transform: translateY(-1px);
}

.gnav_pc .li_item a:hover::after {
	transform: scaleX(1);
}

.gnav_pc .li_recruit {
	margin: 0 0 0 16px;
}

.gnav_pc .li_contact {
	margin: 0 0 0 16px;
}

.gnav_pc .li_recruit a,
.gnav_pc .li_contact a {
	min-width: 140px;
	height: 44px;
	padding: 0 18px 0;
	border-radius: 3px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.06em;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		opacity 0.28s ease,
		filter 0.28s ease;
	transform: translateZ(0);
}

.gnav_pc .li_recruit a {
	background: var(--secondary);
	color: var(--white);
}

.gnav_pc .li_contact a {
	background: var(--primary);
	color: var(--white);
}

.gnav_pc .li_recruit a::before,
.gnav_pc .li_contact a::before {
	pointer-events: none;
	opacity: 0.9;
	background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
	position: absolute;
	content: "";
	top: -20%;
	right: -30%;
	bottom: -20%;
	left: -30%;
	transition: transform 0.2s ease;
	transform: translateX(-55%);
}

.gnav_pc .li_recruit a:hover,
.gnav_pc .li_contact a:hover {
	opacity: 0.96;
	filter: saturate(1.05);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	transform: translateY(-1px);
}

.gnav_pc .li_recruit a:hover::before,
.gnav_pc .li_contact a:hover::before {
	transform: translateX(55%);
}

/* header submenu
------------------------------------------------------ */
.gnav_pc .primary .has-submenu {
	position: relative;
}

.gnav_pc .primary .has-submenu>a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.gnav_pc .submenu {
	min-width: 200px;
	margin: 12px 0 0;
	padding: 8px 16px;
	list-style: none;
	opacity: 0;
	border-radius: 6px;
	background: var(--bg02);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
	position: absolute;
	top: 80%;
	left: 0;
	visibility: hidden;
	transition:
		opacity 0.12s ease,
		transform 0.12s ease,
		visibility 0.12s ease;
	transform: translateY(6px);
}

.gnav_pc .submenu__item {
	margin: 0;
	padding: 0;
}

.gnav_pc .submenu__item+.submenu__item {
	margin: 0;
}

.gnav_pc .li_item .submenu__link {
	opacity: 0.9;
	font-size: 14px;
	transition:
		opacity 0.12s ease,
		transform 0.12s ease;
}

.gnav_pc .submenu__link:hover {
	opacity: 1;
	transform: translateX(2px);
}

.gnav_pc .primary .has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
	display: none;
}

/* footer
------------------------------------------------------ */
.footer {
	margin: 0;
	padding: 120px 0 200px;
	background: url("../img/footer_back.png") no-repeat center bottom / cover;
	position: relative;
	overflow: hidden;
	color: var(--white);
}

.footer__grid {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.footer__info {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.footer__brand {
	margin: 0;
	padding: 0;
}

.footer__logo {
	width: 280px;
	margin: 0;
	padding: 0;
	display: block;
}

.footer__logo img {
	height: auto;
	display: block;
}

.footer__addr {
	margin: 32px 0 0;
	padding: 0;
}

.footer__tel {
	margin: 16px 0 0;
	padding: 0;
}

.footer__nav {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 32px;
}

.footer-nav {
	min-width: 100px;
	margin: 0;
	padding: 0;
}

.footer-nav__title {
	margin: 0;
	padding: 0;
	font-weight: 700;
}

.footer-nav__list {
	margin: 18px 0 0 16px;
	padding: 0 0 0 18px;
	list-style: none;
	position: relative;
}

.footer-nav__list::before {
	width: 1px;
	height: calc(100% - 4px);
	background: rgba(255, 255, 255, 0.55);
	position: absolute;
	content: "";
	top: 2px;
	left: 0;
}

.footer-nav__link {
	display: block;
	font-size: 16px;
	transition: opacity 0.12s ease;
}

.footer-nav__link:hover {
	opacity: 0.7;
}

.footer-nav__item {
	margin: 0;
	padding: 0;
}

.footer-nav__item+.footer-nav__item {
	margin: 14px 0 0;
}

.footer-nav__item .footer-nav__link {
	font-size: 14px;
}

.footer__copy {
	margin: 100px 0 0;
	padding: 0;
	opacity: 0.9;
	font-size: 12px;
}

/* scroll-to-top
------------------------------------------------------ */
.scroll-to-top {
	width: 56px;
	height: 56px;
	cursor: pointer;
	position: fixed;
	right: 24px;
	bottom: 40px;
	z-index: 9;
}

.scroll-to-top a {
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.1s;
}

.scroll-to-top a:hover {
	background-color: var(--secondary);
}

.scroll-to-top a svg {
	height: 16px;
	color: var(--white);
}

/* background
------------------------------------------------------ */
.bg01 {
	padding: 120px 0;
	background: var(--bg01);
}

.bg02 {
	padding: 120px 0;
	background: var(--bg02);
}

/* layout
------------------------------------------------------ */
.grid {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 80px;
}

/* heading
------------------------------------------------------ */
.heading01 {
	margin: 0;
}

.heading01.center {
	text-align: center;
}

.heading01 .jp {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
}

.heading01 .en {
	margin: 22px 0 0;
	padding: 0;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.05;
	color: var(--primary);
}

.heading02 {
	margin: 0;
	padding: 0;
	font-size: 40px;
	font-weight: 700;
	color: var(--primary);
}

.heading02.center {
	text-align: center;
}

.heading03 {
	margin: 0;
	padding: 0;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
}

.heading04 {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--secondary);
	gap: 10px;
}

.heading04:before {
	width: 8px;
	height: 8px;
	background: var(--secondary);
	content: "";
	display: inline-block;
}

/* text
------------------------------------------------------ */
.text01 {
	margin: 40px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 2.2;
	color: var(--black);
}

.text01.top {
	margin: 0;
}

.text01.center {
	text-align: center;
}

.text-link {
	margin: 10px 0 0;
	border-bottom: none;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	gap: 8px;
}

.text-link::before {
	width: 100%;
	height: 1px;
	background: currentColor;
	position: absolute;
	content: "";
	right: 0;
	bottom: -2px;
	transition: transform 0.22s ease;
	transform: scaleX(1);
	transform-origin: right;
}

.text-link:hover::before {
	transform: scaleX(0);
}

.text-link::after {
	width: 12px;
	height: 12px;
	background: url(../img/icon_arrow01.svg) no-repeat center/contain;
	content: "";
	display: block;
}

/* list
------------------------------------------------------ */
.list01 {
	margin: 24px 0 0;
}

.list01.top {
	margin: 0;
}

.list01 li {
	display: flex;
	gap: 8px;
}

.list01 li+li {
	margin: 9px 0 0;
}

.list01 li::before {
	width: 6px;
	height: 6px;
	margin: 10px 0 0;
	border-radius: 9999px;
	background-color: var(--secondary);
	content: "";
	flex-shrink: 0;
}

/* btn
------------------------------------------------------ */
.btn01 {
	width: 280px;
	margin: 64px 0 0;
}

.btn01.top {
	margin: 0;
}

.btn01 .btn-link {
	width: 100%;
	height: 72px;
	padding: 0 32px;
	border-radius: 5px;
	background: var(--primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	transition:
		background 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
	gap: 18px;
}

.btn01 .btn-link:hover {
	background: var(--secondary);
}

.btn01 .btn__text {
	font-size: 16px;
	font-weight: 700;
}

.btn01 .btn__icon {
	transition: transform 0.2s ease;
}

.btn01 .btn-link:hover .btn__icon {
	transform: translateX(4px);
}

/* 中面共通スタイル
------------------------------------------------------ */
/* page-ttl
------------------------------------------------------ */
.page-ttl {
	height: 48svh;
	min-height: 480px;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.page-ttl__bg {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.page-ttl__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-ttl__panel {
	height: 100%;
	margin: 0;
	padding: 0 0 52px 64px;
	position: relative;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	z-index: 1;
}

.page-ttl__label {
	margin: 0;
	padding: 0;
}

.page-ttl__label span {
	opacity: 0.95;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
}

.page-ttl__en {
	margin: 10px 0 0;
	padding: 0;
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	text-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

/* breadcrumb
 ------------------------------------------------------ */
.breadcrumb {
	margin: 0;
	padding: 14px 0 0;
	background: var(--white);
}

.breadcrumb__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.breadcrumb__item {
	margin: 0;
	padding: 0;
	font-size: 12px;
	color: var(--gray03);
}

.breadcrumb__item+.breadcrumb__item::before {
	margin: 0 4px 0 0;
	opacity: 0.8;
	content: "_";
	color: var(--gray03);
}

.breadcrumb__link {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.breadcrumb__link:hover {
	opacity: 0.7;
}

/*================================================================
# お問い合わせ
================================================================ */
.contact__numbers {
	margin: 0;
	padding: 52px 40px;
	border-radius: 6px;
	background: var(--bg02);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

.contact__number {
	margin: 0;
	padding: 0;
	flex: 1;
	text-align: center;
}

.contact__number-title {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--secondary);
	letter-spacing: 0.04em;
}

.contact__number-value {
	margin: 10px 0 0;
	padding: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.05;
	color: var(--primary);
	letter-spacing: 0.02em;
}

.contact__divider {
	width: 2px;
	height: 100px;
	background: rgba(103, 113, 142, 0.7);
	flex: 0 0 auto;
}

.contact-form {
	width: 100%;
	margin: 0;
}

.contact-form .contact-table {
	width: 100%;
	margin: 64px 0 0;
	font-size: 16px;
	line-height: 2;
}

.contact-form .contact-table>tbody>tr {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.contact-form .contact-table>tbody>tr>th {
	width: 30%;
	padding: 24px 0 24px 64px;
	border-bottom: 1px solid var(--gray03);
	position: relative;
	text-align: left;
	white-space: nowrap;
}

.contact-form .contact-table>tbody>tr>td {
	width: 70%;
	margin: 0;
	padding: 24px 0;
	border-bottom: 1px solid var(--gray02);
}

.contact-form .contact-table>tbody>tr>td .note {
	margin-top: 4px;
	font-size: 14px;
	color: var(--gray03);
}

.contact-form .form-tag {
	width: 50px;
	height: 24px;
	padding: 2px;
	border-radius: 4px;
	background-color: var(--secondary);
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--white);
	text-align: center;
}

.contact-form .form-tag.-required {
	color: var(--white);
}

.contact-table .checkbox-list {
	margin: 0 0 0 -16px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.contact-table .checkbox-list li {
	margin: 8px 8px 8px 16px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-form__footer {
	margin: 40px 0 0;
}

.contact-form__footer .title {
	font-size: 18px;
	text-align: center;
}

.privacy-box {
	width: 100%;
	height: 200px;
	margin: 20px auto;
	padding: 30px 40px;
	background: var(--gray01);
	overflow: auto;
	font-size: 14px;
}

.privacy-box .unit {
	margin-top: 24px;
}

.privacy-box .unit__title {
	font-size: 16px;
	font-weight: 600;
}

.privacy-box .unit__text {
	margin-top: 8px;
}

.privacy-text {
	font-size: 14px;
	line-height: 2;
	text-align: center;
}

/*-----------
form
------------*/
::placeholder {
	color: var(--gray03);
}

.contact-table select,
.contact-table input,
.contact-table button,
.contact-table textarea,
.contact-table option {
	font-family:
		"Noto Sans JP",
		"游ゴシック体",
		YuGothic,
		"游ゴシック Medium",
		Yu Gothic Medium,
		"游ゴシック",
		Yu Gothic,
		"メイリオ",
		Meiryo,
		sans-serif;
}

.contact-table input,
.contact-table textarea {
	width: 100%;
	padding: 12px 24px;
	border-radius: 0;
	background: var(--gray01);
	font-size: 16px;
	box-sizing: border-box;
	transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
	border: 0;
	outline: 0;
	background: var(--gray01);
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
	color: var(--gray03);
}

.submit-btn {
	width: 400px;
	margin: 40px auto 0;
}

.submit-btn input {
	width: 100%;
	height: 80px;
	padding: 0 0 2px;
	border-radius: 5px;
	background: var(--primary);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.3s ease;
}

.submit-btn input:hover {
	background: var(--secondary);
	color: var(--white);
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
	height: 80svh;
	min-height: 800px;
	position: relative;
	overflow: hidden;
}

.top-page .mv__splide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.top-page .mv__splide .splide__track {
	height: 100%;
}

.top-page .mv__splide .splide__list {
	height: 100%;
}

.top-page .mv__splide .splide__slide {
	height: 100%;
	position: relative;
}

.top-page .slide-bg {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	will-change: transform, background-position;
	transform: scale(1.12);
}

.top-page .mv .text-area {
	height: 100%;
	margin: 0 auto;
	padding: 0 40px 80px;
	position: relative;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	z-index: 3;
}

.top-page .mv__text01 {
	font-size: clamp(56px, 6.1vw, 96px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.top-page .mv__text02 {
	margin: 40px 0 0;
	font-size: clamp(22px, 2.1vw, 32px);
	font-weight: 700;
	line-height: 1.7;
	color: var(--white);
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* zoom-in */
@keyframes mvZoomIn {
	from {
		transform: scale(1.06) translate3d(0, 0, 0);
	}

	to {
		transform: scale(1.14) translate3d(0, -1.2%, 0);
	}
}

/* 左 → 右 */
@keyframes mvPanLR {
	from {
		transform: scale(1.1) translate3d(-4%, 0, 0);
	}

	to {
		transform: scale(1.1) translate3d(4%, 0, 0);
	}
}

/* 右 → 左 */
@keyframes mvPanRL {
	from {
		transform: scale(1.1) translate3d(4%, 0, 0);
	}

	to {
		transform: scale(1.1) translate3d(-4%, 0, 0);
	}
}

/* zoom-out */
@keyframes mvZoomOut {
	from {
		transform: scale(1.14) translate3d(0, -1%, 0);
	}

	to {
		transform: scale(1.06) translate3d(0, 0, 0);
	}
}

/* about
------------------------------------------------------ */
.top-page .about__grid {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.top-page .about__media {
	margin: 64px 0 0 100px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* service
------------------------------------------------------ */
.top-page .service {
	padding: 120px 0 160px;
	position: relative;
}

.top-page .service::before {
	width: 100%;
	height: 32%;
	background: var(--bg01);
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
}

.top-page .service__grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 1fr 520px;
	gap: 120px;
}

.top-page .service__card {
	margin: 64px 0 0;
	padding: 0;
	border-radius: 5px;
	display: block;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.top-page .service__card-link {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	transition: box-shadow 0.6s ease;
}

.top-page .service__card-link:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.top-page .service__card-media {
	margin: 0;
	padding: 0;
}

.top-page .service__card-media img {
	width: 100%;
	height: auto;
	filter: brightness(0.86) contrast(1.08);
	border-radius: 5px;
	display: block;
	object-fit: cover;
	will-change: transform;
	transition:
		transform 0.6s ease,
		filter 0.35s ease;
	aspect-ratio: 704 / 465;
}

.top-page .service__card-link:hover .service__card-media img {
	filter: brightness(0.82) contrast(1.1);
	transform: scale(1.03);
}

.top-page .service__card-label {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 28px;
	left: 32px;
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	text-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.top-page .service__card-icon {
	width: 36px;
	height: 36px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	position: absolute;
	right: 32px;
	bottom: 32px;
	display: grid;
	color: var(--primary);
	z-index: 1;
	transition: 0.2s ease;
	place-items: center;
}

.top-page .service__card-link:hover .service__card-icon {
	background-color: var(--primary);
	transform: translateX(2px);
}

.top-page .service__card-link .service__card-icon svg {
	width: 12px;
	transition: color 0.2s ease;
}

.top-page .service__card-link:hover .service__card-icon svg {
	color: var(--white);
}

/* nav-links
------------------------------------------------------ */
.top-page .nav-links {
	margin: 0;
	padding: 80px 0;
	background: url("../img/nav-links_back.png") no-repeat center center / cover;
	position: relative;
}

.top-page .nav-links__grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 2px 1fr;
}

.top-page .nav-links__divider {
	width: 2px;
	height: 100%;
	background: rgba(255, 255, 255, 0.35);
	justify-self: center;
}

.top-page .nav-links__item {
	margin: 0;
	padding: 0;
	display: grid;
	align-content: center;
	color: var(--white);
	text-decoration: none;
	justify-items: center;
}

.top-page .nav-links__jp {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
}

.top-page .nav-links__en {
	margin: 16px 0 0;
	padding: 0;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.05;
}

.top-page .nav-links__btn {
	width: 280px;
	margin: 40px 0 0;
}

.top-page .nav-links__btn .btn-link {
	width: 100%;
	height: 72px;
	padding: 0 32px;
	border-radius: 5px;
	background: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	transition: background-color 0.3s ease;
	gap: 18px;
}

.top-page .nav-links__item:hover .btn-link {
	background-color: rgba(220, 237, 252, 0.7);
}

.top-page .nav-links__btn .btn__text {
	font-size: 16px;
	font-weight: 700;
}

.top-page .nav-links__btn .btn__icon {
	transition: transform 0.3s ease;
}

.top-page .nav-links__item:hover .btn__icon {
	transform: translateX(4px);
}

/* topics
------------------------------------------------------ */
.top-page .topics {
	margin: 0;
}

.top-page .topics .topics__grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.top-page .topics .topics__content {
	margin: 0;
	padding: 0;
}

.top-page .topics .jp {
	font-size: 16px;
}

.top-page .topics .en {
	font-size: 56px;
}

.top-page .topics .topics__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 24px;
}

.top-page .topics .topics__item {
	margin: 0;
	padding: 0;
	font-size: 15px;
}

.top-page .topics .topics-card {
	margin: 0;
	padding: 32px 40px;
	border-radius: 5px;
	background: var(--bg02);
	display: grid;
	text-decoration: none;
	transition: background-color 0.12s ease;
	grid-template-columns: 120px 1fr;
	gap: 32px;
}

.top-page .topics .topics-card:hover {
	background-color: var(--gray02);
}

.top-page .topics .topics-card__date {
	margin: 0;
	padding: 0;
}

.top-page .topics .topics-card__title {
	margin: 0;
	padding: 0;
}

/*================================================================
# service-page
================================================================ */
/* materials-sales
------------------------------------------------------ */
.service-page .materials-sales {
	padding: 120px 0 0;
}

.service-page .materials-sales .unit {
	padding: 0;
}

.service-page .materials-sales .grid {
	margin: 0;
	padding: 0;
	position: relative;
	display: grid;
	align-items: start;
	z-index: 1;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.service-page .materials-sales .body {
	margin: 0;
}

/* construction-fasteners
------------------------------------------------------ */
.service-page .construction-fasteners {
	padding: 80px 0 120px;
	position: relative;
}

.service-page .construction-fasteners:before {
	width: 100%;
	height: 160px;
	background-color: var(--white);
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 0;
}

.service-page .construction-fasteners .unit {
	padding: 0 0 0;
}

.service-page .construction-fasteners .grid--media {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
}

.service-page .construction-fasteners .left {
	margin: 160px 0 0;
}

.service-page .construction-fasteners .body {
	margin: 24px 0 0;
}

.service-page .construction-fasteners .media {
	border-radius: 5px;
	overflow: hidden;
}

.service-page .construction-fasteners .media img {
	width: 100%;
	height: auto;
	display: block;
}

.service-page .construction-fasteners .brands-carried {
	margin: 72px 0 0;
	padding: 100px 64px;
	background-color: var(--white);
	display: grid;
	align-items: start;
	grid-template-columns: 240px 1fr;
	gap: 40px;
}

.service-page .construction-fasteners .brands-carried .grid {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.service-page .construction-fasteners .logo {
	margin: 0;
	padding: 0;
	display: block;
}

.service-page .construction-fasteners .logo a,
.service-page .construction-fasteners .logo span {
	width: 100%;
	padding: 16px;
	border: 1px solid var(--gray02);
	border-radius: 6px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	transition:
		topacity 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
	aspect-ratio: 300 / 180;
}

.service-page .construction-fasteners .logo a:hover {
	opacity: 0.92;
	border: 1px solid var(--secondary);
	box-shadow: 0 0px 24px rgba(0, 0, 0, 0.16);
}

/* washer-packing
 ------------------------------------------------------ */
.service-page .washer-packing {
	padding: 0 0 120px;
}

.service-page .washer-packing .grid {
	margin: 0;
	padding: 100px 64px;
	background-color: var(--white);
	display: grid;
	align-items: start;
	grid-template-columns: 1fr 500px;
	gap: 40px;
}

.service-page .washer-packing .media {
	margin: 0;
	border-radius: 5px;
	overflow: hidden;
}

/*================================================================
# Topics
================================================================ */
.topics-page .topics {
	margin: 0;
}

.topics-page .topics .topics__grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.topics-page .topics .topics__content {
	margin: 0;
	padding: 0;
}

.topics-page .topics .jp {
	font-size: 16px;
}

.topics-page .topics .en {
	font-size: 56px;
}

.topics-page .topics .topics__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 24px;
}

.topics-page .topics .topics__item {
	margin: 0;
	padding: 0;
	font-size: 15px;
}

.topics-page .topics .topics-card {
	margin: 0;
	padding: 32px 40px;
	border-radius: 5px;
	background: var(--bg02);
	display: grid;
	text-decoration: none;
	transition: background-color 0.12s ease;
	grid-template-columns: 120px 1fr;
	gap: 32px;
}

.topics-page .topics .topics-card:hover {
	background-color: var(--gray02);
}

.topics-page .topics .topics-card__date {
	margin: 0;
	padding: 0;
}

.topics-page .topics .topics-card__title {
	margin: 0;
	padding: 0;
}

/* ================================================================
topics-detail
================================================================ */
.topics-page .topics__grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 320px 1fr;
	gap: 120px;
}

.topics-detail__body {
	margin: 0;
	padding: 0;
}

.topics-detail__date {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.topics-detail__title {
	margin: 16px 0 0;
	padding: 0;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
}

.topics-detail__text {
	margin: 40px 0 0;
	padding: 0;
}

.topics-detail__p {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 2.2;
}

.topics-detail__p+.topics-detail__p {
	margin: 32px 0 0;
}

.topics-detail .btn01 .btn__icon {
	transform: scale(-1, 1);
}

.topics-detail .btn01 .btn-link:hover .btn__icon {
	transform: translateX(-4px) scale(-1, 1);
}

/*================================================================
# Company
================================================================ */
/* greeting
------------------------------------------------------ */
.company-page .greeting {
	margin: 0;
}

.company-page .greeting .grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 320px 1fr;
	gap: 80px;
}

.company-page .greeting .main {
	width: 72%;
	margin: 0;
	padding: 0;
}

.company-page .greeting .p+.p {
	margin: 40px 0 0;
}

.company-page .greeting .closing {
	margin: 40px 0 0;
	padding: 0;
	font-size: 14px;
	text-align: right;
}

.company-page .greeting .sign {
	margin: 52px 0 0;
	padding: 0;
}

.company-page .greeting .company {
	margin: 0;
	padding: 0;
}

.company-page .greeting .name {
	margin: 4px 0 0;
	padding: 0;
	font-size: 14px;
}

.company-page .greeting .name span {
	margin: 0 0 0 8px;
	font-size: 18px;
}

.company-page .greeting .gallery {
	margin: 64px 0 0 100px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* company-overview
------------------------------------------------------ */
.company-page .company-overview {
	margin: 0;
}

.company-page .company-overview .grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 240px 1fr;
	gap: 80px;
}

.company-page .company-overview .list {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--gray02);
}

.company-page .company-overview .row {
	margin: 0;
	padding: 36px 0;
	border-top: 1px solid var(--gray02);
	display: grid;
	align-items: center;
	grid-template-columns: 220px 1fr;
	gap: 40px;
}

/* history
------------------------------------------------------ */
.company-page .history .grid {
	margin: 0;
	padding: 0;
	display: grid;
	align-items: start;
	grid-template-columns: 160px 1fr;
	gap: 80px;
}

.company-page .history .panel {
	margin: 0;
	padding: 72px 80px;
	border-radius: 6px;
	background: var(--bg02);
}

.company-page .history .list {
	margin: 0;
	padding: 0;
}

.company-page .history .item {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: max-content 8px 1fr;
	gap: 24px;
}

.company-page .history .date {
	margin: 0;
	padding: 16px 0;
}

.company-page .history .dot {
	position: relative;
}

.company-page .history .dot::after {
	width: 8px;
	height: 8px;
	margin: 24px 0 0;
	background-color: var(--secondary);
	content: '';
	display: block;
}

.company-page .history .dot::before {
	width: 2px;
	height: 100%;
	background: var(--secondary);
	position: absolute;
	content: "";
	top: 0;
	left: 3px;
}

.company-page .history .text {
	margin: 0;
	padding: 16px 0;
}

/*================================================================
# recruit-page
================================================================ */
/* features
------------------------------------------------------ */
.recruit-page .recruit-features__grid {
	margin: 64px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* recruit-card
------------------------------------------------------ */
.recruit-page .recruit-card {
	margin: 0;
	padding: 32px 40px;
	border-radius: 5px;
	background: var(--white);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.recruit-page .recruit-card__title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.04em;
}

.recruit-page .recruit-card__text {
	margin: 16px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 2.1;
	color: var(--black);
}

/* recruit-job
------------------------------------------------------ */
.recruit-page .recruit-job__head {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.recruit-page .recruit-jobs__list {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

.recruit-page .recruit-job {
	margin: 0;
	padding: 80px;
	border-radius: 5px;
	background: var(--bg02);
}

.recruit-page .recruit-job__title {
	margin: 0;
	padding: 0;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
}

.recruit-page .recruit-job__lead {
	margin: 24px 0 0;
	padding: 0;
}

.recruit-page .recruit-job__table {
	width: 100%;
	margin: 40px 0 0;
	font-size: 14px;
}

.recruit-page .recruit-job__table tbody tr {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.recruit-page .recruit-job__table th {
	width: 20%;
	padding: 18px 0 18px 24px;
	border-bottom: 1px solid var(--gray03);
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}

.recruit-page .recruit-job__table td {
	width: 80%;
	margin: 0;
	padding: 18px 24px;
	border-bottom: 1px solid var(--gray02);
}

/* flow
------------------------------------------------------ */
.recruit-page .recruit-flow__panel {
	margin: 0;
	padding: 72px 80px;
	border-radius: 6px;
	background: var(--white);
}

.recruit-page .recruit-flow__list {
	margin: 0;
	padding: 0;
	position: relative;
}

.recruit-page .recruit-flow__list::before {
	width: 2px;
	height: 100%;
	background: rgba(27, 54, 109, 0.55);
	position: absolute;
	content: "";
	top: 8px;
	bottom: 0;
	left: 119px;
}

.recruit-page .recruit-flow__item {
	margin: 0;
	padding: 0 0 0 160px;
	position: relative;
}

.recruit-page .recruit-flow__item+.recruit-flow__item {
	margin: 26px 0 0;
}

.recruit-page .recruit-flow__step {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--secondary);
	letter-spacing: 0.06em;
}

.recruit-page .recruit-flow__item::before {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: var(--primary);
	position: absolute;
	content: "";
	top: 6px;
	left: 120px;
	transform: translateX(-50%);
}

.recruit-page .recruit-flow__text {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	letter-spacing: 0.04em;
}

.recruit-page .btn01 {
	width: 400px;
	margin: 0 auto;
}