@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


#opening{
	opacity: 1;
	position: fixed;
	background: #fff url("../../images/bg.jpg") center;
	background-size: 120px auto;


	width:100%;
	height: 100%;
	pointer-events: none;
	z-index: 1100;
	top: 0;
	left: 0;
    inset:0;

}
#opening.homeOpening{
	background: #d3f8fe;
}

#opening .logo{
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
	opacity: 0.1;
	text-align: center;
	transform: translate(-50%,-50%);
	
    filter: grayscale(1) ;
	animation: openanime .5s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;


}
#opening .logo img{
	width:160px;
	height: auto;
	transition: all .4s ease-in-out;

    filter:  blur(0);

}
#opening.openingClose .logo img{
	filter: blur(6px);
}



#opening .homeOpen{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
}

#opening .homeOpen img{
	max-width:80vw;
	max-height:80vh;
	width:auto;
	height:auto;
	display:block;
}
#opening .secondOpen{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
}

#opening .secondOpen img{
	max-width:20vw;
	max-height:20vw;
	width:auto;
	height:auto;
	display:block;
	animation: secondOpenFloat 1.5s ease-in-out infinite;
}

@keyframes secondOpenFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}


@keyframes openanime {
	0% {
		filter: grayscale(1);
	}

	100% {
		filter: grayscale(0);
	}
}


/*COMMON*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong{
	font-weight: 700;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

body {
	color: #000;
	font-size: 100%;
	line-height: 160%;

	font-family: "Noto Sans JP" ,YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";

	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	position:relative;
	
	background: transparent;
	
	letter-spacing: .1em;
		
}

body:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff url("../../images/bg.jpg") center;
	background-size: 120px auto;
	pointer-events: none;
	z-index: -1;
}
body.brand:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff url("../../images/bg-brand.jpg") center;
	background-size: 120px auto;
	pointer-events: none;
	z-index: -1;
}

a {
  -webkit-tap-highlight-color: transparent;
	
}

p{
	line-height:200%;
	letter-spacing:0px;
	margin-bottom: 10px
}
strong{
	font-weight: bold;
}
a,a:hover,a:visited,a:active{
	color:#888;
	text-decoration: underline;
}
img{
  vertical-align:bottom;
}

h1 {
}


#wrapper{
}

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	
	z-index: 3;
}

header #logo{
	width: 180px;
	padding: 28px 0 0 30px;
}
header #logo img{
	width: 100%;
	height: auto;
}

#headMenu{
	display: flex;
	flex-wrap: wrap;
	z-index: 13;
	position: relative;
}
.btnContact{
	background: #ED9222;
}

.btnContact a{
	background: #ED9222 url("../../images/mail_icon.png") no-repeat left 30px center;
	background-size: 24px 16px;
	padding: 26px 32px 26px 63px;
	display: block;
	color: #fff;
	text-decoration: none;
	transition: all .2s ease-in-out;
}
.btnContact a:hover{
	background: #D97500 url("../../images/mail_icon.png") no-repeat left 30px center;
	background-size: 24px 16px;
}


#panel-btn{
	width: 82px;
	height: 79px;
	padding: 20px;
	background: #000;
	text-align: center;
	cursor: pointer;
}
#panel-btn-icon{
	display: inline-block;
	width: 30px;
	height: 41px;
	background: url("../../images/menu_icon.png") no-repeat 0 0;
	background-size: 100%;
	transition: all .2s ease-in-out;
	
}
#panel-btn:hover #panel-btn-icon{
	transform: scale(1.1);
}



#panel{
    display:none;
    position:fixed;
	top: 0;
	right: 0;
	z-index: 11;
	
	background: #74654F;
	height: 100%;
	padding: 140px 50px 50px;
    min-width: 450px;
}
#panel li {
	color: #fff;
	text-decoration: none;
	padding: 26px 0;
	border-top: 1px solid #fff;
}
#panel li a{
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	font-weight: 500;
	padding-left: 25px;
	background: url("../../images/menu_arrow.png") no-repeat 0 center;
	background-size: 15px auto;
}
#panel li a span{
	font-size: 18px;
}
#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    transition:.3s;
	z-index: 10;
}








footer{
	background: #000;
	padding: 0 0 0;
	color: #fff;
	position: relative;
}

footer section{

	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
	
}
footer section .footTxt{
	width: 65%;
	padding: 70px
}
.footTxt1{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}
.footTxt2{
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 15px;
}
.footTxt3{
	font-size: 12px;
	font-weight: bold;
}


footer section .footCopy{
	width: 35%;
	padding: 70px 70px 70px 70px;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.footTxt4{
	font-size: 10px;
	font-weight: bold;
	text-align: right;
	position: relative;
    z-index: 1;
}
footer section .footCopy::after{
	content: "";
	background: #ED9222;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	clip-path: polygon(12% 0,100% 0,100% 100%,0 100%);
}



.pageTop{
	position:absolute;
	width:100px;
	height:100px;
	right:70px;
	top:50px;
	z-index:2;
	cursor:pointer;
}

.scale{
	position:relative;
	display:block;
	width:100%;
	height:100%;
	transition:transform .3s ease;
	transform-origin:center;
}

.circle{
	position:absolute;
	inset:0;
	background:url("../../images/pagetop.png") no-repeat center / contain;
	animation:rotateLoop 20s linear infinite;
	pointer-events:none;
	z-index: 2;
}

.pageTop img{
	position:absolute;
	left:50%;
	top:50%;
	width:65%;
	height:auto;
	transform:translate(-50%,-50%);
	z-index:2;
	pointer-events:none;
}

.pageTop:hover .scale{
	transform:scale(1.15);
}

@keyframes rotateLoop{
	from{
		transform:rotate(0deg);
	}
	to{
		transform:rotate(360deg);
	}
}

/*promotion*/



#promotion{
	width: 100%;
	height: 850px;
	background: #000;
	position: relative;
	z-index: 1;
}

.promoImg{
	width: 100%;
	height: 100%;
	opacity: .7;
}
.promoImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}



.promoTxt span.char,
.promoTxtS span.char{
    display:inline-block;
    opacity:0;
    transform:translateY(20px);
}

.promoTxt span.char.show,
.promoTxtS span.char.show{
    opacity:1;
    transform:translateY(0);
    transition:.5s;
}

.promoTxt span.char-kakko-close {
	margin-left: -0.4em;
}





.promoTxt{
	position: absolute;
	font-size: 55px;
	font-weight: 700;
	top: 50%;
	left:0;
	text-align: center;
	transform: translateY(-50%);
	width: 100%;
	
	color: #fff;
	line-height: 140%;
}
.promoTxtS{
	padding-top: 30px;
	font-size: 20px;
	line-height: 180%;
	letter-spacing: .5em;
	font-weight: normal;
}

