/*
Theme Name: kyowa-kogyo
Author: YES-REFORM CO., LTD.
*/

@charset "utf-8";

:root {
/* ブランドカラー */
--color-primary: #e66100;
--color-secondary: #e60012;
--color-accent: #e6c800;

/* テキストカラー */
--text-primary: #222222;

/* 境界・背景カラー */
--border-color: #e5e5e5;
--bg-black:#222;
--bg-grey:#e5e5e5;
--bg-lightgrey:#f4f4f4;

/* フォントファミリー */
--font-primary:"Noto Sans JP", sans-serif; /*400 900 */
--font-secondary:"Oswald", sans-serif; /*700*/

/* フォントサイズ */
--font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
--font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 1.8rem);
--font-size-en: clamp(1rem, 3vw + 0.8rem, 15rem);
--font-size-heading: clamp(2.2rem, 3vw + 0.8rem, 2.6rem);
--font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2rem);
--font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);

/* 行間 */
--line-height-base: 1.6;
--line-height-heading: 1.3;
--line-height-caption: 1.4;

/* 装飾 */
--shadow-primary: 4px 4px 6px rgba(0, 0, 0, 0.25);
--shadow-text: 4px 4px 6px rgba(0, 0, 0, 0.25);
--shadow-box: 0 0 10px 1px rgba(69, 69, 69, 0.1);
}

/* Body
========================================== */
html{}
html, body {
	width: 100%;
	font-size: 62.5%;
	overflow-x: clip; /*sticky用*/
}
body {
	line-height: var(--line-height-base);
	font-size: var(--font-size-body);
	font-family: var(--font-primary);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--text-primary);
}
@media screen and (max-width: 599px) {
	body {word-wrap: break-word;}
}

/*pc*/
@media screen and (min-width: 769px) {
	.sp {display: none !important;}
}
/*sp*/
@media screen and (max-width: 768px) {
	.pc {display: none !important;}
}


/* header
========================================== */
.headerArea {
	z-index: 1200;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	transition: background-color 1s ease;
}
.headerArea.scrolled{background-color: rgba(255, 255, 255, 0.9);}

.headerArea .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
}
.headerLogo{max-width: 15.625%;}
.headerLogo a {
	display: block;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
}
.headerLogo a span{
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: .5em 1em;
	font-size: 1.2rem;
	font-weight: 600;
	border-bottom: 1px solid var(--text-primary);
}
.headerLogo img {
	width: 100%;
	height: auto;
}
.headerLogo a:hover{opacity: 0.7;transition: 0.3s;}

.headerNaviWrap{
	display: flex;
	gap: 0 40px;
	align-items: center;
}

.headerNavi > ul{
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 0 2em;
	margin: 0;
	padding: 0;
	height: 100%;
}
.headerNavi > ul > li {position: relative;}
.headerNavi > ul > li > a {
	display: block;
	padding: 2em 0;
	color: var(--text-primary);
	font-weight: 900;
	font-size: 1.4rem;
	text-decoration: none;
	transition: .3s;
}
.headerNavi > ul > li > a:hover{color: var(--color-primary);}
.headerNavi .subMenu > a{
	display: flex;
	align-items: center;
	gap: 10px;
}
.headerNavi .subMenu > a::after{
	display: block;
	top: 48%;
	right:5px;
	content: "";
	width: 8px;
	border-top: 5px solid var(--text-primary);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	transition: .3s;
}
.headerNavi .subMenu > a:hover{text-decoration: none;}
.headerNavi .subMenu > a:hover::after{border-top-color: var(--color-primary);}

.subMenuBox{
	position: absolute;
	top: 100%;
	left: 50%;
	width: fit-content;
	max-width: 90vw;
	transform: translateX(-50%);
	background:rgba(255,255,255,1);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	z-index: 3000;
	padding: 1.5em 2em;
}
.headerNavi > ul .subMenu:hover .subMenuBox{
	opacity: 1;
	visibility: visible;
}
.subMenuList{
	display: flex;
	flex-direction: column;
	gap:0.5em 1em;
}
.subMenuList > li a{
	display: inline-block;
	white-space: nowrap;
	width: 100%;
	color: var(--text-primary);
	text-decoration: none;
	text-align: center;
	font-size: var(--font-size-caption);
	font-weight: 900;
	transition: 0.3s;
}
.subMenuList > li a:hover{
	color: var(--color-primary);
	text-decoration: underline;
}

.headerTel{
	line-height: 1.3;
	text-align: center;
	font-family: var(--font-secondary);
}
.headerTel .number{
	display: block;
	font-size:2.2rem;
}
.headerContact{
	line-height: 1.2;
	text-align: center;}
