@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.6rem;
}
.h2TitEn{
	font-size: 3rem;
}
.h3Tit {
  font-size: 2.8rem;
	margin-bottom: 45px;
}

.icTit,
.icTit2{
 font-size: 3rem;
}
.icTit2{
 margin-bottom: 30px;
}
.icTit2::before{
 width: 67px;
 height: 72px;
 margin-right: -14px;
}
.icTit3{
	font-size: 2.2rem;
}

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

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

/*
　ボタン,リンク
========================================== */
.btn{
  font-size: 1.6rem;
  width: 215px;
}



/* =======================================
  ページャー
========================================== */
/*-- 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-top: 50px;
}
.pager a{
font-size: 1.6rem;
  width: 200px;
}

/* =======================================
	header
========================================== */
header {
}
#top header:not(.fixed){
 background: transparent;
}
header.fixed{
 background: #fff;
}

header .flex{
 position: relative;
 height: 129px;
 padding:20px 0 0 ;
 margin: 0 auto;
 align-items: flex-start;
}
header #logo{
 position: relative;
 padding-top: 25px;
}
header #logo span{
 position: absolute;
 top: 0;
 left: 0;
 white-space: nowrap;
}
header #logo img{
 margin-left: -12px;
}

/* =======================================
	gnavi
========================================== */

.gnavi{
	flex: 1;
 padding-top: 60px;
}
#gnaviList{
  height: 100%;
 justify-content: flex-end;
 align-items: center;
}
#gnaviList li{
}
#gnaviList > li{
 position: relative;
 margin-left: min(2.0vw,20px);
}
#gnaviList > li >a{
 display:flex;
 align-items: flex-end;
 height: 45px;
 padding-bottom: 5px;
 color: var(--base);
 font-size: min(1.6vw,16px);
 font-weight: 500;
 white-space: nowrap;
}
#gnaviList li.current a,
#gnaviList li a:hover{
 opacity: .7;
}

.gnavi .headerLinks{
 align-items: center;
	position: absolute;
	right: 0;
	top: 30px;	
}
.gnavi .headerLinks .tel{
 font-size:min(2.2vw,22px);
 font-weight: 700;
 line-height: 1;
}
.gnavi .headerLinks li .time{
 display: block;
 padding-top: 2px;
	font-size: min(1vw,12px);
 font-weight: 400;
 text-align: center;
}
.headerLinks .recruit{
 position: relative;
 margin: 0 24px 0 18px;
}
.headerLinks .recruit> a{
 display: grid;
 place-content: center;
 background: var(--yellow);
 width: 13vw;
 max-width:152px;
 height: 50px;
 color: var(--base);
 font-size: min(1.4vw,16px);
 font-weight: 700;
}
.headerLinks .recruit> a span{
 display: inline-block;
 background: url("../images/ic_recruit.svg") no-repeat left center/15px auto;
 padding: 0 0 0 20px;
}
.headerLinks .recruit .sub{
 display: none;
	visibility: hidden;
	position: absolute;
 top: calc(100% - 1px);
	z-index: 2;
	transition: all 0.6s ease-in-out;
 min-width: 100%;
}

.headerLinks .contact a{
 display: grid;
 place-content: center;
 border: 1px var(--red) solid;
 width: 14.5vw;
 max-width:152px;
 height: 50px;
 color: var(--red);
 font-size: min(1.4vw,16px);
 font-weight: 700;
}
.headerLinks .contact a span{
 display: inline-block;
 background: url("../images/ic_mail.svg") no-repeat left center/20px auto;
 padding: 0 0 0 25px;
}

/*-- hover --*/
.headerLinks .contact a:hover{
	background: var(--red);
	color: var(--wh);
}
.headerLinks .contact a:hover span{
	background: url("../images/ic_mail_wh.svg") no-repeat left center /20px auto;
}

.gnavi .hasSub > a{
 position: relative;
}
.gnavi .hasSub:hover .sub{
	display: block;
	visibility: visible;
}
#gnaviList .sub{
	display: none;
	visibility: hidden;
	position: absolute;
 top: calc(100% - 1px);
 left: 50%;
 transform: translate(-50%, 0);
	z-index: 2;
	transition: all 0.6s ease-in-out;
 min-width:100px;
}
#gnaviList .hasSub:hover .sub{
	display: block;
	visibility: visible;
}
#gnaviList .sub li{
	font-size: min(1.3vw,1.6rem);
}
#gnaviList .sub li + li,
.headerLinks .recruit .sub li + li{
 border-top: 1px #fff solid;
}
#gnaviList .sub li a,
.headerLinks .recruit .sub a{
	display: block;
 background: var(--yellow);
	padding: 11px 20px 12px;
 color: var(--base);
 font-weight: 400;
 text-align: center;
	white-space: nowrap;
}
#gnaviList .sub li a:hover,
.headerLinks .recruit .sub a:hover{
 opacity: .7;
}

