/*リセットCSS*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

body {
    line-height:1;
	overflow-x: hidden;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    transition: 0.3s;
}
a:hover{
	opacity: 0.8;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/*リセットCSSここまで*/

.doubleline {
	width: 156px;
	font-size: 24px;
	text-align: center;
    margin: 0 auto;
    padding: 15px 0px;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
}

/* ================================================ */
/*トップページ*/
/* ================================================ */



@charset "UTF-8";

html {
	font-size: 100%;
}


body {
  background-color: #fff;
  color: #000;
  font-family: YuGothic, YuGothicM;
  font-weight: 400;
}


a {
	text-decoration: none;
	color: #000;
	
}

img{
	max-width: 100%;
	vertical-align: bottom;
}

* {
	box-sizing: border-box;
}

h2 {
	font-size: 37px;
	letter-spacing: 3.6px;

}

@font-face {
	font-family: 'din-cm';
	src: url('fonts/DINCond-Medium.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
  }
  @font-face {
	font-family: 'din-cb';
	src: url('fonts/DINCond-Bold.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
  }
  @font-face {
	font-family: 'din-cbl';
	src: url('fonts/DINCOND-LIGHT.OTF') format('opentype');
	font-weight: normal;
	font-style: normal;
  }

.container_a {
	max-width: 1300px;
	margin: 0 auto;
}

.container_b {
	max-width: 1100px;
	margin: 0 auto;
}

.container_c {
	width: 100%;
	margin: 0 auto;

}

/*ヘッダー*/
header {
	width: 100%;
}

header > .container {
	display: flex;
	align-items: center;
}

.header{
	padding: 35px 0;
    align-items: center;
}


.area_logo_header {
	display: block;
}

.area_logo_header img {
	height: 63px;
	vertical-align: bottom;
}

.inner {
	width:100%; 
	display: flex;
	justify-content: space-between;
}

.list_nav_header {
	display: flex;
    align-items: center;
}


#drop.list_nav_header li.firstMenu {
	margin: 0px 28px;
}

.list_nav_header li a {
	font-size: 17px;
	letter-spacing: 1.2px;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
	transition: 0.3s;
}

.mail_icon a {
	position: relative;
}

.mail_icon a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 1px;
    background: rgba(0,0,0,0.3);
    height: 100%;

}

/*ドロップメニュー*/

#drop > li:hover > a{
	border-bottom:1px solid #000;
}

#drop li {
	position: relative;
	padding: 0;
  }
  #drop li a {
	display: block;
  }
  #drop li ul {
    list-style: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 185px;
    margin: 10px 0 0 0;
    padding: 0;
  }
  #drop li ul > li > ul{
    margin: 0px 0 0 0;
  }
  #drop li ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	color: #fff;
	transition: .2s;
  }
  #drop li ul li a {
    padding: 14px 15px;
    background: rgba(0,0,0,0.63);
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    border: none;
  }
  #drop > li:hover li:hover > a {  background: rgba(50,50,50,0.5) }
  #drop > li:hover > ul > li {
	overflow: visible;
    height: 42px;
  }
  #drop li ul li ul {
	top: 0;
	left: 100%;
  }
  #drop li:last-child ul li ul {
	left: -100%;
	width: 100%;
  }
  #drop li ul li ul:before {
    position: absolute;
    content: "";
    top: 16px;
    left: -20px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #fff;
  }
  #drop li:last-child ul li ul:before {
	position: absolute;
	content: "";
	top: 13px;
	left: 200%;
	margin-left: -20px;
	border: 5px solid transparent;
	border-right-color: #454e08;
  }
  #drop li ul li:hover > ul > li {
	overflow: visible;
	height: 42px;
  }


/*トップビュー*/

.area_top_view {
	width: 1300px;
	margin: 0 auto;
	margin-top: -16px;
	position: relative;
    overflow: hidden;
}

.mv-title{
    position: absolute;
    left: 83px;
    top: 0px;
    bottom: 0;
    margin: auto;
    z-index: 99;
    height: 51px;
}
.swiper-container {
	width: 100%;
}

.swiper-slide img {
	width: 100%;
}

.swiper-button-prev, .swiper-button-next {
	color: #fff;
}


.swiper-wrapper {
	position: relative;
}

.ttl {
	font-size: 23px;
	color: #fff;
	line-height: 1.5;
	position: absolute;
	top: 250px;
	left: 83px;
}


/*News*/

.area_news {
	padding-top: 66px;
}



.head_news h2 {
	position: relative;
	display: inline-block;
}



.head_news h2::after {
content: ''; 
position: absolute;
bottom: -16px;
left: 0px;
width: 1100px;
height: 1px; 
background: #000;
}

.head_news p {
	color: #0092E5;
	padding-top: 38px;
	letter-spacing: 3px;
}


/*newsここから*/

.news_conteiner {
/*	border-collapse: separate;*/
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top: 8px;
}


.article_link {
	display: flex;
	align-items: baseline;
	padding-top: 39px;
}

.article_year {
	font-size: 12px;
	font-family: 'din-cb';
	
}

.article_date {
	font-size: 30px;
	padding-left: 13px;
	font-family: 'din-cb';
}

.article_title {
	font-size: 14px;
	letter-spacing: 2.4px;
	padding-left: 25px;
}


/*newsここまで*/


.news_right {
	width: 240px;
	padding-top: 80px;
}


.news_more {
	position: relative;
}

.news_more_ttl {
	color: #CECECE;
	font-size: 37px;
	font-family: 'din-cb';
	letter-spacing: 3.6px;
	position: relative;
}

.arrow::before {
content: ''; 
position: absolute;
bottom: -11px;
left: 0px;
width: 240px;
height: 1px; 
background: #CECECE;
} 


.arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #CECECE;
  border-right: solid 1px #CECECE;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: -16px;
  left: 228px;
  margin-top: -33px;
}



.news_more_link {
	color: #CECECE;
	font-size: 18px;
	font-family: 'M PLUS 1p', sans-serif;
	letter-spacing: 3.6px;
	display: block;
	padding-top: 22px;
}




/*Product*/
.area_product {
	width: 100%;
	margin: 0 auto;
}

.head_product h2 {
	text-align: center;
	margin-top: 89px;
    letter-spacing: 0.28em;
}

.head_product p {
	text-align: center;
	padding-top: 15px;
	letter-spacing: 3.6px;
	margin-bottom: 40px;
}

.body_product {
	display: flex;
	justify-content: space-between;
}


.box {
	position: relative;
}


.body_product img {
	width: 284px;
	height: 210px;
    filter: brightness(0.7);
	transition: 0.3s;
}
.body_product a:hover img {
    filter: brightness(0.9);
}

.box_text {
	position: absolute;
	top: 84px;
	left: 0;
	right: 0;

}

.box_text h5 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3.6px;
    width: 263px;
    border: solid 1px #fff;
    padding: 10px 0;
    margin: 0 auto;
    text-align: center;
}

.box_text p  {
	color: #fff;
	font-size: 18px;
	text-align: center;
	padding-top: 17px;
	font-family: 'din-cb',sans-serif;
    letter-spacing: 0.12em;
}



/*3contents*/
.main_wrapper {
	width: 100%;
	padding-top: 91px;
	margin: 0 auto;
}


.area_3contents {
	width: 100%;
	margin: 0 auto;
}


.main_content {
	width: 100%;
   display: flex;
   justify-content: center;
}

.area_business {
	position: relative;
	z-index: 10;

}

.area_tech {
	position: relative;
	z-index: 10;

}

.area_company {
	position: relative;
	z-index: 10;
}


.area_business img,.area_tech img, .area_company img {
    width: 100%;
    filter: brightness(0.6);
	transition: 0.3s;
}
.area_business a{
	transition: 0.3s;
}
.area_business a:hover img,.area_tech a:hover img, .area_company a:hover img {
    filter: brightness(0.2);
}

.content_inner h3,.content_inner p {
	font-weight: 400;
	color: #fff;
	text-align: center;
	font-size: 1.5vw;
	letter-spacing: 3.7px;

}

.content_inner p {
	padding-top: 21px;
    font-family: 'din-cb',sans-serif;
    font-size: 1.7vw;
}


.content_inner {
	width: 90%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding-top: 40%;

}


.main_more_ttl{
	color: #fff;
	font-size: 2.5vw;
	font-family: 'din-cb',sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 3.6px;
	display: block;
	text-align: left;
	padding-top: 20%;
	position: relative;
    padding-left: 26%;
}


.content_inner_arrow {
	position: relative;
	width: 50%;
	display: block;
	margin: 0 auto;

}


.content_inner_arrow::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;

	}


.content_inner_arrow::after {
   content: '';
   width: 10px;
   height: 10px;
   border: 0px;
   border-top: solid 1px #fff;
   border-right: solid 1px #fff;
   -ms-transform: rotate(45deg);
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
   position: absolute;
   bottom: -7px;
   right: 0;

}



/*採用ページ*/
.area_recruit {
	width: 100%;
	margin: 0 auto;
}


.recruit_wrapper {
	text-align: center;
	position: relative;
}

.recruit_inner {
	width: 100%;
	position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


.area_recruit img {
	margin: 0 auto;

}


.text_recruit {
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	letter-spacing: 2.4px;
	line-height: 31px;
	font-family: a-otf-midashi-go-mb31-pr6n,sans-serif;
	font-weight: 200;
	font-style: normal;
	margin: 0 auto;
}

.btn_recruit {
	text-align: center;
	margin-top: 6%;
}

.btn_recruit a {
	padding:  12px 150px;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 1.5vw;
	font-family: 'M PLUS 1p', sans-serif; 
	letter-spacing: 3.6px;
	text-align: center;
	margin: 0 auto;



}


.btn_recruit a span {
	color: #fff;
	font-size: 1.5vw;
	font-family: 'din-cb',sans-serif;
	font-weight: 300;
	font-style: normal; 
	padding-left: 32px;
	display: inline-block;
	position: relative;

}

.btn_recruit a span::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -100px;
  margin-top: -4px;
}



