@charset "utf-8";
/*==================================================
　5-2-1 3本線が×に
===================================*/
.logo {}
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  display: block;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #fff;
  position: absolute;
  top: 53px;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 9999;
  border-radius: 10px;
  padding: 20px;
}
nav {
  height: 70vh; /* 環境にあわせる */
  overflow-x: scroll;
}
#ac-menu li {}
#ac-menu li:last-child {}
#ac-menu .label, #ac-menu .no-label {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  padding: 40px 30px;
  position: relative;
  transition: .5s;
}
/*
ラベル右側のアイコン「＋」を設定
beforeが横棒
afterが縦棒
*/
#ac-menu .label::before, #ac-menu .label::after {
  content: '';
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
#ac-menu .label::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/*
アコーディオンメニューが開いている場合
*/
#ac-menu .label.open {
  /* ラベルの背景色を変更 */
}
#ac-menu .label.open::before {
  /* ラベルアイコンの横棒を非表示 */
  opacity: 0;
}
#ac-menu .label.open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(180deg);
}
/*
アコーディオンメニューのコンテンツ部分は、「display: none;」で非表示にしておく。
ラベルクリック時にjQueryの「  $(this).next().slideToggle();」で表示に切り替わる
*/
#ac-menu .detail {
  padding: 35px 30px;
  display: none;
}
#ac-menu .detail ul {
  display: flex;
  flex-wrap: wrap;
}
#ac-menu .detail ul li {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 0 15px 20px;
  border-bottom: solid 1px #ccc;
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  #ac-menu .label, #ac-menu .no-label {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  #ac-menu .detail {
    padding: 0px 0;
  }
  #ac-menu .no-label {
    padding: 20px 0;
  }
  #ac-menu .detail dl {
    flex-direction: column;
  }
  #ac-menu .detail dt {
    width: 100%;
    margin-bottom: 10px;
  }
  #ac-menu .detail dd {
    width: 100%;
    padding-left: 10px;
  }
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn-fixed {
  position: absolute;
  right: 10px;
  top: 5px;
  display: block;
}
.openbtn {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 60px;
  height: 45px;
  border-radius: 20px;
  z-index: 9999; /*ボタンを最前面に*/
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 16px;
  height: 2px;
  border-radius: 2px;
  background: #000;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 21px;
}
.openbtn span:nth-of-type(3) {
  top: 29px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 16px;
  left: 19px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 28px;
  left: 19px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/* == */
@media print, screen and (min-width : 768px) {
  .openbtn-fixed {
    position: absolute;
    right: 18px;
    top: 18px;
    display: none;
  }
  .openbtn {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    background: linear-gradient(#039874, #006e54);
    cursor: pointer;
    width: 80px;
    height: 50px;
    border-radius: 30px;
    z-index: 9999; /*ボタンを最前面に*/
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 22px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
@media print, screen and (min-width : 1200px) {
	
  .hamburger-menu {
    display: none;
  }
