@font-face {
  font-family: "FaithCollapsing";
  src: url("../font/FaithCollapsing.woff2") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Giflika";
  src: url("../font/Giflika-Regular.woff2") format("opentype");
  font-display: swap;
}
/***************************
|
|
| Title
|
|
***************************/
.p-section__title {
  margin: 0 0 60px;
  text-align: center;
}

.p-section__title-ja{
  display: block;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 1);
  font-family: serif;
  margin-bottom: 10px;
}
.p-section__title-en {
  display: block;
  font-family: "FaithCollapsing", serif;
  font-size: clamp(21px, 10vw, 64px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: normal;
}

.p-section__title.has-title-motion .p-section__title-ja {
  display: flex;
  justify-content: center;
  gap: 0.34em;
}

.p-section__title.has-title-motion .p-section__title-ja span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-0.9em);
}

.p-section__title.has-title-motion.is-title-visible .p-section__title-ja span {
  animation: sectionTitleJaIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.08s);
}

.p-section__title.has-title-motion .p-section__title-en {
  display: inline-flex;
  justify-content: center;
  gap: 0.08em;
  letter-spacing: 0;
}

.p-section__title.has-title-motion .p-section__title-en span {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.32em) scaleY(1.85);
  transform-origin: center bottom;
  will-change: opacity, filter, transform;
}

.p-section__title.has-title-motion.is-title-visible .p-section__title-en span {
  animation: sectionTitleEnLetterIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.055s);
}

@keyframes sectionTitleJaIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionTitleEnLetterIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/***************************
|
|
| ★ Section MV
|
|
***************************/
.p-section--mv {
  min-height: 100vh;
  display: grid;
  place-items: center;
  --mv-bg-image: url("../img/fv-bg.webp");
  --mv-bg-position: center;
  background: #000;
  overflow: hidden;
  position: relative;
  background-image: var(--mv-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--mv-bg-position);
  position: relative;
  z-index: 0;
}

body.is-loading:not(.is-loader-revealing) .p-section--mv {
  /*visibility: hidden;*/
}

