 @charset "utf-8";
/* CSS Document */
*, *:before, *:after {
 -webkit-box-sizing: border-box;
 box-sizing: border-box
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
 margin: 0;
 padding: 0;
 background: transparent;
 border: 0;
 outline: 0;
 font-size: 100%;
 font-weight: normal;
 box-sizing:border-box;
}
html {
 font-size: 62.5%;
}
body {
 line-height: 1.6em;
 -webkit-text-size-adjust: 100%;
 width:100%;
}
body, table, input, textarea, select, option {
 font-family: HiraKakuProN-W3;
}
body {
 font-size:16px;
 font-size: 1.6em;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
 display: block;
}
img {
 border: 0;
 vertical-align: bottom;
 max-width: 100%;
 height: auto;
}
figure {
 margin: 0px;
 padding: 0px;
}
ol, ul {
 list-style: none;
}
table {
 border-spacing: 0;
 empty-cells: show;
}
blockquote, q {
 quotes: none;
}
:focus {
 outline: 0;
}
ins {
 text-decoration: none;
}
del {
 text-decoration: line-through;
}
a {
 -webkit-tap-highlight-color: rgba(255,255,555,0.5);
}
.fLeft, .alignleft {
 float: left;
 padding-right: 10px;
 padding-bottom: 10px;
}
.fRight, .alignright {
 float: right;
 padding-bottom: 10px;
 padding-left: 10px;
}
.textCenter {
 text-align: center;
}
.vMiddle {
 vertical-align: middle;
}
.clearfix:after {
 content: "";
 display: block;
 clear: both;
}
.flip-vertical {
 transform: scale(1, -1);
}
.flip-horizontal {
 transform: scale(-1, 1);
}
.clearfix {
 zoom:1;
}
.pc {
 display: none;
}
a {
 color: #39C;
 text-decoration: underline;
}
a:hover {
 text-decoration: none;
 color: #39C;
}
.replace {
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden;
}
.replaceSP {
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden;
}
.textLeft {
 text-align: left;
}
.textRight {
 text-align: right;
}
.textCenter {
 text-align: center;
}
.imgCenter {    /*tech*/
 text-align: center;
	margin: 10px auto 50px;
	width:100% ;
}
.flexBwn {
 width: 100%;
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
}
.arrow {
 position: relative;
 display: inline-block;
 padding: 0 0 0 16px;
 color: #000;
 vertical-align: middle;
 text-decoration: none;
 font-size: 15px;
}
.arrow::before, .arrow::after {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 margin: auto;
 content: "";
 vertical-align: middle;
}

/*2503鳥山追加*/
.mb30{
	margin-bottom:30px;
}

.textCenter2 {
 width:100%;
 height:180px;
 text-align: center;
 display: block;
 margin:30px auto 30px;
 padding-right:15px;
 padding-left:15px;
 
 }
 
/*2503鳥山追加↑ここまで*/