/*フッター*/

footer {
	width: 100%;
	height: auto;
}

.nav_footer {
	display: flex;
	justify-content: space-between;
	padding: 42px 0;
}

.nav_footer h4 {
	padding-bottom: 9px;
    letter-spacing: 0.12em;
	font-size: 18px;
}
.nav_footer h4 a{
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}
.nav_footer h4:hover a{
    border-bottom: 1px solid #000;
}
.nav_footer ul li a{
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}
.nav_footer ul li:hover a{
    border-bottom: 1px solid #000;
}

.nav_footer ul {
    padding-left: 10px;
    line-height: 1.8;
}
.nav_footer_product{
    margin: 0 auto 25px;
}
.nav_footer_product ul{
    line-height: 1.8;
    padding-left: 10px;
	margin: 0 15px 0 0;
}
.nav_footer_product h4 {
	padding-bottom: 9px;
	font-size: 18px;
    letter-spacing: 0.12em;
}

.nav_footer_product h4 a{
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}
.nav_footer_product h4:hover a{
    border-bottom: 1px solid #000;
}
.nav_footer_product ul li a{
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}
.nav_footer_product ul li:hover a{
    border-bottom: 1px solid #000;
}

.list_style{
}
.nav_footer ul li{
	font-size: 12px;
}
.nav_footer_product ul li{
	font-size: 12px;
}
.nav_footer_product ul .subTitle-nav{
	font-size: 14px;
	margin: 0 0 0 -10px;
}

.area_logo_footer {
	padding: 32px 0;
	position: relative;

}

.area_logo_footer::before {
	content: ''; 
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1100px;
	height: 1px; 
	background: #000;

}


.area_logo_footer img {
	width: 389px;
	height: 56px;
}


.branch {
	display: flex;
}



.area_ad_nagoya {
	padding-right: 49px;
}

.area_ad_nagoya p,.area_ad_tokyo p {
	font-size: 17px;
	letter-spacing: 2.4px;
	margin-top: 14px;
	line-height: 1.5;
}

.mg {
	padding-left: 117px;
}

.footer-bottom {
	width: 100%;
	height: 100px;
	text-align: center;
	margin-top: 37px;
	
}


.row {
	display: flex;
	justify-content: flex-end;
	line-height: 100px;
	position: relative;
}

.row::before {
	content: ''; 
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 1100px;
	height: 1px; 
	background: #000;
}



.copyright {
	padding: 0 180px;

}


.copyright p {
	font-family: 'din-cb',sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	letter-spacing: 1.5px;

}

.links a {
	font-size: 12px;
	padding-left: 16px;
}

.nav_footerBottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 85%;
}
/* ================================================ */
/*企業情報*/
/* ================================================ */

/*トップ画像*/

.company_head_img {
	position: relative;
	text-align: center;
	margin-bottom: 56px;
}

.company_head_ttl {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2.4px;
	line-height: 36px;
	position: absolute;
	top: 100px;
	left: 250px;

}
.company_head_img .contaoner{
    width: 650px;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}

.company_head_ttl h1 {
	position: relative;
}

.company_head_ttl h1::after {
	content: ''; 
	position: absolute;
	bottom: -4px;
	left: -8px;
	width: 247px;
	height: 1px; 
	background: #fff;

}

/*右固定ナビゲーション*/

#fix_nav {
	width: 100px;
	height: 169px;
	background-color: #000;
	float: right;
	position: fixed;
    top: 580px;
    right: 0;
    z-index: 10;
    color: #fff;
    opacity: 0.7;

}


#fix_nav p {
	font-size: 13px;
	letter-spacing: 1.2px;
	text-align: right;
	border-bottom: 1px solid #fff;
	width: 100px;
	padding-bottom: 7px;
	padding-right: 7px;
/*	padding-top: 8px;*/
/*	display: inline-block;
	vertical-align : top;*/

}

#fix_nav ul {
	list-style: none;
	text-align: right;
	padding: 7px 0px;
}

#fix_nav ul li {
	font-size: 12px;
	padding: 6px 8px;
	position: relative;
}

#fix_nav ul li::before {
	content: ''; 
	position: absolute;
	top: 15px;
    left: 0px;
	width: 24px;
	height: 1px; 
	background: #ddd;

}


#fix_nav ul li a {
	color: #fff;

}


.back_top {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 11px;
	color: #fff;
	border-top: 1px solid #fff;
	width: 100px;
	padding-top: 5px;
}

/*代表挨拶*/

#company_about .about {
	width: 156px;
	font-size: 24px;
	text-align: center;
    margin: 0 auto;
    padding: 15px 0px;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
}



.ceo_img {
	width: 679px;
	height: 479px;
	margin-top: 67px;
}

.about_ceo {
	position: relative;
}


.ceo_greeting {
	position: absolute;
	top: 182px;
	right: 0px;
}

.sign {
	font-size: 36px;
	text-align: right;
	line-height: 36px;
	padding-bottom: 15px;
}

.sign span {
	font-size: 24px;

}

.ceo_greeting_text {
	width: 619px;
	height: 320px;
	background-color: #fff;
	opacity: 0.7;
	font-size: 18px;
	padding: 24px 24px;
	text-align: left;
	line-height: 36px;
}


/*沿革*/

.about_history {
	margin-top: 154px;
	margin-bottom: 150px;
	padding-top: 123px;
}

.history_table {
	margin-top: 70px;
}

.history_table .text {
	font-size: 16px;
	text-align: left;
	position: relative;
	padding-left: 70px;
	line-height: 24px;

    vertical-align: middle;}

.date {
	font-size: 28px;
	font-family: 'din-cb';
	padding:40px 20px;
}   


.text::before {
	content: ''; 
	position: absolute;
	top: 52px;
    left: 0px;
	width: 34px;
	height: 1px; 
	background: #000;

}


/*会社概要*/

.about_companyinfo {
	max-width: 1100px;
	margin: 0 auto;
}

.companyinfo_table {
	margin: 0 auto;
	margin-top: 34px;
	margin-bottom: 217px;
}


.companyinfo_table_tr {
	position: relative;

}

.companyinfo_table_tr::after {
	content: ''; 
	position: absolute;
	top: 100;
	left: 0;
	right: 0;
	width: 1100px;
	height: 1px; 
	background: #C9C9C9;
	display: block;
	margin: 0 auto;

}


.label {
	font-size: 14px;
	padding: 36px 0px 36px 24px;


}

.label_text {
	font-size: 14px;
	padding: 36px 0px 36px 86px;
	line-height: 24px;
	letter-spacing: 1.85px;
}

.label_text_address {
	padding: 36px 2px 36px 86px;

}

.text_address {
	font-size: 14px;
	letter-spacing: 2.4px;
	line-height: 24.5px;
}

.label_text_address p {
  width: 200px;
  font-size: 14px;
  letter-spacing: 1.85px;
    line-height: 24.5px;
}

.companyinfo_td_inner {
  display: flex;
}

.companyinfo_td_inner:first-of-type {
  margin-bottom: 20px;
}

.companyinfo_table tr:last-of-type::after {

}



/*アクセス*/

.access {
	margin-bottom: 205px;
}

.access_area {
	display: flex;
	justify-content: space-between;
	margin-top: 120px;
}

.headquater h5, .branch_kyoto h5 {
	font-size: 18px;
	font-weight: 300;
	padding-top: 25px;
	padding-bottom: 14px;
}

.headquater p, .branch_kyoto p {
	font-size: 14px;
	line-height: 24px;
}

.headquater span {
	font-size: 13px;
}

/*企業情報専用固定メニュー*/
.aboutFixMenu{
	width: 110px;
	position: fixed;
    top: 350px;
	right: 0;
	background-color: rgba(0,0,0,0.7);
}
.aboutFixMenu-title{
	font-size:13px;
	letter-spacing: 0.12em;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'din-cbl';
    padding: 7px 0;
}
.aboutFixMenu-title span{
	display: block;
	height: 1px;
	width: 3px;
	color: #fff;
	margin: 0 2px 0;
}
.aboutFixMenu-inner{
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 10px 0;
	list-style: none;
}
.aboutFixMenu-inner a{
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.12em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
    padding: 10px 0;
}
.aboutFixMenu-inner a span{
    background-color: #fff;
    height: 1px;
    width: 24px;
    margin: 0 10px 0 0;
    display: block;
    z-index: 9999999;
}
.aboutFixMenu-back{
    text-align: center;
}
.aboutFixMenu-back a{
	font-size: 11px;
	color: #fff;
    padding: 5px 0 7px;
	text-align: center;
	display: block;
}

.map {
	width: 500px;
	height: 380px; 
	border: 0;
}

/* ================================================ */
/*製品紹介*/
/* ================================================ */

/*トップ画像*/

.product_head_img {
	position: relative;
	text-align: center;
	margin-bottom: 94px;
}

.product_head_ttl {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2.4px;
	line-height: 36px;
	position: absolute;
	top: 100px;
	left: 250px;
	text-align: left;

}

.product_head_img .contaoner{
    width: 650px;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}


.product_head_ttl h1 {
	position: relative;
}

.product_head_ttl h1::after {
	content: ''; 
	position: absolute;
	bottom: -4px;
	left: -8px;
	width: 247px;
	height: 1px; 
	background: #fff;

}

/*油圧サーボ弁*/

.product_subtitle{
	text-align: center;
}

.product_tag {
	font-size: 18px;
	text-align: center;
    margin: 0 auto;
    padding: 15px 0px;
    border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
	display: inline-block;
}
.product_tag h3{
	display: inline-block;
}

