@charset "UTF-8";

/* ---------------------------------------------------------------------------
  ★共通
--------------------------------------------------------------------------- */
:root{
  scroll-padding-top: 130px;
}
html {font-size: 62.5%;scroll-behavior: smooth;}
body{  
  font-size: 1.6rem;
}
object {pointer-events: none;}
.sp {display: none !important;}
a[href^="tel:"] {pointer-events: none;}
a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.pcFlex{display: flex;}
.pcFlex.half{
 justify-content: space-between;
}
.pcFlex.half >*{
 width: 48%;
}
.img_r {overflow: hidden;}
.img_r>img {float: right;
    width: 33%;
    margin-left: 15px;
    margin-bottom: 15px;
}
p,li,dt,dd,th,td,input{
  font-size: 1.6rem;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 1.6rem;
}

section{
  padding: 100px 0;
}
section p:not(:last-child){
  margin-bottom: 1.5em;
}


/*タイトル
========================================== */
.h2Tit{
 font-size: 3.2rem;
}
.h2TitEn{
	font-size: 1.8rem;
}
.h2TitEn .en{
	font-size: 6.4rem;
	margin-bottom: 5px;
}

.h3Tit {
  font-size: 3.2rem;
	margin-bottom: 30px;
}
.h4Tit {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.h5Tit {  
	font-size: 2rem;
	margin-bottom: 20px;
}
.h6Tit{
	font-size: 1.8rem;
	margin-bottom: 20px;
}

/*
　テキスト
========================================== */
.leadTxt{
  font-size: min(1.85vw,1.8rem);
	line-height: 2;
  text-align: center;
}
.note{
  font-size: 1.2rem;
}

/*
　ボタン,リンク
========================================== */
.btn{
	height: 44px;
	padding: 0 30px;
}
.linkArrow{
	height: 85px;
	padding-left: 76px;
}
.linkArrow::before{
	width: 82px;
	height: 82px;
}
.linkArrow::after{
	width: 14px;
	height: 14px;
	left: 37px;
	top: calc(50% - 7px);
}
.btn:hover,
.linkArrow:hover{
 opacity: .7;
}
.linkArrow:hover:after{
	left: 40px;
}

/* =======================================
  ページャー
========================================== */
/*-- pageNavi --*/
.pageNavi{
	gap:0 1.5%;
 margin-top: 80px;
}
.pageNavi .current,
.pageNavi .inactive,
.pageNavi a{
	font-size: 1.8rem;
	width: 40px;
	height: 40px;
}

/*-- pager --*/
.pager{
	margin: 50px auto 0;
}
.pager a{
	font-size: 1.6rem;
}

/* =======================================
	header
========================================== */
header{
	left: 0;
	width: 100%;
	height: 100px;
	padding-top: 15px;
}


header a:hover{
	opacity: 0.7;
}

header #logo{
	margin-top: 12px;
}

.headerInfo{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	position: absolute;
  right: 0;
  top: 0;
}
.headerInfo p:not(.headerTel):not(.contact){
 text-align: right;
}
.headerInfo p:not(.headerTel):not(.contact) a:not(.linkTxt){
 display: inline-block;
 text-decoration: underline;
}
.headerInfo .linkTxt{
 display: block;
}

.headerTel{
	font-size: 2.4rem;
	margin: 0 17px 0 12px;
}
.headerTel a{
	display: block;
}
.headerTel a::before {
	top: 2px;
}
.headerTel .time{
	font-size: 1.5rem;
}
.headerInfo .contact a{
	font-size: 1.6rem;
	padding: 0 0 0 55px;
	width: 183px;
}
.headerInfo .contact a::before{
	width: 18px;
	height: 14px;
	left: 31px;
	top: calc(50% - 5px);
}
.headerInfo .contact a:hover{
	opacity: 0.8;
}

/*-- top first --*/
#top header:not(.fixed) .headerInfo p,
#top header:not(.fixed) .headerInfo a{
	color: var(--wh);
}
#top header:not(.fixed) .headerInfo .headerTel a::before{
	background-image: url("../images/ic_tel_white.svg");
}