/* =======================================
	main
========================================== */
main{
	margin-top: 129px;
}
#top main{
 margin-top: 0;
}

/* =======================================
	footContact
========================================== */
#footContact .pcFlex{
 justify-content: space-between;
 align-items: flex-start;
}
#footContact h2{
	padding-right: 2%;
	padding-top: 20px;
 text-align: left;
}
#footContact .contactList{
 width: 75%;
 max-width: 860px;
 padding: 58px 30px 65px;
 align-items: center;
 justify-content: center;
}
#footContact .contactList li{
 width: 50%;
 text-align: center;
}
#footContact .contactList li + li{
 border-left: 1px var(--base) solid;
}
#footContact .telbox .time,
#footContact .mailbox .time{
 font-size: 1.6rem;
 margin-top: 10px;
}

/* =======================================
	footer
========================================== */
footer{
 overflow: hidden;
 padding-bottom: 30px;
}

footer a:hover{opacity: .7;
}
.footerBox.pcFlex{
 align-items: flex-start;
	justify-content: space-between;
}
.footerBox .footerLeft{
	width: min(31%, 360px);
}

.footerBox .footerRight{
 position: relative;
	justify-content: space-between;
 align-items:flex-start;
 flex-flow: row wrap;
 gap:30px 5px;
	width: min(60%, 620px);
 padding: 0;
}
.footerNavi >li{
 margin-bottom: 14px;
}
.footerNavi >li> a{
 font-weight: 700;
}
.footerNavi li li{
 margin-top: 5px;
}
.footerNavi li li a{
 position: relative;
 padding: 0 0 0 14px;
}
.footerNavi li li a::before{
 content: "";
 display: block;
 border-radius: 50%;
 background: var(--red);
 width: 10px;
 height: 10px;
 position: absolute;
 top: 0.5em;
 left: 0;
}

#pageTop{
	right: 4vw;
	bottom: 73px;
}

/* =======================================
	pgs common
========================================== */
/*-- mainTitle --*/
.mainTitle{
	height: 300px;
}
.mainTitle h2{
	font-size: 3.6rem;
}

/*-- title --*/
.pgs .h2Tit{
 font-size: 3rem;
}

/*-- table --*/
.basicTable >dt{
	border-right: 1px dotted var(--blue);
	padding: 15px 2.5%;
	width: 23%;
}
.basicTable >dd{
	padding: 15px 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.8rem;
}

/*		anchorLink
-----------------------------*/
.anchorLink ul{
	padding: 35px 0;
	gap:15px 20px;
}
.pageLinks{
	padding: 35px 0 ;
}
.pageLinks ul{
	gap:15px 20px;
}
.anchorLink li,
.pageLinks li{
	width: calc((100% - 20px * 3) / 4);
	height: 56px;
}
.anchorLink a,
.pageLinks li a{
	padding: 8px 10px;
}
.anchorLink + section{
	padding-top: 65px;
}

/* =======================================
	top
========================================== */
/*		#mv
-----------------------------*/
#mv{
 background: var(--LGray);
 /* height: 977px; */
}
#mv figure{
 height: 100vh;
}

/*		#topBusiness
-----------------------------*/

#topBusiness ul{
 justify-content: space-between;
}
#topBusiness ul li{
 width: 32.1%;
 max-width: 385px;
}
#topBusiness ul li figure{
 height: 196px;
}

/*		#topReason
-----------------------------*/
#topReason{
}

/*		#topRecruit
-----------------------------*/
#topRecruit{
}
#topRecruit .flex{
 position: absolute;
 right: 0;
 top: 0;
 width: 65%;
 max-width: 776px;
 height: 100%;
}

/*		#topAboutus
-----------------------------*/
#topAboutus {
}
#topAboutus ul{
 justify-content: space-between;
}
#topAboutus ul li {
 width: 32.1%;
 max-width: 385px;
}

/* =======================================
	company
========================================== */
#companyAccess .pcFlex.half{
	align-items: center;
}
#companyAccess .map,
#companyAccess .map iframe{
	height: 350px;
}

