@charset "utf-8";


h1.logo > a{
	display: block;
	width: 148px;
	height: 82px;
	text-indent: -9999px;
	background-image: url(/img/logo_pc_s.svg);
  background-size: cover;
}

	
/*===========================================================*/
/* Parts: Loading */
/*===========================================================*/

/*================== step1 ==================*/

#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#loading-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*================== step2 ==================*/

.loading-bg{
	display: none;
}

body.appear .loading-bg{
	display: block;
	position:fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: scaleY(0);
	background-color: #3f51b5;
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}

	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}

	50.001% {
		transform-origin:top;
	}

	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*================== step3 ==================*/

/*home*/
body#home > #wrapper,
body#en > #wrapper{
	opacity: 1;
	background-image:url(/img/logo.svg);
	background-repeat:no-repeat;
	background-size:550px; /* 45% */
		background-attachment:unset;
}
body#home.appear > #wrapper,
body#en.appear > #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 1;
}

/*subpage*/
#wrapper{
	opacity: 1;
	background-image:url(/img/logo.svg);
	background-repeat:no-repeat;
	background-size:550px; /* 45% */
		background-attachment:fixed;
}
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 1;
}


@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*===========================================================*/
/* Parts: Text Slide (from Left) */
/*===========================================================*/


body#home .bgbox,
body#en .bgbox{
	animation-name:bgboxAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	display: inline-block;
	opacity:0;
}
.bgbox{
	animation-name:bgboxAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:1;
}

@keyframes bgboxAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}


body#home .bgext02,
body#en .bgext02{
	animation-name:bgboxAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
	background:white;
}

@keyframes bgboxAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

body#home .bgext01::before,
body#en .bgext01::before{
	animation-name:bgext01Anime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3b4154; /*#1553a7*/ /* #3f51b5 */
}
@keyframes bgext01Anime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}



/* from below */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* to left */

.flipLeft{
animation-name: flipLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}



body#home .trigger01,
body#home .trigger02,
body#en .trigger01,
body#en .trigger02,
.fadeUpTrigger,
.flipLeftTrigger{
    opacity: 0;
}

#vision,
.service-area{
    transform:  translate3d(0, 0, 0);
}



/*===========================================================*/
/* Parts: Scroll */
/*===========================================================*/

.scroll{
	/* position:absolute;*/
	position:fixed;
	/* left:5%;*/
	left:35px;
	top: 680px;
	/* bottom:7%;*/
	height:50px;
}

.scroll span{
	position: absolute;
	left:-15px;
	top: -65px;
	color: #000;
	font-size: 0.7rem;
	font-weight:bold;
	letter-spacing: 0.5em;
	-ms-writing-mode:tb-rl;
	-webkit-writing-mode:vertical-rl;
	writing-mode:vertical-rl;
}

.scroll::after{
	content: "";
	position: absolute;
	top: 25px;
  left: -5px;
  width: 1px;
  height: 40px;
  background: #000;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}



/*===========================================================*/
/* Parts: Header Tool Navi */
/*===========================================================*/
#toolnav{
	position:absolute;
	top:0;
	right:0;
}
#toolnav > ul{
	display:flex;
}
#toolnav > ul > li{
  background: #10458c /* #344e9e */ /* 2848ac */
}
#toolnav > ul > li > a{
	display: table-cell;
  vertical-align: bottom;
  color: white;
  width: 68px;
  height: 65px;
	background-repeat:no-repeat;
	background-position: top 26% center;
	background-size:28%;
	text-align:center;
	font-size:0.8em;
	padding:5px;
}

#toolnav > ul > li.search > a{
	background-image:url(/img/lnr-search.svg);
	border-right: 1px solid #6a7cb587; /* 3455bd */
}
#toolnav > ul > li.en > a{
	background-image:url(/img/lnr-earth.svg);
/*	display:none;*/
}

