@charset "UTF-8";
/*
Theme Name: daisyokenkou
Version: 1.0.0
*/

::after,
::before,
* {
	--font-size: calc((var(--fs) / 16) * 1rem);
	font-size: var(--font-size);
}

html {
	scroll-behavior: smooth;
}

body {
	--container: 1130px;
	color: var(--color-body-1);
	font-family: var(--font-family);
	line-height: calc(28 / 16);
	letter-spacing: 0.1em;
	--fs: var(--p)
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-body-1);
	text-decoration: none;
}

:where(a, button):hover {
	opacity: .7;
}

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

body {
	background-image: url(img/bg.png);
	position: relative;
	z-index: -2;
}

@media(max-width: 991px) {
	body.noscroll {
		overflow: hidden;
		touch-action: pinch-zoom;
	}
}

@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}


@media(max-width: 767px) {
	[id] {
		scroll-margin-top: 75px;
	}
}

.container {
	padding-right: var(--padding);
	padding-left: var(--padding);
	max-width: calc(var(--container) + var(--padding) + var(--padding));
}

/*		ヘッダー		*/

.header {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	z-index: 500;
	transition: 0.3s;
}

body:not(.home) .header {
	background: rgba(255,255,255,0.2);
}

.header.show {
	position: fixed;
	top: 0;
	padding-top: 0px;
	padding-bottom: 0px;
	animation: headershow .8s ease forwards;
}

.header.show .header-inner{
	border-bottom: none;
}

.header.show .header-menu-list a{
	color: #333;
}

@keyframes headershow {
	from {
		top: 0;
		background: #FFF;
		transform: translate(-50%,-100%);
	}
	to {
		top: 0;
		background: #FFF;
		transform: translateX(-50%);
	}
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-left: 30px;
    height: 88px;
    border-bottom: 1px solid #fff;
}

.header-nav {
	height: 100%;
}

.header-menu {
	display: flex;
	gap: 20px;
	height: 100%;
}

.header-menu-list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 10px;
	min-height: 54px;
	padding: 0;
	margin-bottom: 0;
	color: #fff;
}

.header-menu-list a {
	color: #fff;
}

.header-menu-item {
	height: 100%;
}

.header-menu-link {
	position: relative;
	display: grid;
	align-items: center;
	--fs: 15;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	height: 100%;
	padding: 5px 10px;
}

.header-menu-link:hover {
	opacity: 0.6;
}

.header-menu-contact a {
	background: #063a8f;
	padding: 10px 40px;
	margin-left: 45px;
}

.global-nav-button {
	position: relative;
	width: 65px;
	aspect-ratio: 1 / 1;
	background: transparent;
	border: none;
	border-radius: 50%;
}

.global-nav-button span {
	width: 32px;
	height: 2px;
	background: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.4s;
}

body.noscroll .global-nav-button span {
	background: #000;
}

.home.noscroll .global-nav-button span {
	background: #FFF;
}

.header.show .global-nav-button span{
	background: #000;
}


.header .header-logo img.logo-black,
.header.show .header-logo img.logo-white{
	display: none;
}

.header.show .header-logo img.logo-black{
	display: inline;
}

.global-nav-button span:nth-child(1) {
	transform: translate(-50%,calc(-50% - 10px));
}

.global-nav-button span:nth-child(2) {
	transform: translate(-50%,-50%);
}

.global-nav-button span:nth-child(3) {
	transform: translate(-50%,calc(-50% + 10px));
}

body.noscroll .global-nav-button span:nth-child(1) {
	transform: translate(-50%,-50%) rotate(45deg);
}

body.noscroll .global-nav-button span:nth-child(2) {
	display: none;
}

body.noscroll .global-nav-button span:nth-child(3) {
	transform: translate(-50%,-50%) rotate(-45deg);
}

@media(min-width: 992px) {
	.header.show .header-menu-item.header-menu-contact a{
		color: #fff;
	}
}

@media(max-width: 1199px) {
	.header-menu {
		gap: 15px;
	}
	.header-menu-link {
		padding: 5px;
	}
	.header-menu-contact a {
		padding: 10px 15px;
		margin-left: 10px;
	}
}

@media(max-width: 991px) {
	body:not(.home) .header {
		background: transparent;
	}
	body.noscroll .header {
		position: fixed;
	}
	.header-inner {
		height: 65px;
		border-bottom: none;
		padding-left: 20px;
	}
	.header-logo {
		position: relative;
		z-index: 999;
	}
	.global-nav-button {
		z-index: 999;
	}
	.header-nav {
		width: 100%;
		height: 100vh;
		background: #FFF;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 105px;
		padding-bottom: 100px;
		opacity: 0;
		visibility: hidden;
		z-index: 888;
		overflow: scroll;
	}
	.header-nav::before {
		content: "";
		width: 100%;
		height: 65px;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 10;
	}
	body:not(.home) .header-nav::before,
	.header.show .header-nav::before {
		background: #FFF;
	}
	body.noscroll .header-nav {
		opacity: 1;
		visibility: visible;
	}
	.header-menu {
		display: block;
	}
	.header-menu-list {
		display: block;
		background: transparent;
		padding: 0;
	}
	.header-menu-item {
		border-bottom: 1px solid #000;
	}
	/* .header-menu-item:first-child {
		border-top: 1px solid #000;
	} */
	.header-menu-contact a {
		background: transparent;
		padding: 25px;
		margin: 0;
	}
	.header-menu-link {
		--fs: 18;
		padding: 30px 50px;
	}
	.header-menu-list a {
		color: #000;
	}
	.fixed-content {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		transform: none;
	}
	.fixed-content a {
		height: 60px;
		min-height: 0;
		writing-mode: horizontal-tb;
		border: none;
		border-top: 2px solid #FFF;
		border-radius: 0;
	}
	.fixed-content a:nth-child(1) {
		display: none; 
	}
}

@media(max-width: 767px) {
	.global-nav-button:hover {
		opacity: 1;
	}
	.header-nav {
		padding-top: 85px;
	}
	.header-menu-link {
		--fs: 16;	
		padding: 25px;
	}
	.header-logo img {
		width: 180px;
	}
}

@media(max-width: 575px) {
	
}

/*		フッター		*/
.footer {
	background: #000;
}
.footer-contact {
	--container: 1370px;
	position: relative;
	/*background: url(img/footer-image@2x.jpg) center bottom / cover;*/
	padding-top: 720px;
	padding-bottom: 50px;
	z-index: 1;
	overflow: hidden;
}
.footer-contact::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(img/footer-image@2x.jpg) center bottom / cover;
	z-index: -1;
}

body.home .footer-contact {
	margin-top: -450px;
}

.footer-contact-content {
	display: grid;
	grid-template-columns: 1fr 30%;
	gap: 20px;
	align-items: center;
}

.footer-contact .more-link a {
	color: #FFF;
}

.footer-contact .more-link a::before,
.footer-contact .more-link a::after {
	background: #FFF;
}

.footer-content {
	color: #FFF;
	background: #000;
	padding-top: 100px;
	padding-bottom: 60px;
}

.footer-logo {
	margin-bottom: 50px;
}

.footer-youtube {
	margin-bottom: 200px;
}

.footer-content address {
	--fs: 13;
	line-height: calc(27 / 13);
	letter-spacing: 0.2em;
}

.footer-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px 40px;
	padding: 0;
	margin-top: 10px;
	margin-bottom: 0;
}

.footer-list-item > a {
	color: #FFF;
	letter-spacing: 0.07em;
}

.footer-sub-list {
	list-style: none;
	padding: 0;
	margin-top: 10px;
	margin-bottom: 0;
}

.footer-sub-list a {
	--fs: 13;
	letter-spacing: 0.07em;
	line-height: calc(29 / 13);
	color: #666666;
}

.copyright {
	--fs: 12;
	font-size: var(--font-size);
	letter-spacing: 0.025em;
	color: #666666;
	margin-bottom: 0;
}

