/* General body settings */
:root{
	--color_loading: #f0f5f7;
	--color_lightblack:#272626;
}

html{
  font-size: 62.5%; /* sets the base font to 10px for easier math */
}
*{
	padding:0;
	margin: 0;
}	
 
body {
  	font-size: 15.5px;
  	font-size: 1.55rem;  
  	background: #fff;
	color:#27333b; 
	direction: ltr;
	font-family: "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;

}


section{/*add*/ 
margin-bottom: 20px;
}
article{/*add*/
	padding-right: 15px;
	line-height: 1.7;
	z-index: -999;
}
img{/*add*/
	max-width: 100%;
}


/***
General typography 
***/
/*h1,*/ h2, h3, h4, h5, h6 {
	margin: 0 0 10px;
}


/***
Fix link outlines after click
***/
a {
	color: #059bec;
}
a, a:focus, a:hover, a:active {
	outline: 0;
 	text-decoration: none;
	/*add*/
	-webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
	color:#d9a864;
	text-decoration: none;
}
a:hover img.opacity {/*add*/
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/***
Misc tools
***/
.no-padding {
	padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-bottom-space {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.no-top-space {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.no-space {
  margin: 0 !important;
  padding: 0 !important;
}
.no-text-shadow {
  text-shadow: none !important;
}

.padding-top-5 {
	padding-top: 5px !important;
}
.padding-top-10 {
	padding-top: 10px !important;
}
.padding-top-15 {
	padding-top: 15px !important;
}
.padding-top-20 {
	padding-top: 20px !important;
}
.padding-top-25 {
	padding-top: 25px !important;
}
.padding-top-30 {
	padding-top: 30px !important;
}
.padding-top-35 {
	padding-top: 35px !important;
}
.padding-top-40 {
	padding-top: 40px !important;
}
.padding-top-45 {
	padding-top: 45px !important;
}
.padding-top-50 {
	padding-top: 50px !important;
}
.padding-top-60 {
	padding-top: 60px !important;
}
.padding-right-40{/*add*/
	padding-right: 40px;
}

.margin-bottom-0 {
	margin-bottom: 0 !important;
}
.margin-bottom-5 {
	margin-bottom: 5px !important;
}
.margin-bottom-10 {
	margin-bottom: 10px !important;
}
.margin-bottom-15 {
	margin-bottom: 15px !important;
}
.margin-bottom-20 {
	margin-bottom: 20px !important;
}
.margin-bottom-25 {
	margin-bottom: 25px !important;
}
.margin-bottom-30 {
	margin-bottom: 30px !important;
}
.margin-bottom-35 {
	margin-bottom: 35px !important;
}
.margin-bottom-40 {
	margin-bottom: 40px !important;
}
.margin-bottom-50 {
	margin-bottom: 50px !important;
}
.margin-bottom-60 {
	margin-bottom: 60px !important;
}
.margin-bottom-65 {
	margin-bottom: 65px !important;
}

.margin-top-10 {
	margin-top: 10px !important;
}

.margin-left-0 {
  margin-left: 0 !important;
}
.margin-right-0 {
  margin-right: 0 !important;
}
.margin-left-10 {/*add*/
	margin-left: 10px !important;
}
.margin-right-20 {
	margin-right: 20px !important;
}
.margin-left-20 {
	margin-left: 20px !important;
}

.padding-left-0 {
  padding-left: 0 !important;
}
.padding-left-5{
	padding-left: 5px!important;
}
.padding-right-0 {
  padding-right: 0 !important;
}
.padding-right-30 {
	padding-right: 30px !important;
}

.margin-right-10 {
	margin-right: 10px !important;
}
.margin-auto{/*add*/
	width: 98%;
	margin-left: auto;
	margin-right: auto;

}

/* フォームadd
------------------------------------------------------------*/
input[type="text"], textarea ,select{
vertical-align:middle;
/*width:95%;*/
line-height:30px;
height:30px;
padding:1px 5px;
border:1px solid #d4d4d7;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
font-size:/*100%*/16px;
color:#555;
background:#fcfcfc;
margin-bottom:3px;
}

input.number_s{
	width:6em;}

textarea{
height:/*auto*/10em;
line-height:1.5;
}

select{
	width:50%;
}
label{
	padding-left: 5px;
	padding-right: 10px;
	font-weight: normal;
}

input[type="submit"],input[type="reset"],input[type="button"]{
padding:8px 20px;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.73, #911300), color-stop(0.00, #c1272d));
background: -webkit-linear-gradient(top, #e84d1c 0%, #c1272d 63%);
background: -moz-linear-gradient(top, #e84d1c 0%, #c1272d 63%);
background: -o-linear-gradient(top, #e84d1c 0%, #c1272d 63%);
background: -ms-linear-gradient(top, #e84d1c 0%, #c1272d 63%);
background: linear-gradient(to bottom, #e84d1c 0%, #c1272d 63%);

border:1px solid #efefef;
border-radius:4px;
-webkit-border-radius:4px;
-moz-border-radius:4px;
line-height:1.5;
font-size:100%;
color:#fff;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover{
background: #e84d1c;
}

/*
div.checker,
div.radio {
	top: -1px;
}

select.form-control {
	color: #5f6d7b;
	border-radius: 0;
	border-color: #e4e6e8;
	box-shadow: none;
}
select.form-control:focus {
	box-shadow: none;
	border-color: #999;
}

input.form-control,
textarea.form-control {
	border-color: #dbdbdb;
	color: #777;
	font: 14px Arial, sans-serif;
	border-radius: 0;
	box-shadow: none;
}
input.form-control:focus,
textarea.form-control:focus {
	box-shadow: none;
	border: solid 1px #dbdbdb;
}
*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
}
*html .clearfix {
	zoom: 1;
}
*+html .clearfix {
	zoom: 1;
}
.clear {
	clear: both; 
	height: 0; 
	font-size: 0; 
	line-height: 0; 
	overflow: hidden;
}

.lead {
    font-size: 16px;
}

.font-transform-inherit {
	text-transform: inherit !important;
}

.color-red {
	color: #E84D1C;
}

/***
Custom Scrollbars
***/

::-webkit-scrollbar {  
    width: 12px;  
}  

::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-left: 1px solid #cecece;  
}  

::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  

::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  

::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/* overides metro scrolbars in IE10 and makes them look like a default scrollbar */
@-ms-viewport{
	width: auto !important;
}

::-moz-selection {
  color: #fff;
  background: #e45000;
}
::selection {
  color: #fff;
  background: #e45000;
}

/* Global classes */
.min-hight500 {
	min-height: 500px;
}

/***
Pre-Header and pre-header elements
***/

.pre-header {
	color: #ffffff;
	/*border-bottom: 1px solid #eee;*/
	padding-top: /*10px*/4px;
	line-height: 1.2;
	/*font-family: 'Open Sans', sans-serif;*/
	/*font-weight: 300;*/
	font-size: 13px ;
	font-size:1.3rem;
	background: /*#333333*/#272626;
}

.pre-header a {
	color: #616b76;
}
.pre-header a:hover {
	color: /*#E02222*/#f7931e;
}
.pre-header a:focus {
	text-decoration: none;
}
.pre-header li {
	padding-left: 11px;
	padding-right: 15px;
	border-right: solid 1px #d8d8d8;
}
.pre-header li:last-child {
	border: none;
}
.additional-shop-info li:first-child {
	padding-left: 0;
}
.additional-nav{/*add*/
  border-bottom: 0.5px solid rgba(255,255,255,0.60);
 overflow: hidden;
  
}
.additional-nav h1{/*add*/
	font-size: 13px;
  	line-height:normal;
	margin: 0;
	padding: 0;
	
}
.additional-nav li:last-child {
	padding-right: 0;
}
.pre-header .fa {
	margin-right: 4px;
}

/***
Header and header elements
***/
.header {
	/*box-shadow: 0 1px 3px #ddd;*/
	background: /*#333333*/#272626;
	border-radius: 0;
	/*margin-bottom: 23px;*/
	z-index: 999;
	position: relative;
}

.header #header_contact{/*add*/
	width: 50px;
	height: 40px;
	display: block;
	z-index: 999;
	
	padding-top: 24px;
	justify-content: flex-end;
	
}

.header_contact_sp{/*add*/
	display: none;
}
.header #header_logomark{/*add*/
	width: 330px;
	height: 172px;
	display: block;
	z-index: 999;
	position: absolute;
	top:-40px;
	left:0;
	
}
.header #header_logomark img{
	height: 100%;
}

.header #header_logomark img.logo_sp{/*add*/
	display: none;
}


/* FIX styles BEGIN */
.page-header-fixed .header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
}
body.page-header-fixed {
	padding-top: /*88px*/107px !important; /* height of the header */
}

.page-header-fixed .header #header_contact {/*add*/
	padding-top: 10px;
}
.page-header-fixed .header #header_logomark{/*add*/
	width:196px;
	height:53px;
	display: block;
	top:inherit;
	bottom: 0;
	left:0;
	
}
.page-header-fixed .header #header_logomark img.logo_pc{
	display: none;
}
.page-header-fixed .header #header_logomark img.logo_sp{
	display: block;
}