.p-section--mv:before{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../img/fv.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 2;
  pointer-events: none;
}
.p-section--mv .p-section__inner{
  width: min(100% - 96px, 1480px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}
.p-section--mv .p-section__title,
.p-section--mv .p-section__text{
  margin: 0;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.72s ease,
    filter 0.72s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}
.p-section--mv .p-section__title{
width: clamp(260px, 20vw, 400px);
  transform: translateX(-56px);
}
.p-section--mv .p-section__title img{
  width: 100%;
}
.p-section--mv .p-section__title,
.p-section--mv .p-section__text {
  filter: none;
}
@media screen and (min-width: 1680px) {
  .p-section--mv .p-section__inner{
  width: min(100% - 96px, 2560px);
}
  .p-section--mv .p-section__title{
    width: clamp(320px, 27vw, 560px);
  }
}
.p-section--mv .p-section__text{
  transform: translateX(56px);
  transition-delay: 0.12s;
}
body.is-mv-ready .p-section--mv .p-section__title,
body.is-mv-ready .p-section--mv .p-section__text{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.p-section--mv .p-section__text{
  color: #fff;
  font-size: clamp(4rem, 3vw, 6.4rem);
  font-family: serif;
}
.p-section--mv .p-section__text span{
  display: block;
  font-family: "Giflika", serif;
  letter-spacing: 0.09em;
  font-size: clamp(2.5rem, 1.8vw, 4rem);
  opacity: 0.85;
}

.p-mv-banners {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(10px, 2vw, 16px);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-mv-ui-ready .p-mv-banners {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.p-mv-banners__track {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.p-mv-banners__item {
  display: block;
  width: clamp(180px, 16vw, 270px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

.p-mv-banners__item:hover {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
  transform: translateY(-3px);
}

.p-mv-banners__item img {
  display: block;
  width: 100%;
  height: auto;
    border:solid 1px rgba(255, 255, 255, 0.7)
}

.p-mv-banners__count {
  display: none;
}
@media screen and (max-width: 912px) {
  .p-section--mv {
    min-height: 100svh;
  }

  .p-section--mv::before {
    background-size: auto 75%;
  }

  .p-section--mv .p-section__inner {
    flex-direction: column;
    justify-content: flex-start;
    height:85%;
  }
  .p-section--mv .p-section__title{
    width: min(100%, 320px);
    transform: translateX(-32px);
  }
  .p-section--mv .p-section__text{
    transform: translateX(32px);
    text-align: center;
  }
  
    .p-section--mv .p-section__inner img{
      max-width: 75%;
    }


}
@media screen and (max-width: 768px) {
  .p-section--mv {
    place-items: start center;
    --mv-bg-image: url("../img/fv-bg-sp.webp");
    --mv-bg-position: center;
  }

  .p-section--mv::before {
    background-size: auto 70%;
    background-position: center bottom ;
  }

  .p-section--mv .p-section__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height:100%;
  }
  .p-section--mv .p-section__title{
    width: min(100%, 320px);
  }

  
.p-section--mv .p-section__text{
  font-size: 3.2rem;
}
.p-section--mv .p-section__text span{
  font-size: 1.5rem;
}
.p-section--mv .p-section__inner img{
      max-width: 50%;
      margin-bottom: 15px;
}

  .p-mv-banners {
    right:unset;
    bottom:0;
    left: 50%;
    width: 60%;
    height: 92px;
    transform: translateX(-50%) translateY(18px);
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background-color: none;
  }

  body.is-mv-ui-ready .p-mv-banners {
    transform: translateX(-50%) translateY(0);
  }

  .p-mv-banners::-webkit-scrollbar {
    display: none;
  }

  .p-mv-banners__track {
    display: flex;
    gap: 0;
    width: 200%;
    height: 100%;
    animation: mvBannerAutoScroll 6s ease-in-out infinite;
  }

  .p-mv-banners__item {
    flex: 0 0 50%;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    scroll-snap-align: center;
  }

  .p-mv-banners__item img {
    width: min(72vw, 300px);
  }

  .p-mv-banners__count {
    position: absolute;
    right: 12px;
    bottom: 8px;
    display: block;
    color: #fff;
    font-family: "Giflika", serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .p-mv-banners__count::before {
    content: "1/2";
    animation: mvBannerCount 6s steps(1, end) infinite;
  }

}

@keyframes mvBannerAutoScroll {
  0%,
  42% {
    transform: translateX(0);
  }

  50%,
  92% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes mvBannerCount {
  0%,
  49%,
  100% {
    content: "1/2";
  }

  50%,
  99% {
    content: "2/2";
  }
}

.p-mv-glitch {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.p-mv-glitch__layer {
  position: absolute;
  inset: -2%;
  background-image: var(--mv-bg-image);
  background-repeat: no-repeat;
  background-position: var(--mv-bg-position);
  background-size: cover;
  opacity: 0;
  will-change: opacity, transform;
}

.p-mv-glitch__layer:nth-child(1) {
  mix-blend-mode: screen;
  animation: mvGlitchLight 2.6s infinite steps(1, end);
}

@keyframes mvGlitchLight {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0);
  }

  78% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0);
  }

  80% {
    opacity: 0.28;
    transform: translate3d(-10px, 0, 0);
    clip-path: inset(16% 0 78% 0);
  }

  82% {
    opacity: 0.18;
    transform: translate3d(8px, 0, 0);
    clip-path: inset(42% 0 44% 0);
  }

  84% {
    opacity: 0.24;
    transform: translate3d(-5px, 0, 0);
    clip-path: inset(70% 0 20% 0);
  }

  86% {
    opacity: 0.16;
    transform: translate3d(6px, 0, 0);
    clip-path: inset(4% 0 90% 0);
  }

  88% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-mv-glitch__layer {
    animation: none;
  }

  .p-section--mv .p-section__title,
  .p-section--mv .p-section__text {
    transition: none;
  }
}
/* ---------- Fog ---------- */
.fogwrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-filter:  grayscale(0.2) saturate(1.2) sepia(0.2);
  filter: grayscale(0.2) saturate(1.2) sepia(0.2);
  z-index:3;
  filter: none;
  -webkit-filter: none;
}

#foglayer_01,
#foglayer_02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  will-change: transform, opacity;
  pointer-events: none;
}

#foglayer_01 .image01,
#foglayer_01 .image02,
#foglayer_02 .image01,
#foglayer_02 .image02{
  float: left;
  width: 50%;
  height: 100%;
}

/* ---------- Moving Fog Image ---------- */
#foglayer_01 .image01,
#foglayer_01 .image02 {
  background: url("../img/fog1.webp") center center / contain no-repeat transparent;
}

#foglayer_02 .image01,
#foglayer_02 .image02 {
  background: url("../img/fog2.webp") center center / contain no-repeat transparent;

}