.searchform{
	position: fixed;
  right: 0;
  top: 65px;
  background-color: #2666bb;
  padding: 0;
  z-index: 99;

overflow:hidden;
	min-height:0;
	height:0;
	transition: min-height 0.5s;
}
.searchform > form{
	margin:30px;
}
.searchform > form > input{
	background-color:white;
  border-radius: 2px;
}
.searchform > form > button{
	color: #ffffff;
  text-align: center;
  border: 1px solid #d6e8ff52;
  border-radius: 2px;
  font-size: 0.9rem;
	padding:1px 10px;
}
.searchform.open{
	display:block;
	min-height:93px;
}
form#searchform{
	border: 1px solid #999;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto 40px auto;
}

article.search_result{
	border:1px solid #ccc;
	margin-bottom:20px;
}

article.search_result h3{
	background:#f7f7f7;
	border-bottom:1px dotted #ccc;
	margin-bottom: 20px;
}
article.search_result h3 > a > span{
	font-size:0.9rem;
	text-decoration:underline;
}

article.search_result .entry-summary{
	padding:0 20px 20px 20px;
}
article.search_result span.more{
	font-weight:bold;
	text-decoration:underline;
}



/*===========================================================*/
/* Parts: Side Tool Navi */
/*===========================================================*/
#sidenav{
	position:fixed;
	top:22%;
	right:0;
}
#sidenav > ul{

}
#sidenav > ul > li{
  background: #3b4154;
}
#sidenav > ul > li:hover{
	background-color:#505669;
}
#sidenav > ul > li > a{
	display: block;
  vertical-align: bottom;
  color: white;
  width: 56px;
  height: 230px;
  background-repeat: no-repeat;
  background-position: top 10% center;
  background-size: 36%;
  text-align: center;
  font-size: 1rem;
  padding: 14px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


#sidenav > ul > li.contact > a{
	background-image:url(/img/lnr-contact.svg);
	border-right: 1px solid #3455bd;
}
#sidenav > ul > li.shop > a{
	background-image:url(/img/lnr-cart.svg);
	border-top:1px solid #ffffff47;
}



/*===========================================================*/
/* Parts: News Tikker
/*===========================================================*/


.slider a{
  display: inline;
  /* background:#fff;*/
  padding:3px 0;
}
.slider a:hover{
	text-decoration:underline;
}
.slider li:before{
	font-family: 'Linearicons-Free';
  content: "\e876";
	    font-size: 0.8rem;
    margin-right: 20px;
    font-weight: bold;
    color: #338bd7;
}

.slider .time{
  display: inline-block;
    font-size: 0.98rem;
    margin-right: 30px;
    color: #404040;
}



dl.newslist{
	display:flex;
	border-bottom: 1px dotted #ccc;
	padding: 10px 0;
}
dl.newslist > dt{
	color: #868686;
	margin-right: 25px;
}
dl.newslist > dd > a:before{
	font-family: 'Linearicons-Free';
  content: "\e876";
  /* margin-bottom: 20px; */
  padding-right: 10px;
  /* margin-top: 0; */
  top: -1px;
  font-size: 0.7rem;
  font-weight: bold;
  /* display: inline-block; */
  position: relative;
}


/*===========================================================*/
/* mobile navi */
/*===========================================================*/
#g-nav{
  position:fixed;
  z-index: 999;
	bottom:-120%;
	width:100%;
  height: 100vh;
	background:#3f51b5;
	transition: all 0.6s;
}

#g-nav.panelactive{
  bottom: 0;
}

#g-nav #g-nav-list{
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


#g-nav ul {
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

#g-nav li{
	list-style: none;
  text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*===========================================================*/
/* toggle menu */
/*===========================================================*/

.openbtn{
	position:fixed;
  z-index: 9999;
	top:0;
	right: 0;
	cursor: pointer;
  width: 80px;
  height:70px;
  border-left:2px solid #333;
}
	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
	background: #333;
  	width:30%;
  opacity: 0;
  top:22px;
  left:20px;
 }

.openbtn span:nth-of-type(2) {
	top:22px;
	left:18px;
	text-transform: uppercase;
	color: #333;
  font-size: 0.9rem;
}