/* FIX styles END */

.header .container {
  position: relative;
}
.ie8 .header {
	border-bottom: 1px solid #eee;
}

.site-logo {
  float: left;
  font-size: 23px;
  font-weight: 400;
  
  margin-left: 100px;/*add*/
  margin-right: 67px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.header .mobi-toggler {
  float: right;

  width: /*32px*/68px;
  height: 32px/*24px*/;
  display: none;

  margin:8px 0;
  position: relative;
  /*background: #2a62ae url( ../../images/toggler.png) no-repeat;*/
	background-color: #2a62ae;
	background-image: url( ../../images/toggler.png) ;
	background-size: contain;
	background-position: center center;
}
.header .mobi-toggler i {
  display: none;
}


/* Navigation */
.header-navigation {
	/*font: 15px "Open Sans", sans-serif;*/
	font-size: 15px;
	font-size:1.5rem;
	margin: /*0 10px 0 0*/0;
	padding: 0;
	/*float: left;*/
	/*text-transform: uppercase;*/
	z-index: 999!important;/*add*/
	display:flex;/*add*/
	
}
.header-navigation ul {/*add*/
	margin: 0;
	margin-right: 30px;/*add*/
	padding: 0;
	list-style: none;
	letter-spacing: 0.1rem;
	justify-content: flex-end;
}
.header-navigation > ul > li {
	float: left;
}
.header-navigation > ul > li > a {
	color: /*#333*/#ffffff;
	display: block;	
	/*padding: 29px 12px 30px;*/
	padding: 34px 12px 26px;
	border-bottom: 4px solid  rgba(247,147,30,0.00);/*add*/
}
.header-navigation ul > li.active > a,
.header-navigation ul > li > a:hover,
.header-navigation ul > li > a:focus,
.header-navigation ul > li.open > a,
.header-navigation ul > li.open > a:hover,
.header-navigation ul > li.open > a:focus {
	/*color: #e02222;*/
	/*background: #fcfcfc;*/
	text-decoration: none;
	
}
.header-navigation ul > li.active > a {
	border-bottom: 4px solid  /*#f7931e*/#d9a864;
}

/* dropdown menu */
@media (min-width: 1025px) {
	.header-navigation > ul > li:hover > .dropdown-menu {
	  display: block;
	}
}

.header-navigation,
.header-navigation .dropdown {
  position: static;
}
.header-navigation .dropdown-fix-left,
.header-navigation .dropdown-fix-right {
	position: relative;
}
.header-navigation .dropdown-menu {
  left: auto;
  top: 100%;  
  padding: 0;
  background: #fff;
  position: absolute;
  border: none;  
  box-shadow: 5px 5px rgba(91, 91, 91, 0.2);
  text-transform: none;
  font: 13px "Open Sans", sans-serif;
  letter-spacing: 0;
  border-radius: 0;
  z-index: 9999;
}

.header-navigation .dropdown-menu:before,
.header-navigation .dropdown-menu:after {
	display: none !important; 
}

.dropdown-fix-left .dropdown-menu {
	left: 0;
	width: 700px;
}
.dropdown-fix-right .dropdown-menu {
	right: 0;
	width: 700px;
}
.header-navigation > ul > li > .dropdown-menu {
	margin-top: -5px;
	border-top: solid 3px transparent;
	z-index: 1001;
}
.header-navigation .dropdown100 > .dropdown-menu {
  left: 15px;
  right: 15px;
}
.header-navigation > ul > li.dropdown:hover > a:after { 
  bottom: 0;
  width: 0; 
  height: 0;
  z-index: 1002; 
  content: " "; 
  display: block !important; 
  position: absolute;
  border-bottom: 8px solid /*#e6400c*//*#f7931e*/#d9a864;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  
  /*add*/
  	-webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ie8 .header-navigation > ul > li.dropdown:hover > a:after {
	display: none !important;
}
.header-navigation li.dropdown100 > .dropdown-menu:after {
	display: none !important;
}
.header-navigation .dropdown-menu > li:first-child {
	border-top: solid 2px #ea4c1d;
}
.header-navigation .dropdown-menu li {
  padding: 0;
  margin: 0;
  border-bottom: solid 1px #efefef;
  position: relative;
  float: none;
}
.header-navigation .dropdown-menu li:last-child {
  border: none;
}
.header-navigation .dropdown-menu li > a {
  padding: 10px 15px;
  font-weight: 400;
  color: #767f88;
}
.header-navigation .dropdown-menu > li > a:hover,
.header-navigation .dropdown-menu > li.active > a,
.header-navigation .header-navigation-content .header-navigation-col li > a:hover,
.header-navigation .header-navigation-content .header-navigation-col li.active > a {
  background: /*#e6400c*/#f7931e;
  color: #fff;
}
.dropdown-submenu > a:after {
  display: none;
}

/* navigation content */
.header-navigation-content {
  padding: 20px 30px;
  min-width: 600px;
}
.header-navigation-content .header-navigation-col {
	padding: 0;
}
.header-navigation-content h4,
.ecommerce .header-navigation-content h4 {
  font: bold 15px 'Open Sans', Arial, sans-serif;
  margin: 0 0 6px;
  padding: 10px 10px 5px;
  border-bottom: solid 1px #f0f0f0;
}
.header-navigation-content ul {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
}
.header-navigation-content li {
  padding: 0;
  border: none !important;
}
.header-navigation-content li > a {
  display: block;
}

/* header navigation description */
.header-navigation-content-ext {
  padding: 20px 30px 2px;
  background: #fff;
}
.header-navigation-description {
  background: #fcfafb; 
  margin: -20px 0 -2px -30px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(91, 91, 91, 0.2) inset;
}
.header-navigation-content-ext h4,
.ecommerce .header-navigation-content-ext h4 {
  border: none;
  padding: 10px 0 0;
}
.header-navigation .dropdown-menu .header-navigation-content-ext li {
  border: none;
}
.header-navigation .dropdown-menu .header-navigation-content-ext li > a {
  padding: 0 0 10px;
  color: #767f88;
  display: inline-block;
}
.header-navigation .dropdown-menu .header-navigation-content-ext li > a:hover,
.header-navigation .dropdown-menu .header-navigation-content-ext li.active > a {
  background: #fff;
  color: /*#e6400c*/#f7931e;
}

/* n-level submenu */
.header-navigation .dropdown-menu .dropdown-menu {
  left: 100%;
  right: auto;
  top: 6px;
}
.header-navigation .dropdown-menu a {
  position: relative;
}
.header-navigation .dropdown-menu .fa {
  position: absolute;
  top: 13px;
  right: 15px;
}

/* Top Search */
.header-navigation li.menu-search {
	position: relative;
	top: 26px;
}
.header-navigation li.menu-search span.sep {
	top: 0;
	width: 1px;
	height: 26px;
	background: #eaeaea;
	position: relative;
	margin: 0 18px 0 16px;
	display: inline-block;
}
.header-navigation li.menu-search i {
	color: #333;
	font-size: 16px;
	cursor: pointer;
	position: relative;
	top: -6px;
	/*background: url(../img/icons/top-search-icon.png) no-repeat;*/
	width: 15px;
	height: 15px;
	opacity: 0.6;
}
.header-navigation li.menu-search i:hover {
	color: /*#e02222*/#f7931e;
	background-position: 0 -15px;
}
/*.header-navigation .fa-search:before {
	content: none;
}*/
.header-navigation .search-box {
	right: -7px;
	top: 100%;
	padding: 15px;
	display: none;
	background: #fcfafb;
	position: absolute;
	border-top: solid 2px #ea4c1d;
	box-shadow: 5px 5px rgba(91, 91, 91, 0.2);
	width: 274px;
	margin-top: 0;
	z-index: 22;
}
.header-navigation .search-box:after { 
	top: -8px;
	width: 0; 
	height: 0;
	right: 8px;
	z-index: 2; 
	content: " "; 
	display: block; 
	position: absolute;
	border-bottom: 8px solid #e6400c;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.header-navigation .search-box button {
	margin-left: 0 !important;
}

.reduce-header .site-logo {
	padding-top: 9px;
	padding-bottom: 11px;
}
@media (min-width: 1025px) {
	.reduce-header .header-navigation > ul > li > a {
		padding: 16px 12px 17px;
	}
	.ecommerce .reduce-header .header-navigation > ul > li > a {
		padding: 23px 12px 20px;
	}
	.reduce-header .header-navigation li.menu-search {
		top: 14px;
	}
	.ecommerce .reduce-header .header-navigation li.menu-search {
		top: 21px;
	}
}
.reduce-header .mobi-toggler {
	margin-top: /*12px*/8px;
}
.page-header-fixed .header .mobi-toggler {
 	transition: margin 0.3s ease;
	-o-transition: margin 0.3s ease;
	-ms-transition: margin 0.3s ease;
	-moz-transition: margin 0.3s ease;
	-webkit-transition: margin 0.3s ease;
}


/* breadcrumb */
.breadcrumb {
	background: none;
	padding: 0;
	font: 13px "Open Sans", sans-serif;
	color: #5f6d7b;
	margin-bottom: /*22px*/5px;
}
.breadcrumb > li + li:before {
	content: "\f105 ";
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #5f6d7b;
}
.breadcrumb a {
	color: #d9a864;
}
.breadcrumb a:hover{
	text-decoration: none;
} 
.breadcrumb > .active {
	/*color: #095da6;*/
}


/***
Pre-Footer and pre-footer elements
***/
.pre-footer {
	color: /*#b0b0b0*/#ffffff;
	background: #484848;
   background: -moz-linear-gradient(left,  #484848 0%, #484848 80%, #2a62ae 80%, #2a62ae 100%);
   background: -webkit-linear-gradient(left,  #484848 0%,#484848 80%,#2a62ae 80%,#2a62ae 100%);
   background: linear-gradient(to right,  #484848 0%,#484848 80%,#2a62ae 80%,#2a62ae 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#484848', endColorstr='#2a62ae',GradientType=1 );
}
.pre-footer .container {
	padding-top: /*45px*/0;
}
.pre-footer a {
	color: /*#57c8eb*/#ffffff;
}
.pre-footer a:hover {
	text-decoration: none;
}
.pre-footer h2
/*.ecommerce .pre-footer h2*/ {
	/*font-size: 21px;*/
		font-size:17px;
	font-size: 1.7rem;
	color: /*#c2c1c1*/#ffffff;

}

/*add address*/
.pre-footer p.footer_place{
	/*border-bottom: 1px solid rgba(255,255,255,0.5);*/
	letter-spacing: 0.2rem;
}


.pre-footer dt {

font-weight: bold;
font-size: 13.5px;
font-size: 1.35rem;
padding-bottom: 1px;

}
.pre-footer dd { 

  font-size: 13px;
  font-size:1.3rem;
  line-height: 1.7;
  
  padding-bottom: 5px;
}


.pre-footer address {
	line-height: 1.7;
}
.pre-footer-col {
	/*padding-bottom: 22px;*/
}
.pre-footer .top-line {
	border-top: solid 1px #535353;
	padding-top: 24px;
	padding-bottom: 17px;
}


/* footer */
.footer {
	background: #272626;
	color: #fff;
	font-size: 12px;
	padding: 15px 0;
}
.footer-light {
	background: #F9F9F9;
	color: #3e4d5c;
}
.footer-gray {
	background: #4A5866;
}
.footer a {
	color: #fff;
	text-decoration: underline;
}
.footer a:hover {
	text-decoration: none;
}
.footer-light a {
	color: inherit;
}
.footer .padding-top-10 {
	opacity: 0.5;
}
.footer .list-inline > li:last-child {
	padding-right: 0;
}
.footer ul {
	margin: 0;
	padding: 0;
}
.footer ul.social-footer {
	font-size: 18px;
	padding-top: 5px;
}
.footer ul.social-footer a {
	opacity: 0.5;
}
.footer ul.social-footer a:hover {
	opacity: 1;
}

/*add*/

#footer_left{
	padding-top:30px; 
	text-align: center;
}
#footer_middle{
	padding-top: 40px;
}

#footer_contact{
 background-color: #2a62ae;
 text-align: center;
 max-width: 100%;
 min-height: 230px;
 position:relative;
}
#footer_contact:after{
content: "";
  position:absolute;
  top:40%;
  left:0;
  width:0;
  height:0;
  border-style: solid;
border-width: 17px 0 17px 15px;
border-color: transparent transparent transparent #484848;
}
#footer_contact img{
	margin-top: 40px;
}