/* ---------- Layer Animation ---------- */
#foglayer_01 {
  animation:
    fog_opacity_01 17s ease-in-out infinite alternate,
    fog_move_01 32s linear infinite;
}

#foglayer_02 {
  animation:
    fog_opacity_02 29s ease-in-out infinite alternate,
    fog_move_02 48s linear infinite;
}

/* ---------- Movement ---------- */
@keyframes fog_move_01 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-12.5%, -2%, 0) scale(1.03);
  }

  50% {
    transform: translate3d(-25%, 1.5%, 0) scale(1.06);
  }

  75% {
    transform: translate3d(-37.5%, -1%, 0) scale(1.03);
  }

  100% {
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@keyframes fog_move_02 {
  0% {
    transform: translate3d(-50%, 1%, 0) scale(1.04);
  }

  30% {
    transform: translate3d(-35%, -1%, 0) scale(1.08);
  }

  60% {
    transform: translate3d(-18%, 2%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}
#foglayer_01 {
  animation: none;
}

#foglayer_02 {
  animation: none;
}

body.is-mv-ui-ready #foglayer_01 {
  animation: fog_move_01 32s linear infinite;
}

body.is-mv-ui-ready #foglayer_02 {
  animation: fog_move_02 48s linear infinite;
}
/***************************
|
|
| ★Story Section
|
|
***************************/
.p-section--story{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.p-section--story::before,
.p-section--story::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(190px, 23vw, 360px);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.p-section--story::before {
  top: 20%;
  left: 0;
  transform: translate3d(-8%, 0, 0);
  background-image: url("../img/bg_grass.jpg");
}

.p-section--story::after {
  top: 50%;
  right: 0;
  transform: translate3d(8%, 0, 0);
  background-image: url("../img/bg_grass2.jpg");

}


.p-section--story.active::before {
  animation: storyGlassCrackLeft 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-section--story.active::after {
  animation: storyGlassCrackRight 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.24s forwards;
}
.p-section--story .p-section__inner {
  position: relative;
  z-index: 1;
  padding: 140px 0;
}

.p-section--story .p-section__inner::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 122px;
  background-image: url("../img/inx__story-symbol.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index:1
}
.p-section__corner {
  position: absolute;
width: clamp(80px, 9vw, 140px);
height: clamp(80px, 9vw, 140px);
  background-image: url("../img/inx__story-corner.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* 左上 */
.p-section__corner--top-left {
  top: 0;
  left: 0;
}

/* 右上 */
.p-section__corner--top-right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

/* 左下 */
.p-section__corner--bottom-left {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}

/* 右下 */
.p-section__corner--bottom-right {
  right: 0;
  bottom: 0;
  transform: scale(-1);
}
.p-section--story .p-section__text {
  margin-bottom: 48px;
}
.p-section--story p{
  
  line-height: 3em;
}

.p-section--story .p-section__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {

.p-section--story::before,
.p-section--story::before {
  top: 13%;
}

.p-section--story::after {
  top: 75%;

}

}
@keyframes storyGlassCrackLeft {
  0% {
    opacity: 0;
    filter: brightness(1) blur(8px);
    transform: translate3d(-8%, 0, 0) scale(0.98);
  }

  24% {
    opacity: 1;
    filter: brightness(2.4) blur(0);
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  46% {
    opacity: 0.76;
    filter: brightness(1.2) blur(0);
    transform: translate3d(-2%, 0, 0) scale(1);
  }

  100% {
    opacity: 0.82;
    filter: brightness(1) blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes storyGlassCrackRight {
  0% {
    opacity: 0;
    filter: brightness(1) blur(8px);
    transform: translate3d(8%, 0, 0) scale(0.98);
  }

  24% {
    opacity: 1;
    filter: brightness(2.4) blur(0);
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  46% {
    opacity: 0.76;
    filter: brightness(1.2) blur(0);
    transform: translate3d(2%, 0, 0) scale(1);
  }

  100% {
    opacity: 0.82;
    filter: brightness(1) blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/***************************
|
|
| ★Profile Section
|
|
***************************/
.p-section--profile{
  position: relative;
  isolation: isolate;
  background-image: url(../img/bg-pattern.webp);
  background-repeat: repeat;
  background-size: 800px;
}
.p-section--profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/inx__profile-bg.webp"), url("../img/bg-text.webp");
  background-size: clamp(190px, 23vw, 360px), clamp(240px, 40vw, 560px);
  background-repeat: no-repeat, no-repeat;
  background-position: left 0 top 5%, right 0 top 34%;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

/****/
.p-profile__main{
  margin-bottom: 15%;
}
.p-profile__text {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-profile__youtube {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 88px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 15%;
}

.p-profile__youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.p-profile__youtube-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: #050508;
  cursor: pointer;
  overflow: hidden;
}

.p-profile__youtube-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-profile__youtube-button:hover .p-profile__youtube-thumb {
  opacity: 1;
  transform: scale(1.035);
}


.p-profile__youtube-play {
  position: absolute;
  inset: 50% auto auto 50%;

  width: 76px;
  aspect-ratio: 1;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.54);

  background: rgba(5,5,8,0.68);

  transform: translate(-50%, -50%);
}

.p-profile__youtube-ring {
  position: absolute;
  inset: -18px;

  width: calc(100% + 36px);
  height: calc(100% + 36px);

  overflow: visible;

  animation: rotateRing 30s linear infinite;
}

.p-profile__youtube-ring text {
  fill: rgba(255,255,255,0.85);

  font-size: 15px;
  letter-spacing: 3px;
  font-family: "Giflika";
}

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

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

.p-profile__youtube-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
  transform: translate(-50%, -50%);
}
.p-profile__youtube {
  position: relative;
}

.p-profile__youtube.is-youtube-loaded .p-profile__youtube-button {
  display: none;
}

.p-profile__youtube-stop {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,5,8,.75);
  cursor: pointer;
  font-size: 12px;
}
/**/

.p-profile__tags {
  margin-bottom: 15%;
}

.p-profile__tag-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 90px 0 0;
}

.p-profile__tag-item {
  --tag-delay: 0s;
  padding: 60px 12px 40px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0);
  position: relative;
  transform: translateY(18px);
}
.p-profile__tag-item:before{
  content:"";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 60%;
  border-top: solid transparent 1px;
}

.p-profile__tag-item:after{
  content:"";
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%) scale(0);
  width: 40px;
  height: 70px;
  background-image: url(../img/inx__tag-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transform-origin: center;
}
  

.p-profile__tag-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.p-profile__tag-item > span,
.p-profile__tag-item > button {
  opacity: 0;
  transform: translateY(8px);
}

.p-profile__tag-item:nth-child(1) {
  --tag-delay: 0s;
}

.p-profile__tag-item:nth-child(2) {
  --tag-delay: 0.12s;
}

.p-profile__tag-item:nth-child(3) {
  --tag-delay: 0.24s;
}

.p-profile__tag-item:nth-child(4) {
  --tag-delay: 0.36s;
}

.p-profile__tag-item:nth-child(5) {
  --tag-delay: 0.48s;
}

.p-profile__tag-list.is-visible .p-profile__tag-item {
  animation: tagCardIn 0.55s ease forwards;
  animation-delay: calc(var(--tag-delay) + 0.28s);
}

.p-profile__tag-list.is-visible .p-profile__tag-item:before {
  animation: tagCardCutIn 0.55s ease forwards;
  animation-delay: calc(var(--tag-delay) + 0.28s);
}

.p-profile__tag-list.is-visible .p-profile__tag-item:after {
  animation: tagIconSpark 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--tag-delay);
}

.p-profile__tag-list.is-visible .p-profile__tag-item > span,
.p-profile__tag-list.is-visible .p-profile__tag-item > button {
  animation: tagContentIn 0.45s ease forwards;
  animation-delay: calc(var(--tag-delay) + 0.46s);
}

@keyframes tagIconSpark {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }

  46% {
    opacity: 1;
    transform: translateX(-50%) scale(1.24);
    filter:
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.72))
      drop-shadow(0 0 18px rgba(170, 176, 255, 0.5));
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: drop-shadow(0 0 6px rgba(170, 176, 255, 0.28));
  }
}

@keyframes tagCardIn {
  to {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
  }
}

@keyframes tagCardCutIn {
  to {
    border-top-color: #000;
  }
}

@keyframes tagContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-profile__tag-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  line-height: 1;

  color: #fff;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  vertical-align: middle;

}
.p-profile__tag-item span.p-profile__tag-text{
color: #fff;
font-size: 15px;
text-align: center;
}
.p-profile__tag-copy::after {
  content: "";

  width: 15px;
  height: 15px;
  background-image: url("../img/inx__tag-copy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.p-profile__tag-copy:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.fadeIn,
.fadeIn-stagger > * {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fade-delay, 0s);
  will-change: opacity, filter, transform;
}

.fadeIn.active,
.fadeIn-stagger.active > * {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
/******************/
.p-profile__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.p-profile__about-text {
  margin: 0 0 40px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-profile__member-list {
  display: grid;
  gap: 20px;
}

.p-profile__member-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;display: flex;
	text-align:center
}
.p-profile__member-card--reverse .p-profile__member-image {
  order: 2;
}

.p-profile__member-card--reverse .p-profile__member-body {
  order: 1;
}
.p-profile__member-image {
}

.p-profile__member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	max-width: clamp(90px, 120px, 180px);
}


.p-profile__member-role {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.58);
}

