@charset "utf-8";

/*--------------------------------------------------------------
	Common
--------------------------------------------------------------*/
html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}

body {
  background: #fff;
  font: 400 12px/1.8 "Open Sans", sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left !important;
}

.position-relative {
  position: relative;
}

.leftauto {
  right: 0 !important;
  left: auto !important;
}

/* Transition elsements */
a,
.btn {
  transition: all 0.125s ease-in-out 0s;
}

/* Sections */
.home {
  margin-top: 50px;
}

/* Scroll to top */
.scroll-up {
  position: fixed;
  display: none;
  bottom: 7px;
  right: 7px;
  z-index: 999;
}

.scroll-up a {
  background: #fff;
  display: block;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #000;
  opacity: 0.6;
  border-radius: 2px;
}

.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #000;
}

/*--------------------------------------------------------------
	Typography
--------------------------------------------------------------*/
a {
  color: #111;
}

a:hover, a:focus {
  text-decoration: none;
  color: #aaa;
  outline: 0;
}

.font-alt {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.white{
  color: #fff;
}

.small-t{
  font-size: 0.8em;
}

/* Forms common style */
.form-control {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  height: 33px;
  border: 1px solid #bababa;
  border-radius: 2px;
  transition: all 0.4s ease-in-out 0s;
}

.form-control:focus {
  border-color: #CACACA;
}

/* Forms size */
.input-lg,
.form-horizontal .form-group-lg .form-control {
  height: 43px;
  font-size: 13px;
}

.input-sm, .form-horizontal .form-group-sm .form-control {
  height: 29px;
  font-size: 10px;
}

.rqst-form {
  margin-top: 27px;
}

.rqst-form .btn {
  margin-top: 5px;
}

.input-group-addon {
  border: 1px solid #e4e4e4 !important;
}

/*--------------------------------------------------------------
	Base
--------------------------------------------------------------*/

.main {
  position: relative;
  background-color: #fff;
  /*z-index: 1;*/
}

.page-header{
  position: relative;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 400px;
  z-index: 0;
  background-size: cover;
}

.page-header:before {
  position: absolute;
  background: rgba(34, 34, 34, 0.5);
  content: " ";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.contents-title{
  position: relative;
  letter-spacing: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  margin: 0 auto;
  padding-top: 200px;
}

.contents{
  position: relative;
  padding: 100px 0;
}


.sub-contents{
  position: relative;
  padding: 100px 0;
}


@media (max-width: 768px) {
  .contents{
    position: relative;
    padding: 50px 0;
  }
  
  .sub-contents{
    position: relative;
    padding: 50px 0 10px;
  }
}

.menu-title{
  position: relative;
  font-family: 'Noto Sans SC', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 100px;
  padding-left: 10px;
}

.menu-title::after{
  content: '';
  position: absolute;
  top: 50%;
  transform:translateY(-50%);
  display: inline-block;
  width: 100%;
  height:10px;
  background-color:#f08200;
  border-top: solid 10px #f08200;
  border-bottom: solid 5px #00533d;
}

.ja-menu-title{
  position: relative;
  text-align: center;
  padding: 30px 0 0;
}

.ja-menu-title span{
  position: relative;
  display: inline-block;
  padding-bottom:30px;
  border-bottom: 1px solid #999;
}

.ja-menu-title span::before, .ja-menu-title span::after{
  position: absolute;
  top: 100%;
  left:50%;
  transform:translateX(-50%);
  content: '';
  border: 10px solid transparent;
}

.ja-menu-title span::before {
  border-top: 10px solid #999;
}
.ja-menu-title span::after {
  margin-top: -1px;
  border-top: 10px solid white;
}

@media (max-width: 768px) {
  .ja-menu-title{
    font-size: 2em;
  }
  
  .menu-title {
    font-size: 40px;
    text-align: center;
  }
  
  .menu-title::after{
    width: 20%;
  }
  
  .menu-title::after{
    content: '';
    position: absolute;
    top:-50%;
    left:0;
    right:0;
    bottom: 0;
    transform:translateY(-50%);
    display: inline-block;
    width: 100%;
    height:10px;
    background-color:#f08200;
    border-top: solid 10px #f08200;
    border-bottom: solid 5px #00533d;
  }
}

/*--------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/
.page-loader {
  position: fixed;
  background: #000;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  border-left: 2px solid #ffffff;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  height: 46px;
  width: 46px;
  left: 50%;
  top: 50%;
  margin: -23px 0 0 -23px;
  text-indent: -9999em;
  font-size: 10px;
  z-index: 9999;
  -webkit-animation: load 0.8s infinite linear;
  -moz-animation: load 0.8s infinite linear;
  ms-animation: load 0.8s infinite linear;
  o-animation: load 0.8s infinite linear;
  animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
	Navbar
--------------------------------------------------------------*/
.navbar-custom {
  background-color: rgba(10, 10, 10, 0.9);
  border: 0;
  border-radius: 0;
  z-index: 1000;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  transition: background, padding 0.4s ease-in-out 0s;
}

.navbar_group {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .navbar_group {
    display: flex;
    align-items:flex-start;
    flex-flow:column;
  }
}

.navbar a {
  transition: color 0.125s ease-in-out 0s;
}

.navtext {
  color: #fff;
  margin-bottom: -0.1rem;
}

.navbar-custom .dropdown-menu {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.navbar-custom .navbar-brand {
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}

.navbar-custom a.navbar-brand img {
  width: 120px;
}

@media (max-width: 768px) {
  .navbar-custom a.navbar-brand img {
    width: 100px;
  }
}

.navbar-custom .nav li{
  padding: 0 10px;
}

.navbar-custom .nav li > a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.navbar-custom .dropdown-menu > li > a {
  border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
  padding: 11px 15px;
  letter-spacing: 2px;
  color: #999;
}

.navbar-custom .dropdown-menu .dropdown-menu {
  border-left: 1px solid rgba(73, 71, 71, 0.15);
  left: 100%;
  right: auto;
  top: 0;
  margin-top: 0;
}

.navbar-custom .dropdown-menu.left-side .dropdown-menu {
  border: 0;
  border-right: 1px solid rgba(73, 71, 71, 0.15);
  right: 100%;
  left: auto;
}


.navbar-custom .nav > li > a:focus,
.navbar-custom .nav > li > a:hover,
.navbar-custom .nav .open > a,
.navbar-custom .nav .open > a:focus,
.navbar-custom .nav .open > a:hover,
.navbar-custom .dropdown-menu > li > a:focus,
.navbar-custom .dropdown-menu > li > a:hover {
  background: none;
  color: #fff;
}

.navbar-custom .navbar-toggler {
color: #fff;
  border-color: transparent;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-custom .dropdown-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.navbar-custom .dropdown-toggle:after {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -6px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 9px;
  content: "\f107";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dropdown-menu {
  min-width: 180px;
  font-size: 11px;
}

/*--------------------------------------------------------------
	Header
--------------------------------------------------------------*/
.home-section {
  position: relative;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/main.jpg);
  width: 100%;
  height: 680px;
  z-index: 0;
  background-size: cover;
}

@media (max-width: 768px) {
  .home-section {
    height: 350px;
  }
}


/*--------------------------------------------------------------
	News
--------------------------------------------------------------*/
.news-box{
  position: relative;
  margin: 20px 40px;
  outline: solid 1px #666;;
  outline-offset: 1px;
  background-color: #efefef;
  z-index: 1;
  padding: 0 10px;
}

.news-box:after{
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 130px;
  z-index: -1;
  background: #f08200;
  transform: scaleY(1.3) perspective(.6em) rotateX(4.8deg);
  transform-origin: bottom left;
  border-radius: 0px 0px 0 0;
}

@media (max-width: 768px) {
  .news-box{
    position: relative;
    margin: 20px 20px;
    outline: solid 1px #666;;
    outline-offset: 1px;
    background-color: #efefef;
    z-index: 1;
    padding: 0 10px;
  }
  
  
  .news-box:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 130px;
    z-index: -1;
    background: #f08200;
    transform: scaleY(0.9) perspective(.6em) rotateX(-4.8deg);
    transform-origin: top left;
    border-radius: 0px 0px 0 0;
  }
  
  .news-list li{
    padding: 12px 10px;
    list-style: none;
  }
}

.news-list{
  padding: 12px 10px;
  list-style: none;
}

.news-title{
  font-size: 1.3em;
  color: #fff;
}

.news-btn{
  text-align: right;
  padding-top: 5px;
}

.news-btn i{
  padding-left: 10px;
}

.news-content{
  padding-top: 5px;
  color: #111;
  letter-spacing: 2px;
}

.news-page-list{
  padding: 12px 30px 50px;
  list-style: none;
}

.news-page-list li{
  padding: 10px 0;
  letter-spacing: 2px;
}

.news-page-list li.date{
  border-bottom: 1px solid #c2c2c2;
}

.news-page-list li.ntitle{
  border-bottom: 1px dotted #c2c2c2;
  color: #f08200;
  font-weight: 600;
}

.news-page-list li.message{
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
	services
--------------------------------------------------------------*/
.services{
  position: relative;
  margin: 20px 0;
  padding: 0;
}

.service-box{
}

.m-0 {
  margin: 0 !important;
}


.service-box h1{
  margin: 0;
  font-size: 10.0em;
  color: rgba(1, 60, 30, 0.5);
  font-family: 'Saira', sans-serif;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-box h1 {
    font-size: 50px;
  }
}

.service-box h1.tx-g{
  color: rgba(131, 131, 131, 0.5);
}

.service-box h3{
  position: relative;
  font-size: 1.4em;
  background: #00533d;
  padding: 20px 0 20px 30px;
  color:#fff;
  margin-top: -35px;
  margin-bottom: 0;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .service-box h3{
    position: relative;
    font-size: 1.4em;
    background: #00533d;
    padding: 20px 0 20px 30px;
    color:#fff;
    margin-top: -15px;
    margin-bottom: 0;
    letter-spacing: 2px;
  }
}

.service-box h3::after {
  position: absolute;
  top: 50%;
  left:0;
  transform:translateY(-50%);
  content: '';
  width: 18px;
  height:4px;
  background-color:white;
}

.leftbox-l, .leftbox-r{
  background: rgba(0, 83, 61, 0.1);
  position: relative;
}

.title-box-or, .title-box-gr{
  position: relative;
  margin-top: 60px;
  padding-top: 20px;
}

.title-box-or:before {
  content: '';
  position: absolute;
  top: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 20%;
  background-color: #f08200;
  border-radius: 2px;
}

.title-box-gr:before {
  content: '';
  position: absolute;
  top: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 20%;
  background-color: #00533d;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .title-box-gr:before, .title-box-or:before {
    left: 10%;
  }
}

.title-box-or h4{
  position: relative;
  text-align: center;
  color:#f08200;
}

.title-box-or h4:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f08200;
  border-radius: 2px;
}

.title-box-gr h4{
  position: relative;
  text-align: center;
  color:#00533d;
}

.title-box-gr h4:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00533d;
  border-radius: 2px;
}

.leftbox-l:after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  margin: 0;
  border-style: solid;
  border-color: #f08200 transparent transparent transparent;
  border-width: 80px 80px 80px 0;
}