.promoMenu{
	position: absolute;
	bottom: 70px;
	left: 50%;
	text-align: center;
	background: #000;
	border-radius: 100px;
	padding: 5px;
    width: 1100px;
    transform: translateX(-50%);
}
.promoMenu ul{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #666;
	border-radius: 100px;
	overflow: hidden;
	justify-content: space-between
	
}
.promoMenu ul li{
	width: 16.6%;
	border-right: 1px solid #666;
	display: flex;
    justify-content: center;
}
.promoMenu ul li:nth-last-of-type(1){
	background: #262626;
	border-right: none;
}
.promoMenu ul li a{
	width: 100%;
	transition: all ease-in-out .2s;
	text-decoration: none;
	text-align: center;
}
.promoMenu ul li a > span{
	padding: 20px 15px 20px 32px;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	text-align: left;
	
}

.promoMenu ul li:nth-of-type(1) a > span{
	background: url("../../images/promomenu_1.png") no-repeat left 0 center;
	background-size: 29px;
	padding: 20px 8px 20px 32px;
}
.promoMenu ul li:nth-of-type(2) a > span{
	background: url("../../images/promomenu_2.png") no-repeat left 0 center;
	background-size: 29px;
}
.promoMenu ul li:nth-of-type(3) a > span{

	background: url("../../images/promomenu_3.png") no-repeat left 0 center;
	background-size: 29px;
}
.promoMenu ul li:nth-of-type(4) a > span{
	background: url("../../images/promomenu_4.png") no-repeat left 0 center;
	background-size: 29px;
}
.promoMenu ul li:nth-of-type(5) a > span{
	background: url("../../images/promomenu_5.png") no-repeat left 0 center;
	background-size: 29px;
	letter-spacing: -0.04em;
}
.promoMenu ul li:nth-of-type(6) a > span{
	background: url("../../images/promomenu_6.png") no-repeat left 0 center;
	background-size: 29px;
}
.promoMenu ul li a > span span{
	font-size: 9px;
	display: block;
	line-height: 100%;
	margin-top: 3px;
	color: #999;
	
}
.promoMenu ul li a > span span.pmsName{
	font-size: 12px;
	display: inline-block;
	line-height: 100%;
	margin-top: 3px;
	color: #fff;
	padding-left: 2px;
	
	
}
.promoMenu ul li a:hover{
	background: #333;
}



/* //promo */




/*pageTitle*/



#pageTitle{
	width: 100%;
	height: 350px;
	background: #000;
	position: relative;
	z-index: 1;
}

.pageTitleImg{
	width: 100%;
	height: 100%;
	opacity: .8;
}
body.brand .pageTitleImg{
	width: 100%;
	height: 100%;
	opacity: .5;
}
.pageTitleImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}



.pageTitleTxt span.char{
    display:inline-block;
    opacity:0;
    transform:translateY(20px);
}

.pageTitleTxt span.char.show{
    opacity:1;
    transform:translateY(0);
    transition:.5s;
}





.pageTitleTxt{
	position: absolute;
	font-size: 42px;
	font-weight: 700;
	top: 50%;
	left:0;
	text-align: center;
	transform: translateY(-50%);
	width: 100%;
	
	color: #fff;
	line-height: 100%;
	text-shadow: 2px 2px 1px rgba(0,0,0,.5);
}
.pageTitleTxt span{
	font-size: 14px;
	line-height: 100%;
	display: inline-block;
	background: #ED9222;
    padding: 6px 20px;
	clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
	text-shadow: none;
}


/* //pageTitle */




/*wrapper*/

#wrapper{
	position: relative;
	z-index: 2;
}
#wrapper.homeCont{
	margin: -30px auto 80px auto ;
	width: 1240px;
	
	
}
#wrapper.otherCont{
	margin: -30px auto 80px auto ;
	width: 1040px;
	
}






/*ホーム*/


.homeBana01,
.homeBana02,
.homeBana03,
.homeBana04,
.homeBana05{
	position: relative;
}
.homeBanaImg{
	position: relative;
	z-index: 1;
}
.homeBanaImg img,
.homeBanaTxt img,
.homeBanaBtn img{
	width: 100%;
	height: auto;
}

.homeBana01 .homeBanaTxt{
	display: none;
	position: absolute;
	top: 20%;
    left: -6%;
	width: 40%;
	z-index: 2;
}
.homeBana01 .homeBanaBtn{
	position: absolute;
	bottom: 18%;
    right: -2%;
	width: 300px;
	z-index: 2;
}

.homeBana02{
	margin-top: -100px;
}
.homeBana02 .homeBanaTxt{
	position: absolute;
    bottom: -0.8%;
    right: -6%;
    width: 50%;
    z-index: 2;
}
.homeBana02 .homeBanaBtn{
	position: absolute;
	bottom: 9%;
    left: -2%;
	width: 300px;
	z-index: 2;
}

.homeBana03{
	margin-top: -60px;
}
.homeBana03 .homeBanaTxt{
	position: absolute;
    bottom: -1.8%;
    left: 1%;
    width: 37%;
    z-index: 2;
}
.homeBana03 .homeBanaBtn{
	position: absolute;
	bottom: 9%;
    right: -2%;
	width: 300px;
	z-index: 2;
}

.homeBana04{
	margin-top: -60px;
}
.homeBana04 .homeBanaTxt{
    position: absolute;
    bottom: 0.8%;
    right: -2%;
    width: 42%;
    z-index: 2;
}
.homeBana04 .homeBanaBtn{
	position: absolute;
	bottom: 9%;
    left: -2%;
	width: 300px;
	z-index: 2;
}




.homeBana05{
	margin-top: -60px;
}
.homeBana05 .homeBanaTxt{
	position: absolute;
    bottom: -8.8%;
    left: 10%;
    width: 46%;
    z-index: 2;
}
.homeBana05 .homeBanaBtn{
    position: absolute;
    bottom: -5%;
    right: -2%;
    width: 300px;
    z-index: 2;
}

.homeBana {
	cursor: pointer;
}
.homeBana > a {
	display: block;
	position: relative;
	color: inherit;
	text-decoration: none;
}

.homeBana .homeBanaBtn{
	transition: all .2s ease-in-out;
}

.homeBana:hover .homeBanaBtn{
	transform: scale(1.1);
}




/*コンテンツエリア*/


.contBoxHead{
	padding:70px 0 120px;
	position:relative;
	
	text-align: center;
}
.contBoxHead.titleBox{
}
.contBoxHead::after{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#FFF3DC;

	clip-path:polygon(
		0 0,
		100% 0,
		100% calc(100% - 120px),
		0 100%
	);
	z-index:1;
}

.contBoxHead::before{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:120px;
	background:#ED9222;

	clip-path:polygon(
		0 calc(100% - 10px),
		100% 0,
		100% calc(100% - 120px),
		0 100%
	);
	z-index:2;
}
.h2Title{
	font-size: 36px;
	font-weight: bold;
	letter-spacing: .2em;
	position: relative;
	line-height: 100%;
	margin-bottom: 30px;
	
	z-index: 3;
}
.h2Title::before{
	content: "";
	position: absolute;
	width: 100px;
	height: 8px;
	bottom: -22px ;
	left: 50%;
	transform: translateX(-50%);
	background: #ED9222;
	border-radius: 5px;
}


.contBoxMain{
	padding: 120px 0 70px;
	margin-top: -110px;
	margin-bottom: 70px;
	
	text-align: center;
	
	position: relative;
}
.contBoxMain::after{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#fff;

	clip-path:polygon(
		0 120px,
		100% 0,
		100% 100%,
		0 100%
	);
	z-index:1;
}