.headerContact a{
	position: relative;
	display: inline-block;
	padding: 1em 4em;
	background-color: var(--text-primary);
	background-image: url('images/btn_logo.png');
	background-repeat: no-repeat;
	background-position:-2px -5px;
	background-size:auto 110%;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	font-weight: 900;
	font-size: 1.6rem;
	font-family: var(--font-secondary);
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.headerContact a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--color-primary);
}
.headerContact a:hover{background-color: #fff;color: var(--text-primary);}

.spMenuWrap{display: none;}
.spBtn,
.spMenu,
.overlay {
	opacity: 0;
	pointer-events: none;
}
@media screen and (max-width:1200px){
	.headerNaviWrap{gap: 0 20px;}
	.headerTel .number{font-size:1.8rem;}
	.headerContact a{padding: 1em 3em;}
	.headerContact a::after{right: 1em;}
	.headerLogo{max-width: 20%;}
}
@media screen and (max-width:1100px){
	.headerContact a{padding: 1em 2em;}
	.headerContact a::after{display: none;}
	.headerNavi > ul{gap: 0 1em;}
}

@media screen and (max-width:1024px){
	.headerArea{position: absolute;background: none;z-index: 10;padding:0;}
	.headerArea .inner{
		padding:10px;
		height: 60px;
	}
	.headerLogo{max-width: 100%;}
	.headerLogo img{width: auto;height: 45px;}
	.headerLogo a {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		font-size: 1.2rem;
		gap: 1em;}
	.headerNaviWrap{display: none;}

	.spMenuWrap{display: block;}
	.spBtn{
		opacity: 1;
		pointer-events: auto;
		position:fixed;
		top: 5px;
		right: 5px;
		display: inline-block;
		width: 55px;
		height:55px;
		padding: 18px 15px 18px;
		background-color: var(--color-primary);
		border-radius: 9999px;
		cursor: pointer;
		z-index: 2000;
	}
	.spBtn div {position: relative;}
	.spBtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background:#fff;
		left: 0;
		transition: .3s ease;
	}
	.spBtn span:nth-child(1) {top: 0;}
	.spBtn span:nth-child(2) {top: 8px;}
	.spBtn span:nth-child(3) {top: 16px;}
	.spBtn.active span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.spBtn.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.spBtn.active span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.overlay {
		position: fixed;
		top: 0; left: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}
	.overlay.active {
		opacity: 1;
		pointer-events: auto;
	}
	.spMenu{
		overflow-y: auto;
		-webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
		position: fixed;
		top: 0; right: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		transition: transform 0.3s ease;
		padding: 80px 2em 60px;
	}
	.spMenu.active{
		opacity: 1;
		pointer-events: auto;
	}
	.spMenu::-webkit-scrollbar{width: 10px;}
	.spMenu::-webkit-scrollbar-track{background: var(--main-color);}
	.spMenu::-webkit-scrollbar-thumb {background: var(--main-color);}

	.spNaviWrap{
		display: flex;
		gap: 1em;
	}
	.spNavi{
		margin-bottom: 3em;
		width: 50%;}

	.spNavi > li span,
	.spNavi > li > a{
		display: block;
		padding: 1em 0;
		font-optical-sizing: auto;
		font-size: 1.5rem;
		font-weight: 500;
		color: #fff;
		text-decoration: none;
	}
	.spNavi > li > a:hover{text-decoration: underline;}
	.spNavi li ul{
		padding-left: 1em;
		margin-bottom: 0.5em;
	}
	.spNavi li ul li{position: relative;padding-left: 18px;}
	.spNavi li ul li:before{
		position: absolute;
		top: 0.8em;
		left: 0;
		content: "";
		width: 10px;
		height: 1px;
		background-color: #fff;
	}
	.spNavi li ul li + li{margin-top: 0.5em;}
	.spNavi li ul li a{
		text-decoration: none;
		color: #fff;
	}
	.spNavi li ul li a:hover{text-decoration: underline;}
	.spNavi li.externalLink a{
		position: relative;
	}
	.spNavi li.externalLink a::after{
		display: inline-block;
		vertical-align:baseline;
		content: "";
		padding-left:20px;
		background: url(images/icn_link_white.svg) right top/contain no-repeat;
		width:14px;
		height:14px;
		transition: .3s;
	}
	.spInfo{
		margin-bottom: 30px;
		text-align: center;
		color: #fff;
		font-size: 1.4rem;
	}
	.spInfo .logo{margin-bottom: 20px;}
	.spInfo .logo img{max-width: 80%;height: auto;}
	.spInfo .logo a{display: block;}
	.spInfo .spTel{font-family: var(--font-secondary);}
	.spInfo .spTel a{
		line-height: 1.3;
		display: block;
		width: fit-content;
		margin: 0 auto;
		text-decoration: none;
		font-size:3rem;
		color: var(--color-primary);
	}
}
@media screen and (max-width:840px){
	.headerLogo a span{padding: .5em .5em;}
}
@media screen and (max-width:599px){
	.headerLogo img{width: auto;height: 40px;}
	.headerLogo a span{font-size: 1rem;}
}
@media screen and (max-width:380px){
	.headerLogo img{width: auto;height: 30px;}
	.headerLogo a span{font-size: .8rem;}
}

/* contents
========================================== */
.contents {
	margin: 0 auto;
	width: 100%;
}
.contents p+p {margin-top: 1.5em;}
.contentsInner {
	margin: 0 auto;
	padding: 30px 0 60px;
	width: 1200px;
}

@media screen and (max-width:1200px) {
	.contentsInner {
		width: 100%;
		padding: 30px clamp(20px, 5vw, 30px) 60px;
	}
}
@media screen and (max-width:599px) {
	.contentsInner {padding: 50px clamp(20px, 5vw, 30px);}
}

