@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Fjalla+One');

/*
  File Name   : layout.css
  Description : レイアウト
*/

/*
============================================================ */
/* BASE
============================================================ */
/*** structure ***/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  min-width: 1000px;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -.03em;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  body {
    min-width: 100%;
    font-size: 14px;
  }
}

/*** hypertext ***/
a {
  color: #000;
  text-decoration: none;
  outline: none;
  -webkit-transition: .3s;
     -moz-transition: .3s;
      -ms-transition: .3s;
       -o-transition: .3s;
  transition: .3s;
}

a:hover {
  opacity: 0.8;
}

a:hover,
a:active,
a:visited {
  color: #000;
  text-decoration: underline;
}

a img {
  border: none;
}

a.over:hover,
a:hover img.over,
input.over:hover {
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  opacity: .7;
}

/*** pc-only / sp-only ***/
@media screen and (min-width: 812px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 811px) {
  .pc-only {
    display: none !important;
  }
}

/*** js event  !! .hoge { display: none; } & <div class="hoge no-js"></div> !! ***/
.no-js {
  display: block !important;
}

/*
============================================================ */
/* header
============================================================ */
.header {
  width: 100%;
}

.header__inner {
  position: relative;

}

/* sp header
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .header__inner {
    width: 100%;
  }
}

/*
============================================================ */
/* header__menu
============================================================ */
.small_logo {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .menuicon-btn {
  position: fixed;
  top: 60px;
  right: 50px;
  z-index: 50;
}

.header.minimum .menuicon-btn {
  top: 45px;
}

.fixed_nav .menuicon-btn {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 110;
}
.menuicon-btn__inner {
  width: 45px;
  height: 35px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.menuicon-btn,
.menuicon-btn__inner span {
  display: inline-block;
  transition: all .4s;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}
.menuicon-btn__inner span {
  position: absolute;
  left: 50%;
  width: 45px;
  height: 5px;
  background-color: #fff;
  border-radius: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.menuicon-btn__inner span:nth-of-type(1) {
  top: 0;
}
.menuicon-btn__inner span:nth-of-type(2) {
  top: 15px;
}
.menuicon-btn__inner span:nth-of-type(3) {
  bottom: 0;
}
.menuicon-btn.active span:nth-of-type(1) {
  top: 8px;
  left: -4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menuicon-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menuicon-btn.active span:nth-of-type(3) {
  top: 8px;
  left: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.fixed_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e55e1c;
  z-index: 30;
  transition: all .4s;
  opacity: 1;
}

.js-menu-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.js-menu-fixed .fixed_nav {
  opacity: 0;
}

.fixed_nav_wrap {
  position: relative;
  height: 130px;
  padding: 40px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

.fixed_nav.minimum {
  display: block;
}

.fixed_nav.minimum .fixed_nav_wrap {
  height: 90px;
  padding: 15px 40px;
}

.global-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  background: rgba(229,94,28,.9);
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
}

.global-nav.open {
  opacity: 1;
  visibility: visible;
}

.global-nav-list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.global-nav__item {
  margin-top: 5em;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  font-family: 'Fjalla One', sans-serif;
  line-height: 1.2;
}

.global-nav__item:first-of-type {
  margin-top: 0;
}

.global-nav__item span {
  display: block;
  font-size: 60px;
  font-size: 6.0rem;
  font-weight: normal;
}

.global-nav__item a {
  color: #fff;
}

.global-nav__item a:hover {
  text-decoration: none;
  opacity: .8;
}

/* sp global nav
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .small_logo {
    left: 20px;
    width: 130px;
  }

  .header .menuicon-btn {
    top: 0;
    right: 10px;
    height: 60px;
  }

  .fixed_nav .menuicon-btn {
    right: 10px;
  }

  .global-nav__item {
    margin-top: 2em;
    padding: 0 15px;
    line-height: 1.3;
  }

  .global-nav__item span {
    font-size: 30px;
    font-size: 3.0rem;
  }

  .global-nav__item a:hover {
    opacity: 1;
  }

  .menuicon-btn__inner {
    width: 35px;
    height: 25px;
  }

  .menuicon-btn__inner span {
    width: 35px;
    height: 4px;
  }

  .menuicon-btn__inner span:nth-of-type(2) {
    top: 10px;
  }

  .menuicon-btn.active span:nth-of-type(1) {
    top: 10px;
    left: 0;
  }

  .menuicon-btn.active span:nth-of-type(3) {
    top: 10px;
    left: 0;
  }
}

/*
============================================================ */
/* fixed-menu
============================================================ */
.fixed-menu {
  position: fixed;
  top: 670px;
  right: 0;
  width: 55px;
  box-shadow: 0px 0px 55px -10px #333;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 20;
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
  transition: all  0.2s ease;
}

.fixed-menu:hover {
  width: 200px;
}

.fixed-menu-list {
  font-size: 16px;
}

.fixed-menu-list__item:not(:first-child) {
  border-top: 1px dashed #bfbfbf;
}

.fixed-menu-list__item i {
  margin-right: 1em;
}

.fixed-menu-list__item .f_icon_truck {
  display: inline-block;
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.fixed-menu-list__item a {
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  background-color: #fff;
  color: #009749;
  word-wrap: break-word;
}

.fixed-menu-list__item a span {
  opacity: 0;
}

.fixed-menu-list__item a:hover {
  background-color: #009749;
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.fixed-menu:hover span {
  opacity: 1;
}

/* sp fixed-menu
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .fixed_nav_wrap {
    height: 60px;
    padding: 20px;
  }

  .fixed_nav.minimum .fixed_nav_wrap {
    height: 60px;
    padding: 10px 20px;
  }

  .header.minimum .menuicon-btn {
    top: 0;
  }
}

/*
============================================================ */
/* container
============================================================ */
#container {
  text-align: left;
}

#top #container {
  padding-top: 0;
  overflow: hidden;
}

@media screen and (max-width: 811px) {
  #container {
    overflow: hidden;
  }
}

/*
============================================================ */
/* main
============================================================ */
#main {
  margin: 0 auto;
  padding: 30px 0 100px;
}

/* sp main
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #main {
    width: 100%;
    padding: 30px 0 50px;
    -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
       -o-box-sizing: border-box;
          box-sizing: border-box;
  }
}

/*
============================================================ */
/* page-top
============================================================ */
.page-top__wrap {
  position: absolute;
  top: -30px;
  right: 30px;
  z-index: 10;
}

.page-top {
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background-color: #65312b;
  color: #fff !important;
}

.page-top i {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;  
}

.page-top:hover i {
  -webkit-transform: translate(0,-5px);
     -moz-transform: translate(0,-5px);
      -ms-transform: translate(0,-5px);
       -o-transform: translate(0,-5px);
          transform: translate(0,-5px);
  text-decoration: none;
}

.isTab .page-top:hover i {
  -webkit-transform: translate(0,0);
     -moz-transform: translate(0,0);
      -ms-transform: translate(0,0);
       -o-transform: translate(0,0);
          transform: translate(0,0);
}

.page-top:hover {
  text-decoration: none;
}

/* sp page-top
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .page-top__wrap {
    position: static;
  }

    .page-top {
      display: block;
      width: 100%;
      height: 45px;
      line-height: 45px;
      font-size: 16px;
      border: none;
    }

  .page-top:hover i {
    -webkit-transform: translate(0,0);
       -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
         -o-transform: translate(0,0);
            transform: translate(0,0);
  }
}

/*
============================================================ */
/* footer
============================================================ */
#footer {
  position: relative;
}

.footer__inner {
  padding: 55px 0 45px;
  border-top: 1px solid #eee;
}

.footer-bnr {
  width: 1000px;
  margin: 0 auto;  
}

/* bnr-list */
.bnr-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
}

.bnr-list__item {
  margin: 0 20px;
}

.footer-nrha  {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 0 auto;  
}

.nrha {
  padding-right: 30px;
  overflow: hidden;
}

.nrha__image {
  float: left;
  padding-right: 30px;
}

.copyright {
  padding: 25px 10px;
  text-align: center;
  color: #000;
  font-size: 10px;
  font-size: 1.0rem;
  background-color: #eee;
}

/* sp footer
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .footer__inner {
    width: 100%;
    padding: 0;
  }

  .footer-bnr {
    width: 100%;
  }

  .bnr-list {
    padding: 30px 10px;
    -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
       -o-box-sizing: border-box;
          box-sizing: border-box;
  }

  .bnr-list__item {
    margin: 0 10px;
  }

  .footer-nrha  {
    display: block;
    width: 100%;
    padding: 15px 10px 20px;
  }

  .nrha {
    padding-right: 0;
  }

  .nrha__image {
    float: none;
    display: block;
    padding-right: 0;
    margin: 0 auto 10px;
  }

  .nrha__text {
    padding: 10px;
  }

  .copyright {
    padding: 5px;
    font-size: 10px;
    font-size: 1.0rem;
  }
}