/* ハンバーガーアイコン */
.burger {
 width: 30px;
 height: 22px;
 position: absolute;
 display: flex;
 align-items: center;
 top: 12px;
 left: 10px;
 z-index: 9999;
 margin-top: 5px;
}
.burger:hover {
 cursor: pointer;
}
.burger.burger-active {
}
/* 真ん中の線 */
.burger .line {
 width: 100%;
 height: 4px;
 transition: 0.6s;
 background-color: #CC3300;
 border-radius: 2px;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
}
.burger.burger-active .line {
 background-color: #CC3300;
}
/* 上の線 */
.burger::before {
 content: "";
 position: absolute;
 width: 100%;
 height: 4px;
 top: 0;
 right: 0;
 transition: 0.6s;
 background-color: #CC3300;
 border-radius: 2px;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
}
.burger.burger-active::before {
 background-color: #CC3300;
}
/* 下の線 */
.burger::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 4px;
 bottom: 0;
 right: 0;
 transition: 0.6s;
 background-color: #CC3300;
 border-radius: 2px;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
}
.burger.burger-active::after {
 background-color: #CC3300;
}
/* メニュー */
.navigation {
 width: 300px;
 height: 100vh;
 background: #F6F6F6;
 position: fixed;
 left: -100%;
 transition: 0.6s;
 top: 0;
 overflow: auto;
 padding-top: 40px;
 padding-right: 30px;
 padding-bottom: 60px;
 padding-left: 30px;
 z-index: 9999;
}
.nav-active {
 left: 0px;
}
.burger-active::before {
 transform: rotate(45deg);
 top: 0;
 bottom: 0;
 margin: auto;
}
.burger-active::after {
 transform: rotate(-45deg);
 top: 0;
 bottom: 0;
 margin: auto;
}
.burger-active > .line {
 transform: scale(0);
}
.navigation p {
 margin-bottom: 0px;
 padding-top: 10px;
 padding-bottom: 10px;
}
.navigation .navBox li a {
 text-decoration: none;
 display: block;
}
.navigation li.child a {
 padding-bottom: 7px;
 border-top-width: 1px;
 border-top-style: dotted;
 border-top-color: #CCC;
 margin-left: 10px;
 padding-top: 7px;
}
.navigation li.child a:before {
 left: 3px;
 width: 4px;
 height: 4px;
 border-top: 2px solid #044E7E;
 border-right: 2px solid #044E7E;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.navigation li.parent {
 border-bottom-width: 1px;
 border-bottom-style: dotted;
 border-bottom-color: #222222;
 padding-bottom: 9px;
 padding-top: 9px;
}
.navigation li.parent:first-child{
 padding-top: 7px;
 padding-bottom: 9px;
 border-top-width: 1px;
 border-top-style: dotted;
 border-top-color: #222222;
}
.navigation li.parent a:before, .navigation p .arrow:before {
 width: 16px;
 height: 16px;
 -webkit-border-radius: 50%;
 border-radius: 50%;
 background: #044E7E;
}
.navigation li.parent a:after, .navigation p .arrow:after {
 left: 5px;
 width: 5px;
 height: 5px;
 border-top: 2px solid #FFF;
 border-right: 2px solid #FFF;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.navigation .navBox ul .parent .arrow, .navigation p .arrow {
 padding-left: 25px;
}
.navigation .navBox li.child:last-child {
 border: none;
}
#Header {
 width: 100%;
 padding-top: 12px;
 padding-bottom: 12px;
}
#Header #HeaderInner #CompanyLogo {
 width: 55%;
 margin-left: 20%;
}
#Header #HeaderInner #HeaderToi {
 display: none;
}
#Header #HeaderInner #HeaderLang {
 position: absolute;
 right: 2px;
 top: 8px;
}
#Header #HeaderInner #HeaderLang li {
 display: inline-block;
}
#Header #HeaderInner #HeaderLang li a {
 color: #222;
 text-decoration: none;
 border: 1px solid #222;
 margin-right: 3px;
 padding-top: 2px;
 padding-right: 5px;
 padding-bottom: 2px;
 padding-left: 5px;
 background-color: #FFF;
 font-size: 1.3rem;
}
#Header #headerNav {
 display: none;
}

footer {
 background-color: #044E7E;
 padding-top: 20px;
 padding-bottom: 40px;
 color: #F1F1F1;
}
footer h3 {
 width: 240px;
 height: auto;
 margin-bottom: 20px;
}
footer .footerIn.style1 address {
 font-style: normal;
}
footer .footerIn.style1 address p {
 margin-bottom: 15px;
 font-size: 1.4rem;
 line-height: 1.5em;
}
#pagetop {
 position: fixed;
 bottom: 10px;
 right: 10px;
 height: 60px;
 width: 60px;
}
.style1 {
 clear: both;
 margin-right: 4%;
 margin-left: 4%;
 margin-bottom: 20px;
}
.style1:after {
 content:" ";
 display:block;
 clear:both;
}
.style100 {
 clear: both;
 width: 100%;
 margin-bottom: 30px;
 text-align: left;
}
.style100:after {
 content:" ";
 display:block;
 clear:both;
}
#TopMainImg {
 clear: both;
 width: 100%;
 z-index: 0;
}
#TopMainImg .slider {
 margin: 0;
}
#TopMainImg .slider .item {
}
#TopMainImg .slider img {
 width: 100%;
 height: auto;
 text-align: center;
 margin-right: auto;
 margin-left: auto;
}
#TopMainImg .slider .slick-next {
 z-index: 99;
}
#TopMainImg .slider .slick-prev {
 z-index: 99;
}
#TopMainImg .slick-dots {
 bottom: -20px !important;
}