.p-profile__member-name {
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  font-family: serif;
  font-size: 19px;
  padding-bottom: 15px;
  border-bottom: solid 1px #fff;
  position: relative;
}
.p-profile__member-name:before{
  content:"";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #fff;
  right: 10px;
  bottom: -8px;
}
.p-profile__member-name span{
  font-size: 14px;
}

.p-profile__member-text {
  margin: 15px 0 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
	text-align:left
}



@media (max-width: 768px) {
  .p-section__title {
    margin-bottom: 40px;
  }

  .p-profile__main {
    margin-bottom: 48px;
  }


  .p-profile__tag-list {
  grid-template-columns: repeat(2, 1fr);
  gap:50px 16px
    
  }

  .p-profile__bottom {
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 64px;
  }

  .p-profile__member-card {
    grid-template-columns: 1fr;
  }

  .p-profile__member-image {
    width: 100%;
    margin: 0 auto;
  }

  .p-profile__member-body {
    text-align: center;
  }
}




/*****/



.p-profile__title {
  margin: 0 0 64px;
  text-align: center;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 0, 120, 0.18);
}

.p-profile__name {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 3;
  width: 100%;
  margin: 0;
  text-align: center;
  background: rgba(255, 255, 0, 0.16);
}

.p-profile__name img {
  width: 53%;
  max-width: 620px;
}