/***
Font awesome icons styles
***/
.fontawesome-icon-list [class^="fa-"],
.fontawesome-icon-list [class*=" fa-"],
li [class^="fa-"],
li [class*=" fa-"] {
	display: inline-block;
	width: 1.25em;
	text-align: center;
}
.fontawesome-icon-list [class^="fa-"].icon-large,
.fontawesome-icon-list [class*=" fa-"].icon-large,
li [class^="fa-"].icon-large,
li [class*=" fa-"].icon-large {
  	width: 1.5625em;
}
.fontawesome-icon-list .col-md-3 {
    height: 32px;
    line-height: 32px;
}


/**************************/
/* Add table
***************************/
table.table_2col { 
	width:100%; 
	border-collapse: collapse;
    border-spacing: 0;
	}
table.table_2col th, table.table_2col td  { 
	padding: 10px 10px 10px 20px; 
	border-bottom: 1px dotted #cccccc;
	vertical-align: top; 

	}	
table.table_2col th{font-weight: normal!important;letter-spacing:0.5rem;background-color:#f5f5f7;}
table.table_2col tr:first-child th,table.table_2col tr:first-child td {border-top:1px  dotted #ccc;}
/*table.table_2col tr:last-child th{border-bottom:1px  dotted #ccc;}*/

/*table.table_2col tr:first-child{border-top: 1px dotted  #059bec;}/*add*/
/*table.table_2col tr:nth-child(odd){background-color:#fffcf3;}/*add*/
/*table.table_2col tr:nth-child(even){background-color: #fffef8;}/*add*/
  
table.table_2col th  { width: 24%; text-align: left;}


@media only screen and (max-width: 600px){
    table.table_2col { margin: 0 /*-10px*/0; }
    table.table_2col th,
    table.table_2col td{
        /*width: 92%;*/
		  width: 100%;
        display: block;
		  padding-top: 5px;
		  padding-bottom: 5px;
		  padding-left: 10px;
        border: none!important;
		/*border-left:1px solid #ddd;
		border-right:1px solid #ddd;*/
    }
	 table.table_2col td{padding-bottom: 14px;}
}

/***行数が多いタイプ spでは1行1テーブルに変更します***/
div.resp_table table {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    width: /*640px*/100%;
    border-spacing: 0;
    margin: 0 auto;
}
div.resp_table table th,div.resp_table table td {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    text-align: /*center*/left;
    padding: 10px;
	background-color: /*#FEF8EC*/#ffffff;
}
div.resp_table table th { background-color: /*#84CCC9*/#f5f5f7; color: #333;font-weight: normal;}

@media screen and (max-width: 640px){
	div.resp_table table { width: 100%; border:none; padding: 10px;}
	div.resp_table thead { display: none;}
	div.resp_table tr {
    		border-top: 1px solid #ccc;
    		display: block;
    		margin-bottom: 20px;
	}
	div.resp_table td {
    		border-right: 1px solid #ccc;
    		border-bottom: none;
    		display: block;
    		padding: 0;
	}
	/* tdのデザイン */
	div.resp_table td:nth-of-type(1) { background-color: /*#12b5b1*/#f5f5f7;/*color: #2a62ae*/; font-size: 110%;/*font-weight: bold;*/overflow: hidden;}
	div.resp_table td:last-child { border-bottom: 1px solid #ccc;}
     
	/*td:beforeのデザイン*/
	div.resp_table tr td:before {
    		/*background-color: /*#f5f3ec*/
    		color: /*#4f4d47*/#2a62ae;
			font-size: 90%;
		    /*font-weight:bold;*/
    		display: block;
	}
 
	/* contentでスマホ用のタイトルを追加 */

	/*col3_equipment*/
	div.resp_table table.col3_equipment tr td:nth-of-type(2):before { content: "メーカー・型式";}
	div.resp_table table.col3_equipment tr td:nth-of-type(3):before { content: "台数";}
}


/***************************************/
/* add*/
/***************************************/

/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: var(--color_loading);
	z-index: 9999999;
}
#splash-logo{
	z-index:10;
	margin-bottom: 5rem;
}
#loading_logo_svg{
	width: 150px;
	height: 150px;
}

#loading_logo_svg [id^="num_"] {
  opacity: 0;
  transform: translateX(120px);
  animation: slideInR 0.5s ease-out forwards;
  /* SVG 安定化（Safari 等） */
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}
#loading_logo_svg #num_1{animation-delay:0.6s; }
#loading_logo_svg #num_2{animation-delay:0.8s; }
#loading_logo_svg #num_3{animation-delay:1s; }
#loading_logo_svg #num_4{animation-delay:1.2s; }
#loading_logo_svg #num_5{animation-delay:1.5s; }
@keyframes slideInR {
  from { opacity: 0; transform: translateX(120px); }
  to   { opacity: 1; transform: translateX(0); }
}
#splash-logo > h1{
	animation-name: fadeIn_catch;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
	animation-delay:2.2s; 
	display: block;
}
#splash-logo > h1 > img{
	width: 90vw;
	max-width: 600px;
	height: auto;
}

