@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@200..900&display=swap');

.hero {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url(../images/bg.png);
  background-size: cover;
}

body {
  margin: auto;
}

.mein {
  /* color: #585E62;
  font-family: Arial;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; */
}

h1 {
  padding: 10px;
  margin: 20px 30px 5px 30px;
  font-size: 40px;
}

h2 {
  padding: 10px;
  margin: 0px 30px;
  font-size: 25px;
}

a {
  color: #4466FF;
  text-decoration: none;
}

p {
  margin: 0;
}

:root {
  --font-default: "Noto Serif JP", serif;
  --font-unicase: "Cormorant Unicase", serif;
}

/*ーーーーーーーーーーーーーーーーー
 ローディング
ーーーーーーーーーーーーーーーーー */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
  /* 修正: 一番下に */
  background: #222222;
  text-align: center;
}

.rotate-image-box {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0px;
  transform: translate(-50%, -50%);
  width: clamp(15rem,15%, 24rem);
}

.rotate-image {
  animation: rotate 20s linear infinite;
  width: 100%;
  filter: invert(100%);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*ーーーーーーーーーーーーーーーーー
 回転
ーーーーーーーーーーーーーーーーー */

.container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 20vh;
  left: 20vw;
}

.rotating-image {
  position: absolute;
  width: 95vw;
  height: 95vw;
  top: 28%;
  left: 32.5%;
  transform-origin: center;
}

@media (max-width: 600px) {
  .rotating-image {
    position: absolute;
    width: 150vw;
    height: 150vw;
    top: 16vh;
    left: 4%;
  }
}

.image1 {
  animation: rotate-clockwise-fast 30s linear infinite;
  background: url(../images/deco-1.svg);
  margin-left: -50%;
  margin-top: -50%;
}

.image2 {
  animation: rotate-counter-slow 120s linear infinite;
  background: url(../images/deco-2.svg);
  margin-left: -50%;
  margin-top: -50%;
}

.image3 {
  animation: rotate-clockwise-medium 100s linear infinite;
  background: url(../images/deco-3.svg);
  margin-left: -50%;
  margin-top: -50%;
}

.image4 {
  animation: rotate-counter-fast 50s linear infinite;
  background: url(../images/deco-4.svg);
  margin-left: -50%;
  margin-top: -50%;
}

.image5 {
  animation: rotate-clockwise-very-slow 10s linear infinite;
  background: url(../images/deco-5.svg);
  margin-left: -50%;
  margin-top: -50%;
}