.servo_area {
	margin-top: 44px;
}

.directdrive {
	display: flex;
	margin-bottom: 47px;
}

.forcefeedback {
	display: flex;
	margin-bottom: 148px;
}


/*鉄道車両*/

.cylinder_area {
	margin-top: 44px;
}

.cylinder {
	display: flex;
	margin-bottom: 200px;
}


.box_directdrive_text h5, .box_forcefeedback_text h5, .box_cylinder_text h5 {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: relative;
    font-weight: 400;
	letter-spacing: 0.24em;
	display: inline-block;
}


.box_directdrive_text h5::before {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    left: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;


}

.box_forcefeedback_text h5::before {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    left: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;

}

.box_cylinder_text h5::before {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    left: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;


}

.box_directdrive_text h5::after {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    right: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;

}



.box_forcefeedback_text h5::after {
	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    right: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;

}

 .box_cylinder_text h5::after {
 	color: #fff;
	font-size: 24px;
	letter-spacing: 3.6px;
	text-align: center;
	position: absolute;
	content: ''; 
	bottom: 11px;
    right: -40px;
	width: 25px;
	height: 1px; 
	background: #fff;

 }




.box_directdrive_text p, .box_forcefeedback_text p, .box_cylinder_text p {
	color: #fff;
	font-size: 14px;
	text-align: center;
    margin: 10px auto 0;


}


.box_directdrive_img, .box_forcefeedback_img, .box_cylinder_img {
	margin-right: 40px;
	position: relative;
}

.box_directdrive_img img, .box_forcefeedback_img img, .box_cylinder_img img{
    filter: brightness(0.4);
	transition: 0.3s;
}

.box_directdrive_img a:hover img, .box_forcefeedback_img a:hover img, .box_cylinder_img a:hover img{
    filter: brightness(0.6);
}

.box_directdrive_text, .box_forcefeedback_text, .box_cylinder_text {
	width: 100%;
	position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}


.directdrive_text h5, .forcefeedback_text h5, .cylinder_text h5 {
	font-size: 16px;
	padding-bottom: 27px;
	text-align: center;
	font-weight: 300;

}

.directdrive_text,.forcefeedback_text,.cylinder_text{
	position: relative;
}
.directdrive_text .product_m_note,.forcefeedback_text .product_m_note,.cylinder_text .product_m_note{
	position: absolute;
	bottom: 0;
	left: 0;
}

.directdrive_text p, .forcefeedback_text p, .cylinder_text p {
	font-size: 14px;
	letter-spacing: 1.2px;
	line-height: 24px;
    width: 510px;

}

.directdrive_text h5 a, .forcefeedback_text h5 a, .cylinder_text h5 a{
	font-size: 16px;
	color: #000;
	transition: 0.3s;
}
.directdrive_text h5 a:hover, .forcefeedback_text h5 a:hover, .cylinder_text h5 a:hover {
	opacity: 0.8;
}
.directdrive_text a, .forcefeedback_text a, .cylinder_text a {
	color:#0055FF;
	font-size: 14px;
	letter-spacing: 2.4px;
	font-weight: bold;


}

/* ================================================ */
/*技術資料*/
/* ================================================ */

/*トップ画像*/

.technicaldata_head_img {
	position: relative;
	text-align: center;
	margin-bottom: 94px;
}

.technicaldata_head_ttl {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2.4px;
	line-height: 36px;
	position: absolute;
	top: 100px;
	left: 250px;
	text-align: left;

}


.technicaldata_head_img .contaoner{
    width: 650px;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}


.technicaldata_head_ttl h1 {
	position: relative;
}

.technicaldata_head_ttl h1::after {
	content: ''; 
	position: absolute;
	bottom: -4px;
	left: -8px;
	width: 247px;
	height: 1px; 
	background: #fff;

}



/*技術資料*/

.container_d {
	width: 760px;
	margin: 0 auto;
	text-align: center;
}

.technicaldata_inner {
	width: 100%;
	text-align: center;
	margin-top: 73px;
	margin-bottom: 86px;
}

.subTitle{
	text-align: center;
}
.subTitle p{
    color: #000;
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
    font-family: 'din-cb',sans-serif;
    font-size: 17px;
    letter-spacing: 0.22em;
    display: inline-block;
}

.subTitle h3 {
	color: #000;
	padding-top: 12px;

}




.technicaldata_contents {
	text-align: center;
	margin-top: 32px;
	margin-bottom: 57px;

}

.technicaldata_article {
	text-align: center;
	border-bottom: 2px dotted #707070;
	padding: 14px 0px;
	vertical-align: middle; 
	display: flex;
}



.technicaldata_article_link {
	display: flex;
	align-items: center;
}


.technicaldata_article_label {
	color: #fff;
	font-size: 12px;
	margin-left: 25px;
	background-color: #8E8E8E;
	padding: 6px 16px;
}


.next_btn {
	width: 273px;
	height: 40px;
	background-color: #fff;
	color: #000;
	font-size: 14px;
	letter-spacing: 3.6px;
	padding: 13px 83px;
	outline: 1px solid #000;
	margin-top: 10px;
	text-align: center;
    font-weight: bold;

}


.arrow2 {
	 position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #333;
}


.arrow2::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  bottom: -1px;
  left: 78px;

}

/*技術レポート*/

.technicalreport_inner {
	width: 100%;
	text-align: center;
	margin-bottom: 86px;
}



.technicalreport_inner h3 {
	color: #000;
	padding-top: 12px;

}

.technicalreport_contents {
	text-align: center;
	margin-top: 32px;
	margin-bottom: 57px;

}

.technicalreport_article {
	text-align: center;
	border-bottom: 2px dotted #707070;
	padding: 14px 0px;
	vertical-align: middle; 
	display: flex;
}



.technicalreport_article_link {
	display: flex;
	align-items: center;
}



.technicalreport_article_label {
	color: #fff;
	font-size: 12px;
	margin-left: 25px;
	background-color: #FF7700;
	padding: 6px 16px;
}



/*勉強会*/


.studymtg_inner {
	width: 100%;
	text-align: center;
	margin-bottom: 200px;

}



.studymtg_inner h3 {
	color: #000;
	padding-top: 12px;

}

.studymtg_contents {
	text-align: center;
	margin-top: 32px;
	margin-bottom: 57px;

}

.studymtg_article {
	text-align: center;
	border-bottom: 2px dotted #707070;
	padding: 14px 0px;
	vertical-align: middle; 
	display: flex;
}



.studymtg_article_link {
	display: flex;
	align-items: center;
}



.studymtg_article_label {
	color: #fff;
	font-size: 12px;
	margin-left: 25px;
	background-color: #008FD9;
	padding: 6px 16px;
}




/* ================================================ */
/*採用ページ*/
/* ================================================ */

/*トップ画像*/

.recruitpage_head_img {
	position: relative;
	text-align: center;
	margin-bottom: 94px;
}

.recruitpage_head_img .contaoner{
    width: 650px;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}

.recruitpage_head_ttl {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2.4px;
	line-height: 36px;
	position: absolute;
	top: 100px;
	left: 250px;
	text-align: left;

}


.recruitpage_head_ttl h1 {
	position: relative;
}

.recruitpage_head_ttl h1::after {
	content: ''; 
	position: absolute;
	bottom: -4px;
	left: -8px;
	width: 247px;
	height: 1px; 
	background: #fff;

}





/*募集内容*/

.recruitpage_inner h3 {
	margin: 0 auto;
	text-align: center;
	padding-top: 44px;
	padding-bottom: 8px;
	border-bottom: 1px solid #000;
	width: 180px;
	font-size: 18px;
	letter-spacing: 2.4px;

}

.recruitpage_inner p {
    font-size: 14px;
	text-align: center;
}

.about_companyinfo {
	max-width: 1100px;
	margin: 0 auto;
}

.recruitpage_table {
	margin: 0 auto;
	margin-top: 57px;
	margin-bottom: 54px;
}


.recruitpage_table_tr {
	position: relative;

}
.recruit_table_tr_inner{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	width:750px;
	margin: 0 auto;
}
.recruitpage_table_tr:last-child{
	border-bottom: 1px solid #C9C9C9;
}

.recruitpage_table_tr{
	border-top: 1px solid #C9C9C9;
}




.recruitpage_label {
	font-size: 14px;
	padding: 22px 0px 22px 24px;
	text-align: left;
    width: 150px;
    line-height: 24px;
	letter-spacing: 0.185em;
}

.recruitpage_label_text {
	font-size: 14px;
	padding: 22px 0px 22px 86px;
	line-height: 24px;
	letter-spacing: 0.185em;
    width: 600px;
}
.recruitpage_label_text p{
	text-align: left;
}

.recruit_btn_wrapper {
	text-align: center;
}

.recruit_next_btn {
    background-color: #0092E5;
    color: #fff;
    font-size: 14px;
    letter-spacing: 3.6px;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    width: 212px;
    padding: 16px;
}



.arrow3 {
	position: relative;
}

.arrow3::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: -1px;
    margin-top: -5px;
}

.recruit-navi{
    font-size: 16px;
    padding-top: 20px;
    text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	list-style: none;
}
.recruit-navi a{
	color: #000;
	margin: 0 10px;
}

/*採用メッセージ*/
.recruit_message_inner {
	margin-top: 120px;
	margin-bottom: 130px;
    overflow: hidden;
}

.recruit_message_inner p {
	text-align: center;
	line-height: 36px;
}

.recruit_message_2line {
	padding-top: 30px;
}


.recruit_message_slider {
	margin-top: 25px;
	margin-bottom: 50px;
	width: 100%;

}


.swiper-container {
	width: 100%;
    margin: 0 auto;
}