@keyframes fadeIn_catch{
  from {opacity: 0;}
  to {opacity: 1;}
}


/*===================================
Main
===================================*/

/*mainimg----------------------------------*/
#mainimg{
position: relative;
padding: 0 0 0 0;
height: 100vh;
height: calc(var(--vh, 1vh) * 100);
}
/* video */
.mainvideo{
  width: 100%;
  height: 100vh;
  background-color: black;
	position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;
}
.mainvideo video{
	  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /*全画面カバー */
  object-position: center; /* 常に中央を基準 */
  z-index: -1;
}


#pagetop_title{
   z-index: -999;
	height: 180px;
	background-color: #000000;
	background-image: url(../../images/pagetitle/pagetitle_img.jpg);
	background-repeat: no-repeat;
	background-size: cover;

	margin-bottom: 60px;
	position: relative;
	/*padding-top: 80px;*/
}

#pagetop_title  h2{	
	 color: #ffffff;
 	position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -148px;
	
}

article h3{
	font-size:28px;
	font-size: 2.8rem;
	letter-spacing: 0.8rem;
	color: #001f82;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom:  2px solid #001f82;
}
article h4{
padding: .25em 0 .25em .75em;
  border-left: 6px solid #001f82;
  font-size:18px;
  font-weight: bold;
  margin-bottom: 20px;
}

