/*
===================================================
	Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
}
address{
 font-style:normal;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}
/*
===================================================
	Base Setting
===================================================
*/
.font-amiri{
 font-family: 'Amiri', serif;
}
.red{
 color: #d33535;
}
.pt1em{
 padding-top: 1em;
}
.pt2em{
 padding-top: 2em;
}
.pt3em{
 padding-top: 3em;
}
.pr1em{
 padding-right: 1em;
}
.pl1em{
 padding-left: 1em;
}
.pb1em{
 padding-bottom: 1em;
}
.pb2em{
 padding-bottom: 2em;
}
.pb3em{
 padding-bottom: 3em;
}
.mt10{
  margin-top: 10px;
}
.mt1em{
 margin-top: 1em;
}
.mt2em{
 margin-top: 2em;
}
.mt3em{
 margin-top: 3em;
}
.mb10{
  margin-bottom: 10px;
}
.mb1em{
 margin-bottom: 1em;
}
.mb2em{
 margin-bottom: 2em;
}
.mb3em{
 margin-bottom: 3em;
}
.m0Auto{
  margin: 0 auto;
}
.tLeft{
 text-align: left;
}
.tCenter{
 text-align: center;
}
.tRight{
 text-align: right;
}
.font-l{
 font-size: 140%;
}
.font-ll{
 font-size: 180%;
}
.font-lll{
 font-size: 220%;
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 60%;
}
.lh1_5em{
  line-height: 1.5em;
}
.lh1_8em{
  line-height: 1.8em;
}
.w10,.w20,.w25,.w30,.w33,.w40,.w45,.w50,.w60,.w70,.w80,.w90,.w100{
 box-sizing: border-box;
}
.w10{
 width: 10% !important;
}
.w20{
 width: 20% !important;
}
.w25{
 width: 25% !important;
}
.w30{
 width: 30% !important;
}
.w33{
 width: 33% !important;
}
.w40{
 width: 40% !important;
}
.w45{
 width: 45% !important;
}
.w50{
 width: 50% !important;
}
.w60{
 width: 60% !important;
}
.w70{
 width: 70% !important;
}
.w80{
 width: 80% !important;
}
.w90{
 width: 90% !important;
}
.w100{
 width: 100% !important;
}
.wAuto{
 width: auto;
}
.wFit{
  width: fit-content;
}
.borderWhite1{
  border: solid 1px #fff;
}
/*20230207追加  */
@media (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1239px) {
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}
/* -------------------------------------------------------- */
/*20230529追加  */
  .sp-br {
    display: none;
  }
@media (max-width: 405px) {
  .sp-br {
    display: block;
  }
}
/* -------------------------------------------------------- */
body {
	line-height: 1.6em;
 letter-spacing: 0.05em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",arial,sans-serif;
}
body.skipTransition *{
 transition: opacity .4s !important;
}
img{
 max-width: 100%;
 height: auto;
 vertical-align: bottom;
}
.sp-visible{
 visibility: hidden;
}
.maxWidth{
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth950px{
 max-width: 950px;
 margin-left: auto;
 margin-right: auto;
 	
}
.maxWidth600px{
 max-width: 800px;
 margin-left: auto;
 margin-right: auto
}
#header{
 position: fixed;
 height: 100px;
 width: 100%;
 z-index: 991;
 transition: .5s;
 background: rgba(0,0,0,0);
}
#header.bg{
 background: rgba(0,0,0,0.8);
 box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
#header h1{
 position: absolute;
 top: 20px;
 left: 20px;
 opacity: 0;
 visibility: hidden;
}
#header h1 img{
 height: 60px;
 width: auto;
}
#header h1.active{
 visibility: visible;
 transition: 1s;
 opacity: 1;
}
#main{

}
#footer{
 background: #333;
 color: #fff;
 padding: 60px 0px;
}
#footer a{
 color: #fff;
}
#footer a:visited{
 color: #fff;
}
#footer .contactList{
 text-align: center;
}
#footer .contactList li{
 display: inline-block;
}
#footer .copy,
#footer .copy a{
 color: #888;
}
#scrollLeft,
#scrollRight{
 position: fixed;
 bottom: 20px;
 z-index: 990;
 color: #fff;
 background: rgba(40,40,40,0.9);
 padding: 4px 1em 4px;
 border-radius: 2em;
 box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
 cursor: pointer;
 transition: .5s;
 opacity: 0;
 visibility: hidden;
}
#scrollLeft.active,
#scrollRight.active{
 opacity: 1;
 visibility: visible;
}
#scrollLeft{
 left: 20px;
 padding-left: 0.5em;
}
#scrollRight{
 right: 20px;
 padding-right: 0.5em;
}
#scrollLeft i,
#scrollRight i{
 background: rgba(255,255,255,0.1);
 padding: 5px;
 border-radius: 2em;
 margin:0px 5px;
 transition: .5s;
}
#scrollLeft:hover,
#scrollRight:hover{
 background: rgba(100,100,100,0.5);
}
#scrollLeft:hover i,
#scrollRight:hover i{
 background: rgba(0,0,0,0.6);
}
#page__start{
 z-index: 1;
 position: fixed;
 overflow: hidden;
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 background: #ff2ad0;
}
#page__start.complete{
 background: #000;
 transition: 1s;
}
#page__start.complete .inner{
 opacity: 0;
}
#page__start .inner{
 position: fixed;
 width: 100%;
 height: 0%;
 transition: 2s;
 left: 0%;
}
#page__start.active .inner{
 height: 100%;
}
#page__start .inner2{
 display: table;
 width: 100vw;
 height: 100vh;
 top: 0px;
 left: 0px;
}
#page__start .inner3{
 display: table-cell;
 width: 100%;
 height: 100%;
 text-align: center;
 vertical-align: middle;
 color: #fff;
 font-size: 10px;
 transition: 1s;
 opacity: 0;
}
#page__start.active .inner3{
 opacity: 1;
}
#page__start .inner .loader{
 padding: 15px 0px 0px;
}
#page__start h2{
 padding: 10px 50px;
}
#page__start h2 img{
 width: 100%;
 height: auto;
 max-width: 513px;
 transition: 1.5s;
 margin-top: 0px;
}
#page__start.active h2 img{
 margin-top: 0px;
}

