@charset "utf-8";
/*========= 上部固定させるためのCSS ===============*/
#header_pc .h_wrap {
  height: 7vw;
  max-height: 80px;
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 177, 169, 0.5);
  padding: 0;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header_pc .fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 90; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
/*========= 上部固定させるためのCSS ===============*/
#header_sp .h_wrap {
  max-height: 70px;
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 177, 169, 0.5);
  padding: 0;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header_sp .fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 90; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
/*header
----------------------------------------------------*/
.h_wrap {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
}
.h_logo {
  display: flex;
  align-items: center;
  height: 7vw;
  max-height: 80px;
}
.h_logo-img {
  line-height: 0;
}
.h_logo-img img {
  width: 7vw;
  max-width: 80px;
  height: auto;
}
.h_logo-text {
  font-size: 16px;
  color: #fff;
  margin-left: 16px;
  line-height: 1.5;
}
.h_entry {
  position: fixed;
  right: 0;
  top: 0;
}
.h_entry img {
  width: 10vw;
  min-width: 80px;
  max-width: 150px;
  height: auto;
}
.haikei_w100_green {
  width: 100%;
  height: auto;
  background-color: #ccefee;
}
.haikei_w100_grd {
  top: -5%;
  width: 100%;
  height: 110%;
  z-index: -1;
  background: linear-gradient(to right, #e5f7f6 0%, #e5f7f6 60%, #fff 60%, #fff 100%);
}
/*ハンバーガーメニュー スクロール できない
position: fixedのコンテンツでスクロールさせる方法
https://qumeru.com/magazine/338
*/
.menu-content ul {
  height: 94%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 50px;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 999; /*最前面へ*/
  background-color: #ffffff;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #00b1a9;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #ffffff;
}
.menu-content ul {
  padding-top: 40px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 40px;
}
.menu-content ul li {
  border-bottom: 1px dotted #333;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 17px;
  box-sizing: border-box;
  color: #212121;
  text-decoration: none;
  padding: 10px 15px 10px 20px;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 17px;
}
.menu-content ul .li-ttl {
  list-style: none;
  color: #00b1a9;
  font-weight: bold;
  border-bottom: 3px solid #00b1a9;
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 17px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 99;
  background-color: #ffffff;
  transition: all 0.5s; /*アニメーション設定*/
  text-align: left;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
/* 幅660px以下からcss適応 */
@media only screen and (max-width: 660px) {
  /* ヘッダー */
  .h_wrap {
    background: #fff;
  }
  .h_logo {
    height: 100%;
    max-height: 64px;
  }
  .h_logo-img {
    line-height: 0;
  }
  .h_logo-img img {
    width: auto;
    max-height: 64px;
  }
  .h_entry {
    display: none;
  }
  .h_logo-text {
    display: block;
    font-size: 11px;
    margin: 0 8px;
    line-height: 1.5;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #ffffff;
  }
  .menu-content ul {
    padding-top: 40px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 40px;
  }
  .menu-content ul li {
    border-bottom: 1px dotted #333;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 17px;
    box-sizing: border-box;
    color: #212121;
    text-decoration: none;
    padding: 10px 15px 10px 20px;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 17px;
  }
  .menu-content ul .li-ttl {
    list-style: none;
    color: #00b1a9;
    font-weight: bold;
    border-bottom: 3px solid #00b1a9;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: 17px;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 99;
    background-color: #ffffff;
    transition: all 0.5s; /*アニメーション設定*/
    text-align: left;
  }
}