@charset "UTF-8";
@font-face {
  font-family: noto_sans_500;
  src: url("../fonts/NotoSansJP-Medium.woff");
  font-weight: 500;
}
@font-face {
  font-family: noto_sans_700;
  src: url("../fonts/NotoSansJP-Bold.woff");
  font-weight: 700;
}
@font-face {
  font-family: noto_sans_900;
  src: url("../fonts/NotoSansJP-Black.woff");
  font-weight: 900;
}
@font-face {
  font-family: zen_gothi_900;
  src: url("../fonts/ZenKakuGothicAntique-Black.woff");
  font-weight: 900;
}
@font-face {
  font-family: poppins_700;
  src: url("../fonts/Poppins-SemiBold.woff");
  font-weight: 600;
}
@font-face {
  font-family: yugo_700;
  src: url("../fonts/YuGoPr6N-B.woff");
  font-weight: 700;
}
@font-face {
  font-family: hirakaku_600;
  src: url("../fonts/ヒラギノUD角ゴF_Std_W6.woff");
  font-weight: 600;
}
.header {
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: #008482;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 22px 127px 22px 69px;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header {
    padding: 22px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 16px 0 14px;
  }
}

.header__inner {
  max-width: 1385px;
  width: calc(100% - 48px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .header__logoWrap {
    width: 75px;
  }
}
@media screen and (max-width: 768px) {
  .header__logoWrap {
    width: 46px;
  }
}

.header__logo {
  padding: 0 0 10px 0;
  position: relative;
  z-index: 0;
}
.header__logo:before {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  pointer-events: none;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
  border-radius: 100px;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
@media screen and (min-width: 769px) {
  .header__logo:hover:before {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .header-nav {
    width: calc(100% - 75px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    width: 100%;
    min-height: 420px;
    padding: 78px 20px 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 11;
    visibility: hidden;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-color: #0c4e3c;
  }
  .header-nav.is-open {
    visibility: unset;
    opacity: 1;
  }
}

@media screen and (min-width: 769px) {
  .header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav__list {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .header-nav__item:nth-child(n+2) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav__item {
    border-top: 1px solid #51a67b;
  }
  .header-nav__item:last-child {
    border-bottom: 1px solid #51a67b;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header-nav__item:nth-child(n+2) {
    margin-left: 15px;
  }
}

.header-nav__anchor {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .header-nav__anchor {
    position: relative;
  }
  .header-nav__anchor:after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -7px;
    left: 0;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    background-color: #fff;
  }
  .header-nav__anchor:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header-nav__anchor {
    padding: 18px 0;
    display: block;
    text-align: center;
  }
  .header-nav__anchor:hover {
    background-color: #51a67b;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header-nav__anchor {
    font-size: 12px;
  }
}

.header__buttonWrap {
  width: 100%;
  z-index: 12;
}
@media screen and (min-width: 769px) {
  .header__buttonWrap {
    max-width: 191px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__buttonWrap {
    max-width: 100px;
    margin-right: 79px;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header__buttonWrap {
    max-width: 118px;
    margin-left: 15px;
  }
}

.header__button {
  position: relative;
}
@media screen and (min-width: 769px) {
  .header__button {
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  .header__button {
    height: 28px;
    font-size: 9px;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .header__button {
    height: 40px;
    font-size: 14px;
  }
}

.header__button::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 43px;
  background-color: #000;
  right: -28px;
  top: 18px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .header__button::after {
    height: 1px;
    top: 15px;
  }
}

.header__button::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 11px;
  background-color: #000;
  right: -29px;
  top: 14.5px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 50px;
  border-bottom-right-radius: 70px;
}
@media screen and (max-width: 768px) {
  .header__button::before {
    height: 1px;
    top: 11.5px;
  }
}

.header__button:hover::after {
  right: -35px;
}

.header__button:hover::before {
  right: -36px;
}

@media screen and (max-width: 768px) {
  .header__hamburger {
    width: 28px;
    height: 20px;
    position: absolute;
    top: 28px;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 11;
    cursor: pointer;
  }
}

@media screen and (max-width: 768px) {
  .header__bar {
    width: 100%;
    height: 2px;
    display: block;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    background-color: #fff;
  }
  .header__bar:first-child {
    -webkit-transform: translateY(1px) rotate(0);
            transform: translateY(1px) rotate(0);
  }
  .header__bar:nth-child(2) {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .header__bar:last-child {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  .header__bar.is-active:first-child {
    -webkit-transform: translateY(12px) rotate(40deg);
            transform: translateY(12px) rotate(40deg);
  }
  .header__bar.is-active:nth-child(2) {
    -webkit-transform: translateY(10px) translateX(10px);
            transform: translateY(10px) translateX(10px);
    opacity: 0;
  }
  .header__bar.is-active:last-child {
    -webkit-transform: translateY(8px) rotate(-40deg);
            transform: translateY(8px) rotate(-40deg);
  }
}

@media screen and (max-width: 1279px) {
  .header__overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .header__overlay.is-open {
    pointer-events: unset;
    background-color: rgba(0, 0, 0, 0.7);
  }
}