@charset "UTF-8";

/*************共通項目など*************/
/* Windows 用 Medium 指定の游ゴシック */
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */


.f_font {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@media screen and (max-width: 1920px) {
  .hamburger {
    display: none;
  }

  .logo img {
    width: 219px;
    height: 54px;
  }
}

@media screen and (max-width: 1440px) {
  .record img {
    width: 30vh;
  }
}

@media screen and (max-width: 768px) {
  .record img {
    width: 20Vh;
  }

  .logo img {
    width: 174px;
    height: 43px;
  }

}

@media screen and (max-width: 425px) {
  .record img {
    width: 20Vh;
  }
}



/*************ヘッダー*************/



header {
  position: fixed;
  width: 100%;
  height: 67px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.tail {
  position: fixed;
  z-index: 100;
  top: -8%;
  left: 12%;
}

.record img {
  margin-left: -10%;
  margin-top: 11%;
}


.logo_cont {
  display: flex;
  align-items: center;
}


.menu {
  margin-left: auto;
  margin-right: 30px;
  color: #0096F1;
  font-size: 14px;

  ul {
    list-style-type: none;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 30px
  }

  li {
    display: flex;
    cursor: pointer;
  }

  a {
    display: inline-block;
    color: #0096F1;

  }

}


.equalizer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-right: 0.5em;
  height: 20px;
  vertical-align: sub;
  padding-top: 2px;
}

.bar {
  width: 3px;
  height: 13px;
  background: #00aaff;
  transform-origin: center center;
  animation: pulse 1s infinite ease-in-out;
}

.bar:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 0.8s;
}

.bar:nth-child(2) {
  animation-delay: 0.5s;
  animation-duration: 0.8s;
}

.bar:nth-child(3) {
  animation-delay: 0.2s;
  animation-duration: 0.8s;
}

.bar:nth-child(4) {
  animation-delay: 0.1s;
  animation-duration: 0.8s;
}

.bar:nth-child(5) {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
}


@keyframes pulse {

  0%,
  100% {
    transform: scaleY(0.5);
  }

  30% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.5);
  }
}

/* スマホ向け（768px以下）でメニューは非表示＆右スライドで表示 */
@media screen and (max-width: 1024px) {

  .hamburger {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0096F1;
    border-radius: 3px;
    transition: 0.4s;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* 最初は画面外に隠す */
    width: 30%;
    height: 100%;
    background-color: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 60px 40px;
    margin-right: 0;

    ul {
      list-style-type: none;
      display: block;
      align-items: center;
    }
      a {
    display: inline-block;
    color: #0096F1;

  }
  }

  .menu.active {
    right: 0;
    /* スライドイン */
  }

  .overlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
  }

  .overlay.active {
    display: block;
  }

  .menu ul {
    list-style: none;
    padding: 0;
  }

  .menu li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    width: 70%;
  }
}




/*************アニメーション*************/


/* レコード */
.record img {
  animation: rotate 6s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tail img {
  animation: yurayura 4s infinite linear;
  transform-origin: center top;
}

@keyframes yurayura {

  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}




/* ハンバーガー → ✖ のアニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}