body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #ffffff;
  background-color: #02021c;
}
a {
  text-decoration: none;
  display: block;
}
.wrap {
  overflow: hidden;
  position: relative;
  /* margin-top: -32px; */
}
li {
  list-style: none;
}
img {
  vertical-align: bottom;
}

.header {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  height: 56px;
  padding: 0px 40px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  z-index: 999999;
}
.header ul {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 40px;
  height: 100%;
  align-items: center;
}
.header ul li {
  display: flex;
}
.header li a,
.footer li a {
  color: #ffffff;
}

/* GAU private 指定 */
@font-face {
  font-family: "gauprivate"; /* 任意のフォントファミリー名でOK */
  src: url("./font/GAU_private_R.TTF")
    format("truetype"); /*fontがあるパスを書いて、formatを指定*/
  font-display: swap; /* ダウンロード状況に応じてフォントの表示を変える。「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。 */
}
.ttl {
  font-family: "gauprivate", "Noto Sans JP", sans-serif; /*上で設定したフォントファミリー名*/
  text-box: trim-both cap alphabetic; /*テキストボックス上下余白消す*/
}
/* GAU private 指定 */

.nav_item a span {
    display: none;
}
.spmenu_logo {
  display: none;
}
.spmenu_logo img {
  height: 32px;
}

.main {
  max-width: 960px;
  position: relative;
  width: 100vw;
  margin: 0 auto;
}

h1 {
  display: none;
}
h1 a {
  display: flex;
}
h3 {
  font-size: 40px;
  letter-spacing: 0.4em;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 20px;
  font-weight: 600;
  padding-left: 12px; /*文字周りの余白*/
  border-left: 8px solid;
  border-image: linear-gradient(to top, #d900fd, #7418e5) 1;
  height: 48px;
  display: flex;
  align-items: center;
}
.ttl span {
  display: inline-block;
  font-family: "gauprivate", "Noto Sans JP", sans-serif;
  text-box: trim-both cap alphabetic;
  font-size: 40px;
  background: linear-gradient(to top, #d900fd, #7418e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin-bottom: 40px;
}

/* 追従header */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slide 0.5s ease-in-out;
  /* background-image: url(./img/header_bg.svg);
  background-size: 100%;
  background-position: bottom 0; */
  /* ヘッダー背景指定 */
  backdrop-filter: brightness(0.6);
}
.header-fixed h1 {
  display: block;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%); /* 上下中央指定 （top:50%とセット） */
  -webkit-transform: translateY(-50%); /* 上下中央指定（top:50%とセット） */
  -ms-transform: translateY(-50%); /* 上下中央指定（top:50%とセット） */
}
.header-fixed h1 img {
  width: 80px;
}

