/* ────────────────
  font
──────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Noto+Sans+JP:wght@400;700&display=swap');
/* Google Fonts 読み込み */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&display=swap');

body, .jp {
    word-break: auto-phrase;
    font-size:1em;
    font-weight: 500;
    color:#67424B;
  font-family: 'Cormorant Unicase' 'Zen Maru Gothic', sans-serif;
}

.en {
  font-family: 'Cormorant Unicase', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

 

/* ────────────────
  menu
──────────────── */

.menu1,.menu2,.menu3,.menu4,.menu5,.menu6 {
  gap: 8px;
}

a{cursor: crosshair;}

/* ────────────────
  H
──────────────── */

/* パステルh1 */

.lux-title {
  display: block;
  padding: 11px 20px;
    text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 16px;
  letter-spacing: 2px;

  /* 🌈 動くグラデーション背景 */
  background: linear-gradient(45deg, #FFCFE6, #9ED6FF, #D1B8FF, #FFCFE6);
  background-size: 300% 300%; /* ← ゆっくり動かすために広くしておく */
  animation: moveGradient 14s ease infinite;

  color: #fff;
  text-shadow:
    0 0 4px rgba(255,255,255,0.7),
    0 0 8px rgba(255,255,255,0.5);

  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.4),
    0 2px 10px rgba(0,0,0,0.15);

  backdrop-filter: blur(2px);
  transition: 0.3s ease;
}

/* ✨ グラデがゆる〜く横に移動するアニメーション */
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.lux-title:hover {
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.5),
    0 4px 16px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* クリアh1 */

.lux-clear {
    /* ぼかしエフェクト */
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(222, 183, 242, 0.4);
  /* 🌈 動くグラデーション背景 */
  background: linear-gradient(45deg, #ffffff80, #ffffff80) !important;

}




h2 {
    font-family: 'Kaisei Decol';
  margin-top: 20px;
  font-size: 1.1em;
  color: var(--main-color);
}

p{
          font-family: 'Cormorant Unicase','Zen Maru Gothic', serif; 
    
}

.decol {
    font-family: 'Kaisei Decol';
}

.red{
    color:#F95272;
    
}

/* ────────────────
  Title
──────────────── */



/* ────────────────
  グラデ文字
──────────────── */
.menu-wrap {
  position: relative;
  display: inline-block;
}

/* 太め文字（前面） */
.gr-bold{
    font-size:1.2em!important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
}

/* グラデ文字（前面） */
.gr-text1 {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(90deg, #B12766 0%, #5627B1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 発光（背面） */
.bright-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: transparent;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1);
  pointer-events: none; /* クリック邪魔しない */
    mix-blend-mode:color-dodge;
}


/* ────────────────
  キャラネーム
──────────────── */

.char-name {
    font-family: 'Kaisei Decol';
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.char-name span {
  font-family: 'Cormorant Unicase',"Kaisei Decol", serif;  
  font-size: 0.6em;
  color: var(--main-color);
}

/* 推しマーク絵文字部分 */
.emoji {
  margin-left: 10px;
  font-size: 0.9em;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Twemoji Mozilla', sans-serif;
  vertical-align: middle;
}