@media(max-width: 991px) {
	.footer-contact-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.footer-contact-content .copy {
		text-align: center;
	}
	.footer-list {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width: 767px) {
	.footer-contact {
		mix-blend-mode: luminosity;	
		padding-top: 530px;
		padding-bottom: 30px;
	}
	body.home .footer-contact {
		margin-top: -185px;
	}
	.footer-contact .copy img {	
		width: 313px;
	}
	.footer-content {
		--padding: 35px;
		padding-top: 35px;
		padding-bottom: 15px;
	}
	.footer-logo img {
		width: 208px;
	}
	.footer-youtube {
		margin-bottom: 50px;
	}
	.footer-youtube img {
		width: 86px;
	}
	.footer-content .footer-youtube + p {
		--fs: 14;
	}
	.footer-content address {
		--fs: 12;
		margin-bottom: 50px;
	}
	.footer-list {
		gap: 70px 40px;
		margin-top: 0;
		margin-bottom: 50px;
	}
	.footer-list-item > a {
		--fs: 14;
	}
	.footer-sub-list {
		margin-top: 5px;
	}
	.footer-sub-list a {
		--fs: 12;
	}
	.copyright {
		--fs: 8;
		text-align: center;
	}
}

@media(max-width: 575px) {
	.footer-contact::before{
		transform: scale(1.4);
	}
}

/*		トップ 共通		*/
.top-section-title {
	display: grid;
	gap: 10px;
	max-inline-size: max-content;
}

.top-section-title-ja {
	--fs: 16;
	font-size: var(--font-size);
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}

.top-section-title-en {
	display: block;
	order: -1;
}

.top-section-title-en img {
	height: 80px;
}

.more-btn a {
	--fs: 18;
	font-weight: 500;
	letter-spacing: 0.1em;
	font-family: var(--noto-serif);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 450px;
	width: 100%;
	min-height: 74px;
	border: 1px solid #000;
	padding: 5px 100px;
	position: relative;
}

.more-btn a::before {
	content: "";
	width: 70px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 55%;
	right: 15px;
	transform: translateY(-50%);
}

.more-btn a::after {
	content: "";
	width: 22px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 55%;
	right: 15px;
	transform-origin: bottom right;
	transform: rotate(45deg);
}

.more-link a {
	position: relative;
	display: inline-block;
	font-weight: 500;
	left: 0.1em;
	padding: 5px 150px 5px 0;
}

.more-link a::before {
	content: "";
	width: 135px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
}

.more-link a::after {
	content: "";
	width: 22px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 55%;
	right: 0;
	transform-origin: bottom right;
	transform: rotate(45deg);
}

@media(max-width: 767px) {
	.top-section-title-ja {
		--fs: 12;
	}
	.top-section-title-en img {
		height: 40px;
	}
	.more-btn a {
		--fs: 16;
		max-width: 300px;
		min-height: 50px;
		padding: 5px 60px;
	}
	.more-btn a::before {
		width: 50px;
		right: 10px;
	}
	.more-btn a::after {
		width: 15px;
		right: 10px;
	}
	.more-link a {
		--fs: 12;
		padding-right: 100px;
	}
	.more-link a::before {
		width: 93px;
	}
	.more-link a::after {
		width: 15px;
	}
}


/*		トップ		*/
.main {
	position: relative;
	overflow: clip;
}

.main::before {
	content: "";
	background: #000;
	width: 850px;
	position: absolute;
	right: calc(50% - 1500px);
	top: 808px;
	bottom: 0;
	transform: skewX(325deg);
    transform-origin: left top;
	/* content: "";
    aspect-ratio: 44 / 51;
    background: #000;
    bottom: 0;
    clip-path: polygon(calc(100% - 850px) 0, 100% 0, 850px 100%, 0 100%);
    display: block;
    height: 100%;
    position: absolute;
    right: calc(50% - 1500px);
    top: 808px;
    width: auto; */
}

.main::after {
	content: "";
	background: #999999;
	width: 1500px;
	position: absolute;
	left: calc(50% - 2150px);
	top: 0;
	bottom: 0;
	transform: skewX(325deg);
    transform-origin: left bottom;
	z-index: -1;
	/* content: "";
	aspect-ratio: 44 / 51;
	background: #999999;
	bottom: 0;
	clip-path: polygon(calc(100% - 1500px) 0, 100% 0, 1500px 100%, 0 100%);
	display: block;
	height: 100%;
	position: absolute;
	left: calc(50% - 2150px);
	top: 0;
	width: auto;
	z-index: -1; */
}

@media(max-width: 991px) {
	.main::before {
		right: calc(50% - 1400px);
	}
}

@media(max-width: 767px) {
	.main::before {
		top: 550px;
		right: calc(50% - 1100px);
	}
}

@media(max-width: 575px) {
	.main::before {
		width: 400px;
		right: calc(50% - 650px);
	}
	.main::after {
		width: 785px;
		left: calc(50% - 2100px);
	}
}



/*.hero {
	width: 100%;
	height: 808px;
	background-image: url('img/hero.jpg');
	background-size: cover;
	background-position: center;
	margin-bottom: 70px;
}*/

.hero {
    position: relative;
    width: 100%;
    height: 808px;
    overflow: hidden;
    margin-bottom: 70px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media(max-width: 767px) {
	.hero {
		height: 550px;
		margin-bottom: 40px;
	}
	.hero-video {
        display: none;
    }
    .hero {
    	background-image: url('img/hero.jpg');
    	background-size: cover;
		background-position: center;
    }
}

/*		トップ 私たちの強み		*/
.top-strengths .copy {
	max-width: 80%;
	margin-bottom: 70px;
}

.top-strengths .top-section-title {
	margin-bottom: 50px;
}

.top-strengths-content {
	position: relative;
	max-width: 1320px;
	padding: 280px var(--padding);
	margin-inline: auto;
}

.top-strengths-content::before {
	content: "";
	width: 100vw;
	height: 100%;
	background: url(img/bg-strengths.jpg) center / cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.top-strengths-text img {
	display: block;
	max-width: 890px;
	width: 65%;
	margin-left: auto;
	margin-bottom: 80px;
}

.top-strengths-text .more-btn {
	margin-left: 10%;
}

.top-strengths-text .more-btn a {
	color: #998675;
	border-color: #998675;
}

.top-strengths-text .more-btn a::before,
.top-strengths-text .more-btn a::after {
	background: #998675;
}

@media(max-width: 991px) {

}

@media(max-width: 767px) {
	.top-strengths {
		margin-bottom: 20px;
	}
	.top-strengths .top-section-title {
		margin-bottom: 10px;
	}
	.top-strengths .copy {
		margin-bottom: 20px;
	}
	.top-strengths .copy img {
		width: 312px;
	}
	.top-strengths-content {
		padding-top: 210px;
		padding-bottom: 135px;
	}
	.top-strengths-text img {
		margin-bottom: 30px;
	}
	.top-strengths-text .more-btn a {
		--fs: 12;
		max-width: 180px;
		min-height: 30px;
		padding: 5px 40px;
	}
	.top-strengths-text .more-btn a::before {
		right: 5px;
		width: 30px;
	}
	.top-strengths-text .more-btn a::after {
		width: 8px;
		right: 5px;
	}
}

@media(max-width: 575px) {
	.top-strengths-text img {
		max-width: 360px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		transform: translateX(2%);
	}
} 

/*		トップ 施工実績		*/
.top-results {
	--container: 995px;
	position: relative;
	margin-top: -50px;
	margin-bottom: 100px;
	z-index: 1;
	overflow: clip;
}

.top-results-slide {
	max-width: 825px;
	margin-bottom: 30px;
	margin-inline: auto;
}

.top-results-slide .splide__track {
	overflow: visible;
}

.top-results-slide .splide__slide {
	max-width: 770px;
}

.top-results-slide .splide__arrow {
	width: 56px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 0;
	top: 35%;
	background: transparent;
}

.top-results-slide .splide__arrow--prev {
	border-top: 2px solid #FFF;
	border-left: 2px solid #FFF;
	opacity: 1;
	transform: rotate(-45deg);
}

.top-results-slide .splide__arrow--next {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	opacity: 1;
	transform: rotate(45deg);
}

.top-results-slide .splide__arrow svg {
	display: none;
}

.top-result-item {
	display: block;
	max-width: 525px;
	margin-inline: auto;
}

.top-result-item-image {
	position: relative;
	margin-bottom: 25px;
}

.top-result-item img {
	transform-origin: bottom center;
	transition: 0.3s;
}

.top-results-slide .splide__slide:not(.is-active) img {
	transform: scale(0.85);
}

.results-number {
	--fs: 103;
	line-height: 1;
	font-size: var(--font-size);
	letter-spacing: 0.05em;
	font-family: var(--noto-serif);
	font-style: italic;
	color: #000;
	text-shadow: 0 0 4px #FFF;
	position: absolute;
	bottom: 0;
	right: 5%;
	transform: translateY(20%);
}

.results-number span {
	--fs: 52;
	font-size: var(--font-size);
}

.top-result-item-body {
	transition: 0.3s;
}

.top-results-slide .splide__slide:not(.is-active) .top-result-item-body {
	opacity: 0;
}

.top-result-item-body p {
	letter-spacing: 0.1em;
	text-shadow: 0px 0px 4px #FFF;
	margin-bottom: 25px;
}

.top-result-item-body span {
	display: block;
	text-shadow: 0px 0px 4px #FFF;
}

@media(max-width: 767px) {
	.top-results {
		margin-top: 0;
		margin-bottom: 50px;
	}
	.top-results-slide {
		margin-bottom: 50px;
	}
	.top-result-item-image {
		margin-bottom: 15px;
	}
	.results-number {
		--fs: 50;
	}
	.results-number span {
		--fs: 25;
	}
	.top-result-item-body p,
	.top-result-item-body span {
		--fs: 12;
	}
	.top-result-item-body p {
		margin-bottom: 15px;
	}
}

@media(max-width: 575px) {
	.top-results-slide .splide__slide {
		max-width: 285px;
	}
	.top-results-slide .splide__arrow {
		width: 40px;
		top: 30%;
	}
	.top-results-slide .splide__arrow--next {
		right: 3px;
	}
	.top-results-slide .splide__arrow--prev {
		left: 3px;
	}
}

/*		トップ 事業内容		*/
.top-business {
	--container: 1200px;
	margin-bottom: 145px;
}

.top-business-content {
	display: grid;
	grid-template-columns: 1fr 40%;
	align-items: center;
	gap: 55px;
}

.top-business-slide {
	margin-left: calc((1440px - 1200px) / -2);
}

.top-business-slide .splide__pagination {
	gap: 15px;
	bottom: 15px;
}

.top-business-slide .splide__pagination__page {
	width: 13px;
	height: 13px;
	margin: 0;
}

.top-business-slide .splide__pagination__page.is-active{
	transform: scale(1);
}

.top-business-text .top-section-title {
	margin-bottom: 70px;
}

.top-business-text p {
	line-height: calc(36 / 16);
}

.top-business-text .more-btn a {
	color: #998675;
	border-color: #998675;
	background: #FFF;
}

.top-business-text .more-btn a::before,
.top-business-text .more-btn a::after {
	background: #998675;
}

@media(max-width: 1439px) {
	.top-business-slide {
		margin-left: calc((100vw - 1200px) / -2);
	}
}

@media(max-width: 1199px) {
	.top-business-slide {
		margin-left: calc(var(--padding) * -1);
	}
}

@media(max-width: 767px) {
	.top-business {
		margin-bottom: 55px;
	}
	.top-business-content {
		grid-template-columns: 1fr;
		gap: 55px;
	}
	.top-business-slide .splide__pagination {
		gap: 8px;
		bottom: 7px;
	}
	.top-business-slide .splide__pagination__page {
		width: 6px;
		height: 6px;
	}
	.top-business-text .top-section-title {
		margin-bottom: 20px;
	}
}

/*		トップ 写真		*/
.top-images {
	position: relative;
	overflow: clip;
}

.top-images img {
	position: relative;
	max-width: 2275px;
	width: 160%;
	left: 50%;
	transform: translateX(-50%);
}

@media(max-width: 575px) {
	.top-images {
		margin-bottom: 75px;
	}
	.top-images img {
		width: 100%;
	}
}

/*		トップ 新着情報		*/
.top-news {
	background: #FFF;
	padding-top: 130px;
	padding-bottom: 70px;
}

.top-news .top-section-title {
	margin-bottom: 75px;
}

.top-news .news-list {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 60px;
	list-style: none;
	padding: 0;
	margin-bottom: 60px;
}

.news-item-image {
	margin-bottom: 10px;
}

.news-item-image img {
	width: 100%;
	aspect-ratio: 253 / 216;
	object-fit: cover;
}

.news-item-date {
	display: block;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 500;
	margin-bottom: 10px;
}

.top-news .news-item-title {
	margin-bottom: 0;
}

@media(max-width: 991px) {
	.top-news .news-list {
		gap: 20px;
	}
}

@media(max-width: 767px) {
	.top-news {
		--padding: 30px;
		padding-top: 80px;
		padding-bottom: 55px;
	}
	.top-news .top-section-title {
		margin-bottom: 50px;
	}
	.top-news .news-list {
		grid-template-columns: repeat(2,1fr);
		gap: 30px;
		margin-bottom: 20px;
	}
	.top-news .news-item-date {
		margin-bottom: 5px;
	}
	.top-news .news-item-date,
	.top-news .news-item-title {
		--fs: 12;
	}
}

/*		トップ 採用情報		*/
.top-recruit {
	--container: 1235px;
	background: #FFF;
}

.top-recruit-inner {
	position: relative;
	padding: 20px;
	z-index: 5;
}

.top-recruit-inner::before {
	content: "";
	width: 100%;
	height: 100%;
	border: 3px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.top-recruit-content {
	position: relative;
	width: 100%;
	padding: 45px;
	margin-left: auto;
}

.top-recruit-content::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #e6e6e6;
	clip-path: polygon(calc(100% - 365px) 0, 100% 0, 100% 100%, calc(100% - 815px) 100%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.top-recruit-content::after {
	content: "";
	width: 70%;
	height: 100%;
	background: url(img/top-recruit-bg.jpg) no-repeat top left / cover;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.top-recruit-text {
	position: relative;
	max-width: 500px;
	margin-left: auto;
	z-index: 1;
}

.top-recruit-text .top-section-title {
	margin-bottom: 40px;
}

.top-recruit-text h3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	--fs: 30;
	color: #FFF;
	font-size: var(--font-size);
	letter-spacing: 0.075em;
	line-height: 1;
	font-family: var(--noto-serif);
	text-align: center;
	gap: 8px;
	margin-bottom: 15px;
}

.top-recruit-text h3 span {
	position: relative;
	padding: 10px 5px;
}

.top-recruit-text h3 span::before {
	content: "";
	position: absolute;
	width: 105%;
	height: 100%;
	background: #000;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}

@media(max-width: 991px) {
	.top-recruit-content {
		padding: 30px 15px 0;
		overflow: clip;
	}
	.top-recruit-content::before {
		clip-path: none;
		border: 1px solid #000;
	}
	.top-recruit-content::after {
		width: 130%;
		max-width: 365px;
		aspect-ratio: 337 / 280;
		background: url(img/top-recruit-bg_sp.png) center / cover;
		display: block;
		position: relative;
		top: auto;
		right: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1;
	}
	.top-recruit-text {
		max-width: 100%;
		margin-inline: auto;
		margin-bottom: 15px;
	}
}

@media(max-width: 767px) {
	.top-recruit {
		--padding: 30px;
	}
	.top-recruit-inner {
		padding: 8px 5px;
	}
	.top-recruit-inner::before {
		border: 2px solid #000;
	}
	.top-recruit .top-section-title {
		gap: 0;
		margin-bottom: 20px;
	}
	.top-recruit .top-section-title-en img {
		height: 50px;
	}
	.top-recruit-text h3 {
		--fs: 18;
		letter-spacing: 0.01em;
		gap: 4px;
	}
	.top-recruit-text h3 span {
		padding: 5px;
	}
	.top-recruit-text p {
		--fs: 12;
		letter-spacing: 0.1em;
	}
}

/*		下層ページ		*/
.page-header {
	display: grid;
	align-items: center;
	height: 285px;
	padding: 100px 0 12px;
}

.page-header-title {
	--fs: 30;
	line-height: calc(68 / 30);
	letter-spacing: 0.1em;
	font-size: var(--font-size);
	font-family: var(--noto-serif);
	font-weight: 500;
	color: #FFF;
	margin-bottom: 0;
}

.page-body {
	position: relative;
	padding-top: 35px;
	padding-bottom: 170px;
	overflow: clip;
}

.breadcrumbs {
	--fs: 12;
	margin-bottom: 60px;
}

.breadcrumbs span {
	--fs: 12;
	line-height: calc(14 / 12);
	letter-spacing: 0.1em;
}

.page-nav {
	margin-bottom: 130px;
}

.page-nav-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	list-style: none;
	gap: 10px;
	padding: 0;
	margin-bottom: 0;
}

.page-nav-list li a {
	position: relative;
	display: grid;
	place-items: center;
	--fs: 16;
	letter-spacing: 0.1em;
	min-height: 37px;
	min-width: 170px;
	border: 1px solid #000;
	border-radius: 40px;
	padding: 5px 40px;
}

.page-nav-list li a::before {
	content: "";
	width: 8px;
	aspect-ratio: 1/cos(30deg);
	clip-path: polygon(50% 100%,100% 0,0 0);
	background: linear-gradient(45deg,#000);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-40%);
}

.section-title {
	display: grid;
	gap: 15px;
	margin-bottom: 100px;
}

.section-title-ja {
	--fs: 16;
	font-size: var(--font-size);
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: calc(28 / 15);
	margin-bottom: 0;
}

.section-title-en {
	order: -1;
}

@media(max-width: 767px) {
	.page-header {
		height: 290px;
		padding: 80px 0 15px;
	}
	.page-header-title {
		--fs: 24;
	}
	.page-body {
		padding-top: 25px;
		padding-bottom: 130px;
	}
	.breadcrumbs {
		margin-bottom: 50px;
	}
	.page-nav {
		margin-bottom: 60px;
	}
	.page-nav-list {
		gap: 20px 10px;
	}
	.page-nav-list li a {
		min-width: 160px;
		padding: 5px 20px;
	}
	.page-nav-list li a::before {
		right: 10px;
	}
	.section-title {
		margin-bottom: 50px;
	}
	.section-title-ja {
		--fs: 12;
	}
}

/*		事業内容（施工実績）		*/
.page-id-11 .page-body {
	--padding: 25px;
}

.page-id-11 .page-body::before {
	content: "";
	width: 3520px;
	height: 100%;
	background: linear-gradient(to right,#FFF 0%,#FFF 1210px,transparent 1210px,transparent 2300px, #000 2300px,#000 3520px);
	position: absolute;
	top: 0;
	right: calc(50% - 3520px - 720px);
    transform: skewX(325deg);
    transform-origin: left top;
	z-index: -1;
}

.page-id-11 .page-header {
	background: url(img/header-business.jpg) center / cover;
}

.business-content {
	margin-bottom: 200px;
}

.business-steel {
	position: relative;
	max-width: 950px;
	padding-bottom: 100px;
	margin-inline: auto;
}

.business-steel::before {
	content: "";
	width: calc(100vw - var(--padding) * 2);
	max-width: 1130px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.business-steel-intro {
	margin-bottom: 130px;
}

.business-steel-columns {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 30px;
	align-items: center;
	max-width: 1130px;
	width: calc(100vw - var(--padding) * 2);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 50px;
}

.business-steel-image {
	margin-left: calc((1440px - 1130px) / -2);
}

.business-steel-text {
	position: relative;
	padding-top: 70px;
}

.business-steel-text::before {
	content: "";
	width: calc(100% + 30px);
	height: 1px;
	background: #000;
	position: absolute;
	top: 0;
	right: 0;
}

.business-steel h5 {
	--fs: 19;
	font-size: var(--font-size);
	letter-spacing: 0.1em;
	font-family: var(--noto-serif);
	font-weight: 700;
	margin-bottom: 35px;
}

.business-content h6 {
	--fs: 18;
	font-size: var(--font-size);
	letter-spacing: 0.1em;
	font-family: var(--noto-serif);
	font-weight: 700;
	margin-bottom: 15px;
}

.business-steel-table {
	overflow: scroll;
}

.business-steel-table table {
	min-width: 930px;
	width: 100%;
}

.business-steel-table table thead th {
	--fs: 14;
	line-height: 1.5;
	font-weight: 600;
	background: #ececec;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 10px 15px;
}

.business-steel-table table thead tr th:first-child {
	border-left: 1px solid #000;
}

.business-steel-table table thead tr th:last-child {
	border-right: 1px solid #000;
}

.business-steel-table table tbody tr :where(th,td) {
	--fs: 14;
	font-weight: 400;
	vertical-align: baseline;
	line-height: 1.5;
	border-bottom: 1px solid #000;
	padding: 6px 15px;
}

.business-steel-table table tbody tr th.bg-gray {
	background: #ececec;
}

.business-steel-table table tbody tr :where(th,td):last-child {
	border-right: 1px solid #000;
}

.business-steel-table table tbody tr th:first-child {
	border-left: 1px solid #000;
}

.business-build {
	position: relative;
	max-width: 950px;
	margin-inline: auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

.business-build::before {
	content: "";
	width: calc(100vw - var(--padding) * 2);
	max-width: 1130px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.results-year-nav {
	margin-bottom: 100px;
}

.results-year-nav .nav {
	gap: 15px 30px;
}

.results-year-nav .nav .nav-link {
	position: relative;
	display: grid;
	place-content: center;
	--fs: 16;
	font-weight: 500;
	color: #000;
	letter-spacing: 0.1em;
	line-height: 1.3;
	width: 170px;
	min-height: 37px;
	background: #FFF;
	border: 1px solid #000;
	border-radius: 40px;
	padding: 5px 35px;
}

.results-year-nav .nav .nav-link::before {
	content: "";
    width: 8px;
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: linear-gradient(45deg, #000);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-40%);
}

.results-year-nav .nav .nav-link.active {
	pointer-events: none;
	background: #000;
	color: #FFF;
}

.results-year-nav .nav .nav-link.active::before {
	background: #FFF;
}

.results-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 85px 75px;
	padding: 0;
	margin-bottom: 160px;
}

.results-item {
	background: #FFF;
	border: 1px solid #000;
	padding: 10px 10px 20px;
}

.results-item-image {
	margin-bottom: 15px;
}

.results-item-image img {
	aspect-ratio: 150 / 180;
	object-fit: cover;
	width: 100%;
}

.results-item-title {
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: calc(27 / 16);
	margin-bottom: 15px;
}

.results-item span {
	--fs: 13;
	letter-spacing: 0.1em;
}

.page-links {
	display: flex;
	justify-content: space-around;	
	flex-wrap: wrap;
	gap: 20px 30px;
}

.page-links a {
	position: relative;
	--fs: 12;
	font-size: var(--font-size);
	letter-spacing: 0.1em;
	line-height: 1;
	min-width: 435px;
	min-height: 86px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: linear-gradient(125deg, #FFF 50%, #e6e6e6 50%);
}

.page-links a span {
	--fs: 43;
	font-family: var(--noto-serif);
	font-weight: 500;
}

.page-links a::before {
	content: "";
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	display: block;
	border: 1px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.page-links a::after {
	content: "";
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

@media(max-width: 1439px) {
	.business-steel-image {
		margin-left: calc((100vw - 1130px) / -2);
	}
}

@media(max-width: 1179px) {
	.business-steel-image {
		margin-left: calc(var(--padding) * -1);
	}
}

@media(max-width: 991px) {
	.results-list {
		gap: 50px 25px;
	}	
}

@media(max-width: 767px) {
	.business-content {
		margin-bottom: 70px;
	}
	.business-content .section-title-en img {
		width: 197px;
	}
	.business-steel {
		padding-bottom: 40px;
	}
	.business-steel-intro {
		margin-bottom: 80px;
	}
	.business-steel-columns {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	.business-steel-text {
		padding-top: 0;
	}
	.business-steel-text::before {
		content: none;
	}
	.business-steel h5 {
		text-align: center;
		margin-bottom: 20px;
	}
	.business-content h6 {
		margin-bottom: 40px;
	}
	.business-build {
		padding-top: 70px;
		padding-bottom: 50px;
	}
	.business-results .section-title-en img {
		width: 323px;
	}
	.results-year-nav {
		margin-bottom: 40px;
	}
	.results-year-nav .nav {
		display: grid;
		grid-template-columns: repeat(3,1fr);
		justify-content: center;
		gap: 15px 45px;
	}
	.results-year-nav .nav .nav-link {
		--fs: 13;
		font-size: var(--font-size);
		width: 100%;
		min-height: 30px;
	}
	.results-list {
		grid-template-columns: repeat(2,1fr);
		gap: 25px 20px;
		margin-bottom: 45px;
	}
	.results-item {
		padding: 4px 4px 15px;  
	}
	.results-item-image {
		margin-bottom: 5px;
	}
	.results-item-image img {
		aspect-ratio: 1;
	}
	.results-item-title {
		--fs: 12;
		letter-spacing: 0;
		margin-bottom: 10px;
	}
	.results-item span {
		--fs: 12;
	}
	.page-links a {
		gap: 5px;
		min-width: 280px;
		min-height: 55px;
	}
	.page-links a span {
		--fs: 28;
	}
}

@media(max-width: 575px) {
	.page-id-11 .page-header {
		background: url(img/header-business_sp@2x.jpg) center / cover;
	}
	.page-id-11 .page-body::before {
		width: 3250px;
		background: linear-gradient(to right,#FFF 0%,#FFF 1580px,transparent 1580px,transparent 2300px, #000 2300px,#000 3250px);
		right: calc(50% - 3250px - 480px);
	}
	.results-year-nav .nav {
		grid-template-columns: 140px 140px;
	}
}


/*		会社情報		*/
.page-header {
	background: url(img/header-business.jpg) center / cover;
}

.page-id-13 .page-body {
	--padding: 25px;
}

.page-id-13 .page-body::before {
	content: "";
	width: 4250px;
	height: 100%;
	background: linear-gradient(to right,#000 0%,#000 1160px,#999999 1160px,#999999 2120px, #000 2120px,#000 4500px);
	position: absolute;
	bottom: 0;
	left: calc(50% + 4500px - 2370px);
    transform: skewX(325deg);
    transform-origin: left top;
	z-index: -1;
}

.company-message {
	margin-bottom: 80px;
}

.sign {
	display: grid;
	gap: 5px;
}

.sign span {
	--fs: 10;
	letter-spacing: 0;
}

.company-philosophy {
	margin-bottom: 150px;
}

.company-philosophy .section-title {
	margin-bottom: 60px;
}

.company-philosophy-figure {
	display: block;
	margin-bottom: 90px;
}

.company-philosophy-image {
	display: block;
	text-align: center;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.company-philosophy-image img {
	max-width: 1440px;
	width: 100%;
}

.company-overview {
	margin-bottom: 250px;
}

.company-overview-content {
	max-width: 870px;
	margin-left: auto;
}

@media(min-width: 1300px) {
	.company-overview .section-title{
		margin-top: -50px;
		margin-bottom: 150px;
	}
}

.company-overview-table {
	margin-bottom: 60px;
	text-shadow: 
        0 0 4px rgba(0,0,0,0.5),
        0 0 8px rgba(0,0,0,0.3),
        0 0 12px rgba(0,0,0,0.2);
}

.company-overview-table table {
	width: 100%;
}

.company-overview-table table :where(th,td) {
	font-weight: 500;
	color: #FFF;
	border-bottom: 1px solid #FFF;
	padding: 15px 5px;
}

.company-overview-image {
	margin-right: calc((1440px - 1130px) / -2);
}

.company-history {
	margin-bottom: 250px;
}

.company-history-content {
	max-width: 870px;
	margin-left: auto;
}

.company-history-table table {
	width: 100%;
}

.company-history-table table tr {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0 60px;
}

.company-history-table table th {
	position: relative;
	width: 140px;
	height: 100%;
	white-space: nowrap;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.075em;
	color: #FFF;
	padding: 20px 40px;
	border-bottom: 1px solid #FFF;
}

.company-history-table table th span {
	display: inline-block;
	--fs: 10;
	line-height: 1;
}	

.company-history-table table th::before {
	content: "";
	width: 1px;
	height: 100%;
	border-left: 1px dashed #FFF;
	position: absolute;
	top: 0;
	left: 25px;
}

.company-history-table table tr:last-child th::before {
	height: calc(100% + 45px);
}

.company-history-table table td {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 0 50px;
	align-items: center;
	font-weight: 500;
	height: 100%;
	color: #FFF;
	border-bottom: 1px solid #FFF;
	padding: 20px 0;
}

.company-policy {
	margin-bottom: 250px;
}

.company-officer {
	background: #FFF;
	padding: 80px 25px 200px;
	margin-right: calc((1440px - 1130px) / -2);
	margin-bottom: 100px;
}

.company-officer-inner {
	max-width: 1030px;
	margin-inline: auto;
}

.officer-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 50px 50px;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.officer-block {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 50px 50px;
	padding: 20px 0px;
	margin-bottom: 0;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid;
	max-width: 900px;
	margin-inline: auto;
}

.officer-item img {
	margin-bottom: 20px;
}

.officer-position {
	display: block;
	font-family: var(--noto-serif);
	line-height: 1.3;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

.officer-name {
	--fs: 26;
	font-size: var(--font-size);
	font-family: var(--noto-serif);
	letter-spacing: 0.1em;
	/*margin-bottom: 15px;*/
	margin-bottom: 0px;
}

.officer-name span {
	--fs: 16;
	letter-spacing: 0.1em;
}

.company-access-content {
	display: grid;
	grid-template-columns: 30% 1fr;
	gap: 60px;
}

.company-access-image img {
	margin-bottom: 15px;
}

.company-access-image p {
	font-weight: 500;
}

.company-access-map iframe {
	width: 100%;
	height: 100%;
}

@media(max-width: 1439px) {
	.company-officer {
		margin-right: calc((100vw - 1130px) / -2);
	}
}

@media(max-width: 1179px) {
	.company-officer {
		margin-right: calc(var(--padding) * -1)
	}
}

@media(max-width: 991px) {
	.officer-list {
		gap: 50px 25px;
	}
}

@media(max-width: 767px) {
	.company-message {
		margin-bottom: 100px;
	}
	.company-message .section-title-en img {
		width: 155px;
	}
	.company-message-image img {
		aspect-ratio: 1;
		object-fit: cover;
	}
	.company-philosophy .section-title-en img {
		width: 240px;
	}
	.company-overview {
		margin-bottom: 90px;
	}
	.company-overview .section-title-en img {
		width: 172px;
	}
	.company-overview-table table :where(th,td) {
		--fs: 14;
		vertical-align: baseline;
		padding: 25px 5px;
	}
	.company-history {
		margin-bottom: 100px;
	}
	.company-history .section-title-en img {
		width: 180px;
	}
	.company-history-table table tr {
		grid-template-columns: 80px 1fr;
		gap: 0 30px;
	}
	.company-history-table table th {
		display: flex;
		flex-direction: column;
		gap: 5px;
		justify-content: center;
		--fs: 14;
		width: auto;
		padding: 15px 0 15px calc(var(--padding) + 10px);
		margin-left: calc(var(--padding) * -1);
	}
	.company-history-table table tr:last-child th::before {
		height: calc(100% + 40px);
	}
	.company-history-table table th::before {
		left: 20px;
	}
	.company-history-table table th span {
		--fs: 12;
	}
	.company-history-table table td {
		--fs: 14;
		letter-spacing: 0.075em;
		grid-template-columns: 35px 1fr;
		gap: 0 10px;
		padding: 15px 0;
	}
	.company-policy {
		margin-bottom: 50px;
	}
	.company-policy .section-title-en img {
		width: 248px;
	}
	.company-policy .is-style-h-2 {
		--fs: 14;
	}
	.company-officer {
		padding-bottom: 50px;
		margin-bottom: 80px;
	}
	.company-officer .section-title-en img {
		width: 234px;
	}
	.officer-list {
		grid-template-columns: repeat(2,1fr);
	}
	.officer-block {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.officer-position {
		--fs: 15;
	}
	.officer-name {
		--fs: 25;
	}
	.officer-text {
		--fs: 15;
	}
	.company-access .section-title-en img {
		width: 151px;
	}
	.company-access-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.company-access-map iframe {
		min-height: 600px;
	}
}

@media(max-width: 575px) {
	.page-header {
		background: url(img/header-business_sp@2x.jpg) center / cover;
	}
	.page-id-13 .page-body::before {
		width: 3000px;
		background: linear-gradient(to right,#000 0%,#000 1130px,#999999 1130px,#999999 2000px, #000 2000px,#000 2750px);
		left: calc(50% + 2750px - 770px);
	}
	.company-overview .section-title-en img {
		filter: invert(100%);
	}
	.company-overview .section-title-ja {
		color: #FFF;
	}
	.officer-list {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 490px) and (max-width: 575px) {
	.page-id-13 .page-body::before {
		top: 3%;
	}
}

/*		採用情報		*/
.page-id-19 .page-header {
	background: url(img/header-recruit.jpg) center / cover;
}

.page-id-19 .page-header-title {
	color: #000;
}

.page-id-19 .page-body {
	--padding: 25px;
}

.page-id-19 .page-body::before {
 	content: "";
	width: 5840px;
	height: 100%;
	background: linear-gradient(to right,#FFF 0%,#FFF 1220px,transparent 1220px,transparent 2460px,#FFF 2460px,#FFF 3660px,transparent 3660px,transparent 4635px,#FFF 4635px,#FFF 5840px);
	position: absolute;
	top: 0;
	right: calc(50% - 5840px - 1440px / 2);
	transform: skewX(325deg);
    transform-origin: left top;
    z-index: -1;
}

.recruit-thoughts {
	margin-bottom: 160px;
}

.recruit-thoughts-content {
	display: grid;
	align-items: flex-end;
	grid-template-columns: 1fr 60%;
	gap: 40px;	
}

.recruit-view {
	margin-bottom: 190px;
}

.recruit-view h2 {
	margin-bottom: 140px;
}

.recruit-view-conetnt {
	position: relative;
	background: #FFF;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	border: 1px solid #666666;
	padding: 120px 20px 70px;
}

.recruit-view-conetnt::before {
	content: "";
	width: 1px;
	height: 90%;
	border-left: 1px dashed #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.recruit-view-image {
	text-align: center;
}

.recruit-development {
	margin-bottom: 280px;
}

.recruit-development-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	max-width: 1030px;
	margin-top: 100px;
	margin-left: auto;
}

.recruit-development-table table {
	width: 100%;
}

.recruit-development-table table :where(th,td) {
	font-weight: 500;
	letter-spacing: 0.075em;
	border-bottom: 1px solid #000;
	padding: 20px 20px;
}

.recruit-development-table table th {
	position: relative;
	padding-left: 50px;
}

.recruit-development-table table th::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	border-right: 1px dashed #000;
	position: absolute;
	top: 0;
	right: 0;
}

.recruit-development-table table tr:last-child th::before {
	height: calc(100% + 45px);
}

.recruit-development-table table td {
	text-align: center;
}

.recruit-intro {
	margin-bottom: 200px;
}

.recruit-intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 75px;
}

.recruit-intro-image {
	margin-bottom: 35px;
}

.recruit-intro-title {
	--fs: 27;
	font-size: var(--font-size);
	letter-spacing: 0;
	color: #FFF;
	background: #000;
	max-inline-size: max-content;
	padding: 5px 20px;
	margin-bottom: 35px;
}

.recruit-intro-item h4 {
	--fs: 19;
	font-size: var(--font-size);
	font-weight: bold;
	letter-spacing: 0;
	margin-bottom: 10px;
}

.recruit-interview {
	margin-bottom: 250px;
}

.recruit-interview-item {
	display: grid;
	grid-template-columns: 1fr 50%;
	align-items: center;
	gap: 40px;
}

.recruit-interview-item:not(:last-child) {
	margin-bottom: 150px;
}

.recruit-interview-item:nth-child(even) {
	grid-template-columns: 50% 1fr;
}

.recruit-interview-item:nth-child(even) .recruit-interview-text {
	order: -1;
}

.recruit-interview-image {
	margin-left: calc((1440px - 1130px) / -2);
}

.recruit-interview-item:nth-child(even) .recruit-interview-image {
	margin-right: calc((1440px - 1130px) / -2);
	margin-left: 0;
}

.recruit-interview-text h3 {
	--fs: 26;
	font-size: var(--font-size);
	line-height: calc(47 / 27);
	letter-spacing: 0;
	font-weight: 500;
	margin-bottom: 50px;
}

.recruit-job-content {
	max-width: 870px;
	margin-left: auto;
	margin-bottom: 150px;
}

.recruit-job-table table {
	width: 100%;
}

.recruit-job-table table :where(th,td) {
	font-weight: 500;
	letter-spacing: 0.075em;
	border-bottom: 1px solid #000;
	padding: 20px 5px;
}

.recruit-job-table table th {
	white-space: nowrap;
	min-width: 180px;
}

@media(max-width: 1439px) {
	.recruit-interview-image {
		margin-left: calc((100vw - 1130px) / -2);
	}
	.recruit-interview-item:nth-child(even) .recruit-interview-image {
		margin-right: calc((100vw - 1130px) / -2);
	}
}

@media(max-width: 1179px) {
	.recruit-interview-image {
		margin-left: calc(var(--padding) * -1);
	}
	.recruit-interview-item:nth-child(even) .recruit-interview-image {
		margin-right: calc(var(--padding) * -1);
	}
}

@media(max-width: 991px) {
	.recruit-development-content {
		gap: 25px;
	}
	.recruit-development-table table th {
		padding-left: 10px;
	}
}

@media(max-width: 767px) {
	.recruit-thoughts {
		margin-bottom: 105px;
	}
	.recruit-thoughts .section-title {
		margin-bottom: 10px;
	}
	.recruit-thoughts .section-title-en img {
		width: 226px;
	}
	.recruit-thoughts-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.recruit-thoughts-image {
		order: -1;
	}
	.recruit-view {
		margin-bottom: 70px;
	}
	.recruit-view h2 {
		margin-bottom: 60px;
	}
	.recruit-development .section-title-en img {
		width: 307px;
	}
	.recruit-development-content {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.recruit-development-table table :where(th,td) {
		--fs: 12;
		padding: 20px;
	}
	.recruit-development-table table th {
		padding-left: 30px;
	}
	.recruit-development-table table tr:last-child th::before {
		height: calc(100% + 30px);
	}
	.recruit-development {
		margin-bottom: 60px;
	}
	.recruit-intro {
		margin-bottom: 50px;
	}
	.recruit-intro .section-title {
		margin-bottom: 40px;
	}
	.recruit-intro .section-title-en img {
		width: 321px;
	}
	.recruit-intro-content {
		grid-template-columns: 1fr;
		gap: 55px;
	}
	.recruit-intro-image {
		margin-bottom: 20px;
	}
	.recruit-intro-title {
		--fs: 16;
		margin-bottom: 15px;
	}
	.recruit-intro-item p {
		--fs: 12;
	}
	.recruit-intro-item h4 {
		--fs: 14;
	}
	.recruit-interview {
		margin-bottom: 60px;
	}
	.recruit-interview .section-title-en img {
		width: 236px;
	}
	.recruit-interview-item,
	.recruit-interview-item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.recruit-interview-item:not(:last-child) {
		margin-bottom: 60px;
	}
	.recruit-interview-image,
	.recruit-interview-item:nth-child(even) .recruit-interview-image {
		order: -1;
		margin: 0;
	}
	.recruit-interview-text h3 {
		--fs: 15;
		margin-bottom: 10px;
	}
	.recruit-interview-text p {
		--fs: 12;
	}
	.recruit-job .section-title-en img {
		width: 75px;
	}
	.recruit-job-content {
		margin-bottom: 65px;
	}
	.recruit-job-table table :where(th,td) {
		--fs: 12;
	}
	.recruit-job-table table th {
		min-width: 100px;
	}
}

@media(max-width: 575px) {
	.page-id-19 .page-header {
		background: url(img/header-recruit_sp@2x.jpg) center / cover;
	}
	.page-id-19 .page-body::before {
		width: 5980px;
		background: linear-gradient(to right,#FFF 0%,#FFF 1575px,transparent 1575px,transparent 2520px,#FFF 2520px,#FFF 4105px,transparent 3660px,transparent 5230px,#FFF 5230px,#FFF 5980px);
		left: calc(50% + 390px / 2);
	}
	.recruit-view-conetnt {
		grid-template-columns: 1fr;
		gap: 75px;
		padding: 55px;
	}
	.recruit-view-conetnt::before {
		width: calc(100% - 55px * 2);
		height: 1px;
		border-bottom: 1px dashed #000;
		border-left: 0;
	}
}

/*		私たちの強み		*/
.page-id-9 .page-header {
	background: url(img/header-strengths.jpg) center / cover;
}

.page-id-9 .page-body::before {
 	content: "";
	width: 5840px;
	height: 100%;
	background: linear-gradient(to right,#FFF 0%,#FFF 1220px,transparent 1220px,transparent 2460px,#FFF 2460px,#FFF 3660px,transparent 3660px,transparent 4635px,#FFF 4635px,#FFF 5840px);
	position: absolute;
	top: 0;
	right: calc(50% - 5840px - 1440px / 2);
	transform: skewX(325deg);
    transform-origin: left top;
    z-index: -1;
}

.page-id-9 .page-body {
	--padding: 25px;
}

.strengths-our {
	margin-bottom: 250px;
}

.strengths-our .section-title {
	margin-bottom: 170px;
}

.strengths-our .is-style-h-3 {
	margin-bottom: 160px;
}

.strengths-our-item {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 40px;
}

.strengths-our-item:nth-child(odd) {
	grid-template-columns: 1fr 50%;
}

.strengths-our-item:not(:last-child) {
	margin-bottom: 140px;
}

.strengths-our-image {
	margin-left: calc((1440px - 1130px) / -2);
}

.strengths-our-item:nth-child(odd) .strengths-our-image {
	margin-right: calc((1440px - 1130px) / -2);
	margin-left: 0;
}

.strengths-our-text {
	padding-left: 80px;
}

.strengths-our-item:nth-child(odd) .strengths-our-text {
	order: -1;
}

.strengths-our-text h4 {
	position: relative;
	padding: 35px 0 40px 175px;
	margin-top: -55px;
	margin-left: -75px;
}

.strengths-our-text h4::before {
	width: 115px;
	left: 40px;
}

.strengths-our-text h4::after {
	left: 60px;
}

.strengths-our-text h4 span {
	position: absolute;
	--fs: 67;
	font-weight: 400;
	font-family: var(--bodoni);
	font-style: italic;
	line-height: 1;
	top: 10px;
	left: 0;
}

.strengths-technology {
	margin-bottom: 120px;
}

.strengths-technology-image {
	display: grid;	
}

.strengths-technology-image.columns-2 {
	grid-template-columns: repeat(2,1fr);
	gap: 100px;
}

.strengths-technology-image.columns-3 {
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}

.strengths-technology-image.columns-4 {
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
}

.strengths-technology-image figure {
	margin-bottom: 0;
}

.strengths-technology-image figcaption {
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-top: 15px;
}

.strengths-technology-content {
	max-width: 935px;
	margin-inline: auto;
}

.strengths-technology-content:not(:last-child) {
	margin-bottom: 150px;
}

.strengths-technology-image {
	position: relative;
	max-width: 1130px;
	width: calc(100vw - var(--padding) * 2);
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 50px;
}

.strengths-technology-content h4 {
	--fs: 20;
	font-size: var(--font-size);
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: var(--noto-serif);
	margin-top: 60px;
	margin-bottom: 30px;
}

.strengths-technology-content h5 {
	--fs: 18;
	font-size: var(--fotn-size);
	letter-spacing: 0.075em;
	font-weight: 500;
	margin-bottom: 10px;
}

.strengths-thorough {
	margin-bottom: 145px;
}

.strengths-thorough-content {
	display: grid;
	grid-template-columns: 1fr 50%;
	gap: 60px;
	align-items: center;
}

.strengths-thorough-text {
	order: -1;
}

.strengths-thorough-text p {
	letter-spacing: 0.1em;
	line-height: calc(36 / 16);
}

.strengths-thorough-image {
	margin-right: calc((1440px - 1130px) / -2);
}

.strengths-tottori {
	max-width: 930px;
	margin-inline: auto;
	margin-bottom: 80px;
}

.strengths-tottori-content {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 30px;
}

@media(max-width: 1439px) {
	.strengths-our-image {
		margin-left: calc((100vw - 1130px) / -2);
	}
	.strengths-our-item:nth-child(odd) .strengths-our-image {
		margin-right: calc((100vw - 1130px) / -2);
	}
}

@media(max-width: 1179px) {
	.strengths-our-image {
		margin-left: calc(var(--padding) * -1);
	}
	.strengths-our-item:nth-child(odd) .strengths-our-image {
		margin-right: calc(var(--padding) * -1);
	}
}

@media(max-width: 767px) {
	.strengths-our {
		margin-bottom: 100px;
	}
	.strengths-our .section-title {
		margin-bottom: 50px;
	}
	.strengths-our .section-title-en img {
		width: 242px;
	}
	.strengths-our .is-style-h-3 {
		margin-bottom: 50px;
	}
	.strengths-our-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.strengths-our-item:nth-child(odd) {
		grid-template-columns: 1fr;
	}
	.strengths-our-item:not(:last-child) {
		margin-bottom: 50px;
	}
	.strengths-our-item:nth-child(odd) .strengths-our-image {
		order: -1;
	}
	.strengths-our-text {
		padding: 0;
	}
	.strengths-our-text h4 {
		padding: 25px 0 25px 115px;
		margin-top: 0;
		margin-left: 0;
	}
	.strengths-our-text h4::before {
		width: 70px;
		left: 25px;
	}
	.strengths-our-text h4::after {
		left: 45px;
	}
	.strengths-our-text h4 span {
		--fs: 40;
	}
	.strengths-technology {
		margin-bottom: 50px;
	}
	.strengths-technology .section-title-en img {
		width: 280px;
	}
	.strengths-technology-content:not(:last-child) {
		margin-bottom: 50px;
	}
	.strengths-technology-image.columns-2 {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.strengths-technology-image.columns-2 figure:nth-child(1) img {
		max-width: calc(100% + var(--padding));
		margin-left: calc(var(--padding) * -1);
	}
	.strengths-technology-image.columns-2 figure:nth-child(2) img {
		max-width: calc(100% + var(--padding));
		margin-right: calc(var(--padding) * -1);
	}
	.strengths-technology-image.columns-3,
	.strengths-technology-image.columns-4 {
		grid-template-columns: 1fr;
	}
	.strengths-thorough {
		margin-bottom: 90px;
	}
	.strengths-thorough .section-title-en img {
		width: 276px;
	}
	.strengths-thorough-content {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.strengths-thorough-image {
		order: -1;
	}
	.strengths-tottori .section-title-en img {
		width: 268px;
	}
	.strengths-tottori .is-style-h-2 {
		margin-bottom: 45px;
	}
	.strengths-tottori-content {
		grid-template-columns: repeat(2,1fr);
		gap: 20px;
	}
}

@media(max-width: 575px) {
	.page-id-9 .page-body::before {
		width: 8045px;
		background: linear-gradient(to right,#FFF 0%,#FFF 1575px,transparent 1575px,transparent 2680px,#FFF 2680px,#FFF 5330px,transparent 5330px,transparent 6490px,#FFF 6490px,#FFF 8045px);
		left: calc(50% + 480px);
	}
	.page-id-9 .page-header {
		background: url(img/header-strengths_sp@2x.jpg) center / cover;
	}
}

/*		新着情報		*/

.blog .page-body,
.category .page-body {
	--padding: 25px;
}

.archive-news-content {
	max-width: 870px;
	margin-left: auto;
}

.news-category {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 15px 65px;
	padding: 0;
	margin-bottom: 55px;
}

.news-category a {
	position: relative;
    display: grid;
    place-items: center;
    --fs: 14;
	line-height: 1.3;
    letter-spacing: 0.1em;
	font-weight: 500;
    min-height: 30px;
    min-width: 140px;
    border: 1px solid #000;
    border-radius: 40px;
    padding: 2px 20px;
}

.news-category a::after {
	content: "";
    width: 8px;
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: linear-gradient(45deg, #000);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-40%);
}

.news-category a.active {
	color: #FFF;
	background: #000;
}

.news-category a.active::after {
	background: linear-gradient(45deg, #FFF);
}

.archive-news-content .news-list {
	list-style: none;
	padding: 0;
	margin-bottom: 80px;
}

.archive-news-content .news-item {
	border-bottom: 1px solid #000;
}

.archive-news-content .news-item a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 15px;
	padding: 25px 0;
}

.archive-news-content .news-item-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 270px;
}

.archive-news-content .news-item-date {
	letter-spacing: 0.075em;
	margin-bottom: 0;
}

.news-item-info span {
	display: grid;
	place-items: center;
	min-width: 100px;
	min-height: 22px;
	--fs: 11;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	border: 1px solid #000;
	border-radius: 40px;
	padding: 2px 5px;
}

.archive-news-content .news-item .news-item-title {
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.5;
	margin-bottom: 0;
}

.pagination {
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 30px;
	height: 35px;
	border: 1px solid #000;
}

.pagination .page-numbers.current {
	color: #FFF;
	background: #000;
}

@media(max-width: 767px) {
	.blog .section-title-en img,
	.category .section-title-en img {
		width: 115px;
	}
	.news-category {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 15px 20px;
	}
	.archive-news-content .news-item a {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 20px 0;
	}
	.archive-news-content .news-item-info {
		gap: 10px;
		justify-content: flex-start;
	}
	.archive-news-content .news-item .news-item-title {
		--fs: 15;
	}
}

/*		新着情報詳細		*/
.single .page-body {
	--padding: 25px;
}

.single-news-content {
	max-width: 930px;
	margin-inline: auto;
}

.single-news-info {
	margin-bottom: 60px;
}

.single-news-info a {
	display: inline-grid;
	place-items: center;
	--fs: 12;
	font-size: var(--font-size);
	font-weight: 500;
	min-width: 120px;
	min-height: 28px;
	border: 1px solid #000;
	border-radius: 30px;
	padding: 2px 5px;
	margin-bottom: 30px;
}

.single-news-info h1 {
	--fs: 27;
	font-size: var(--font-size);
	line-height: calc(47 / 27);
	letter-spacing: 0.075em;
	font-weight: 600;
	margin-bottom: 5px;
}

.single-news-info time {
	font-weight: 500;
	letter-spacing: 0.075em;
}

.single-news-body {
	margin-bottom: 80px;
}

.single-news-link {
	position: relative;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 5px 0 5px 150px;
}

.single-news-link::before {
	content: "";
    width: 135px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

.single-news-link::after {
	content: "";
    width: 22px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 55%;
    left: 0;
    transform-origin: bottom left;
    transform: rotate(-45deg);
}

@media(max-width: 767px) {
	.single-news-info {
		margin-bottom: 40px;
	}
	.single-news-info a {
		min-width: 100px;
		line-height: 1;
		margin-bottom: 20px;
	}
	.single-news-info h1 {
		--fs: 20;
	}
	.single-news-info time {
		--fs: 14;
	}
	.single-news-link {
		--fs: 12;
		padding-left: 100px;
	}
	.single-news-link::before {
		width: 93px;
	}
	.single-news-link::after {
		width: 15px;
	}
}

/*		お問い合わせ		*/
.contact-form {
	max-width: 870px;
	margin-inline: auto;
}

.contact-form-tel {
	display: grid;
	gap: 20px;
	place-items: center;
	max-width: 450px;
	width: 100%;
	border: 1px solid #000;
	padding: 25px 15px;
	margin-top: 100px;
	margin-inline: auto;
	margin-bottom: 40px;
}

.contact-form-tel a {
	--fs: 36;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1;
}

.form-group  {
	border-bottom: 1px solid #000;
	padding: 20px 0;
}

.form-group label {
	font-weight: 500;
	letter-spacing: 0.075em;
}

.form-group .hissu {
	display: flex;
	align-items: center;
	justify-content: center;
	--fs: 10;
	font-weight: 400;
	color: #FFF;
	width: 30px;
	min-height: 15px;
	background: #c1272d;
}

.form-control {
	border: 1px solid #b3b3b3;
	border-radius: 0;
}

.send-btn {
	position: relative;
	letter-spacing: 0.1em;
	max-width: 270px;
	width: 100%;
	min-height: 45px;
	
	margin-inline: auto;
}

.send-btn input {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--noto-serif);
	background: #FFF;
	border: 1px solid #000;
	padding: 5px 55px;
}

.send-btn::before {
	content: "";
	width: 40px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 8px;
	z-index: 1;
}

.send-btn::after {
	content: "";
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 8px;
	transform-origin: bottom right;
	transform: rotate(45deg);
}

.blog .page-body::before,
.single .page-body::before,
.category .page-body::before,
.page-id-17 .page-body::before {
	content: "";
	width: 2660px;
	height: 100%;
	background: linear-gradient(to right,transparent 0%,transparent 1440px,#FFF 1440px,#FFF 2660px);
	position: absolute;
	top: 0;
	right: calc(50% - 2660px - 1440px / -2);
	transform: skewX(325deg);
    transform-origin: left top;
    z-index: -1;
}

@media(max-width: 767px) {
	.page-id-17 .section-title-en img{
		width: 180px;
	}
	.contact-form-tel {
		margin-top: 40px;
	}
	.contact-form-tel a {
		--fs: 30;
	}
}