.image6 {
  animation: rotate-counter-medium 60s linear infinite;
  background: linear-gradient(45deg, #667eea, #764ba2);
  margin-left: -50%;
  margin-top: -50%;
}

@keyframes rotate-clockwise-fast {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotate-clockwise-medium {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-fast {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotate-clockwise-very-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-medium {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/*ーーーーーーーーーーーーーーーーー
 バックグラウンドノイズ
ーーーーーーーーーーーーーーーーー */

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.png);
  background-size: 100% 100%;
  animation: gradientShift 15s ease infinite;
  z-index: -3;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -3;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*ーーーーーーーーーーーーーーーーー
 メインビジュアル
ーーーーーーーーーーーーーーーーー */

.top-mv {
  display: flex;
  gap: 3rem;
  row-gap: 1vh;
  justify-content: center;
  flex-wrap: wrap;
  height: 95vh;
  margin-block: 5vh;
  align-items: center;
}

@media (max-width: 768px) {
  .top-mv {
    gap: 10vw;
    row-gap: 2vw;
    height: 100vh;
    margin-block: 0;
  }
}

/*ーーーーーーーーーーーーーーーーー
 画像のグリッチ
ーーーーーーーーーーーーーーーーー */
.img-b,
.img-w {
  z-index: 10;
  display: flex;
}

.filter {
  display: none;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.imgWrap-b {
  width: 350px;
  height: auto;
  position: relative;
  overflow: hidden;

  img {
    width: 100%;
    height: auto;
  }

  .red {
    filter: url(#alphaRed);
    mix-blend-mode: lighten;
  }

  .green {
    filter: url(#alphaGreen);
    mix-blend-mode: lighten;
  }

  .blue {
    filter: url(#alphaBlue);
    mix-blend-mode: lighten;
  }

  .text {
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 2px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .3s;

    span {
      position: relative;
      z-index: 1;
    }
  }

  --time: 0.6s;

  .red {
    animation-name: imgGlitch-b;
    animation-duration: var(--time);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .text {
    opacity: 1;

    &::before {
      transform: scale(1, 1) translate(-50%, -50%);
    }
  }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .imgWrap-b {
    .red {
      animation-name: imgGlitch-b2;
    }
  }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgWrap-b {
    .red {
      animation-name: imgGlitch-b3;
    }
  }
}

@media screen and (max-width: 480px) {
  .imgWrap-b {
    .red {
      animation-name: imgGlitch-b4;
    }
  }
}


.imgWrap-w {
  width: 350px;
  height: auto;
  position: relative;
  overflow: hidden;

  img {
    width: 100%;
    height: auto;
  }

  .red {
    filter: url(#alphaRed);
    mix-blend-mode: lighten;
  }

  .green {
    filter: url(#alphaGreen);
    mix-blend-mode: lighten;
  }

  .blue {
    filter: url(#alphaBlue);
    mix-blend-mode: lighten;
  }

  .text {
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 2px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .3s;

    span {
      position: relative;
      z-index: 1;
    }
  }

  --time: 0.6s;

  .red {
    animation-name: imgGlitch-w;
    animation-duration: var(--time);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .imgWrap-w {
    .red {
      animation-name: imgGlitch-w2;
    }
  }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .imgWrap-w {
    .red {
      animation-name: imgGlitch-w3;
    }
  }
}

@media screen and (max-width: 480px) {
  .imgWrap-w {
    .red {
      animation-name: imgGlitch-w4;
    }
  }
}





/* ===== 改善されたレスポンシブ@keyframes CSS ===== */

/* ベース（デスクトップ）- 500px base */

@keyframes imgGlitch-b {
  0% {
    clip-path: path("M287,512.75v-3.5h-35v-1.75h35v-12.25h63v-24.5h-122.5v-8.75h122.5v-21h-52.5v-10.5h52.5v-31.5h-21v-5.25h21v-26.25h-42v-19.25h42v-120.75h-71.75v-7h71.75v-68.25h-45.5v-12.25h45.5v-29.75h-28v-7h28v-5.25h-42v-12.25h-33.25v-7h54.25v7h21v-42h-26.25v7h-49v-7h17.5v-14h57.75v-10.5h-154v-8.75h154V0H70v15.75H0v70h77v17.5H0v49h84v8.75H0v101.5h106.75v17.5h-26.25v8.75H0v134.75h73.5v8.75h85.75v19.25H50.75v-15.75H0v42h113.75v12.25H0v22.75h91v12.25h259v-12.25h-63ZM40.25,19.25h89.25v10.5H40.25v-10.5ZM40.25,68.25v-12.25h68.25v12.25H40.25ZM70,224v-12.25H26.25v-14h82.25v3.5h15.75v22.75h-54.25ZM19.25,367.5h54.25v12.25H19.25v-12.25ZM113.75,418.25h-45.5v-10.5h45.5v10.5ZM143.5,323.75H47.25v-10.5h29.75v-15.75h57.75v15.75h8.75v10.5ZM323.75,393.75v1.75h-61.25v-1.75h61.25ZM232.75,386.75v-12.25h45.5v12.25h-45.5ZM227.5,175h94.5v15.75h-94.5v-15.75ZM210,280h94.5v7h35v10.5h-99.75v-10.5h-29.75v-7ZM227.5,512.75h-47.25v-17.5h47.25v17.5Z");
  }

  10% {
    clip-path: path("M287,519.75v-10.5h-112v-12.25h115.5v8.75h59.5v-45.5h-29.75v-7h29.75v-85.75h-63v-5.25h63v-24.5h-78.75v-10.5h78.75v-45.5h-45.5v15.75h-91v-3.5h24.5v-12.25h43.75v-14h36.75v-24.5h-59.5v-14h91v-68.25h-56v-12.25h56v-45.5h-31.5v1.75h-59.5v-5.25h43.75v-7h47.25v-29.75h-17.5v-8.75h17.5V0H0v26.25h84v10.5h-7v12.25h-40.25v-12.25H0v22.75h96.25v7H0v57.75h45.5v3.5h56v17.5H24.5v-12.25H0v106.75h89.25v3.5H0v52.5h17.5v-10.5h85.75v12.25h-47.25v7H0v33.25h50.75v5.25H0v68.25h43.75v12.25H0v43.75h143.5v17.5H0v40.25h350v-5.25h-63ZM259,411.25h17.5v7h43.75v22.75h-50.75v-17.5h-10.5v-12.25ZM238,463.75h98v12.25h-98v-12.25ZM329,66.5h-52.5v-3.5h52.5v3.5ZM245,17.5h73.5v5.25h21v14h-68.25v-14h-26.25v-5.25ZM227.5,173.25h54.25v10.5h-54.25v-10.5ZM84,94.5h-38.5v-5.25h38.5v5.25ZM103.25,505.75H33.25v-8.75h70v8.75ZM63,14V5.25h77v8.75H63ZM59.5,224v-12.25h99.75v12.25H59.5ZM24.5,358.75v-8.75h64.75v8.75H24.5ZM141.75,383.25h-56v-5.25h56v5.25ZM131.25,353.5v-15.75h-21v-10.5h42v5.25h35v21h-56Z");
  }

  25% {
    clip-path: path("M262.5,504v-14h-54.25v-14h82.25v12.25h59.5v-61.25h-98v-22.75h98v-17.5h-28v-7h28v-52.5h-133v-28h133v-12.25h-38.5v7h-161v-10.5h147v-8.75h52.5v-96.25h-28v-10.5h28v-38.5h-47.25v-14h-45.5v-8.75h91v1.75h1.75v-42h-98v-19.25h98v-12.25h-92.75v-1.75h92.75V0H0v29.75h42v-5.25h42v5.25h-21v5.25H0v28h42v21h54.25v5.25H17.5v-5.25H0v22.75h66.5v8.75h43.75v7h-59.5v-3.5H0v22.75h33.25v8.75H0v50.75h17.5v-8.75h82.25v8.75H29.75v12.25H0v56h75.25v19.25H0v59.5h26.25v-3.5h73.5v3.5h-57.75v19.25H0v91h91v3.5H0v28h70v19.25h85.75v5.25H52.5v-5.25H0v15.75h350v-21h-87.5ZM288.75,89.25h50.75v7h-50.75v-7ZM257.25,204.75h64.75v3.5h-64.75v-3.5ZM283.5,234.5v-7h35v12.25h-5.25v8.75h-80.5v-14h50.75ZM182,15.75h45.5V7h64.75v10.5h-45.5v7h-64.75v-8.75ZM84,63h-31.5v-7h31.5v7ZM89.25,12.25H17.5V3.5h71.75v8.75ZM99.75,159.25h28v8.75h-28v-8.75ZM42,241.5v-7h63v7h-63ZM78.75,313.25v-14h54.25v14h-54.25ZM141.75,409.5h-47.25v3.5H19.25v-5.25h33.25v-8.75h89.25v10.5ZM196,372.75h61.25v7h-61.25v-7Z");
  }

  35% {
    clip-path: path("M246.75,504v-8.75h103.25v-42h-119v-10.5h-14v-12.25h45.5v8.75h87.5v-59.5h-61.25v-14h61.25v-40.25h-42v-12.25h42v-22.75h-110.25v-8.75h110.25v-26.25h-42v-5.25h42v-26.25h-47.25v-1.75h47.25v-28h-61.25v-7h61.25v-40.25h-47.25v-5.25h47.25v-57.75h-59.5v-3.5h59.5v-26.25h-38.5v-14h38.5v-7h-78.75v-3.5h78.75V0H0v15.75h75.25v17.5H0v22.75h92.75v10.5H0v21h38.5v-10.5h63v15.75h-28v5.25H0v61.25h52.5v12.25H0v70h112v8.75H0v143.5h80.5v15.75H0v66.5h77v-15.75h75.25v21h-15.75v8.75H0v29.75h61.25v5.25h288.75v-21h-103.25ZM302.75,409.5h36.75v7h-36.75v-7ZM255.5,346.5v8.75h-15.75v-8.75h15.75ZM280,168h-33.25v-8.75h33.25v8.75ZM339.5,110.25v7h-77v-7h77ZM231,7h54.25v3.5h-54.25v-3.5ZM103.25,21h33.25v3.5h-33.25v-3.5ZM110.25,201.25h-38.5v10.5H14v-14h28v-3.5h68.25v7ZM115.5,320.25h-49v-12.25H19.25v-10.5h75.25v5.25h21v17.5ZM122.5,159.25h-22.75v-1.75h22.75v1.75ZM159.25,383.25h-33.25v-10.5h33.25v10.5ZM217,514.5h-31.5v-5.25h31.5v5.25Z");
  }

  50% {
    clip-path: path("M287,519.75v-10.5h-112v-12.25h115.5v8.75h59.5v-45.5h-29.75v-7h29.75v-85.75h-63v-5.25h63v-24.5h-78.75v-10.5h78.75v-45.5h-45.5v15.75h-91v-3.5h24.5v-12.25h43.75v-14h36.75v-24.5h-59.5v-14h91v-68.25h-56v-12.25h56v-45.5h-31.5v1.75h-59.5v-5.25h43.75v-7h47.25v-29.75h-17.5v-8.75h17.5V0H0v26.25h84v10.5h-7v12.25h-40.25v-12.25H0v22.75h96.25v7H0v57.75h45.5v3.5h56v17.5H24.5v-12.25H0v106.75h89.25v3.5H0v52.5h17.5v-10.5h85.75v12.25h-47.25v7H0v33.25h50.75v5.25H0v68.25h43.75v12.25H0v43.75h143.5v17.5H0v40.25h350v-5.25h-63ZM259,411.25h17.5v7h43.75v22.75h-50.75v-17.5h-10.5v-12.25ZM238,463.75h98v12.25h-98v-12.25ZM329,66.5h-52.5v-3.5h52.5v3.5ZM245,17.5h73.5v5.25h21v14h-68.25v-14h-26.25v-5.25ZM227.5,173.25h54.25v10.5h-54.25v-10.5ZM84,94.5h-38.5v-5.25h38.5v5.25ZM103.25,505.75H33.25v-8.75h70v8.75ZM63,14V5.25h77v8.75H63ZM59.5,224v-12.25h99.75v12.25H59.5ZM24.5,358.75v-8.75h64.75v8.75H24.5ZM141.75,383.25h-56v-5.25h56v5.25ZM131.25,353.5v-15.75h-21v-10.5h42v5.25h35v21h-56Z");
  }

  60% {
    clip-path: path("M246.75,504v-8.75h103.25v-42h-119v-10.5h-14v-12.25h45.5v8.75h87.5v-59.5h-61.25v-14h61.25v-40.25h-42v-12.25h42v-22.75h-110.25v-8.75h110.25v-26.25h-42v-5.25h42v-26.25h-47.25v-1.75h47.25v-28h-61.25v-7h61.25v-40.25h-47.25v-5.25h47.25v-57.75h-59.5v-3.5h59.5v-26.25h-38.5v-14h38.5v-7h-78.75v-3.5h78.75V0H0v15.75h75.25v17.5H0v22.75h92.75v10.5H0v21h38.5v-10.5h63v15.75h-28v5.25H0v61.25h52.5v12.25H0v70h112v8.75H0v143.5h80.5v15.75H0v66.5h77v-15.75h75.25v21h-15.75v8.75H0v29.75h61.25v5.25h288.75v-21h-103.25ZM302.75,409.5h36.75v7h-36.75v-7ZM255.5,346.5v8.75h-15.75v-8.75h15.75ZM280,168h-33.25v-8.75h33.25v8.75ZM339.5,110.25v7h-77v-7h77ZM231,7h54.25v3.5h-54.25v-3.5ZM103.25,21h33.25v3.5h-33.25v-3.5ZM110.25,201.25h-38.5v10.5H14v-14h28v-3.5h68.25v7ZM115.5,320.25h-49v-12.25H19.25v-10.5h75.25v5.25h21v17.5ZM122.5,159.25h-22.75v-1.75h22.75v1.75ZM159.25,383.25h-33.25v-10.5h33.25v10.5ZM217,514.5h-31.5v-5.25h31.5v5.25Z");
  }

  75% {
    clip-path: path("M287,512.75v-3.5h-35v-1.75h35v-12.25h63v-24.5h-122.5v-8.75h122.5v-21h-52.5v-10.5h52.5v-31.5h-21v-5.25h21v-26.25h-42v-19.25h42v-120.75h-71.75v-7h71.75v-68.25h-45.5v-12.25h45.5v-29.75h-28v-7h28v-5.25h-42v-12.25h-33.25v-7h54.25v7h21v-42h-26.25v7h-49v-7h17.5v-14h57.75v-10.5h-154v-8.75h154V0H70v15.75H0v70h77v17.5H0v49h84v8.75H0v101.5h106.75v17.5h-26.25v8.75H0v134.75h73.5v8.75h85.75v19.25H50.75v-15.75H0v42h113.75v12.25H0v22.75h91v12.25h259v-12.25h-63ZM40.25,19.25h89.25v10.5H40.25v-10.5ZM40.25,68.25v-12.25h68.25v12.25H40.25ZM70,224v-12.25H26.25v-14h82.25v3.5h15.75v22.75h-54.25ZM19.25,367.5h54.25v12.25H19.25v-12.25ZM113.75,418.25h-45.5v-10.5h45.5v10.5ZM143.5,323.75H47.25v-10.5h29.75v-15.75h57.75v15.75h8.75v10.5ZM323.75,393.75v1.75h-61.25v-1.75h61.25ZM232.75,386.75v-12.25h45.5v12.25h-45.5ZM227.5,175h94.5v15.75h-94.5v-15.75ZM210,280h94.5v7h35v10.5h-99.75v-10.5h-29.75v-7ZM227.5,512.75h-47.25v-17.5h47.25v17.5Z");
  }

  100% {
    clip-path: path("M262.5,504v-14h-54.25v-14h82.25v12.25h59.5v-61.25h-98v-22.75h98v-17.5h-28v-7h28v-52.5h-133v-28h133v-12.25h-38.5v7h-161v-10.5h147v-8.75h52.5v-96.25h-28v-10.5h28v-38.5h-47.25v-14h-45.5v-8.75h91v1.75h1.75v-42h-98v-19.25h98v-12.25h-92.75v-1.75h92.75V0H0v29.75h42v-5.25h42v5.25h-21v5.25H0v28h42v21h54.25v5.25H17.5v-5.25H0v22.75h66.5v8.75h43.75v7h-59.5v-3.5H0v22.75h33.25v8.75H0v50.75h17.5v-8.75h82.25v8.75H29.75v12.25H0v56h75.25v19.25H0v59.5h26.25v-3.5h73.5v3.5h-57.75v19.25H0v91h91v3.5H0v28h70v19.25h85.75v5.25H52.5v-5.25H0v15.75h350v-21h-87.5ZM288.75,89.25h50.75v7h-50.75v-7ZM257.25,204.75h64.75v3.5h-64.75v-3.5ZM283.5,234.5v-7h35v12.25h-5.25v8.75h-80.5v-14h50.75ZM182,15.75h45.5V7h64.75v10.5h-45.5v7h-64.75v-8.75ZM84,63h-31.5v-7h31.5v7ZM89.25,12.25H17.5V3.5h71.75v8.75ZM99.75,159.25h28v8.75h-28v-8.75ZM42,241.5v-7h63v7h-63ZM78.75,313.25v-14h54.25v14h-54.25ZM141.75,409.5h-47.25v3.5H19.25v-5.25h33.25v-8.75h89.25v10.5ZM196,372.75h61.25v7h-61.25v-7Z");
  }
}

@keyframes imgGlitch-w {
  0% {
    clip-path: path("M236.25,510.99v-12.25h113.75v-26.25h-71.75v-15.75h-26.25v-15.75h43.75v14h54.25v-94.5h-21v-8.75h21v-42h-40.25v-10.5h40.25v-33.25h-77v-14h77v-38.5h-71.75v-5.25h71.75v-35h-59.5v-5.25h-35v-12.25h94.5v-52.5h-14v3.5h-52.5v-7h22.75v-5.25h43.75v-52.5h-134.75v-14h-17.5v-8.75h96.25v3.5h56V0h-12.25v3.5h-42v8.75h-35V3.5h5.25V0H0v7h73.5v8.75H0v7h127.75v14H0v26.25h68.25v1.75H0v64.75h42v-7h63v14h-19.25v8.75H0v73.5h12.25v-10.5h70v10.5h-28v5.25H0v66.5h73.5v5.25h28v12.25H10.5v-8.75H0v61.25h40.25v7H0v24.5h122.5v14H0v15.75h61.25v-7h35v14h-17.5v12.25h54.25v12.25H15.75v-12.25H0v52.5h78.75v-7h70v7h10.5v10.5H0v21h33.25v-7h56v7h260.75v-14h-113.75ZM322,241.5h15.75v7h-15.75v-7ZM266,75.25h78.75v3.5h-78.75v-3.5ZM63,89.25H19.25v-5.25h43.75v5.25ZM127.75,264.22H43.75v-10.48h84v10.48ZM337.75,432.24h-33.25v-7h33.25v7ZM339.5,388.49v3.5h-78.75v-3.5h78.75ZM260.75,316.74h24.5v3.5h-24.5v-3.5ZM220.5,486.49h-40.25v-7h40.25v7ZM220.5,349.99h78.75v3.5h-78.75v-3.5Z");
  }

  10% {
    clip-path: path("M253.75,495.24v-14h96.25v-5.25h-49v-12.25h49v-150.5h-106.75v-15.75h106.75v-68.25h-33.25v7h29.75v12.25h-54.25v7h-52.5v-7h31.5v-10.5h-43.75v-8.75h78.75v-22.75h28v-10.5h15.75v-33.25h-110.25v-5.25h110.25v-71.75h-106.75v-14h106.75v-15.75h-10.5v5.25h-57.75v-15.75h24.5v-14h43.75v-10.5h-126v-5.25h126V0H0v42h75.25v3.5h12.25v15.75H19.25v-12.25H0v63h78.75v14H0v31.5h17.5v-17.5h59.5v17.5h-14v10.5H0v94.5h98v12.25H0v5.25h84v3.5H0v24.5h136.5v8.75H0v12.25h45.5v22.75H0v24.5h19.25v1.75H0v15.75h78.75v5.25h22.75v22.75H33.25v-14H0v45.5h175v10.5H0v35h84v17.5H0v8.75h350v-29.75h-96.25ZM292.25,126h26.25v3.5h-26.25v-3.5ZM84,15.75h-42v-7h42v7ZM115.5,201.25H35v-19.25h80.5v19.25ZM152.25,377.99h-47.25v-3.5h47.25v3.5ZM346.5,432.24h-33.25v-7h33.25v7ZM301,356.99h38.5v5.25h-38.5v-5.25ZM262.5,383.24h61.25v10.5h-61.25v-10.5ZM217,262.5h89.25v1.75h33.25v10.5h-57.75v-7h-64.75v-5.25ZM187.25,503.99h-59.5v-8.75h59.5v8.75ZM187.25,432.24h73.5v15.75h-73.5v-15.75Z");
  }

  25% {
    clip-path: path("M255.5,512.74v-5.25h-40.25v-28h80.5v17.5h54.25v-17.5h-8.75v-19.25h8.75v-33.25h-64.75v-3.5h3.5v-8.75h-22.75v-15.75h35v12.25h28v12.25h21v-33.25h-84v-12.25h84v-33.25h-28v-7h28v-22.75h-43.75v-12.25h43.75v-35h-78.75v-21h78.75v-14h-38.5v-14h38.5v-52.5h-94.5v-7h66.5v-12.25h28v-63h-42v-12.25h-36.75v-7h78.75V10.5h-108.5V0H0v19.25h50.75v-8.75h78.75v8.75h-57.75v10.5H0v12.25h14v8.75H0v56h71.75v17.5H0v14h45.5v17.5H0v50.75h38.5v5.25H0v50.75h80.5v12.25H0v63h50.75v3.5H0v7h38.5v15.75H0v85.75h161v8.75H0v38.5h117.25v7H0v21h350v-12.25h-94.5ZM273,175h38.5v3.5h17.5v10.5h-28v-7h-28v-7ZM271.25,29.75h70v12.25h-70v-12.25ZM38.5,64.75v-3.5h59.5v3.5h-59.5ZM56,344.74h28v7h-28v-7ZM155.75,423.49H56v-7H10.5v-21h66.5v10.5h78.75v17.5ZM155.75,327.24h-43.75v-12.25h43.75v12.25Z");
  }

  35% {
    clip-path: path("M283.5,517.99v-12.25h66.5v-7h-120.75v-7h120.75v-61.25h-92.75v-17.5h92.75v-7h-35v-7h35v-57.75h-99.75v-7h99.75v-82.25h-54.25v-10.5h54.25v-52.5h-106.75v-8.75h59.5v-8.75h47.25v-42h-80.5v-10.5h80.5v-59.5h-99.75v-7h99.75v-19.25h-71.75V14h71.75V0h-71.75v7h-134.75V0H0v14h117.25v3.5H0v14.87h95.38v12.25H0v79.62h77v10.5h7v19.25H14v-17.5H0v57.75h31.5v3.5H0v28h54.25v14H0v19.25h204.75v7H0v71.75h129.5v24.5H42v12.25H0v71.75h84v3.5H0v14h169.75v3.5H0v38.5h36.75v12.25H0v7h350v-7h-66.5ZM288.75,304.49h33.25v3.5h-33.25v-3.5ZM269.5,316.74h38.5v7h-38.5v-7ZM61.25,70H21v-1.75h40.25v1.75ZM70,180.25h31.5v8.75h-31.5v-8.75ZM159.25,255.5h-42v-8.75h-40.25v-5.25h56v5.25h26.25v8.75ZM108.5,495.24h-33.25v7h-29.75v-14h63v7Z");
  }

  50% {
    clip-path: path("M255.5,512.74v-5.25h-40.25v-28h80.5v17.5h54.25v-17.5h-8.75v-19.25h8.75v-33.25h-64.75v-3.5h3.5v-8.75h-22.75v-15.75h35v12.25h28v12.25h21v-33.25h-84v-12.25h84v-33.25h-28v-7h28v-22.75h-43.75v-12.25h43.75v-35h-78.75v-21h78.75v-14h-38.5v-14h38.5v-52.5h-94.5v-7h66.5v-12.25h28v-63h-42v-12.25h-36.75v-7h78.75V10.5h-108.5V0H0v19.25h50.75v-8.75h78.75v8.75h-57.75v10.5H0v12.25h14v8.75H0v56h71.75v17.5H0v14h45.5v17.5H0v50.75h38.5v5.25H0v50.75h80.5v12.25H0v63h50.75v3.5H0v7h38.5v15.75H0v85.75h161v8.75H0v38.5h117.25v7H0v21h350v-12.25h-94.5ZM273,175h38.5v3.5h17.5v10.5h-28v-7h-28v-7ZM271.25,29.75h70v12.25h-70v-12.25ZM38.5,64.75v-3.5h59.5v3.5h-59.5ZM56,344.74h28v7h-28v-7ZM155.75,423.49H56v-7H10.5v-21h66.5v10.5h78.75v17.5ZM155.75,327.24h-43.75v-12.25h43.75v12.25Z");
  }

  60% {
    clip-path: path("M253.75,495.24v-14h96.25v-5.25h-49v-12.25h49v-150.5h-106.75v-15.75h106.75v-68.25h-33.25v7h29.75v12.25h-54.25v7h-52.5v-7h31.5v-10.5h-43.75v-8.75h78.75v-22.75h28v-10.5h15.75v-33.25h-110.25v-5.25h110.25v-71.75h-106.75v-14h106.75v-15.75h-10.5v5.25h-57.75v-15.75h24.5v-14h43.75v-10.5h-126v-5.25h126V0H0v42h75.25v3.5h12.25v15.75H19.25v-12.25H0v63h78.75v14H0v31.5h17.5v-17.5h59.5v17.5h-14v10.5H0v94.5h98v12.25H0v5.25h84v3.5H0v24.5h136.5v8.75H0v12.25h45.5v22.75H0v24.5h19.25v1.75H0v15.75h78.75v5.25h22.75v22.75H33.25v-14H0v45.5h175v10.5H0v35h84v17.5H0v8.75h350v-29.75h-96.25ZM292.25,126h26.25v3.5h-26.25v-3.5ZM84,15.75h-42v-7h42v7ZM115.5,201.25H35v-19.25h80.5v19.25ZM152.25,377.99h-47.25v-3.5h47.25v3.5ZM346.5,432.24h-33.25v-7h33.25v7ZM301,356.99h38.5v5.25h-38.5v-5.25ZM262.5,383.24h61.25v10.5h-61.25v-10.5ZM217,262.5h89.25v1.75h33.25v10.5h-57.75v-7h-64.75v-5.25ZM187.25,503.99h-59.5v-8.75h59.5v8.75ZM187.25,432.24h73.5v15.75h-73.5v-15.75Z");
  }

  75% {
    clip-path: path("M236.25,510.99v-12.25h113.75v-26.25h-71.75v-15.75h-26.25v-15.75h43.75v14h54.25v-94.5h-21v-8.75h21v-42h-40.25v-10.5h40.25v-33.25h-77v-14h77v-38.5h-71.75v-5.25h71.75v-35h-59.5v-5.25h-35v-12.25h94.5v-52.5h-14v3.5h-52.5v-7h22.75v-5.25h43.75v-52.5h-134.75v-14h-17.5v-8.75h96.25v3.5h56V0h-12.25v3.5h-42v8.75h-35V3.5h5.25V0H0v7h73.5v8.75H0v7h127.75v14H0v26.25h68.25v1.75H0v64.75h42v-7h63v14h-19.25v8.75H0v73.5h12.25v-10.5h70v10.5h-28v5.25H0v66.5h73.5v5.25h28v12.25H10.5v-8.75H0v61.25h40.25v7H0v24.5h122.5v14H0v15.75h61.25v-7h35v14h-17.5v12.25h54.25v12.25H15.75v-12.25H0v52.5h78.75v-7h70v7h10.5v10.5H0v21h33.25v-7h56v7h260.75v-14h-113.75ZM322,241.5h15.75v7h-15.75v-7ZM266,75.25h78.75v3.5h-78.75v-3.5ZM63,89.25H19.25v-5.25h43.75v5.25ZM127.75,264.22H43.75v-10.48h84v10.48ZM337.75,432.24h-33.25v-7h33.25v7ZM339.5,388.49v3.5h-78.75v-3.5h78.75ZM260.75,316.74h24.5v3.5h-24.5v-3.5ZM220.5,486.49h-40.25v-7h40.25v7ZM220.5,349.99h78.75v3.5h-78.75v-3.5Z");
  }

  100% {
    clip-path: path("M283.5,517.99v-12.25h66.5v-7h-120.75v-7h120.75v-61.25h-92.75v-17.5h92.75v-7h-35v-7h35v-57.75h-99.75v-7h99.75v-82.25h-54.25v-10.5h54.25v-52.5h-106.75v-8.75h59.5v-8.75h47.25v-42h-80.5v-10.5h80.5v-59.5h-99.75v-7h99.75v-19.25h-71.75V14h71.75V0h-71.75v7h-134.75V0H0v14h117.25v3.5H0v14.87h95.38v12.25H0v79.62h77v10.5h7v19.25H14v-17.5H0v57.75h31.5v3.5H0v28h54.25v14H0v19.25h204.75v7H0v71.75h129.5v24.5H42v12.25H0v71.75h84v3.5H0v14h169.75v3.5H0v38.5h36.75v12.25H0v7h350v-7h-66.5ZM288.75,304.49h33.25v3.5h-33.25v-3.5ZM269.5,316.74h38.5v7h-38.5v-7ZM61.25,70H21v-1.75h40.25v1.75ZM70,180.25h31.5v8.75h-31.5v-8.75ZM159.25,255.5h-42v-8.75h-40.25v-5.25h56v5.25h26.25v8.75ZM108.5,495.24h-33.25v7h-29.75v-14h63v7Z");
  }
}

/* ===== タブレット・中画面対応 (768px-1200px) ===== */
@keyframes imgGlitch-b2 {
  0% {
    clip-path: path("M181.25,353.75v-10h68.75v-3.75h-35v-8.75h35v-107.5h-76.25v-11.25h76.25v-48.75h-23.75v5h21.25v8.75h-38.75v5h-37.5v-5h22.5v-7.5h-31.25v-6.25h56.25v-16.25h20v-7.5h11.25v-23.75h-78.75v-3.75h78.75v-51.25h-76.25v-10h76.25v-11.25h-7.5v3.75h-41.25v-11.25h17.5v-10h31.25v-7.5h-90v-3.75h90V0H0v30h53.75v2.5h8.75v11.25H13.75v-8.75H0v45h56.25v10H0v22.5h12.5v-12.5h42.5v12.5h-10v7.5H0v67.5h70v8.75H0v3.75h60v2.5H0v17.5h97.5v6.25H0v8.75h32.5v16.25H0v17.5h13.75v1.25H0v11.25h56.25v3.75h16.25v16.25H23.75v-10H0v32.5h125v7.5H0v25h60v12.5H0v6.25h250v-21.25h-68.75ZM208.75,90h18.75v2.5h-18.75v-2.5ZM60,11.25h-30v-5h30v5ZM82.5,143.75H25v-13.75h57.5v13.75ZM108.75,270h-33.75v-2.5h33.75v2.5ZM247.5,308.75h-23.75v-5h23.75v5ZM215,255h27.5v3.75h-27.5v-3.75ZM187.5,273.75h43.75v7.5h-43.75v-7.5ZM155,187.5h63.75v1.25h23.75v7.5h-41.25v-5h-46.25v-3.75ZM133.75,360h-42.5v-6.25h42.5v6.25ZM133.75,308.75h52.5v11.25h-52.5v-11.25Z");
  }

  10% {
    clip-path: path("M168.75,365v-8.75h81.25v-18.75h-51.25v-11.25h-18.75v-11.25h31.25v10h38.75v-67.5h-15v-6.25h15v-30h-28.75v-7.5h28.75v-23.75h-55v-10h55v-27.5h-51.25v-3.75h51.25v-25h-42.5v-3.75h-25v-8.75h67.5v-37.5h-10v2.5h-37.5v-5h16.25v-3.75h31.25V30h-96.25v-10h-12.5v-6.25h68.75v2.5h40V0h-8.75v2.5h-30v6.25h-25V2.5h3.75V0H0v5h52.5v6.25H0v5h91.25v10H0v18.75h48.75v1.25H0v46.25h30v-5h45v10h-13.75v6.25H0v52.5h8.75v-7.5h50v7.5h-20v3.75H0v47.5h52.5v3.75h20v8.75H7.5v-6.25H0v43.75h28.75v5H0v17.5h87.5v10H0v11.25h43.75v-5h25v10h-12.5v8.75h38.75v8.75H11.25v-8.75H0v37.5h56.25v-5h50v5h7.5v7.5H0v15h23.75v-5h40v5h186.25v-10h-81.25ZM230,172.5h11.25v5h-11.25v-5ZM190,53.75h56.25v2.5h-56.25v-2.5ZM45,63.75H13.75v-3.75h31.25v3.75ZM91.25,188.73H31.25v-7.48h60v7.48ZM241.25,308.75h-23.75v-5h23.75v5ZM242.5,277.5v2.5h-56.25v-2.5h56.25ZM186.25,226.25h17.5v2.5h-17.5v-2.5ZM157.5,347.5h-28.75v-5h28.75v5ZM157.5,250h56.25v2.5h-56.25v-2.5Z");
  }

  25% {
    clip-path: path("M202.5,370v-8.75h47.5v-5h-86.25v-5h86.25v-43.75h-66.25v-12.5h66.25v-5h-25v-5h25v-41.25h-71.25v-5h71.25v-58.75h-38.75v-7.5h38.75v-37.5h-76.25v-6.25h42.5v-6.25h33.75v-30h-57.5v-7.5h57.5v-42.5h-71.25v-5h71.25v-13.75h-51.25v-13.75h51.25V0h-51.25v5h-96.25V0H0v10h83.75v2.5H0v10.62h68.12v8.75H0v56.87h55v7.5h5v13.75H10v-12.5H0v41.25h22.5v2.5H0v20h38.75v10H0v13.75h146.25v5H0v51.25h92.5v17.5H30v8.75H0v51.25h60v2.5H0v10h121.25v2.5H0v27.5h26.25v8.75H0v5h250v-5h-47.5ZM206.25,217.5h23.75v2.5h-23.75v-2.5ZM192.5,226.25h27.5v5h-27.5v-5ZM43.75,50H15v-1.25h28.75v1.25ZM50,128.75h22.5v6.25h-22.5v-6.25ZM113.75,182.5h-30v-6.25h-28.75v-3.75h40v3.75h18.75v6.25ZM77.5,353.75h-23.75v5h-21.25v-10h45v5Z");
  }

  35% {
    clip-path: path("M182.5,366.25v-3.75h-28.75v-20h57.5v12.5h38.75v-12.5h-6.25v-13.75h6.25v-23.75h-46.25v-2.5h2.5v-6.25h-16.25v-11.25h25v8.75h20v8.75h15v-23.75h-60v-8.75h60v-23.75h-20v-5h20v-16.25h-31.25v-8.75h31.25v-25h-56.25v-15h56.25v-10h-27.5v-10h27.5v-37.5h-67.5v-5h47.5v-8.75h20v-45h-30v-8.75h-26.25v-5h56.25V7.5h-77.5V0H0v13.75h36.25v-6.25h56.25v6.25h-41.25v7.5H0v8.75h10v6.25H0v40h51.25v12.5H0v10h32.5v12.5H0v36.25h27.5v3.75H0v36.25h57.5v8.75H0v45h36.25v2.5H0v5h27.5v11.25H0v61.25h115v6.25H0v27.5h83.75v5H0v15h250v-8.75h-67.5ZM195,125h27.5v2.5h12.5v7.5h-20v-5h-20v-5ZM193.75,21.25h50v8.75h-50v-8.75ZM27.5,46.25v-2.5h42.5v2.5H27.5ZM40,246.25h20v5h-20v-5ZM111.25,302.5H40v-5H7.5v-15h47.5v7.5h56.25v12.5ZM111.25,233.75h-31.25v-8.75h31.25v8.75Z");
  }

  50% {
    clip-path: path("M168.75,365v-8.75h81.25v-18.75h-51.25v-11.25h-18.75v-11.25h31.25v10h38.75v-67.5h-15v-6.25h15v-30h-28.75v-7.5h28.75v-23.75h-55v-10h55v-27.5h-51.25v-3.75h51.25v-25h-42.5v-3.75h-25v-8.75h67.5v-37.5h-10v2.5h-37.5v-5h16.25v-3.75h31.25V30h-96.25v-10h-12.5v-6.25h68.75v2.5h40V0h-8.75v2.5h-30v6.25h-25V2.5h3.75V0H0v5h52.5v6.25H0v5h91.25v10H0v18.75h48.75v1.25H0v46.25h30v-5h45v10h-13.75v6.25H0v52.5h8.75v-7.5h50v7.5h-20v3.75H0v47.5h52.5v3.75h20v8.75H7.5v-6.25H0v43.75h28.75v5H0v17.5h87.5v10H0v11.25h43.75v-5h25v10h-12.5v8.75h38.75v8.75H11.25v-8.75H0v37.5h56.25v-5h50v5h7.5v7.5H0v15h23.75v-5h40v5h186.25v-10h-81.25ZM230,172.5h11.25v5h-11.25v-5ZM190,53.75h56.25v2.5h-56.25v-2.5ZM45,63.75H13.75v-3.75h31.25v3.75ZM91.25,188.73H31.25v-7.48h60v7.48ZM241.25,308.75h-23.75v-5h23.75v5ZM242.5,277.5v2.5h-56.25v-2.5h56.25ZM186.25,226.25h17.5v2.5h-17.5v-2.5ZM157.5,347.5h-28.75v-5h28.75v5ZM157.5,250h56.25v2.5h-56.25v-2.5Z");
  }

  60% {
    clip-path: path("M182.5,366.25v-3.75h-28.75v-20h57.5v12.5h38.75v-12.5h-6.25v-13.75h6.25v-23.75h-46.25v-2.5h2.5v-6.25h-16.25v-11.25h25v8.75h20v8.75h15v-23.75h-60v-8.75h60v-23.75h-20v-5h20v-16.25h-31.25v-8.75h31.25v-25h-56.25v-15h56.25v-10h-27.5v-10h27.5v-37.5h-67.5v-5h47.5v-8.75h20v-45h-30v-8.75h-26.25v-5h56.25V7.5h-77.5V0H0v13.75h36.25v-6.25h56.25v6.25h-41.25v7.5H0v8.75h10v6.25H0v40h51.25v12.5H0v10h32.5v12.5H0v36.25h27.5v3.75H0v36.25h57.5v8.75H0v45h36.25v2.5H0v5h27.5v11.25H0v61.25h115v6.25H0v27.5h83.75v5H0v15h250v-8.75h-67.5ZM195,125h27.5v2.5h12.5v7.5h-20v-5h-20v-5ZM193.75,21.25h50v8.75h-50v-8.75ZM27.5,46.25v-2.5h42.5v2.5H27.5ZM40,246.25h20v5h-20v-5ZM111.25,302.5H40v-5H7.5v-15h47.5v7.5h56.25v12.5ZM111.25,233.75h-31.25v-8.75h31.25v8.75Z");
  }

  75% {
    clip-path: path("M181.25,353.75v-10h68.75v-3.75h-35v-8.75h35v-107.5h-76.25v-11.25h76.25v-48.75h-23.75v5h21.25v8.75h-38.75v5h-37.5v-5h22.5v-7.5h-31.25v-6.25h56.25v-16.25h20v-7.5h11.25v-23.75h-78.75v-3.75h78.75v-51.25h-76.25v-10h76.25v-11.25h-7.5v3.75h-41.25v-11.25h17.5v-10h31.25v-7.5h-90v-3.75h90V0H0v30h53.75v2.5h8.75v11.25H13.75v-8.75H0v45h56.25v10H0v22.5h12.5v-12.5h42.5v12.5h-10v7.5H0v67.5h70v8.75H0v3.75h60v2.5H0v17.5h97.5v6.25H0v8.75h32.5v16.25H0v17.5h13.75v1.25H0v11.25h56.25v3.75h16.25v16.25H23.75v-10H0v32.5h125v7.5H0v25h60v12.5H0v6.25h250v-21.25h-68.75ZM208.75,90h18.75v2.5h-18.75v-2.5ZM60,11.25h-30v-5h30v5ZM82.5,143.75H25v-13.75h57.5v13.75ZM108.75,270h-33.75v-2.5h33.75v2.5ZM247.5,308.75h-23.75v-5h23.75v5ZM215,255h27.5v3.75h-27.5v-3.75ZM187.5,273.75h43.75v7.5h-43.75v-7.5ZM155,187.5h63.75v1.25h23.75v7.5h-41.25v-5h-46.25v-3.75ZM133.75,360h-42.5v-6.25h42.5v6.25ZM133.75,308.75h52.5v11.25h-52.5v-11.25Z");
  }

  100% {
    clip-path: path("M202.5,370v-8.75h47.5v-5h-86.25v-5h86.25v-43.75h-66.25v-12.5h66.25v-5h-25v-5h25v-41.25h-71.25v-5h71.25v-58.75h-38.75v-7.5h38.75v-37.5h-76.25v-6.25h42.5v-6.25h33.75v-30h-57.5v-7.5h57.5v-42.5h-71.25v-5h71.25v-13.75h-51.25v-13.75h51.25V0h-51.25v5h-96.25V0H0v10h83.75v2.5H0v10.62h68.12v8.75H0v56.87h55v7.5h5v13.75H10v-12.5H0v41.25h22.5v2.5H0v20h38.75v10H0v13.75h146.25v5H0v51.25h92.5v17.5H30v8.75H0v51.25h60v2.5H0v10h121.25v2.5H0v27.5h26.25v8.75H0v5h250v-5h-47.5ZM206.25,217.5h23.75v2.5h-23.75v-2.5ZM192.5,226.25h27.5v5h-27.5v-5ZM43.75,50H15v-1.25h28.75v1.25ZM50,128.75h22.5v6.25h-22.5v-6.25ZM113.75,182.5h-30v-6.25h-28.75v-3.75h40v3.75h18.75v6.25ZM77.5,353.75h-23.75v5h-21.25v-10h45v5Z");
  }
}

@keyframes imgGlitch-w2 {
  0% {
    clip-path: path("M205,371.25v-7.5h-80v-8.75h82.5v6.25h42.5v-32.5h-21.25v-5h21.25v-61.25h-45v-3.75h45v-17.5h-56.25v-7.5h56.25v-32.5h-32.5v11.25h-65v-2.5h17.5v-8.75h31.25v-10h26.25v-17.5h-42.5v-10h65v-48.75h-40v-8.75h40v-32.5h-22.5v1.25h-42.5v-3.75h31.25v-5h33.75v-21.25h-12.5v-6.25h12.5V0H0v18.75h60v7.5h-5v8.75h-28.75v-8.75H0v16.25h68.75v5H0v41.25h32.5v2.5h40v12.5H17.5v-8.75H0v76.25h63.75v2.5H0v37.5h12.5v-7.5h61.25v8.75h-33.75v5H0v23.75h36.25v3.75H0v48.75h31.25v8.75H0v31.25h102.5v12.5H0v28.75h250v-3.75h-45ZM185,293.75h12.5v5h31.25v16.25h-36.25v-12.5h-7.5v-8.75ZM170,331.25h70v8.75h-70v-8.75ZM235,47.5h-37.5v-2.5h37.5v2.5ZM175,12.5h52.5v3.75h15v10h-48.75v-10h-18.75v-3.75ZM162.5,123.75h38.75v7.5h-38.75v-7.5ZM60,67.5h-27.5v-3.75h27.5v3.75ZM73.75,361.25H23.75v-6.25h50v6.25ZM45,10V3.75h55v6.25h-55ZM42.5,160v-8.75h71.25v8.75H42.5ZM17.5,256.25v-6.25h46.25v6.25H17.5ZM101.25,273.75h-40v-3.75h40v3.75ZM93.75,252.5v-11.25h-15v-7.5h30v3.75h25v15h-40Z");
  }

  10% {
    clip-path: path("M205,366.25v-2.5h-25v-1.25h25v-8.75h45v-17.5h-87.5v-6.25h87.5v-15h-37.5v-7.5h37.5v-22.5h-15v-3.75h15v-18.75h-30v-13.75h30v-86.25h-51.25v-5h51.25v-48.75h-32.5v-8.75h32.5v-21.25h-20v-5h20v-3.75h-30v-8.75h-23.75v-5h38.75v5h15v-30h-18.75v5h-35v-5h12.5v-10h41.25v-7.5h-110v-6.25h110V0H50v11.25H0v50h55v12.5H0v35h60v6.25H0v72.5h76.25v12.5h-18.75v6.25H0v96.25h52.5v6.25h61.25v13.75H36.25v-11.25H0v30h81.25v8.75H0v16.25h65v8.75h185v-8.75h-45ZM28.75,13.75h63.75v7.5H28.75v-7.5ZM28.75,48.75v-8.75h48.75v8.75H28.75ZM50,160v-8.75h-31.25v-10h58.75v2.5h11.25v16.25h-38.75ZM13.75,262.5h38.75v8.75H13.75v-8.75ZM81.25,298.75h-32.5v-7.5h32.5v7.5ZM102.5,231.25H33.75v-7.5h21.25v-11.25h41.25v11.25h6.25v7.5ZM231.25,281.25v1.25h-43.75v-1.25h43.75ZM166.25,276.25v-8.75h32.5v8.75h-32.5ZM162.5,125h67.5v11.25h-67.5v-11.25ZM150,200h67.5v5h25v7.5h-71.25v-7.5h-21.25v-5ZM162.5,366.25h-33.75v-12.5h33.75v12.5Z");
  }

  25% {
    clip-path: path("M176.25,360v-6.25h73.75v-30h-85v-7.5h-10v-8.75h32.5v6.25h62.5v-42.5h-43.75v-10h43.75v-28.75h-30v-8.75h30v-16.25h-78.75v-6.25h78.75v-18.75h-30v-3.75h30v-18.75h-33.75v-1.25h33.75v-20h-43.75v-5h43.75v-28.75h-33.75v-3.75h33.75v-41.25h-42.5v-2.5h42.5v-18.75h-27.5v-10h27.5v-5h-56.25v-2.5h56.25V0H0v11.25h53.75v12.5H0v16.25h66.25v7.5H0v15h27.5v-7.5h45v11.25h-20v3.75H0v43.75h37.5v8.75H0v50h80v6.25H0v102.5h57.5v11.25H0v47.5h55v-11.25h53.75v15h-11.25v6.25H0v21.25h43.75v3.75h206.25v-15h-73.75ZM216.25,292.5h26.25v5h-26.25v-5ZM182.5,247.5v6.25h-11.25v-6.25h11.25ZM200,120h-23.75v-6.25h23.75v6.25ZM242.5,78.75v5h-55v-5h55ZM165,5h38.75v2.5h-38.75v-2.5ZM73.75,15h23.75v2.5h-23.75v-2.5ZM78.75,143.75h-27.5v7.5H10v-10h20v-2.5h48.75v5ZM82.5,228.75h-35v-8.75H13.75v-7.5h53.75v3.75h15v12.5ZM87.5,113.75h-16.25v-1.25h16.25v1.25ZM113.75,273.75h-23.75v-7.5h23.75v7.5ZM155,367.5h-22.5v-3.75h22.5v3.75Z");
  }

  35% {
    clip-path: path("M187.5,360v-10h-38.75v-10h58.75v8.75h42.5v-43.75h-70v-16.25h70v-12.5h-20v-5h20v-37.5h-95v-20h95v-8.75h-27.5v5h-115v-7.5h105v-6.25h37.5v-68.75h-20v-7.5h20v-27.5h-33.75v-10h-32.5v-6.25h65v1.25h1.25v-30h-70v-13.75h70v-8.75h-66.25v-1.25h66.25V0H0v21.25h30v-3.75h30v3.75h-15v3.75H0v20h30v15h38.75v3.75H12.5v-3.75H0v16.25h47.5v6.25h31.25v5h-42.5v-2.5H0v16.25h23.75v6.25H0v36.25h12.5v-6.25h58.75v6.25H21.25v8.75H0v40h53.75v13.75H0v42.5h18.75v-2.5h52.5v2.5H30v13.75H0v65h65v2.5H0v20h50v13.75h61.25v3.75H37.5v-3.75H0v11.25h250v-15h-62.5ZM206.25,63.75h36.25v5h-36.25v-5ZM183.75,146.25h46.25v2.5h-46.25v-2.5ZM202.5,167.5v-5h25v8.75h-3.75v6.25h-57.5v-10h36.25ZM130,11.25h32.5v-6.25h46.25v7.5h-32.5v5h-46.25v-6.25ZM60,45h-22.5v-5h22.5v5ZM63.75,8.75H12.5V2.5h51.25v6.25ZM71.25,113.75h20v6.25h-20v-6.25ZM30,172.5v-5h45v5H30ZM56.25,223.75v-10h38.75v10h-38.75ZM101.25,292.5h-33.75v2.5H13.75v-3.75h23.75v-6.25h63.75v7.5ZM140,266.25h43.75v5h-43.75v-5Z");
  }

  50% {
    clip-path: path("M176.25,360v-6.25h73.75v-30h-85v-7.5h-10v-8.75h32.5v6.25h62.5v-42.5h-43.75v-10h43.75v-28.75h-30v-8.75h30v-16.25h-78.75v-6.25h78.75v-18.75h-30v-3.75h30v-18.75h-33.75v-1.25h33.75v-20h-43.75v-5h43.75v-28.75h-33.75v-3.75h33.75v-41.25h-42.5v-2.5h42.5v-18.75h-27.5v-10h27.5v-5h-56.25v-2.5h56.25V0H0v11.25h53.75v12.5H0v16.25h66.25v7.5H0v15h27.5v-7.5h45v11.25h-20v3.75H0v43.75h37.5v8.75H0v50h80v6.25H0v102.5h57.5v11.25H0v47.5h55v-11.25h53.75v15h-11.25v6.25H0v21.25h43.75v3.75h206.25v-15h-73.75ZM216.25,292.5h26.25v5h-26.25v-5ZM182.5,247.5v6.25h-11.25v-6.25h11.25ZM200,120h-23.75v-6.25h23.75v6.25ZM242.5,78.75v5h-55v-5h55ZM165,5h38.75v2.5h-38.75v-2.5ZM73.75,15h23.75v2.5h-23.75v-2.5ZM78.75,143.75h-27.5v7.5H10v-10h20v-2.5h48.75v5ZM82.5,228.75h-35v-8.75H13.75v-7.5h53.75v3.75h15v12.5ZM87.5,113.75h-16.25v-1.25h16.25v1.25ZM113.75,273.75h-23.75v-7.5h23.75v7.5ZM155,367.5h-22.5v-3.75h22.5v3.75Z");
  }

  60% {
    clip-path: path("M205,371.25v-7.5h-80v-8.75h82.5v6.25h42.5v-32.5h-21.25v-5h21.25v-61.25h-45v-3.75h45v-17.5h-56.25v-7.5h56.25v-32.5h-32.5v11.25h-65v-2.5h17.5v-8.75h31.25v-10h26.25v-17.5h-42.5v-10h65v-48.75h-40v-8.75h40v-32.5h-22.5v1.25h-42.5v-3.75h31.25v-5h33.75v-21.25h-12.5v-6.25h12.5V0H0v18.75h60v7.5h-5v8.75h-28.75v-8.75H0v16.25h68.75v5H0v41.25h32.5v2.5h40v12.5H17.5v-8.75H0v76.25h63.75v2.5H0v37.5h12.5v-7.5h61.25v8.75h-33.75v5H0v23.75h36.25v3.75H0v48.75h31.25v8.75H0v31.25h102.5v12.5H0v28.75h250v-3.75h-45ZM185,293.75h12.5v5h31.25v16.25h-36.25v-12.5h-7.5v-8.75ZM170,331.25h70v8.75h-70v-8.75ZM235,47.5h-37.5v-2.5h37.5v2.5ZM175,12.5h52.5v3.75h15v10h-48.75v-10h-18.75v-3.75ZM162.5,123.75h38.75v7.5h-38.75v-7.5ZM60,67.5h-27.5v-3.75h27.5v3.75ZM73.75,361.25H23.75v-6.25h50v6.25ZM45,10V3.75h55v6.25h-55ZM42.5,160v-8.75h71.25v8.75H42.5ZM17.5,256.25v-6.25h46.25v6.25H17.5ZM101.25,273.75h-40v-3.75h40v3.75ZM93.75,252.5v-11.25h-15v-7.5h30v3.75h25v15h-40Z");
  }

  75% {
    clip-path: path("M205,366.25v-2.5h-25v-1.25h25v-8.75h45v-17.5h-87.5v-6.25h87.5v-15h-37.5v-7.5h37.5v-22.5h-15v-3.75h15v-18.75h-30v-13.75h30v-86.25h-51.25v-5h51.25v-48.75h-32.5v-8.75h32.5v-21.25h-20v-5h20v-3.75h-30v-8.75h-23.75v-5h38.75v5h15v-30h-18.75v5h-35v-5h12.5v-10h41.25v-7.5h-110v-6.25h110V0H50v11.25H0v50h55v12.5H0v35h60v6.25H0v72.5h76.25v12.5h-18.75v6.25H0v96.25h52.5v6.25h61.25v13.75H36.25v-11.25H0v30h81.25v8.75H0v16.25h65v8.75h185v-8.75h-45ZM28.75,13.75h63.75v7.5H28.75v-7.5ZM28.75,48.75v-8.75h48.75v8.75H28.75ZM50,160v-8.75h-31.25v-10h58.75v2.5h11.25v16.25h-38.75ZM13.75,262.5h38.75v8.75H13.75v-8.75ZM81.25,298.75h-32.5v-7.5h32.5v7.5ZM102.5,231.25H33.75v-7.5h21.25v-11.25h41.25v11.25h6.25v7.5ZM231.25,281.25v1.25h-43.75v-1.25h43.75ZM166.25,276.25v-8.75h32.5v8.75h-32.5ZM162.5,125h67.5v11.25h-67.5v-11.25ZM150,200h67.5v5h25v7.5h-71.25v-7.5h-21.25v-5ZM162.5,366.25h-33.75v-12.5h33.75v12.5Z");
  }

  100% {
    clip-path: path("M187.5,360v-10h-38.75v-10h58.75v8.75h42.5v-43.75h-70v-16.25h70v-12.5h-20v-5h20v-37.5h-95v-20h95v-8.75h-27.5v5h-115v-7.5h105v-6.25h37.5v-68.75h-20v-7.5h20v-27.5h-33.75v-10h-32.5v-6.25h65v1.25h1.25v-30h-70v-13.75h70v-8.75h-66.25v-1.25h66.25V0H0v21.25h30v-3.75h30v3.75h-15v3.75H0v20h30v15h38.75v3.75H12.5v-3.75H0v16.25h47.5v6.25h31.25v5h-42.5v-2.5H0v16.25h23.75v6.25H0v36.25h12.5v-6.25h58.75v6.25H21.25v8.75H0v40h53.75v13.75H0v42.5h18.75v-2.5h52.5v2.5H30v13.75H0v65h65v2.5H0v20h50v13.75h61.25v3.75H37.5v-3.75H0v11.25h250v-15h-62.5ZM206.25,63.75h36.25v5h-36.25v-5ZM183.75,146.25h46.25v2.5h-46.25v-2.5ZM202.5,167.5v-5h25v8.75h-3.75v6.25h-57.5v-10h36.25ZM130,11.25h32.5v-6.25h46.25v7.5h-32.5v5h-46.25v-6.25ZM60,45h-22.5v-5h22.5v5ZM63.75,8.75H12.5V2.5h51.25v6.25ZM71.25,113.75h20v6.25h-20v-6.25ZM30,172.5v-5h45v5H30ZM56.25,223.75v-10h38.75v10h-38.75ZM101.25,292.5h-33.75v2.5H13.75v-3.75h23.75v-6.25h63.75v7.5ZM140,266.25h43.75v5h-43.75v-5Z");
  }
}

/* ===== モバイル対応 (481px-768px) ===== */

@keyframes imgGlitch-b3 {
  0% {
    clip-path: path("");
  }
}

@keyframes imgGlitch-w3 {
  0% {
    clip-path: path("");
  }
}

/* スマホ（200px base）*/
@keyframes imgGlitch-b4 {
  0% {
    clip-path: path("");
  }

}

@keyframes imgGlitch-w4 {
  0% {
    clip-path: path("");
  }
}


.glitch {
  position: relative;
  width: clamp(9rem, 22vh, 14rem);
  max-width: 15rem;
  z-index: 15;
}

.glitch img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.glitch__layers {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.glitch__layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/text-pc.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
}

.glitch__layer:nth-child(1) {
  transform: translateX(-5%);
  animation: glitch-anim-1 2s infinite linear alternate;
}

.glitch__layer:nth-child(2) {
  transform: translateX(3%) translateY(3%);
  animation: glitch-anim-2 5s -.8s infinite linear alternate;
}

.glitch__layer:nth-child(3) {
  transform: translateX(5%);
  animation: glitch-anim-flash 1s infinite linear;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }

  10% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  20% {
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }

  30% {
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }

  40% {
    clip-path: polygon(0 35%, 100% 35%, 100% 35%, 0 35%);
  }

  50% {
    clip-path: polygon(0 45%, 100% 45%, 100% 46%, 0 46%);
  }

  60% {
    clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%);
  }

  70% {
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }

  80% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  90% {
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }

  100% {
    clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 15%, 100% 15%, 100% 30%, 0 30%);
  }

  15% {
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }

  25% {
    clip-path: polygon(0 8%, 100% 8%, 100% 20%, 0 20%);
  }

  30% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  45% {
    clip-path: polygon(0 45%, 100% 45%, 100% 45%, 0 45%);
  }

  50% {
    clip-path: polygon(0 50%, 100% 50%, 100% 57%, 0 57%);
  }

  65% {
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  75% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  80% {
    clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
  }

  95% {
    clip-path: polygon(0 45%, 100% 45%, 100% 60%, 0 60%);
  }

  100% {
    clip-path: polygon(0 11%, 100% 11%, 100% 15%, 0 15%);
  }
}

@keyframes glitch-anim-flash {
  0% {
    opacity: .2;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {

  .glitch {
    width: 20vh;
    top: 1vh;
    margin-inline: 25%;
    margin-bottom: -9rem;
    z-index: 15;
  }

  .glitch__layer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/text-sp.svg);
  }

  .img-b {
    width: 40%;
    height: 35%;
    padding-top: 6rem;
  }

  .img-w {
    width: 40%;
    height: 30%;
  }
}



@media screen and (max-width: 1200px) and (min-width: 768px) {

  .img-b,
  .img-w {
    width: 250px;
  }

}

@media screen and (max-width: 768px) and (min-width: 481px) {

  .img-b,
  .img-w {
    width: 200px;
    height: 280px;
  }
}

@media screen and (max-width: 480px) {
  .top-mv {
    gap: 10%;
    height: 100vh;
    margin-block: 0;
    row-gap: 0rem;
  }

  .img-b,
  .img-w {
    width: 150px;
    height: 225px;
  }
}



/*ーーーーーーーーーーーーーーーーー
ロゴ
ーーーーーーーーーーーーーーーーー */

.logo {
  display: flex;
  z-index: 98;
  width: 100%;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.logo img {
  z-index: 10;
  bottom: 10%;
  left: 50%;
  width: 25%;
  height: auto;
}

.first-issue {
  width: 20%;
}

.first-issue img {
  width: 100%;
}

@media (max-width: 768px) {
  .logo img {
    width: 70%;
  }

  .first-issue {
    width: 60%;
  }

  .first-issue img {
    width: 100%;
  }
}


@media screen and (max-width: 768px) and (min-width: 481px) {
  .logo img {
    width: 50%;
  }

  .first-issue {
    width: 35%;
  }


  .first-issue img {
    width: 100%;
  }
}

/*ーーーーーーーーーーーーーーーーー
artist
ーーーーーーーーーーーーーーーーー */
.artist {
  display: flex;
  position: relative;
  padding-bottom: 4rem;
  align-items: flex-start;
}

.artist__contents {
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 3rem;
}

.artist__contents--white {
  color: white;
  left: 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.artist__contents--white::before {
  content: "";
  background-image: url(https://dcore-pub.jp/images/cover-b.webp);
  background-blend-mode: color;
  background-color: rgb(0 0 0 / 80%);
  background-size: cover;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  filter: blur(5px);
  z-index: -1;
}

.artist__contents--black {
  color: black;
  right: 0;
  margin-top: 4rem;
  margin-left: -4%;
  position: relative;
  overflow: hidden;
}

.artist__contents--black::before {
  content: "";
  background-image: url(https://dcore-pub.jp/images/cover-w.webp);
  background-blend-mode: color;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: cover;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  filter: blur(5px);
  z-index: -1;
}

.artist__cover,
.artist__pin-up,
.artist__works {
  display: flex;
  width: clamp(20rem, 40vw, 40rem);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: 2rem;
}

.artist--line {
  border-bottom: solid 1px #838383;
}

.artist__ttl {
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-default);
  margin: auto;
}

.artist__name-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 1rem;
  font-family: var(--font-default);
}

.artist__name {
  margin: 0;
}

.artist__name-cover {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-default);
  margin: auto;
}

.artist__vol-01,
.artist__vol-02 {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  align-items: center;
}

.artist__vol-01 {
  left: 0;
  width: 20%;
}

.artist__vol-02 {
  right: 0;
  width: 20%;
}

.artist__vol-01 img,
.artist__vol-02 img {
  width: 100%;
  height: auto;
}

.artist__vol-02 img.artist__text-img {
  width: 80%;
}

@media (max-width: 768px) {
  .artist {
    flex-direction: column;
  }

  .artist__contents {
    width: 100%;
  }

  .artist__contents--black {
    position: relative;
    top: 0;
    margin-top: 0;
    margin-left: 0;
  }

  .artist__vol-01,
  .artist__vol-02 {
    width: 28%;
    top: 0;
  }
}

/* ///// footer information ///////////////////////////////// */

.info {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.info__ttl {
  font-family: var(--font-unicase);
  font-weight: 100;
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: clamp(2.5rem, 3vw, 3rem);
  margin: 0;
}

.info__sub-ttl {
  font-family: var(--font-default);
  font-weight: 100;
  font-size: 1rem;
  margin: auto;
}

.info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  padding-top: 2rem;
  gap: 0rem;
  font-family: var(--font-default);
  font-weight: 200;
  width: 35%;
}

.info__heading,
.info__cont {
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: center;
  margin: auto;
}

.info__cont,
.info__cont--sp {
  grid-column: span 2 / span 2;
  padding: 0.5rem;
  border-left: solid 1px #ffffff54;
}

.copy-right {
  z-index: 100;
  bottom: 2%;
  width: 100%;
  color: #fff;
}

.copy-right p {
  font-size: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  margin: 1rem auto;
  font-family: var(--font-default);
}

@media (max-width: 768px) {
  .info {
    flex-direction: column;
    gap: 1rem;
  }

  .info__ttl-group {
    margin-top: 2rem;
  }

  .info__list {
    grid-template-rows: repeat(5, 1fr);
    padding: 1rem 0 2rem;
    width: 80%;
  }

  .info__heading {
    padding: 0;
  }

  .info__cont,
  .info__cont--sp {
    width: 80%;
  }

  .info__cont {
    font-size: 0.9rem;
  }

  .info__cont--sp {
    padding: 1.2rem 0.5rem;
  }
}

/* ///// responsive ///////////////////////////////// */
.sp {
  display: none;
}

.pc {
  display: block;
}

.br_pc {
  display: block;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .br {
    display: block;
  }

  .br_pc {
    display: none;
  }
}

/* ///// TOPサブタイトル ///////////////////////////////// */
.top-sabttl {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: clamp(20rem, 95vw, 95rem);
  z-index: 5;
  top: 1vw;
}

.top-sabttl__text {
  width: 25vh;
}

.top-sabttl__text img {
  width: 100%;
}



@media (max-width: 768px) {
  .top-sabttl {
    display: none;
  }
}