@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body {
	line-height: 1;
	color: #fff;
}
html {

	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Arial ", sans-serif;
	position: relative;
	letter-spacing: 1px
}
.en-f {
font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {

}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom
}
sup {
	font-size: 1.3rem
}
.container{
	margin: 0 auto;
	width:  auto;
	max-width: 430px;
	padding: 20px;
	
}
video {
	vertical-align: bottom;
}




.mv {
  position: relative;
  overflow: hidden;
}

.mv video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1; /* 動画を下層に */
}

.mv::before {
  content: "";
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0; */
  pointer-events: none;  /* クリックを邪魔しない */
  z-index: 2;
  
}

.mv::before {
  content:"";
  position:absolute; inset:0;
  pointer-events:none; z-index:2;
  opacity: .2;
  /* 1) 背景をストライプとノイズの2つに */
  background:

    url("../img/noise.png") repeat;

  /* 2) サイズはそれぞれ指定 */
  background-size:
    /* ストライプの1セット幅 */
    25vw 25vw,
    /* ノイズは全体を覆う */
    cover;

  /* 4) ノイズのチラつき */
  animation:
    stripe-move 20s linear infinite,
    noise-flicker 0.2s steps(2) infinite;
}

@keyframes stripe-move {
  from { background-position: 0 0, 0 0; }
  to   { background-position: -25vw -25vw, 0 0; }
}
@keyframes noise-flicker {
  to { background-position: 0 0, -100px -100px; }
}
.mv-ttl-box {
	position: absolute;
	left: 2%;
	bottom: 3%;
	z-index: 99;
	color: #fff;
	display: inline-block;
  
}

.ttl-jp {
	font-size: 1.8vw;
	margin-bottom: 10px;
}
.ttl-en  {
	font-size: 10vw;
}

.ttl-anim {
  display: inline-block;          /* ブロック扱いで transform を効かせる */
  transform: translateY(100%)      /* 下からスタート */
  			 scaleY(2);             /* 縦に伸ばして滲み感 */
  filter: blur(40px);              /* 強めにぼかす */
  opacity: 0;                      /* 透明から始める */
 
}
.ttl-anim.is-visible {
  animation: bleedReveal 1.2s ease-out forwards;
  /* 必要に応じてディレイもここで */
  animation-delay: 0.2s;
}



/* ④ キーフレーム定義 */
@keyframes bleedReveal {
  0% {
    transform: translateY(100%) scaleY(1.5);
    filter: blur(50px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%) scaleY(1.05);
    filter: blur(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scaleY(1);
    filter: blur(0);
    opacity: 1;
  }
}
header {
	position: fixed;
	top: 3%;
	left: 10%;
	z-index: 10;
	width: 80%;
	
}

.logo {
	color: #fff;
	text-align: center;
	font-size: 2vw;
}





.with-noise {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #000;
}

.with-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/noise.png') repeat;
  opacity: 0.15;
  animation: noise 0.2s steps(2) infinite;
  pointer-events: none;

}

/* noise keyframes は上と同じ */
@keyframes noise {
  to { background-position: -200px -200px; }
}
.cont {
	padding: 15% 5% 10%;
}
.cont-ttl {
	font-size: 8vw;
	margin-bottom: 5%;
}
.ab-tx {
	font-size: 2.2vw;
	line-height: 1.5;
	width: 65%;
}
.d-f {
	display: flex;
	justify-content: space-between;
}


.fade-in-text {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
}

.reveal-text {
  position: relative;
  overflow: hidden;
}

.reveal-text .text {
  display: inline-block;
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.2);
  color: #fff; /* はっきり見せる色に変更 */
  transition: all 1.4s ease;
}
.ab-tx.com {
	font-size: 2vw;
}

.jigyou {
	margin-top: 5%;
}
footer.with-noise {
	min-height: inherit;
	text-align: center;
	color: #4e4e4e;
	padding: 10% 0 5%;
}


/* メニューボタン（右上） */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  z-index: 1001;
  cursor: pointer;
}
.menu-toggle .dot {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 50%;
}

/* フルスクリーンメニューの覆う波紋部分 */
.full-menu::before {
  content: "";
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: top right;
  transition: transform 0.7s ease;
  z-index: 998;
}

/* アクティブで波紋が広がる */
.full-menu.active::before {
  transform: scale(200); /* 全画面を覆うサイズ */
  
}

/* メニュー本体（テキスト） */
.full-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー内容 */
.menu-inner {
  text-align: center;
  z-index: 1002;
  position: relative;
}

.menu-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.menu-nav a {
  display: block;
  margin: 1rem 0;
  font-size: 1.4rem;
  color: black;
  text-decoration: none;
}
.d-pc {
	display: block;
}
.d-sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
.d-pc {
	display: none;
}
.d-sp {
	display: block !important;
}
.d-f {
	display: block;
	justify-content: space-between;
}

.ttl-jp {
	font-size: 5vw;
	margin-bottom: 10px;
}
.ttl-en  {
	font-size: 20vw;
}

.cont-ttl {
	font-size: 18vw;
	margin-bottom: 10%;
}
.ab-tx {
	width: 100%;
font-size: 4vw;
}

.ab-tx.com {

font-size: 4vw;
}


footer.with-noise {
	padding: 30% 0 20%;
}

.cont {
	padding: 30% 5% 10%;
}



}