#page{
 z-index: 2;
 position: fixed;
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 transition: .5s;
}
#page>.inner{
 position: absolute;
 width: 100%;
 height: 100%;
 left: -100vw;
}
#page>.inner.active{
 transition: 1.5s;
 left: 0vw;
}
#page .pageCommon{
 float: left;
 width: 33.333vw;
 height: 100vh;
 color: #fff;
 position: relative;
 opacity: 0;
 visibility: hidden;
 transition: .5s;
}
#page .pageCommon.active{
 opacity: 1;
 visibility: visible;
}
#page .pageCommon.pushState{
 width: 100vw;
}
#page .pageCommon.hidden{
 overflow: hidden;
 width: 0px;
}
#page .pageCommon .inner{
 display: table;
 width: 100%;
 height: 100%;
}
#page .pageCommon .inner2{
 display: table-cell;
 width: 100%;
 height: 100%;
 vertical-align: middle;
 text-align: center;
}
#page .pageCommon .inner3{
 display: inline-block;
 text-align: left;
 width: 85%;
}
#page .pageCommon>a{
 display: block;
 width: 33.333vw;
 height: 100vh;
}
#page .pageCommon a{
 color: #fff;
}
#page .pageCommon a:visited{
 color: #fff;
}
#page .pageCommon h2{
 position: relative;
 font-size: 130%;
}
#page .pageCommon h2:after{
 position: absolute;
 bottom: -5px;
 left: 0px;
 display: block;
 content: "";
 width: 0%;
 height: 2px;
 background: rgba(255,255,255,0.5);
 transition: .5s;
}
#page .pageCommon:hover h2:after{
 width: 100%;
}
#page #page__end h2:after,
#page #page__blog h2:after,
#page #page__blog2 h2:after/*,
#page #page__blog3 h2:after*/{
 display: none;
}
#page .pageCommon h2 span{
 font-size: 60%;
}
#page .pageCommon .blogList li{
 margin-bottom: 25px;
 overflow: hidden;
}
#page .pageCommon .blogList li:last-child{
 margin-bottom: 0px;
}
#page .pageCommon .blogList li a{
 display: block;
}
#page .pageCommon .blogList li .photo{
 width: 50%;
 position: relative;
 float: left;
 background-position: center;
 background-size: cover;
}
#page .pageCommon .blogList li .photo:before {
 content: "";
 display: block;
 padding-top: 75%;
}
#page .pageCommon .blogList li .photo img{
	position: absolute;
	top: 50%;
	/*left: 0;*/
	left: 50%;
	bottom: 0;
	right: 0;
	/*transform: translateY(-50%);*/
	transform: translate(-50%, -50%);
	/*width: 100%;*/
	max-width: 100%;
	max-height: 100%;
}
.clear {
	clear: both;
}
#page .pageCommon .blogList li .text{
 width: 40%;
 display: inline-block;
 vertical-align: top;
 padding: 1% 1% 1% 5%;
 font-size: 90%;
}
#page #page__about{
 background: url(../img/main/about.jpg) no-repeat center center;
 background-size: cover;
}
#page #page__strength{
 background: url(../img/main/strength.jpg) no-repeat center center;
 background-size: cover;
}
#page #page__manufacturing{
 background: url(../img/main/manufacturing.jpg) no-repeat center center;
 background-size: cover;
}
#page__repairing{
 background: url(../img/main/repair.jpg) no-repeat center center;
 background-size: cover;
}
#page__tug{
 background: url(../img/main/tugboat.jpg) no-repeat center center;
 background-size: cover;
}
#page__shipbuilder{
 background: url(../img/main/recruit6.jpg) no-repeat center center;
 background-size: cover;
}
#page__blog{
 background: url(../img/main/ceo_blog.jpg) no-repeat center center;
 background-size: cover;
}
#page__blog2{
 background: url(../img/main/blog.jpg) no-repeat center center;
 background-size: cover;
}
#page__blog3{
 background: url(../img/main/tugboat_blog_bg.jpg) no-repeat center center;
 background-size: cover;
}
#page__end{
 background:#333333;
}
#page__end .contactList li{
 display: inline-block;
}
#page__end .atoz:hover{
 text-decoration: underline;
}