.leftbox-r:after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin: 0;
  border-style: solid;
  border-color: #f08200 transparent transparent transparent;
  border-width: 80px 0 80px 80px;
}

.rightbox-l:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 40px;
  width: 0px;
  height: 0px;
  margin: 0;
  border-style: solid;
  border-color: #00533d transparent transparent transparent;
  border-width: 80px 80px 80px 0;
  transform: rotate(-90deg);
}

.rightbox-r:after{
  content: "";
  position: absolute;
  right: 40px;
  bottom: -40px;
  width: 0px;
  height: 0px;
  margin: 0;
  border-style: solid;
  border-color: #00533d transparent transparent transparent;
  border-width: 80px 0 80px 80px;
  transform: rotate(90deg);
}

.rightbox-l, .rightbox-r{
  background: rgba(0, 83, 61, 0.3);
  position: relative;
}
@media (max-width: 768px) {
.leftbox-r:after{
    content: "";
    position: absolute;
    right: 0;
    top: -40px;
    left: 40px;
    width: 0px;
    height: 0px;
    margin: 0;
    border-style: solid;
    border-color: #00533d transparent transparent transparent;
    border-width: 80px 0 80px 80px;
    transform: rotate(-90deg);
  }

  .rightbox-r:after{
    content: "";
    position: absolute;
    right: 40px;
    bottom: -40px;
    width: 0px;
    height: 0px;
    margin: 0;
    border-style: solid;
    border-color: #f08200 transparent transparent transparent;
    border-width: 80px 0 80px 80px;
    transform: rotate(90deg);
  }
  
  .leftbox-r{
    background: rgba(0, 83, 61, 0.3);
    position: relative;
  }
  
  .rightbox-r{
    background: rgba(0, 83, 61, 0.1);
    position: relative;
  }
}
  
