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

.drawer_menu a {
  color: inherit;
  text-decoration: none;
}

.calcium_drawer_menu.drawer_menu .drawer_nav li::after {
  content: none;
}

.calcium_drawer_menu.drawer_menu .drawer_nav li {
  position: static;
}

/* PC用ナビゲーション */
.drawer_menu .drawer_nav_wrapper {
  transform: translate(0);
  height: 100px; /* PC用メニュー高さ */
  position: relative;
  top: auto;
  right: auto;
  z-index: 100;
}

.drawer_menu .drawer_nav {
  max-width: 1000px; /* コンテンツ幅に合わせる */
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  border: 3px solid #81cced;
  border-radius: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  list-style-type: none;
}

.drawer_menu .drawer_nav li {
  /*font-size: 16px;*/
  margin: 0;
  padding: 0;
  width: 100%;
  height: 94px; /* PC用メニュー高さ */
  text-align: center;
  border-right: 1px solid #81cced;
}

.drawer_menu .drawer_nav li:last-child {
  border-right: none;
}

.drawer_menu .drawer_nav li:hover {
  background-color: #09c; /* PC用メニューボタンマウスオーバー背景色 */
}

.drawer_menu .drawer_nav li:last-child:hover {
  border-right: 1px solid #09c;
}

.drawer_menu .drawer_nav li a {
  display: block;
  box-sizing: border-box;
  padding-top: 20px;
  width: 100%;
  height: 100%;
  color: #333; /* PC用メニューボタン文字色 */
  font-size: 15px;
}

.drawer_menu .drawer_nav > li:nth-child(2) a,
.drawer_menu .drawer_nav > li:nth-child(4) a {
  padding-top: 35px;
}

.drawer_menu .drawer_nav li:hover a {
  color: #fff;
}

/* PC非表示 */

@media screen and (min-width: 737px) {
  .pc-hidden {
    display: none;
    text-align: center;
  }
}

@media screen and (min-width: 737px) {
  /* ドロップダウンメニュー2階層目 */
  .drawer_menu .drawer_nav li ul.second-level {
    visibility: hidden;
    position: absolute;
    z-index: -1;
    top: 0;
    margin: 0;
    padding-left: 0;
  }

  .drawer_menu .drawer_nav li:hover ul.second-level {
    visibility: visible;
    z-index: 1;
    top: 97px; /* PC用メニューの高さに合わせる */
    transition: all 0.3s;
  }

  .drawer_menu .drawer_nav li:hover ul.second-level li {
    width: auto; /* ドロップダウンメニューボタン横幅 */
    height: 50px; /* Pドロップダウンメニューボタン高さ */
    text-align: left;
    border-bottom: 1px solid #81cced;
  }

  .drawer_menu .drawer_nav li:hover ul.second-level li a {
    display: block;
    box-sizing: border-box;
    padding: 10px;
    background-color: #09c; /* ドロップダウンメニューの文字の背景色 */
    color: #fff; /* ドロップダウンメニューの文字色 */
    text-decoration: none;
    line-height: 50px; /* Pドロップダウンメニューボタン高さ */
    text-align: left;
  }

  .drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
    /*background-color: #999; ドロップダウンメニューマウスホバー背景色 */
  }
}

.drawer_menu .drawer_button {
  color: #555; /* ハンバーガーメニュー文字色 */
  display: none;
}

.drawer_menu .drawer_button .drawer_bar {
  background-color: #555; /* ハンバーガーメニュー三本線の色 */
}

/* 1000px以下 */

@media screen and (max-width: 736px) {
  .drawer_menu .drawer_bg {
    /* コンテンツに被さる半透明スクリーン */
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: rgba(51, 51, 51, 0.5);
    display: none;
    top: 0;
    left: 0;
  }
  .drawer_menu .drawer_button {
    /* 右上のボタン */
    display: block;
    background: none;
    border: none;
    padding: 0;
    width: 42px;
    height: 26px;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 1001;
    text-align: center;
    outline: none;
  }
  .drawer_menu .drawer_button .drawer_bar {
    margin: 0;
  }

  .drawer_menu .drawer_button.active .drawer_bar {
    width: 49px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    top: 50%;
    rotate: 30deg;
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    rotate: -30deg;
    bottom: 0;
    /* translate: -50% 50%; */
  }
  .drawer_menu .drawer_button.active .drawer_menu_text {
    display: none;
  }
  .drawer_menu .drawer_button.active .drawer_close {
    display: block;
  }
  .drawer_menu .drawer_bar {
    display: block;
    height: 2px;
    margin: 10px 0;
    transition: all 0.2s;
    /* transform-origin: 0 0; */
  }
  .drawer_menu .drawer_text {
    text-align: center;
    font-size: 10px;
  }
  .drawer_menu .drawer_close {
    letter-spacing: 0.08em;
    display: none;
  }
  .drawer_menu .drawer_menu_text {
    display: block;
  }

  .drawer_menu .drawer_nav_wrapper {
    /* ドロワーメニューの枠 */
    width: 320px; /* メニュー幅 */
    height: 100%;
    transition: all 0.2s;
    transform: translate(320px); /* メニュー幅に合わせる */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff; /* ドロワーメニュー内背景色 */
    overflow-x: hidden;
    overflow-y: auto;
  }

  .drawer_menu .drawer_nav {
    display: block;
    position: relative;
    margin-top: 60px;
    padding-left: 10px;
    border: none;
  }

  .drawer_menu .drawer_nav li {
    background-color: #fff;
    height: auto;
    line-height: 1.4;
    position: relative;
    border-right: none;
  }

  .drawer_menu .drawer_nav > li > a {
    font-weight: bold;
    border-top: 2px solid #81cced;
  }

  .drawer_menu .drawer_nav li a {
    background-color: #fff; /* ドロワーメニューリスト背景色 */
    color: #333; /* ドロワーメニューリスト文字色 */
    display: block;
    text-align: left;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .drawer_menu .drawer_nav li:nth-child(2) a,
  .drawer_menu .drawer_nav li:nth-child(5) a {
    padding-top: 10px;
  }

  .drawer_menu .drawer_nav li a:hover {
    color: #333;
  }

  .drawer_menu .drawer_nav li:hover a {
    color: #333;
  }

  /* スマートフォン2階層目 */
  .drawer_menu .drawer_nav li:hover ul.second-level {
    display: block;
  }

  .drawer_menu .drawer_nav li ul.second-level {
    visibility: visible;
    position: relative;
    padding: 0;
    z-index: 1001;
  }

  .drawer_menu .drawer_nav li ul.second-level li {
    border-top: 1px solid #81cced;
  }

  .drawer_menu .drawer_nav li ul.second-level li a {
    padding-left: 1rem;
    color: #333;
  }

  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }

  .drawer_menu.left .drawer_button {
    right: auto;
    left: 32px;
  }

  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-320px);
    right: auto;
    left: 0;
  }

  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }

  .pc-hidden {
    text-align: center;
  }
}