.contBoxMain2{
	padding: 50px 0 70px;
	margin-bottom: 70px;
	
	text-align: center;
	
	position: relative;
		background:#fff;
}




/*profile*/

.profileArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 5%;
	position: relative;
	z-index: 3;
	
	margin-bottom: 50px;
	align-items: flex-start
	
}
.profileArea:nth-of-type(even){
	margin-bottom: 0;
}
.profileArea:nth-last-of-type(1){
	flex-direction:row-reverse;
	
}
.profileImg{
	width: 47%;
	position: relative;
}
.profileImg img{
	display: block;
	width: 100%;
	height: auto;
}
.profimg1 img{
	transform: scale(1.27);
	transform-origin: right bottom;
}
.profimg2 img{
	position: absolute;
	top: 30px;
	left: 0;
	transform: scale(1.2);
	transform-origin: left center;
}

.profileTxt{
	width: 47%;
	font-size: 16px;
	text-align: left;
	font-weight: bold;
	line-height: 200%;
	letter-spacing: 0;
}

.profileChart{
	width: 70%;
	margin: 50px auto 50px;
	text-align: left;
	position: relative;
	z-index: 2;
	
}

.profileChart dl{
	display: flex;
	flex-wrap: wrap;
	
	font-weight: bold;
	font-size: 18px;
	
	border-bottom: 1px solid #ccc;
}
.profileChart dt{
	width: 25%;
	border-top: 1px solid #ccc;
	padding: 25px 0;
}
.profileChart dd{
	width: 75%;
	border-top: 1px solid #ccc;
	padding: 25px 0;
	
	font-weight: normal;
}
.profileChart dd ul{
	margin-left: 1.2em;
}
.profileChart dd ul li{
	list-style-type: disc;
	margin-bottom: 6px;
}


.btnBox{
	position: relative;
	z-index: 2;
}
.btnBox img:hover{
	transform: scale(1.1);
}
.imgbtn{
	
}
.imgbtn img{
	width: 320px;
	height: auto;
	transition: all .2s ease-in-out;
}

.imgbtn2{
	margin-top: 30px
}
.imgbtn2 img{
	width: 420px;
	height: auto;
	transition: all .2s ease-in-out;

}

.imgbtn3{
	margin-top: 30px
}
.imgbtn3 img{
	width: 360px;
	height: auto;
	transition: all .2s ease-in-out;

}


/*製作所紹介*/

.factoryArea1{
	position: relative;
	padding-bottom: 70px;
}

.timeline {
	list-style: none;
	position: relative;
	z-index: 2;
	width: 70%;
	margin: 30px auto 0;
	text-align: left;
}
.timeline > li {
	margin-bottom: 60px;
}

.timeline > li {
	overflow: hidden;
	margin: 0;
	position: relative;
}
.timeline-date {
	width: 20%;
	float: left;
	margin-top: 0;
	font-size: 16px;
}
.timeline-content {
	width: 80%;
	float: left;
	border-left: 3px #FFC7A0 solid;
	padding-left: 30px;
	padding-top: 3px;
	font-size: 16px;
	padding-bottom: 20px;
}
.timeline > li:nth-last-of-type(1) .timeline-content {
	padding-bottom: 0;
}
.timeline-content:before {
	content: '';
	width: 12px;
	height: 12px;
	background: #ED9222;
	position: absolute;
	left: 19.4%;
	top: 10px;
	border-radius: 100%;
}
.timeline-content h3 {
	font-weight: bold;
}
.timeline-content p {
    line-height: 160%;
    letter-spacing: 0px;
    margin-bottom: 5px;
	position: relative;
	padding-left: 7px;
}
.timeline-content p::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 2px;
	background: #000;
	left: 0;
	top: 12px;
}

.biko{
	background: #EDEDED;
	padding: 3px 6px;
	line-height: 100%;
	margin-top: 6px;
	font-size: 14px;
}
.timeline-content p.biko::before {
	display: none;
}

.timelineLast .timeline-content:before {
	width: 16px;
	height: 16px;
	left: 19%;
	top: 17px;
}



.timelineLast .timeline-date {
	color: #ED9222;
	font-size: 24px;
	font-weight: bold;
}

.timelineLast .timeline-content p {
	color: #ED9222;
	font-size: 24px;
	font-weight: bold;
}
.timelineLast .timeline-content p::before {
	display: none;
}


.mataro-factory-01{
	position: absolute;
	bottom: -1%;
    right: -30px;
    z-index: 2;
    width: 43%;
}
.mataro-factory-01 img{
	width: 100%;
	height: auto;
}