.sub-title{
  text-align: center;
  font-size: 1.4em;
  padding-top:20px;
  letter-spacing: 2px;
}

.photo-box{
  margin: 0 auto;
  text-align: center;
  width: 50%;
}

.concent-img-section{
  position: relative;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/service01-bg.jpg);
  width: 100%;
  height: 400px;
  z-index: 0;
  background-size: cover;
}

.service01{
  background-image: url(../images/service01-bg.jpg);
}

.service02{
  background-image: url(../images/service02-bg.jpg);
}

.service03{
  background-image: url(../images/service03.jpg);
}

.service04{
  background-image: url(../images/service04.jpg);
}

.aboutus01{
  background-image: url(../images/aboutus-bg.jpg);
}

.news01{
  background-image: url(../images/news-bg.jpg);
}

.contact01{
  background-image: url(../images/contact-bg.jpg);
}
.sbox{
  margin: 0 0 80px;
}

.sbox-thumbnail{
  margin: 0 0 20px;
}

.sbox-title {
  position: relative;
  line-height: 1.4;
  font-size: 22px;
  color: #111;
  display:  inline-block;
  margin: 0;
  padding: 20px 0 0;
}

.sbox-title::before {
  content: '';
  background-color: #f08200;
  display: block;
  position: absolute;
  left: 0;
  height: 30px;
  width: 90px;
  top: -20px;
  z-index: -1;
}