.topMain {
 background-image: url(../images/top/main_bg.png);
 background-repeat: no-repeat;
 background-position: right top;
 background-size: 226px 340px;
}
#Top #TopLead {
 text-align: left;
 padding-top: 30px;
}
#Top #TopLead h2 {
 font-size: 2rem;
 color: #0F4C82;
 margin-bottom: 10px;
 text-align: center;
 line-height: 1.5em;
}
#Top #TopLead p {
 font-weight: normal;
 margin-bottom: 12px;
}
#Top #Sec2 ul {
}
#Top #Sec2 ul li {
 margin-bottom: 6px;
 width: 100%;
 height: auto;
 display: block;
 text-align: center;
 overflow: hidden;
}
#Top #Sec2 ul li a:hover img {
 transform: scale(1.3);
 transition-duration: 0.5s;
}
#Top #Sec4 h3 {
 text-align: left;
 font-size: 1.5rem;
 color: #0F4C82;
 display: inline-block;
 border-bottom-width: 3px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 word-spacing: 0.6em;
	margin-bottom: 20px;
}
#Top #Sec3 {
 margin-bottom: 30px;
}
#Top #Sec3 h3 {
 font-size: 1.7rem;
 margin-bottom: 5px;
 color: #0F4C82;
 display: inline-block;
 border-bottom-width: 3px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
}
#Top #Sec3 dl {
 display: block;
 padding-bottom: 8px;
 border-bottom-width: 1px;
 border-bottom-style: dotted;
 border-bottom-color: #CCC;
 padding-top: 8px;
}
#Top #Sec3 a:hover dl {
 background-color: #EDF3F6;
}
#Top #Sec3 dl dt {
 font-weight: bold;
 color: #0F4C82;
 font-size: 1.4rem;
}
#Top #Sec3 dl dd {

}
#Top #Sec3 a dl dd .place {
 font-size: 1.2rem;
 margin-right: 10px;
 padding-right: 5px;
 padding-left: 5px;
 padding-top: 1px;
 padding-bottom: 1px;
 border: 1px solid #0F4C82;
}
#Top #Sec3 a, #Top #Sec3 a dl, #Top #Sec3 a dl dt, #Top #Sec3 a dl dd {
 color: #222;
 text-decoration: none;
}
#Top #Sec3 a:hover, #Top #Sec3 a:hover dl, #Top #Sec3 a:hover dl dt, #Top #Sec3 a:hover dl dd {
 color: #222;
 text-decoration: none;
}
.mainImg {
 height: 91px;
 width: 100%;
 clear: both;
 background-image: url(../images/company/title_bg_sp.jpg);
 background-repeat: no-repeat;
 background-size: cover;
 text-align: center;
}
.mainImg.bgStyle2 {
 background-image: url(../images/common/title_bg_img2_sp.jpg);
}
.mainImg.bgStyle3 {
 background-image: url(../images/common/title_bg_img3_sp.jpg);
}
.mainImg.bgStyle4 {
 background-image: url(../images/common/title_bg_img4_sp.jpg);
}
.mainImg.bgStyle5 {
 background-image: url(../images/common/title_bg_img5_sp.jpg);
}
.mainImg.bgStyle6 {
 background-image: url(../images/common/title_bg_img6_sp.jpg);
}
.mainImg.bgStyle7 {
 background-image: url(../images/common/title_bg_img7_sp.jpg);
}