/****************************************
add トップページ  body#index
*****************************************/
#index section{
	margin-bottom: 80px;
}

h2.index_h2{
   font-size: 28px;
   font-size:2.8rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.1rem;
	margin-bottom: 30px;
	}
/*h3.index_h3{
   font-size: 24px;
   font-size:2.4rem;
   text-align: center;
	color: #059bec;
	font-weight: bold;
	letter-spacing: 0.4rem;
   margin-bottom: 30px;
}*/

/*home_results_banner*/
#home_results_banner {
  background-color:var(--color_lightblack);
  padding-top: 80px;
  padding-bottom: 80px;
}
#home_bottom_img{
	 height: 380px;
	 width: 100%;
	display: block;
	overflow: hidden;
	background-image: url("../../images/home/home_bottom_bg-min.jpg");
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
}

  #home_youtube #video-container{
    position: relative;
	  width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
  }
  /* 枠いっぱいにフィットさせる */
  #home_youtube #video-container > img,
  #home_youtube #video-container > iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
  }

/***************************************
/*add 　会社概要
/***************************************/
.access_bg{
	background-color: #f5f5f7;
	padding: 30px 20px;
}

/***************************************
/*add 　ものづくり ,問い合わせ
/***************************************/
#monozukuri_top{
	margin-top: -50px;
}