.p-profile__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.p-profile__visual {
  position: relative;
  z-index: 2;
  width: 55%;
}


.p-profile__main-image img {
  display: block;
  width: 100%;
}

.p-profile__design-image {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 50.2%;
}

.p-profile__design-image img {
  display: block;
  width: 100%;
}



.p-profile__slider {
  position: relative;
  padding-bottom: 60px;
}

.p-profile__slides {
  position: relative;
}
/****/
.p-profile__slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.8s ease,
    visibility 0s linear 0.8s;
}

.p-profile__slide.is-active {
  position: relative;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
/* --------------------
   Main Image
-------------------- */

.p-profile__main-image {
  width: 57.2%;
  margin-left: 10px;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.p-profile__slide.is-active .p-profile__main-image {
  opacity: 1;
  transform: translateY(0);
}

.p-profile__main-image img {
  display: block;
  width: 100%;
}

/* --------------------
   Design Image
-------------------- */

.p-profile__design-image {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 50.2%;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.8s ease 0.5s,
    transform 0.8s ease 0.5s;
}

.p-profile__slide.is-active .p-profile__design-image {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------
   Slider Controls
---------------------------- */

.p-profile__slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.p-profile__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-profile__dot {
  width: 10px;
  height: 10px;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;

  background: transparent;
  cursor: pointer;

  transition: background 0.3s ease;
}

.p-profile__dot.is-active {
  background: #fff;
}

.p-profile__progress {
  position: relative;
  width: 180px;
  height: 2px;
  overflow: hidden;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.p-profile__progress-bar {
  display: block;
  width: 0%;
  height: 100%;

  background: #fff;

  animation: profileProgress 5s linear forwards;
}

@keyframes profileProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* ---------------------------
   Responsive
---------------------------- */

@media (max-width: 768px) {

  .p-profile__visual {
    width: 100%;
  }

  .p-profile__slider {
    padding-bottom: 50px;
  }

  .p-profile__main-image {
    width: 50.65%;
    margin-left: 0;
  }

  .p-profile__design-image {
    right: 0;
    width: 44.45%;
  }

  .p-profile__progress {
    width: 140px;
  }

}

.p-profile__data {
  position: relative;
  z-index: 1;
  width: 45%;
  padding-bottom: 182px;
}

.p-profile__data-title {
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 50px;
  font-family: serif;
}
.p-profile__data-title span{
  display: block;
  font-size: 11px;
  margin: 20px ;
  letter-spacing: 6px;

}

.p-profile__data-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.p-profile__data-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0;
}

.p-profile__data-item:nth-child(odd) {
  justify-self: start;
}

.p-profile__data-item:nth-child(even) {
  justify-self: end;
}
.p-profile__data-item:nth-child(n + 7) {
   grid-column: 2;
  justify-self: end;
}

.p-profile__data-item dt {
  padding: 1px 10px;
  text-align: center;
  font-size: 14px;
  color: #000;
  background: rgba(255, 255, 255, 0.86);
}

.p-profile__data-item dd {
  margin: 0;
  padding-left: 10px;
  font-size: 14px;
  color: #fff;
}

.p-profile__logos {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-profile__logo{
  width: 130px;
  aspect-ratio: 1 / 1;
  border: solid 1px #5d5d5d;
  background-color: rgba(0, 0, 0, 0.7);
}
.p-profile__logos .--kyoudan{
  background-image: url(../img/inx__profile-logo-kyoudan.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-profile__logos .--killa{
  background-image: url(../img/inx__profile-logo-killa.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


@media (max-width: 768px) {
  .p-profile__data {
    width: 100%;
    padding-bottom: 0;
  }

  .p-profile__data-list {
    grid-template-columns: 1fr;
  }

  .p-profile__data-item {
    max-width: none;
  }

  .p-profile__data-item:nth-child(odd),
  .p-profile__data-item:nth-child(even) {
    justify-self: stretch;
  }
.p-profile__data-item:nth-child(n + 7)  {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .p-profile {
    padding: 80px 0;
  }

  .p-profile__wrap {
    padding: 0 20px;
  }


  .p-profile__name {
    top: 0;
  }

  .p-profile__name img {
    width: 98%;
  }

  .p-profile__content {
    display: block;
  }

  .p-profile__visual {
    width: 100%;
    padding-top: 16%;
    margin-bottom: 25px;
  }

  .p-profile__sns {
    width: 40px;
    height: 40px;
  }

  .p-profile__main-image {
    width: 60.65%;
    margin-left: 0;
  }

  .p-profile__design-image {
    right: 0;
    width: 44.45%;
  }

  .p-profile__data {
    width: 100%;
    padding-bottom: 0;
  }

  .p-profile__data-item {
    grid-template-columns: 36% 1fr;
    margin-bottom: 5px;
  }

  .p-profile__logos {
    position: static;
    justify-content:center;
    padding-bottom: 20px;
    margin-top: 24px;
  }

}
/***************************
|
|
| Gallery Section
|
|
***************************/
.p-gallery {
  position: relative;
  margin-top: 60px;
  padding: 0 50px;
}

.p-gallery__slider {
  overflow: hidden;
}

.p-gallery__track {
  display: flex;
  transition: transform 0.5s ease;
}

.p-gallery__item {
  flex: 0 0 calc((100% - 40px) / 3);
  margin-right: 20px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 58%),
    #050505;
}

.p-gallery__item:last-child {
  margin-right: 0;
}

.p-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
}

/* =========================
arrow
========================= */

.p-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: rgb(255, 255, 255) 1px solid;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.3s;
}

.p-gallery__arrow:hover {
  opacity: 0.8;
}

.p-gallery__arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.p-gallery__arrow--prev {
  left: -28px;
}

.p-gallery__arrow--prev span {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.p-gallery__arrow--next {
  right: -28px;
}

.p-gallery__arrow--next span {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* =========================
dots
========================= */

.p-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.p-gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0);
  cursor: pointer;
  transition: 0.3s;
  border: solid 1px rgb(255, 255, 255);
  padding: 0;
  flex: 0 0 auto;
}

.p-gallery__dot.is-active {
  background: #fff;
}

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

  .p-gallery {
    margin-top: 40px;
  }

  .p-gallery__item {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .p-gallery__arrow {
    width: 44px;
    height: 44px;
  }

  .p-gallery__arrow--prev {
    left: 8px;
  }

  .p-gallery__arrow--next {
    right: 8px;
  }

}
/***************************
|
|
| blog Section
|
|
***************************/
.p-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.p-blog__card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  transition-delay: var(--fade-delay, 0s), var(--fade-delay, 0s), var(--fade-delay, 0s), 0s;
}

.p-blog__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.p-blog__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-blog__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.p-blog__body {
  padding: 22px;
}

.p-blog__date {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.p-blog__title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.p-blog__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

@media screen and (max-width: 767px) {
  .p-blog {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
.p-blog__card{
  max-width: 85%;
  margin: 0 auto;
}
  .p-blog__body {
    padding: 20px;
  }
}

/***************************
|
|
| Link Section
|
|
***************************/
.p-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;

  /* 奇数時でも中央寄せしない */
  justify-content: flex-start;
  align-items: flex-start;
}

.p-links__banner {
  width: calc(50% - 12px);
  overflow: hidden;
  display: block;
  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  transition-delay: var(--fade-delay, 0s), var(--fade-delay, 0s), var(--fade-delay, 0s), 0s;
}

.p-links__banner:hover {
  transform: translateY(-4px);
  opacity: 0.9;
  border-color: rgba(255,255,255,0.3);
}

.p-links__banner img {
  width: 100%;
  aspect-ratio: 120 / 25;
  object-fit: contain;
  display: block;
}

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

  .p-links {
    gap: 18px;
    margin-top: 40px;
  }

  .p-links__banner {
    width: 100%;
  }

}
/****/
.p-section--story .p-section__content{
  margin-top: 50px;
}
.scramble-text {
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scramble-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
main{
  position: relative;
}
canvas{
  position: fixed;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/***/

.wrap_gray {
  background-image: url(../img/bg-patternGray.webp);
  background-repeat: repeat;
  background-size: 800px;
}


.p-slant-divider {
  position: relative;
  height: 60px;
  overflow: visible;
  z-index: 0;
}

.p-slant-divider__bg {
  position: absolute;
  inset: 0;

  background-image: url("../img/bg-patternGray.webp");
  background-repeat: repeat;

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

.p-slant-divider__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;

  width: 110%;
  height: 60px;

  background: url("../img/devider.svg") center / contain repeat-x;
  transform: translate(-50%, -50%) rotate(-3deg);
  pointer-events: none;
}

@media screen and (max-width: 767px) {.p-slant-divider__deco {
  width: 100%;
  height: 40px;

  transform: translate(-50%, -50%) rotate(-6deg);
}

}
/*****/
.glitch {
  --glitch-text: "";
  --glitch-delay: 4s;
  --glitch-duration: 3s;

  position: relative;
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  color: white;
  background-color: transparent;
  animation: none;
}

.glitch::before,
.glitch::after {
  content: var(--glitch-text);
  position: absolute;
  clip: rect(0, 900px, 0, 0);
  background-color: black;
  color: white;
  animation: glitch var(--glitch-duration) infinite alternate-reverse;
  animation-delay: var(--glitch-delay);
  pointer-events: none;
}

.glitch::before {
  left: -2px;
  top: -2px;
}

.glitch::after {
  left: 2px;
  top: 2px;
}

.glitch.--kyoudan {
  --glitch-text: "死";
  --glitch-delay: 0.3s;
  --glitch-duration: 3s;
}

.glitch.--sabaki {
  --glitch-text: "裁きを";
  --glitch-delay: 0.6s;
  --glitch-duration: 2.4s;
}
.glitch.--year {
  --glitch-text: "2026年4月";
  --glitch-delay: 0.2s;
  --glitch-duration: 1.4s;
}

@keyframes glitch {
  0% {
    clip: rect(15px, 9999px, 63px, 0);
  }
  5% {
    clip: rect(42px, 9999px, 74px, 0);
  }
  10% {
    clip: rect(69px, 9999px, 70px, 0);
  }
  15% {
    clip: rect(33px, 9999px, 11px, 0);
  }
  20% {
    clip: rect(92px, 9999px, 46px, 0);
  }
  25% {
    clip: rect(31px, 9999px, 98px, 0);
  }
  30% {
    clip: rect(24px, 9999px, 83px, 0);
  }
  35% {
    clip: rect(26px, 9999px, 12px, 0);
  }
  40% {
    clip: rect(65px, 9999px, 60px, 0);
  }
  45% {
    clip: rect(3px, 9999px, 23px, 0);
  }
  50% {
    clip: rect(36px, 9999px, 84px, 0);
  }
  55% {
    clip: rect(96px, 9999px, 95px, 0);
  }
  60% {
    clip: rect(6px, 9999px, 3px, 0);
  }
  65% {
    clip: rect(63px, 9999px, 19px, 0);
  }
  70% {
    clip: rect(22px, 9999px, 22px, 0);
  }
  75% {
    clip: rect(41px, 9999px, 100px, 0);
  }
  80% {
    clip: rect(40px, 9999px, 51px, 0);
  }
  85% {
    clip: rect(64px, 9999px, 43px, 0);
  }
  90% {
    clip: rect(18px, 9999px, 86px, 0);
  }
  95% {
    clip: rect(43px, 9999px, 88px, 0);
  }
  100% {
    clip: rect(3px, 9999px, 67px, 0);
  }
}
/****/
.p-section--links{
  background-image: url("../img/inx__links-bg.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: clamp(190px, 23vw, 360px);
}
.p-section--links{
  position: relative;
  overflow: hidden;
}
.p-section--links .p-section__inner{
  position: relative;
  z-index: 1;
}
.p-section--links::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(190px, 23vw, 360px);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: opacity, filter, transform;
  top: 0;
  left: 0;
  transform: translate3d(-8%, 0, 0);
  background-image: url("../img/bg_grass2.jpg");

}
.p-section--links.active::before {
  animation: storyGlassCrackLeft 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