.factoryImg{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	gap:2%;
	
	margin: 20px auto;
	width: 70%;

}
.factoryImg div{
	width: 32%;
}
.factoryImg div p{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.factoryImg div img{
	width: 100%;
	height: auto;
	border: 5px solid #000;
	display: block;
}

.factoryImg-2{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	gap:2%;
	
	margin: 5vw auto 0;
	width: 100%;

}
.factoryImg-2 div{
	width: 100%;
}

.factoryImg-2 div img{
	width: 100%;
	height: auto;
	display: block;
}




.factoryPh1{
	
}

.factoryPh1 img{
	width: 100%;
	height: auto;
}

.factoryPh2{
	margin-top: -106px;
	margin-bottom: 70px
}

.factoryPh2 img{
	width: 100%;
	height: auto;
}




.galeryArea{
	position: relative;
	z-index: 2;
	
	width: 70%;
	margin: 30px auto 0;
}

.galeryArea ul{
	display: flex;
	flex-wrap: wrap;
	gap:30px
}

.galeryArea ul li{
	width: calc(50% - 15px);
}

.galeryArea ul li img{
	width: 100%;
	height: auto;
	display: block;
	border: 5px solid #000;
}
.galeryArea ul li p{
	margin-top: 10px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}







/*製品紹介*/


.galeryArea2{
	position: relative;
	z-index: 2;
	
	width: 70%;
	margin: 30px auto 0;
}
.galeryArea2.notmanaro{
	margin: 30px auto 0;
}

.galeryArea2 ul{
	display: flex;
	flex-wrap: wrap;
	gap:30px
}

.galeryArea2 ul li{
	width: calc(50% - 15px);
}

.galeryArea2 ul li.gallery100p{
	width: 100%;
	background: #000;
}

.galeryArea2 ul li img{
	width: 100%;
	aspect-ratio: 700 / 528;
	height: auto;
	object-fit: cover;
	display: block;
	border: 5px solid #000;
}
.galeryArea2 ul li p{
	margin-top: 10px;
	font-size: 14px;
	line-height: 140%;
	font-weight: bold;
	text-align: center;
}
.galeryArea2 ul li p span{
	font-size: 10px;
}

.galeryArea2 video {
    display: block;
    width: 100%;
    height: auto;
	border: 5px solid #000;
}


.mataro-products-01{
	position: absolute;
    top: -108px;
    right: -41px;
	z-index: 2;
	width: 40%;
}
.mataro-products-01 img{
	width: 100%;
	height: auto;
}

.mataro-products-02{
    position: absolute;
    bottom: -24px;
    right: -94px;
    z-index: 2;
    width: 33%;
}
.mataro-products-02 img{
	width: 100%;
	height: auto;
}







.enqchart{
	position: relative;
	z-index: 2;
	font-size: 14px;
	text-align: left;
	
	width: 80%;
	margin: 30px auto 0;

}
.enqchart h3{
	line-height: 100%;
	padding-left: 10px;
	border-left: 5px solid #ED9222;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: bold;
}

.enqchart table{
	width: 100%;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	margin: 0 auto 30px;
}

.enqchart table td{
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 5px;
}
.enqchart table th{
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 5px;
	background: #eee;
}
.enqchart table tr td:nth-of-type(3){
	text-align: center;
	width: 6%;
	padding: 5px 0;
}
.enqchart table tr th:nth-of-type(3){
	text-align: center;
}

.enqchart table tr th:nth-of-type(1){
	width: 25%;
}
.enqchart table tr th:nth-of-type(2){
	width: 15%;
}
.enqchart table tr th:nth-of-type(3){
	width: 6%;
}
.enqchart table tr th:nth-of-type(4){
	width: 54%;
}


.mataro-enquipment-01{
	position: absolute;
    top: 0%;
    right: -28px;
    z-index: 2;
    width: 51%;
}
.mataro-enquipment-01 img{
	width: 100%;
	height: auto;
}




.galeryArea3{
	position: relative;
	z-index: 2;
	
	width: 80%;
	margin: 30px auto 0;
}

.galeryArea3 ul{
	display: flex;
	flex-wrap: wrap;
	gap:12px
}

.galeryArea3 ul li{
	width: calc(33% - 8px);
}

.galeryArea3 ul li img{
	width: 100%;
	height: auto;
	display: block;
	border: 5px solid #000;
}
.galeryArea3 ul li p{
	margin-top: 5px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.mataro-equipment-02{
    position: absolute;
    position: absolute;
    top: 329px;
    right: -81px;
    z-index: 2;
    width: 35%;
}
.mataro-equipment-02 img{
	width: 100%;
	height: auto;
}



.brandImg{
	position: relative;
	z-index: 2;

	width: 100%;
	margin: 50px auto 0;
}
.brandImg img{
	width: 100%;
	height: auto;
}


.brandTxt{
	position: relative;
	z-index: 2;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 200%;
	
	width: 80%;
	margin: 0 auto 0;
	
	color: #fff

}

.brandTxt2{
	position: relative;
	z-index: 2;
	font-size: 14px;
	text-align: center;
	
	width: 80%;
	margin: 30px auto 0;

	color: #fff
}


.contBoxMain2.brandbox{
	padding: 60px 0 0 !important;
	margin-top: -0;
	margin-bottom: 70px;
	
	text-align: center;
	
	position: relative;
	
	background: #000;
	
}




.btnArea{
	padding: 30px 0;
}
.btnArea a{
	display: inline-block;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}




.accessmap{
	position: relative;
	z-index: 2;
	padding: 0 20px 20px 20px;
}

.accessmap img{
	width: 100%;
	height: auto;
}


.accesstxt{
	position: relative;
	z-index: 2;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}



.mataro-access-01{
	position: absolute;
    top: -38px;
    right: -41px;
	z-index: 3;
	width: 40%;
	animation: secondOpenFloat 1.5s ease-in-out infinite;
}
.mataro-access-01 img{
	width: 100%;
	height: auto;
}



.contactArea {
  max-width: 70%;
  margin: 0 auto;
  padding: 30px 0;
	position: relative;
	z-index: 2;
	text-align: left;
}

.contact__title {
  margin-bottom: 40px;
  font-size: 28px;
  text-align: center;
}

.contactForm__row {
  margin-bottom: 24px;
}

.contactForm__label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.contactForm__required {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  background: #d93025;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
}

.contactForm__input,
.contactForm__select,
.contactForm__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.contactForm__textarea {
  min-height: 180px;
  resize: vertical;
}

.contactForm__input:focus,
.contactForm__select:focus,
.contactForm__textarea:focus {
  outline: none;
  border-color: #333;
}

.contactForm__btnArea {
  margin-top: 36px;
  text-align: center;
}

.contactForm__btn {
  min-width: 220px;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  background: #ED9222;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contactForm__btn:hover {
  opacity: 0.8;
}



/*inview*/

.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.inview.is-show {
  opacity: 1;
  transform: translateY(0);
}

.inview-2 {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity .8s ease .5s, transform .8s ease .5s;
}

.inview-2.is-show {
  opacity: 1;
  transform: scale(1);
}

.inview-3 {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.inview-3.is-show {
  opacity: 1;
  transform: translateX(0);
}

.inview-4 {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}

.inview-4.is-show {
  opacity: 1;
  transform: translateX(0);
}

.pc{
	display: block;
}
.sp{
	display: none;
}



@media screen and (max-width: 1240px) {
	#wrapper.homeCont{
		margin: -30px auto 30px auto ;
		width: 100%;
		padding: 0 5% 30px;


	}
	#wrapper.otherCont{
		margin: -30px auto 80px auto ;
		width: 94%;
overflow:visible
	}





	.promoTxt{
		font-size: 5.3vw;
	}
	.promoMenu{
		position: absolute;
		bottom: 70px;
		left: 50%;
		text-align: center;
		background: #000;
		border-radius: 25px;
		padding: 5px;
		width: 90%;
		transform: translateX(-50%);
	}
	.promoMenu ul{
		display: flex;
		flex-wrap: wrap;
		border: 1px solid #666;
		border-radius: 20px;
		overflow: hidden;
		justify-content: space-between

	}
	.promoMenu ul li{
		width: 33.333%;
		border-right: 1px solid #666;
		display: flex;
		justify-content: center;
	}
	.promoMenu ul li:nth-last-of-type(6){
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(5){
		border-right: 1px solid #666;
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(4){
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(3){
		border-bottom: none;
		border-right: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(2){
	}
	.promoMenu ul li:nth-last-of-type(1){
		background: #262626;
		border-right: none;
	}
	.promoMenu ul li a{
		width: 100%;
		transition: all ease-in-out .2s;
		text-decoration: none;
		text-align: left;
		padding-left: 14px;
	}
	.promoMenu ul li a > span{
		font-size: 14px;
		padding: 8px 8px 12px 27px;
		display: inline-block;
		text-decoration: none;
		color: #fff;
		text-align: left;

	}

	.promoMenu ul li:nth-of-type(1) a > span{
		background: url("../../images/promomenu_1.png") no-repeat left 0 center;
		background-size: 22px;
		padding: 8px 8px 12px 27px;
	}
	.promoMenu ul li:nth-of-type(2) a > span{
		background: url("../../images/promomenu_2.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(3) a > span{

		background: url("../../images/promomenu_3.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(4) a > span{
		background: url("../../images/promomenu_4.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(5) a > span{
		background: url("../../images/promomenu_5.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(6) a > span{
		background: url("../../images/promomenu_6.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li a > span span{
		font-size: 8px;
		display: block;
		line-height: 100%;
		margin-top: 1px;
		color: #999;

	}
	.promoMenu ul li a > span span.pmsName{
		font-size: 11px;
		display: inline-block;
		line-height: 100%;
		margin-top: 3px;
		color: #fff;
		padding-left: 2px;


	}
	.promoMenu ul li a:hover{
		background: #333;
	}


	/*ホーム*/


	.homeBana01,
	.homeBana02,
	.homeBana03,
	.homeBana04,
	.homeBana05{
		position: relative;
	}
	.homeBanaImg{
		position: relative;
		z-index: 1;
	}
	.homeBanaImg img,
	.homeBanaTxt img,
	.homeBanaBtn img{
		width: 100%;
		height: auto;
	}

	.homeBana01 .homeBanaTxt{
		position: absolute;
		top: 20%;
		left: -7%;
		width: 44%;
		z-index: 2;
	}
	.homeBana01 .homeBanaBtn{
		position: absolute;
		bottom: 11%;
		right: -4%;
		width: 29%;
		z-index: 2;
	}

	.homeBana02{
		margin-top: -5vw;
	}
	.homeBana02 .homeBanaTxt{
		position: absolute;
		bottom: -0.8%;
		right: -6%;
		width: 57%;
		z-index: 2;
	}
	.homeBana02 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		left: -4%;
		width: 29%;
		z-index: 2;
	}

	.homeBana03{
		margin-top: -2vw;
	}
	.homeBana03 .homeBanaTxt{
		position: absolute;
		bottom: -5.8%;
		 left: -4%;
        width: 29%;
		z-index: 2;
	}
	.homeBana03 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		right: -4%;
		width: 39%;
		z-index: 2;
	}

	.homeBana04{
		margin-top: -2vw;
	}
	.homeBana04 .homeBanaTxt{
		position: absolute;
		bottom: 0.8%;
		right: -2%;
		width: 54%;
		z-index: 2;
	}
	.homeBana04 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		left: -4%;
		width: 29%;
		z-index: 2;
	}

	.homeBana05{
		margin-top: -2vw;
	}
	.homeBana05 .homeBanaTxt{
		position: absolute;
		bottom: -8.8%;
		left: 10%;
		width: 46%;
		z-index: 2;
	}
	.homeBana05 .homeBanaBtn{
		position: absolute;
		bottom: -9%;
		right: -4%;
		width: 29%;
		z-index: 2;
	}

	.factoryPh1{

	}

	.factoryPh1 img{
		width: 100%;
		height: auto;
	}

	.factoryPh2{
		margin-top: -8vw;
		margin-bottom: 10vw
	}

	.factoryPh2 img{
		width: 100%;
		height: auto;
	}


	.mataro-factory-01{
		position: absolute;
		bottom: 7vw;
		right: -24px;
		z-index: 2;
		width: 43%;
	}
	.mataro-factory-01 img{
		width: 100%;
		height: auto;
	}

	
	
}

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

	
	
.pc{
	display: none;
}
.sp{
	display: block;
}

#opening .homeOpen img{
	max-width:80vw;
	max-height:80vh;
	width:auto;
	height:auto;
	display:block;
}


#opening .secondOpen img{
	max-width:60vw;
	max-height:60vw;
	width:auto;
	height:auto;
	display:block;
}

	
	body {
		background: transparent;
	}

	body:before {
		background-size: 10% auto;
	}

	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;

		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;

		z-index: 3;
	}

	header #logo{
		width: 26%;
		padding: 10px 0 0 10px;
	}
	header #logo img{
		width: 100%;
		height: auto;
	}

	#headMenu{
		display: flex;
		flex-wrap: wrap;
		z-index: 13;
		position: relative;
	}
	.btnContact{
		background: #ED9222;
	}

	.btnContact a{
		background: #ED9222 url("../../images/mail_icon.png") no-repeat left 20px center;
		background-size: 20px 15px;
		padding: 9px 16px 9px 46px;
		display: block;
		color: #fff;
		font-size: 12px;
		text-decoration: none;
	}


	#panel-btn{
		width: 56px;
		height: 45px;
		padding: 10px 15px;
		background: #000;
		text-align: center;
		cursor: pointer;
	}
	#panel-btn-icon{
		display: inline-block;
		width: 22px;
		height: 30px;
		background: url("../../images/menu_icon.png") no-repeat 0 0;
		background-size: 100%;

	}




	#panel{
		display:none;
		position:fixed;
		top: 0;
		right: 0;
		z-index: 11;

		background: #74654F;
		height: 100%;
		padding: 80px 30px 20px;
		min-width: 70%;
	}
	#panel li {
		color: #fff;
		text-decoration: none;
		padding: 15px 0;
		border-top: 1px solid #fff;
	}
	#panel li a{
		color: #fff;
		font-size: 16px;
		text-decoration: none;
		font-weight: 500;
		padding-left: 18px;
		background: url("../../images/menu_arrow.png") no-repeat 0 center;
		background-size: 12px auto;
	}
	#panel li a{
		font-size: 14px;
	}