/* =======================================
	gnavi
========================================== */
.gnavi{
	flex: 1;
  position: relative;
	padding-top: 57px;
}
#gnaviList.pcFlex{
	justify-content: flex-end;
	position: relative;
 align-items: center;
 gap: 0 26px;
}
#gnaviList > li{
	font-size: min(1.07vw,1.6rem);
	position: relative;
}
#gnaviList > li > a{
 display:flex;
 align-items: center;
 justify-content: center;
 color: var(--base);
 font-weight: 700;
 white-space: nowrap;
}
#gnaviList .hasSub:hover .sub{
	display: block;
	visibility: visible;
}
#gnaviList > .hasSub > .sub{
	display: none;
	visibility: hidden;
	position: absolute;
	top: 99%;
	left: 50%;
	transform: translate(-50%, 0);
 padding-top: 10px;
	z-index: 2;
	transition: all 0.6s ease-in-out;
	min-width:100px;
}
#gnaviList .sub li{
 background: var(--blue);
 border-top: 1px solid var(--wh);
 box-shadow: 3px 3px 10px 2px rgba(0,0,0,.05);
}
#gnaviList .sub li a{
	color: var(--wh);
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 15px 40px 15px 20px;
	position: relative;
	text-align: left;
	white-space: nowrap;
}
#gnaviList .sub li a::after{ 
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	border-top: 1px var(--wh) solid;
	border-right: 1px var(--wh) solid;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*-- top first --*/
#top header:not(.fixed) #gnaviList > li > a{
	color: var(--wh);
}

/*-- pgs --*/
#gnaviList > li > a{
	color: var(--base);
}

/* =======================================
	footContact
========================================== */
#footContact > .flex{
	justify-content: space-between;
 align-items: center;
 gap:0 5%;
}
#footContact figure{
	max-width: 290px;
}
#footContact .txts{
	width: 100%;
	max-width: 697px;
}
#footContact ul{
	justify-content: space-between;
	align-items: center;
	padding-top: 38px;
}
#footContact ul .tel{
	width: 39%;
 max-width: 270px;
}
#footContact .tel a{
 padding-left: 39px;
}
#footContact .tel a::before{
	width: 29px;
	height: 29px;
	top: calc(50% - 10.5px);
}
#footContact ul .mail{
	width: 54.1%;
 max-width: 377px;
 height: 109px;
}
#footContact .mail .icMail::before{
	top: calc(50% - 9px);
}
#footContact .mail a:hover{
	opacity: 0.7;
}
#footContact .tel p{
	font-size: min(3.4vw,4rem);
}
#footContact .mail p{
 font-size: 2.2rem;
}
#footContact .time{
 font-size: 1.4rem;
}

/* =======================================
	footer
========================================== */
footer a:hover{
	opacity: 0.7;
}
.footerBox{
	padding-top: 60px;
	padding-bottom: 81px;
}
.footerBox .footerLeft{
	width: min(30%, 268px);
}
.footerBox .footerLeft p{
 font-size: 1.5rem;
}
.footerBox .footerLeft .address{
	font-size: 1.6rem;
	margin-top: 21px;
}
.footerBox .footerLeft .icTel{
	font-size: 2rem;
}
.footerBox .footerLeft .icTel::before{
	width: 18px;
	height: 18px;
	top: calc(50% - 7px);
}
.footerBox .footerRight{
	position: relative;
	justify-content: space-between;
	align-items: flex-start;
	flex-flow: row wrap;
	gap: 0 min(5vw,36px);
}
.footerBox .footerNavi:nth-of-type(2){
	width: 6.5em;
}
.footerBox .footerNavi:nth-of-type(4){
	width: 9em;
}
.footerNavi > li:not(.hasSub),
.footerNavi .hasSub + .hasSub{
	margin-top: 2rem;
}
.footerBox .footerNavi::nth-of-type(4) .hasSub + li{
	margin-top: 5rem;
}
.footerNavi .hasSub .sub{
	margin-top: 12px;
}
.footerNavi .hasSub .sub li{
	font-size: 1.5rem;
	margin-top: 4px;
}
.footerNavi .hasSub .sub a{
	color: #D7EDF2;
}
footer .privacy{
	margin-top: 74px;
}
.copy{
 font-size: 1.5rem;
}
#pageTop{
	width: 70px;
	height: 70px;
	right: max(5vw,50px);
	bottom: 84px !important;
}
#pageTop a{
	font-size: 1.3rem;
}

/* =======================================
	pgs common
========================================== */
.pgs main{
	margin-top: 100px;
}