.openbtn span:nth-of-type(3) {
  top:35px;
}

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
  opacity:1;
}

.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 30px;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity:0;
}

.openbtn.active span:nth-of-type(3){
  top: 40px;
  left: 30px;
  transform: translateY(-6px) rotate(45deg);
}



/*===========================================================*/
/* gronavi */
/*===========================================================*/

#header{
	position: fixed;
  background-color: white;
	/* position: absolute;*/
	height: 82px;
	width:100%;
/*	max-width:840px;*/
	right:0;
  z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#header.scr{
	box-shadow: 1px 3px 3px 0 #91919126;
}

#pc-nav{
  max-width: 840px;
  right: 170px;
  position: absolute;
	height: 94px;
	/* font-family: 'Noto Sans JP';*/
	font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
	font-size:0.9rem;
}

#pc-nav > ul{
	list-style: none;
	display: flex;
	justify-content: center;
  text-transform: uppercase;
  margin: 0;
}

#pc-nav > ul > li > ul{
	display:none;
}



#pc-nav > ul > li{
	max-width:168px;
}
#pc-nav > ul > li > a{
	display: block;
	text-decoration: none;
	color: #333;
	/* padding:0 15px;*/
	/* padding: 35px 13px;*/
	/* padding: 25px 10px 30px 10px;*/
	padding: 33px 10px 30px 10px;
	/*transition:all 0.3s;*/
  min-width: 110px;
	height:85px;
  text-align: center;
}
#pc-nav > ul > li > a:hover{
	border-bottom:2px solid #036db8;
}
#pc-nav > ul > li > a:after{
	color: #10458c;
	content:"\e874";
	display: block;
	font-family: 'Linearicons-Free';
	font-size: 0.6rem;
}
#pc-nav > ul > li > a:after:hover{
	font-size:0.8rem;
}
#pc-nav > ul > li.no > a:after{
	content:none;
}

#pc-nav > ul > li:first-child > a:after{
	content:none;
}
#pc-nav > ul > li:nth-child(3) > a:after{
	content:none;
}


#pc-nav > ul > li.current > a,
#pc-nav > ul > li > a:hover{
	color:#3f51b5;	
}

.megamenu{
	background:#1553a7; /* #10458c */
	display:flex;
	padding:30px 0 40px 0;
	position: absolute;
	height:500px;
  top: 80px;
  width: 100%;
	z-index: 1;
	display:none;
}

.megamenu > .title{
	color: white;
	border-left: 4px solid white;
	display: block;
	font-size: 1.4rem;
	padding-left: 15px;
	margin: 15px auto;
	max-width: 900px;
}
.megamenu > ul{
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
	width:100%;
}
.megamenu > ul > li{
	padding: 10px 20px;
	width:33.33%;
}
.megamenu > ul > li > a{
	color:white;
	display: flex;
  align-items: center;
	border:1px solid #1357aa;
	border-radius:2px;
	padding:5px;
}
.megamenu > ul > li > a:hover{
	border:1px solid white;
	border-radius:2px;
}
.megamenu > ul > li > a > img{
	max-width: 100px;
	border-radius: 2px;
	margin-right: 13px;
}


/* */

/*
.open{
	display:block;
}
*/
.close{
	display:none;
}

/*===========================================================*/
/* scrollgress */
/*===========================================================*/

.scrollgress{
	z-index:99;
}



/*===========================================================*/
/* pagetop */
/*===========================================================*/

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#3b4154;
	width: 56px;
	height: 70px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.8rem;
	font-weight:normal;
	transition:all 0.3s;
}
#page-top a:before{
	font-family: 'Linearicons-Free';
	content:"\e873";
}

#page-top a:hover{
	background: #777;
}

#page-top {
	position: fixed;
	right: 0;
	bottom:0;
	z-index: 2;
	opacity: 0;
	transform: translateX(100px);
}

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
  opacity: 0;
	transform: translateX(100px);
  }
  to {
  opacity: 1;
	transform: translateX(0);
  }
}