.recruit_slide_container {
	width:1100px;
	text-align: center;
	position: relative;
	height: 213px;
}

.recruit_swiper-slide {
  text-align: center;
  cursor: pointer;
/*  width: 100%;*/

}

.swiper-wrapper {
	width: 100%;
}

.recruit_swiper-slide img {
	width: 100%;

}

.swiper-slide-next{
     opacity: 0.5;
 }

.swiper-slide-prev{
     opacity: 0.5;
}

.recruit-button-next {
	color: #000;
	position: absolute;
	top: 50%;
	right: 300px;
}

.recruit-button-prev {
	color: #000;
	position: absolute;
	top: 50%;
	left: 300px;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 20px;
}
.recruit-button-prev {
    color: #000;
    position: absolute;
    top: 56%;
    left: 330px;
    height: auto;
}
.recruit-button-next {
    color: #000;
    position: absolute;
    top: 56%;
    right: 330px;
    height: auto;
}
.contact-thanks .contact_text {
    position: relative;
    max-width: 300px;
}
.contactform_inner span.contact-note{
    position: absolute;
    bottom: 5px;
    font-size: 12px;
    letter-spacing: 0.1em;
    left: 40%;
    color: #000;
}
@media (min-width: 768px) {
.recruit_message_slider .swiper-button-prev,
.recruit_message_slider .swiper-button-next {
    display: block;
  }
}


/* ================================================ */
/*お問い合わせ*/
/* ================================================ */


/*トップ画像*/

.contact_head_img {
	position: relative;
	text-align: center;
	margin-bottom: 94px;
}

.contact_head_img .contaoner{
    width: 650px;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: rgba(0,0,0,0.3);
}

.contact_head_ttl {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2.4px;
	line-height: 36px;
	position: absolute;
	top: 100px;
	right: 250px;
	text-align: left;

}


.contact_head_ttl h1 {
	position: relative;
}

.contact_head_ttl h1::after {
	content: ''; 
	position: absolute;
	bottom: -4px;
	left: -8px;
	width: 247px;
	height: 1px; 
	background: #fff;

}

/*コンタクトフォームの上のテキスト*/

.container_e {
	width: 695px;
	margin: 0 auto;
}

.contact_inner {
	margin-top: 66px;
}


.contact_head_text {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}


.contact_text {
	position: relative;
}

.contact_text::after {
	position: absolute;
	content: ''; 
    top: 0;
    right: -40px;
	width: 1px;
	height: 83px; 
	background: #707070;
}


.contact_text p {
	font-size: 16px;
	letter-spacing: 1.2px;
	line-height: 28px;
}

.contact_number {
	display: flex;
	padding-right: 8px;
}

.contact_number img {
	width: 16px;
	height: 27px;
	vertical-align: text-top;
	margin-top: 6px;
	margin-right: 4px;
}


.contact_number p {
	font-family: 'din-cb';
	color: #0092E5;
	font-size: 36px;
	letter-spacing: 1.2px;

}

.contact_number span {
	color: #000;
	font-size: 16px;
	letter-spacing: 1.2px;
	
}

/*コンタクトフォーム*/

.contactform {
	margin-top: 114px;
}

.contactform_inner {
	display: flex;
	justify-content: space-between;
	text-align: center;
	border-bottom: 1px dotted #707070;
	padding: 22px 28px;
	align-items: center;
    position: relative;
}

.contactform_inner p {
	font-size: 16px;
	width: 204px;
	text-align: left;
	
}

.contactform_inner span {
	color: #FF0000;
	font-size: 12px;
	padding-left: 65px;
	float: right;
}

.contactform_inner input {
	width: 325px;
	height: 24px;
}


.contactform_inner textarea {
	width: 325px;
	height: 120px;
}

.form {
	margin-bottom: 72px;
}
#mw_wp_form_mw-wp-form-306 .mw_wp_form .error {
    font-size: 11px;
    color: #B70000;
    display: block;
    position: absolute;
    float: none;
    top: 45px;
    right: 25px;
}
/*コンタクトフォームの送信ボタン*/

.contact_submit_btn {
    width: 273px;
    height: auto;
    color: #000;
    font-size: 14px;
    letter-spacing: 3.6px;
    padding: 13px 83px;
    outline: 1px solid #000;
    display: block;
    margin: 0 auto;
    margin-bottom: 145px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background-image: url(../img/btn-tri.svg);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 240px center;
}
.contact_back_btn {
    width: 273px;
    height: auto;
    color: #000;
    font-size: 14px;
    letter-spacing: 3.6px;
    padding: 13px 83px;
    outline: 1px solid #000;
    display: block;
    margin: 0 auto;
    margin-bottom: 145px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background-image: url(../img/btn-tri_back.svg);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 240px center;
}
.btnBox{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactform .btnBox input{
    border: none;
    font-size: 14px;
}

.contact-thanks .doubleline {
    width: 216px;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    padding: 15px 0px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
}

/*事業内容ページ*/
.ser_intro{
	font-size: 18px;
	line-height:2.05;
	letter-spacing: 0.12em;
	font-weight: bold;
	text-align: center;
	margin: 50px auto;
}
.ser_subTitle {
	position: relative;
	padding: 15px 25px;
	text-align: center;
	font-size: 24px;
	letter-spacing: 0.24em;
  }
  
  .ser_subTitle:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: #707070;
  }
  
  .ser_subTitle span {
	position: relative;
	padding: 0 1em;
	background: #fff;
  }
  .ser_ProductIntro{
	  font-size: 18px;
	  letter-spacing: 0.12em;
	  text-align: center;
	  font-weight: 200;
	  line-height:2.05;
	  padding: 30px 0;
  }
  .ser_ProductItems{
	margin: 100px calc(50% - 50vw) 0;
	width: 100vw;
  }
  .ser_ProductItem{
    margin: 0 0 300px;
	  background-size:cover;
	  background-position: center;
	  width: 100%;
	  background-repeat: no-repeat;
	  height: 315px;
	  text-align: center;
  }
  .ser_ProductItem:last-child{
    margin: 0 0 220px;
  }
  .ser_ProductItem.Item01{
	background-image: url(../img/ser_ProductItem01.jpg);
  }
  .ser_ProductItem.Item02{
	background-image: url(../img/ser_ProductItem02.jpg);
  }
  .ser_ProductItem.Item03{
	background-image: url(../img/ser_ProductItem03.jpg);
  }
  .ser_ProductItem h2{
	  font-size: 28px;
	  font-weight: bold;
	  color: #fff;
	  letter-spacing: 0.36em;
	  padding: 57px 0;
  }
  .ser_ProductItemContent{
    background-color: #fff;
    box-shadow: 4px 3px 10px rgb(0 0 0 / 48%);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 23px 32px;
	position: relative;
}
.ser_ProductItemContentImg{
	width: 100%;
	max-width: 432px;
}
.ser_ProductItemContentTx{
	font-size: 16px;
	font-weight: 100;
	line-height: 2.3;
	letter-spacing: 0.24em;
	margin: 0 0 0 25px;
	max-width: 543px;
	text-align: left;
}
.ser_ProductItemContent span{
    font-size: 10px;
    position: absolute;
    bottom: 7px;
    left: 320px;
}
.ser_contactBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 717px;
	padding: 50px 0;
	border-top: 1px #707070 solid;
	margin: 0 auto;
}
.ser_makeTitle{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 2;
	letter-spacing: 0.24em;
	margin: 50px auto 0;
}
.ser_makeImg{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1100px;
	width: 100%;
	margin: 50px auto;
}
.ser_makeImg img{
	max-width: 220px;
}
.ser_makeTx{
	font-size: 18px;
	letter-spacing: 0.24em;
	line-height: 2;
	font-weight: bold;
	text-align: center;
    padding: 70px 0;
    display: block;
}
.ser_BusiBox{
	max-width: 1100px;
	width: 100%;
	margin: 80px auto 0;
}
.ser_BusiBox:last-child{
	margin: 80px auto 150px;
}
.ser_BusiBox h2{
}
.ser_BusiContent{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.ser_BusiContent img{
	max-width: 525px;
}
.ser_BusiContent p{
	text-align: left;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.06em;
    max-width: 525px;
}
.ser_BusiContent.Direction01{
	flex-direction: row-reverse;
}
.ser_BusiBox_title{
	text-align: center;
}
.ser_BusiBox_title h2{
	font-weight: bold;
	font-size: 24px;
	border-bottom: 1px solid #000;
	padding: 0 0 5px;
	margin: 0 auto 25px;
	display: inline-block;
}

/*製品情報詳細*/
#productUnder .product_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -8px;
    width: 100%;
    height: 1px;
    background: #fff;
}
#productUnder .product_head_ttl h1{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.4;
}
#productUnder .product_head_ttl {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2.4px;
    line-height: 36px;
    left: 250px;
    text-align: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.product_grp{
	text-align: center;
	margin: 80px auto 0;
}
.product_grp_title{
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.24em;
	border-bottom: 1px solid #000;
	padding: 0 0 10px;
	font-weight: bold;
	display: inline-block;
}
.product_content{
	margin: 50px auto 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.product_detail{
	width: 100%;
	max-width: 500px;
	margin: 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.product_img-pdf{
	max-width: 300px;
	width: 100%;
}
.product_pdf{
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #0055FF;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.24em;
	padding: 10px 0 0;
}
.product_pdf a{
	color: #0055FF;
    margin: 0 20px 0 0;
}
.product_info{
	max-width: 178px;
	width: 100%;
	margin: 0 0 0 20px;
	text-align: left;
}
.product_info h3{
	font-weight: bold;
	font-size: 18px;
    padding: 0 0 10px;
	border-bottom: 1px solid #000;
}
.product_info p{
	font-weight: normal;
	font-size: 14px;
	line-height: 1.7;
	padding: 5px 0 0;
}
#glafStatus.product_detail {
    width: 100%;
    max-width: 500px;
    margin: 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
#glafStatus .product_info {
    max-width: 100%;
    width: 100%;
    margin: 15px 0 0 20px;
    text-align: left;
}
#glafStatus .product_img-pdf{
    max-width: 300px;
    width: 100%;
    text-align: left;
    margin: 0 auto 0 0;
}