#panel li a span{
	font-size: 12px;
}
	#overlay{
		position:fixed;
		inset:0;
		background:rgba(0,0,0,.5);
		display:none;
		transition:.3s;
		z-index: 10;
	}








	footer{
		background: #000;
		padding: 0 0 0;
		color: #fff;
		position: relative;
	}

	footer section{

		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;


	}
	footer section .footTxt{
		width: 100%;
		padding: 30px 10%
	}
	.footTxt1{
		font-size: 12px;
		font-weight: bold;
		margin-bottom: 5px;
	}
	.footTxt2{
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 15px;
	}
	.footTxt3{
		font-size: 10px;
		font-weight: bold;
	}


	footer section .footCopy{
		width: 100%;
		padding: 140px 10% 30px 10%;
		position: relative;
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	.footTxt4{
		font-size: 10px;
		font-weight: bold;
		text-align: center;
		position: relative;
		z-index: 1;
	}
	footer section .footCopy::after{
		content: "";
		background: #ED9222;
		position: absolute;
		right: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		clip-path: polygon(0 20px,100% 0,100% 100%,0 100%);
	}
	.pageTop{
		position: absolute;
		width: 80px;
		height: 80px;
		right: 50%;
		top: 40px;
		z-index: 2;
		transform: translateX(50%);
	}
	.pageTop img{
		width: 100%;
		height: auto;
	}





	/*promotion*/



	#promotion{
		width: 100%;
		height: 170vw;
		background: #000;
		position: relative;
		z-index: 1;
	}

	.promoImg{
		width: 100%;
		height: 100%;
		opacity: .7;
	}
	.promoImg img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center bottom;
	}


	.promoTxt{
		position: absolute;
		font-size: 5.3vw;
		font-weight: 700;
		top: 37%;
		left:0;
		text-align: center;
		transform: translateY(-50%);
		width: 100%;

		color: #fff;
		line-height: 140%;
	}
	.promoTxtS{
		padding-top: 30px;
		font-size: 14px;
		line-height: 180%;
		letter-spacing: .5em;
		font-weight: normal;
	}

	.promoMenu{
		position: absolute;
		bottom: 70px;
		left: 50%;
		text-align: center;
		background: #000;
		border-radius: 25px;
		padding: 5px;
		width: 90%;
		transform: translateX(-50%);
	}
	.promoMenu ul{
		display: flex;
		flex-wrap: wrap;
		border: 1px solid #666;
		border-radius: 20px;
		overflow: hidden;
		justify-content: space-between

	}
	.promoMenu ul li{
		width: 50%;
		border-right: 1px solid #666;
		display: flex;
		justify-content: center;
	}
	.promoMenu ul li:nth-last-of-type(6){
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(5){
		border-right: none;
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(4){
		border-bottom: 1px solid #666;
	}
	.promoMenu ul li:nth-last-of-type(3){
		border-bottom: 1px solid #666;
		border-right: none;
	}
	.promoMenu ul li:nth-last-of-type(2){
	}
	.promoMenu ul li:nth-last-of-type(1){
		background: #262626;
		border-right: none;
	}
	.promoMenu ul li a{
		width: 100%;
		transition: all ease-in-out .2s;
		text-decoration: none;
		text-align: left;
		padding-left: 14px;
	}
	.promoMenu ul li a > span{
		font-size: 12px;
		padding: 4px 8px 8px 27px;
		display: inline-block;
		text-decoration: none;
		color: #fff;
		text-align: left;

	}

	.promoMenu ul li:nth-of-type(1) a > span{
		background: url("../../images/promomenu_1.png") no-repeat left 0 center;
		background-size: 22px;
		padding: 4px 8px 8px 27px;
	}
	.promoMenu ul li:nth-of-type(2) a > span{
		background: url("../../images/promomenu_2.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(3) a > span{

		background: url("../../images/promomenu_3.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(4) a > span{
		background: url("../../images/promomenu_4.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(5) a > span{
		background: url("../../images/promomenu_5.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li:nth-of-type(6) a > span{
		background: url("../../images/promomenu_6.png") no-repeat left 0 center;
		background-size: 22px;
	}
	.promoMenu ul li a > span span{
		font-size: 8px;
		display: block;
		line-height: 100%;
		margin-top: 1px;
		color: #999;

	}
	.promoMenu ul li a > span span.pmsName{
		font-size: 8px;
		display: inline-block;
		line-height: 100%;
		margin-top: 3px;
		color: #fff;
		padding-left: 2px;


	}
	.promoMenu ul li a:hover{
		background: #333;
	}



	/* //promo */



	/*pageTitle*/



	#pageTitle{
		width: 100%;
		height: 250px;
		background: #000;
		position: relative;
		z-index: 1;
	}

	.pageTitleImg{
		width: 100%;
		height: 100%;
		opacity: .8;
	}
	.pageTitleImg img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center bottom;
	}



	.pageTitleTxt span.char{
		display:inline-block;
		opacity:0;
		transform:translateY(20px);
	}

	.pageTitleTxt span.char.show{
		opacity:1;
		transform:translateY(0);
		transition:.5s;
	}





	.pageTitleTxt{
		position: absolute;
		font-size: 32px;
		font-weight: 700;
		top: 50%;
		left:0;
		text-align: center;
		transform: translateY(-50%);
		width: 100%;

		color: #fff;
		line-height: 100%;
		text-shadow: 2px 2px 1px rgba(0,0,0,.5);
	}
	.pageTitleTxt span{
		font-size: 14px;
		line-height: 100%;
		display: inline-block;
		background: #ED9222;
		padding: 6px 20px;
		clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
		text-shadow: none;
	}


	/* //pageTitle */



	/*wrapper*/

	#wrapper{
		position: relative;
		z-index: 2;
		overflow: hidden;
	}
	#wrapper.homeCont{
		margin: -30px auto 30px auto ;
		width: 100%;
		padding: 0 5% 30px;


	}

	#wrapper.otherCont{
		margin: -30px auto 30px auto ;
		width: 100%;
		padding: 0 5% 0;
	}

	
	
	/*ホーム*/


	.homeBana01,
	.homeBana02,
	.homeBana03,
	.homeBana04,
	.homeBana05{
		position: relative;
	}
	.homeBanaImg{
		position: relative;
		z-index: 1;
	}
	.homeBanaImg img,
	.homeBanaTxt img,
	.homeBanaBtn img{
		width: 100%;
		height: auto;
	}

	.homeBana01 .homeBanaTxt{
		position: absolute;
		top: 20%;
		left: -7%;
		width: 44%;
		z-index: 2;
	}
	.homeBana01 .homeBanaBtn{
		position: absolute;
		bottom: 11%;
		right: -4%;
		width: 39%;
		z-index: 2;
	}

	.homeBana02{
		margin-top: -5vw;
	}
	.homeBana02 .homeBanaTxt{
		position: absolute;
		bottom: -0.8%;
		right: -6%;
		width: 51%;
		z-index: 2;
	}
	.homeBana02 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		left: -4%;
		width: 39%;
		z-index: 2;
	}

	.homeBana03{
		margin-top: -2vw;
	}
	.homeBana03 .homeBanaTxt{
		position: absolute;
		bottom: -1.8%;
		 left: -4%;
        width: 42%;
		z-index: 2;
	}
	.homeBana03 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		right: -4%;
		width: 39%;
		z-index: 2;
	}

	.homeBana04{
		margin-top: -2vw;
	}
	.homeBana04 .homeBanaTxt{
		position: absolute;
		bottom: 0.8%;
		right: -2%;
		width: 47%;
		z-index: 2;
	}
	.homeBana04 .homeBanaBtn{
		position: absolute;
		bottom: 2%;
		left: -4%;
		width: 39%;
		z-index: 2;
	}

	.homeBana05{
		margin-top: -2vw;
	}
	.homeBana05 .homeBanaTxt{
		position: absolute;
		bottom: -8.8%;
		left: 10%;
		width: 46%;
		z-index: 2;
	}
	.homeBana05 .homeBanaBtn{
		position: absolute;
		bottom: -9%;
		right: -4%;
		width: 39%;
		z-index: 2;
	}


	/*コンテンツエリア*/


	.contBoxHead{
		padding:50px 0 40px;
		position:relative;

		text-align: center;
	}
	.contBoxHead.titleBox{
		padding:30px 0 40px;
	}
	.contBoxHead::after{
		content:"";
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background:#FFF3DC;

		clip-path:polygon(
			0 0,
			100% 0,
			100% calc(100% - 50px),
			0 100%
		);
		z-index:1;
	}

	.contBoxHead::before{
		content:"";
		position:absolute;
		left:0;
		bottom:0;
		width:100%;
		height:50px;
		background:#ED9222;

		clip-path:polygon(
			0 calc(100% - 10px),
			100% 0,
			100% calc(100% - 50px),
			0 100%
		);
		z-index:2;
	}
	.h2Title{
		font-size: 24px;
		font-weight: bold;
		letter-spacing: .2em;
		position: relative;
		line-height: 100%;
		margin-bottom: 30px;

		z-index: 3;
	}
	.h2Title::before{
		content: "";
		position: absolute;
		width: 70px;
		height: 6px;
		bottom: -15px ;
		left: 50%;
		transform: translateX(-50%);
		background: #ED9222;
		border-radius: 5px;
	}


	.contBoxMain{
		padding: 40px 0 40px;
		margin-top: -40px;
		margin-bottom: 50px;

		text-align: center;

		position: relative;
	}
	.contBoxMain::after{
		content:"";
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background:#fff;

		clip-path:polygon(
			0 50px,
			100% 0,
			100% 100%,
			0 100%
		);
		z-index:1;
	}
	.contBoxMain2{
		padding: 40px 0 40px;
		margin-bottom: 50px;

		text-align: center;

		position: relative;
	}




	/*profile*/

	.profileArea{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 5%;
		position: relative;
		z-index: 3;

		margin-bottom: 30px;
		align-items: flex-start

	}
	.profileArea:nth-of-type(even){
		margin-bottom: 0;
	}
	.profileArea:nth-last-of-type(1){
		flex-direction:row-reverse;

	}
	.profileImg{
		width: 100%;
		position: relative;
		margin-bottom: 30px;
	}
	.profileImg img{
		display: block;
		width: 100%;
		height: auto;
	}
	.profimg1 {
		margin-top: -50px;
	}
	.profimg1 img{
		transform: scale(1) translateX(-8vw);
		transform-origin: right bottom;
	}
	.profimg2 img{
		position: static;
		top: 0;
		left: 0;
		transform: scale(1);
		transform-origin: left center;
	}

	.profileTxt{
		width: 100%;
		font-size: 14px;
		text-align: left;
		font-weight: bold;
		line-height: 180%;
		letter-spacing: 0;
	}

	.profileChart{
		width: 90%;
		margin: 30px auto 30px;
		text-align: left;
		position: relative;
		z-index: 2;

	}

	.profileChart dl{
		display: flex;
		flex-wrap: wrap;

		font-weight: bold;
		font-size: 14px;

		border-bottom: 1px solid #ccc;
	}
	.profileChart dt{
		width: 100%;
		border-top: 1px solid #ccc;
		padding: 15px 0 3px;
	}
	.profileChart dd{
		width: 100%;
		border-top: none;
		padding: 0 0 15px;

		font-weight: normal;
	}
	.profileChart dd ul{
		margin-left: 1.2em;
	}
	.profileChart dd ul li{
		list-style-type: disc;
		margin-bottom: 0;
	}


	.btnBox{
		position: relative;
		z-index: 2;
	}
	.btnBox img:hover{
		transform: scale(1.1);
	}
	.imgbtn{

	}
	.imgbtn img{
		width: 70%;
		height: auto;
		transition: all .2s ease-in-out;
	}
	.imgbtn2{

		margin-top: 20px
	}
	.imgbtn2 img{
		width: 70%;
		height: auto;
		transition: all .2s ease-in-out;

	}

	.imgbtn3{

		margin-top: 20px
	}
	.imgbtn3 img{
		width: 75%;
		height: auto;
		transition: all .2s ease-in-out;

	}



	/*製作所紹介*/

	.factoryArea1{
		position: relative;
		padding-bottom: 0;
		margin-bottom: 4vw;
	}

	.timeline {
		list-style: none;
		position: relative;
		z-index: 2;
		width: 90%;
		margin:30px auto 0;
		text-align: left;
		padding-bottom: 78vw;
	}
	.timeline > li {
		margin-bottom: 60px;
	}

	.timeline > li {
		overflow: hidden;
		margin: 0;
		position: relative;
	}
	.timeline-date {
		width: 27%;
		float: left;
		margin-top: 0;
		font-size: 13px;
	}
	.timeline-content {
		width: 73%;
		float: left;
		border-left: 3px #FFC7A0 solid;
		padding-left: 30px;
		padding-top: 3px;
		font-size: 13px;
		padding-bottom: 20px;
	}
	
	.timeline > li:nth-last-of-type(1) .timeline-content {
		padding-bottom: 0;
	}
	.timeline-content:before {
		content: '';
		width: 12px;
		height: 12px;
		background: #ED9222;
		position: absolute;
		left: 25.5%;
		top: 10px;
		border-radius: 100%;
	}
	.timeline-content h3 {
		font-weight: bold;
		line-height: 140%;
		letter-spacing: 0;
	}
	.timeline-content p {
		line-height: 140%;
		letter-spacing: 0px;
		margin-bottom: 5px;
	}
	.timeline-content p::before {
		content: "";
		position: absolute;
		width: 5px;
		height: 2px;
		background: #000;
		left: 0;
		top: 9px;
	}

	.biko{
		background: #EDEDED;
		padding: 3px 6px;
		line-height: 100%;
		margin-top: 6px;
		font-size: 12px;
	}

	.timelineLast .timeline-content:before {
		width: 16px;
		height: 16px;
        left: 25%;
        top: 9px;
	}



	.timelineLast .timeline-date {
		color: #ED9222;
		font-size: 18px;
		font-weight: bold;
	}

	.timelineLast .timeline-content p {
		color: #ED9222;
		font-size: 18px;
		font-weight: bold;
	}


	.mataro-factory-01{
		position: absolute;
		        bottom: 0;
        right: 3vw;
        z-index: 2;
        width:80%;
	}
	.mataro-factory-01 img{
		width: 100%;
		height: auto;
	}


	.factoryImg{
		display: flex;
		flex-wrap: wrap;
		position: relative;
		z-index: 2;
		gap:2%;

		margin: 0 auto;
		width: 90%;

	}
	.factoryImg div{
		width: 48%;
	}
	.factoryImg div p{
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		line-height: 130%;
	}
	.factoryImg div img{
		width: 100%;
		height: auto;
		border: 3px solid #000;
		display: block;
	}
	.factoryImg-2{
		display: flex;
		flex-wrap: wrap;
		position: relative;
		z-index: 2;
		gap:3%;

		margin: 32vw auto 0;
		width: 100%;

	}
	.factoryImg-2 div{
		width: 100%;
	}

	.factoryImg-2 div img{
		width: 100%;
		height: auto;
		display: block;
	}



	.factoryPh1{

	}

	.factoryPh1 img{
		width: 100%;
		height: auto;
	}

	.factoryPh2{
		margin-top: -8vw;
		margin-bottom: 10vw
	}

	.factoryPh2 img{
		width: 100%;
		height: auto;
	}



	.galeryArea{
		position: relative;
		z-index: 2;

		width: 70%;
		margin: 30px auto 0;
	}

	.galeryArea ul{
		display: flex;
		flex-wrap: wrap;
		gap:10px 10px
	}

	.galeryArea ul li{
		width: 100%;
	}

	.galeryArea ul li img{
		width: 100%;
		height: auto;
		display: block;
		border: 3px solid #000;
	}
	.galeryArea ul li p{
		margin-top: 5px;
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		line-height: 140%;
	}



	/*製品紹介*/


	.galeryArea2{
		position: relative;
		z-index: 2;

		width: 70%;
		margin: 100px auto 0;
	}
	.galeryArea2.notmanaro{
		margin: 30px auto 0;
	}
	.galeryArea2 ul{
		display: flex;
		flex-wrap: wrap;
		gap:15px
	}

	.galeryArea2 ul li{
		width: 100%;
	}

	.galeryArea2 ul li img{
		width: 100%;
		height: auto;
		display: block;
		border: 5px solid #000;
	}
	.galeryArea2 ul li p{
		margin-top: 5px;
		font-size: 12px;
		line-height: 140%;
		font-weight: bold;
		text-align: center;
	}
	.galeryArea2 ul li p span{
		font-size: 10px;
	}



	.mataro-products-01{
		position: absolute;
        top: 1vw;
        right: -11vw;
        z-index: 2;
        width: 92%;
	}
	.mataro-products-01 img{
		width: 100%;
		height: auto;
	}


	.mataro-products-02{
		position: absolute;
        bottom: -11vw;
        right: -13vw;
        z-index: 2;
        width: 46%;
    
	}
	.mataro-products-02 img{
		width: 100%;
		height: auto;
	}







	.enqchart{
		position: relative;
		z-index: 2;
		font-size: 10px;
		text-align: left;

		width: 94%;

		margin: 59vw auto 0;
	}
	.enqchart h3{
		line-height: 100%;
		padding-left: 10px;
		border-left: 5px solid #ED9222;
		margin-bottom: 15px;
		font-size: 14px;
		font-weight: bold;
		
		position: relative;
	}

	.enqchart table{
		width: 100%;
		border-top: 1px solid #ccc;
		border-left: 1px solid #ccc;
	}

	.enqchart table td{
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 1px 3px 3px;
		line-height: 120%;
	}
	.enqchart table th{
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 1px 3px;
		background: #eee;
		line-height: 120%;
	}
	.enqchart table tr td:nth-of-type(3){
		text-align: center;
		padding: 5px 0;
	}
	.enqchart table tr th:nth-of-type(3){
		text-align: center;
	}


	.enqchart table tr th:nth-of-type(1){
		width: 27%;
	}
	.enqchart table tr th:nth-of-type(2){
		width: 20%;
	}
	.enqchart table tr th:nth-of-type(3){
		width: 8%;
	}
	.enqchart table tr th:nth-of-type(4){
		width: 45%;
	}


	/*.tableScroll{
		width:100%;
		overflow-x:auto;
		-webkit-overflow-scrolling:touch;
	}
	.tableScroll{
		width:100%;
		overflow-x:auto;
		-webkit-overflow-scrolling:touch;
		scrollbar-width:none;
		-ms-overflow-style:none;
		
		position: relative;
	}*/
	
	
	/*
	.enqchart h3::after{
		content: "SCROLL →";
		display: block;
		text-align: right;
		font-size: 8px;
		margin-bottom: 5px;
		line-height: 100%;
		position: absolute;
		right: 0;
		bottom: -15px;
		opacity: .6;
		letter-spacing: 0;
	}*/
	


	.galeryArea3{
		position: relative;
		z-index: 2;

		width: 70%;
		margin: 50px auto 0;
	}

	.galeryArea3 ul{
		display: flex;
		flex-wrap: wrap;
		gap:12px
	}

	.galeryArea3 ul li{
		width: 100%;
	}

	.galeryArea3 ul li img{
		width: 100%;
		height: auto;
		display: block;
		border: 5px solid #000;
	}
	.galeryArea3 ul li p{
		margin-top: 5px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
	}

	
	.tableScroll::-webkit-scrollbar{
		display:none;
	}
	.tableScroll table{
		width:100%;
		min-width:100%; /* テーブル幅 */
		border-collapse:collapse;
	}

	.tableScroll table td{
		white-space:normal;
	}
	.tableScroll table th{
		white-space:nowrap;
	}

	.mataro-enquipment-01{
		position: absolute;
		top: -4px;
		right: -28px;
		z-index: 2;
		width: 102%;
	}
	.mataro-enquipment-01 img{
		width: 100%;
		height: auto;
	}

	.mataro-equipment-02{
		position: absolute;
        top: -1vw;
        right: -13vw;
        z-index: 2;
        width: 62%;
	}
	.mataro-equipment-02 img{
		width: 100%;
		height: auto;
	}



	.brandImg{
		position: relative;
		z-index: 2;

		width: 100%;
		margin: 30px auto 0;
	}
	.brandImg img{
		width: 100%;
		height: auto;
	}


	.brandTxt{
		position: relative;
		z-index: 2;
		font-size: 14px;
		font-weight: bold;
		text-align: center;

		width: 100%;
		margin: 0 auto 0;

	}

	.brandTxt2{
		position: relative;
		z-index: 2;
		font-size: 11px;
		text-align: center;

		width: 100%;
		margin: 20px auto 0;

	}
	.contBoxMain2.brandbox{
		padding: 60px 0 0;
		margin-top: -20px;
		margin-bottom: 50px;

		text-align: center;

		position: relative;
	}




	.btnArea{
		padding: 30px 0;
	}
	.btnArea a{
		display: inline-block;
		color: #fff;
		font-weight: bold;
		text-decoration: none;
	}



	.accessmap{
		position: relative;
		z-index: 2;
		padding: 20px 10px 20px 10px;
	}

	.accessmap img{
		width: 100%;
		height: auto;
	}


	.accesstxt{
		position: relative;
		z-index: 2;
		text-align: center;
		font-weight: bold;
		font-size: 16px;
	}