#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}




/*===========================================================*/
/* main image */
/*===========================================================*/

#top-main{
	width:100%;
	min-height: 610px;
	position: relative;
	overflow: hidden;
} 

#top-main:before{
	content: '';
	position:absolute;
	top:90px; /* 12vh */
	left:190px; /* 16% */
	z-index:-1;
	width:90%;
	height:100%;
	max-height:600px; /* 80vh */
/*	background:url("/img/main.jpg") no-repeat center;
	background-size:cover;*/
}


#subtop-main{
	width:100%;
	min-height: 330px; /* 730px*/
	position: relative;
	overflow: hidden;
	z-index: 1;
} 

#subtop-main:before{
	content: '';
	position:absolute;
	top:12vh;
	left:16%;
	z-index:-1;
	width:90%;
	height: 38vh;
	background:url("/img/about-img.jpg") no-repeat center bottom;
	background-size:cover;
}

body#prod #subtop-main:before{
	content: '';
	position:absolute;
	top:90px;
	/* top:12vh;*/
	left:16%;
	z-index:-1;
	width:90%;
	height: 38vh;
	background:url("/img/prod-img.jpg") no-repeat center bottom;
	background-size:cover;
}
body#prod #subtop-main{
	min-height: 240px;
}

body#prod_sub #subtop-main{
	min-height: 240px;
}


body#prod_sub #subtop-main:before{
	background:url("/img/prod-img.jpg") no-repeat center bottom;
}

.tag{
	background: #8e8e8e;
	border-radius: 3px;
	color: white;
	font-size:0.8rem;
	padding: 5px;
}
/*
.tag:after{
	content: "\A";
	height:20px;
	white-space: pre;
}
*/
body#prod_sub h2,
h2.prod_sub{
	margin: 20px 0 30px 0 !important;
}




section.spsec{
	padding-bottom:60px;
}