.mainImg h1 {
 font-size: 2.2rem;
 display: inline-block;
 border-bottom-width: 2px;
 border-bottom-style: solid;
 border-bottom-color: #CC3333;
 font-weight: normal;
 color: #FFF;
 margin-top: 30px;
 text-shadow:0 0 10px #FFF;
}
.mainImg p {
 font-family: Georgia, "Times New Roman", Times, serif;
 font-size: 1.2rem;
 color: #FFF;
 margin: 0px;
 padding: 0px;
 text-shadow:0 0 10px #FFF;
}
.container {
 background-image: url(../images/common/container_bg.png);
 background-repeat: no-repeat;
 background-position: left top;
 background-size: 235px 274px;
 padding-top: 20px;
}
main {
 clear: both;
 width: 92%;
 margin-right: auto;
 margin-left: auto;
}
main:after {
 content:" ";
 display:block;
 clear:both;
}
.container .sidemenu {
 width: 100%;
 margin-bottom: 20px;
}
.container .sidemenu:after {
 content: "";
 display: block;
 clear: both;
}
.container .sidemenu ul li {
 display: block;
 float: left;
 width: 49%;
 margin-right: 1%;
 font-size: 1.3rem;
}
.container .sidemenu ul li:nth-child(2n){
 width: 50%;
 margin-right: 0px;
}
.container .sidemenu ul li .arrow {
 padding-left: 15px;
}
.container .sidemenu ul li a {
 display: block;
 border: 1px solid #D7DBE6;
 margin-bottom: 4px;
 padding-top: 5px;
 padding-right: 2px;
 padding-bottom: 5px;
 background-color: #F8FBFE;
}
.container .sidemenu ul li a:hover {
 color: #333;
 text-decoration: underline;
}
.container .sidemenu ul li a:after {
 left: 3px;
 width: 4px;
 height: 4px;
 border-top: 2px solid #0F4C82;
 border-right: 2px solid #0F4C82;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.container main .contents {
 width: 100%;
 clear: both;
}
.container main .contents830 {
 width: 100%;
 clear: both;
}
.container main .contents p, .container main .contents830 p {
 margin-bottom: 15px;
}
#Breadcrumb {
 display: none;
}
.pageTitle {
 font-size: 2rem;
 position:relative;
 text-align: left;
 background-image: url(../images/common/pagetitle.jpg);
 background-repeat: no-repeat;
 background-position: left top;
 background-size: 5px 25px;
 border-bottom-width: 2px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 margin-bottom: 20px;
 padding-bottom: 2px;
 padding-left: 15px;
}
.secTitle1 {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 margin-bottom: 10px;
 text-align: center;
 background-color: #0F4C82;
 color: #FFF;
 padding: 5px;
}
.secTitle1B {
 font-size: 2rem;
 border-bottom-width: 4px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 margin-bottom: 10px;
 padding-bottom: 4px;
}
.secTitle2 {
 position:relative;
 font-size: 2.2rem;
 margin-bottom: 20px;
 padding-right: 0;
 padding-bottom: 10px;
 padding-left: 0;
 border-bottom-width: 5px;
 border-bottom-style: solid;
 border-bottom-color: #156AB7;
}
.secTitle2:before, .secTitle2:after{
	content:"";
	display:block;
	height:5px;
	position:absolute;
	bottom:-5px;
}
.secTitle2:before{
	width:20%;
	left:8%;
	background:rgba(255,255,255,0.5);
}
.secTitle2:after{
	width:30%;
	left:12%;
	background:rgba(87,176,224,0.5);
}
.secTitle3 {
 font-size: 1.7rem;
 font-weight: bold;
 display: inline-block;
 border-bottom-width: 4px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 margin-bottom: 10px;
 padding-bottom: 2px;
}
.secTitle3.red {
 border-bottom-color: #C30;
}
.secTitle4 {
 font-size: 1.8rem;
 color: #0F4C82;
 margin-bottom: 15px;
 line-height: 1.6em;
}
.secTitle5 {
 text-align: center;
 margin-bottom: 20px;
 background-color: #0F4C82;
 color: #FFF;
 padding-top: 5px;
 padding-bottom: 5px;
}
.secTitle6 {
 background-image: url(../images/common/sectitle6.jpg);
 background-repeat: repeat-x;
 line-height: 50px;
 height: 50px;
 border-left-width: 3px;
 border-left-style: solid;
 border-left-color: #0F4C82;
 padding-left: 10px;
 margin-bottom: 20px;
 font-size: 1.7rem;
}

.secTitle7{
 font-size: 1.5rem;
 color: #0F4C82;
 margin-bottom: 15px;
 text-align: left;
 margin-top: 10px;
 line-height: 1.7em;
}

.subTitle1 {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #333;
 margin-bottom: 10px;
 padding-bottom: 2px;
 color: #0F4C82;
 font-weight: bold;
}
.subTitle2 {
 color: #FFF;
 background-color: #0F4C82;
 padding-right: 15px;
 padding-left: 15px;
 display: inline-block;
 font-weight: normal;
 margin-bottom: 3px;
}
.subTitle3 {
 font-size: 1.8rem;
 color: #0F4C82;
 text-align: left;
 margin-bottom: 15px;
 line-height: 1.5em;
}
dl.dlHorizon {
}
dl.dlHorizon dt {
 font-weight: bold;
 color: #0F4C82;
 padding-top: 7px;
}
dl.dlHorizon dd {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #CCC;
 padding-bottom: 7px;
}
.dlHorizon dd ul {
 padding-left: 15px;
}
.dlHorizon dd ul li {
 list-style-type: disc;
 line-height: 1.6em;
}
#CompanyProfile .contents830 #Sec1 #Access {
 clear: both;
 margin-top: 20px;
}
#CompanyProfile .contents830 #Sec1 #Access #Map {
 width: 100%;
}
#CompanyProfile .contents830 #Sec1 #Access .access {
}
table {
 border-top-width: 1px;
 border-left-width: 1px;
 border-top-style: solid;
 border-left-style: solid;
 border-top-color: #CCC;
 border-left-color: #CCC;
 margin-bottom: 50px;
}
table td, table th {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #CCC;
 border-right-width: 1px;
 border-right-style: solid;
 border-right-color: #CCC;
 padding: 20px;
}
table tr .thCol {
 background-color: #0F4C82;
 color: #FFF;
 text-align: center;
}
table tr .thRow {
 background-color: #D7EBFB;
}
table tr .thRow2 {
 background-color: #EAF4FD;
}
#CompanyOverView .contents830 #Sec2 .rinen {
 margin-bottom: 15px;
 margin-top: 5px;
}
#CompanyOverView .contents830 #Sec2 .rinen dt {
 font-weight: bold;
 color: #0F4C82;
}
#CompanyOverView .contents830 #Sec2 .rinen dd {
 margin-bottom: 6px;
}
#CompanyOverView .contents830 #Sec2 p {
 margin-bottom: 15px;
}
#CompanyHonors .contents830 #Sec1 .subTitle1 {
 margin-top: 50px;
}

