@charset "utf-8";
/*共通 設定
---------------------------------------------------------*/
@font-face {
  font-family: 'MyFont';
  src: url('A-OTF-GothicMB101Pro-Bold.otf') format('opentype');
}
:root {
  --color-main: #C0151E;
  --color-sub: #feff00;
  --enTxt: "helvetica-neue-lt-pro", sans-serif;
  --enBtnTxt: "alternate-gothic-atf", sans-serif;
  --font_aotf: "MyFont", sans-serif;
}
.jaAotf{
  font-family: var(--font_aotf);
  font-weight: 700;
}
.enTxt{
    font-family: var(--enTxt);
    font-weight: 800;
    line-height: .8;
}
.enBtnTxt{
    font-family: var(--enBtnTxt);
    font-weight: 400;
    line-height: 1;
}
.txt{
    line-height: 2;
}
.clrMain{
  color: var(--color-main)!important;
}

.clr-wh{
	color: #fff!important;
}


/*header
---------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: .2s;
  z-index: 9999;
  background-color: #fff;
}
#header.scrollClass {
  box-shadow: 0 .2rem 0.5rem rgba(0, 0, 0, 0.2);
}
.header_wrap {
  padding: 1rem 0;
}
.header_logo{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: .05em;
}
.header_logo img {
  max-height: 5.1rem;
}
.header_nav{
  font-size: 1.4rem;
  gap: 3.5rem;
}
.header_nav ul{
  gap: 3rem;
}
.header_nav li {
  text-align: left;
  position: relative;
}
.header_nav li a {
  position: relative;
}
.header_nav li a::before{
  content: "";
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 100%;
  height: .1rem;
  background: var(--color-main);
  transform-origin: right top;
  transform: scale(0,1);
  transition: transform .4s cubic-bezier(.165,.84,.44,1);
}
.header_nav li a:hover{
  color: var(--color-main);
}
.header_nav li a:hover::before{
  transform-origin: left top;
  transform: scale(1,1);
}
.header_btn a{
  background-color: #000;
  color: #fff;
  width: 14rem;
  display: inline-block;
  border-radius: 3rem;
  padding: 0.7rem;
}
.header_btn a:hover{
  background-color: var(--color-main);
}
#header.scrollClass a {
  border-color: var(--color-main);
}



/*footer
---------------------------------------------------------*/
.footer{
  padding: 8rem 0 9rem;
  border-top: 1px solid #ccc;
}
.c_nav_row {
  gap:12.6rem;
  align-items: flex-start;
}
.c_company{
  text-align: left;
  font-weight: 500;
  gap: 3.2rem;
  align-items: center;
}
.c_company .logo{
	width: 10rem;
}
.c_company .name{
  padding-bottom: 0.8rem;
}
.c_company .address{
  font-size: 1.4rem;
  line-height: 1.6;
}
.c_nav ul li + li{
  margin-top: 2.7rem;
}
.c_nav ul li a{
  display: flex;
  align-items: center;
  text-align: left;
}
.c_nav ul li a::after{
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  background: url("../img/arrow_black.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
}
.c_nav ul li a .enTxt{
  font-size: 2.8rem;
  width: 21rem;
}
.c_nav ul li a .jaTxt{
  width: 11.7rem;
}
.footer a:hover{
  color: var(--color-main);
}
.c_nav ul li a:hover::after{
  background-image: url("../img/arrow_main.svg")
}

/*共通 パーツ
---------------------------------------------------------*/
/* ボタン */
.c_btn a {
  padding: 1.6rem 3.8rem 1.6rem 4.7rem;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0.2rem solid #000;
  margin-top: 4rem;
  border-radius: 5rem;
  min-width: 17rem;
}
.c_btn a::after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  aspect-ratio: 1;
  background: url("../img/arrow_black.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
}
.c_btn.enBtnTxt a{
  padding: 1.3rem 2.8rem 1.3rem 3.8rem;
  border-width: .1rem;
}
.c_btn._white a{
  color: #fff;
  border-color: #fff;
}
.c_btn._white a::after{
  background-image: url("../img/arrow_white.svg");
}
.c_btn a:hover{
  color: #fff;
  background-color: #000;
}
.c_btn a:hover::after{
  background-image: url("../img/arrow_white.svg");
}
.c_btn._white a:hover{
  color: var(--color-sub);
  border-color: var(--color-sub);
      background-color: rgba(0,0,0,.6);
}
.c_btn._white a:hover::after{
  background-image: url("../img/arrow_sub.svg");
}

/* タイトル */
.c_enJaTtl {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
.c_enJaTtl span {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

/*top
---------------------------------------------------------*/
.p_top_mv{
  height: 100dvh;
  min-height: 50rem;
  position: relative;
  overflow: visible;
  overflow-x: clip;
}
.p_top_mv::before{
  content: "";
  width: 100vw;
  height: 110dvh;
  background-color: #000;
  position: absolute;
  inset: 0;
  top: -10dvh;
  z-index: 10000;
  clip-path: inset(0);
}
.p_top_mv__box h1{
  color: #fff;
  font-size: 5rem;
  text-shadow: 0 0 5rem rgba(12, 25, 45, 0.70);
  letter-spacing: .05em;
  width: fit-content;
  margin: auto;
  position: absolute;
  inset: 0;
  top: -10rem;
  z-index: 100001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.p_top_mv.active.normal .p_top_mv__box h1{
  z-index: 3;
}
.p_top_mv__box h1 span{
  display: block;
  width: fit-content;
  text-align: left;
  padding: 0 2rem;
  position: relative;
  clip-path: inset(0 100% 0 0);
}
.p_top_mv__box h1 span + span{
  margin-top: 1.8rem;
}
.p_top_mv__box h1 span::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
}
.p_top_mv__markImg{
  position: absolute;
  inset: 0;
  left: -8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: hard-light;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}
.p_top_mv__markImg img{
  max-width: none;
  width: auto;
  height: 100%;
}
.p_top_mv__bgSlide{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.p_top_mv__bgSlide li{
  position: absolute;
  inset: 0;
}
.p_top_mv__bgSlide li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_top_mv__bgSlide li{
	overflow: hidden;
	background-color: #000;
  transform: scale(1.2);
  transition: transform 5s, opacity 3s cubic-bezier(.33,1,.68,1);
  opacity: 0;
  z-index: 0;
}
.p_top_mv__bgSlide li.visible{
  transform: scale(1);
	opacity: 1;
  z-index: 2;
}

/* アニメーション */
.p_top_mv.active h1 span {
  animation: clip_left 1s both cubic-bezier(.77,0,.175,1);
  animation-delay: var(--delay);
}
.p_top_mv.active h1 span::before {
  animation-name: clip_left, clip_left_none;
  animation-duration: 1s, 1s;
  animation-delay: var(--delay), var(--delay02);
  animation-fill-mode: both, both;
  animation-timing-function: cubic-bezier(.77,0,.175,1);
}
.p_top_mv.active h1 span:nth-of-type(1),
.p_top_mv.active h1 span:nth-of-type(1) {
  --delay: 0.2s;
}
.p_top_mv.active h1 span:nth-of-type(2),
.p_top_mv.active h1 span:nth-of-type(2) {
  --delay: 0.4s;
}
.p_top_mv.active h1 span:nth-of-type(3),
.p_top_mv.active h1 span:nth-of-type(3) {
  --delay: 0.6s;
}
.p_top_mv.active::before {
  animation: clip_left_none 1s both cubic-bezier(.77,0,.175,1);
  animation-delay: var(--delay02);
}
.p_top_mv.active .p_top_mv__markImg{
  animation: clip_left 2s both cubic-bezier(.77,0,.175,1);
  animation-delay: var(--delay02);
}
.p_top_mv{
  --delay02: 1.5s;
}

@keyframes clip_left {
  0%{
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes clip_left_none {
  0%{
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

.p_top_future .c_enJaTtl span{
  margin-bottom: 1rem;
}
.p_top_future .txt{
  line-height: 2.3;
}
.p_top_future .txt p + p{
  margin-top: 3.4rem;
}
.p_top_business{
  background: url("../img/top/business_bg.jpg") center no-repeat;
  background-size: cover;
  color: #fff;
}
.p_top_business h3{
  font-size: 2rem;
  margin-bottom: 3.6rem;
}

.p_top_business__row{
  grid-template-columns: repeat(3, 1fr);
  gap: 4.4rem;
  margin-top: 3.8rem;
  max-width: 83.8rem;
  margin-inline: auto;
}
.p_top_business__link{
  border: .1rem solid #fff;
  max-width: 25rem;
  height: 25rem;
  display: grid;
  place-content: center;
  color: #fff;
}
.p_top_business__link .img{
  display: grid;
  place-content: center;
  height: 16rem;
}
.p_top_business__link strong{
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p_top_business__link strong::after{
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  display: inline-block;
  background: url("../img/arrow_white.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
}
.p_top_business__link:hover{
  border-color: var(--color-sub);
  background-color: rgba(0,0,0,.6);
}
.p_top_company{
  padding: 0;
}
.p_top_company__row{
  justify-content: center;
}
.p_top_company__img {
  flex: 1;
  max-height: 60rem;
  margin-left: calc(-50vw + 50%);
}
.p_top_company__img img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_top_company__box {
  width: 50%;
  padding: 12rem 0 9.5rem 10rem;
  text-align: left;
}
.p_top_company__box .c_enJaTtl{
  margin-bottom: 8.7rem;
}
.p_top_company__box .txt {
  font-size: 1.4rem;
}
.p_top_contact{
  background: url("../img/top/contact_bg.jpg") center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: left;
}
.p_top_contact__row {
  gap: 16.4rem;
  align-items: flex-end;
  padding: 0 5rem;
}
.p_top_contact__row .c_btn a{
  margin-top: 0!important;
}






/*common
--------------------****/
.pagetitlewrap{
	position: relative;
}
.pagetitle{
	height: 35rem;
	z-index: 1;
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	
}
.pagetitle h1{
	text-align: left;
	font-size: 1.8rem;
}
.pagetitle h1 span{
display: block;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.pagetitleimg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/*company
--------------------****/
.messagebox{
	max-width: 82rem;
	margin: 0 auto;
}
.messagebox h3{
	font-size: 2rem;
	margin: 0 0 2rem;
}
.messagebox .txt{
	text-align: left;
	line-height: 2;
}

.companywrap{
	background: url("../img/company/bg01.jpg") no-repeat center center;
	background-size: cover;
}
.companybox h2{
	color: #fff;
}
.table01{
	background: #fff;
	width: 100%;
	max-width: 90rem;
	margin:  0 auto;
	border-collapse: collapse;
}
.table01 th,
.table01 td{
	padding: 3rem;
	text-align: left;
	border: 1px solid #ccc;
}




/**business
---------------------****/
.bisnavi {
	padding: 3rem 0 0;
}
.bisnavi li{
	flex-basis: 28%;
	margin: 0 1%;
}
.bisnavi a{
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 600;
	padding: 1rem;
	
}
.bisnavi a:after {
  content: "";
  display: block;
  border-width:  1rem.8rem 0 .8rem;
  border-style: solid;
  border-color: #fff transparent transparent transparent;


  margin-left: 1rem;
}
.bistitle ._img  {
position: relative;
  height: 40rem;
  flex-basis: 55%;
}

.bistitle ._img figure {
  position: absolute;
  top: 0rem;
  		right: 0;
  width: 73rem;
}
#bis02 .bistitle ._img figure {
	right: auto;
	left: 0;
}



.bistitle ._cont {
  flex-basis: 40%;
  text-align: left;
}

.bistitle ._title{
	margin: 0 0 2rem;
}
.bistitle ._title figure{
	flex-shrink: 0;
	margin-right: 2rem;
}
.bistitle ._title h3{
	font-size: 3.4rem;
	line-height: 1.2;
color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}
.bistitle h4{
	font-size: 4rem;
	margin: 0 0 3rem;
	font-weight: 800;
}
.bistitle ._txt{
	line-height: 2;
}


.bg-gy{
	background: #F5F5F5;
}
._width900{
	max-width: 90rem;
	margin: 0 auto;
}
.bisflow {
	margin: 0 0 10rem;
	position: relative;
}
.bisflow:last-child {
	margin-bottom: 0;
}

.bisflow:after{
  content: "";
  display: block;
border-width: 2.5rem 2rem 0 2rem;
border-style: solid;
border-color: #808080 transparent transparent transparent;
 /* transform: rotate(90deg);
  */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 110%;
}
.bisflow:last-child:after{
	display: none;
}



.bisflow ._cont{
	text-align: left;
	flex-basis: 42%;
}
.bisflow ._cont h3{
	font-size: 2rem;
}
.bisflow ._cont h4{
	font-size: 2.8rem;
	margin: 0 0 3rem;
}
.bisflow ._cont ._txt{
	line-height: 2;
}
.bisflow ._img{
	flex-basis: 53%;
}
.btn01{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	border-radius: 99px;
	padding: 2rem;
}
.btn01:after {
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  background: url("../img/arrow_white.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  margin: 0 0 0 2rem;
}

.bisafter ._cont{
	text-align: left;
	flex-basis: 40%;
}
.bisafter ._cont h3{
	font-size: 2.8rem;
	margin: 0 0 3rem;
	font-weight: 800;
}
.bisafter ._cont ._txt{
	line-height: 2;
}

.bisafter ._img{
	flex-basis: 50%;
}

.mtable01{
	background: #fff;
	border-collapse: collapse;
	width: 100%;
	text-align: left;
}
.mtable01 th,
.mtable01 td{
	padding: 2rem 4rem;
	border-bottom: 1px solid #ccc;
}
.mtable01 th{
	border-right:1px solid #ccc;
}


.materialbox li{
	text-align: left;
	flex-basis: 23%;
}
.materialbox li figcaption{
	padding: 1rem 0 2rem;
}

.machiningwrap{
	background: url("../img/business/bg01.jpg") no-repeat top center;
	background-size: cover;
	padding: 8rem 0 0;
}
.machiningbox{
	background: #fff;
	padding: 5rem;
	text-align:left;
	margin: 0 0 5rem;
}
.machiningbox li{
	padding: 1rem 0;
	border-bottom: 1px solid #ccc;
}
.machiningbox li:before{
content: "";
  display: inline-block;
  border-width: .5rem 0 .5rem .8rem;
  border-style: solid;
  border-color: transparent transparent transparent #9E9E9E;
 
  margin-right: 1rem;
}
.machiningbox ._01{
	width: 40%;
	display: inline-block;
}
.machiningcap h3{
	background: rgba(255, 255, 255, 0.80);
	padding: 2rem;
	font-size: 2.4rem;
	font-weight: 800;
	
}




/**contact
---------------------****/
.contacttop{
	padding: 3rem 0;
}
.contactwrap{
	background: #F5F5F5;
}

.formstep {
	margin: 0 0 5rem;
}

.formstep ul{
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
}
.formstep li{
  --arrow: 3.2rem;
  position:relative;
  flex:1;
  padding:2rem;
  text-align:center;
  background:#fff;
}
.formstep li + li{ /* 斜め仕切りの“枠線” */
  /* なし（:before が担当） */
}


.formstep li:not(:last-child)::after{
  content:"";
  position:absolute;
  top:1px;
  right:-2.1rem;
  border-top: var(--arrow) solid transparent;
  border-bottom: var(--arrow) solid transparent;
  border-left: 2rem solid #aaa;
  z-index: 1;
}


.formstep li:not(:last-child)::before{
  content:"";
  position:absolute;
  top:0;
  
  right:-2rem;
  border-top: calc(var(--arrow) + 1px) solid transparent;
  border-bottom: calc(var(--arrow) + 1px) solid transparent;
  border-left: calc(2rem + 1px) solid #fff;
  z-index: 2;
}

/* アクティブ */
.formstep li._active{
  background:#444; color:#fff;
}
.formstep li._active:before{
   border-left: calc(2rem + 1px) solid #444;
}

.formstep li._active strong{ color:#fff; }






.formbox{
text-align: left;
margin: auto;
background: #fff;
padding: 5rem 7rem;

}
.formbox dl{
	padding: 0 0 4rem;
	display: flex;
	align-items: center;
	
 }

 
.formbox dt{
    text-align: left;
	flex-basis: 30%;
}
.formbox dd{
flex-basis: 70%;
}

.formbox dd input,
.formbox dd select, 
.formbox dd textarea {
    margin: 2px;
    font-size: 1.6rem;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
	width: 100%;
	font-weight: 400;

}
.formbox input{
	vertical-align: middle;
	
}
.formbox input[type=file]{
	font-size: 1.6rem;
	background: #fff;
	border: none;
	padding: 0;
}
input[type="file"]::file-selector-button {
  background: #E4E7EB;
  font-weight: 500;
  border: none;
  padding: .5rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Noto Sans JP';
   transition: .2s;
}


/*
.formbox ._input01{
  width: 100%;
}*/

.formbox ._txtarea01{
    width: 100%;
    height: 20rem;
}

.formbox input[type=checkbox],
.formbox input[type=radio]{
  vertical-align: top;
    margin:0rem 1rem 0 0;
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
}


.hissu{
    display: inline-block;
    padding: 0 1rem;
    background: #A60000;
    color: #fff;
    margin: 0 1rem 0 0;
    font-size: 80%;
}
.nini{
    display: inline-block;
    padding: 0 1rem;
    background: #A1A1A1;
    color: #fff;
    margin: 0 1rem 0 0;
    font-size: 80%;
}
.zipbtn {
  background:#2288C2;
  display: inline-block;
  color: #fff;
  border:none;
  padding:1rem;
  border-radius: 1rem;
}

input[type=text],
  textarea
 /* select*/{
/*	width:96%;*/
}
  textarea{
  width:100%
  }


.mw_wp_form .formbox .horizontal-item + .horizontal-item{
    margin: 0;
}
/*
.formbox .zip{
	width:15%;
}*/

.formbox .inputtel{
    width: 45%;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.formbox label{
  /* min-width: 300px;
  display: block; margin: 0 20px 0 0;*/
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
     margin-right: 3rem;  
}
.formbox dd label{
	margin: 0 0 .5rem;
	 display: inline-flex;
}

.formbox ._check01 label{
    display: flex;
    margin: 0 0 1rem;
    align-items: flex-start;
    
}
.checklist01 > span{
    display: block;
    margin: 0 !important;
}


.formbox .senmonradio label{
    min-width: 30%;
}
.mw_wp_form .formbox .vertical-item{
    display: inline-block;
}







 form .linkbtn01,form .linkbtn02 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    padding:1rem 3rem;
    background:#000;
    cursor: pointer;
    display: inline-block;
    margin: 0 10px 5px 10px;
    border-radius: 99px;
    font-family: 'Noto Sans JP', sans-serif;
 
}
.linkbtn02 {
    color: #666;
}
.mw_wp_form_confirm .confirmtxt{
    display: block;
}
.mw_wp_form_confirm .input-show {
  display: none;
}
.mw_wp_form_input .input-confirm {
  display: none;
}








/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1300px) {
  html {
    font-size: .8vw;
  }
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {
/*全体レイアウト
---------------------------------------------------------*/
  html {
    font-size: 2.7777777vw;
  }
  body {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  body.active {
    overflow: hidden;
  }
  article > section {
    padding: 4rem 0;
  }
  .txt{
    line-height: 1.8;
  }

  /*header
  -------------------------------------------------------*/
  #header{
    position: absolute;
    background-color: transparent;
  }
  #header.scrollClass{
    box-shadow: none;
  }
  .header_nav {
    display: none;
  }
  .header_logo {
    gap: 1rem;
    color: #fff;
    font-size: 1.8rem;
  }
  .header_logo img {
    max-height: 3.5rem;
  }


  /*nav
  -----------------------------------------------------*/
  .nav_iconWrap {
    display: block;
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    width: 4.6rem;
    height: 4.6rem;
    z-index: 999999;
    border-radius: 50%;
    background-color:#000;
    cursor: pointer;
    transition: .2s;
    border: .1rem solid #fff;
  }
  .nav_iconWrap.active{
    background-color:var(--color-main);
  }
  .nav_icon {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 2rem;
    height: 1.8rem;
    z-index: 99999;
    display: block;
  }
  .nav_icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background: #fff;
    z-index: 10;
    transition: .2s;
  }
  .nav_icon span:nth-of-type(1) {top: 0;}
  .nav_icon span:nth-of-type(2) {top: .8rem;}
  .nav_icon span:nth-of-type(3) {bottom: 0;}
  .nav_iconWrap.active span:nth-of-type(1) {
    -webkit-transform: translateY(.8rem) rotate(45deg);
    transform: translateY(.8rem) rotate(45deg);
  }
  .nav_iconWrap.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav_iconWrap.active span:nth-of-type(3) {
    -webkit-transform: translateY(-.8rem) rotate(-45deg);
    transform: translateY(-.8rem) rotate(-45deg);
  }

  #nav_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 6rem 4rem 4rem;
    background: #2d2d2d;
    background: linear-gradient(147deg, #444 0%, #000000 26%, #000000 50%, #444 100%);
    visibility: hidden;
    opacity: 0;
    color: #fff;
  }
  #nav_menu.active {
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    z-index: 99990;
  }
  .active #header.scrollClass{
    box-shadow:none;
  }
  .nav_menu .c_nav_row{
	align-items: center;
  }
  .nav_menu .c_nav ul li a{
    color: #fff;
  }
  .nav_menu .c_nav ul li a::after{
    background-image: url("../img/arrow_white.svg");
  }

  /*footer
  ---------------------------------------------------------*/
  .footer{
    padding: 3rem 0 3rem;
  }
  .c_nav_row {
    gap: 3rem;
    flex-direction: column;
    align-items: center;
  }
  .c_company{
    gap: 1.4rem;
    flex-direction: column;
  }
  .c_company .logo{
    width: 6.7rem;
  }
  .c_company .name{
    padding-bottom: 0.8rem;
  }
  .c_company .address{
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .footer .c_nav{
	  display: none;
  }
  .c_nav ul li + li{
    margin-top: 2.7rem;
  }
  .c_nav ul li a::after{
    width: 1rem;
  }
  .c_nav ul li a .enTxt{
    font-size: 2.2rem;
    width: 14.6rem;
  }
  .c_nav ul li a .jaTxt{
    width: 11.1rem;
  }


  /*共通 パーツ
  ---------------------------------------------------------*/
  /* ボタン */
  .c_btn a {
    font-size: 1.6rem;
    gap: 1rem;
    margin-top: 2rem!important;
    min-width: 16rem;
  }
  .c_btn a::after {
    width: 0.9rem;
  }
  .c_btn.enBtnTxt a{
    font-size: 1.8rem;
  }
  .c_enJaTtl {
    font-size: 1.4rem;
    margin-bottom: 2rem!important;
  }
  .c_enJaTtl span {
    font-size: 2.8rem;
  }


  /*top
  ---------------------------------------------------------*/
  .p_top_mv{
    min-height: 50rem;
  }
  .p_top_mv__box h1{
    font-size: 3rem;
    line-height: 1.6;
    top: 4rem;
  }
  .p_top_mv__box h1 span + span{
	  margin-top: 0.8rem;
	}
  .p_top_mv__markImg{
	  left: -2rem;
  }
  .p_top_mv__markImg img{
    width: 165%;
  }
  .p_top_future .c_enJaTtl span {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
  }
  .p_top_future .txt{
    line-height: 2;
    text-align: left;
  }
  .p_top_future .txt p + p{
    margin-top: 1.4rem;
  }
  .p_top_business h3{
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
	.p_top_business .txt{
	  text-align: left;
	}
  .p_top_business__row{
    gap: 0.7rem;
    margin-top: 2rem;
  }
  .p_top_business__link{
    height: 12.4rem;
  }
  .p_top_business__link .img{
    height: 6.8rem;
  }
  .p_top_business__link .img img{
    max-height: 4.3rem;
  }
  .p_top_business__link:nth-of-type(3) .img img{
    max-height: 5.4rem;
  }
  .p_top_business__link strong{
    font-size: 1.25rem;
    gap: 0.3rem;
  }
  .p_top_business__link strong::after{
    width: 0.8rem;
  }
  .p_top_company__row{
    flex-direction: column-reverse;
  }
  .p_top_company__img {
    height: 23rem;
    flex: auto;
    margin: 0 -6%;
  }
  .p_top_company__box {
    width: 100%;
    padding: 4rem 1rem;
  }
  .p_top_company__box .txt {
    font-size: 1.4rem;
  }
  .p_top_contact__row {
    gap: 2rem;
    padding: 0 2rem;
    flex-direction: column;
    align-items: center;
  }



/*common
--------------------****/
.pagetitle{
	height: 20rem;
	justify-content: center;
}
.pagetitle h1{
	text-align: center;
	font-size: 1.4rem;
	padding-top: 5rem;
}
.pagetitle h1 span{
display: block;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

/*company
--------------------****/

.messagebox h3{
	font-size: 1.6rem;
}



.table01 th,
.table01 td{
	padding: 1rem;
	font-size: 90%;
}




/**business
---------------------****/
.bisnavi {
	padding: 2rem 0 0;
}
.bisnavi ul{
	
}
.bisnavi li{
	margin: 0 .5% 1rem;
	flex-basis: 100%;
}
.bisnavi a{
	font-size: 1.2rem;
	padding: 1rem;
	line-height: 1;
	flex-direction: column;	
}
.bisnavi a:after {
  display: block;
  margin: 1rem auto 0;
}
.bistitle {
	display: block;
}

.bistitle ._img  {
position: relative;
  height: auto;
  margin: 0 0 2rem;
}

.bistitle ._img figure {
  position: relative;
  top: auto;
  		right: auto;
  width: auto;
}
#bis02 .bistitle ._img figure {
	right: auto;
	left: auto;
}



.bistitle ._cont {

}

.bistitle ._title{
	margin: 0 0 2rem;
}
.bistitle ._title figure{
	flex-shrink: 0;
	margin-right: 2rem;
}
.bistitle ._title h3{
	font-size:2.7rem;

}
.bistitle h4{
	font-size: 3rem;
	margin: 0 0 2rem;
}


.bisflow {
	margin: 0 0 6rem;
	display: block;
}


.bisflow:after{
border-width: 1.5rem 1rem 0 1rem;

  top: 103%;
}



.bisflow ._cont{

}
.bisflow ._cont h3{
	font-size: 1.6rem;
}
.bisflow ._cont h4{
	font-size: 2rem;
	margin: 0 0 2rem;
}

.bisflow ._img{
	margin:0 0 2rem;
}
.btn01{

	padding: 1rem;
}

.bisafter {
	display: block;
}

.bisafter ._cont{
	
}
.bisafter ._cont h3{
	font-size: 2rem;
	margin: 0 0 2rem;
}

.bisafter ._img{
	margin: 0 0 2rem;
}

.mtable01{
	
}
.mtable01 th,
.mtable01 td{
	padding: .5rem;
	font-size: 80%;
}


.materialbox li{
	flex-basis: 48%;
}
.materialbox li figcaption{
	padding: 1rem 0 2rem;
	font-size: 80%;
}

.machiningwrap{;
	padding: 4rem 0 0;
}
.machiningbox{
	background: #fff;
	padding: 2rem;
	text-align:left;
	margin: 0 0 5rem;
}
.machiningbox li{
	padding: 1rem 0;
	text-indent: -1.4em;
    margin-left: 1.4em;
	
}
.machiningbox li:before{

}
.machiningbox ._01{
	width: auto;
	display: inline;
}
.machiningbox span{
	display: block;
	margin-left: 1.4em;
}

.machiningcap h3{

	font-size: 1
	.6rem;
	
}













/****contact
----------------------------*/
.formstep {
	margin: 0 0 3rem;
}

.formstep ul{
 
 border: none;
  display: block;
}
.formstep li{
  --arrow: 2.5rem;
  position:relative;
  flex:1;
  padding:1rem;
  text-align:center;
  background:#fff;
  
  font-size: 1rem;
  border-bottom: 1px solid #ccc;
}
.formstep li + li{ /* 斜め仕切りの“枠線” */
  /* なし（:before が担当） */
}


.formstep li:not(:last-child)::after{
  content:"";
  position:absolute;
  top:100%;
  right:0;
  left:0;
  margin:auto;
  border-top: var(--arrow) solid transparent;
  border-bottom: var(--arrow) solid transparent;
  border-left: 2rem solid #aaa;
  z-index: 1;
  transform: rotate(90deg);
   display: none;
}


.formstep li:not(:last-child)::before{
  content:"";
  position:absolute;
  top:0;
  
  right:-2rem;
  border-top: calc(var(--arrow) + 1px) solid transparent;
  border-bottom: calc(var(--arrow) + 1px) solid transparent;
  border-left: calc(2rem + 1px) solid #fff;
  z-index: 2;
   transform: rotate(90deg);
    display: none;
   
  
}

/* アクティブ */
.formstep li._active{
  background:#444; color:#fff;
}
.formstep li._active:before{
   border-left: calc(1rem + 1px) solid #444;
   display: block;
     top:30%;
  right:0;
  left:0;
  margin:auto;
  width: 2px;
  height: 2px;
}

.formstep li._active strong{ color:#fff; }



.formbox{
padding: 2rem;

}
.formbox dl{
	padding: 0 0 2rem;
	display: block;
	
 }
.formbox dt{
	margin-bottom: 1rem;
}
 

.formbox dd{
}

.formbox ._txtarea01 {
  height: 10rem;
}

form .linkbtn01, form .linkbtn02{
	font-size: 1.6rem;
    padding: 1rem 2rem;
}



.spcenter{
	text-align: center;
}

}