#btnMainMenu {
 cursor: pointer;
 position: fixed;
 z-index: 999;
 top: 10px;
 right: 15px;
 width: 80px;
 height: 80px;
 border-radius: 40px;
 background: rgba(255,255,255,0);
 transition: .5s;
}
#btnMainMenu:hover {
 background: rgba(0,0,0,0.2);
}
#btnMainMenu .label{
 position: fixed;
 color: #fff;
 text-align: center;
 top: 60px;
 right: 15px;
 width: 80px;
 text-align: center;
 font-size: 16px;
}
#btnMainMenu .menuBtn__inner {
 transition: transform 0.5s;
 position: relative;
 top: 18px;
 left: 15px;
 width: 50px;
 height: 3px;
 background: #fff;
}
#btnMainMenu .menuBtn__inner::after {
 transition: transform 0.5s;
 position: absolute;
 top: 12px;
 content: "";
 display: block;
 width: 100%;
 height: 3px;
 background: #fff;
}
#btnMainMenu .menuBtn__inner::before {
 transition: transform 0.5s;
 position: absolute;
 top: 24px;
 content: "";
 display: block;
 width: 100%;
 height: 3px;
 background: #fff;
}
#btnMainMenu.active .menuBtn__inner {
 /*transform: rotate(45deg);*/
 height:0;
}
#btnMainMenu.active .menuBtn__inner::after {
 transform: rotate(45deg);
 top: 12px;
}
#btnMainMenu.active .menuBtn__inner::before {
 transform: rotate(-45deg);
 top: 12px;
}
#mainMenuArea{
 opacity: 0;
 visibility: hidden;
 position: fixed;
 top: 0px;
 height: 0px;
 width: 100%;
 height: 100%;
 background: #000;
 overflow-y: auto;
 transition: opacity 0.5s;
}
#mainMenuArea.active {
 opacity: 1;
 visibility: visible;
 z-index: 998;
}
#mainMenuArea.active.fadeout {
 opacity: 0;
}
#mainMenuArea .contactList{
 text-align: center;
}
#mainMenuArea .contactList li{
 display: inline-block;
}
#mainMenuArea .menuList{
 width: 70%;
 margin: 20px auto 0px;
}
#mainMenuArea .menuList a{
 color:#aaa;
 width: 48%;
 display: inline-block;
 position: relative;
 margin: 5px 0px;
}
#mainMenuArea .menuList a:visited{
 color:#aaa;
}
#mainMenuArea .menuList a:hover{
 opacity: 0.7;
 transition: .5s;
}
#mainMenuArea .menuList li{
 border-top: solid 1px #333;
 padding: 20px 10px;
}
#mainMenuArea .menuList li .subTtl{
 font-weight: bold;
 font-size: 180%;
 color: #333;
 margin-bottom: 15px;
}
#pageTop{
 display: inline-block;
 position: fixed;
 right: 8px;
 bottom: 8px;
 z-index: 990;
 color: #fff;
 background: rgba(40,40,40,0.9);
 padding: 4px 1em 4px;
 border-radius: 2em;
 box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
 cursor: pointer;
 transition: .5s;
 opacity: 0;
 visibility: hidden;
 padding-left: 0.5em;
}
#pageTop.active{
 opacity: 1;
 visibility: visible;
}
#pageTop i{
 background: rgba(255,255,255,0.1);
 padding: 5px;
 border-radius: 2em;
 margin:0px 5px;
 transition: .5s;
}
#pageTop:hover{
 background: rgba(100,100,100,0.5);
}
#pageTop:hover i{
 background: rgba(0,0,0,0.6);
}
#pageLoader.loader{
 position: fixed;
 width: 100vw;
 text-align: center;
 left: 0px;
 top: 48%;
 visibility: hidden;
 z-index: 3;
 color: #fff;
}
#pageLoader.loader p{
 margin-top: 20px;
 font-size: 80%;
}
#pageLoader.loader .loader-inner{
 display: inline-block;
}
#page__pushstate{
 position: relative;
 z-index: 10;
 visibility: hidden;
 opacity: 0;
 height: 0px;
 overflow: hidden;
}
#page__pushstate.active{
 transition: 3s;
 visibility: visible;
 opacity: 1;
 height: auto;
}

.mode_v #scrollRight,
.mode_v #scrollLeft{
 display: none;
}
.mode_v #page .pageCommon h2 {
 opacity: 0;
 transition: 2s;
}
.mode_v #pageLoader.loader{
 visibility: visible;
}