.sbox-title-s {
  position: relative;
  line-height: 1.4;
  font-size: 18px;
  color: #111;
  display:  inline-block;
  margin: 0;
  padding: 20px 0 0;
}

.sbox-title-s::before {
  content: '';
  background-color: #00533d;
  display: block;
  position: absolute;
  left: 0;
  height: 30px;
  width: 30px;
  top: -30px;
  z-index: 1;
}

.sbox-text {
  border-top: 1px dotted #c2c2c2;
  padding: 20px 0;
  margin-top: 10px;
}

.sbox-text-s {
  border-top: 1px dotted #c2c2c2;
  padding: 20px 0;
  margin-top: 10px;
  border-bottom: 1px dotted #c2c2c2;
}

.sbox-text > p, .sbox-text-s > p{
  padding: 0;
  margin: 0;
  letter-spacing: 2px;
  line-height: 2;
}

.service-menu{
  background: #3e3e3e;
  padding: 40px 0;
  text-align: center;
}

.s-menu-list{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.s-menu-list li{
  display: inline-block;
  width: 20%;
}

.s-menu-list li > a.btn{
  width: 100%;
}

@media (max-width: 768px) {
  .s-menu-list li{
    width: 100%;
    padding: 5px 20px;
  }
}

.page-c-title{
  position: relative;
  width: 100%;
  line-height: 1.4;
  font-size: 22px;
  color: #111;
  display:  inline-block;
  padding: 20px 0;
  border-bottom: solid 4px #ddd;
}

.page-c-title::after {
  position: absolute;
  content: " ";
  border-bottom: solid 4px #00533d;
  bottom: -4px;
  width:10%;
  display: block;
}

.btn-box-detail{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn-box-detail i{
  padding-right: 5px;
}

/*--------------------------------------------------------------
	About Us
--------------------------------------------------------------*/
.aboutus{
  position: relative;
  margin: 20px 0 0;
  padding: 0;
}

.aboutus-box h1{
  padding: 20px 0;
  font-size: 5em;
}

@media (max-width: 768px) {
  .aboutus-box h1{
    padding: 20px 0;
    font-size: 3em;
  }
}

.aboutus-contents{
  position: relative;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/aboutus-bg.png);
  width: 100%;
  z-index: 0;
  background-size: cover;
  padding-bottom: 100px;
}

.catchcopy{
  color: #f08200;
  text-align: center;
  font-size: 4.5em;
  letter-spacing: 3px;
  padding-top: 200px;
}

.mes{
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  color:#000;
  padding: 10px 0;
  font-size: 1.8em;
}

@media (max-width: 768px) {
  .aboutus-contents{
  }
  .catchcopy{
    color: #f08200;
    text-align: center;
    font-size: 3.5em;
    letter-spacing: 3px;
    padding-top: 160px;
    padding-bottom: 50px;
    line-height: 1.2em;
  }
  
  .mes{
    padding: 20px 10px;
    font-size: 1.4em;
  }
}

.aboutus-base{
  position: relative;
  background: rgba(244, 244, 244, 0.4);
}

.aboutus-base::after{
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	background: rgba(244, 244, 244, 0.7);
	z-index: -1;
}

.company-list{
  list-style: none;
  letter-spacing: 3px;
  padding: 50px 30px 50px;
}

@media (max-width: 768px) {
  .aboutus-base{
    position: relative;
    background: rgba(244, 244, 244, 0.4);
  }

  .aboutus-base::after{
   top: 0;
   left: 50%;
   width: 50%;
   height: 100%;
   content: '';
   position: absolute;
   background: rgba(244, 244, 244, 0.7);
   z-index: -1;
  }
}

ul.company-list li{
  padding: 0 0 10px;
  margin: 0 0 10px;
  font-size: 1.1em;
}

ul.company-list li.key{
  font-weight: 600;
  border-bottom: 1px dotted #c2c2c2;
  font-size: 1.2em;
  padding: 0 0 5px;
  margin: 0 0 5px;
}

.detail-title {
  position: relative;
  letter-spacing: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: #111;
  margin: 50px 0 70px;
}

.ja-title{
  font-size: 18px;
  color: #666;
  display: block;
}

.ja{
  color:#666;
}

.map-section {
  position: relative;
  height: 450px;
  width: 100%;
}

.map {
  height: 100%;
  width: 100%;
}

.map img {
  max-width: none;
}

/*--------------------------------------------------------------
	Contact
--------------------------------------------------------------*/

.contact{
  position: relative;
  margin: 0;
  padding: 80px 0;
  background: #efefef;
  text-align: center;
  background-size: 15px 15px;
  margin: 0 auto;
  background-image: radial-gradient(#e6e6e6 15%, #efefef 20%);
}

.comment{
  padding: 30px 0;
  color:#00533d;
  font-size: 1.8em;
}

.contact p{
  padding: 0 20px;
}

.contact-area{
  margin: 0 auto;
  padding: 0 0 80px;
}

/*--------------------------------------------------------------
	Info
--------------------------------------------------------------*/
.info{
  position: relative;
}

.company{
  text-align: center;
  padding: 30px;
}

.logo-area{
  width: 100px;
  height: 100px;
  margin: 15px auto 15px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/lip-logo.svg);
  background-size:contain;
}

.companyname{
  position: relative;
  letter-spacing: 3px;
  font-size: 1.5em;
  padding-bottom: 30px;
  margin: 30px 0 0;
}

@media (max-width: 768px) {
  .companyname{
  margin: 20px 0 0;
  }
}

.companyname:after{
  content: "";
  position: absolute;
  right: 0;
  bottom:0;
  left: 45%;
  width: 0px;
  height: 0px;
  margin: 0;
  border-style: solid;
  border-color: #e6e6e6 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.address{
  /*position: absolute;
  bottom:40px;
  left: 150px;*/
  padding-top: 20px;
  text-align: center;
}

.address p{
  margin: 0;
  padding: 3px 0;
}

.address i{
  padding-right: 5px;
}

.infomenu{
  background: #4c4948;
  background-image: linear-gradient(#5c5756 1px, transparent 0),
                    linear-gradient(90deg, #5c5756 1px, transparent 0);
  background-size: 100px 100px;
  color:#fff;
  padding: 30px 0 30px 50px;
  margin: 0 -15px;
}

.text-jp{
  color: #ccc;
  font-size: 0.8em;
}

ul.listmenu{
  
}

ul.listmenu li{
  padding: 10px 0;
}

ul.sublistmenu li{
  padding: 8px 0;
}

ul.listmenu li a, ul.sublistmenu li a{
  color: rgba(255, 255, 255, 0.85);
}

ul.listmenu > li > a:focus,
ul.listmenu > li > a:hover,
ul.sublistmenu > li > a:focus,
ul.sublistmenu > li > a:hover{
  background: none;
  color: #fff;
}

@media (max-width: 768px) {
  .infomenu{
    background-size: 70px 70px;
    padding: 30px 0;
    margin: 0 -15px;
  }
  
  .text-jp{
    display: block;
  }
  
  .address{
    position: relative;
    bottom:0;
    left: 0;
    text-align: left;
    text-align: center;
  }
}

/*--------------------------------------------------------------
	Footer
--------------------------------------------------------------*/
.footer{
  background: #000;
  padding: 10px 0;
  margin: 0;
}

.copyright{
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
	Buttons
--------------------------------------------------------------*/
.btn {
  border-radius: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 10px 37px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.btn.btn-round {
  border-radius: 2px;
}

.btn.btn-round-lg {
  border-radius: 20px;
}

.btn.btn-circle {
  border-radius: 30px;
}

.btn.btn-w {
  background: rgba(255, 255, 255, 0.8);
  color: #111;
}

.btn.btn-w:hover,
.btn.btn-w:focus {
  background: white;
  color: #111;
}

.btn.btn-g {
  background: #e5e5e5;
  color: #111;
}

.btn.btn-g:hover,
.btn.btn-g:focus {
  background: #d8d8d8;
  color: #111;
}

.btn.btn-or {
  background: #f08200;
  color: #fff;
}

.btn.btn-or:hover,
.btn.btn-or:focus {
  background: #fff;
  color: #f08200;
}

.btn.btn-gr {
  background: #00533d;
  color: #fff;
}

.btn.btn-gr:hover,
.btn.btn-or:focus {
  background: #fff;
  color: #00533d;
}

.btn.btn-border-w {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn.btn-border-w:hover,
.btn.btn-border-w:focus {
  background: #fff;
  border-color: transparent;
  color: #00533d;
}

.btn.btn-border-gr {
  background: transparent;
  border: 1px solid rgba(0, 83, 61, 0.75);
  color: #00533d;
}

.btn.btn-border-gr:hover,
.btn.btn-border-gr:focus {
  background: #00533d;
  border-color: transparent;
  color: #fff;
}

.btn.btn-d {
  background: rgba(17, 17, 17, 0.8);
  color: #fff;
}

.btn.btn-d:hover,
.btn.btn-d:focus {
  background: #111111;
}

.btn.btn-b {
  background: #111111;
  color: #fff;
}

.btn.btn-b:hover,
.btn.btn-b:focus {
  background: rgba(17, 17, 17, 0.8);
}

.btn-border-d {
  background: transparent;
  border: 1px solid #111111;
  color: #111;
}

.btn.btn-border-d:hover,
.btn.btn-border-d:focus {
  background: #111111;
  color: #fff;
}

.btn.btn-font-w {
  background: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn.btn-font-w:hover {
  background: #fff;
  color: #111;
}

/* Buttons size */
.btn.btn-lgb {
  padding: 30px 65px;
  font-size: 18px;
}

.btn.btn-lg {
  padding: 20px 45px;
  font-size: 14px;
}

.btn.btn-sm {
  padding: 6px 25px;
  font-size: 10px;
  letter-spacing: 1px;
}

.btn.btn-xs {
  padding: 4px 19px;
  font-size: 10px;
  letter-spacing: 0;
}

.btn-list .btn {
  margin: 5px 0;
}

.search-btn {
  position: absolute;
  background: transparent;
  border: none;
  overflow: hidden;
  top: 50%;
  right: 1px;
  width: 42px;
  height: 40px;
  line-height: 38px;
  font-size: 14px;
  outline: none;
  color: #999;
  margin-top: -20px;
}

.image-button {
  margin: 0px 5px;
}
