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


/*---------------------------------

  ハンバーガーアイコン

---------------------------------*/

.icon-hamburger {
  background: #6bc3af;
  border-radius: 10px;
  cursor: pointer;
  height: 50px;
  position: relative;
  width: 50px;
  margin: 0 5px 0 auto;
}

.icon-hamburger span {
  background: #fff;
  display: block;
  height: 10%;
  left: 50%;
  margin: -5% 0 0 -33%;
  position: absolute;
  top: 50%;
  width: 35px;
}

.icon-hamburger span::before,
.icon-hamburger span::after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  width: 35px;
}

.icon-hamburger span::before {
  margin-top: -33%;
}

.icon-hamburger span::after {
  margin-top: 19%;
}



/*---------------------------------

  メニュー

---------------------------------*/

.menu-container {
  margin: 0;
  position: relative;
}

.menu-container .menu {
  border: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 10px;
}

.menu-container .menu li {
  flex: 1;
}

.menu-container .menu li a {
  background: #fff;
  border-right: 1px solid #ccc;
  color: #333;
  display: block;
  font-size: 14px;
  padding: 8px 20px;
  text-align: left;
  text-decoration: none;
}

.menu-container .menu li a:hover {
  background: #6bc3af;
  color: #ffffff;
  opacity: 1;
}

.menu-container .menu li:last-child a {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .menu-container .menu {
    display: none;
    position: absolute;
    width: 100%;
  }
  .menu-container .menu li a {
    border-bottom: 1px solid #ccc;
    border-right: none;
  }
  .menu-container .menu li:last-child a {
    border-bottom: none;
  }
}