/*
===================================================
	page common
===================================================
*/
.bgGray{
 background: #eaeaea !important;
}
.ttlArea{
 position: relative;
 opacity: 1;
 visibility: visible;
 transition: .5s;
}
.ttlArea h2{
 text-align: center;
 color: #fff;
 position: absolute;
 width: 100%;
 /* top: 45%; */
 top: 46%;
 /* font-size: 80px; */
 font-size: 60px;
}
.ttlArea h2 .sttl{
 /* margin-top: 42px; */
 margin-top: 22px;
 display: block;
 font-size: 14px;
}
.pageMenuList{
 background: #222222;
 text-align: center;
 padding: 30px;
 opacity: 1;
 visibility: visible;
 transition: .5s;
}
.pageMenuList li{
 display: inline-block;
 min-width: 21%;
 margin: 5px;
}
.pageMenuList li a{
 display: block;
 background: #336ed2;
 color: #fff;
 padding: 20px 0px;
 background: -moz-linear-gradient(top, #4c84e2, #336ed2);
 background: -webkit-linear-gradient(top, #4c84e2, #336ed2);
 background: linear-gradient(to bottom, #4c84e2, #336ed2);
}
.pageMenuList li a:visited{
 color: #fff;
}
.pageMenuList li a:hover{
 background: -moz-linear-gradient(top, #336ed2,#4c84e2 );
 background: -webkit-linear-gradient(top, #336ed2,#4c84e2 );
 background: linear-gradient(to bottom, #336ed2,#4c84e2 );
}
.section{
 padding: 80px 0px;
 background: #fff;
 opacity: 1;
 visibility: visible;
 transition: .5s;
}
.section:last-child{
 padding-bottom: 150px;
}
.section .inner{
 max-width: 950px;
 margin: 0px auto;
}
.w860{
 max-width: 860px !important;
 margin: 0px auto;
}
.section .inner .imgArea{
 display: inline-block;
 width: 40%;
 padding: 2%;
}
.section .inner .txtArea{
 display: inline-block;
 width: 50%;
 vertical-align: top;
 padding: 2%;
}
.section h3{
 letter-spacing: .1em;
 text-align: center;
 font-size: 160%;
}
.section h3 span{
 font-family: Arial;
 letter-spacing: 0em;
 margin-top: 5px;
 display: block;
 font-weight: bold;
 font-size: 14px;
 color: #cb000b;
/* background: linear-gradient(0deg, #b60005,#dd0010);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;*/
}
.fadein{
 visibility: hidden;
 opacity: 0;
 -moz-perspective:500;
 -webkit-perspective:500;
 -o-perspective:500;
 -ms-perspective:500;
 -moz-transform: rotateX(70deg);
 -webkit-transform: rotateX(70deg);
 -o-transform: rotateX(70deg);
 -ms-transform: rotateX(70deg);
}
.page_underlayer .fadein{
 visibility: visible;
 opacity: 1;
 -moz-perspective:0;
 -webkit-perspective:0;
 -o-perspective:0;
 -ms-perspective:0;
 -moz-transform: rotateX(0deg);
 -webkit-transform: rotateX(0deg);
 -o-transform: rotateX(0deg);
 -ms-transform: rotateX(0deg);
}
.tblStyle{
 width: 100%;
 max-width: 800px;
 margin: 0 auto;
}
.tblStyle th{
 background: #d5e1f6;
 font-weight: normal;
 padding: 20px;
 text-align: left;
 width: 30%;
 border: solid 1px #888;
 border-right: none;
}
.tblStyle td{
 padding: 20px;
 border: solid 1px #888;
 border-left: none;
}
.menuStyle{
 text-align: center;
 background: #c9000b;
}
.menuStyle li{
 display: inline-block;
}
.menuStyle a{
 color: #fff;
 display: block;
 padding: 35px;
}
.sectionBtm{
 padding: 0px !important;
}
.sectionBtm a{
 color: #fff;
 display: block;
 text-align: center;
 vertical-align: middle;
 font-size: 180%;
 line-height: 1.1em;
 padding: 100px 10px; 
 background: #d6000f;
}
.sectionBtm a img{
 height: 1em;
 width: auto;
}

/*
===================================================
	page_about
===================================================
*/
.page_about .msg{
 font-size: 200%;
 font-weight: bold;
 padding: 40px 0px;
 text-align: center;
 color: #d6000f;
}
.page_about .ceoText{
 margin-top: 3em;
 text-align: right;
}
.page_about .ceoText .font-l{
 display: block;
 margin-top: .5em;
}
.page_about .sectionImg{
 padding-top: 40px;
}
.page_about .section{
 padding-bottom: 0px;
}
.page_about .section:last-child{
 padding-bottom: 80px;
}
/*
===================================================
	page company
===================================================
*/
.page_company .gmap{
 width: 100%;
 height:300px;
 border: none;
}
.page_company .section{
 background: #fff;
}
.historyTbl{
 width: 100%;
 max-width: 800px;
 margin: 0 auto;
}
.historyTbl .taisyo th,
.historyTbl .syowa th,
.historyTbl .heisei th,
.historyTbl .reiwa th{
 font-weight: normal;
 padding: 10px;
 border: solid 1px #888;
 vertical-align: top;
}
.historyTbl .taisyo th{
 background: #f5e7ff;
}
.historyTbl .syowa th{
 background: #ffeed4;
}
.historyTbl .heisei th{
 background: #f7ffe1;
}
.historyTbl .reiwa th{
 background: #ffd2d2;
}
.historyTbl th.parentCol{
 vertical-align: top;
 text-align: center;
 padding-top: 10px;
}
.historyTbl th{
 text-align: right;
}
.historyTbl td{
 vertical-align: top;
 padding: 10px;
 border: solid 1px #888;
}
/*
===================================================
	page contact
===================================================
*/
.page_contact .section{
 background: #fff;
}
.page_contact .tel_fax{
 text-align: center;
}
.page_contact .tel_fax li{
 display: inline-block;
 max-width: 320px;
 font-size: 22px;
 padding: 10px 30px;
}
.page_contact .tel_fax li span{
 font-size: 8px;
 display: block;
 text-align: right;
}
.page_contact .tel_fax li.tel{
 background: #db0010;
 color: #fff;
}
.page_contact .tel_fax li.fax{
 background: #003559;
 color: #fff;
}
.page_contact h4{
 text-align: center;
 border-bottom: solid 2px #aaa;
 margin: 40px 0px;
 padding: 10px;
 font-size: 110%;
}
/*
===================================================
	page entry
===================================================
*/
.page_entry .mynavi img{
 border:solid 2px #31b9ef;
}
/*
===================================================
	page interview
 page recruit
===================================================
*/
.page_interview .memberList{
 padding: 0px;
 background: #222222;
}
.page_interview .memberList ul{
 text-align: center;
 padding: 40px 0px;
}
.page_interview .memberList ul li{
 display: inline-block;
 padding: 1%;
 width: 22%;
}
.page_interview .memberList ul li a{
 color: #fff;
}
.page_interview .interviewSection .inner dl dt{
 margin: 40px 0px 10px;
 color: #db2c38;
 font-weight: bold;
}
.page_interview h3.ttlStyle,
.page_recruit h3.ttlStyle{
 font-size: 250%;
 letter-spacing: 0;
 color: #cb000b;
}
.page_interview h3.ttlStyle span,
.page_recruit h3.ttlStyle span{
 padding: 5px;
}
.page_interview .interviewSection .interviewList{
 text-align: center;
}
.page_interview .interviewSection .interviewList li{
 text-align: left;
 width: 45%;
 padding: 1%;
 display: inline-block;
}
.page_interview .interviewSection .interviewList li .photo{
 display: inline-block;
 vertical-align: top;
 width: 30%;
}
.page_interview .interviewSection .interviewList li .photo span{
 display: block;
 background: #aaa;
 width: 100%;
 height: 100px;
}
.page_interview .interviewSection .interviewList li .text{
 display: inline-block;
 width: 60%;
 padding: 10px;
 vertical-align: top;
}
.page_interview .interviewSection .interviewList li .text .date{
 font-size: 10px;
 margin-top: 5px;
}
.page_interview .interviewSection .more{
 text-align: right;
}
.page_interview .interviewSection .more a{
 color: #003559;
 display: inline-block;
 border-bottom: solid 1px #003559;
}
.page_interview .interviewSection .more a:visited{
 color: #003559;
}
.page_recruit .recruitPoint{
 border-top: solid 2px #666666;
 margin-top: 80px;
 padding-top: 80px;
}
.page_recruit .recruitPoint h4{
 font-size: 140%;
 text-align: center;
 margin-bottom: 1em;
 line-height: 1.4em;
}
.page_recruit .recruitList1,
.page_recruit .recruitList2{
 text-align: center;
}
.page_recruit .recruitList1 li,
.page_recruit .recruitList2 li{
 background: #fff;
 display: inline-block;
 margin:20px 1.5%;
 padding: 30px 3%;
 width: 40%;
 vertical-align: top;
 min-height: 280px;
 border-radius: 4px;
}
.page_recruit .recruitList1 li{
 text-align: left;
}
.page_recruit .recruitList1 li h5,
.page_recruit .recruitList2 li h5{
 color: #003559;
 text-align: center;
 margin-bottom: 10px;
 font-size: 140%;
 line-height: 1.5em;
}
.page_recruit .employeeList{
 text-align: center;
}
.page_recruit .employeeList li{
 background: #fff;
 display: inline-block;
 margin:20px 1%;
 width: 22%;
 vertical-align: top;
 color: #003559;
}
.page_recruit .employeeList li img{
 padding-bottom: 10px;
}
.btmMenu{
 display: table;
 width: 100%;
 padding: 0px !important;
}
.btmMenu a{
 color: #fff;
 display: block;
 text-align: center;
 vertical-align: middle;
 font-size: 180%;
 line-height: 1.1em;
 padding: 100px 10px; 
}
.btmMenu a img{
 height: 1em;
 width: auto;
}
.btmMenu .menu1{
 display: table-cell;
 width: 50%;
 vertical-align: middle;
}
.btmMenu .menu1{
 background: #003559;
}
.btmMenu .menu2{
 background: #d6000f;
}
/*
===================================================
	page manufactruring
===================================================
*/
.page_manufacturing .mainText{
 text-align: center;
}
.page_manufacturing .mainList{
 text-align: center;
}
.page_manufacturing .mainList li{
 display: inline-block;
 padding: 1%;
 width: 28%;
 max-width: 280px;
}
.page_manufacturing h3 span.font-l{
 display: block;
 font-size: 100%;
 padding: 8px;
}
.page_manufacturing h3 span.font-ll{
 display: block;
 font-size: 160%;
 line-height: 1.2em;
}
.page_manufacturing .sectionBtm{
 padding: 80px 0px !important;
 background: url(../img/manufacturing/bg_btm6.jpg) no-repeat center center;
 background-size: cover;
 color: #fff;
}
.page_manufacturing .sectionBtm .inner2{
 width: 48%;
 text-align: left;
 padding: 40px 0px;
}
.page_manufacturing .sectionBtm .inner2 h3{
 text-align: left;
}
/*
===================================================
	page newship
===================================================
*/
.page_newship .box{
 background: #fff;
 border-radius: 10px;
 padding: 30px 3%;
 text-align: center;
 position: relative;
}
.page_newship .box.left{
 float: left;
}
.page_newship .box.right{
 float: right;
}
.page_newship .box h4{
 color: #cf000c;
 font-size: 140%;
 margin-bottom: 20px;
}
.page_newship .box .text{
 display: inline-block;
 text-align: left;
}
.page_newship .stepRapper1 .box{
 margin-bottom: 50px;
}
.page_newship .stepRapper1 .box:after{
 position: absolute;
 content: "";
 display: block;
 border-top: solid 15px #cf000c;
 border-left: solid 10px transparent;
 border-right: solid 10px transparent;
 left: 50%;
 bottom: -30px;
 margin-left: -7px;
}
.page_newship .stepRapper1 .step1{
 text-align: center;
 overflow: hidden;
}
.page_newship .stepRapper1 .step1 .box{
 width: 42%;
 display: inline-block;
}
.page_newship .stepRapper2{
 position: relative;
}
.page_newship .stepRapper2:before{
 content: "";
 display: block;
 position: absolute;
 width: 8px;
 height: 98%;
 background: #cf000c;
 left: 50%;
 margin-left: -4px;
 z-index: 1;
}
.page_newship .start h4{
 background: #cf000c;
 color: #fff;
 text-align: center;
 border-radius: 10px;
 padding: 40px 0px;
 font-size: 140%;
}
.page_newship .stepRapper2 .row{
 overflow: hidden;
 padding-top: 50px;
}
.page_newship .stepRapper2 .box{
 width: 39%;
 text-align: left;
}
.page_newship .stepRapper2 .box.left:after,
.page_newship .stepRapper2 .box.right:after{
 position: absolute;
 content: "";
 display: block;
 border-top: solid 15px transparent;
 border-bottom: solid 15px transparent;
 top: 100px;
}
.page_newship .stepRapper2 .box.left:after{
 border-left: solid 30px #ffffff;
 right: -30px;
}
.page_newship .stepRapper2 .box.right:after{
 border-right: solid 30px #ffffff;
 left: -30px;
}
.page_newship .stepRapper2 .box.right{
 margin-top: 30px;
}
.page_newship .stepRapper2 .goal{
 position: relative;
 z-index: 2;
}
/*
===================================================
	page privacy
===================================================
*/
.page_privacy h3{
 color: #fff;
 background: #182050;
 padding: 20px;
 margin-bottom: 30px;
}
.page_privacy dl{
 margin-top: 30px;
}
.page_privacy dl dt{
 font-size: 110%;
 margin-bottom: 20px;
}
.page_privacy dl dd{
 margin-bottom: 40px;
}
/*
===================================================
	page repair
===================================================
*/
.repairList1{
 text-align: center;
}
.repairList1 li{
 display: inline-block;
 width: 26%;
 padding: 30px 2%;
 margin: 1%;
 vertical-align: top;
 background: #eaeaea;
 border-radius: 5px;
 text-align: left;
 min-height: 350px;
}
.repairList1 li h4{
 text-align: center;
 margin-bottom: 1em;
 font-size:110%;
 color: #cb000b;
}
.page_repair .dockingText .img{
 float: right;
 padding: 15px;
}
.page_repair .repairFLow h4{
 background: #3bdf8a;
 color:#fff;
 padding: 10px;
}
.page_repair .repairFLow ul{
 margin-top: 40px;
 text-align: center;
}
.page_repair .repairFLow ul li{
 display: inline-block;
 width: 20%;
 padding: 2%;
 vertical-align: top;
}
.page_repair .repairFLow ul li h5{
 text-align: center;
}
.page_repair .repairFLow ul li h5 .cover1{
 display: inline-block;
}
.page_repair .repairFLow ul li h5 .cover2{
 display: table-cell;
 width: 150px;
 height: 150px;
 border-radius: 150px;
 background: #3bdf8a;
 color:#fff;
 vertical-align: middle;
}
.page_repair .repairFLow ul li h5 span{
 display: block;
 font-size: 110%;
}
.page_repair .repairFLow ul li p{
 text-align: left;
 padding: 10px 0px;
}
/*
===================================================
	page tugboat
===================================================
*/
.page_tugboat .tugBoatList{
 text-align: center;
}
.page_tugboat .tugBoatList li{
 display: inline-block;
 text-align: left;
 width: 30%;
 padding: 1%;
 vertical-align: top;
}
.page_tugboat .tugBoatList li h5{
 color: #cb000b;
 font-size: 120%;
 margin-bottom:10px;
}
.page_tugboat .tugBoatList li .txt{
 padding:10px;
}
.tugBoatClickArea{
 position: relative;
 max-width: 959px;
 margin-left: auto;
 margin-right: auto;
 padding: 0 10px;
}
.tugBoatClickMsg{
 text-align:center;
 color: #03739c;
}
.tugBoatClickArea .btn{
 display: inline-block;
 background: #fff;
 border-radius: 2em;
 padding: 5px 0px;
 color: #03739c;
 cursor: pointer;
 position: absolute;
 top: 0px;
 left: 0px;
 width: 17%;
 text-align: center;
 font-weight: bold;
}
.tugBoatClickArea .btn .btnInner{
 position: relative;
}
.tugBoatClickArea .btn1:after,
.tugBoatClickArea .btn2:after,
.tugBoatClickArea .btn3:after,
.tugBoatClickArea .btn4:after,
.tugBoatClickArea .btn5:after,
.tugBoatClickArea .btn6:after{
 position: absolute;
 content:"";
 display: block;
 border-left: solid transparent 5px;
 border-right: solid transparent 5px;
}
.tugBoatClickArea .btn1{
 top: 10%;
 left: 38%;
}
.tugBoatClickArea .btn1:after{
 border-top: solid #fff 15px;
 bottom: -14px;
 left: 50%;
 margin-left: -5px;
}
.tugBoatClickArea .btn2{
 top: 45%;
 left: 50%;
}
.tugBoatClickArea .btn2:after{
 border-top: solid #fff 15px;
 bottom: -12px;
 left: 18%;
 margin-left: -5px;
 transform: rotate(20deg);
}
.tugBoatClickArea .btn3{
 top: 50%;
 left: 15%;
}
.tugBoatClickArea .btn3:after{
 border-top: solid #fff 15px;
 bottom: -14px;
 left: 70%;
 margin-left: -5px;
}
.tugBoatClickArea .btn4{
 top: 75%;
 left: 5%;
}
.tugBoatClickArea .btn4:after{
 border-bottom: solid #fff 15px;
 top: -12px;
 left: 20%;
 margin-left: -5px;
 transform: rotate(20deg);
}
.tugBoatClickArea .btn5{
 top: 87%;
 left: 52%;
}
.tugBoatClickArea .btn5:after{
 border-bottom: solid #fff 15px;
 top: -12px;
 left: 70%;
 margin-left: -5px;
 transform: rotate(-20deg);
}
.tugBoatClickArea .btn6{
 top: 73%;
 left: 80%;
}
.tugBoatClickArea .btn6:after{
 border-top: solid #fff 15px;
 bottom: -12px;
 left: 18%;
 margin-left: -5px;
 transform: rotate(20deg);
}
.popupArea{
 position: fixed;
 top: 0px;
 left: 0px;
 width: 100%;
 background: rgba(0,0,0,0.8);
 z-index: 99999;
 opacity: 0;
 transition: opacity 1s;
 visibility: hidden;
 height: 0px;
 overflow: hidden;
}
.popupArea.active{
 opacity: 1;
 visibility: visible;
 height: 100%;
}
.popupArea .popupWindow{
 display: none;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 margin-top: 14vh;
}
.popupWindow .popupWindowInner{
 background: #fff;
 max-height: 70vh;
 overflow-y: auto;
 height: 100%;
 padding: 2vh;
 margin: 2vh;
}
.popupArea .popupWindow .ttl{
 background: #2ca3cd;
 color: #fff;
 padding: 10px;
 margin-bottom: 10px;
}
.popupArea .popupWindow .txt{
 padding: 10px;
}
.popupArea .popupWindow.active{
 display: block;
}
.popupArea .btnClose{
 color:#fff;
 text-align: center;
 padding: 10px;
}
.popupArea .btnClose .btnInner{
 display: inline-block;
 cursor: pointer;
}


@media screen and (max-width: 1600px) {
#page .pageCommon .blogList li .photo{

	}
}

/*
===================================================
	sp
===================================================
*/
@media screen and (max-width: 768px) {
 body {
  font-size: 90%;
 }
 .sp-visible{
  visibility: visible;
 }
 .mt1em{
  margin-top: 10px;
 }
 .mt2em{
  margin-top: 15px;
 }
 .mt3em{
  margin-top: 20px;
 }
 .mb1em{
  margin-bottom: 10px;
 }
 .mb2em{
  margin-bottom: 15px;
 }
 .mb3em{
  margin-bottom: 20px;
 } 
 .sp-w10,.sp-w20,.sp-w25,.sp-w30,.sp-w33,.sp-w40,.sp-w50,.sp-w60,.sp-w70,.sp-w80,.sp-w90,.sp-w100{
  box-sizing: border-box;
 }
 .sp-w10{
  width: 10% !important;
 }
 .sp-w20{
  width: 20% !important;
 }
 .sp-w30{
  width: 30% !important;
 }
 .sp-w40{
  width: 40% !important;
 }
 .sp-w50{
  width: 50% !important;
 }
 .sp-w60{
  width: 60% !important;
 }
 .sp-w70{
  width: 70% !important;
 }
 .sp-w80{
  width: 80% !important;
 }
 .sp-w90{
  width: 90% !important;
 }
 .sp-w100{
  width: 100% !important;
 }
 #header{
  height: 65px;
 }
 #header h1{
  position: fixed;
  top: 12px;
  left: 12px;
 }
 #header h1 img{
  height: 40px;
  width: auto;
 }
 #main{
  position: relative;
 }
 #footer h2,
 #page #page__end h2{
  max-width:30%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
 }
 #btnMainMenu {
  cursor: pointer;
  position: fixed;
  z-index: 999;
  top: 7px;
  right: 7px;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  background: rgba(255,255,255,0);
  transition: .5s;
 }
 #btnMainMenu:hover {
  background: rgba(0,0,0,0.2);
 }
 #btnMainMenu .label{
  position: fixed;
  color: #fff;
  text-align: center;
  top: 36px;
  right: 7px;
  width: 50px;
  text-align: center;
  font-size: 10px;
 }
 #btnMainMenu .menuBtn__inner {
  transition: transform 0.5s;
  position: relative;
  top: 10px;
  left: 8px;
  width: 34px;
  height: 3px;
  background: #fff;
 }
 #btnMainMenu .menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: 9px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
 }
 #btnMainMenu .menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 18px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
 }
 #btnMainMenu.active .menuBtn__inner {
  /*transform: rotate(45deg);*/
  height:0;
 }
 #btnMainMenu.active .menuBtn__inner::after {
  transform: rotate(45deg);
  top: 12px;
 }
 #btnMainMenu.active .menuBtn__inner::before {
  transform: rotate(-45deg);
  top: 12px;
 }
 #scrollLeft,
 #scrollRight{
  display: none;
 }
 #page {
  position: absolute;
  height: auto;
  top: 0px;
  left: 0px !important;
 }
 #page>.inner {
  position: static;
  height: auto;
  width: 100% !important;
 }
 #page .pageCommon.pushState{
  height: 100vh;
 }
 #page .pageCommon.hidden{
  transition: none;
  overflow: hidden;
  height: 0px !important;
  padding: 0px !important;
  margin: 0px !important;
 }
 #page .pageCommon h2 {
  position: relative;
  font-size: 120%;
  margin-top: 1em;
 }
 #page .pageCommon .inner2 {
  width: 100%;
  height: auto;
 }
 #page .pageCommon {
  float: none;
  width: auto;
  height: 33.333vh;
 }
 #page .pageCommon>a {
  display: block;
  width: auto;
  height: 33.333vh;
 }
 #page .pageCommon h2{
  text-align: center;
 }
 #page .pageCommon .blogList li{
  margin-bottom: 8px;
 }
 #page .pageCommon .blogList li:last-child{
  display: none;
 }
 #page .pageCommon .blogList li a{
  display: block;
 }
 #page .pageCommon .blogList li .photo{
  width: 18%;
  display: inline-block;
  vertical-align: top;
 }
 #page .pageCommon .blogList li .photo img{
  /*width: 100%;*/
  max-width: 100%;
  height: auto;
 }
 #page .pageCommon .blogList li .text{
  width: 76%;
  display: inline-block;
  vertical-align: top;
  padding: 0px 2%;
  font-size: 90%;
 }
 #page #page__end{
  height: auto;
  padding:40px 0px;
 }
 #page #page__blog,
 #page #page__blog2/*,
 #page #page__blog3*/{
  height: auto;
  padding:10px 0px;
  min-height: 33vh;
 }
 #page #page__blog .tRight,
 #page #page__blog2 .tRight/*,
 #page #page__blog3 .tRight*/{
  text-align: center;
 }
 #page #page__end .inner3{
  width: auto;
  display: block;
 }
 #page__pushstate{
  position: absolute;
  top: 0px;
  left: 0px;
 }
 #mainMenuArea .menuList{
  width: 80%;
  margin: 20px auto 0px;
 }
 #mainMenuArea .menuList a{
  color:#aaa;
  width: auto;
  display: block;
  position: relative;
  margin: 8px 0px;
 }
 #mainMenuArea .menuList a:visited{
  color:#aaa;
 }
 #mainMenuArea .menuList a:hover{
  opacity: 0.7;
  transition: .5s;
 }
 #mainMenuArea .menuList li{
  border-top: solid 1px #333;
  padding: 20px 10px;
 }
 #mainMenuArea .menuList li .subTtl{
  font-weight: bold;
  font-size: 180%;
  color: #333;
  margin-bottom: 15px;
 }
 #pageLoader.loader{
  position: fixed;
  width: 100vw;
  text-align: center;
  left: 0px;
  top: 42%;
  visibility: hidden;
  z-index: 3;
  color: #fff;
 }
 /*
===================================================
	sp page common
===================================================
 */
 .ttlArea h2{
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  top: 35%;
  font-size: 22px;
 }
 .ttlArea h2 .sttl{
  margin-top: 5px;
  display: block;
  font-size: 10px;
 }
 .pageMenuList{
  background: #222222;
  text-align: center;
  padding: 0px;
  opacity: 1;
  visibility: visible;
  transition: .6s;
  padding: 10px
 }
 .pageMenuList li{
  display: inline-block;
  min-width: 40%;
  margin: 3px 0px;
  font-size: 8px;
 }
 .pageMenuList li a{
  display: block;
  background: #336ed2;
  color: #fff;
  padding: 10px 5px;
  background: -moz-linear-gradient(top, #4c84e2, #336ed2);
  background: -webkit-linear-gradient(top, #4c84e2, #336ed2);
  background: linear-gradient(to bottom, #4c84e2, #336ed2);
 }
 .pageMenuList li a:visited{
  color: #fff;
 }
 .pageMenuList li a:hover{
  background: -moz-linear-gradient(top, #336ed2,#4c84e2 );
  background: -webkit-linear-gradient(top, #336ed2,#4c84e2 );
  background: linear-gradient(to bottom, #336ed2,#4c84e2 );
 }
 .section{
  padding: 20px 0px;
 }
 .section:last-child{
  padding-bottom: 100px;
 }
 .section .inner{
  max-width: 950px;
  margin: 0px auto;
  padding: 10px 15px;
 }
 .section .inner .imgArea{
  display: block;
  width: auto;
  text-align: center;
 }
 .section .inner .imgArea img{
  max-width: 200px;
 }
 .section .inner .txtArea{
  display: block;
  width: auto;
  vertical-align: top;
  padding: 10px 15px;
 }
 .section h3{
  letter-spacing: .1em;
  text-align: center;
  font-size: 160%;
 }
 .section h3 span{
  font-family: Arial;
  letter-spacing: 0em;
  margin-top: 5px;
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #cb000b;
/*  background: linear-gradient(0deg, #b60005,#dd0010);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
 }
 .tblStyle th{
  padding: 5px;
  font-size: 80%;
  width: auto;
  display: block;
  border:none;
 }
 .tblStyle td{
  padding: 5px;
  font-size: 80%;
  width: auto;
  display: block;
  border:none;
 }
 .menuStyle{
  padding: 10px 0px;
 }
 .menuStyle li{
  width: 45%;
 }
 .menuStyle a{
  padding: 8px;
  font-size: 90%;
 }
 .sectionBtm a{
  font-size: 120%;
  padding: 30px 0px;
 }
 /*
 ===================================================
  sp page_about
 ===================================================
 */
 .page_about .msg{
  font-size: 140%;
  padding: 20px 0px;
 }
 .page_about .ceoText .font-l{
  font-size: 120%;
 }
 /*
===================================================
 sp	page company
===================================================
 */
 .page_company .gmap{
  width: 100%;
  height:300px;
  border: none;
 }
 .page_company .section{
  background: #fff;
 }
 .historyTbl{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
 }
 .historyTbl .taisyo th,
 .historyTbl .syowa th,
 .historyTbl .heisei th,
 .historyTbl .reiwa th{
  padding: 4px;
  font-size: 70%;
 }
 .historyTbl th.parentCol{
  width: 10%;
 }
 .historyTbl td{
  width: 55%;
  font-size: 70%;
  padding: 4px;
 }
 /*
===================================================
	sp page_contact
===================================================
 */
 .page_contact .mainText{
  text-align: left;
 }
 .page_contact .tel_fax{
  text-align: center;
 }
 .page_contact .tel_fax li{
  display: inline-block;
  min-width: 320px;
  font-size: 16px;
  padding: 10px 30px;
 }

 .page_contact .tel_fax li span{
  text-align: center;
 }

 /*
===================================================
	sp page_interview
 sp page_recruit
===================================================
 */
 .page_interview h3.ttlStyle,
 .page_recruit h3.ttlStyle{
  font-size: 160%;
  letter-spacing: 0;
  color: #cb000b;
 }
 .page_interview .memberList{
  display: none;
 }
 .page_interview .interviewSection .interviewList li{
  width: auto;
  display: block;
 }
 .btmMenu{
  display: block;
  padding: 0px !important;
 }
 .btmMenu a{
  font-size: 120%;
  padding: 50px 10px; 
 }
 .btmMenu .menu1,
 .btmMenu .menu2{
  display: block;
  width: auto;
 }
 .page_recruit .mainText{
  text-align: left;
 }
 .page_recruit .recruitPoint{
  margin-top: 30px;
  padding-top: 30px;
 }
 .page_recruit .recruitList1 li,
 .page_recruit .recruitList2 li{
  display: block;
  width: auto;
  min-height: 0px;
 }
 .page_recruit .employeeList li{
  width: 44%;
 }
 .page_recruit .employeeList li img{
  padding-bottom: 10px;
 }
 /*
===================================================
	sp page manufactruring
===================================================
 */
 .page_manufacturing h3 span.font-l{
  display: block;
  font-size: 90%;
  padding: 8px;
 }
 .page_manufacturing h3 span.font-ll{
  display: block;
  font-size: 140%;
  line-height: 1.2em;
 }
 /*.page_manufacturing .sectionBtm{
  background: url(../img/manufacturing/bg_btm3.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 30px 0px !important;
 }*/
 .page_manufacturing .sectionBtm .inner2{
  width: auto;
  text-align: left;
  padding: 0px;
 }
 .page_manufacturing .sectionBtm .inner2 h3{
  text-align: left;
 }
 /*
===================================================
 sp	page newship
===================================================
 */
 .page_newship .box{
  font-size: 80%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 3%;
  text-align: center;
  position: relative;
 }
 .page_newship .box h4{
  font-size: 120%;
  margin-bottom: 10px;
 }
 .page_newship .stepRapper1 .step1{
  text-align: center;
  overflow: hidden;
 }
 .page_newship .start h4{
  padding: 20px 0px;
  font-size: 120%;
 }
 .page_newship .stepRapper2 .row{
  overflow: hidden;
  padding-top: 30px;
 }
 .page_newship .stepRapper2 .box{
  display: block;
  width: auto;
  text-align: left;
  position: relative;
  z-index: 2;
  float: none;
 }
 .page_newship .stepRapper2 .box.left:after,
 .page_newship .stepRapper2 .box.right:after{
  display: none;
 }
 .page_newship .stepRapper2 .goal{
  margin-top: 30px;
 }
 /*
===================================================
	sp page repair
===================================================
 */
 .repairList1{
  text-align: center;
 }
 .repairList1 li{
  display: block;
  width: auto;
  text-align: left;
  min-height: 0px;
  margin: 20px;
 }
 .repairList1 li h4{
  text-align: center;
  margin-bottom: 1em;
  font-size:110%;
  color: #cb000b;
 }
 .page_repair .dockingText .img{
  float: none;
  display:block;
  margin: 0 auto;
 }
 .page_repair .repairFLow h4{
  background: #3bdf8a;
  color:#fff;
  padding: 10px;
 }
 .page_repair .repairFLow ul{
  margin-top: 40px;
  text-align: center;
 }
 .page_repair .repairFLow ul li{
  display: block;
  width: auto;
  padding: 2%;
  vertical-align: top;
 }
 .page_repair .repairFLow ul li h5{
  text-align: center;
 }
 .page_repair .repairFLow ul li h5 .cover1{
  display: block;
 }
 .page_repair .repairFLow ul li h5 .cover2{
  display: block;
  width: auto;
  height: auto;
  border-radius: 150px;
  padding: 10px;
 }
 .page_repair .repairFLow ul li h5 span{
  display: inline;
  font-size: 110%;
 }
 .page_repair .repairFLow ul li p{
  text-align: left;
  padding: 10px 0px;
 }
 /*
===================================================
	sp page tugboat
===================================================
 */
 .page_tugboat .tugBoatList li{
  display: block;
  width: auto;
 }
 .page_tugboat .tugBoatList li img{
  margin: 0 auto;
 }
 .tugBoatClickArea{
  padding: 0 10px;
 }
 .tugBoatClickMsg{
  text-align:center;
  color: #03739c;
  font-size: 12px;
 }
 .tugBoatClickArea .btn{
  font-size: 10px;
  padding: 0px;
  text-align: center;
  font-weight: bold;
 }
}
	

	
	@media screen and (max-width: 942px) {
	.page_manufacturing .sectionBtm{
  background: url(../img/manufacturing/bg_btm6.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 30px 0px !important;
 }
}
	
	@media screen and (max-width: 554px) {
	.page_manufacturing .sectionBtm{
  background: url(../img/manufacturing/bg_btm5.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 30px 0px !important;
 }
}
	
	@media screen and (max-width: 900px) {
	.page_manufacturing .sectionBtm{
  background: url(../img/manufacturing/bg_btm7.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 30px 0px !important;
 }
}

 @media screen and (max-width: 768px) {
	.page_manufacturing .sectionBtm{
  background: url(../img/manufacturing/bg_btm5.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 30px 0px !important;
 }
}