#monozukuri article h3,#contact article h3{
	font-size: 34px;
	letter-spacing: 0;
	line-height: 1.5;
	border-bottom: 0.5px solid #cccccc;
}
dl.dl_yousetsu dt{
	background-color: #f5f5f7;
	padding: 2px 0 2px 5px;
	margin-bottom: 4px;
}
dl.dl_yousetsu dd{
	padding-bottom: 5px;
}
#equipment_photos img{
	width: 100%;
	height: auto;
}
#equipment_photos .equipment_title{
  position: absolute;
 display: block;
 width: 100%;
  min-height: 2em;
	padding: 0.5em;
  bottom:0;
  left: 0;
  color: #fff;
	text-align: center;
  font-size: 1.5rem;
	z-index: 2;
	background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

/***************************************
/*add 　問い合わせ
/***************************************/
.contact_tel{
	font-size:26px;
	font-size:2.6rem;
}

/*form*/
label {
    font-size: 1.6rem;
	margin-bottom: .2rem;
	}
textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus { /*bootstrapの青枠を消す*/
  outline: none!important;
  box-shadow: none!important;
	border: 1px solid #4bb2f2!important;
	background-color:#EBF6FC!important;
}
.form-control {
	font-size: 1.6rem;
	padding: 12px 8px;
	margin-bottom: 4px;
	line-height: 1.5;
	height: auto!important;
	border: 1px solid #4bb2f2!important;
	background-color:#CCE9FB!important;
}
.form-group{
	margin-bottom: 20px;
}
.text_required{
  background-color: #e60000;
  color:#ffffff;
  font-size:13px;
  padding: 2px 6px;
  font-weight: normal;
  margin-left: 10px;
  border-radius: 2px;
}
.error, .error-php, .error-js {
  color: #e60000;
}

