@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-size: 14px;
  font-family: 'Lato', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  background: #eee;
  -webkit-text-size-adjust: 100%;
}

#main {
  background: #eee;
}

#main-in {
  padding-left: 360px;
}

#main p {
  margin-bottom: 1em;
  line-height: 1.9;
}

#main .inner {
  padding: 60px;
}

/* main-visual */

#main-visual {
  background: #64CE80;
  background: -webkit-linear-gradient(-45deg, #64CE80, #C68BC4);
  background: -moz-linear-gradient(-45deg, #64CE80, #C68BC4);
  background: -ms-linear-gradient(-45deg, #64CE80, #C68BC4);
  background: -o-linear-gradient(-45deg, #64CE80, #C68BC4);
  background: linear-gradient(-45deg, #64CE80, #C68BC4);
  height: 1080px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#main-visual h2 {
  font-size: 110%;
  color: #fff;
}

h3 {
  font-size: 110%;
  margin-bottom: .7em;
}

#copyright a {
  color: #666;
  text-decoration: none;
}

#copyright a:hover {
  text-decoration: underline;
}

#brand-logo img {
  max-width: 200px;
  padding: 1rem;
}

@media screen and (max-width: 900px) {
  #brand-logo img {
    max-width: 200px;
    padding-top: 10px;
  }
}

.section-title {
  font-size: 1.5rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 1.3rem;
  }
}

/* ここから */

#global-head {
  position: fixed;
  color: #ffffff;
  width: 360px;
  text-align: center;
  padding-top: 1rem;
  z-index: 100;
}

#sidebar {
  font-size: 15px;
  padding-top: 15rem;
  /* sidebar menu top height */
  width: 360px;
  height: 100%;
  position: fixed;
  color: #428b43;
  background: rgba(57, 51, 51, 1.0);
  /*サイドバーカラー*/
  text-align: center;
}

#global-nav ul {
  list-style: none;
  margin-left: 0;
}

#global-nav>ul>li {
  position: relative;
}

@media screen and (max-width: 900px) {
  #sidebar {
    padding-top: 5rem;
  }
  #global-nav a {
    color: #428b43;
  }
}

#global-nav a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  -moz-transition: background-color .3s linear;
  -webkit-transition: background-color .3s linear;
  transition: background-color .3s linear;
}

#global-nav .sub-menu.is-active>a, #global-nav a:hover {
  color: #ffffff;
  background: #428b43;
}

#global-nav .sub-menu-nav a, #global-nav .sub-menu:hover .sub-menu-nav {
  width: 230px;
}

/* sub-menu icon */

#global-nav .sub-menu-head {
  position: relative;
}

#global-nav .sub-menu-head:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #033560;
  border-right: 1px solid #033560;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* sub-menu */

#global-nav .sub-menu-nav {
  position: fixed;
  background: #033560;
  color: #fff;
  top: 0;
  padding-top: 90px;
  left: 260px;
  width: 0;
  height: 100%;
  overflow: hidden;
  -moz-transition: width .2s ease-out;
  -webkit-transition: width .2s ease-out;
  transition: width .2s ease-out;
}

#global-nav .sub-menu.is-active>a:after, #global-nav .sub-menu-head:hover:after {
  border-color: #fff;
}

#global-nav .sub-menu-nav a {
  color: #fff;
}

#global-nav .sub-menu-nav a:hover {
  color: #033560;
  background: #fff;
}

/* nav-toggle */

#nav-toggle {
  display: none;
  position: fixed;
  top: 15px;
  /* hamburger menu position */
  right: 20px;
  height: 32px;
}

#nav-toggle>div {
  position: relative;
  width: 32px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #428b43;
  position: absolute;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

#overlay {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 900px) {
  #main-in {
    padding-left: 0;
  }
  #global-head {
    width: 100%;
    height: 60px;
    padding-top: 0;
    background: rgba(255, 255, 255, 1.00);
    /* sp navi color */
    display: -webkit-flex;
    display: flex;
  }
  #sidebar {
    /*display: none;*/
    position: fixed;
    right: -300px;
    top: 0;
    height: 100%;
    width: 300px;
    color: #428b43;
    background: rgba(255, 255, 255, 0.95);
    /* sp時ナビバー背景色 */
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #global-nav a {
    color: #428b43;
  }
  /* サブメニューは開けない */
  #global-nav .sub-menu-head:after, #global-nav .sub-menu-nav {
    display: none;
  }
  #nav-toggle {
    display: block;
  }
  /* nav open */
  .open {
    overflow: hidden;
  }
  .open #overlay {
    display: block;
  }
  .open #sidebar {
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  /* #nav-toggle close */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* z-index */
  #overlay {
    z-index: 200;
  }
  #sidebar {
    z-index: 300;
  }
  #nav-toggle {
    z-index: 400;
  }
}