h3{
  background: #eaeaea;
	padding: 12px 18px;
	margin-bottom: 35px;
	font-size: 1.3rem;
}
h4{
	border-left: 3px solid #4d70b1;
	padding: 2px 20px 2px 20px;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.table01{
	margin-bottom:30px;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
.table01 th{
	text-align:left;
}
.table01 th,
.table01 td{
	padding:10px 15px 10px 0;
	vertical-align:top;
	display:table-cell;
}


.table02{
	margin-bottom:30px;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
.table02 th{
	text-align:left;
}
.table02 th,
.table02 td{
	padding:10px 15px 10px 0;
	vertical-align:top;
	display:table-cell;
}

.w10{
	width:10% !important;
}
.w20{
	width:20% !important;
}

.map{
	padding: 4px 10px 3px 10px;
	border-radius: 10px;
	background: #5caf6e;
	color: white;
	font-size: 0.8rem;
}



.col_block1 > div > img{
	display:block;
	max-width:300px;
	margin: 23px auto;
}
.col_block1 > div > span{
	text-align:center;
	display:block;
}


.col_block2{
}
.col_block2 > div{
}
.col_block2 > div > img{
	display:block;
	max-width:450px;
	margin: 23px auto;
}
.col_block2 > div > span{
	text-align:center;
	display:block;
}


.col_block3{
	display:flex;
}
.col_block3 > div{
	display:block;
	width:33%;
	border:1px solid #d8d8d8;
	border-bottom:2px solid #d8d8d8;
	border-radius:10px;
	margin-top:15px;
	margin-right:25px;
	padding:20px;
}

.prod_block2{
	display:flex;
	margin: 0 auto;
	width: 98%;
	margin-bottom:40px;
}
.prod_block2 > div{
	border: 1px solid #ececec;
	border-radius: 15px;
	box-shadow: 0px 4px 16px #eaeaea;
	padding: 20px 30px 30px 30px;
	margin: 10px;
	width: 50%;
}
.prod_block2 > div > .title{
	font-size: 1.7rem;
	font-weight: 600;
	border-bottom: 1px solid #c1c1c1;
	letter-spacing: 13px;
	padding-bottom: 10px;
}
ul.prod_p{
	margin-top: 20px;
}
ul.prod_p > li{
	text-indent: -30px;
	margin-left: 30px;
}

ul.prod_p > li:before{
	content: "〇\00a0\00a0\00a0";
  font-weight: bold;
  color: #568dbb;
}
ul.prod_f{
	margin-top: 20px;
}

ul.prod_f > li{
	margin-left: 12px;
  padding-left: 20px;
  text-indent: -31px;
}

ul.prod_f > li:before{
	font-family: 'Linearicons-Free';
	content:"\e81d\0a00";
}

.prod_fmenu{
	display: block;
padding: 40px 40px 50px 40px;
  margin-top: 40px;
  margin-bottom: 45px;
  background: #f3f3f3;
}
.prod_fmenu > .title{
	text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.prod_fmenu ul{
  display: flex;
	list-style-type:none;
}
.prod_fmenu ul > li {
  flex: 1;
}
.prod_fmenu ul > li > a {
  align-items: center;
	color:white;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
	box-shadow: 0px 7px 9px -4px #d1d1d1;
	border-radius: 10px;
	background: #375188;
	border-radius: 10px;
	margin: 10px;
	padding: 3px;
	font-weight:bold;
	font-size:1.2rem;
}
.prod_fmenu ul > li > a:hover{
	opacity:0.9;
}
.prod_fmenu ul > li > a.tel{

}
.prod_fmenu ul > li > a.tel:before{
	font-family: 'Linearicons-Free';
	content:"\e830\0a00";
	font-size: 1.7rem;
}
.prod_fmenu ul > li > a.tel > span{
	font-size:0.9rem;
}
.prod_fmenu ul > li > a:hover{
	box-shadow: 0px 10px 14px -4px #d0d0d0;
}
.prod_fmenu ul > li > a:before{
	font-family: 'Linearicons-Free';
	content:"\e839\0a00";
	font-weight:normal;
	font-size: 1.7rem;
}

.prod_detail{
	display:flex;
	flex-wrap:wrap;

min-height:250px;
}
.prod_detail > .lead{
	width:50%;
	padding:30px 30px 30px 0;
}
.prod_detail > .prod_img{
	width:50%;

    position: absolute;
    top: 15%;
    right: 8%;
}
.prod_detail > .prod_img > img{
	max-width: 400px;
	margin: 0 auto;
	display: block;
}

.prod_spec{
	padding:0 20px 60px 20px;
}

.lead{
	margin-bottom:15px;
}
.lead_img{
	max-width:300px;
	margin:0 auto;
}


.menu{
	display: block;
	padding: 10px 0;
  margin-bottom: 30px;
}
.menu ul{
  display: flex;
	list-style-type:none;
	/* justify-content: flex-end;*/
	flex-wrap: wrap;
}
.menu ul > li {
  /* flex: 1;*/
	width:25%;
}

body#prod .menu ul > li {
  /* flex: 1;*/
	width:33%;
}
.menu ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
	/* box-shadow: 0px 7px 9px -4px #d1d1d1;*/
	box-shadow: 0px 4px 9px 2px #e2e2e2;
	border-radius: 10px;
	background: #fff;
	border-radius: 10px;
	margin: 10px;
	padding: 16px;
	font-weight:bold;
	font-size:1.1rem;
}
.menu ul > li > a:hover{
	/* box-shadow: 0px 10px 14px -4px #d0d0d0;*/
	box-shadow: 0px 4px 9px 2px #d6d6d6;
}
.menu ul > li > a:before{
	font-family: 'Linearicons-Free';
	content:"\e888\0a00";
	font-weight:normal;
}


.col_bk2{
	display:flex;
	justify-content: space-between;
	border-bottom:1px solid #eaeaea;
}
.col_bk2 > .item{
	margin:30px 0;
}
.col_bk2 > .item:first-child{
	width:50%;
	padding-right:25px;
}
.col_bk2 > .item:nth-child(2){
	width:50%;
	padding-left:25px;
}
.col_bk2 > .item > img{
	width:100%;
}

.bold{
	font-weight:bold;
	background:#e3ebfd;
}

.right{
	text-align:right;
}

.center{
	text-align:center;
}

.sub-menu{
	color:white !important;
  left: 0;
  /* top: 77px;*/
	top:82px;
  position: fixed;
  width: 100%;
  background-color: #1553a7;
  padding: 0;
	z-index:1;

	overflow:hidden;
	min-height:0;
	height:0;
	transition: min-height 0.5s;
}
.sub-menu.open{
	min-height: 530px;
}
.mg_prod .sub-menu.open{
	min-height:560px;
}

.sub-menu > .title{
	color: white;
	border-left: 4px solid white;
	display: block;
	font-size: 1.4rem;
	padding-left: 15px;
	margin: 15px auto;
	max-width: 900px;
}
.sub-menu > ul{
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 30px auto;
	width:100%;
}
.sub-menu > ul > li{
	padding: 10px 20px;
	width:33.33%;
}
.sub-menu > ul > li > a{
	color:white;
	display: flex;
  align-items: center;
	border:1px solid #1357aa;
	border-radius:2px;
	padding:5px;
}
.sub-menu > ul > li > a:hover{
	border:1px solid white;
	border-radius:2px;
}
.sub-menu > ul > li > a > img{
	/* max-width: 100px;*/
	width:100px;
	border-radius: 2px;
	margin-right: 13px;
}

.youtube{
	margin: 0 auto;
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 30px;
}
.youtube > a > img{
	max-width:130px; /* 200px */
}
body#en .youtube > a > img{
    max-width: 120px;
    margin-top: 8px;
}


/*------------------------------------*/
/* toggle */
/*------------------------------------*/

.toggle{
	display:none;
	background-color:#10458c;
	width:60px;
	height:60px;
	position:fixed;
	top:0;
	right:0;
	border-left: 1px solid #6a7cb587;
}
/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 30px;
  height: 23px;
  cursor: pointer;
	position: fixed;
  right: 15px;
	top: 17px;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 10px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn05.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#btn05.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 .8s forwards;
  animation: active-btn05-bar02 .8s forwards;
}
@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#btn05.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}