.product_description table,.product_description td,.product_description th {
    border-collapse: collapse;
    border:1px solid #333;
}
#glafStatus .product_description table{
	width: 100%;
}
.product_description td{
	padding: 5px 0;
    vertical-align: middle;
}
.cat-pdfBox{
	margin: 0 auto 50px;
	max-width: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cat-pdfBox a{
	color: #0055FF;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.24em;
	padding: 10px 0 0;
	margin: 0 10px;
}
.cat-pdfBox p{
	color: #000;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.24em;
	padding: 10px 0 0;
	margin: 0 10px;
}

.system-content{
	margin: 50px auto 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.system-content img{
	width: 650px;
}
.system-content .system-content-info{
    width: 470px;
	text-align: left;
}
.system-content .system-content-info h3{
	font-size: 16px;
	font-weight: bold;
	margin: 0 auto 30px;
}
.system-content .system-content-info p{
	font-size: 14px;
	font-weight: normal;
	margin: 0 auto 30px;
	line-height: 1.4;
}
.system-content .system-content-info ul{
	font-size: 14px;
	font-weight: normal;
	margin: 0 auto 30px;
	list-style: none;
	line-height: 1.4;
}
.system-table{
	border: 1px solid #000;
}
.system-table table {
    border-collapse:  collapse; /* セルの線を重ねる */
}
.system-table th,.system-table td {
    border: solid 1px;  /* 枠線指定 */
    padding: 10px;      /* 余白指定 */
	vertical-align: middle;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}
.system-head{
	background-color: #cacaca;
}
.product_air_title::after{
	content: "";
	height: 1px;
    width: 150px;
	background-color: #000;
	display: block;
	margin: 0 auto;
}
.product_air_title::before{
	content: "";
	height: 1px;
    width: 150px;
	background-color: #000;
	display: block;
	margin: 0 auto;
}
.product_air_title{
	text-align: center;
	margin: 0 auto 100px;
}
.product_air_title h3{
	font-size: 24px;
	font-weight: bold;
	padding: 10px 0;
	letter-spacing: 0.24em;
}
.air-content{
	display: flex;
	justify-content:space-between;
	align-items: flex-start;
    margin: 0 auto 100px;

}
.air-content .air-glaf{
	width: 680px;
}
.air-content .air-content-info{
    width: 310px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 520px;
    margin: 20px 0 0;
    display: flex;
}
.air-content .air-content-info p{
	font-size: 14px;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-align: left;
}

.newsSide {
    width: 250px;
}
.widget {
    margin-bottom: 50px;
}
.side_title {
    margin-bottom: 10px;
    padding: 22px 20px;
    background-color: #0092E5;
    color: #fff;
    font-family: "UD Reimin Bold";
    font-size: 15px;
  letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side_title span{
  font-size: 12px;
  font-family: "UD Shin Go Medium";
  letter-spacing: 0.1em;
}
.side_content {
}
.side_list li {
    border-bottom: 1px solid #D9DADA;
	list-style: none;
}
.side_list a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 22px 10px;
    color: #666464;
    letter-spacing: .055em;
    font-size: 12px;
}
.side_list a span {
    display: inline-block;
    width: 136px;
  font-family: "UD Shin Go Medium";
    font-size: 11px;
}
.sideArchive_list {
}
.sideArchive_parent:last-child {
    border-bottom: 0;
	list-style: none;
}
.sideArchive_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 22px 10px;
    color: #666464;
    letter-spacing: .055em;
    cursor: pointer;
    font-size: 13px;
}
.sideArchive_item:after {
    -webkit-transition: all .2s;
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 15px;
    background: url(../img/cmn_arrow05.svg) 0 0/contain no-repeat;
    content: "";
    transition: all .2s;
    -webkit-transform: rotate(
-90deg
);
    transform: rotate(
-90deg
);
}
.sideArchive_child {
    -webkit-transition: all .2s;
    height: 0;
    overflow: hidden;
    transition: all .2s;
}
.sideArchive_child li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px dotted #666464;
    color: #666464;
    letter-spacing: .055em;
	list-style: none;
}
.sideArchive_child li a {
    display: block;
    padding: 22px 20px 22px 35px;
    color: #666464;
}
.sideArchive_child.open {
    height: auto;
}
.sideArchive_item.open:after {
    -webkit-transform: rotate(
0deg
);
    transform: rotate(
0deg
);
}
.blog-archive {
    max-width: 90%;
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
}
.blog-archive .blog-box {
    margin: 0 0 60px;
}
.blog-box article:last-child {
    border-bottom: none;
}
.blog-box article {
    border-bottom: 1px solid #D9DADA;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.blog-box .blog-cat {
    width: 120px;
    padding: 5px 10px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.17em;
    color: #fff;
    margin: 0 15px 0 0;

}
.blog-box article time {
    margin: 0 30px 0 0;
    letter-spacing: 0.05em;
    color: #666464;
}
.blog-link {
    width: 604px;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.blog-box .blog-cat.notice {
    background-color: #707070;
}
.blog-box .blog-cat.study-meeting{
    background-color: #008FD9;
}
.blog-box .blog-cat.technical-report{
    background-color: #FF7700;
}
.blog-box .blog-cat.technical-data {
    background-color: #8E8E8E;
}
.blog-box {
    max-width: 700px;
    width: 100%;
}
.single .blog-box article {
    padding: 0 0 60px;
    border: none;
}
.post_content h3.post_title {
    font-size: 27px;
    color: #008FD9;
    line-height: 1.5;
    letter-spacing: 0.15em;
    padding: 0 0 60px;
}
.post_content p {
    line-height: 2.6;
    font-size: 15px;
    letter-spacing: 0.09em;
}
.sitemap .doubleline{
	width: 220px;
}
.site-map_product h4{
    font-size: 18px;
    margin: 30px 0 10px;
}
.site-map_product li{
	margin: 0 0 0 15px;
	font-size: 14px;
	line-height: 1.8;
}
.site-map_product a{
	transition: 0.3s;
}
.site-map_product a:hover{
	opacity: 0.6;
}
.site-map_product{
    margin: 0 auto 100px;
}
.privacy .the_content{
	margin: 50px auto;
}
.privacy .the_content h4{
	font-size: 21px;
	margin: 30px auto 10px;
	font-weight: bold;
}
.privacy .the_content p{
	font-size: 16px;
	line-height: 1.6;
	margin:10px auto;
}
.privacy .the_content p a{
	color: #0693e3;
	font-size: 18px;
	border-bottom: 1px solid #0693e3;
	letter-spacing: 0.12em;
	margin: 10px auto 10px;
	font-weight: bold;
	display: inline-block;
}
.privacy .the_content ol{
	font-size: 16px;
	line-height: 1.6;
}
.privacy .doubleline{
	width: 310px;
}
.is-pc{
	display: block!important;
}
.is-sp{
	display: none!important;
}
@media screen and (max-width: 768px){
.is-pc{
	display: none!important;
}
.is-sp{
	display: block!important;
}

.nav_header {
    width: 100%;
    max-width: 535px;
}
.nav_header {
    -webkit-transition: .3s;
    z-index: 9999;
    position: absolute;
    position: fixed;
    top: 18vw;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,50,150,.8);
    text-align: center;
    transition: .3s;
}
.nav_header.is-open {
    right: 0;
}
nav.nav_header ul {
    -webkit-box-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-family: Noto Sans JP,sans-serif;
    letter-spacing: .15em;
}
nav.nav_header ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
nav.nav_header ul li {
    display: block;
    width: 100%;
    padding: 12vw 0;
}
nav.nav_header ul a {
    font-size: 5.2vw;
    color: #fff;
}
.btn_hamburger {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 10vw;
    height: 100%;
}
.btn_hamburger {
    position: relative;
    width: 6vw;
}
.btn_hamburger span {
    -webkit-transition: all .3s;
    display: block;
    position: absolute;
    top: 50%;
    width: 6vw;
    height: .4vw;
    margin: auto;
    border-radius: .5vw;
    background-color: #000;
    transition: all .3s;
}
.btn_hamburger-top {
    -webkit-transform: rotate(
0deg
) translateY(-2vw);
    transform: rotate(
0deg
) translateY(-2vw);
}
.btn_hamburger-bottom {
    -webkit-transform: rotate(
0deg
) translateY(2vw);
    transform: rotate(
0deg
) translateY(2vw);
}
.btn_hamburger.is-open .btn_hamburger-top {
    -webkit-transform: rotate(
-45deg
) translateY(0);
    transform: rotate(
-45deg
) translateY(0);
}
.btn_hamburger.is-open .btn_hamburger-middle {
    background-color: transparent;
}
.btn_hamburger.is-open .btn_hamburger-bottom {
    -webkit-transform: rotate(
45deg
) translateY(0);
    transform: rotate(
45deg
) translateY(0);
}

#drop.list_nav_header li.firstMenu {
    padding: 5vw 10vw;
    margin: auto;
}
.container_a {
    max-width: 95%;
    margin: 0 auto;
}
.area_logo_header img {
    height: auto;
    vertical-align: bottom;
    width: 50vw;
}
.header {
    padding: 5vw 0;
    align-items: center;
}
.area_top_view {
    width: 100%;
    margin: -4vw auto 0;
    position: relative;
}
.mv-title img{
    width: 40vw;
}