/*-- mainTitle --*/
.mainTitle{
}
.mainTitle h2{
	font-size: 2.4rem;
}

/*-- table --*/
.basicTable >dt{
	padding: 10px 2.5%;
	width: 23%;
}
.basicTable >dd{
	padding: 10px 2.5%;
	width: 77%;
}
.basicTable >dt:last-of-type{
	border-bottom: none;
}
 .basicTable >dd:last-of-type{
	border-bottom: none;
}

table.basicTable thead th{
	font-size: 1.6rem;
}
table.basicTable th,
table.basicTable td{
	padding: 12px 1.5%; 
}

/*		anchorLink
-----------------------------*/
.anchorLink{
	margin: 70px 0 50px;
	gap:0 min(2.5%,30px);
}
.anchorLink li{
	width: 25%;
}
.anchorLink a{
	font-size: min(1.4vw,1.6rem);
	padding: 8px 18% 8px 1%;
	text-align: center;
}
.anchorLink a::before{
  right: 15px;
}
.anchorLink a::after{
  right: 21px;
}

.pageLinks{
	gap:15px 30px;
	padding: 35px 0 ;
}
.pageLinks ul{
	gap:15px 20px;
}
.pageLinks li{
	flex: 1;
	height: 56px;
}

/* =======================================
	top
========================================== */
.titleBox{
	justify-content: space-between;
	align-items: center;
}

/*		#mv
-----------------------------*/
#mv{
	height: 700px;
}
#mv .mvTxt{
	position: absolute;
	top: 295px;
 width: 59.3%;
 max-width: 616px;
}


/*	#topMessage
-----------------------------*/
#topMessage h2{
	font-size: 3.6rem;
}
#topMessage h2 span{
	font-size: 6.34rem;
	margin-bottom: 30px;
}
#topMessage p{
	font-size: 2rem;
}
#topMessage .txts{
	display: grid;
	justify-content: flex-end;
}

/*	#topReason
-----------------------------*/
#topReason .titleBox{
	margin-bottom: 55px;
}
#topReason ul {
	align-items: stretch;
	gap: 0 21px;
}
#topReason ul li{
	width: calc((100%) / 3);
	max-width: 386px;
}
#topReason li figure{
	max-width: 386px;
}
#topReason li figure img{
	height: 274px;
	object-fit: cover;
}
#topReason dl{
	height: calc(100% - 274px);
	padding: 22px 0 17px 27px;
}
#topReason dl dt{
	font-size: min(2vw,2.4rem);
}
#topReason dl dt .num{
	font-size: 2rem;
}
#topReason dl dd{
	padding-top: 25px;
}

/*	#topServices
-----------------------------*/
#topServices{
	display: flex;
	align-items: center;
	justify-content: center;
}
#topServices figure{
	width: 50%;
}
#topServices figure img{
	object-fit: cover;
	height: 100%;
}
#topServices .txts{
	padding: 1% 1% 1% min(13.29%,93px);
	width: 50%;
}
#topServices .h2TitEn{
	margin-bottom: 60px;
}
#topServices .h2TitEn,
#topServices ul{
	max-width: 507px;
}
#topServices ul li{
	padding-top: 35px;
}
#topServices ul li .txt{
	font-size: min(2.2vw,3.6rem);
}
#topServices ul li .txt span{
	margin-bottom: min(0.5vw,5px);
}
#topServices .txtLink{
	padding-right: min(3.5vw,49px);
}
#topServices .txtLink:hover{
	opacity: 0.7;
}
#topServices .linkBox > span{
 margin-bottom: min(1.65vw,33px);
}
#topServices .linkBox > span:last-of-type{
 margin-bottom: min(0.9vw,25px);
}
#topServices ul li:nth-child(2) .linkBox{
	margin-right: calc(29px + 2em + min(3.5vw,49px));
}

/*	#topNews
-----------------------------*/
#topNews .titleBox{
	margin-bottom: 20px;
}
#topNews ul{
	margin: 0 auto;
	max-width: 993px;
}
#topNews ul li{
	padding: 28px 0 40px;
}
#topNews ul li a:hover{
	opacity: 0.7;
}

/*	#topCalendar
-----------------------------*/
#topCalendar .linkArrow{
	margin-top: 29px;
}