/*-----------------*/
/* spmenu */
/*-----------------*/
.spmenu{
	position: fixed;
    top: 60px;
/*    background-color: #10458c;*/
	background-color: #3e4764;
    color: white;
    width: 100%;
		height:0;
		min-height:0;
    padding: 0;
	transition: min-height 0.5s;
	overflow: hidden;
}
.spmenu.open{
	min-height:410px;
	height: 100%;
	border-top: 1px solid #6a7cb587;
	z-index: 2;
}
.spmenu ul > li > a{
	display: block;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-bottom: 1px solid #ffffff36;
}

.spmenu ul > li > a:before{
	font-family: 'Linearicons-Free';
  content: "\e876";
	padding-right: 14px;
}

.spmenu_contact{
	padding: 17px 30px;
	background-color:#3e4764;
}
.spmenu_contact > .title{
	text-align: center;
  font-size: 1rem;
}
.spmenu_contact > a.contact,
.spmenu_contact > a.tel{
	display: block;
    border-radius: 28px;
    margin: 14px;
    border: 1px solid #ffffff87;
    color: white;
    text-align: center;
}
.spmenu_contact > a.contact{
    background-image: url(/img/lnr-contact.svg);
		background-size: 25px;
    background-position: 40px;
		padding: 10px 10px 10px 30px;
	font-size: 0.9rem;
}
.spmenu_contact > a.tel{
  background-image: url(/img/lnr-phone.svg);
	background-size: 25px;
  background-position: 40px;
	font-size:1.2rem;
	padding: 5px 10px 5px 30px;
}
.mgmenu{
	background-color: #10458c;
}