/* mv
========================================== */
.mvArea {
	position: relative;
	width: 100%;
}
.mvArea .mvSlider{
	width:67.5%;
	margin: 0 0 0 auto;
}
.mvArea .mvSlider img{
	width: 100%;
	height: auto;
}
.mvArea .mvText{
	z-index: 10;
	position: absolute;
	top: 56%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1200px;
	animation-name:mvfade;
	animation-duration:2.5s;
	animation-fill-mode:forwards;
	text-shadow :3px 3px 5px #fff,
	-3px 3px 5px #fff,
	3px -3px 5px #fff,
	-3px -3px 5px #fff,
	0 0 8px #fff,0 0 10px #fff;
}
.mvArea .mvText .title{
	font-size:min(2.875vw,4.6rem);
	font-weight: 900;}

.mvArea .mvText .text{font-size:min(1.667vw,2rem);font-weight: 500;}

@keyframes mvfade{
	from {opacity: 0;}
	to {opacity: 1;}
}

@media screen and (max-width:1200px) {
	.mvArea .mvText{left: 5%;transform: translate(0,-50%);}
	.mvArea .mvSlider{width:80%;}
}

@media screen and (max-width:840px) {
	.mvArea .mvText .title{font-size:min(3.095vw,2.6rem);}
	.mvArea .mvText{}
}

@media screen and (max-width:599px) {
	.mvArea {margin-top: 60px;margin-bottom: 30px;}
	.mvArea .mvText .title{font-size:min(4.341vw,2.2rem);}
	.mvArea .mvText .text{font-size:min(3.005vw,1.8rem);}
}

/* 事業内容
========================================== */
.serviceArea{
	position: relative;
	padding: 120px 0 100px;
}

.serviceArea::before{
	z-index: -2;
	content: "";
	position: absolute;
	top: -160px;
	right: 0;
	width: 87.51796875%;
	aspect-ratio: 7/2;
	background-color: var(--bg-grey);
}

.servicePic01,
.servicePic02{
	z-index: -1;
	position: absolute;
	width: 36.25%;
}
.servicePic03,
.servicePic04{
	z-index: -1;
	position: absolute;
	width: 28.75%;
}

.servicePic01 img,
.servicePic02 img,
.servicePic03 img,
.servicePic04 img{
	width:100%;
	height: auto;
}
.servicePic01{top: 60px;right: 0;}
.servicePic02{top: 25%;left: 0;}
.servicePic03{top: 0;right: 0;}
.servicePic04{bottom:0;left: 0;}


.serviceTitle{
	line-height: var(--line-height-heading);
	margin: 0 auto 2.5em;
	padding: 0em 0.5em .1em;
	width: fit-content;
	background-color: var(--color-primary);
	font-size: var(--font-size-heading);
	font-weight: 900;
	color: #fff;
}
.serviceTitle.reform{
	background-color: var(--color-accent);
	color: var(--bg-black);
}


.serviceSection.reform{
	position: relative;
	margin-top: 80px;
	padding-bottom: 100px;
}

.serviceBoxWrap{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-bottom: 80px;
}

.serviceBoxWrap .serviceBox{
	display: flex;
	gap:30px;
	padding: 2.5em 2em;
	width: calc((100% - 60px)/2);
	background-color: rgba(255,255,255,0.85);
	border-radius: 10px;
	border: 2px solid var(--color-primary);
	box-sizing: border-box;
	box-shadow: var(--shadow-box);
}

.serviceBoxWrap .serviceBox .imageBlock{width: 30%;}
.serviceBoxWrap .serviceBox .imageBlock img{
	max-width: 100%;
	height: auto;
}
.serviceBoxWrap .serviceBox .textBlock{width: 70%;}
.serviceBoxWrap .serviceBox .title{
	margin-bottom: 1em;
	background-color: var(--bg-black);
	color: #fff;
	font-weight: 900;
	font-size: var(--font-size-accent);
	text-align: center;
}

.serviceBoxWrap .serviceBox .more{
	text-align: center;
}

.serviceBoxWrap .serviceBox .more a{
	position: relative;
	display: inline-block;
	margin-top: 2em;
	padding: 1.1em 6em;
	border-radius: 9999px;
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	box-sizing: border-box;
	font-weight: 600;
	font-family: var(--font-secondary);
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition:.3s
}
.serviceBoxWrap .serviceBox .more a:hover{
	color: var(--text-primary);
	background-color:#fff;
}

.serviceBoxWrap .serviceBox .more a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--text-primary);
}

.serviceLinkWrap{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap:30px;
}

@media screen and (max-width:1200px) {
	.serviceBoxWrap{gap: 30px;}
	.serviceBoxWrap .serviceBox{width: calc((100% - 30px)/2);}
}

@media screen and (max-width:840px) {
	.serviceArea::before{display: none;}
	.serviceSection.reform{margin-top: 40px;padding-bottom: 0;}
	.serviceBoxWrap .serviceBox{flex-direction: column;}
	.serviceBoxWrap .serviceBox .imageBlock{width: 100%;text-align: center;}
	.serviceBoxWrap .serviceBox .textBlock{width: 100%;}
	.serviceBoxWrap .serviceBox .more a{
		display: block;
		padding: 1em 3em;
	}
	.serviceLinkWrap{gap:20px;}

}