.mataro-access-01{
	position: absolute;
    top: -38px;
    right: -41px;
	z-index: 3;
	width: 61%;
	animation: secondOpenFloat 1.5s ease-in-out infinite;
}
.mataro-access-01 img{
	width: 100%;
	height: auto;
}

	.contactArea {
	  max-width: 94%;
	  margin: 0 auto;
	  padding: 20px 0;
		position: relative;
		z-index: 2;
		text-align: left;
	}

	.contactForm__row {
	  margin-bottom: 15px;
	}

	.contactForm__label {
	  display: block;
	  margin-bottom: 4px;
	  font-size: 14px;
	  font-weight: 700;
	}

	.contactForm__required {
	  display: inline-block;
	  margin-left: 3px;
	  padding: 4px 6px;
	  background: #d93025;
	  color: #fff;
	  font-size: 10px;
	  border-radius: 3px;
		line-height: 100%
	}

	.contactForm__input,
	.contactForm__select,
	.contactForm__textarea {
	  width: 100%;
	  padding: 6px 7px;
	  border: 1px solid #ccc;
	  border-radius: 6px;
	  background: #fff;
	  font-size: 13px;
	  box-sizing: border-box;
	}

	.contactForm__textarea {
	  min-height: 180px;
	  resize: vertical;
	}

	.contactForm__input:focus,
	.contactForm__select:focus,
	.contactForm__textarea:focus {
	  outline: none;
	  border-color: #333;
	}

	.contactForm__btnArea {
	  margin-top: 36px;
	  text-align: center;
	}

	.contactForm__btn {
	  min-width: 220px;
	  padding: 15px 30px;
	  border: none;
	  border-radius: 999px;
	  background: #ED9222;
	  color: #fff;
	  font-size: 14px;
	  font-weight: 700;
	  cursor: pointer;
	}

	.contactForm__btn:hover {
	  opacity: 0.8;
	}


	
}