.mv-title {
    position: absolute;
    left: 10vw;
    top: 0px;
    bottom: 0;
    margin: auto;
    z-index: 99;
    height: 7vw;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 4vw;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 1vw;
    right: auto;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 1vw;
    left: auto;
}
.area_news {
    padding-top: 5vw;
}
.container_b {
    max-width: 95%;
    margin: 0 auto;
}
.head_news h2::after {
    content: '';
    position: absolute;
    bottom: -2vw;
    left: 0px;
    width: 95vw;
    height: 1px;
    background: #000;
}
.head_news h2 {
    position: relative;
    display: inline-block;
    font-size: 6vw;
}
.head_news p {
    color: #0092E5;
    padding-top: 4vw;
    letter-spacing: 3px;
    font-size: 3.2vw;
}
.news_conteiner {
    /* border-collapse: separate; */
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-end;
}
.article_link {
    display: flex;
    align-items: baseline;
    padding-top: 5vw;
}
.article_link {
    display: flex;
    align-items: center;
    padding-top: 5vw;
    justify-content: flex-start;
}
.article_title {
    font-size: 3.8vw;
    letter-spacing: 2.4px;
    padding-left: 5vw;
    line-height: 1.4;
}
.article_date {
    font-size: 6vw;
    padding-left: 0vw;
    font-family: 'din-cb';
}
.article_year {
    font-size: 6vw;
    font-family: 'din-cb';
}
.news_right {
    width: 30vw;
    padding-top: 5vw;
}
.news_more_ttl {
    color: #CECECE;
    font-size: 7vw;
    font-family: 'din-cb';
    letter-spacing: 3.6px;
    position: relative;
}
.news_more_link {
    color: #CECECE;
    font-size: 3.2vw;
    font-family: 'M PLUS 1p', sans-serif;
    letter-spacing: 3.6px;
    display: block;
    padding-top: 5vw;
}
.arrow::before {
    content: '';
    position: absolute;
    bottom: -2vw;
    left: 0px;
    width: 24vw;
    height: 1px;
    background: #CECECE;
}
.arrow::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 1px #CECECE;
    border-right: solid 1px #CECECE;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
    position: absolute;
    bottom: -3.2vw;
    left: unset;
    margin-top: 0;
    right: -12vw;
}
.news_right {
    width: 30vw;
    padding-top: 5vw;
    margin: 0 0vw 0 0;
}
.news_more_ttl {
    color: #CECECE;
    font-size: 5vw;
    font-family: 'din-cb';
    letter-spacing: 3.6px;
    position: relative;
}
.head_product h2 {
    text-align: center;
    margin-top: 5vw;
    letter-spacing: 0.28em;
    font-size: 6.2vw;
}
.head_product p {
    text-align: center;
    padding-top: 2vw;
    letter-spacing: 3.6px;
    margin-bottom: 5vw;
    font-size: 3.8vw;
}
.body_product {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.body_product img {
    width: 100%;
    height: auto;
    filter: brightness(0.7);
    transition: 0.3s;
}
.box_text {
    position: absolute;
    top: 13vw;
    left: 0;
    right: 0;
    width: 100%;
}
.box_text h5 {
    color: #fff;
    font-size: 3.2vw;
    letter-spacing: 3.6px;
    width: 95%;
    border: solid 1px #fff;
    padding: 2vw 0;
    margin: 0 auto;
    text-align: center;
}
.box_text p {
    color: #fff;
    font-size: 2.8vw;
    text-align: center;
    padding-top: 3vw;
    font-family: 'din-cb',sans-serif;
    letter-spacing: 0.12em;
}
.body_product .box {
    position: relative;
    display: inline-block;
    width: 48.5%;
    margin: 0 0 3vw;
}
.area_logo_footer::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #000;
}
.row::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 1px;
    background: #000;
}
.main_wrapper {
    width: 100%;
    padding-top: 5vw;
    margin: 0 auto;
}
.content_inner h3{
    font-weight: 400;
    color: #fff;
    text-align: center;
    font-size: 3.6vw;
    letter-spacing: 3.7px;
}
.content_inner p {
    padding-top: 2vw;
    font-family: 'din-cb',sans-serif;
    font-size: 2.6vw;
}
.content_inner {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 35%;
    height: 100%;
}
.main_more_ttl {
    color: #fff;
    font-size: 2.5vw;
    font-family: 'din-cb',sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3.6px;
    display: block;
    text-align: left;
    padding-top: 1vw;
    position: absolute;
    padding-left: 17vw;
    bottom: 3vw;
}
.content_inner_arrow {
    position: absolute;
    width: 40%;
    display: block;
    margin: 0 auto;
    bottom: 2.5vw;
    right: 1vw;
}
.content_inner_arrow::after {
    content: '';
    width: 1.5vw;
    height: 1.5vw;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
    position: absolute;
    bottom: -1.2vw;
    right: 0;
}
.recruit_inner {
    width: 100%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 100%;
}
.text_recruit {
    text-align: center;
    color: #fff;
    font-size: 2.4vw;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-family: a-otf-midashi-go-mb31-pr6n,sans-serif;
    font-weight: 200;
    font-style: normal;
    margin: 0 auto;
    width: 90%;
}
.btn_recruit {
    text-align: center;
    margin-top: 3.5vw;
}
.btn_recruit a {
    padding: 1vw 8vw;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 2.6vw;
    font-family: 'M PLUS 1p', sans-serif;
    letter-spacing: 3.6px;
    text-align: center;
    margin: 0 auto;
}
.btn_recruit a span {
    color: #fff;
    font-size: 2.4vw;
    font-family: 'din-cb',sans-serif;
    font-weight: 300;
    font-style: normal;
    padding-left: 4vw;
    display: inline-block;
    position: relative;
}
.btn_recruit a span::after {
    content: '';
    width: 1vw;
    height: 1vw;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
    position: absolute;
    top: 0.8vw;
    right: -5vw;
    margin-top: 0;
}
.nav_footer h4 {
    padding-bottom: 9px;
    letter-spacing: 0.12em;
    font-size: 2.7vw;
}
.nav_footer ul li {
    font-size: 2.6vw;
}
.nav_footer {
    display: flex;
    justify-content: flex-start;
    padding: 12vw 0;
    flex-wrap: wrap;
}
.nav_footer ul {
    padding-left: 1vw;
    line-height: 1.4;
    width: 31vw;
    margin: 0 auto 5vw;
}
.nav_footer > div > h4 {
    padding-bottom: 9px;
    letter-spacing: 0.12em;
    font-size: 2.7vw;
    margin: 0 5vw 0 0;
}
.nav_footer_product ul .subTitle-nav {
    font-size: 2.7vw;
    margin: 0 0 0 0vw;
    padding-bottom: 1vw;
}
.nav_footer_product ul li {
    font-size: 2.6vw;
}
.nav_footer_product ul {
    line-height: 1.4;
    padding-left: 0vw;
    margin: 0 2vw 7vw 0;
    width: 47%;
}
.branch {
    display: flex;
    flex-direction: column;
}
.branch {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.area_ad_nagoya {
    padding-right: 0;
}
.area_ad_nagoya p, .area_ad_tokyo p {
    font-size: 2.8vw;
    letter-spacing: 2.4px;
    margin-top: 1vw;
    line-height: 1.5;
    margin-bottom: 4vw;
}
.mg {
    padding-left: 23.8vw;
}
.area_logo_footer {
    padding: 5vw 0;
    position: relative;
}
.footer-bottom {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 5vw;
}
.copyright {
    padding: 0 3vw;
}
.copyright p {
    font-family: 'din-cb',sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 2.6vw;
    line-height: 1.2;
    margin: 3vw 0;
}
.row {
    display: flex;
    justify-content: flex-end;
    line-height: unset;
    position: relative;
}
.links{
    width: 50vw;
    margin: 3vw 0;
}
.links a {
    font-size: 3.2vw;
    padding-left: 0;
    line-height: 1;
    display: block;
    margin: 0 auto 1vw;
}
.nav_footerBottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}
#drop li ul {
    list-style: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 2.5%;
    width: 50%;
    margin: 0 0 0 0;
    padding: 0;
}
#drop > li:hover > ul > li {
    overflow: visible;
    height: auto;
}
#drop li ul li a {
    padding: 3vw 3vw;
    background: rgba(0,0,0,0.63);
    text-align: left;
    font-size: 3.2vw;
    font-weight: normal;
    color: #fff;
    border: none;
}
#drop li ul li ul {
    top: 0;
    left: 100%;
    width: 90%;
}
#drop li ul li:hover > ul > li {
    overflow: visible;
    height: auto;
}
.company_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.company_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.company_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.company_head_img {
    position: relative;
    text-align: unset;
    margin-bottom: 10vw;
}
.doubleline {
    width: 40vw;
    font-size: 3.8vw;
    text-align: center;
    margin: 0 auto;
    padding: 2vw 0px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
}
.ser_intro {
    font-size: 3.2vw;
    line-height: 2.05;
    letter-spacing: 0.12em;
    font-weight: bold;
    text-align: center;
    margin: 10vw auto;
    width: 100%;
}
.ser_subTitle {
    position: relative;
    padding: 5vw 0 5vw;
    text-align: center;
    font-size: 3.6vw;
    letter-spacing: 0.24em;
}
.ser_ProductIntro {
    font-size: 3.2vw;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: 200;
    line-height: 2.05;
    padding: 5vw 0;
}
.ser_ProductItems {
    margin: 10vw calc(50% - 50vw) 0;
    width: 100vw;
}
.ser_ProductItem h2 {
    font-size: 4.6vw;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.36em;
    padding: 10vw 0 8vw;
}
.ser_ProductItemContent {
    background-color: #fff;
    box-shadow: 4px 3px 10px rgb(0 0 0 / 48%);
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw 3vw;
    position: relative;
    flex-direction: column;
}
.ser_ProductItemContentTx {
    font-size: 3.2vw;
    font-weight: 100;
    line-height: 1.4;
    letter-spacing: 0.24em;
    margin: 2vw auto 0;
    max-width: 100%;
    text-align: left;
}
.ser_ProductItem {
    margin: 0 0 70vw;
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    height: 45vw;
    text-align: center;
}
.ser_ProductItemContent span {
    font-size: 2.4vw;
    position: absolute;
    bottom: 24vw;
    left: unset;
    background-color: #fff;
    padding: 1vw;
    right: 3vw;
}
.ser_contactBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 10vw 0 5vw;
    border-top: 1px #707070 solid;
    margin: 0 auto;
    flex-direction: column;
}
.ser_contactBox a{
    margin: 0 auto 5vw;
}
.ser_makeTitle {
    text-align: center;
    font-size: 4.2vw;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.24em;
    margin: 5vw auto 0;
}
.ser_ProductItem:last-child {
    margin: 0 0 70vw;
}
.ser_makeImg {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 95%;
    width: 100%;
    margin: 10vw auto;
    flex-wrap: wrap;
}
.ser_makeImg img {
    max-width: 30vw;
    height: auto;
}
.ser_makeTx {
    font-size: 3.2vw;
    letter-spacing: 0.24em;
    line-height: 2;
    font-weight: bold;
    text-align: center;
    padding: 5vw 0;
    display: block;
}
.ser_BusiBox {
    max-width: 100%;
    width: 100%;
    margin: 5vw auto 10vw;
    border-bottom: 1px solid #cacaca;
    padding: 0 0 5vw;
}
.ser_BusiBox_title h2 {
    font-weight: bold;
    font-size: 4.6vw;
    border-bottom: 1px solid #000;
    padding: 0 0 5px;
    margin: 0 auto 25px;
    display: inline-block;
}
.ser_BusiContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.ser_BusiContent img {
    max-width: 100%;
}
.ser_BusiContent p {
    text-align: left;
    font-size: 3.2vw;
    line-height: 1.5;
    letter-spacing: 0.06em;
    max-width: 100%;
    background-color: rgba(255,255,255,0.8);
    margin: -15vw 2.5vw 0;
    padding: 2.5vw;
}
.ser_BusiContent.Direction01 {
    flex-direction: column;
}
.ser_BusiBox:last-child {
    margin: 5vw auto 10vw;
}
.ceo_img {
    width: 80%;
    height: auto;
    margin-top: 10vw;
}
.sign {
    text-align: right;
    line-height: unset;
    padding-bottom: 0vw;
    font-size: unset;
}
.sign img{
    width: 40vw;
}
.ceo_greeting_text {
    width: 100%;
    height: auto;
    background-color: #fff;
    opacity: 0.7;
    font-size: 3.2vw;
    padding: 5vw 0;
    text-align: left;
    line-height: 1.8;
}
.about_history {
    margin-top: 0;
    margin-bottom: 10vw;
    padding-top: 61vw;
}
.history_table {
    margin-top: 5vw;
}
.date {
    font-size: 6vw;
    font-family: 'din-cb';
    padding: 0vw 2vw 0 0;
}
.text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1vw;
    width: 4vw;
    height: 1px;
    background: #000;
    bottom: 0;
    margin: auto;
}
.history_table tr{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5vw 0;
}
.history_table .text {
    font-size: 2.6vw;
    text-align: left;
    position: relative;
    padding-left: 7vw;
    line-height: 1.4;
    vertical-align: middle;
}
.companyinfo_table {
    margin: 34px auto 10vw;
    width: 100%;
}
.label {
    font-size: 3.6vw;
    padding: 3vw 0vw;
    width: 20vw;
}
.companyinfo_table_tr::after {
    content: '';
    position: absolute;
    top: 100;
    left: 2.5%;
    right: 2.5%;
    width: 95%;
    height: 1px;
    background: #C9C9C9;
    display: block;
    margin: 0 auto;
}
.label_text {
    font-size: 3.2vw;
    padding: 5vw 2vw;
    line-height: 1.4;
    letter-spacing: 1.85px;
}
.label_text {
    font-size: 3.2vw;
    padding: 5vw 2vw;
    line-height: 1.4;
    letter-spacing: 1.85px;
    word-break: break-word;
}
.label_text_address {
    padding: 2vw;
}
.companyinfo_td_inner {
    display: flex;
    flex-direction: column;
}
.label_text_address p {
    width: auto;
    font-size: 3.6vw;
    letter-spacing: 1.85px;
    line-height: 1.4;
    font-weight: bold;
}
.text_address {
    font-size: 3.2vw;
    letter-spacing: 2.4px;
    line-height: 1.4;
}
.access_area {
    display: flex;
    justify-content: space-between;
    margin-top: 10vw;
    flex-direction: column;
}
.about_companyinfo {
    max-width: 100%;
    margin: 0 auto 20vw;
}
.map {
    width: 100%;
    height: 70vw;
    border: 0;
}
.headquater h5, .branch_kyoto h5 {
    font-size: 4.2vw;
    font-weight: 300;
    padding-top: 2vw;
    padding-bottom: 2vw;
}
.headquater p, .branch_kyoto p {
    font-size: 3.2vw;
    line-height: 1.4;
    margin: 0 auto 10vw;
}
.access {
    margin-bottom: 10vw;
}
.aboutFixMenu {
    width: 22vw;
    position: fixed;
    top: 350px;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
}
.aboutFixMenu-inner a span {
    background-color: #fff;
    height: 1px;
    width: 2vw;
    margin: 0 1vw 0 0;
    display: block;
    z-index: 9999999;
}
.product_head_img {
    position: relative;
    margin-bottom: 10vw;
    text-align: unset;
}
.product_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.product_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.product_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.technicaldata_head_img {
    position: relative;
    text-align: unset;
    margin-bottom: 10vw;
}
.technicaldata_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.technicaldata_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.technicaldata_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.contact_head_img {
    position: relative;
    text-align: unset;
    margin-bottom: 10vw;
}
.contact_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    right: 0;
    background-color: rgba(0,0,0,0.3);
}
.contact_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    right: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.contact_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.recruitpage_head_img {
    position: relative;
    text-align: unset;
    margin-bottom: 10vw;
}
.recruitpage_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.recruitpage_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.recruitpage_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.recruitpage_head_img {
    position: relative;
    text-align: unset;
    margin-bottom: 10vw;
}
.recruitpage_head_img .contaoner {
    width: 50%;
    height: 18.27vw;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.recruitpage_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.recruitpage_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
#productUnder .product_head_ttl h1::after {
    content: '';
    position: absolute;
    bottom: 0vw;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
#productUnder .product_head_ttl h1{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.4;
}
#productUnder .product_head_ttl {
    color: #fff;
    font-size: 2.6vw;
    letter-spacing: 2.4px;
    line-height: 1.8;
    left: 2vw;
    text-align: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.product_air_title {
    text-align: center;
    margin: 0 auto 10vw;
}
.product_air_title h3 {
    font-size: 4.6vw;
    font-weight: bold;
    padding: 2vw 0;
    letter-spacing: 0.24em;
}
.air-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10vw;
    flex-direction: column;
}
.air-content .air-glaf {
    width: 100%;
}
.air-content .air-content-info {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;
    margin: 5vw 0 0;
    display: flex;
}
.air-content .air-content-info p {
    font-size: 3.2vw;
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-align: left;
    margin: 0 1vw 0 0;
}
.air-content .air-content-info img{
    width: 30vw;
}
.product_tag {
    font-size: 4.2vw;
    text-align: center;
    margin: 0 auto;
    padding: 2vw 0px;
    border-bottom: 1px solid #707070;
    letter-spacing: 0.24em;
    display: inline-block;
}
.servo_area {
    margin-top: 10vw;
}
.directdrive {
    display: flex;
    margin-bottom: 10vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.box_directdrive_img, .box_forcefeedback_img, .box_cylinder_img {
    margin-right: 0;
    position: relative;
}
.box_directdrive_text h5, .box_forcefeedback_text h5, .box_cylinder_text h5 {
    color: #fff;
    font-size: 4.2vw;
    text-align: center;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.24em;
    display: inline-block;
}
.box_directdrive_text h5::before {
    color: #fff;
    font-size: unset;
    letter-spacing: 3.6px;
    text-align: center;
    position: absolute;
    content: '';
    bottom: 2vw;
    left: -7vw;
    width: 4vw;
    height: 1px;
    background: #fff;
}
.box_directdrive_text h5::after {
    color: #fff;
    font-size: unset;
    letter-spacing: 3.6px;
    text-align: center;
    position: absolute;
    content: '';
    bottom: 2vw;
    right: -7vw;
    width: 4vw;
    height: 1px;
    background: #fff;
}
.box_directdrive_text p, .box_forcefeedback_text p, .box_cylinder_text p {
    color: #fff;
    font-size: 3.2vw;
    text-align: center;
    margin: 2vw auto 0;
}
.directdrive_text h5, .forcefeedback_text h5, .cylinder_text h5 {
    font-size: 4.2vw;
    padding-bottom: 2vw;
    text-align: center;
    font-weight: 300;
    padding-top: 2vw;
}
.directdrive_text p, .forcefeedback_text p, .cylinder_text p {
    font-size: 3.2vw;
    letter-spacing: 1.2px;
    line-height: 1.4;
    width: 100%;
    border-bottom: 1px solid #cacaca;
    padding: 0 0 5vw;
    margin: 0 0;
}
.product_grp {
    text-align: center;
    margin: 10vw auto 0;
}
.product_content {
    margin: 5vw auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.product_grp_title {
    text-align: center;
    font-size: 4.2vw;
    letter-spacing: 0.24em;
    border-bottom: 1px solid #000;
    padding: 0 0 10px;
    font-weight: bold;
    display: inline-block;
}
.product_detail {
    width: 100%;
    max-width: 100%;
    margin: 0 0 10vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.product_img-pdf {
    max-width: 45vw;
    width: 100%;
}
.product_pdf {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #0055FF;
    font-size: 2.6vw;
    font-weight: bold;
    letter-spacing: 0.24em;
    padding: 10px 0 0;
}
.product_info {
    max-width: 47vw;
    width: 100%;
    margin: 0 0 0 3vw;
    text-align: left;
}
.product_info h3 {
    font-weight: bold;
    font-size: 3.6vw;
    padding: 0 0 2vw;
    border-bottom: 1px solid #000;
}
.product_info p {
    font-weight: normal;
    font-size: 2.6vw;
    line-height: 1.7;
    padding: 1vw 0 0;
}
.cat-pdfBox {
    margin: 0 auto 10vw;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cat-pdfBox p {
    color: #000;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0.24em;
    padding: 2vw 0 0;
    margin: 0 2vw;
}
#glafStatus .product_img-pdf {
    max-width: 45vw;
    width: 100%;
    text-align: left;
    margin: 0 auto 0 0;
}
#glafStatus .product_info {
    max-width: 100%;
    width: 100%;
    margin: 5vw auto;
    text-align: left;
}
.container_d {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.subTitle p {
    color: #000;
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
    font-family: 'din-cb',sans-serif;
    font-size: 4.2vw;
    letter-spacing: 0.22em;
    display: inline-block;
}
.subTitle h3 {
    color: #000;
    padding-top: 12px;
    font-size: 3.2vw;
}
.technicaldata_contents {
    text-align: center;
    margin-top: 10vw;
    margin-bottom: 10vw;
}
.technicaldata_article {
    text-align: center;
    border-bottom: 2px dotted #707070;
    padding: 3vw 0px;
    vertical-align: middle;
    display: block;
}
.technicaldata_article_link {
    display: block;
    align-items: center;
    text-align: left;
}
.technicaldata_article_label {
    color: #fff;
    font-size: 2.6vw;
    margin-left: 3vw;
    background-color: #8E8E8E;
    padding: 1vw 2vw;
    vertical-align: middle;
}
.technicaldata_article .article_year {
    font-size: 6vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.technicaldata_article .article_date {
    font-size: 6vw;
    padding-left: 0vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.technicaldata_article .article_title {
    font-size: 3.8vw;
    letter-spacing: 2.4px;
    padding-left: 0vw;
    line-height: 1.4;
    display: block;
    padding-top: 3vw;
}

.technicalreport_contents {
    text-align: center;
    margin-top: 10vw;
    margin-bottom: 10vw;
}
.technicalreport_article {
    text-align: center;
    border-bottom: 2px dotted #707070;
    padding: 3vw 0px;
    vertical-align: middle;
    display: block;
}
.technicalreport_article_link {
    display: block;
    align-items: center;
    text-align: left;
}
.technicalreport_article_label {
    color: #fff;
    font-size: 2.6vw;
    margin-left: 3vw;
    padding: 1vw 2vw;
    vertical-align: middle;
}
.technicalreport_article .article_year {
    font-size: 6vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.technicalreport_article .article_date {
    font-size: 6vw;
    padding-left: 0vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.technicalreport_article .article_title {
    font-size: 3.8vw;
    letter-spacing: 2.4px;
    padding-left: 0vw;
    line-height: 1.4;
    display: block;
    padding-top: 3vw;
}

.studymtg_contents {
    text-align: center;
    margin-top: 10vw;
    margin-bottom: 10vw;
}
.studymtg_article {
    text-align: center;
    padding: 3vw 0px;
    vertical-align: middle;
    display: block;
}
.studymtg_article_link {
    display: block;
    align-items: center;
    text-align: left;
}
.studymtg_article_label {
    color: #fff;
    font-size: 2.6vw;
    margin-left: 3vw;
    padding: 1vw 2vw;
    vertical-align: middle;
}
.studymtg_article .article_year {
    font-size: 6vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.studymtg_article .article_date {
    font-size: 6vw;
    padding-left: 0vw;
    font-family: 'din-cb';
    vertical-align: middle;
}
.studymtg_article .article_title {
    font-size: 3.8vw;
    letter-spacing: 2.4px;
    padding-left: 0vw;
    line-height: 1.4;
    display: block;
    padding-top: 3vw;
}
.recruitpage_inner h3 {
    margin: 0 auto;
    text-align: center;
    padding-top: 10vw;
    padding-bottom: 2vw;
    border-bottom: 1px solid #000;
    width: 40vw;
    font-size: 4.2vw;
    letter-spacing: 2.4px;
}
.recruit-navi {
    font-size: 3.2vw;
    padding-top: 3vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0;
    list-style: none;
}
.recruitpage_table {
    margin: 0 auto;
    margin-top: 10vw;
    margin-bottom: 10vw;
    width: 100%;
}
.recruit_table_tr_inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
}
.recruitpage_label {
    font-size: 3.2vw;
    padding: 5vw 2vw;
    text-align: left;
    width: 30vw;
    line-height: 24px;
    letter-spacing: 0.185em;
}
.recruitpage_label_text {
    font-size: 3.2vw;
    padding: 5vw 2vw 5vw 0;
    line-height: 1.4;
    letter-spacing: 0.185em;
    width: 70vw;
}
.recruitpage_inner p {
    font-size: 3.2vw;
    padding-top: 0;
    text-align: left;
}
.recruit_btn_wrapper {
    text-align: center;
    margin: 0 auto 10vw;
}
.recruit_next_btn {
    background-color: #0092E5;
    color: #fff;
    font-size: 3.2vw;
    letter-spacing: 3.6px;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    width: 53vw;
    padding: 4vw;
}
.recruit_message_inner {
    margin-top: 10vw;
    margin-bottom: 10vw;
}
.recruit_message_inner p {
    text-align: center;
    line-height: 1.8;
    font-size: 3.6vw;
    letter-spacing: -0.05em;
}
.recruit_message_slider {
    margin-top: 10vw;
    margin-bottom: 10vw;
    width: 100%;
}
.recruit_slide_container {
    width: 100%;
    text-align: center;
    position: relative;
    height: auto;
}
.container_e {
    width: 95%;
    margin: 0 auto;
}
.contact_inner {
    margin-top: 10vw;
}
.contact_head_text {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact_text p {
    font-size: 3.2vw;
    letter-spacing: 1.2px;
    line-height: 1.4;
}
.contact_text p::after{
	display: none;
}
.contact_number {
    display: flex;
    padding-right: 0;
    flex-direction: column;
    padding-top: 3vw;
}
.contact_number p {
    font-family: 'din-cb';
    color: #0092E5;
    font-size: 8vw;
    letter-spacing: 1.2px;
}
.contact_number p a{
    color: #0092E5;
}
.contact_number span {
    color: #000;
    font-size: 2.6vw;
    letter-spacing: 1.2px;
}
.contactform {
    margin-top: 10vw;
}
.contactform_inner {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-bottom: 1px dotted #707070;
    padding: 5vw 0;
    align-items: center;
}
.contactform_inner p {
    font-size: 3.2vw;
    width: 35vw;
    text-align: left;
}
.contactform_inner span {
    color: #FF0000;
    font-size: 2.6vw;
    padding-left: 0;
    float: none;
    display: block;
    padding-top: 1vw;
}
.contactform_inner input {
    width: 65vw;
    height: 8vw;
    font-size: 16px;
}
.contactform_inner textarea {
    width: 65vw;
    height: 120px;
    font-size: 16px;
}
.contactform .btnBox input {
    border: none;
    font-size: 14px;
    margin-bottom: 7vw;
}
.btnBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.blog-archive {
    max-width: 90%;
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    flex-direction: column;
}
.newsSide {
    width: 100%;
}
.blog-box article {
    border-bottom: 1px solid #D9DADA;
    padding: 15px 0 5px;
    display: block;
    align-items: center;
    justify-content: flex-start;
}
.blog-box .blog-cat {
    width: 30vw;
    padding: 7px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.17em;
    color: #fff;
    margin: 0 10px 0 0;
    display: inline-block;
}
.blog-box article time {
    margin: 0 0px 0 0;
    letter-spacing: 0.05em;
    color: #666464;
    font-size: 3.4vw;
    display: inline-block;
}
.blog-link {
    width: 100%;
    font-size: 4.6vw;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.blog-link p {
    font-size: 3.8vw;
}
.side_list a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 4vw 4vw;
    color: #666464;
    letter-spacing: .055em;
    font-size: 12px;
}
.side_title {
    margin-bottom: 10px;
    padding: 3vw 20px;
    background-color: #0092E5;
    color: #fff;
    font-family: "UD Reimin Bold";
    font-size: 15px;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post_content h3.post_title {
    font-size: 5.2vw;
    color: #008FD9;
    line-height: 1.5;
    letter-spacing: 0.15em;
    padding: 0 0 10vw;
}
.single .blog-box article {
    padding: 0 0 5vw;
    border: none;
}
.post_content p {
    line-height: 1.8;
    font-size: 3.6vw;
    letter-spacing: 0.09em;
}
.contactform_inner span.contact-note {
    position: absolute;
    bottom: 3px;
    font-size: 2.2vw;
    letter-spacing: 0.1em;
    left: unset;
    color: #000;
    right: 0;
}
.contact_text::after {
    position: absolute;
    content: '';
    top: 0;
    right: -40px;
    width: 1px;
    height: 83px;
    background: #707070;
    display: none;
}
}