@charset "utf-8";

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

.header .container {
	padding: 16px 24px;
	pointer-events: auto;
	background: var(--white);
	box-shadow: 0 7px 24px rgba(0, 0, 0, 0.1);
	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 img {
	width: auto;
	height: 32px;
}

.gnav_pc {
	display: none;
}

.nav-toggle {
	width: 44px;
	height: 44px;
	cursor: pointer;
	border-radius: 3px;
	background: var(--primary);
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 99;
}

.nav-toggle span {
	width: 22px;
	height: 1px;
	margin: auto;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	transition: 0.4s;
}

.nav-toggle span:nth-of-type(1) {
	top: 15px;
}

.nav-toggle span:nth-of-type(2) {
	top: 22px;
}

.nav-toggle span:nth-of-type(3) {
	top: 29px;
}

.nav-toggle.active span:nth-of-type(1) {
	width: 50%;
	transform: translateY(7px) rotate(24deg);
}

.nav-toggle.active span:nth-of-type(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
	width: 50%;
	transform: translateY(-7px) rotate(-24deg);
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
	width: 100%;
	height: 100dvh;
	padding: 64px 0 0;
	background: var(--gray02);
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	overflow-y: scroll;
	z-index: 9;
	transition: all 0.2s;
	-webkit-overflow-scrolling: touch;
}

.gnav_sp.panel-active {
	right: 0;
}

.gnav-list_sp {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.gnav-list_sp .primary {
	padding: 32px 0 0;
}

.gnav-list_sp .primary .li_item,
.gnav-list_sp .primary .has-submenu {
	border-bottom: solid 1px var(--primary);
}

.gnav-list_sp .primary .li_item>a,
.gnav-list_sp .primary .has-submenu>a {
	padding: 20px;
	display: block;
	font-weight: 700;
	color: var(--primary);
}

.gnav-list_sp .primary li.has-submenu {
	position: relative;
}

.gnav-list_sp .primary li.has-submenu>a::before {
	width: 16px;
	height: 1px;
	background-color: var(--primary);
	position: absolute;
	content: "";
	top: 32px;
	right: 16px;
	transition: 0.3s;
	transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a::after {
	width: 1px;
	height: 16px;
	background-color: var(--primary);
	position: absolute;
	content: "";
	top: 32px;
	right: 24px;
	transition: 0.3s;
	transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a.active::after {
	transform: translateY(-50%) rotate(90deg);
}

.gnav-list_sp .li_recruit {
	width: 80%;
	margin: 40px auto 0;
}

.gnav-list_sp .li_contact {
	width: 80%;
	margin: 24px auto 0;
}

.gnav-list_sp .li_recruit a,
.gnav-list_sp .li_contact a {
	width: 100%;
	padding: 16px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 5px 0px;
	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-list_sp .li_recruit a {
	background: var(--secondary);
	color: var(--white);
}

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

.gnav-list_sp .li_recruit a::before,
.gnav-list_sp .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-list_sp .li_access {
	margin: 24px 0 0;
	text-align: center;
}

.gnav-list_sp .li_access a {
	width: 50%;
	margin: auto;
	padding: 8px 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	transition: 0.3s;
	gap: 8px;
}

.gnav-list_sp .submenu {
	padding: 0 16px 16px 24px;
	display: none;
}

.gnav-list_sp .submenu.active {
	display: block;
}

.gnav-list_sp .submenu .col:nth-child(n + 2) {
	margin: 16px 0 0;
}

.gnav-list_sp .submenu li a {
	padding: 12px 20px;
	position: relative;
	display: block;
	font-size: 13px;
	color: var(--gray03);
}

.gnav-list_sp .submenu li a:before {
	width: 10px;
	height: 1px;
	margin: auto;
	background-color: var(--gray03);
	position: absolute;
	content: "";
	top: 22px;
	left: 0;
}

.gnav-footer_sp {
	margin: 40px 0 0;
	padding: 0;
	text-align: center;
}

.gnav-footer_sp h1 {
	max-width: 240px;
	margin: auto;
}

.gnav-footer_sp h1 a {
	display: block;
}

.gnav-footer_sp h1 img {
	width: 100%;
}

.gnav-footer_sp .address {
	margin: 24px 0 0;
	font-size: 14px;
}

/* submenu
------------------------------------------------------ */
.header .gnav_sp ul {
	padding: 0 20px;
	list-style: none;
}

.header .gnav_sp li {
	margin-bottom: 10px;
}

.header .gnav_sp li a {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: block;
	font-size: 16px;
	color: var(--white);
}

.header .gnav_sp li .submenu {
	max-height: 0;
	padding-left: 20px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.header .gnav_sp li .submenu.active {
	max-height: 500px;
}

.header .gnav_sp li .submenu li a {
	padding: 10px 0;
	font-size: 14px;
}

.header .gnav_sp li.has-submenu>a {
	position: relative;
}

.header .gnav_sp li.has-submenu>a::after {
	position: absolute;
	content: "+";
	top: 50%;
	right: 0;
	font-size: 18px;
	transform: translateY(-50%);
}

.header .gnav_sp li.has-submenu>a.active::after {
	content: "-";
}

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

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

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

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

.footer__logo {
	width: 240px;
	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: 64px 0 0;
	padding: 0;
}

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

.footer-nav__title {
	margin: 16px 0 0;
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	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 {
	padding: 16px 0;
	display: block;
	font-size: 16px;
	transition: opacity 0.12s ease;
}

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

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

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

.footer__copy {
	margin: 64px 0 0;
	padding: 0;
	opacity: 0.9;
	font-size: 10px;
}

/* scroll-to-top
------------------------------------------------------ */
.scroll-to-top {
	width: 48px;
	height: 48px;
	cursor: pointer;
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 3;
}

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

.scroll-to-top a svg {
	height: 20px;
	color: var(--white);
	transition: 0.3s;
}

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

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

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

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

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

.heading01 .en {
	margin: 16px 0 0;
	padding: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--primary);
}

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

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

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

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

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

/* text
------------------------------------------------------ */
.text01 {
	margin: 24px 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::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 auto 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__text {
	font-size: 16px;
	font-weight: 700;
}

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

/* 中面共通スタイル
------------------------------------------------------ */
/* page-ttl
------------------------------------------------------ */
.page-ttl {
	height: calc(50svh - 64px);
	min-height: 240px;
	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 24px 32px;
	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: 16px;
	font-weight: 700;
	color: var(--white);
}

.page-ttl__en {
	margin: 4px 0 0;
	padding: 0;
	font-size: 40px;
	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: 10px;
	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;
}

/*================================================================
# お問い合わせ
================================================================ */
.contact__numbers {
	margin: 40px 0 0;
	padding: 40px;
	border-radius: 6px;
	background: var(--bg02);
	display: grid;
	text-align: center;
	gap: 32px;
}

.contact__number {
	margin: 0;
	padding: 0;
	flex: 1;
}

.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: 32px;
	font-weight: 700;
	line-height: 1.05;
	color: var(--primary);
	letter-spacing: 0.02em;
}

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

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

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

.contact-table>tbody>tr {
	margin: 8px 0 0;
	padding: 8px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.contact-table>tbody>tr>th {
	width: 100%;
	padding: 0 0 8px 56px;
	border-bottom: 1px solid var(--gray03);
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
}

.contact-table>tbody>tr>.no-label {
	padding: 0;
}

.contact-table>tbody>tr>td {
	width: 100%;
	margin: 0;
	padding: 8px 0 0;
}

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

.contact-form .form-tag {
	width: 50px;
	height: 24px;
	padding: 2px;
	border-radius: 4px;
	background-color: var(--secondary);
	position: absolute;
	top: 3px;
	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: 24px 0 0;
}

.contact-form__footer .title {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.privacy-box {
	width: 100%;
	height: 200px;
	margin: 16px auto;
	padding: 24px;
	background: var(--gray01);
	overflow: auto;
	font-size: 12px;
	line-height: 1.618;
}

.privacy-box .unit {
	margin: 16px 0 0;
}

.privacy-box .unit__title {
	font-size: 12px;
	font-weight: 500;
}

.privacy-box .unit__text {
	margin: 8px 0 0;
	font-size: 10px;
}

.privacy-text {
	font-size: 14px;
}

/*-----------
form
------------*/
::placeholder {
	font-size: 14px;
	color: var(--gray03);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.contact-table option {
	font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
	width: 100%;
	padding: 16px;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: var(--gray01);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.618;
	vertical-align: top;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.contact-table textarea {
	height: auto;
}

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

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

.submit-btn {
	width: 100%;
	margin: 32px auto 0;
}

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

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
	height: calc(100svh - 64px);
	min-height: 400px;
	margin: 64px 0 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

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

.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;
	z-index: 1;
	transform: scale(1.12);
}

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

.top-page .mv__text01 {
	font-size: 40px;
	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: 24px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--white);
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@keyframes mvZoomIn {
	0% {
		transform: scale(1.12);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes mvZoomOut {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.12);
	}
}

@keyframes mvPanRL {
	0% {
		background-position: 40% 50%;
		transform: scale(1.1);
	}

	100% {
		background-position: 60% 50%;
		transform: scale(1.1);
	}
}

/* about
------------------------------------------------------ */
.top-page .about__grid {
	margin: 0;
	padding: 0;
}

.top-page .about__media {
	margin: 64px 0 0 40px;
	padding: 0;
	display: grid;
	gap: 24px;
}

/* service
------------------------------------------------------ */
.top-page .service {
	background: var(--bg01);
	position: relative;
}

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

.top-page .service__grid {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column-reverse;
}

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

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

.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-label {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 24px;
	left: 24px;
	font-size: 16px;
	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: 32px;
	height: 32px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	position: absolute;
	right: 24px;
	bottom: 24px;
	display: grid;
	color: var(--primary);
	z-index: 1;
	transition: 0.2s ease;
	place-items: center;
}

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

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

.top-page .nav-links__grid {
	margin: 0;
	padding: 0;
}

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

.top-page .nav-links__item {
	margin: 0;
	padding: 64px 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: 8px 0 0;
	padding: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.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__btn .btn__text {
	font-size: 16px;
	font-weight: 700;
}

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

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

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

.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: 40px 0 0;
	padding: 0;
	list-style: none;
}

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

.top-page .topics .topics-card {
	width: 100%;
	margin: 0;
	padding: 24px;
	border-radius: 5px;
	background: var(--bg02);
	display: block;
}

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

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

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

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

.service-page .materials-sales .grid {
	margin: 0;
	padding: 0;
	position: relative;
}

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

/* construction-fasteners
------------------------------------------------------ */
.service-page .construction-fasteners {
	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;
	gap: 56px;
}

.service-page .construction-fasteners .left {
	margin: 0;
	order: 2;
}

.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: 40px 0 0;
	padding: 48px 32px;
	background-color: var(--white);
	display: grid;
	gap: 40px;
}

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

.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%;
	height: 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;
}

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

.service-page .washer-packing .grid {
	margin: 0;
	padding: 48px 32px;
	background-color: var(--white);
	display: grid;
	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;
}

.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: 40px 0 0;
	padding: 0;
	list-style: none;
}

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

.topics-page .topics .topics-card {
	width: 100%;
	margin: 0;
	padding: 24px;
	border-radius: 5px;
	background: var(--bg02);
	display: block;
}

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

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

/* ================================================================
topics-detail
================================================================ */
.topics-page .topics__grid {
	margin: 0;
	padding: 0;
}

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

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

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

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

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

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

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

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

.company-page .greeting .grid {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 40px;
}

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

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

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

.company-page .greeting .sign {
	margin: 40px 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 40px;
	padding: 0;
	display: grid;
	gap: 24px;
}

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

.company-page .company-overview .grid {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

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

.company-page .company-overview .row {
	margin: 0;
	padding: 16px 0;
	border-top: 1px solid var(--gray02);
	display: grid;
	font-size: 14px;
	gap: 8px;
}

/* history
------------------------------------------------------ */
.company-page .history .grid {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 40px;
}

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

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

.company-page .history .item {
	margin: 0;
	padding: 0;
	display: grid;
	font-size: 14px;
	grid-template-columns: max-content 6px 1fr;
	gap: 16px;
}

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

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

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

.company-page .history .dot::before {
	width: 1px;
	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: 40px 0 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

/* recruit-card
------------------------------------------------------ */
.recruit-page .recruit-card {
	margin: 0;
	padding: 32px 40px;
	border-radius: 5px;
	background: var(--white);
	box-shadow: 0 8px 16px 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: 40px 0 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

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

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

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

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

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

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

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

/* flow
------------------------------------------------------ */
.recruit-page .recruit-flow__panel {
	margin: 40px 0 0;
	padding: 40px 32px;
	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: 65px;
}

.recruit-page .recruit-flow__item {
	margin: 0;
	padding: 0 0 0 80px;
	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: 12px;
	font-weight: 700;
	color: var(--secondary);
}

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

.recruit-page .recruit-flow__text {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
}

.recruit-page .btn01 {
	width: 80%;
	margin: 0 auto;
}