@charset "UTF-8";

.header {
  padding: 30px 0;
  position: relative;
}
.header__inner {
  max-width: 1366px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.header__logo {
  max-width: 387px;
  position: absolute;
  left: 20px;
  top: 5px;
}

.header__nav-list {
  margin-right: 100px;
}
.header__nav-bt {
  margin: 0 20px;
}
.header__nav-bt a {
  position: relative;
}
.header__nav-bt .bt-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 4px solid #e6186f;
  background: #fff;
  height: 65px;
  padding: 8px 20px;
  color: #e6186f;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.header__nav-bt .bt-row::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e6186f;
  background-image:
  repeating-linear-gradient(45deg, #f8bad4, #f8bad4 1px, transparent 1px, transparent 5px);
  border-radius: 50px;
  position: absolute;
  right: -7px;
  bottom: -10px;
  z-index: -1;
}
.header__nav-bt .bt-text {
  display: inline-block;
  margin: 0 15px;
}
.header__nav-bt .bt-icon-momo {
  display: inline-block;
  width: 37px;
  height: 38px;
  background: url("../img/icon_momo.webp") no-repeat center center / 100% auto;
}
.header__nav-bt a:hover {
  right: -2px;
  bottom: -4px;
}
.header__nav-bt a:hover .bt-row::after {
  right: -5px;
  bottom: -6px;
}



/* btn-menu
------------------------------------------- */
.btn-menu {
  width: 65px;
  height: 65px;
  position: fixed;
  right: 30px;
  top: 30px;
  background-color: #e6186f;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1112;
}
.btn-menu i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55%;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: .4s;
}
.btn-menu i::before,
.btn-menu i::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  transition: .4s;
}
.btn-menu i::before {
  margin-top: -13px;
}
.btn-menu i::after {
  margin-top: 13px;
}

.btn-menu.is-open {
  background: transparent;
}
.btn-menu.is-open i {
  background: transparent;
}
.btn-menu.is-open i::before,
.btn-menu.is-open i::after {
  margin-top: 0;
  background-color: #e6186f;
}
.btn-menu.is-open i::before {
  transform: rotate(315deg);
}
.btn-menu.is-open i::after {
  transform: rotate(-315deg);
}


/* menu
------------------------------------------- */
.menu {
  display: none;
  background: #fee8f0;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1111;
}
.menu__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__logo {
  max-width: 500px;
  margin: 80px auto 40px;
  width: 80%;
}
.menu__nav-list {
  display: flex;
  justify-content: center;
}
.menu__nav-bt {
  margin: 15px 15px;
}
.menu__nav-bt a {
  position: relative;
}
.menu__nav-bt .bt-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 4px solid #e6186f;
  background: #fff;
  height: 65px;
  padding: 8px 20px;
  color: #e6186f;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.menu__nav-bt .bt-row::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e6186f;
  background-image:
  repeating-linear-gradient(45deg, #f8bad4, #f8bad4 1px, transparent 1px, transparent 5px);
  border-radius: 50px;
  position: absolute;
  right: -7px;
  bottom: -10px;
  z-index: -1;
}
.menu__nav-bt .bt-text {
  display: inline-block;
  margin: 0 15px;
}
.menu__nav-bt .bt-icon-momo {
  display: inline-block;
  width: 37px;
  height: 38px;
  background: url("../img/icon_momo.webp") no-repeat center center / 100% auto;
}

.menu__nav-bt a:hover {
  right: -2px;
  bottom: -4px;
}
.menu__nav-bt a:hover .bt-row::after {
  right: -5px;
  bottom: -6px;
}


.menu__nav-sns-list {
  margin-top: 30px;
}
.menu__nav-sns-list .item {
  margin: 20px;
}
.menu__nav-sns-list .item.tw {
  width: 60px;
}
.menu__nav-sns-list .item.x {
  width: 36px;
}
.menu__nav-sns-list .item.yt {
  width: 55px;
}
.menu__nav-sns-list .item a {
  display: block;
  transform: scale(1);
  transition: transform .2s;
}
.menu__nav-sns-list .item a:hover {
  transform: scale(1.2);
}

.menu__nav-terms-list {
  width: 100%;
  flex-wrap: wrap;
  position: absolute;
  bottom: 30px;
}
.menu__nav-terms-list .item {
  font-size: 1.4rem;
  text-decoration: underline;
  margin: 5px 10px;
}


@media only screen and (max-width: 767px) {

  .header__logo {
    max-width: 240px;
    width: 65%;
    position: absolute;
    left: 20px;
    top: 0;
  }

  .header__nav {
    display: none;
  }

  .btn-menu {
    width: 55px;
    height: 55px;
    right: 20px;
    top: 20px;
  }
  .btn-menu i,
  .btn-menu i::before,
  .btn-menu i::after {
    height: 5px;
  }

  .menu__inner {
    flex-direction: column;
    padding: 20px 20px 20px;
  }
  .menu__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -1.5%;
  }
  .menu__nav-bt {
    margin: 7px 0;
    padding: 0 1.5%;
    width: 50%;
  }
  .menu__nav-bt .bt-row {
    border-width: 3px;
    height: 50px;
    padding: 8px 10px;
    font-size: 1.6rem;
  }
  .menu__nav-bt .bt-row::after {
    right: -5px;
    bottom: -7px;
  }
  .menu__nav-bt .bt-icon-momo {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icon_momo.webp") no-repeat center center / 100% auto;
    display: none;
    margin-right: 10px;
  }
  .menu__nav-bt .bt-text {
    margin: 0;
    flex: 1;
    text-align: center;
  }
  .menu__nav-bt a:hover {
    right: -1px;
    bottom: -2px;
  }
  .menu__nav-bt a:hover .bt-row::after {
    right: -4px;
    bottom: -5px;
  }

  .menu__nav-sns-list {
    margin-top: 20px;
  }

  .menu__nav-terms-list {
    position: static;
    width: auto;
    margin: 0 -10px;
    margin-top: 20px;
  }
  .menu__nav-terms-list .item {
    font-size: 1.2rem;
    margin: 5px;
  }

}


@media only screen and (min-width: 768px) {
  .btn-menu {
    display: block !important;
    opacity: 1 !important;
  }
}