/***************************************
/*add 　採用情報
/***************************************/
#recruit_top{
margin-bottom: 60px;
padding-top: 20px;
overflow: hidden;
}
#recruit_top .photo_01,#recruit_top .photo_02,#recruit_top .photo_03,#recruit_top .photo_04,#recruit_top .photo_05,#recruit_top .photo_06{
	min-height: 250px; 
	background-image: url( ../../images/recruit/recruit_top_yousetsu03.jpg);
	background-repeat: no-repeat; 
	background-size:cover;
}
#recruit_top .photo_02{
	background-image: url( ../../images/recruit/recruit_top_yousetsu01.jpg);
}
#recruit_top .photo_03{
	background-image: url( ../../images/recruit/recruit_top_keisoku01.jpg);
}
#recruit_top .photo_04{
	background-image: url( ../../images/recruit/recruit_top_woman_one.jpg);
}
#recruit_top .photo_05{
	background-image: url( ../../images/recruit/recruit_top_yousetsu02.jpg);
}
#recruit_top .photo_06{
	background-image: url( ../../images/recruit/recruit_top_keisoku02.jpg);
}

.recruit_title{
	font-size:28px;
	font-size:2.8rem;
	letter-spacing: 0.2rem;
	color: #001f82;
	margin-bottom: 30px;
}

