/* CSS Document */
/*
============================================================ */
/* header
============================================================ */
.header {
  position: absolute;
  width: 100%;
  height: 60px;
  background: none;
  z-index: 100;
}

.global-nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
}

.global-nav__list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.global-nav__list li {
  padding: 0 22px;
  line-height: 1;
}

.global-nav__list li + li {
  border-left: 2px solid #fff;
}

.global-nav__list li a {
  font-size: 15px;
  color: #fff;
}

.menuicon-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    height: 40px;
  }
  .menuicon-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 51;
  }
  .menuicon-btn-inner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .menuicon-btn-inner,
  .menuicon-btn-inner span {
    display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .menuicon-btn-inner span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
  }
  .menuicon-btn-inner span:nth-of-type(1) {
    top: 0;
  }
  .menuicon-btn-inner span:nth-of-type(2) {
    top: 8px;
  }
  .menuicon-btn-inner span:nth-of-type(3) {
    bottom: 0;
  }
  .menuicon-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .menuicon-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .menuicon-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  .global-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(115, 161, 46, 0.9);
    z-index: 50;
  }
  .global-nav__list {
    position: absolute;
    display: block;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    overflow: auto;
  }
  .global-nav__list li a {
    display: block;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  .global-nav__list li + li {
    border-top: 2px solid #fff;
    border-left: none;
  }
}

/**************************************************
kv
**************************************************/
.kv {
  position: relative;
  padding: 7vw 0 5vw;
  background-image: url(../images/bg_header_common.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 161, 46, 0.8);
}

.kv__inner {
  position: relative;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  z-index: 1;
}

.kv__title {
  max-width: 100%;
}

.main {
  display: block;
  padding: 80px 0;
  background: url(../images/bg.png) repeat;
}

.main__inner {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

.box-full {
  margin: 80px auto 0;
}

.caution {
  margin: 0 0 0 2em;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  /**************************************************
  kv
  **************************************************/
  .kv {
    padding: 8vw 0;
  }
  .main {
    padding: 40px 0;
  }
  .box-full {
    margin: 50px auto 0;
  }
  .caution {
    font-size: 11px;
  }
}