@keyframes slide {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* 追従header */

.mv {
  margin: 0 calc(50% - 50vw);
  position: relative;
  /* background-image: url(./img/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  /* padding: 56px 40px 40px 0; */
  height: 100vh; /* ヘッダーの高さをマイナスするなら calc(100vh - 56px) */
}
.mv_img {
  height: 95%;
}
.mv_img_sp {
  display: none;
}
.mv_wrapper {
  width: 100%;
  height: 100%;
  padding: 56px 40px 0 0;
  text-align: right;
  position: absolute;
  overflow: hidden;
}

/* 背景もやもや */
.gradation {
  /* 背景の枠とはみ出た部分を非表示に設定 */
  /* position: relative; */
  overflow: hidden;
  z-index: -9999999;
  width: 100%;
  height: 100vh;  
}
.item {
  /* 回転位置の設定 */
  position: absolute;
  top: 50%;
  left: 20%;
  width: 75%;
  height: 75%;

  /* 回転アニメーション */
  transform-origin: 0 0;
  animation-name: rotate-item;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.item-01 {
  z-index: -3; /* 円の重ね順の設定 */
  animation-duration: 30s; /* ○秒かけて回転 */
}
.item-02 {
  z-index: -2;
  left: 45%;
  animation-duration: 100s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-03 {
  z-index: -4;
  left: 40%;
  animation-duration: 35s;/* ○秒かけて回転 */
}
.item-04 {
  z-index: -1;
  animation-duration: 24s;/* ○秒かけて回転 */
}

.item-05 {
  z-index: -3;
  left: 80%;
  animation-duration: 80s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-06 {
  z-index: -2;
  left: 90%;
  animation-duration: 24s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-07 {
  z-index: -4;
  left: 95%;
  animation-duration: 56s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
/* 円の設定 */
.round {
  position: relative;
  border-radius: 50%;
}
.round-01 {
  z-index: 3;
  top: 0%;
  width: 18vw;
  height: 18vw;
  background: #D900FD;
  filter: blur(80px); /* ぼかし具合 */
  animation: flash 5s linear infinite; /* ○秒かけて点滅 */
}
.round-02 {
  top: -20%;
  width: 30vw;
  height: 30vw;
  background-color: #9941FD;
  filter: blur(80px);
  animation: flash 8s linear infinite;/* ○秒かけて点滅 */
}
.round-03{
  top: 60%;
  width: 3vw;
  height: 3vw;
  background-color: #D900FD;
  filter: blur(20px);
  animation: flash 3s linear infinite;/* ○秒かけて点滅 */
}
.round-04{
  top: -70%;
  left: -60%;
  width: 40vw;
  height: 40vw;
  background-color: #9941FD;
  filter: blur(150px);
  animation: flash 10s linear infinite;/* ○秒かけて点滅 */
}
.round-05 {
  z-index: 3;
  top: 0%;
  width: 18vw;
  height: 18vw;
  background: #D900FD;
  filter: blur(80px); /* ぼかし具合 */
  animation: flash 5s linear infinite; /* ○秒かけて点滅 */
}
.round-06 {
  top: -20%;
  width: 30vw;
  height: 30vw;
  background-color: #9941FD;
  filter: blur(80px);
  animation: flash 8s linear infinite;/* ○秒かけて点滅 */
}
.round-07{
  top: 60%;
  width: 3vw;
  height: 3vw;
  background-color: #D900FD;
  filter: blur(20px);
  animation: flash 3s linear infinite;/* ○秒かけて点滅 */
}

/* 回転アニメーション */
@keyframes rotate-item {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* 点滅アニメーション */
@keyframes flash {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
}
/* 背景もやもや */

.mv_catchwrapper {
  display: grid;
  gap: 40px;
  position: absolute;
  text-align: left;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99999;
}
.mv_catchwrapper br {
  display: none;
}

.mvparts-l {
  position: absolute;
  top: 50%;
  z-index: 99999;
}
.mvparts-t {
  position: absolute;
  top: 0;
  left: 25%;
  z-index: 9999;
}
.mvparts-r {
  position: absolute;
  bottom: 15%;
  right: 20%;
  z-index: 9999;
}
/* 縁のみ四角 */
.square-line-w001 {
  width: 480px;
  height: 216px;
  border: 2px solid #ffffff;
  z-index: 99999;
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}
.square-line-w002 {
  width: 390px;
  height: 210px;
  border: 2px solid #ffffff;
  z-index: 99999;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
}
.square-line-g001 {
  width: 200px;
  height: 160px;
  border: 2px solid;
  border-image: linear-gradient(to top, #d900fd, #7418e5) 1; /* グラデ */
  z-index: 99999;
  position: absolute;
  bottom: -2.5rem;
  left: 18%;
}
.square-line-g002 {
  width: 150px;
  height: 316px;
  border: 2px solid;
  border-image: linear-gradient(to top, #d900fd, #7418e5) 1; /* グラデ */
  z-index: 99999;
  position: absolute;
  top: 20%;
  right: -2.5rem;
}
/* 縁のみ四角 */



/* ロゴ無限ループ */
.loopSlide {
  display: flex;
  width: 100vw;
  height: 96px;
  position: absolute;
  bottom: -46px;
  overflow: hidden;
  z-index: 99999;

  img {
    width: auto;
    height: 100%;

    &:first-child {
      animation: slide1 60s -30s linear infinite;
    }
    &:last-child {
      animation: slide2 60s linear infinite;
    }
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* ロゴ無限ループ */

.about {
  padding: 160px 0;
  display: grid;
  justify-items: center;
  gap: 56px;
  position: relative;
}
.about::after {
  content: "ABOUT";
  font-family: "gauprivate", "Noto Sans JP", sans-serif;
  position: absolute;
  top: 50%; /* 垂直方向の中央寄せ */
  left: 50%; /* 水平方向の中央寄せ */
  transform: translate(-50%, -50%); /* 中央に配置 */
  font-size: 280px; /* 背景テキストのフォントサイズ */
  color: rgba(255, 255, 255, 0.1); /* 背景テキストの色（透明度含む） */
  z-index: -1; /* 背景として配置 */
  white-space: nowrap; /* テキストの折り返し防止 */
}
.about_textwrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 640px;
}
.about ul {
  display: flex;
  gap: 16px;
}
.about ul li img {
  width: 208px;
}
.lineup {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 104px;
}
.lineup li {
  position: relative;
  overflow: hidden;
}
.lineup p {
  position: absolute;
  color: #333333;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  z-index: 99999;
}
.splide__list {
  /* display: flex; */
  gap: 8px;
}

.lineup img {
  width: 100%;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.lineup img:hover {
  transform: scale(1.1); /* 拡大 */
}

/* slider */
/* PC時のスタイル */
.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;!important
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
/* slider */

/* scrollify */
/* .container section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
} */
/* .section01 {
  position: relative;
  background-image: url(./img/bg_01.jpg);
}
.section02 {
  position: relative;
  background-image: url(./img/bg_02.jpg);
}
.section03 {
  position: relative;
  background-image: url(./img/bg_03.jpg);
}
.section04 {
  position: relative;
  background-image: url(./img/bg_04.jpg);
} */
/* scrollify */

.features {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.features_head {
  justify-items: center;
  margin-bottom: 80px;
}
.featurebox {
  /* padding: 160px 0; */
  max-width: 960px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.featurebox .is-1 {
  padding-bottom: 160px;
}
.features img {
  width: 480px;
}
.features .textwrapper {
  display: grid;
  gap: 16px;
}
.container {
  overflow: hidden;
}

/* パララックス */
.panel {
  display: grid;
  justify-content: center;
}

.layer {
  margin-top: 0;
}
.layer .panel {
  /* height: 100vh; */
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
}
.layer .panel:first-of-type{
  align-items: center;
}
.layer .panel figure {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.layer .panel:first-of-type figure {
  /* position: relative; */
  background-image: url(./img/bg_01.jpg);
}
.layer .panel:nth-of-type(2) figure {
  /* position: relative; */
  background-image: url(./img/bg_02.jpg);
}
.layer .panel:nth-of-type(3) figure {
  /* position: relative; */
  background-image: url(./img/bg_03.jpg);
}
.layer .panel:nth-of-type(4) figure {
  /* position: relative; */
  background-image: url(./img/bg_04.jpg);
}
/* .layer .panel:nth-of-type(odd) .title_desc {
  color: #ffffff;
  margin-left: 0;
  margin-right: auto;
  padding-left: 2rem;
}
.layer .panel:nth-of-type(even) {
  padding-right: 2rem;
} */
/* パララックス */


/* 四角あしらい */
.square-1 {
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 264px;
  height: 164px;
  top: -2.5rem;
  left: -2.5rem;
}
.square-2_wrapper {
  position: relative;
}
.square-2 { /* 画像左下 */
  position: absolute;
  z-index: -1;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 266px;
  height: 234px;
  bottom: -2.18rem;
  left: -4rem;
}
.square-3 {
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 148px;
  height: 109px;
  top: 14rem;
  right: -2.5rem;
}
.square-4 {
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 390px;
  height: 184px;
  bottom: -7.75rem;
  right: -2.5rem;
}
.square-5 { /* 右上 */
  position: absolute;
  z-index: 999;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0.4;
  width: 350px;
  height: 124px;
  top: 0;
  right: 0;
}
.square-6 { /* 右下 */
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 723px;
  height: 298px;
  bottom: -12.3rem;
  right: -2.5rem;
}
.square-7_wrapper {
  position: relative;
}
.square-7 { /* 画像左下 */
  position: absolute;
  z-index: -1;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 372px;
  height: 320px;
  bottom: -9rem;
  left: -10rem;
}
.square-8 { /* 右上 */
  position: absolute;
  z-index: 999;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0.4;
  width: 683px;
  height: 197px;
  top: 0;
  right: 0;
}
.square-9 { /* 右下 */
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 308px;
  height: 153px;
  bottom: -3.25rem;
  right: 6.62rem;
}
.square-10_wrapper {
  position: relative;
}
.square-10 { /* 画像右下 */
  position: absolute;
  z-index: -1;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 200px;
  height: 184px;
  bottom: -2.5rem;
  right: -1.19rem;
}
.square-11 { /* 右上 */
  position: absolute;
  z-index: 999;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  opacity: 0.4;
  width: 308px;
  height: 52px;
  top: 0;
  right: 6.62rem;
}
.square-12 { /* 左 */
  position: absolute;
  z-index: 999;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 111px;
  height: 298px;
  top: 12.5rem;
  left: -2.5rem;
}
.square-13_wrapper {
  position: relative;
}
.square-13 { /* 画像右下 */
  position: absolute;
  z-index: -1;
  border: 2px solid #ffffff;
  opacity: 0.4;
  width: 987px;
  height: 400px;
  top: 26.25rem;
  left: 21.2rem;
}
/* 四角あしらい */

.message {
  position: relative;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
.message_wrapper {
  max-width: 960px;
  padding: 120px 0;
  display: grid;
  gap: 40px;
  margin: 0 auto;
}
.message::after {
  content: "MESSAGE";
  font-family: "gauprivate", "Noto Sans JP", sans-serif;
  position: absolute;
  /* top: 50%;
  left: 0%; */
  transform: translateY(-50%) rotate(-90deg); /* テキストを縦に配置 */
  transform-origin: left; /* テキストの基準点 */
  font-size: 104px; /* 背景テキストのフォントサイズ */
  color: rgba(255, 255, 255, 0.1); /* 背景テキストの色（透明度含む） */
  z-index: -1; /* 背景として配置 */
  white-space: nowrap; /* テキストの折り返し防止 */
  left: 44px;
}
.message_contentwrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.message img {
  width: 480px;
}
.cta {
  background-image: url(./img/bg_cta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0;
}
.cta_contentswrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 40px;
}

/* CTAボタン grd */
.cta .btn {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
  color: #212529;
  border-radius: 9999px;
  box-shadow: 0 0 24px rgba(2, 2, 28, 0.4);
}
a.btn-gradient {
  background-color: #ffffff;
}
a.btn-gradient span {
  background-image: -webkit-linear-gradient(180deg, #7418e5, #d900fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta_txt {
  text-box: trim-both cap alphabetic; /*テキストボックス上下余白消す*/
}
a.btn-gradient:hover {
  /* background: -webkit-gradient(linear, left top, right top, from(#02021C), to(#02021C));
  background: -webkit-linear-gradient(left, #02021C 0%, #02021C 100%); */
  background: linear-gradient(to right, #02021c 0%, #02021c 100%);
  /* -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); */
  /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); */
}
.material-symbols-outlined {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 32px;
  display: inline-flex;
  vertical-align: middle;
}
/* CTAボタン grd */

.banner {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #d900fd, #7418e5);
  position: relative;
  border-radius: 9999px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  -webkit-box-shadow: 0 0 24px rgba(2, 2, 28, 0.4);
  box-shadow: 0 0 24px rgba(2, 2, 28, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.active {
  /*このクラスが付与されると表示する*/
  opacity: 1;
  visibility: visible;
}
.is-hidden {
  /*footerまでスクロールしたら消す*/
  visibility: hidden;
  opacity: 0;
}
.banner p {
  font-family: "gauprivate", "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-box: trim-both cap alphabetic;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.banner:hover {
  background: #02021c;
  -webkit-box-shadow: 0 0 24px rgba(153, 65, 253, 0.4);
  box-shadow: 0 0 24px rgba(153, 65, 253, 0.4);
}
.banner:hover p {
  background-image: -webkit-linear-gradient(180deg, #7418e5, #d900fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pagetop {
  font-family: "gauprivate", "Noto Sans JP", sans-serif; /*上で設定したフォントファミリー名*/
  text-box: trim-both cap alphabetic; /*テキストボックス上下余白消す*/
  display: flex;
  font-size: 14px;
  gap: 8px;
  margin: 0 calc(50% - 50vw);
  align-items: center;
  position: absolute;
  right: 16px;
  bottom: 320px;
  color: inherit;
  text-decoration: none;
}
.pagetop:hover {
  background-image: -webkit-linear-gradient(180deg, #7418e5, #d900fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pagetop:hover::before {
  background-image: -webkit-linear-gradient(180deg, #7418e5, #d900fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* arrow */
.arrow {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 24px;
  margin-right: 2.9px;
  border-radius: 9999px;
  background-color: #ffffff;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(-45deg);
  transform-origin: 50% 1px;
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 80px 12px;
  text-align: center;
}
.footer .contents_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navi_wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
.navi_wrapper img {
  width: 160px;
}
.navi {
  display: flex;
  font-size: 14px;
  gap: 32px;
}
.navi .ttl:hover {
  background-image: -webkit-linear-gradient(180deg, #7418e5, #d900fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sns {
  display: flex;
  gap: 24px;
}
.sns img {
  width: 24px;
  display: flex;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝SP＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 480px) {
  .main {
    max-width: 100vw;
  }
.title_wrapper {
    /* width: 100%; */
}
  /* HEADER */
  .header {
    position: fixed;
  }
  .header-fixed {
    backdrop-filter: unset;
    animation: none;
  }
  .header-fixed h1 {
    display: none;
}
  .header ul {
    flex-direction: column;
    font-size: 32px;
    gap: 24px;
    align-items: flex-start;
    padding: 0 24px;
}
  .nav {
    position: fixed;
    right: -100vw; /* 右から出てくる */
    top: 0;
    width: 100vw; /* 画面いっぱい */
    height: 100vh;
    padding-top: 160px;
    background-color: #02021C;
    transition: all 0.6s;
    z-index: 999999;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px; /* クリックしやすい幅 */
    height: 96px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 9999999;
      backdrop-filter: brightness(0.6);

  }
  .hamburger::after {
    content: "MENU";
    font-family: "gauprivate", "Noto Sans JP", sans-serif;
    text-box: trim-both cap alphabetic; /*テキストボックス上下余白消す*/
    font-size: 12px;
    position: relative;
    top: 60px;
    display: block;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg); /* テキストを縦に配置 */
    transition: all 0.6s;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
  }
  .nav_item a span {
    font-size: 14px;
    margin-top: -8px;
    display: block;
    background: linear-gradient(to right, #d900fd, #7418e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .nav_item a {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.6s;
    left: 50%; /* 水平方向の中央寄せ */
    transform: translate(-50%, -50%); /* 中央に配置 */
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
    position: absolute;
  }
  .nav-open .black_bg {
    opacity: 1;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 20px;
  }
  .nav-open .spmenu_logo {
    display: block;
    position: relative;
    top: -144px;
    left: 24px;
  }
  .nav-open .hamburger::after {
    content: "CLOSE";
  }
  /* HEADER */

  .mv {
    background-image: none;
  }
  .mv::after {
    background-image: url(./img/mv_bg_sp.jpg);
  }
  .mvparts-t {
    top: -136px;
    right: 20%;
  }
  .mv_catchwrapper {
    gap: 24px;
    top: 180px;
    left: 24px;
  }
  .mv_catchwrapper br {
    display: block;
  }
  .mv_catchwrapper img {
    width: 48%;
  }
  .mv_wrapper {
    padding: 0 0 0 32px;
  }
  .mv_img {
    display: none;
  }
  .mv_img_sp {
    display: block;
    height: auto;
    width: 100%;
    position: relative;
    top: 35%;
  }
  .mvparts-l {
    top: 40%;
    width: 40px;
  }
  .mvparts-r {
    bottom: 115px;
    right: 32px;
    width: 32px;
  }
  /* 縁のみ四角 */
.square-line-w001 {
  width: 240px;
  height: 88px;
  border: 2px solid #ffffff;
  z-index: 99999;
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}
.square-line-w002 {
  width: 133px;
  height: 172px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  z-index: 99999;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
}
.square-line-g001 {
  width: 125px;
  height: 97px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-image: linear-gradient(to top, #d900fd, #7418e5) 1; /* グラデ */
  z-index: 99999;
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
}
.square-line-g002 {
  width: 80px;
  height: 316px;
  border: 2px solid;
  border-image: linear-gradient(to top, #d900fd, #7418e5) 1; /* グラデ */
  z-index: 99999;
  position: absolute;
  top: 7.5rem;
  right: -2.5rem;
}
/* 縁のみ四角 */

/* 背景もやもや */
.gradation{
  overflow: initial;
}
.item {
  /* 回転位置の設定 */
  position: absolute;
  top: 30%;
  left: 10%;
  width: 100%;
  height: 100%;
}

.item-01 {
  z-index: -3; /* 円の重ね順の設定 */
  top: 15%;
  left: 55%;
  animation-duration: 15s; /* ○秒かけて回転 */
}
.item-02 {
  z-index: -2;
  top: 15%;
  left: 65%;
  animation-duration: 50s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-03 {
  z-index: -4;
  top: 15%;
  left: 50%;
  animation-duration: 18s;/* ○秒かけて回転 */
}
.item-04 {
  z-index: -1;
  top: 15%;
  left: 70%;
  animation-duration: 12s;/* ○秒かけて回転 */
}

.item-05 {
  z-index: -3;
  top: 95%;
  left: 50%;
  animation-duration: 40s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-06 {
  z-index: -2;
  top: 95%;
  left: 60%;
  animation-duration: 12s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
.item-07 {
  z-index: -4;
  top: 95%;
  left: 65%;
  animation-duration: 28s;/* ○秒かけて回転 */
  animation-direction: reverse; /* 回転アニメーション反転 */
}
/* 円の設定 */
.round-01 {
  z-index: 3;
  top: 0%;
  filter: blur(16px); /* ぼかし具合 */
  animation: flash 5s linear infinite; /* ○秒かけて点滅 */
}
.round-02 {
  top: -20%;
  filter: blur(32px);
  animation: flash 8s linear infinite;/* ○秒かけて点滅 */
}
.round-03{
  top: 10%;
  left: 20%;
  width: 8vw;
  height: 8vw;
  filter: blur(8px);
  animation: flash 3s linear infinite;/* ○秒かけて点滅 */
}
.round-04{
  top: -20%;
  left: -10%;
  filter: blur(24px);
  animation: flash 10s linear infinite;/* ○秒かけて点滅 */
}
.round-05 {
  z-index: 3;
  top: -10%;
  filter: blur(20px); /* ぼかし具合 */
  animation: flash 5s linear infinite; /* ○秒かけて点滅 */
}
.round-06 {
  top: -20%;
  filter: blur(24px);
  animation: flash 8s linear infinite;/* ○秒かけて点滅 */
}
.round-07{
  top: -10%;
  left: 50%;
  width: 8vw;
  height: 8vw;
  filter: blur(8px);
  animation: flash 3s linear infinite;/* ○秒かけて点滅 */
}
/* 回転アニメーション */
@keyframes rotate-item {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 背景もやもや */

  /* 四角ふわふわ */
.circles li {
  width: 20px;
  height: 20px;
  bottom: -150px;
  animation: animate 25s linear infinite;

}
.circles img {
  width: 65%;
  height: auto;
}
@keyframes animate {
  0% {
    transform: translateY(-1000px) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(0px) rotate(720deg);
    opacity: 0.8;
    border-radius: 50%;
  }
  }
/* 四角ふわふわ */

  .loopSlide {
    height: 56px;
    bottom: -28px;
  }
  .about {
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
  }
  .about::after {
    font-size: 80px;
    top: 40%;
  }
  h3 {
    font-size: 32px;
    letter-spacing: 0.2em;
  }
  .ttl span {
  font-size: 32px;
}
.about ul {
  justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 calc(50% - 50vw);
    gap: 14px;
}
  .about ul li {
    width: 48%;
    margin: 5% 0;
    position: relative;
    text-align: center;
}
.about ul li img {
  width: 100%;
}
.about ul li:nth-child(3n+2){
   top: 40px; /* Hey!のボックスを上から50pxずらす */
}
.about ul li:nth-child(3n+3){
   top: -40px; /* Nice!のボックス上から100pxずらす */
}


/* slider02 lineup */
  .lineup li {
    /* text-align: center; */
  }
  /* スライドのサイズ調整 */
.splide__slide img {
  height: auto;
  width: calc(100% - 16px);
}
.splide__pagination {
  display: flex;
  gap: 20px;
}

  .section01 {
    height: auto;
    padding: 80px 0;
    overflow: initial;
    background-image: url("./img/bg_01.jpg");
}
.container section {
  height: auto;
  padding: 80px 0;
}
  .featurebox {
    flex-direction: column;
    gap: 40px;
    width: 100vw;
    padding: 0 40px;
    margin: auto;
  }
  .features img {
    width: 100%;
  }
  .features_head {
    margin:80px 0 56px;
  }
  .features_head p {
    padding: 0 40px;
    width: 100vw;
  }

  /* パララックス */
  .layer .panel {
  height: auto;
  padding: 5rem 0;
}
.layer .panel:first-of-type{
  padding-top: 0;
}
  /* パララックス */

  /* 四角あしらい */
.square-1 {
  opacity: 0.3;
  top: -3rem;
}
.square-2_wrapper {
  position: relative;
}
.square-2 { /* 画像左下 */
  opacity: 0.3;
  width: 163px;
  height: 184px;
  top: 12.5rem;
  right: 12.3rem;
}
.square-3 {
  opacity: 0.3;
  width: 120px;
  height: 47px;
  top: 16.8rem;
  right: -2.5rem;
}
.square-4 {
  opacity: 0.3;
  width: 266px;
  height: 244px;
  bottom: -2.5rem;
  right: -2.5rem;
}

.square-5 { /* 右上 */
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0.3;
  width: 266px;
  height: 2.5rem;
  top: 0;
  right: -2.5rem;
}
.square-6 { /* 左下 */
  opacity: 0.3;
  width: 298px;
  height: 91px;
  top: 42.8rem;
  left: -2.5rem;
}
.square-7 { /* 画像右下 */
  opacity: 0.3;
  width: 149px;
  height: 184px;
  bottom: -2.3rem;
  left: 13.18rem;
}

.square-8 { /* 右上 */
  display: none;
}
.square-9 { /* 右下 */
  opacity: 0.3;
  width: 266px;
  height: 238px;
  bottom: -11.25rem;
  left: 1rem;
}
.square-10 { /* 画像右上 */
  opacity: 0.3;
  width: 236px;
  height: 184px;
  top: -2.87rem;
  right: -1rem;
}
.square-11 { /* 左上 */
  opacity: 0.3;
  width: 266px;
  height: 149px;
  top: 0;
  left: 1rem;
  z-index: -1;
}
.square-12 { /* 右下 */
  opacity: 0.3;
  width: 274px;
  height: 99px;
  top: 44rem;
  left: 7.87rem;
}
.square-13 { /* 画像右下 */
  opacity: 0.3;
  width: 144px;
  height: 40px;
  top: 15.8rem;
  left: 13.5rem;
}
/* 四角あしらい */


  .message::after {
    font-size: 114px;
    left: 57px;
}
.message_wrapper {
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
}
.message_contentwrapper {
    flex-direction: column;
}
.message img {
    width: 100%;
}

.cta {
  background-image: url(./img/bg_cta_sp.jpg);!important
    padding: 56px 0;
}
.cta_contentswrapper {
    max-width: 280px;
    gap: 24px;
}
.cta .btn {
    font-size: 16px;
    padding: 16px 0;
}
.material-symbols-outlined {
    right: 8px;
    font-size: 24px;
}
/* footer */
.footer {
    flex-direction: column;
    gap: 32px;
    padding: 56px 40px 12px;
}
.footer .contents_wrapper {
    flex-direction: column;
    gap: 56px;
}
.footer .navi {
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
}
.footer .ttl a {
  font-size: 18px;
}
.navi_wrapper {
    flex-direction: column;
    gap: 56px;
}
.copyright {
  font-size: 10px;
}
}