#CompanyHonors .contents830 #Sec1 .fLeft {
 float: none;
 text-align: center;
}
#CompanyHonors .contents830 #Sec1 a .fRight {
 float: none;
 clear: both;
 text-align: center;
}
#CompanyHonors .contents830 #Sec1 a .fRight h4 {
 margin-bottom: 6px;
 color: #333;
 text-decoration: none;
}
#CompanyHonors .contents830 #Sec1 a .fRight p {
 margin-bottom: 0px;
}
#CompanyHonors .contents830 #Sec2 ul {
 width: 100%;
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
}
#CompanyHonors .contents830 #Sec2 ul li {
 width: 32.5%;
 text-align: center;
 background-color: #F6F6F6;
 display: flex;
 justify-content: center;
 align-items: center;
 margin-bottom: 5px;
 padding: 8px;
}
#CompanyHonors .contents830 #Sec2 ul li img {
 max-height: 100px;
 width: auto;
}
#CompanyBase .contents830 .baseBlock {
 text-align: center;
 background-color: #F6F6F6;
 margin-bottom: 15px;
 padding: 15px;
}
#CompanyBase .contents830 .baseBlock h4 {
 font-weight: bold;
 margin-bottom: 8px;
}
#CompanyBase .contents830 .baseBlock ul {
 text-align: left;
 margin-top: 8px;
 font-size: 1.5rem;
 margin-right: auto;
 margin-left: auto;
 line-height: 1.5em;
}
#ProductionSystem .contents #Sec1 .secTitle6 span {
 font-size: 1.3rem;
}
#ProductionSystem .contents #Sec1 ul {
 padding-left: 3px;
 margin-bottom: 30px;
}
#ProductionSystem .contents #Sec1 ul li {
 position: relative;
 padding-left: 15px;
 margin-bottom: 7px;
}
#ProductionSystem .contents #Sec1 ul li:before {
 content: "";
 position: absolute;
 top: .3em;
 left: 0;
 -webkit-transform: rotate(50deg);
 -ms-transform: rotate(50deg);
 transform: rotate(50deg);
 width: 5px;
 height: 10px;
 border-right-width: 3px;
 border-bottom-width: 3px;
 border-right-style: solid;
 border-bottom-style: solid;
 border-right-color: #C30;
 border-bottom-color: #C30;
}
#BusinessProfile .contents .style100 {
 margin-bottom: 50px;
}
#BusinessProfile .contents #Sec0 ul {
 display: flex;
 justify-content: space-between;
 margin-right: auto;
 margin-left: auto;
}
#BusinessProfile .contents #Sec0 ul li {
 width: 33%;
 height: auto;
 display: block;
 text-align: center;
 overflow: hidden;
}
#BusinessProfile .contents #Sec0 ul li a img {
}
#BusinessProfile .contents #Sec0 ul li a:hover img {
 transform: scale(1.3);
 transition-duration: 0.5s;
}
#BusinessProfile .contents .secTitle1B span {
 display: none;
}
#BusinessProfile .contents h3.biz1 {
 background-image: url(../images/business-profile/smart_controller_s.png);
 background-repeat: no-repeat;
 background-position: left top;
 background-size: 50px 50px;
 padding-left: 60px;
 min-height: 60px;
 font-size: 1.6rem;
 line-height: 1.4em;
 padding-top: 3px;
 margin-bottom: 10px;
}
#BusinessProfile .contents #Motor h3.biz1 {
 background-image: url(../images/business-profile/motor_product_s.png);
}
#BusinessProfile .contents #LithiumBattery h3.biz1 {
 background-image: url(../images/business-profile/lithium_battery_s.png);
}
#BusinessProfile .contents .secImg {
 margin-bottom: 20px;
}
#BusinessProfile .contents .secTitle3.noTxt {
 margin-bottom: 20px;
}
ul.imgBetween {
 display: flex;
 justify-content: space-between;
 margin-right: auto;
 margin-left: auto;
 width: 100%;
}
#BusinessProfile .contents ul.imgBetween li {
 width: 49%;
}
#BusinessProfile .contents .blockFull {
 margin-bottom: 30px;
}
#BusinessProfile .contents .blockFull ul.imgBetween {
flex-wrap: wrap;
}
#BusinessProfile .contents .blockFull ul.imgBetween li {
 margin-bottom: 5px;
}
#BusinessProfile .contents .blockHalf {
}
#BusinessProfile .contents .blockHalf .item{
 width: 100%;
 margin-bottom: 30px;
}
#RD .contents .style100 .ninsyou {
 font-size: 2.0rem;
 margin-top: 50px;
 margin-bottom: 30px;
 text-align: center;
}
#RD .contents .style100 .ninsyouImg {
 text-align: center;
}
#RD .contents #Sec2 .secTitle1B span {
 font-size: 1.3rem;
 font-weight: normal;
}
#RD .contents #Sec2 .imgBetween {
flex-wrap: wrap;
margin-top: 10px;
}
#RD .contents #Sec2 .imgBetween li {
 margin-bottom: 5px;
 width: 49%;
 margin-bottom: 7px;
}
#RD .contents #Sec3 table {
 width: 100%;
 margin-top: 10px;
 margin-bottom: 15px;
 font-size: 1.5rem;
}
#RD .contents #Sec3 table tr td {
 width: 80%;
 padding: 4px;
}
#RD .contents #Sec3 table tr th {
 padding: 4px;
}
#RD .contents #Sec3 table tr th.thRow,#RD .contents #Sec3 table tr th.thRow2 {
 writing-mode: vertical-rl;
 text-orientation: upright;
}
#RD .contents #Sec3 table tr td ul li {
 display: inline-block;
 margin-right: 5px;
}
#RD .contents #Sec3 table tr td ul li:before {
 content: "・"
}
#RD .contents #Sec3 .imgBetween {
 margin-top: 10px;
 margin-right: auto;
 margin-left: auto;
 flex-wrap: wrap;
}
#RD .contents #Sec3 .imgBetween li {
 width: 48%;
 margin-bottom: 10px;
}
#Quality .contents .style100 .ninsyou {
 margin-bottom: 30px;
 text-align: center;
}