/***************************************
/*add 製作事例
/***************************************/
.results_item{
	width: 100%;
	margin-bottom: 30px;
	padding: 0 25px ;
}
.results_photo{
	/*max-width: 100%;*/
	margin-bottom: 2px;
}
.results_photo > img{
	width: 100%;
	height: auto;
}
.results_title{
	display: block;
	padding: 2px 10px ;
	background-color: #2a62ae;
	color: #ffffff;
	letter-spacing: 0.1rem;
	margin-bottom: 5px;
}

.results_comment{
   display: block;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
	line-height:1.3;
	margin: 0;
	min-height: 40px;
}


/***************************************
/*add 共通*/
/***************************************/
/*スマホ切り替え*/	
.display_sp{display:none;}
.display_pc{display:inline;}
.text_center_pc{text-align: center;}
.pull-right_pc{float: right;}

/*テキスト*/
.font_min,.font_min_bold{
font-family: "Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","HGP明朝B",serif;
font-weight: 600;
-webkit-transform-origin: 0 0;
-webkit-transform: scale(1, 1.01);
-moz-transform-origin: 0 0;
-moz-transform: scale(1, 1.01);
-ms-transform-origin: 0 0;
-ms-transform: scale(1, 1.02); /* IE9だけ1.02 */
-o-transform-origin: 0 0;
-o-transform: scale(1, 1.01);
}
.font_min_bold{
	font-weight: bold!important;
}

.letter_0{letter-spacing:0!important;}

.line_height_18{line-height: 1.8;}

.font_blue{color: #059bec;}
.font_dark{color:#2a62ae; }
.font_red{color: #ff0000;}
.font_bold{font-weight: bold;}
.font_normal{font-weight: normal!important;}
.font_85{font-size: 85%;}
.font_120{font-size: 120%;}
.font_28{font-size: 28px;font-size: 2.8rem;}
.font_25{font-size: 25px;font-size:2.5rem;}


/*ul スタイル*/
ul.list_maru li:before{
  content:"";
  background-color: #cccccc;
  width: 5px;
  height: 5px;
  border-radius: 50%;

  float: left;
  text-align: center;
  margin-right: 5px;
  margin-top: 8px;
  padding:0;

}
/*ul カウント*/
ul.ul_count_maru{counter-reset:count-number;}
ul.ul_count_maru4{counter-reset:count-number 3;}
ul.ul_count_maru li:before ,ul.ul_count_maru4 li:before {
  counter-increment: count-number;
  content: counters(count-number,"") ;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;

  background-color: #2a62ae;
  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: block;
  float: left;
  text-align: center;
  vertical-align: middle;
  margin-right: 12px;
  padding:0;
}

/*googlemap*/
.googlemap-container {margin-bottom: 10px; position: relative; padding-bottom: 40%; height: 0; overflow: hidden; max-width: 100%; } .googlemap-container iframe, .googlemap-container object, .googlemap-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*アンカーリンクのheader-fix調整*/
#seimitsu::before,#bankin::before,#ship::before,#kenchiku::before,#plant::before,#object::before {
    content: "";
    display: inline-block;
    height: 80px;
    margin-top: -10px;
    vertical-align: top;
}

/*ボタン*/
div.btn_results{/*results*/
	max-width: 96%;
	margin: 0 auto 20px;
}
div.btn_w600{/*index*/
	max-width: 600px;
	margin: 20px auto;
}


a.btn_results_blue,a.btn_results_black,a.btn_w600{
  display:inline-block;
   width: 100%;
  text-align: center;
  text-decoration: none;
  outline: none;
  	font-size: 18px;
	font-size: 1.8rem;
	height: 52px;
	line-height: 44px;
	letter-spacing: 0.4rem;
	background-image: url(../../images/arrow_right_white.png);
	background-repeat: no-repeat;
	background-position: center right 20px;
}

a.btn_results_blue{
  background-color: #2a62ae;
  border:2px solid #2a62ae;
  color: #ffffff;
}
a.btn_results_black{
	background-color: var(--color_lightblack);
  	border: 1px solid rgba(255,255,255,1);
	color: #ffffff;
	font-size: 18px;
	font-size: 1.8rem;
}
a.btn_w600{
	background-image: url(../../images/arrow_right_dark.png);
	background-repeat: no-repeat;
	background-position: center right 20px;
  background-color: #fff;
  border:2px solid #2a62ae;
  color: #2a62ae;
}
a.btn_results_blue:hover {
background-color: #ffffff;
color: #2a62ae;
background-image: url(../../images/arrow_right_dark.png);
}
a.btn_results_black:hover {
background-color: black;
/*color: #ffffff;
background-image: url(../../images/arrow_right_white.png);
border: 1px solid white;*/
}
a.btn_w600:hover {
background-color: #2a62ae;
color: #fff;
background-image: url(../../images/arrow_right_white.png	);
}

