@charset "UTF-8";
/* CSS Document */
/*
-----------------------------------------------
▼header
----------------------------------------------- */
header {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo_bg {
  background-color: #017965;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  width: 24vw;
  height: 100px;
  position: relative;
}
.header_logo {
  width: 19vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}
.header_ttl {
  color: #017965;
  font-size: 3.9rem;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.header_btn a {
  font-size: 1.5rem;
  color: #017965;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #ffffff;
  border: solid 2px #017965;
  width: 207px;
  height: 40px;
  display: inline-block;
  line-height: 38px;
  text-align: center;
  border-radius: 40px;
  transition: all 0.5s 0s ease;
}
.header_btn a:hover {
  background-color: #017965;
  color: #ffffff;
}
.h-area01 {
  display: flex;
  align-items: center;
}
.h-area02 {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.h-wrap01 {
  display: flex;
  column-gap: 6.5vw;
}
@media screen and (max-width: 1000px) {
  .header_ttl {
    font-size: 4vw;
  }
  .header_logo {
    width: 30vw;
  }
  .header_logo_bg {
    width: 40vw;
  }
}
@media screen and (max-width: 600px) {
  .header_logo_bg {
    height: 70px;
  }
}
/*
-----------------------------------------------
▼ハンバーガーメニュー
----------------------------------------------- */
.header__hamburger {
  display: block;
  width: 74px;
  height: 64px;
  position: relative;
  z-index: 999;
  margin-right: 20px;
}
.hamburger {
  position: fixed;
  width: inherit;
  height: inherit;
  margin: 0;
  cursor: pointer;
  background-color: #017965;
  border-radius: 5px;
}
.hamburger::after {
  content: "MENU";
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #ffffff;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 35px;
  height: 3px;
  transform: translateX(-50%);
  background: #ffffff;
  transition: all 0.4s;
}
.hamburger span:nth-of-type(1) {
  top: 27%;
}
.hamburger span:nth-of-type(2) {
  top: 42%;
}
.hamburger.is-active span:nth-of-type(1) {
  top: 25px;
  transform: translateX(-50%) rotate(225deg);
}
.hamburger.is-active span:nth-of-type(2) {
  top: 25px;
  transform: translateX(-50%) rotate(-225deg);
}
.hamburger.is-active::after {
  content: "CLOSE";
}
/*
-----------------------------------------------
▼ドロワー部分
----------------------------------------------- */
.menu {
  display: none;
  flex-direction: column;
}
.header__nav {
  display: flex;
  z-index: 10;
  position: fixed;
  top: 0;
  right: -100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  transition: 0.6s;
}
.nav__list {
  display: block;
  width: 70%;
  max-width: 700px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.nav {
  padding-top: 70px;
}
.nav__item {
  position: relative;
  width: 100%;
}
.nav__list a {
  text-align: left;
  text-decoration: none;
  position: relative;
  font-size: 1.5rem;
}
.nav__list a::after {
  content: "\025b6";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  color: #017965;
}
.nav__link {
  color: #535353;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  border-bottom: solid 1px #333333;
}
.nav__list a:hover {
  color: #017965;
}
/* ハンバーガーメニューが開いた時 */
.header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  transition: 1s;
}
.header__nav.is-active .js-btn01 {
  display: block;
}
@media screen and (max-width: 600px) {
  .header__hamburger {
    width: 64px;
    height: 54px;
    margin-right: 7px;
  }
  .hamburger::after {
    font-size: 11px;
  }
  .hamburger span {
    width: 28px;
  }
  .hamburger.is-active span:nth-of-type(1) {
    top: 21px;
  }
  .hamburger.is-active span:nth-of-type(2) {
    top: 21px;
  }
  .nav__list {
    width: 85%;
  }
  .h-area02 {
    flex-direction: column;
    grid-row-gap: 3vw;
  }
  .nav__link {
    padding-left: 15px;
  }
}