/* =======================================
	esg PC
========================================== */
#esgLead .leadTxt{
	margin: 50px auto;
	width: 90%;
}
#esgInitiative h3 > span::before{
	width: 66px;
	height: 150px;
	left: -75px;
	bottom: -35px;
}
#esgInitiative h3 .pickup{
 font-size: 2rem;
}
.esgBox{
	align-items: center;
}
.esgBox:not(:last-of-type){
	margin-bottom: 40px;
}
.esgBox .esgTtl{
	justify-content: center;
}
.esgBox .esgIc{
 justify-content: center;
}
.esgBox p{
 padding-left: 20px;
 padding-right: 20px;
}
.esgBox figure{
	box-shadow: -15px 15px 0 var(--LGray);
}
.esgBox.flexRowReverse figure{
	box-shadow: 15px 15px 0 var(--LGray);
}

/* =======================================
	reason PC
========================================== */
#reason main section:not(#reasonLead){
	margin: 30px auto;
	padding: 50px 0;
}
#reason main section:not(#reasonLead):last-of-type{
	margin-bottom: 100px;
}
#reason .h3Tit{
	margin-bottom: 25px;
}
#reasonLead {
	padding-bottom: 50px;
}
#reason .half .txts{
    margin-left: 8%;
}  
#reason .half .txts p{
  line-height: 1.6;
  max-width: 95%
}
#reason .half.flexRowReverse .txts{
  margin-left: 0
}
#reason .half.flexRowReverse .txts p{
  max-width: 84%;

}


/* =======================================
	 transport PC
========================================== */
#transportLead{
	padding-bottom: 50px;
}
#transportLead .icTit2::before{
	margin-right: 14px;
  margin-bottom: 10px;
}
.transportBox .txts h3{
	padding: 20px;
}
.transportBox .txts p{
	line-height: 2;
}

/* =======================================
	 transport_vehicle PC
========================================== */
#transport_vehicle main section{
	padding: 50px 0;
}
#transport_vehicle .leadTxt{
 padding: 100px 0 50px;
}
#transport_vehicle .anchorLink ul.flex{
	justify-content: center;
}
.vehicleBox .h4Tit{
	margin-bottom: 30px;
	padding-bottom: 10px;
}
.vehicleBox .h4Tit span{
	padding: 1px 1em 2px;
}
.vehicleBox .imgs{
 justify-content: space-between;
}
.vehicleBox .imgs > div{
 width: 36.8%;
}
.vehicleBox .imgs > div:first-child{
 width: 55%;
 margin: 0 30px;
}
.vehicleBox .slider .slick-prev{
 left: -30px;
}
.vehicleBox .slider .slick-next{
 right: -30px;
}
.vehicleBox .txts .features{
	padding: 20px;
}
.vehicleBox .txts .features h5{
 margin-bottom: 15px;
 font-size: 2rem;
}
.vehicleBox .basicTable > dt{
 width: 25%;
}
.vehicleBox .basicTable > dd{
 width: 75%;
}
.vehicleBox .basicTable > dt:first-of-type,
.vehicleBox .basicTable > dd:first-of-type{
 font-size: 1.8rem;
}
.vehicleBox .basicTable .truck{
 width: 30%;
}
.vehicleBox .checkList li{
	background: url("../images/ic_check.svg") no-repeat left 7px/22px auto;
	font-size: 1.8rem;
}

.fukidashiBox{
	margin: -20px auto 100px;
}
.fukidashiBox .txts{
	border-radius: 50px;
	padding: 20px 40px;
}
.fukidashiBox .txts::after{
 width: 35px;
 height: 35px;
 left: 85%;
 bottom: -34px;
}
.fukidashiBox.pct01 .txts::before{
 width: 105px;
 height: 185px;
 right: -70px;
 bottom: -60px;
}
.fukidashiBox.pct02 .txts::before{
 width: 90px;
 height: 200px;
 right: -50px;
 bottom: -80px;
}
.fukidashiBox .txts .catch{
 font-size: 2.4rem;
}

#vehicleListWrap {
	display: flex;
	align-items: stretch;
	padding: 0 !important;
}
#vehicleListWrap .h3Tit{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0 !important;
	padding: 20px 3% 20px calc(3% - 10px);
	width: 25%;
}
.vehicleList {
	margin: 30px;
	width: calc(100% - 60px);
}
.vehicleList li span{
	padding: 10px 20px;
}
.vehicleList .weight{
width: 20%;
}
.vehicleList .num{
margin-right: 1em;
min-width: 12%;
  white-space: nowrap;
}

