/*　ハンバーガーボタン */
.hamburger {
  display: none;
  position: fixed;
  z-index: 3;
  right: 10px;
  top: 32px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 2px;
  background: #fff;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}

.hamburger span:nth-child(1) {
  top: 5px;
  z-index: 1;
}

.hamburger span:nth-child(2) {
  top: 15px;
  z-index: 1;
}

.hamburger span:nth-child(3) {
  top: 25px;
  z-index: 1;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 0.8s forwards;
  animation: active-hamburger-bar02 0.8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  background: #e26b79;
  color: #fff;
  transition: all 0.75s;
}
.hamburger.active::after {
}

nav.globalMenu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  padding: 50px 0 0 0;
}

nav.globalMenu ul {
  display: flex;
  margin: 0 auto;
  padding: 0 10px;
  width: 95%;
  text-align: center;
}

nav.globalMenu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenu ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenu ul li a:hover {
  opacity: 0.6;
  transition: 0.5s;
}

nav.globalMenu ul li a {
  display: block;
  color: #d84d83 !important;
  padding: 1em 0;
  text-decoration: none;
  font-weight: bold;
}

.side-globalMenu-li {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  /* identical to box height, or 114% */
  letter-spacing: 1.6px;

  color: #d84d83;

  padding-top: 15px;
  padding-bottom: 15px;

  text-align: center;
}

.side-globalMenu-inner-ul {
  display: block !important;
}

.globalMenu-inner-ul a {
  font-weight: normal !important;
  padding: 0.5rem 0 !important;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenu.active {
  height: 100vh;
  transform: translateX(0%);
}

p-navbar__logo {
  z-index: 9999;
}

.konome-button-sec {
  background-color: #d84d83;
  border-radius: 2em;
  text-align: center;
}

.konome-button-sec a {
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  /* identical to box height, or 114% */
  letter-spacing: 1.6px;
}

/* バナー本体 */
.header-banner {
  position: absolute;
  display: block;
  width: 100%;
  overflow: hidden;
  bottom: 100px;
}

/* バナー内コンテンツ */
.header-banner__content {
  display: inline-block;
  color: #fff;
  line-height: 100px;
  font-size: 100px;
  padding-left: 100%;
  white-space: nowrap;
  animation: animate-banner 30s linear infinite;
}

/* バナー内の要素をすべて選択 */
.header-banner__content > * {
  display: inline-block;
}

.header-banner__content p {
  font-weight: 700;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 18.09%,
    rgba(255, 255, 255, 0.15) 121.28%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  mix-blend-mode: normal;
}

/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (min-width: 650px) and (max-width: 1024px) {
  .content-left {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 650px) {
  .hamburger {
    display: block;
  }

  nav.globalMenu ul {
    display: block;
  }

  nav.globalMenu {
    padding: 50px;
  }
}
