:root{
  --bg:#0e0e0e;
  --text:#f5f5f5;
  --muted:#999;
  --accent:#c9a063;
}

/* base */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  min-height:100%;
}

body{
  font-family:"Noto Sans JP",sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* layout */
.coming{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  padding:40px 20px;
}

/* logo */
.coming__logo{
  width:120px;
}

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

/* content */
.coming__content{
  text-align:center;
}

.coming__lead{
  font-size:14px;
  letter-spacing:.2em;
  color:var(--muted);
  margin-bottom:24px;
}

.coming__title{
  font-family:"Yuji Syuku",serif;
  font-size:clamp(48px,6vw,90px);
  letter-spacing:.2em;
  line-height:0.6;
  margin-bottom:30px;
  animation:fadeUp 1.2s ease;
}

.coming__company{
  display:block;
  font-size:0.3em;
  letter-spacing:0.18em;
  margin-bottom:0;
  color:#aaa;
}

.coming__soon{
  font-size:14px;
  letter-spacing:.4em;
  color:var(--accent);
  margin-bottom:30px;
  animation:fadeUp 1.5s ease;
}

.coming__text{
  font-size:14px;
  line-height:2;
  color:var(--muted);
}

/* footer */
.coming__footer{
  font-size:12px;
  color:#666;
}

/* animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}