/* =======================================
	 warehouse PC
========================================== */
#warehouse main{
	padding-bottom: 100px;
}
#warehouse .pointList li{
	border-radius: 150px;
	width: calc((100% - 40px)/3);
	max-width: 300px;
  height: 300px;
	padding: 20px;
}
#warehouse .pointList h4{
	font-size: 2rem;
	left: 40px;
	top: 20px;
	padding: 10px 20px 13px;
}
#warehouse .pointList h4 span{
	font-size: 4rem;
}
#warehouse .pointList li p{
	font-size: 2.6rem;
}

.flowList h4{
 position: relative;
 display: grid;
 place-content: center;
 height: 150px;
}
.flowList li:not(:last-child){
	margin-right: 12px;
}
.flowList li + li h4::before{
 content: "";
	position: absolute;
	top: calc(50% - 30px);
	right: 100%;
	display: block;
	/* margin-top: -54px; */
	width: 30px;
	height: 60px;
	background: #063C84;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.flowList .step{
 padding: 5px 10px;
 }

.warehouseList{
 gap: 25px 2%;
}
.warehouseList li{
 width: 32%;
}

/* =======================================
	rehearsal_hall PC
========================================== */
#rehearsal_hall main{
	padding-bottom: 100px;
}
.hallBox:not(:last-of-type){
	margin-bottom: 70px;
}
.hallBox .h3Tit{
	margin-bottom: 30px;
}
.hallBox h3::before{
 width: 10px;
 }
.hallBox h4{
	font-size: 1.8rem;
	 padding: 3px 10px 6px;
}
.hallBox p{
	padding: 10px;
}
#rehearsal_hall #faq{
	margin-bottom: 100px;
}
/*-- アコーディオン--*/
.faqList dt::before,
.faqList dt::after{
  right:20px;
}
.faqList dt span{
 padding: 10px 0 15px 60px;
 font-size: 1.8rem;
 min-height: 50px;
 }
 .faqList dd span{
 padding: 0.65em 0.65em 0.65em 60px;
 min-height: 50px;
}
 .faqList dt span::before,
.faqList dd span::before{
 font-size: 2.4rem;
  width: 30px;
 height: 30px;
 }

/* =======================================
	hall_5 / hall_shimotoda / hall_8
========================================== */
.hallMv{
 margin: 50px auto;
}
.hallDetailBox .txts dl dt{
 width: 8.5em;
}
.hallDetailBox .txts dl dd{
 width: calc(100% - 8.5em);
}
.hallDetailBox .documentList{
 margin-bottom: 20px;
}

#hallFacilities dl dt,
#hallFacilities dl dd{
 width: calc(100% /6);
}
#hallFacilities dl dt.bdr0,
#hallFacilities dl dd.bdr0{
	border-bottom: none;
}
#hallFacilities dl + p{
	text-align: center;
}

#hallCalendar p{
	text-align: center;
}

/* =======================================
recruit index PC
========================================== */
#recruitLead > .h3Tit{
	font-size: 3.5rem;
	margin-bottom: 20px;
}
#recruitLead .detailBox{
	margin: 100px auto 0;
  padding: 50px 0;
}
#recruitLead .detailBox .h3Tit{
	margin-bottom: 25px;
}
#recruitLead .detailBox .discList li{
	font-size: 1.8rem;
	padding-bottom: 10px;
}

#recruitFaq dl{
	margin: 50px 5% 0;
}
#recruitFaq dl dt{
	margin: 0 0 100px auto;
	width: calc(100% - 180px);
}
#recruitFaq dl dt span{
 font-size: 1.8rem;
}
#recruitFaq dl dt::before{
 border-radius: 80px;
 width: 160px;
 height: 160px;
 top: -15px;
 left: -180px;
}
#recruitFaq dl dd{
 margin: 0 auto 100px 0;
 padding: 20px 4.45%;
 font-size: 1.8rem;
 width: calc(100% - 200px);
}
#recruitFaq dl dd::before{
 border-radius: 80px;
 width: 160px;
 height: 160px;
 top: 0;
 right: -200px;
}
#recruitFaq dl dd::after{
	clip-path: polygon(0 50%, 0 0, 90% 40%);
 top: 50%;
 right: -35px;
}
#recruitFaq dl dd span.bold{
	font-size: 2.8rem;
}