/*	#topBtnArea
-----------------------------*/
#topBtnArea{
	margin: 127px auto;
	gap:0 40px;
}
#topBtnArea li{
	width: calc((100% - 40px) / 2);
	max-width: 580px;
	height: 240px;
}
#topBtnArea li p{
	font-size: 3.6rem;
}
#topBtnArea li .en{
	font-size: 1.8rem;
}
#topBtnArea li a::before{
	width: 60px;
	height: 60px;
	top: calc(50% - 30px);
	right: 49px;
}
#topBtnArea li a::after{
	width: 12px;
	height: 12px;
	top: calc(50% - 4.36px);
	right: 75px;
}
#topBtnArea li a:hover{
	opacity: 0.7;
}

/* =======================================
	reason
========================================== */
#reasonLead{
	padding-bottom: 0;
}
#reasonLead .leadTxt{
	font-size: 3.2rem;
}
#reasonLead .leadTxt span{
	margin-bottom: 20px;
}
#reasonLead .leadTxt em{
	font-size: 5rem;
}

#reasonMain{
	padding-top: 180px;
}
#reasonMain::before{
	height: 100px;
}
#reasonMain .reasonBox{
	margin-bottom: 100px;
}
#reasonMain .reasonBox.pcFlex figure,
#reasonMain .reasonBox.pcFlex .txts{
	width: 50%;
}
#reasonMain .reasonBox .h3Tit{
	padding-bottom: 20px;
	padding-left: 10%;
	display: flex;
	align-items: center;
}
#reasonMain .reasonBox .h3Tit .fontLato{
	font-size: 5rem;
	min-width: 90px;
	min-height: 90px;
	margin-right: 15px;
}
#reasonMain .reasonBox .txts p{
	padding-left: 10%;
}
#reasonMain .reasonBox.flexRowReverse .h3Tit,
#reasonMain .reasonBox.flexRowReverse .txts p{
	padding-left: 0;
	padding-right: 10%;
}
#reasonMain .reasonBox:nth-of-type(3) .h3Tit{
	padding-left: 0;
	padding-top: 30px;
}
#reasonMain .reasonBox:nth-of-type(3) .txts p{
	padding-left: 0;
}

#reasonGallery {
	padding: 100px 0;
}

#reasonGallery ul{
	gap:0 min(1vw,15px);
}

/* =======================================
	work
========================================== */
#worksLead{
	padding: 100px 0 0;
}

.workBox{
	margin-bottom: 50px;
}
.workBox#waste{
	padding-bottom: 30px;
}
.workBox figure{
	width: 40%;
}
.workBox figure img{
	height: 100%;
	object-fit: cover;
}
.workBox .txts{
	padding: 30px 0;
	width: 60%;
}
.workBox .h3Tit,
.workBox .txts p{
	padding: 0 4.4%;
}
.workBox .basicTable{
	justify-content: flex-start;
	margin: 30px auto 0;
	width: 95.6%;
}
.workBox .basicTable > dt{
	font-size: min(1.35vw,1.5rem);
	padding: 5px 1%;
	width: 31%;
}
.workBox .basicTable > dd{
	font-size: min(1.35vw,1.5rem);
	padding: 5px 1%;
	width: 19%;
}
.workBox .basicTable > dd:nth-of-type(odd){
	border-right: 1px solid var(--base);
}
.workBox .basicTable dt:nth-of-type(11),
.workBox .basicTable dd:nth-of-type(11){
 border-bottom: none;
}

#worksMain .btnWrap{
	gap: 0 min(8.3%,100px);
	margin: 80px auto;
}

/* =======================================
	case
========================================== */
#caseLead{
	padding: 100px 0 0;
}
.caseStatistics{
	gap:0 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.caseStatistics li{
	padding-right: 10px;
	width: calc((100% - 20px) / 3);
}
.caseStatistics li span{
	margin-right: 4%;
	padding: 5px 4% 6px;
}

.caseList thead th{
	width: 13.5%;
}
.caseList thead th:nth-of-type(1){
	width: 23%;
}
.caseList thead th:nth-of-type(2){
	width: 50%;
}

/* =======================================
company
========================================== */
#company .anchorLink{
 flex-flow: row wrap;
 gap:20px 30px;
}
#company .anchorLink li{
 width: calc((100% - 30px*3)/4);
}
#companyMessage .pcFlex{
 justify-content: space-between;
 flex-flow: row-reverse;
 margin: 0 6% 40px;
}
#companyMessage .pcFlex figure{
 width: 40%;
}
#companyMessage .pcFlex .txts{
 width: 55%;
}
#companyMessage .pcFlex + .pcFlex{
 margin-top: 40px;
}
/* =======================================
recruit
========================================== */