#Quality .contents .style100 #Sec1 .step.style100 {
 margin-bottom: 30px;
}
#Quality .contents .style100 #Sec1 .step h4 {
 padding-top: 6px;
 padding-bottom: 6px;
 text-align: center;
 background-color: #0F4C82;
 color: #FFF;
 font-weight: normal;
 font-size: 1.6rem;
 margin-bottom: 5px;
}
#Quality .contents .style100 #Sec1 .step .stepDetail {
}
#Quality .contents .style100 #Sec1 .step .stepDetail ul {
 margin-bottom: 20px;
 padding-left: 30px;
}
#Quality .contents .style100 #Sec1 .step .stepDetail ul li {
 list-style-type: disc;
}
#Quality .contents .style100 #Sec1 .step .stepDetail .stepImg {
 text-align: center;
 width: 80%;
 margin-right: auto;
 margin-left: auto;
}
#Quality .contents .style100 #Sec1 .step .stepDetail .stepImg img {
 height: auto;
 width: 100%;
}
#Quality .contents .style100 #Sec1 .step .stepDetail .stepImg.step2 img {
 margin-top: 10px;
}
#Quality .contents .style100 #Sec1 .secTitle5 {
 margin-bottom: 0px;
}
#Quality .contents .style100 #Sec1 figure {
 margin-bottom: 20px;
}
#Quality .contents .style100 #Sec1 .test {
 background-color: #F0F0F0;
 padding-top: 10px;
 padding-right: 4%;
 padding-bottom: 10px;
 padding-left: 4%;
 margin-bottom: 20px;
}
#Quality .contents .style100 #Sec1 .test ul {
 padding-left: 15px;
}
#Quality .contents .style100 #Sec1 .test ul li {
 list-style-type: disc;
 line-height: 1.7em;
}
#Quality .contents .style100 #Sec2 .imgBetween {
 margin-right: auto;
 margin-left: auto;
}
#Quality .contents .style100 #Sec2 ol {
 padding-left: 0px;
 margin-right: auto;
 margin-left: auto;
 margin-top: 15px;
 counter-reset:number;
 list-style-type: none!important; 
}
#Quality .contents .style100 #Sec2 ol li {
 position: relative;
 padding-left: 30px;
 line-height: 1.5em;
 padding-right: 0.5em;
 padding-top: 3px;
 padding-bottom: 3px;
}
#Quality .contents .style100 #Sec2 ol li:before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display:inline-block;
  background: #0F4C82;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#Contact input {
 padding: 5px;
 border: 1px solid #CCC;
 margin-top: 2px;
 margin-bottom: 2px;
}
#Contact input[type="text"], #Contact input[type="email"], #Contact input[type="tel"] {
 width: 90%;
 border-radius: 3px;
 -webkit-border-radius: 3px;
 -moz-border-radius: 3px;
 font-size: 1.6rem;
}
#Contact input[name="姓"], #Contact input[name="名"], #Contact input[name="セイ"], #Contact input[name="メイ"] {
 width: 45%;
}
#Contact textarea {
 display: inline-block;
 vertical-align: top;
 width: 90% !important;
 height: 150px !important;
 padding: 8px;
 border-radius: 3px;
 -webkit-border-radius: 3px;
 -moz-border-radius: 3px;
 border: 1px solid #CCC;
 font-size: 1.6rem;
 outline: none;
 line-height: 1.6;
 resize: vertical;
}
#Contact input[type="checkbox"] {
 margin-right: 10px;
 height: 25px;
 width: 25px;
}
#Contact div.mfp_buttons {
 margin-bottom: 50px;
}
#Contact div.mfp_buttons button[type="submit"] {
 height: 60px;
 width: 80%;
 background-color: #C00;
 display: block;
 clear: both;
 margin-right: auto;
 margin-left: auto;
 color: #FFF;
 border-radius: 10px;
 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 border-top-style: none;
 border-right-style: none;
 border-bottom-style: none;
 border-left-style: none;
 margin-top: 20px;
 margin-bottom: 20px;
 font-size: 1.7rem;
 box-shadow: 0px 0px 5px #CCC;
}
#Contact div.mfp_buttons button[type="submit"]:hover {
 cursor: pointer;
}
#ContactThanks .style100 {
 text-align: center;
 padding-bottom: 50px;
}
#mfp_overlay_inner h4 {
 font-size: 1.9rem;
 margin-bottom: 5px;
 margin-top: 15px;
 text-align: center;
 border-bottom-width: 2px;
 border-bottom-style: solid;
 border-bottom-color: #0F4C82;
 padding-bottom: 5px;
}
#mfp_overlay_inner table {
 margin-bottom: 0px !important;
 border: none;
}
#Ir .contents .style100 #Sec1 a {
 text-decoration: none;
 color: #333;
 display: block;
}
#Ir .contents .style100 #Sec1 a dl {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #DCDCE4;
 padding-top: 8px;
 padding-bottom: 8px;
}
#Ir .contents .style100 #Sec1 a:hover dl {
 background-color: #F3F3F3;
}
#Ir .contents .style100 .kabu {
 margin-top: 20px;
}


