@charset "utf-8";
body{
  /* overflow-x: hidden; */
}
header{
  margin: 0;
  padding: 0;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 40px;
}
#header{
  height: inherit;
  position: relative;
  z-index: 999;
}
.company-logo{
  width: 20%;
  min-width: 140px;
  max-width: 180px;
}
.company-logo img{
  width: 100%;
}
.list_items li a{
  color: #303030;
  font-family: sans-serif;
}

/* ハンバーガーメニュー */
.hamburger_line {
  width: 22px;
  height: 14px;
  position: relative;
}
.hamburger_line span{
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(90,200,120);
  border-radius: 15px;
}
.hamburger_line span:first-of-type{
  top: 0;
}
.hamburger_line span:nth-of-type(2){
  top: 50%;
}
.hamburger_line span:last-of-type{
  top: 100%;
}
.hamburger_line.active span:first-of-type{
  top: 50%;
  transform: rotate(405deg);
  transition: .5s;
}
.hamburger_line.active span:nth-of-type(2){
  opacity: 0;
}
.hamburger_line.active span:last-of-type{
  top: 50%;
  transform: rotate(-405deg);
  transition: .5s;
}
/* ここまでハンバーガーメニュー */


/* スライドメニュー */
.slide-menu{
  left: 0;
  top: 44px;
  width: 100%;
  position: fixed;
  transform: translateX(100%);
  list-style: none;
  background-color: white;
}
.slide-menu li{
  line-height: 300%;
  display: flex;
  justify-content: center;
  text-align: center;
  border-bottom: solid 1px rgb(90,200,120);
}
.slide-menu li a{
  color: #303030;
  font-family: sans-serif;
}
.slide-menu.active{
  transform: translateX(0);
  transition: .5s;
}
.drawer_nav_link01:hover,
.drawer_nav_link02:hover,
.drawer_nav_link03:hover,
.drawer_nav_link04:hover,
.drawer_nav_link05:hover,
.drawer_nav_link06:hover{
  text-decoration: underline;
}

/* お問い合わせボタン */
.drawer_nav_link07,
.information{
  right: 0;
  height: 40px;
  width: 100%;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer_nav_link07 a{
  font-size: 14px;
  font-weight: bold;
}
.information a{
  font-size: clamp(10px,1.2vw,12px);
  font-weight: bold;
}
.drawer_nav_link07 a,
.information a{
  transform: scale(0.8);
  transform-origin: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.drawer_nav_link07 button,
.information button{
  display: flex;
  align-items: center;
}
.drawer_nav_link07 img,
.information img{
  width: 20%;
  margin-right: 12px;
}