:root {
    --pink-light: #FDE8EE;
    --pink:       #F9C8D4;
    --pink-mid:   #F0A0B8;
    --pink-deep:  #E07898;
    --cream:      #FFF8FA;
    --red:        #D85070;
    --red-soft:   #E07898;
    --brown:      #7A4F56;
    --white:      #FFFFFF;
    --text:       #3D2B30;
    --text-soft:  #9A7080;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: var(--cream);
    color: var(--text);
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, var(--pink-mid) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
  }

  /* HEADER */
  header {
    position: relative; z-index: 10;
    background: var(--pink);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2.5px solid var(--pink-mid);
  }
  .logo-en { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--red); letter-spacing: 0.05em; display: block; }
  .logo-jp { font-family: 'Zen Maru Gothic', sans-serif; font-size: 10px; color: var(--brown); letter-spacing: 0.18em; margin-top: 2px; display: block; }
  nav { display: flex; gap: 20px; }
  nav a { font-family: 'Zen Maru Gothic', sans-serif; font-size: 12px; color: var(--brown); text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
  nav a:hover { color: var(--red); }

  /* HERO */
  .hero {
    position: relative; z-index: 1;
    min-height: 88vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 60px 24px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
  }

  /* ★ キャラ差し替えエリア ★ */
  .hero-char {
    width: 160px; height: 160px;
    margin-bottom: 28px;
    animation: float 3.2s ease-in-out infinite;
  }
  .hero-char img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
  }

  .hero-catch { font-family: 'Zen Maru Gothic', sans-serif; font-size: 11px; letter-spacing: 0.35em; color: var(--pink-deep); margin-bottom: 10px; }
  .hero-title { font-family: 'DM Serif Display', serif; font-size: clamp(50px, 10vw, 86px); color: var(--red); line-height: 0.9; margin-bottom: 8px; letter-spacing: -0.02em; }
  .hero-title-jp { font-family: 'Zen Maru Gothic', sans-serif; font-size: 15px; color: var(--pink-deep); letter-spacing: 0.3em; margin-bottom: 24px; }
  .hero-desc { font-size: 13px; color: var(--text-soft); line-height: 2; max-width: 300px; letter-spacing: 0.04em; }

  /* BUBBLE DIVIDER */
  .bubble-divider {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 16px 0;
  }
  .bubble-divider::before, .bubble-divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-mid), transparent);
  }
  .bubbles { display: flex; gap: 6px; align-items: center; }
  .bubble { border-radius: 50%; background: var(--pink); border: 1.5px solid var(--pink-mid); animation: bfloat 2.5s ease-in-out infinite; }
  .bubble:nth-child(1) { width: 10px; height: 10px; animation-delay: 0s; }
  .bubble:nth-child(2) { width: 16px; height: 16px; animation-delay: 0.3s; }
  .bubble:nth-child(3) { width: 10px; height: 10px; animation-delay: 0.6s; }
  @keyframes bfloat {
    0%, 100% { transform: translateY(0); opacity: 0.65; }
    50%       { transform: translateY(-5px); opacity: 1; }
  }

  /* SECTIONS */
  .section { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 52px 24px; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'DM Serif Display', serif; font-size: 11px; letter-spacing: 0.3em;
    color: var(--red-soft); text-transform: uppercase; margin-bottom: 18px;
  }
  .section-label::before, .section-label::after { content: ''; display: block; width: 18px; height: 1px; background: var(--pink-mid); }
  .section-title { font-family: 'Zen Maru Gothic', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 20px; line-height: 1.5; }

  /* ABOUT */
  .about-card {
    background: var(--white); border-radius: 24px; padding: 32px 26px;
    border: 2px solid var(--pink); position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(240,160,184,0.12);
    /* 背景画像の表示設定 */
    background-size: 75%;          /* カードの幅の75%のサイズで表示（好みで変更OK）*/
    background-position: center;   /* カード中央に配置 */
    background-repeat: no-repeat;  /* 繰り返しなし */
  }
  .about-card::before { content: '🐰'; position: absolute; right: 18px; top: 16px; font-size: 44px; opacity: 0.12; }
  .about-text { font-size: 14px; line-height: 2.1; color: var(--text-soft); }
  .about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .tag { background: var(--pink-light); color: var(--red); font-family: 'Zen Maru Gothic', sans-serif; font-size: 11px; padding: 5px 14px; border-radius: 99px; border: 1px solid var(--pink); letter-spacing: 0.05em; }

  /* BLOG */
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-card {
    background: var(--white); border-radius: 20px; padding: 22px 18px;
    border: 2px solid var(--pink);
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer; position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(240,160,184,0.08);
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(240,160,184,0.2); }
  .blog-card.featured { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; }
  .blog-emoji { font-size: 30px; flex-shrink: 0; }
  .blog-category { font-family: 'DM Serif Display', serif; font-size: 10px; letter-spacing: 0.2em; color: var(--pink-deep); text-transform: uppercase; margin-bottom: 5px; }
  .blog-title { font-family: 'Zen Maru Gothic', sans-serif; font-size: 13px; font-weight: 700; line-height: 1.55; color: var(--text); margin-bottom: 5px; }
  .blog-date { font-size: 10px; color: var(--text-soft); letter-spacing: 0.06em; }
  .dot-accent { position: absolute; right: 12px; top: 12px; width: 7px; height: 7px; background: var(--pink); border-radius: 50%; }

  /* SHOP */
  .shop-card {
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--red) 100%);
    border-radius: 24px; padding: 36px 28px; color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 8px 32px rgba(216,80,112,0.25);
  }
  .shop-card::after { content: ''; position: absolute; right: -24px; bottom: -24px; width: 130px; height: 130px; background: rgba(255,255,255,0.07); border-radius: 50%; }
  .shop-title { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--white); margin-bottom: 6px; }
  .shop-sub { font-family: 'Zen Maru Gothic', sans-serif; font-size: 11px; letter-spacing: 0.22em; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
  .shop-desc { font-size: 13px; line-height: 2; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
  .shop-btn {
    display: inline-block; background: var(--white); color: var(--red);
    font-family: 'Zen Maru Gothic', sans-serif; font-size: 13px; font-weight: 700;
    padding: 12px 28px; border-radius: 99px; text-decoration: none;
    letter-spacing: 0.1em; transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .shop-btn:hover { transform: scale(1.04); }
  .soon-badge {
    display: inline-block; background: rgba(255,255,255,0.2); color: var(--white);
    font-size: 10px; font-family: 'Zen Maru Gothic', sans-serif;
    padding: 2px 10px; border-radius: 99px; margin-left: 8px;
    vertical-align: middle; letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.3);
  }

  /* FOOTER */
  .footer-gingham {
    position: relative; z-index: 1; height: 28px;
    background-image:
      repeating-linear-gradient(90deg, var(--pink) 0px, var(--pink) 20px, transparent 20px, transparent 40px),
      repeating-linear-gradient(0deg, var(--pink) 0px, var(--pink) 20px, transparent 20px, transparent 40px);
    background-color: var(--pink-light);
    opacity: 0.7;
  }
  footer { position: relative; z-index: 1; background: var(--text); padding: 40px 24px; text-align: center; }
  .footer-logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--pink); margin-bottom: 6px; }
  .footer-sub { font-family: 'Zen Maru Gothic', sans-serif; font-size: 11px; color: var(--text-soft); letter-spacing: 0.2em; margin-bottom: 20px; }
  .footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 22px; }
  .footer-links a { color: rgba(255,255,255,0.4); font-size: 12px; text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
  .footer-links a:hover { color: var(--pink); }
  .footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.1em; }

  .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