@media screen and (max-width:599px) {
	.serviceArea{padding: 0 0 50px;}
	.serviceBoxWrap{flex-direction: column;margin-bottom: 40px;}
	.serviceBoxWrap .serviceBox{
		flex-direction: row;
		width:100%;
		padding: 2em 1.5em;}
	.serviceBoxWrap .serviceBox .imageBlock{width: 36%;text-align: center;}
	.serviceBoxWrap .serviceBox .textBlock{width: 65%;}
	.servicePic01{top: 5%;width: 40%;}
	.servicePic02{display: none;}
	.servicePic03{left: 0; right: auto;width: 50%;}
	.servicePic04{display: none;}
	.serviceLinkWrap .btnMore{width: 80%;}
	.serviceLinkWrap .btnMore a{
		display: block;
		width: 100%;
	}
}
@media screen and (max-width:380px) {
	.serviceBoxWrap .serviceBox{flex-direction: column;gap: 20px;}
	.serviceBoxWrap .serviceBox .imageBlock{width: 100%;}
	.serviceBoxWrap .serviceBox .textBlock{width: 100%;}
}

/* 強み
========================================== */
.strengthArea{
	position: relative;
}
.strengthArea::before{
	z-index: -1;
	content: "";
	position: absolute;
	top: 17%;
	left: 0;
	width: 87.51796875%;
	aspect-ratio: 7/2;
	background-color: var(--bg-grey);
}
.strengthIntro{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-left: calc((100% - 1200px)/2);
	margin-bottom: 60px;
}

.strengthIntro .textBlock{
	padding: 1.2em 2em;
	width: 40%;
	border-left: 10px solid var(--text-primary);}


.strengthIntro .textBlock .title{
	margin-bottom: 1em;
	font-size: var(--font-size-accent);
	font-weight: 800;
}
.strengthIntro .imageBlock{width: 60%;}
.strengthIntro .imageBlock img{
	width: 100%;
	height: auto;
}

.strengthBoxWrap{
	display: flex;
	margin: 0 auto;
	max-width: 1200px;
	gap: 45px;
}

.strengthBoxWrap .strengthBox{
	width: calc((100% - 45*2)/3);
	padding: 1em;
	border-top: 10px solid var(--text-primary);
}

.strengthBoxWrap .strengthBox .title{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: var(--line-height-heading);
	margin: 1em 0;
	font-size: var(--font-size-accent);
	font-weight: 800;
}
.strengthBoxWrap .strengthBox .title .break{
	flex-basis: 100%;
	height: 0;
}


@media screen and (max-width:1200px) {
	.strengthArea::before{
		top:13%;
		left: 0;
		width: 87.51796875%;
		aspect-ratio: 7/2;
	}
	.strengthIntro{
		margin:  0 auto 30px;
		padding: 30px clamp(20px, 5vw, 30px) 0;
	}
	.strengthBoxWrap{padding: 30px clamp(20px, 5vw, 30px);}
}

@media screen and (max-width:840px) {
	.strengthBoxWrap{gap: 30px;}
	.strengthIntro{flex-direction: column;}
	.strengthIntro .textBlock{width: 100%;}
	.strengthIntro .imageBlock{width: 60%;margin: 0 auto;}
	.strengthBoxWrap .strengthBox{padding: 1em 0;width: calc((100% - 30*2)/3);}

}

@media screen and (max-width:599px) {
	.strengthArea::before{display: none;}
	.strengthIntro .textBlock{width: 100%;padding:0;border: none;}
	.strengthIntro .imageBlock{width: 100%;}
	.strengthBoxWrap{flex-direction: column;}


}

/* 施工事例
========================================== */
.worksArea{
	position: relative;
	padding:0 0 100px;
}

.worksArea::before{
	z-index: -1;
	content: "";
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 78%;
	background-color: var(--bg-grey);
}

.worksList.sub{
	display: flex;
	flex-wrap: wrap;
	gap:40px 30px;
}
.worksList.sub li{width: calc((100% - 30px * 2)/3);}

.worksList li a{
	text-decoration: none;
	font-weight: 700;
}
.worksList .imageBlock{margin-bottom: 20px;}
.worksList .imageBlock a{
	overflow: hidden;
	position: relative;
	display: block;
	aspect-ratio: 4/3;
}
.worksList .imageBlock a::before{
	content: "";
	display: block;
}
.worksList .imageBlock a img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: 0.5s;
}

.worksList .imageBlock a:hover img{transform: scale(1.2);}
.worksList .category{margin-bottom: 1em;}
.worksList .category a{
	line-height: 1.2;
	padding: 0.1em 0.3em;
	width: fit-content;
	background-color: var(--color-secondary);
	color: #fff;
}
.worksList .category a:hover{
	color: var(--text-primary);
	background-color: var(--color-accent);
	transition: 0.3s;
}
.worksList .title a:hover{text-decoration: underline;}


.worksList.sub .category a{
	background-color: var(--text-primary);
	font-size: var(--font-size-caption);
}
.worksList.sub .category a:hover{
	background-color: var(--color-primary);
	color: #fff;
}
@media screen and (max-width:1024px) {
	.worksArea .ttlMain{margin-bottom: 30px;}
}

