@charset "UTF-8";
/* ============================================================
   祇をん 玄松 ― 多言語 準備中スプラッシュ（EN / ZH）
   ============================================================ */
*{ box-sizing:border-box; }
html,body{ margin:0; }

.splash{
  min-height:100vh; min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:48px clamp(24px,6vw,60px);
  background:#fbfaf7; color:#1d1b1a;
}
.splash__logo{ width:min(230px,62vw); height:auto; margin-bottom:clamp(40px,7vh,70px); }
.splash__msg{
  font-family:"Zen Old Mincho","游明朝","Yu Mincho",serif; font-weight:400;
  font-size:clamp(16px,2vw,22px); letter-spacing:.08em; line-height:2;
}
.splash--zh .splash__msg{ font-family:"Songti SC","STSong","SimSun","Noto Serif SC",serif; }
.splash__btn{
  margin-top:clamp(36px,6vh,56px);
  display:inline-flex; align-items:center; gap:12px; padding:15px 46px;
  border:1px solid #262329; color:#262329; text-decoration:none;
  font-family:"Zen Old Mincho","游明朝",serif; font-size:14.5px; letter-spacing:.14em;
  transition:background .35s var(--ease,ease), color .35s var(--ease,ease);
}
.splash--zh .splash__btn{ font-family:"Songti SC","STSong","SimSun",serif; }
.splash__btn::after{ content:"→"; font-size:13px; }
.splash__btn:hover{ background:#262329; color:#fbfaf7; }