#recruitNumber ul{
 justify-content: space-between;
}
#recruitNumber ul li{
 width: 31%;
}


/* =======================================
	recruit /benefits
========================================== */

#benefitsLead ul li{
 width: 22%;
 max-width: 300px;
}
#benefitsPoint ul {
 justify-content: space-between;
}
#benefitsPoint ul li{
 width: 32%;
}
/* =======================================
	recruit /numbers
========================================== */
#numbersMain .flexWrap{
 justify-content: space-between;
}
#numbersMain .flexWrap >li{
 width: 48%;
}
#numbersMain .flexWrap .wide{
 width: 100%;
}
#numbersMain .flexWrap .pcFlex{
 flex-flow: row wrap;
 justify-content: center;
 gap:0 50px;
}
#numbersMain .flexWrap .pcFlex h3{
 width: 100%;
}
#numbersMain .flexWrap .pcFlex figure{
 width: 40%;
}
#numbersMain .flexWrap .pcFlex p{
 max-width: calc(60% - 50px);
}

/* =======================================
esg
========================================== */
#esgLead .leadTxt{
 font-size: 20px;
}

#esgMain section{
  padding: 0 0 50px;
}
.esgTtl{
 gap:0 20px;
 align-items: flex-end;
}
.esgTtl h4 {
  margin-bottom: 20px;
}
.esgTtl h4 span{
 font-size: 34px;
}



.esgBox{
 justify-content: space-between;
 margin: 50px auto 0;
}
.esgBox figure{
 width: 40%;
}
.esgBox .txts{
 width: 55%;
}
#recruitContact ul{
 justify-content: center;
 align-items: center;
 gap:20px 2%;
}
#recruitContact ul li{
 width: 48%;
 max-width:380px ;
}
#recruitContact ul li a:hover{
 opacity: .7;
}

/* =======================================
	pelp
========================================== */
#pelpAbout .pcFlex{
  gap:20px;
}

#pelpAbout .pcFlex li{
  width: calc((100% - 40px)/3)
}
#pelpAbout .pcFlex li h4{
 min-height: 104px;
}

#pelpService h3{
 display: flex;
 align-items: center;
}
#pelp .bnrs{
 justify-content: space-between;
 align-items: center;
}
#pelp .bnrs li{
 width: 66%;
}
#pelp .bnrs li + li{
 width: 30%;
}

/* =======================================
	news
========================================== */
/*		一覧
-----------------------------*/
.newsBox .pcFlex{
 flex-flow:wrap;
 justify-content: space-between;
}
.newsBox .newsInfo{
 margin-bottom: 20px;
 width: 100%;
}
.newsBox figure{
 order: 2;
 width: 30%;
}
.newsBox .txts{
 order: 3;
 width: 66%;
}


/* =======================================
	contact
========================================== */
#contactLead ul{
	margin-top: 50px;
	padding: 30px min(3%,30px);
}
#contactLead ul li{
  padding: 0 50px;
	width: 50%;
}
#contactLead ul li:not(:first-child){
	border-left: 1px dotted var(--base);
}
#contactLead .h3Tit{
 font-size: min(3vw,3.2rem);
}
#contactLead .tel a,
#contactLead .fax span.number{
 font-size:min(3vw,4rem) ;
}
#contactLead .tel a::before,
#contactLead .fax span.number::before{
 width: 32px; 
 height: 32px;
 margin-top: 9px;
}

/* =======================================
	form
========================================== */
#contactForm .basicTable th{
	padding: 20px 2.5%;
	width: 25%;
}
#contactForm .basicTable td{
	padding: 20px 2.5%;
	width: 75%;
}
#contactForm .basicTable input:not([type=checkbox]){
	padding: 8px;
	width: 80%;
}
#contactForm .basicTable textarea{
	padding: 8px;
	width: 100% !important;
}
#contactForm .basicTable .hissu{
	padding: 3px 3% 4px;
}

.confirm {
  margin-top: 40px;
}
.formFoot{
 margin:40px 0 0;
}

#contactForm .contactPrivacy{
 text-align: center;
}

/* =======================================
	privacypolicy
========================================== */