@media screen and (max-width:599px) {
	.worksArea::before{height: 90%;}
	.worksList.sub{
		display: flex;
		flex-wrap: wrap;
		gap:30px 20px;
	}
	.worksList.sub li{width: calc((100% - 20px)/2);}
}

/* リンク
========================================== */
.linkArea{padding: 80px 0;}
.linkWrap{
	display: flex;
	justify-content: center;
	gap: 60px;
}
.linkWrap .linkItem{
	width: calc((100% - 60px)/2);
}

.linkWrap .linkItem a{
	position: relative;
	display: block;
	padding: 2em 5em;
	border-radius: 9999px;
	border: 3px solid var(--color-secondary);
	box-sizing: border-box;
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 900;
}
.linkWrap .linkItem a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 4em;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 9999px;
	background-color: var(--color-secondary);
	transition: .3s;
}
.linkWrap .linkItem a small{
	display: block;
	font-size: var(--font-size-body);
}
.linkWrap .linkItem a span{
	display: inline-block;
	font-size: var(--font-size-subheading);
}
.linkWrap .linkItem a span.externalLink{
	position: relative;
	padding-right: 40px;
}
.linkWrap .linkItem a span.externalLink::after{
	position: absolute;
	content: "";
	top: 53%;
	right: 0;
	transform: translateY(-50%);
	background: url(images/icn_link.svg) right top/contain no-repeat;
	width:23px;
	height:23px;
	transition: .3s;
}
.linkWrap .linkItem a:hover{
	color: #fff;
	background-color: var(--color-primary);
	transition: .3s;
}
.linkWrap .linkItem a:hover::after{background-color:#fff;}
.linkWrap .linkItem a:hover span.externalLink::after{background-image: url(images/icn_link_white.svg);}

@media screen and (max-width:1200px) {
	.linkArea{padding:20px 0 0;}
	.linkWrap{gap: 30px;}
	.linkWrap .linkItem{width: calc((100% - 30px)/2);}
	.linkWrap .linkItem a{padding: 1.2em 3em;}
	.linkWrap .linkItem a::after{right: 2em;}
}

@media screen and (max-width:840px) {
	.linkWrap{gap: 20px;}
	.linkWrap .linkItem{width: calc((100% - 20px)/2);}
	.linkWrap .linkItem a{padding: 1.2em 2em;}
	.linkWrap .linkItem a::after{right: 1.5em;}
}

@media screen and (max-width:599px) {
    .linkArea {padding: 0;}
	.linkWrap{flex-direction: column;align-items: center;}
	.linkWrap .linkItem{width: 100%;}
}



/* 対応エリア
========================================== */
.areaArea{
	position: relative;
	padding:80px 0 100px;
}
.areaArea::before{
	z-index: -2;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 50%;
	background-color: var(--bg-lightgrey);
}
.areaArea .inner{
	position: relative;
	margin:-15% auto 0;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 40px;
}

.areaArea .areaMapImage{
	filter:drop-shadow(15px 15px 3px rgba(0, 0, 0, 0.1));
}
.areaArea .areaMapImage img{
	width: 100%;
	height: auto;
}

.areaArea .areaInfo{
	width: 30%;
	font-weight: 600;
	text-align: center;}

.areaArea .areaInfo .message{
	font-size: var(--font-size-accent);
}
.areaTel{margin: 1em 0;}
.areaTel a{
	text-align: center;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 3rem;
}
.areaTel .hours{
	display: block;
	font-family: var(--font-secondary);
}

.areaLink{margin-top: 20px;}
.areaLink a{
	position: relative;
	display: inline-block;
	min-width: 15em;
	padding: 1em 3em;
	background-color:#fff;
	background-image: url('images/btn_logo.png');
	background-repeat: no-repeat;
	background-position:-2px -5px;
	background-size:auto 110%;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	font-weight: 600;
	font-family: var(--font-secondary);
	color: var(--text-primary);
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}
.areaLink.map a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 28px;
	background: url('images/icn_link.svg') left top/contain no-repeat;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
}
.areaLink.contact a{
	background-color: var(--text-primary);
	color: #fff;
}
.areaLink.contact a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--color-primary);
}
.areaLink a:hover{background-color: #fff;color: var(--text-primary);}
.areaLink.map a:hover{background-color: var(--text-primary);color: #fff;}


@media screen and (max-width:1024px) {
	.areaArea .inner {margin:0 auto;}
}
@media screen and (max-width:840px) {
	.areaArea::before{display: none;}
	.areaArea .inner{flex-direction: column-reverse;padding: 0 clamp(20px, 5vw, 30px);}
	.areaArea .areaInfo{
		width: 100%;
	}
	.areaArea .areaMapImage{display: block;margin-top: -15%;}
}

@media screen and (max-width:599px) {
	.areaArea{padding:50px 0 60px;}

}


/* 会社案内
========================================== */
.aboutArea{
	background:url(images/aboutUs_bg.jpg) left 180px/cover no-repeat;
	background-size: 100% auto;
}
.aboutMessage{
	text-align: right;
	color: #fff;
	font-weight: 900;
	font-size: var(--font-size-subheading);
}
.aboutMessage span{
	display: inline-block;
	margin-bottom: 0.3em;
	line-height: var(--line-height-heading);
	padding: 0.1em 0.5em 0.2em;
	background-color: var(--bg-black);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.aboutWrap{
	position: relative;
}
.aboutWrap::before{
	z-index: 0;
	content:"";
	position: absolute;
	background-color: var(--bg-grey);
}
.aboutWrap.company{
	margin-top: 10%;
}
.aboutWrap.company::before{
	top: 0;
	left: 0;
	width:80%;
	height: 80%;
}
.aboutWrap.recruit{margin-top: 80px;padding-bottom: 60px;}
.aboutWrap.recruit::before{
	top: 15%;
	right: 0;
	width:80%;
	height: 85%;
}
.aboutWrap .inner{
	margin: 0 auto;
	max-width: 1200px;
}
.aboutTitle{
	z-index: 2;
	position: relative;
	font-size: min(6.250vw, 10rem);
	font-family: var(--font-secondary);
}
.aboutLinkWrap{
	z-index: 2;
	position: relative;
	display: flex;
	justify-content: center;
	gap: 50px;
	padding: 0 100px;
}

.aboutLinkWrap .aboutLinkItem{
	width: calc((100% - 50px * 2)/3);
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	box-shadow: var(--shadow-box);
}
.aboutLinkWrap .aboutLinkItem .imageBlock{
}
.aboutLinkWrap .aboutLinkItem .imageBlock img{
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.aboutLinkWrap .aboutLinkItem .title{
	margin: 30px 0;
	text-align: center;
	font-weight: 900;
	font-size: var(--font-size-accent);
}

.aboutLinkWrap .aboutLinkItem .more{
	display: block;
	margin: 0 20px 20px;
	width: calc(100% - 40px);
}

.aboutLinkWrap .aboutLinkItem .more a{
	line-height: 1.3;
	position: relative;
	display: block;
	padding: 1.2em 3em;
	background-color: var(--text-primary);
	background-image: url('images/btn_logo.png');
	background-repeat: no-repeat;
	background-position:-2px -5px;
	background-size:auto 110%;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	font-weight: 600;
	font-family: var(--font-secondary);
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}

.aboutLinkWrap .aboutLinkItem .more a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--color-primary);
}

.aboutLinkWrap .aboutLinkItem .more a:hover{background-color: #fff;color: var(--text-primary);}

@media screen and (max-width:1200px) {
	.aboutWrap .inner{
		padding:20px clamp(20px, 5vw, 30px);
	}
}

@media screen and (max-width:1024px) {
	.aboutLinkWrap{
		flex-wrap: wrap;
		gap: 30px;
		padding:30px 0 0;
	}
	.aboutLinkWrap .aboutLinkItem{width: calc((100% - 30px * 2)/3);}
}

@media screen and (max-width: 599px) {
	.aboutWrap.recruit{margin-top: 50px;}
	.aboutWrap.recruit::before{
		top: 0;
		height: 100%;
	}
	.aboutMessage span{padding: 0.1em 0.3em 0.2em;}
	.aboutLinkWrap{gap: 20px;}
	.aboutLinkWrap .aboutLinkItem{width: calc((100% - 20px)/2);}
	.aboutLinkWrap .aboutLinkItem .title{margin: 1em 0;}
	.aboutLinkWrap .aboutLinkItem .more a{padding: 1em 1em;}
	.aboutLinkWrap .aboutLinkItem .more a::after{display: none;}
	.aboutLinkWrap .aboutLinkItem .more{
		margin: 0 10px 20px;
		width: calc(100% - 20px);
	}

}
@media screen and (max-width: 320px) {
	.aboutLinkWrap{flex-direction: column;}
	.aboutLinkWrap .aboutLinkItem{width:100%;}
	.aboutLinkWrap .aboutLinkItem .more{margin: 0 auto 20px;text-align: center;}
	.aboutLinkWrap .aboutLinkItem .more a {
		display: inline-block;
		padding: 1em 4em;
	}

}



/* 新着情報
========================================== */
.newsArea{
	margin: 0 auto;
	padding: 80px 5%;
	max-width: 1200px;
}
.newsArea .inner{
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 3em;
	border-left: 10px solid var(--text-primary);
}
.newsArea .inner .newsTitle{
	padding-left: 1.5em;
	width: 8em;
	white-space: nowrap;
	font-weight: 900;
}

.newsWrap{
	display: flex;
	align-items: center;
	gap: 1em;
	min-width: 0;
	width: 100%;
}
.newsWrap .btnMore{
	white-space: nowrap;
}
.newsList{
	flex: 1;
	min-width: 0;}
.newsList li{
	line-height: 1.3;
	display: flex;
	min-width: 0;
	align-items: center;
	gap:1em 2em;
}
.newsList.sub li{padding: 0 1em;}
.newsList li:not(:last-child),
.newsList.sub li:last-child{margin-bottom: 1em;padding-bottom: 1em;border-bottom: 1px solid var(--border-color);}
.newsList li .info{width: 8em;}
.newsList li .date{
	margin-top: 10px;
	color: var(--color-secondary);
	font-family: var(--font-secondary);
	font-size: var(--font-size-caption);
}
.newsList li .category a{
	display: block;
	line-height: 1;
	padding: .3em .5em;
	width: 9em;
	font-size: 1.4rem;
	text-align: center;
	background-color:var(--text-primary);
	color:#fff;
	text-decoration: none;
	transition:0.3s;
}
.newsList li .category a:hover{
	background-color: var(--color-primary);
}
.newsList li .title{width: calc(100% - 8em);min-width: 0;}
.newsList li .title a{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
}
.newsList li .title a:hover{text-decoration: underline;color: var(--color-primary);}

.newsCategory{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap:1em;
	margin-bottom: 4em;
}
.newsCategory li a{
	line-height: 1.2;
	display: block;
	padding:.3em 1em;
	background-color: var(--text-primary);
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
.newsCategory li a:hover,
.newsCategory .current a{background-color: var(--color-primary);}

@media screen and (max-width:1200px) {
	.newsArea {padding: 60px clamp(20px, 5vw, 30px);}
	.newsArea .inner{gap: 2em;}
}
@media screen and (max-width:840px) {
	.newsArea .inner{
		display: block;
		border: none;
	}
	.newsTitle{
		margin-bottom: 2em;
		padding:.6em 1em;
		border-left: 10px solid var(--text-primary);
	}
	.newsWrap{flex-direction: column;gap: 30px;}
	.newsList{width: 100%;}
	.newsCategory{
		justify-content: flex-start;
		gap:.6em;
	}
}

@media screen and (max-width:599px) {
	.newsList li{
		flex-direction: column;
		justify-content: flex-start;
		gap: 1.5em;
	}
	.newsList li .info{
		display: flex;
		align-items: center;
		gap: 1em;
		width: 100%;
	}
	.newsList li .date{margin-top: 0;}
	.newsList li .title{width: 100%;}
}


/* お問い合わせ
========================================== */
.contactAreaParts,
.contactAreaFooter{
	z-index: 2;
	position: relative;
	background-color: var(--bg-black);
}

.contactAreaParts{padding:0 calc((100% - 1200px)/2) 0 0;}
.contactAreaParts .inner,
.contactAreaFooter .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:30px;
}

.contactAreaFooter .inner{
	margin: 0 auto;
	padding: 60px;
	max-width: 1200px;
}

.contactAreaParts .textBlock,
.contactAreaFooter .textBlock{
	color: #fff;
	text-align: center;
}

.contactAreaParts .textBlock p,
.contactAreaFooter .textBlock p{
	font-size:2.2rem;
}

.btnContact{margin-top: 2em;}
.btnContact a{
	position: relative;
	display: inline-block;
	padding: 1.2em 6em;
	background-color: var(--text-primary);
	background-image: url('images/btn_logo.png');
	background-repeat: no-repeat;
	background-position:-2px -5px;
	background-size:auto 110%;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	font-weight: 600;
	font-family: var(--font-secondary);
	font-size: var(--font-size-subheading);
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.btnContact a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: var(--color-primary);
}

.btnContact a:hover{background-color: #fff;color: var(--text-primary);}

@media screen and (max-width:1200px) {
	.contactAreaParts{padding:20px clamp(20px, 5vw, 30px) 20px 0;}
	.contactAreaFooter{padding:20px clamp(20px, 5vw, 30px);}
	.contactAreaParts .textBlock p,
	.contactAreaFooter .textBlock p{font-size: 2rem;}
}

@media screen and (max-width:1024px) {
	.contactAreaFooter .inner {padding:30px 0;}
	.contactAreaParts .textBlock p,
	.contactAreaFooter .textBlock p{font-size: 1.8rem;}
}

@media screen and (max-width:840px) {

	.contactAreaParts .inner,
	.contactAreaFooter .inner{
		flex-direction: column;
	}
	.contactAreaParts{padding:20px clamp(20px, 5vw, 30px);}
	.contactAreaParts .textBlock p,
	.contactAreaFooter .textBlock p{font-size: 1.6rem;}
	.btnContact{margin-top: 1em;}
	.btnContact a{padding: 1em 3.5em;}

}

@media screen and (max-width:599px) {
	.btnContact a{font-size: var(--font-size-body);width: 80%;}
}


.footerSpContact{display: none;}

@media screen and (max-width:840px) {
	.footerSpContact{
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 1000;
		width: 100%;
		height: 60px;
		border-top: 1px solid #fff;
	}
	.footerSpContact a{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		background-color: var(--text-primary);
		color: #fff;
		text-decoration: none;
		font-size: var(--font-size-accent);
		font-family: var(--font-secondary);
	}
	.footerSpContact a::before{
		display: inline-block;
		content: "";
		margin-right: 8px;
		background: url(images/icn_mail.svg)left top/contain no-repeat;
		width:20px;
		height:20px;
	}

}

/* footer
========================================== */
footer{
	width: 100%;
	background-color: var(--bg-black);
	background-image: url(images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size:auto 100%;
}
.footerWrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding:60px 0;
	max-width: 1200px;
}
.footerWrap a:hover img{
	opacity: .6;
	transition: .3s;
}
.footerInfo{width: 25%;text-align: center;}
.footerLogo {margin-bottom: 20px;}
.footerLogo a{display: block;}
.footerLogo a img{
	max-width: 100%;
	height: auto;
}
.footerAddress{color: #fff;}
.footerTel{
	margin: 1em auto 0;
	font-family: var(--font-secondary);
	color:#fff;
}
.footerTel a{
	line-height: 1.3;
	display:block;
	width: fit-content;
	margin: 0 auto;
	text-decoration: none;
	font-size: clamp(2.6rem, 4.762vw,3rem);
	color: #fff;
}
.footerHours{color: #fff;}
.footerMap a{
	position: relative;
	display: inline-block;
	margin-top: 20px;
	padding: 1em 4em;
	background-color:#fff;
	background-image: url('images/btn_logo.png');
	background-repeat: no-repeat;
	background-position:-2px -5px;
	background-size:auto 110%;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	font-weight: 600;
	font-family: var(--font-secondary);
	color: var(--text-primary);
	text-decoration: none;
	transition: 0.3s;
}

.footerMap a::after{
	z-index: 1;
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: url(images/icn_arrow.svg)left top/contain no-repeat;
	width:24px;
	height:24px;
}
.footerMap a:hover{background-color:var(--text-primary);color:#fff;}

.footerNaviWrap{
	display: flex;
	gap:1em 3em;
	width: 70%;
}
.footerNavi{}
.footerNavi:nth-child(1){width: 70%;}
.footerNavi:nth-child(2){width: 30%;}
.footerNavi > li{line-height: 1.2;}
.footerNavi li + li{margin-top: 1.8em;}
.footerNavi > li > a,
.footerNavi > li.title span{
	display: block;
	line-height: 1.2;
	padding: .3em .5em;
	text-decoration: none;
	font-weight: 800;
	background-color: #fff;
	color:var(--text-primary);
	transition: 0.3s;
}
.footerNavi > li > a:hover{
	background-color: var(--color-primary);
	color: #fff;
}

.footerNavi .business{
	display: flex;
	gap:0 2em;
	padding-top: 2em;
	padding-left: 50px;
}
.footerNaviSub{
	width: 50%;
}
.footerNaviSub li:not(.subtitle){
	position: relative;
	padding-left: 1.5em;
}
.footerNaviSub li:not(.subtitle):before{
	content: "";
	position: absolute;
	top: .5em;
	left: .5em;
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color:#fff;
}
.footerNaviSub .subtitle{
}
.footerNaviSub .subtitle a{
	display: block;
	padding: 0.3em .5em;
	background-color: #454545;
	color: #fff;
	font-weight: 800;
}
.footerNaviSub .subtitle a:hover{
	text-decoration: none;
	background-color: var(--color-primary);
	color: #fff;
	transition: .3s;
}


.footerNaviSub li a{
	color: #fff;
	font-weight: 900;
	text-decoration: none;
}
.footerNaviSub li a:hover{
	text-decoration: underline;
}

.footerNavi li.externalLink a{
	position: relative;
}
.footerNavi li.externalLink a::after{
	display: inline-block;
	vertical-align:baseline;
	content: "";
	padding-left:20px;
	background: url(images/icn_link_black.svg) right top/contain no-repeat;
	width:14px;
	height:14px;
	transition: .3s;
}
.footerNavi li.externalLink a:hover::after{
	background-image: url(images/icn_link_white.svg);
}

.copyright {
	margin: 0 auto;
	padding:2rem 1rem;
	text-align: center;
	font-size: 1.2rem;
	font-family: var(--font-secondary);
	color: #fff;
}

@media screen and (max-width: 1200px) {
	.footerWrap {padding:60px clamp(20px, 5vw, 30px);}
}

@media screen and (max-width: 840px) {
	footer{background-size:100% auto;padding-bottom: 60px;}
	.footerWrap {
		flex-direction: column;
		padding:60px clamp(20px, 5vw, 30px);
		gap: 50px;
	}
	.footerLogo a img{max-width: 70%;}
	.footerInfo{width: 100%;}
	.footerNaviWrap{width: 100%;gap: 2em;}
	.footerNavi .business{
		padding-top: 2em;
		padding-left: 0;
	}
}

@media screen and (max-width: 599px) {
	footer{background-image: none;border-top: 1px solid #fff;}
	.footerNavi:nth-child(1){width: 50%;}
	.footerNavi:nth-child(2){width: 50%;}
	.footerNavi .business{
		flex-direction: column;
		gap: 2em;
	}
	.footerNaviSub{
		width: 100%;
	}
}

@media screen and (max-width:380px) {
	.footerNavi li a,
	.footerNavi li.title span,
	.footerNaviSub .subtitle{font-size: 1.2rem;}
	.footerNavi li + li{margin-top: 1.5em;}
	.footerNavi .business{padding-top: 1.5em;}
}

/* pageTop
========================================== */
#pageTop{
	position:fixed;
	line-height: 1;
	right:10px;
	bottom:20px;
	z-index: 100;}
#pageTop a{
	display: block;
	position:relative;
	box-sizing: border-box;
	font-size: 1.2rem;
	text-decoration: none;
	transition: all .3s;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background: var(--color-primary) url(images/icn_pagetop.svg) no-repeat center;
	background-size:30%;
}

#pageTop:hover a{background-color: var(--bg-black);}

@media screen and (max-width:840px) {
	#pageTop{display: none!important}
}