@media screen and (max-width: 400px) {
  #sidebar {
    right: -240px;
    width: 240px;
    padding-top: 60px;
  }
  .open #sidebar {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}

.sidebar-tel {
  color: #ffffff;
  font-size: 1.5rem;
  padding-top: 5rem;
}

@media screen and (max-width: 900px) {
  .sidebar-tel {
    display: none;
  }
}

/* header slider */

#header-slider {
  background-color: #ffffff;
}

#header-slider img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  #header-slider {
    padding-top: 60px;
  }
}

/* corprate strength section */

#corporate-strength {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}

#corporate-strength p {
  padding: 15px;
}

/* product section */

#product {
  padding-top: 30px;
  padding-bottom: 30px;
}

.product-thumb {
  position: relative;
}

.product-thumb img {
  width: 100%;
}

@media screen and (min-width: 901px) {
  .product-thumb img {
    max-width: 320px;
  }
}

#product .product-thumb p {
  position: absolute;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  white-space: nowarp;
  text-shadow: 2px 2px 4px #000000;
}
/* service section */

#service {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}


/* access section */

#access {
  padding-top: 30px;
  padding-bottom: 30px;
}

#access p {
  padding-left: 1rem;
}

#access p .address-indent {
  padding-left: 3rem;
}

@media screen and (max-width: 900px) {
  #access p .address-indent {
    padding-left: 3.5rem;
  }
}

#access p .txt-bold {
  font-weight: bold;
}

/* footer seciton */

#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 360px;
  color: #ffffff;
  background-color: rgba(57, 51, 51, 1.0);
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  #footer {
    padding-top: 15px;
    padding-left: 0;
  }
}

#footer .footer-list ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-bottom: 15px;
}

.bar-line::after {
  content: "|";
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
}

#footer a:link,#footer a:visited,#footer a:hover,#footer a:active {
  color: #ffffff;
}

/* staff section */

#staff-section {
  padding-bottom: 30px;
}

@media screen and (max-width: 900px) {
  #staff-section {
    padding-top: 60px;
  }
}

#staff-section .card-header {
  background-color: rgba(150, 140, 140, 1.00);
  margin: 2%;
  max-width: 320px;
}

@media screen and (max-width: 960px) {
  #staff-section .card-header {
    max-width: 200px;
  }
}

@media screen and (max-width: 567px) {
  #staff-section .card-header {
    max-width: 95%;
    margin: 15px auto;
  }
}

#staff-section h2 {
  padding-top: 30px;
}

#staff-section .card-header p {
  color: #ffffff;
  line-height: 1.3rem;
  padding: 2%;
  margin-bottom: 0;
}

.staff-header img {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.staff-header {
  position: relative;
}

.staff-header .over-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  /*余計な隙間を除く*/
  padding: 0;
  /*余計な隙間を除く*/
}

.over-text {
  color: #ffffff;
  text-shadow: 1px 1px 2px #000000;
  font-size: 1.8rem;
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
  max-height: 100%;
}

@media screen and (max-width: 567px) {
  .over-text {
    font-size: 1.2rem;
  }
}

.over-text .text-divider-wrap {
  position: relative;
}

@media screen and (min-width: 567px) {
  .text-divider::before {
    content: "";
    display: block;
    background: #ffffff;
    width: 2px;
    height: 2em;
    margin-bottom: 5px;
    position: absolute;
    top: -50%;
    left: 50%;
  }
  .text-divider::after {
    content: "";
    display: block;
    background: #ffffff;
    width: 2px;
    height: 2em;
    position: absolute;
    top: 100%;
    left: 50%;
  }
}

.txt-small {
  font-size: 1.2rem;
  padding-bottom: 0;
}

@media screen and (max-width: 567px) {
  .txt-small {
    font-size: 0.9rem;
  }
}

/* contact-page section */
#contact-page {
  min-height: calc(100vh - 130px);
}

@media screen and (max-width: 900px) {
  #contact-page {
    padding-top: 60px;
  }
}



.contact-p-indent {
  padding-left: 2rem;
}

.tel-link-dark {
  color: #000000!important;
  text-decoration: none!important;
}

.tel-link-light {
  color: #ffffff!important;
  text-decoration: none!important;
}

/* SNS section */
#sns-section {
  background: #fff;
}
/* scrollreveal */