/*鳥山20250707追加*/
#Ev .contents a{
	word-wrap:break-word;
}

#Ev .contents .style100 .scroll {
  overflow-x: scroll;	
}

#Ev .contents .style100 table {
 width: 100%;
 margin-top: 10px;
 margin-bottom: 15px;
 font-size: 1.5rem;
}

#Ev .contents table tr th,
#Ev .contents table tr td {
 width: 20%;
 padding: 4px;
 overflow-wrap: wrap;
}

#Ev .contents .style100 table tr td ul li {
 display: inline-block;
 margin-right: 5px;
}
#Ev .contents .style100 table tr td ul li:before {
 content: "・"
}
/*↑鳥山20250707追加*/

@media (max-width:600px){
#Tech .imgBetween {
	flex-flow: column;
}
#Tech .imgBetween li {
	width : 100% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 1) ;
	width : calc(100% / 1) ;
	line-height: 2em;
	margin: 10px auto;
}
#Tech .imgBetween li img {
	width: 95%;
}
#Tech .item {
	margin-bottom: 30px;
}
#Tech .item h4 {
    margin-top: 15px;
    margin-top: 15px;
}
.iframe-wrapper {
	margin-top: 20px;
	text-align: center;
	margin: 0 auto;
}
#Tech .sub1 ul li {
 position: relative;
 padding-left: 20px;
 margin-bottom: 7px;
}
#Tech .sub1 ul li:before {
 content: "";
 position: absolute;
 top: .3em;
 left: 0;
 -webkit-transform: rotate(50deg);
 -ms-transform: rotate(50deg);
 transform: rotate(50deg);
 width: 5px;
 height: 10px;
 border-right-width: 3px;
 border-bottom-width: 3px;
 border-right-style: solid;
 border-bottom-style: solid;
 border-right-color: #C30;
 border-bottom-color: #C30;
}
.length {
	line-height: 1.5em;
}
}