#recruitSpecial ul{
 justify-content: space-between;
}
#recruitSpecial ul li{
 width: 31%;
}
#recruitSpecial ul li span{
 font-size: 2rem;
}
#recruitSpecial ul li a:hover{
 opacity: .6;
}
#recruitSpecial ul li p{
 font-size: 2.4rem;
}

#recruitDetails{
	margin-bottom: 100px;
}

/* =======================================
interview
========================================== */
#interviewCont{
	padding-top: 65px;
}
.interviewLead h3{
	font-size: 3.5rem;
	margin-bottom: 70px;
}
.interviewLead h3 span{
	font-size: 6rem;
}
.interviewMv{
 max-width: 1000px;
 margin: 15px auto 30px;
}
.employee{
	justify-content: space-between;
}
.employee li{
	width: 45%;
	max-width: 450px;
}
.employee figure{
 margin: 0 0 15px;
}
.employee figcaption{
	font-size: 1.8rem;
	margin: 20px 0 0;
}
.employee h4{
	font-size: 2.8rem;
}

.interviewArea{
	margin-top: 70px;
}
.interviewArea > h4{
	font-size: 2.8rem;
	text-align: center;
}
.interviewBox .h4Tit{
	font-size: 2.2rem;
}
.interviewBox dl{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.interviewBox dt{
	margin: 10px 0 15px;
	width: 6.4%;
	max-width: 64px;
}
.interviewBox dd{
	line-height: 1.6;
	margin: 10px 0 15px;
	padding-left: 1em;
	width: 93.6%;
}

.interviewPhoto{
	padding: 30px;
}
.interviewPhoto ul{
	gap: 0 2.5%;
	justify-content: center;
}
.interviewPhoto ul li{
 width: calc(100% - 60px);
}

/* =======================================
job
========================================== */

.jobFlow .pcFlex{
 justify-content: space-between;
}
.jobFlow .flowTxts.pcFlex{
 margin-top: 20px;
}
.jobFlow .flowTxts figure{
 width: 35.5%;
 max-width: 340px;
 margin-top: -55px;
}
.jobFlow .flowTxts .txts{
 width: 59%;
 max-width: 565px;
}

#flowBox02 h4{
 width: 50%;
 max-width: 340px;
 margin: 0 25px 10px 0;
 text-align: center;
}
.jobFlow #flowBox05 figure{
 margin-top: 0;
 width: 45%;
 max-width: 508px;
}
.jobFlow #flowBox05 .txts{
 width: 50%;
}

#jobSurvey .inner1200{
 z-index: 0;
}
#jobSurvey .inner1200 > figure{
 position: absolute;
 right: 524px;
 top: -110px;
 width: 64.6%;
 max-width: 773px;
 z-index: -1;
}
#jobSurvey .inner1200 h3{
 max-width: 530px;
 margin: 0 0 50px auto;
}
#jobSurvey .flexWrap dl{
 width: 63.5%;
}
#jobSurvey .flexWrap .bgRed{
 width:calc(100% - 63.5% - 42px);
}

/* =======================================
	news
========================================== */
/*		一覧
-----------------------------*/
.newsBox.pcFlex{
 justify-content: space-between;
}
.newsBox .imgs{
 width: 30%;
}
.newsBox .txts{
 width: 66%;
}

/*		single
-----------------------------*/
article{
 padding: 100px 0;
}

/* =======================================
	contact
========================================== */
#contactLead{
	padding-bottom: 70px;
}
#contactLead .icTel{
	font-size: 5rem;
}
#contactFormArea{
	padding-top: 70px;
}

/* =======================================
	form
========================================== */
.tb_cont th{

	padding: 15px 2.5%;
	width: 25%;
}
.tb_cont td{
	border-left: 1px solid var(--base);
	padding: 15px 2.5%;
	width: 75%;
}
.tb_cont td input:not([type=checkbox]):not([type=radio]){
	padding: 8px;
	width: 80%;
}
.tb_cont td textarea{
	padding: 8px;
	width: 80%;
	height: 100px;
}
.tb_cont .hissu{
	padding: 3px 3%;
}
.tb_cont .zip{
	margin-right: 10px;
	width: 20%;
}
.tb_cont .zipBtn{
	font-size: 1.4rem;
	padding: 10px 14px;
}
.tb_cont .w50{
	width: 58%;
}
.tb_cont .fileBtn li{
	width: 33%;
}
.confirm {
  margin-top: 40px;
}
.tb_cont td input.radiobtn{
    width: auto;
}
/* =======================================
	privacypolicy
========================================== */