#Ev .imgBetween {
	flex-flow: column;
}
#Ev .imgBetween li {
	width : 100% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 1) ;
	width : calc(100% / 1) ;
	line-height: 2em;
	margin: 10px auto;
}
#Ev .imgBetween li img {
	width: 95%;
}
#Ev .item {
	margin-bottom: 30px;
}
#Ev .item h4 {
    margin-top: 15px;
    margin-top: 15px;
}
.iframe-wrapper {
	margin-top: 20px;
	text-align: center;
	margin: 0 auto;
}
#Ev .sub1 ul li {
 position: relative;
 padding-left: 20px;
 margin-bottom: 7px;
}
#Ev .sub1 ul li:before {
 content: "";
 position: absolute;
 top: .3em;
 left: 0;
 -webkit-transform: rotate(50deg);
 -ms-transform: rotate(50deg);
 transform: rotate(50deg);
 width: 5px;
 height: 10px;
 border-right-width: 3px;
 border-bottom-width: 3px;
 border-right-style: solid;
 border-bottom-style: solid;
 border-right-color: #C30;
 border-bottom-color: #C30;
}

/*0904鳥山*/
#Panel .cont_list {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#Panel .cont_list .list_box {
	width: 98%;
	background-color: #EEE;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 2px solid #FFF;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	margin-bottom: 20px;
}

#Panel .cont_list .list_box:hover {
	background-color: #FFF;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px 0px;
}

#Panel .cont_list .list_box h2 {
	text-align: center;
	padding-top: 20px;
	background-color: #FFF;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #2E749A;
	font-size: 22px;
	line-height: 30px;
	padding-bottom: 10px;
}

#Panel .content .list_box h3 {
	font-size: 18px;
	text-align: center;
	margin-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	color: #044760;
	background-color: #F9F9F9;
	border-bottom-color: #BBB;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
	border-bottom-style: dotted;
}

#Panel .content .list_box p {
	font-size: 14px;
	color: #044E7E;
	text-align:center;
}

#Panel .content .list_box p:hover{
	color: RED;
}

#Panel .cont_list .list_box img {
	width: 96%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

#Panel .cont_list .list_box a {
 text-decoration: none;
}

#Panel h2 {
 font-size: 2.8rem;
 color: #0F4C82;
 margin-bottom: 15px;
 text-align: center;
 margin-top: 10px;
 line-height: 1.7em;
}


/*0617鳥山追加*/
@media (max-width:600px){
#Bms .imgBetween {
	flex-flow: column;
}
#Bms .imgBetween li {
	width : 100% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 1) ;
	width : calc(100% / 1) ;
	line-height: 2em;
	margin: 10px auto;
}
#Bms .imgBetween li img {
	width: 95%;
}
#Bms .item {
	margin-bottom: 30px;
}
#Bms .item h4 {
    margin-top: 15px;
    margin-top: 15px;
}
.iframe-wrapper {
	margin-top: 20px;
	text-align: center;
	margin: 0 atuo;
}
#Bms .sub1 ul li {
 position: relative;
 padding-left: 20px;
 margin-bottom: 7px;
}
#Bms .sub1 img {
 width:100%;
}


#Bms .sub1 ul li:before {
 content: "";
 position: absolute;
 top: .3em;
 left: 0;
 -webkit-transform: rotate(50deg);
 -ms-transform: rotate(50deg);
 transform: rotate(50deg);
 width: 5px;
 height: 10px;
 border-right-width: 3px;
 border-bottom-width: 3px;
 border-right-style: solid;
 border-bottom-style: solid;
 border-right-color: #C30;
 border-bottom-color: #C30;
}
.length {
	line-height: 1.5em;
}
}	

/*0617鳥山ここまで*/

 /*sp-2ここから*/
#Bms table{
	background-color: #f0f8ff;
	text-align:center;
	margin-top:50px;
	border-color:white;
	width:100%;
}

#Bms th {
  font-size:12px;
  padding-top:10px;
  padding-bottom:10px;
  border-color:white;
  font-weight: normal;
  line-height:2;
}

#Bms td {
  height: 10px;
  padding-top:1px;
  padding-bottom:1px;
  font-size:12px;
  width:33%;
  vertical-align: middle;
  border-color:white;
}

#Bms .td1{
  font-size:12px;

}

#Bms .td2{
  padding-top:5px;
  padding-bottom:5px;
  width:50%;
}



#Bms ul{
 display: flexbox;
 justify-content: center;
 width: 100%;

}

#Bms ul li {
 display: inline-block;
 border:2px solid black;
 background-color:black;
 color:white;
 margin:5px;
 width: 45%;
}


#Bms ul li p{
  display: inline-block;
  vertical-align: middle;
    align-items: center;
}

#Bms ul img {
  margin-bottom:10px;
 width: 100%;
}


#Bms .zero{
  padding-top:0px;
  margin-top:0px;
}

#Bms .al{
 text-align:left;
}

#Bms .ac{
 text-align:center;
}

#Bms .mb50{
  margin-bottom:50px;
}