
/* ======================================================
   STEP 3-2: COLOR PANEL CSS CONSOLIDATION
   - Consolidated only exact repeated selectors in the same CSS scope.
   - Removed only earlier declarations overridden by a later declaration
     with the same property and the same !important status.
   - HTML, JavaScript, animations and omikuji logic are unchanged.
   ====================================================== */

/* ======================================================
   STEP 3-1: SAFE COMPONENT CSS CONSOLIDATION
   - Consolidated repeated .stamp-subtitle declarations.
   - Consolidated repeated #stamps .c-btn--line-small declarations.
   - Final computed declarations and responsive behavior are preserved.
   - HTML, JavaScript, animations and omikuji logic are unchanged.
   ====================================================== */

/* ======================================================
   STEP 2-2: SAFE EXACT-DUPLICATE CSS CONSOLIDATION
   - Removed only byte-equivalent selector/declaration rules within the same CSS scope.
   - Cascade order, HTML, JavaScript, animations and omikuji logic are unchanged.
   ====================================================== */

/* ======================================================
   PHASE C-4: Utility Layer (non-breaking)
   Shared utilities added only. Existing selectors remain.
   ====================================================== */
.u-w-100{width:100%}
.u-h-100{height:100%}
.u-relative{position:relative}
.u-absolute{position:absolute}
.u-mx-auto{margin-left:auto;margin-right:auto}
.u-img-cover{object-fit:cover}
.u-img-contain{object-fit:var(--media-fit-contain,contain)}
.u-radius-pill{border-radius:var(--radius-pill,999px)}

/* ======================================================
   PHASE B: CSS ARCHITECTURE — COMPATIBILITY MODE
   Existing selectors remain active. BEM aliases and design
   tokens are introduced without changing current rendering.
   ====================================================== */

/* ---------- Design Tokens ---------- */
:root{
  --color-transparent:transparent;
  --color-white:#fff;
  --color-black:#000;
  --radius-sm:12px;
  --radius-md:16px;
  --radius-lg:20px;
  --radius-pill:999px;
  --duration-fast:.2s;
  --duration-normal:.25s;
  --duration-slow:.3s;
  --ease-standard:ease;
  --ease-out:ease-out;
  --media-fit-contain:contain;
  --shadow-none:none;
}

/* ---------- Components: Buttons ---------- */

/* ---------- Components: Cards ---------- */


/* ---------- Components: Media ---------- */


/* ---------- Utilities ---------- */
.u-img-contain{object-fit:var(--media-fit-contain)}
.u-bg-transparent{background:var(--color-transparent)}
.u-flex{display:flex}
.u-inline-flex{display:inline-flex}
.u-items-center{align-items:center}
.u-justify-center{justify-content:center}
.u-flex-center{display:flex;align-items:center;justify-content:center}
.u-text-center{text-align:center}
.u-block{display:block}
.u-hidden{display:none}
.u-radius-md{border-radius:var(--radius-md)}
.u-radius-lg{border-radius:var(--radius-lg)}
.u-shadow-none{box-shadow:var(--shadow-none)}

/* PHASE A compatibility markers retained in HTML; duplicate placeholder CSS removed. */
/* ======================================================
   FINAL EDITION
   - Components organized
   - Shared utilities introduced
   - Safe duplicate cleanup
   - Safe CSS variable adoption
   - Safe !important reduction
   ====================================================== */

/* ===== 01 CORE / BASE / MAIN COMPONENT STYLES (ORDER PRESERVED) ===== */
:root{--r:#E8321A;--g:#E8A020;--g2:#FFD040;--pk:#FF6890;--pk2:#FFB0C8;--ink:#1A0800;--bg:#FFFBF0}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:"Kosugi Maru",sans-serif;background:var(--bg);color:var(--ink);overflow-x:hidden}.floaters{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden}.fl{position:absolute;animation:flUp linear infinite;opacity:0}@keyframes flUp{0%{transform:translateY(110vh) rotate(0);opacity:0}10%,90%{opacity:.5}100%{transform:translateY(-10vh) rotate(720deg);opacity:0}}.hero{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;overflow:hidden;padding:80px 20px 60px;background:radial-gradient(ellipse at 30% 40%,#FFE8B0 0%,transparent 60%),radial-gradient(ellipse at 70% 70%,#FFD0C0 0%,transparent 55%),#FFFBF0;z-index:1}@keyframes breathe{0%,100%{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.1)}}@keyframes kiraSpin{0%,100%{transform:scale(1) rotate(0);opacity:1}50%{transform:scale(1.4) rotate(180deg);opacity:.5}}@keyframes miniFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes heroFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-16px) rotate(1deg)}}@keyframes scrollBob{0%,100%{transform:translateY(0);opacity:.6}50%{transform:translateY(6px);opacity:1}}nav{position:sticky;top:0;z-index:200;background:rgba(26,8,0,.95);backdrop-filter:blur(12px);border-bottom:3px solid var(--g2);padding:10px 20px;display:flex;align-items:center;justify-content:space-between;gap:10px}.nav-logo{font-size:20px;font-weight:900;color:var(--g2);letter-spacing:.08em;white-space:nowrap}.nav-links{display:flex;gap:4px;list-style:none;flex-wrap:wrap;justify-content:flex-end}.nav-links a{color:rgba(255,255,255,.78);text-decoration:none;font-size:11px;font-weight:700;letter-spacing:.08em;padding:5px 11px;border-radius:var(--radius-lg);transition:.18s}.nav-links a:hover{background:var(--r);color:#fff}.sec{position:relative;z-index:1;padding:72px 20px}.sec-inner{max-width:930px;margin:0 auto}.sec-head{text-align:center;margin-bottom:44px}.sec-en{font-size:10px;letter-spacing:.45em;color:var(--g);font-weight:900;display:block;margin-bottom:-10px}.sec-title{font-family:"Noto Sans JP",sans-serif;font-size:clamp(28px,6vw,46px);font-weight:900;letter-spacing:.08em;background:linear-gradient(135deg,var(--r),var(--g));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.fun-divider{height:8px;background:repeating-linear-gradient(90deg,var(--r) 0,var(--r) 18px,var(--g2) 18px,var(--g2) 36px,var(--pk) 36px,var(--pk) 54px,#80D0FF 54px,#80D0FF 72px,#A0E090 72px,#A0E090 90px,#D090F0 90px,#D090F0 108px);opacity:.7}.bg-cream{background:var(--bg)}.bg-soft{background:var(--img-bg);0F8}.bg-warm{background:var(--img-bg);8E8}.bg-dark{background:#1A0800}.profile-wrap{display:grid;grid-template-columns:auto 1fr;gap:36px;align-items:start;max-width:780px;margin:0 auto}@media(max-width:640px){.profile-wrap{grid-template-columns:1fr}}.profile-icon-col{display:flex;flex-direction:column;align-items:center;gap:14px}.profile-icon{width:168px;height:168px;border-radius:50%;border:5px solid var(--g2);overflow:hidden;box-shadow:0 8px 28px rgba(232,160,32,.3),0 0 0 8px rgba(232,160,32,.1)}.profile-icon img{width:100%;height:100%;object-fit:var(--img-fit);background:var(--img-bg)}
/* ================= BUTTONS ================= */
/* ===== BUTTON COMPONENT ===== */
.c-btn--follow{background:linear-gradient(135deg,var(--r),var(--pk));color:#fff;border:none;border-radius:30px;font-size:13px;font-weight:900;letter-spacing:.08em;padding:10px 28px;box-shadow:0 4px 16px rgba(232,50,26,.35);font-family:"Kosugi Maru",sans-serif}.prof-name{font-size:28px;font-weight:900;letter-spacing:.08em;margin-bottom:4px}.prof-id{font-size:13px;color:#888;margin-bottom:14px}.prof-bio{border-radius:var(--radius-md);padding:18px 20px;border:2px solid var(--pk2);font-size:14px;line-height:2;margin-bottom:16px;box-shadow:0 3px 14px rgba(255,104,144,.1)}.prof-stats{display:flex;gap:20px;margin-bottom:16px;flex-wrap:wrap}.stat-num{font-size:22px;font-weight:900;color:var(--r);display:block;line-height:1}.stat-label{font-size:11px;color:#888;letter-spacing:.08em}.prof-tags{display:flex;flex-wrap:wrap;gap:7px}.ptag{font-size:12px;font-weight:700;padding:4px 12px;border-radius:var(--radius-lg)}.ptag-r{background:#FFE8E0;color:var(--r)}.ptag-g{background:var(--img-bg);0C0;color:var(--g)}.ptag-p{background:#FFE0EC;color:var(--pk)}.ptag-b{background:#E0F0FF;color:#3080D0}.ptag-gr{background:#E0F8E0;color:#289040}/* ===== CARD COMPONENT:STORY CARD ===== */
/* uses shared card/flex utilities */
.stamp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px}/* ===== CARD COMPONENT:STAMP CARD ===== */
/* uses shared card/flex utilities */
.c-card--stamp{border-radius:var(--radius-lg);border:2.5px solid #F0E0C0;overflow:hidden;box-shadow:4px 4px 0 #F0D080;transition:.2s;position:relative}.c-card--stamp:hover{transform:translateY(-10px) rotate(-2deg) scale(1.05);box-shadow:6px 14px 0 var(--r);border-color:var(--r)}.c-card--stamp img{width:100%;aspect-ratio:1;object-fit:var(--img-fit);display:block;padding:6px}.stamp-label{font-size:12px;font-weight:900;text-align:center;padding:8px 4px;border-top:1px solid #f3e2c3;color:#5b2b16}.heart-pop{position:absolute;top:6px;right:8px;font-size:20px;opacity:0;transition:.3s;pointer-events:none}.c-card--stamp:hover .heart-pop{opacity:1;transform:scale(1.3)}.color-css input{position:absolute;opacity:0;pointer-events:none}.color-tabs{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:32px}.ctab{border:3px solid var(--c);color:var(--c);border-radius:40px;font-size:13px;font-weight:900;padding:8px 20px;cursor:pointer;transition:.2s;font-family:"Kosugi Maru",sans-serif}.ctab:hover{transform:scale(1.10)}.color-panels{display:grid}.color-panel{grid-area:1/1;opacity:0;visibility:hidden;transform:translateY(14px) scale(.96);transition:.25s;display:flex;flex-direction:column;align-items:center;gap:24px}.color-panel .cv-img-wrap{animation:cvFloat 3s ease-in-out infinite}@keyframes cvFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}.color-panel img{width:clamp(220px,52vw,340px);border-radius:30px;filter:drop-shadow(0 16px 32px rgba(0,0,0,.18));background:var(--img-bg)}.cv-info{text-align:center;max-width:500px;border-radius:var(--radius-lg);padding:24px 28px;border:3px solid var(--c);box-shadow:5px 5px 0 var(--c)}.cv-name{font-size:28px;font-weight:900;margin-bottom:8px;color:var(--c)}.cv-keyword{font-size:16px;font-weight:700;margin-bottom:12px;color:var(--c)}.cv-desc{font-size:14px;line-height:1.9;color:#555}.cv-tags{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;margin-top:14px}.cv-tags span{font-size:12px;font-weight:700;padding:4px 14px;border-radius:var(--radius-lg);color:#fff;background:var(--c)}#c-red:checked~.color-tabs .tab-red,#c-pink:checked~.color-tabs .tab-pink,#c-yellow:checked~.color-tabs .tab-yellow,#c-orange:checked~.color-tabs .tab-orange,#c-green:checked~.color-tabs .tab-green,#c-blue:checked~.color-tabs .tab-blue,#c-purple:checked~.color-tabs .tab-purple{background:var(--c);color:#fff;transform:scale(1.10)}#c-red:checked~.color-panels .panel-red,#c-pink:checked~.color-panels .panel-pink,#c-yellow:checked~.color-panels .panel-yellow,#c-orange:checked~.color-panels .panel-orange,#c-green:checked~.color-panels .panel-green,#c-blue:checked~.color-panels .panel-blue,#c-purple:checked~.color-panels .panel-purple{opacity:1;visibility:visible;transform:translateY(0) scale(1)}/* ===== CARD COMPONENTS:SHARED BASE ===== */

/* ===== CARD COMPONENT:SECRET CARD ===== */
/* ===== CARD COMPONENT:POWER CARD ===== */
.gacha-wrap{max-width:720px;margin:0 auto;text-align:center}.gacha-machine{background:linear-gradient(135deg,#FFE8C0,#FFCCA0);border:4px solid var(--g);border-radius:24px;padding:28px 24px 20px;box-shadow:6px 6px 0 var(--g);margin-bottom:20px;position:relative}.gacha-machine::before{content:"";font-size:48px;display:block;margin-bottom:8px}.fortune-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:10px;margin-top:14px}
/* ================= BUTTONS ================= */
/* ===== BUTTON COMPONENT ===== */
.c-card--fortune img{width:min(260px,80vw);border-radius:18px;background:var(--img-bg)}.again{display:inline-block;margin-top:14px;color:var(--r);font-weight:900}footer{background:var(--ink);color:#fff;text-align:center;padding:52px 20px 40px;position:relative;z-index:1}footer::before{content:"";display:block;height:8px;background:repeating-linear-gradient(90deg,var(--r) 0,var(--r) 18px,var(--g2) 18px,var(--g2) 36px,var(--pk) 36px,var(--pk) 54px,#80D0FF 54px,#80D0FF 72px,#A0E090 72px,#A0E090 90px,#D090F0 90px,#D090F0 108px);margin-bottom:40px}.foot-logo{font-family:"Noto Sans JP",sans-serif;font-size:40px;font-weight:900;background:linear-gradient(135deg,var(--r),var(--g2),var(--pk));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:16px}footer p{font-size:11px;color:rgba(255,255,255,.3);letter-spacing:.1em}@media(max-width:720px){nav{align-items:flex-start;flex-direction:column;padding:10px 14px}.nav-links{justify-content:flex-start}.nav-links a{font-size:10px;padding:5px 8px}}.fortune-links.image-fortune-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(86px,1fr));gap:14px;margin-top:0}
/* ================= BUTTONS ================= */
/* ===== BUTTON COMPONENT ===== */
.c-media--fortune-button{display:flex;align-items:center;justify-content:center;min-height:96px;border:3px solid var(--g2);border-radius:24px;box-shadow:4px 4px 0 var(--g);text-decoration:none;transition:transform .18s cubic-bezier(.34,1.56,.64,1),box-shadow .18s;overflow:hidden}.c-media--fortune-button:hover,.c-media--fortune-button:focus{transform:translateY(-6px) rotate(-2deg) scale(1.05);box-shadow:6px 10px 0 var(--r);border-color:var(--r)}.c-media--fortune-button img{width:82px;height:82px;object-fit:var(--img-fit);display:block}.fortune-default{border:3px dashed var(--g2);border-radius:22px;padding:18px;margin:18px auto 0;max-width:440px;font-weight:900}/* ===== CARD COMPONENT:FORTUNE CARD ===== */
/* uses shared card/flex utilities */
.c-card--fortune{display:none;border:3px solid var(--g2);border-radius:24px;padding:20px;margin:18px auto 0;max-width:440px;box-shadow:6px 6px 0 var(--g2)}.c-card--fortune:target{display:block}body:has(.c-card--fortune:target) .fortune-default{display:none}.c-card--fortune img{width:min(260px,80vw);border-radius:18px;object-fit:var(--img-fit)}.c-card--fortune h3{font-size:26px;color:var(--r);margin:12px 0 8px}.c-card--fortune p{font-size:15px;line-height:1.8;font-weight:900}@media(max-width:520px){.fortune-links.image-fortune-links{grid-template-columns:repeat(4,1fr);gap:9px}.c-media--fortune-button{min-height:76px;border-radius:var(--radius-md)}.c-media--fortune-button img{width:64px;height:64px}}.omamori-mark{width:62px;height:62px;object-fit:var(--img-fit);vertical-align:-16px;margin-bottom:10px;filter:drop-shadow(0 2px 5px rgba(0,0,0,.18))}.color-grid,.color-tabs{display:grid!important;grid-template-columns:repeat(2,minmax(130px,1fr))!important;gap:14px!important;width:100%!important;max-width:460px!important;margin:0 auto 28px!important}.emoji-icon-fire-darumon,.mini-fire-darumon,.fire-mark{width:38px!important;height:38px!important;max-width:38px!important;max-height:38px!important;min-width:38px!important;min-height:38px!important;display:inline-block!important;object-fit:var(--img-fit);object-position:center!important;vertical-align:-9px!important;margin:0 6px 0 0!important;padding:0!important;background:var(--img-bg);background-color:transparent;border:0;border-radius:0!important;box-shadow:none;filter:drop-shadow(0 1px 2px rgba(0,0,0,.18))!important}@media(max-width:520px){.color-grid,.color-tabs{grid-template-columns:repeat(2,1fr)!important;gap:10px!important}.emoji-icon-fire-darumon,.mini-fire-darumon,.fire-mark,.c-card--power .emoji-icon-fire-darumon,.c-card--power .mini-fire-darumon,.c-card--power .fire-mark{width:30px!important;height:30px!important;max-width:30px!important;max-height:30px!important;min-width:30px!important;min-height:30px!important;vertical-align:-7px!important}}.pink-love-icon{width:38px!important;height:38px!important;max-width:38px!important;max-height:38px!important;min-width:38px!important;min-height:38px!important;display:inline-block!important;object-fit:var(--img-fit);object-position:center!important;vertical-align:-9px!important;margin:0 6px 0 0!important;padding:0!important;background:var(--img-bg);background-color:transparent;border:0;border-radius:0!important;box-shadow:none;filter:drop-shadow(0 1px 2px rgba(0,0,0,.18))!important}@media(max-width:520px){.pink-love-icon{width:30px!important;height:30px!important;max-width:30px!important;max-height:30px!important;min-width:30px!important;min-height:30px!important;vertical-align:-7px!important}}.gold-spark-icon{width:42px!important;height:42px!important;max-width:42px!important;max-height:42px!important;min-width:42px!important;min-height:42px!important;display:inline-block!important;object-fit:var(--img-fit);object-position:center!important;vertical-align:-10px!important;margin:0 8px 0 0!important;padding:0!important;background:var(--img-bg);background-color:transparent;border:0;border-radius:0!important;box-shadow:none;filter:drop-shadow(0 1px 2px rgba(0,0,0,.18))!important}@media(max-width:520px){.gold-spark-icon{width:34px!important;height:34px!important;max-width:34px!important;max-height:34px!important;min-width:34px!important;min-height:34px!important;vertical-align:-8px!important}}.blue-wave-icon{width:2.2em!important;height:2.2em!important;vertical-align:-0.5em!important;display:inline-block!important;object-fit:var(--img-fit);background:var(--img-bg);margin-right:0.18em!important}.orange-star-icon{width:2.1em!important;height:2.1em!important;vertical-align:-0.45em!important;display:inline-block!important;object-fit:var(--img-fit);background:var(--img-bg);margin-right:0.18em!important}.green-leaf-icon{width:2.1em!important;height:2.1em!important;vertical-align:-0.45em!important;display:inline-block!important;object-fit:var(--img-fit);background:var(--img-bg);margin-right:0.18em!important}.purple-magic-icon{width:2.35em!important;height:2.35em!important;vertical-align:-0.58em!important;display:inline-block!important;object-fit:var(--img-fit);background:var(--img-bg);margin-right:0.20em!important}/* ===== SHARED IMAGE / UTILITY COMPONENTS ===== */
.c-media--hero-badge,.c-media--support-power,.c-media--color-icon,.c-media--fortune-custom,.c-media--secret-fuku{object-fit:var(--img-fit);background:var(--img-bg)}
.nav-logo{display:flex!important;align-items:center!important;gap:6px!important}.name-side-peek{width:64px!important;height:auto!important;background:var(--img-bg);border:none!important;box-shadow:none;vertical-align:middle!important;object-fit:var(--img-fit);filter:drop-shadow(0 2px 6px rgba(0,0,0,.18))!important}.profile-name-peek{width:64px!important;height:64px!important;max-width:64px!important;max-height:64px!important;object-fit:var(--img-fit);display:inline-block!important;vertical-align:-16px!important;margin-left:8px!important;background:var(--img-bg);background-color:transparent;border:none!important;border-radius:0!important;box-shadow:none;filter:drop-shadow(0 2px 6px rgba(0,0,0,.18))!important}@media(max-width:520px){.profile-name-peek{width:52px!important;height:52px!important;max-width:52px!important;max-height:52px!important;vertical-align:-14px!important}}#c-black:checked~.color-tabs .tab-black{background:var(--c)!important;color:#fff!important;transform:scale(1.10)!important}#c-black:checked~.color-panels .panel-black{opacity:1!important;visibility:visible!important;transform:translateY(0) scale(1)!important}.color-tabs .tab-black img.c-media--color-icon{background:var(--img-bg)}.panel-black .cv-info{width:100%!important;max-width:500px!important;min-height:265px!important;height:265px!important;padding:24px 28px!important;border-radius:var(--radius-lg)!important;box-sizing:border-box!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important}.panel-black .cv-desc{font-size:14px!important;line-height:1.9!important;font-weight:400!important;color:#555!important}#colors .tab-black img.c-media--color-icon,.color-css .tab-black img.c-media--color-icon{background:var(--img-bg);border:none!important;box-shadow:none;object-fit:var(--img-fit);border-radius:0!important}.panel-black .cv-keyword{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important}.panel-black .cv-keyword .black-lantern-icon{width:38px!important;height:38px!important;object-fit:var(--img-fit);border-radius:0!important;filter:none!important;background:var(--img-bg);box-shadow:none;margin:0!important;padding:0!important}.panel-black .black-lantern-icon{width:68px!important;height:68px!important;min-width:68px!important;min-height:68px!important;max-width:68px!important;max-height:68px!important;object-fit:var(--img-fit);background:var(--img-bg);border-radius:0!important;filter:none!important;box-shadow:none;padding:0!important;margin-right:10px!important;vertical-align:middle!important}@media(max-width:520px){.panel-black .black-lantern-icon{width:58px!important;height:58px!important;min-width:58px!important;min-height:58px!important;max-width:58px!important;max-height:58px!important}}
#stamps .sec-head{}#stamps .sec-title{margin-bottom:0!important}#stamps .stamp-subtitle + *{margin-top:0!important}#stamps .sec-head{margin-bottom:18px!important}.stamp-subtitle{display:block!important;font-size:18px!important;color:#d96a22!important;text-align:center!important;margin:18px auto 12px!important;padding:0!important;font-weight:900!important;letter-spacing:0.04em!important;line-height:1.6!important}#stamps .sec-title{margin-top:18px!important}#colors .sec-title{margin-top:18px!important}#profile .sec-title{margin-top:18px!important}#colors button img,#colors .color-item img,#colors .color-card img,#colors .color-grid img{width:108px !important;height:108px !important;max-width:none !important;max-height:none !important;object-fit:var(--img-fit) !important;transform:scale(1.10) !important}#colors button,#colors .color-item,#colors .color-card{min-height:122px !important;padding:16px !important;border-radius:24px !important}@media(max-width:520px){#colors button img,#colors .color-item img,#colors .color-card img,#colors .color-grid img{width:92px !important;height:92px !important}#colors button,#colors .color-item,#colors .color-card{min-height:108px !important}}#colors .color-option img,#colors .color-btn img,#colors button img{width:130px !important;height:130px !important;transform:scale(1.18) !important;margin-right:18px !important}@media(max-width:520px){#colors .color-option img,#colors .color-btn img,#colors button img{width:110px !important;height:110px !important}}#colors button,#colors label,#colors .color-tab,#colors .color-btn{min-height:92px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important}
#colors button,#colors .color-btn,#colors .color-card{min-height:auto!important;padding:10px 14px!important}#colors .color-rebuilt,.color-rebuilt{display:flex!important;align-items:center!important;justify-content:center!important;gap:18px!important;min-height:86px!important;padding:12px 20px!important;border-radius:999px!important;overflow:visible!important;box-sizing:border-box!important}.color-rebuilt .c-media--color-icon{width:68px!important;height:68px!important;min-width:68px!important;min-height:68px!important;max-width:68px!important;max-height:68px!important;object-fit:var(--img-fit);display:block!important;margin:0!important;padding:0!important;background:var(--img-bg);border:none!important;box-shadow:none;transform:none!important;filter:drop-shadow(0 2px 5px rgba(0,0,0,.18))!important}.color-rebuilt .rebuilt-color-text{display:inline-block!important;font-size:32px!important;font-weight:900!important;line-height:1!important;white-space:nowrap!important}.color-rebuilt>img:not(.c-media--color-icon){display:none!important}@media(max-width:520px){#colors .color-rebuilt,.color-rebuilt{min-height:74px!important;padding:10px 14px!important;gap:12px!important}.color-rebuilt .c-media--color-icon{width:56px!important;height:56px!important;min-width:56px!important;min-height:56px!important;max-width:56px!important;max-height:56px!important}.color-rebuilt .rebuilt-color-text{font-size:27px!important}}#colors .color-tabs,.color-css .color-tabs{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:10px!important;justify-content:center!important;align-items:stretch!important;max-width:720px!important;width:100%!important;margin:0 auto 28px!important}#colors .color-tabs label,.color-css .color-tabs label,#colors .ctab,.color-css .ctab,#colors .color-rebuilt,.color-css .color-rebuilt{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:center!important;gap:2px!important;min-height:58px!important;height:auto!important;padding:7px 9px!important;border-radius:18px!important;box-sizing:border-box!important;width:100%!important;max-width:none!important;overflow:visible!important;font-size:18px!important;line-height:1!important}#colors .color-tabs label img,.color-css .color-tabs label img,#colors .c-media--color-icon,.color-css .c-media--color-icon,#colors .ctab img,.color-css .ctab img{width:46px!important;height:46px!important;min-width:46px!important;min-height:46px!important;max-width:46px!important;max-height:46px!important;object-fit:var(--img-fit);display:inline-block!important;margin:0!important;padding:0!important;background:var(--img-bg);border:0;box-shadow:none;transform:none!important;vertical-align:middle!important;filter:drop-shadow(0 1px 3px rgba(0,0,0,.16))!important}#colors .rebuilt-color-text,.color-css .rebuilt-color-text,#colors .ctab span,.color-css .ctab span{font-size:18px!important;line-height:1!important;font-weight:900!important;white-space:nowrap!important}@media(max-width:520px){#colors .color-tabs,.color-css .color-tabs{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:2px!important;max-width:100%!important}#colors .color-tabs label,.color-css .color-tabs label,#colors .ctab,.color-css .ctab,#colors .color-rebuilt,.color-css .color-rebuilt{min-height:50px!important;padding:6px 5px!important;gap:4px!important;border-radius:14px!important}#colors .color-tabs label img,.color-css .color-tabs label img,#colors .c-media--color-icon,.color-css .c-media--color-icon,#colors .ctab img,.color-css .ctab img{width:36px!important;height:36px!important;min-width:36px!important;min-height:36px!important;max-width:36px!important;max-height:36px!important}#colors .rebuilt-color-text,.color-css .rebuilt-color-text,#colors .ctab span,.color-css .ctab span{font-size:15px!important}}#colors .rebuilt-color-text,.color-css .rebuilt-color-text,#colors .ctab span,.color-css .ctab span{display:none!important}#colors .color-tabs label img,.color-css .color-tabs label img,#colors .c-media--color-icon,.color-css .c-media--color-icon{width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;max-width:44px!important;max-height:44px!important;object-fit:var(--img-fit);object-position:center!important;display:block!important;margin:0 auto!important;padding:0!important;transform:none!important}@media(max-width:520px){#colors .color-tabs label img,.color-css .color-tabs label img,#colors .c-media--color-icon,.color-css .c-media--color-icon{width:40px!important;height:40px!important;min-width:40px!important;min-height:40px!important;max-width:40px!important;max-height:40px!important}}#colors .c-media--color-icon{width:44px!important;height:44px!important;object-fit:var(--img-fit)}#colors .color-orange .c-media--color-icon,#colors .color-green .c-media--color-icon,#colors .color-purple .c-media--color-icon,#colors .color-gold .c-media--color-icon,#colors .color-blue .c-media--color-icon{width:52px!important;height:52px!important;min-width:52px!important;min-height:52px!important;max-width:52px!important;max-height:52px!important;object-fit:var(--img-fit);object-position:center!important}@media(max-width:520px){#colors .color-orange .c-media--color-icon,#colors .color-green .c-media--color-icon,#colors .color-purple .c-media--color-icon,#colors .color-gold .c-media--color-icon,#colors .color-blue .c-media--color-icon{width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;max-width:48px!important;max-height:48px!important}}.hukutan-creator-box{max-width:680px!important;margin:0 auto!important;text-align:center!important;background:#fffaf4!important;border:4px solid #f6bfd3!important;border-radius:34px!important;padding:42px 26px!important;box-shadow:0 8px 20px rgba(0,0,0,.05)!important}.hukutan-creator-box p{color:#6b4a35!important;line-height:2.05!important;font-size:22px!important;font-weight:700!important;margin:0!important}.hukutan-creator-box strong{color:#f26a21!important;font-size:28px!important;font-weight:900!important}@media(max-width:520px){.hukutan-creator-box{padding:32px 18px!important}.hukutan-creator-box p{font-size:17px!important}.hukutan-creator-box strong{font-size:23px!important}}.c-card--fortune .c-media--fortune-custom{width:190px!important;height:190px!important;max-width:76%!important;object-fit:var(--img-fit);object-position:center!important;display:block!important;margin:0 auto 18px!important;background:var(--img-bg);border:none!important;border-radius:0!important;box-shadow:none;filter:drop-shadow(0 4px 10px rgba(0,0,0,.12))!important}@media(max-width:520px){.c-card--fortune .c-media--fortune-custom{width:160px!important;height:160px!important;max-width:78%!important}}#omikuji6 h3 + img,#omikuji6 .fortune-extra,#omikuji6 img:not(.c-media--fortune-custom){display:none!important}#omikuji6 .c-media--fortune-custom{display:block!important}#omikuji7 h3 + img,#omikuji7 img.extra-icon,#omikuji7 img:not(.c-media--fortune-custom){display:none!important}#omikuji7 .c-media--fortune-custom{display:block!important}.fortune-links img{background:var(--img-bg)}#gacha .sec-title img:not(.name-side-peek):not(.omikuji-title-darumon),#gacha .sec-head img:not(.name-side-peek):not(.omikuji-title-darumon){display:none!important}#gacha .sec-title{display:flex!important;align-items:center!important;justify-content:center!important;gap:14px!important;flex-wrap:nowrap!important}.c-media--omikuji-title{width:76px!important;height:76px!important;object-fit:var(--img-fit);display:inline-block!important;vertical-align:middle!important;margin-left:4px!important;background:var(--img-bg);border:0;box-shadow:none;border-radius:0!important}@media(max-width:520px){.c-media--omikuji-title{width:58px!important;height:58px!important}}#gacha .sec-head .sec-title{display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;white-space:nowrap!important}#gacha .sec-head .sec-title img.c-media--omikuji-title,#gacha .sec-title img.omikuji-title-darumon{display:inline-block!important;visibility:visible!important;opacity:1!important;width:82px!important;height:82px!important;min-width:82px!important;min-height:82px!important;max-width:82px!important;max-height:82px!important;object-fit:var(--img-fit);vertical-align:middle!important;margin:0 0 0 8px!important;padding:0!important;background:var(--img-bg);border:0;box-shadow:none;border-radius:0!important;position:static!important;transform:none!important}@media(max-width:520px){#gacha .sec-head .sec-title img.c-media--omikuji-title,#gacha .sec-title img.omikuji-title-darumon{width:58px!important;height:58px!important;min-width:58px!important;min-height:58px!important;max-width:58px!important;max-height:58px!important;margin-left:6px!important}}.panel-green .cv-desc{font-size:14px!important;line-height:1.9!important;font-weight:inherit!important}.panel-green .cv-desc,.panel-green .cv-desc *{font-size:14px!important;line-height:1.9!important;font-weight:700!important;letter-spacing:0!important}#colors .cv-desc,#colors .cv-desc *{font-size:14px!important;line-height:1.9!important;font-weight:400!important;color:#555!important;text-align:center!important;letter-spacing:0!important}#colors .panel-green{min-height:520px!important;height:auto!important;padding:48px 28px 42px!important;border-radius:34px!important;box-sizing:border-box!important;display:flex!important;flex-direction:column!important;justify-content:center!important}#colors .panel-green .cv-name{margin-bottom:22px!important}#colors .panel-green .cv-keyword{margin-bottom:30px!important}#colors .panel-green .cv-desc{margin:0 auto 28px!important;font-size:14px!important;line-height:1.9!important;font-weight:400!important}#colors .panel-green .cv-tags{margin-top:18px!important}@media(max-width:520px){#colors .panel-green{min-height:420px!important;padding:38px 20px 34px!important;border-radius:30px!important}}#colors .panel-green,.panel-green{min-height:0!important;height:auto!important;padding:0!important;border-radius:0!important;display:flex!important;flex-direction:column!important;align-items:center!important;gap:24px!important;justify-content:flex-start!important}#colors .panel-green .cv-info,.panel-green .cv-info{width:100%!important;max-width:500px!important;min-height:0!important;height:auto!important;padding:24px 28px!important;border-radius:var(--radius-lg)!important;box-sizing:border-box!important;border:3px solid var(--c)!important;box-shadow:5px 5px 0 var(--c)!important}#colors .panel-green .cv-name,.panel-green .cv-name{margin-bottom:8px!important}#colors .panel-green .cv-keyword,.panel-green .cv-keyword{margin-bottom:12px!important}#colors .panel-green .cv-desc,.panel-green .cv-desc{margin:0!important;font-size:14px!important;line-height:1.9!important;font-weight:400!important;color:#555!important}#colors .panel-green .cv-tags,.panel-green .cv-tags{margin-top:14px!important}#colors .cv-info{width:100%!important;max-width:500px!important;min-height:265px!important;height:265px!important;padding:24px 28px!important;border-radius:var(--radius-lg)!important;box-sizing:border-box!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important}#colors .panel-red .cv-info,#colors .panel-pink .cv-info{min-height:265px!important;height:265px!important;padding:24px 28px!important}#colors .cv-name{margin-bottom:8px!important}#colors .cv-keyword{margin-bottom:12px!important}#colors .cv-desc{margin:0!important;font-size:14px!important;line-height:1.9!important}#colors .cv-tags{margin-top:14px!important}.stamp-grid-four{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px!important;max-width:560px!important;margin:0 auto!important}/* ===== CARD COMPONENT:STAMP-LIKE CARD ===== */
.c-card--stamp-like{display:block!important;text-decoration:none!important;background:#fffdf6!important;border-radius:var(--radius-lg)!important;border:2.5px solid #F0E0C0!important;overflow:hidden!important;box-shadow:4px 4px 0 #F0D080!important;transition:.2s!important;position:relative!important}.c-card--stamp-like:hover,.c-card--stamp-like:focus,.c-card--stamp-like:active{transform:translateY(-8px) rotate(-2deg) scale(1.04)!important;box-shadow:6px 14px 0 var(--r)!important;border-color:var(--r)!important;outline:none!important}.c-card--stamp-like img{width:100%!important;aspect-ratio:1!important;object-fit:var(--img-fit);display:block!important;padding:6px!important;background:var(--img-bg)}.c-card--stamp-like .stamp-label{font-size:12px!important;font-weight:900!important;text-align:center!important;padding:8px 4px!important;border-top:1px solid #f3e2c3!important;color:#5b2b16!important}.c-card--stamp-like .heart-pop{position:absolute!important;top:6px!important;right:8px!important;width:34px!important;height:34px!important;opacity:0!important;transition:.25s!important;pointer-events:none!important}.c-card--stamp-like .heart-pop img{width:34px!important;height:34px!important;padding:0!important;object-fit:var(--img-fit);aspect-ratio:auto!important}.c-card--stamp-like:hover .heart-pop,.c-card--stamp-like:focus .heart-pop,.c-card--stamp-like:active .heart-pop{opacity:1!important;transform:scale(1.22)!important}@media(max-width:520px){.stamp-grid-four{gap:14px!important}}/* ======================================================
   STEP 3-3: LINE STAMP BUTTON CSS CONSOLIDATION
   Final computed desktop/mobile values were preserved.
   HTML, JavaScript, animations and omikuji logic are unchanged.
   ====================================================== */
#stamps .line-stamp-cta{position:relative!important;max-width:440px!important;margin:56px auto 10px!important;padding-top:34px!important;text-align:center!important;z-index:1!important}
#stamps .line-peek-darumon{position:absolute!important;top:-90px!important;left:50%!important;transform:translateX(-50%) scale(1.10)!important;transform-origin:bottom center!important;width:170px!important;height:auto!important;display:block!important;z-index:10!important;background:var(--img-bg);border:0;box-shadow:none;filter:drop-shadow(0 4px 8px rgba(120,60,20,.16))!important;pointer-events:none!important}
#stamps .c-btn--line-stamp{position:relative!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;min-height:86px!important;padding:22px 96px 20px 30px!important;text-decoration:none!important;border-radius:999px!important;background:linear-gradient(180deg,#ffffff 0%,#fff9ea 100%)!important;border:4px solid #ffb84d!important;box-shadow:0 7px 0 #f09a2a,0 14px 22px rgba(232,140,40,.18)!important;color:#d85b1f!important;overflow:visible!important}
#stamps .c-btn--line-stamp::before{display:none!important}
#stamps .c-btn--line-small{width:100%!important;display:block!important;position:relative!important;left:20px!important;font-size:10px!important;line-height:1!important;letter-spacing:.24em!important;color:#e8a020!important;font-weight:900!important;text-align:center!important;margin-bottom:6px!important}
#stamps .c-btn--line-main{width:100%!important;font-size:22px!important;line-height:1.25!important;letter-spacing:.02em!important;color:#e8521f!important;font-weight:900!important;text-align:center!important;text-shadow:none!important;white-space:nowrap!important}
#stamps .line-click-hand{position:absolute!important;right:-22px!important;bottom:-34px!important;width:92px!important;height:auto!important;display:block!important;background:var(--img-bg);border:0;box-shadow:none;transform:rotate(-2deg)!important;filter:drop-shadow(0 4px 8px rgba(120,60,20,.2))!important;z-index:4!important}
#stamps .c-btn--line-stamp:hover,#stamps .c-btn--line-stamp:focus,#stamps .c-btn--line-stamp:active{transform:translateY(-3px) scale(1.02)!important;box-shadow:0 10px 0 #f09a2a,0 18px 26px rgba(232,140,40,.22)!important}
@media(max-width:520px){#stamps .line-stamp-cta{max-width:92%!important;margin-top:48px!important;padding-top:28px!important}#stamps .line-peek-darumon{top:-90px!important;width:142px!important}#stamps .c-btn--line-stamp{min-height:80px!important;padding:20px 82px 18px 22px!important}#stamps .c-btn--line-small{font-size:9px!important}#stamps .c-btn--line-main{font-size:18px!important}#stamps .line-click-hand{right:-14px!important;bottom:-26px!important;width:76px!important}}#colors .panel-black,#colors .color-panel.panel-black{display:flex!important;flex-direction:column!important;align-items:center!important;gap:24px!important;padding:0!important;min-height:0!important;height:auto!important;border:none!important;box-shadow:none;background:var(--img-bg)}#colors .panel-black .cv-img-wrap{animation:cvFloat 3s ease-in-out infinite!important}#colors .panel-black .cv-img-wrap img{height:auto!important;object-fit:var(--img-fit);background:var(--img-bg);filter:drop-shadow(0 16px 32px rgba(0,0,0,.18))!important;}@media(max-width:520px){#colors .panel-black .cv-info{min-height:265px!important;height:265px!important;padding:24px 22px!important}}#colors .panel-black .cv-info{width:100%!important;background:#fffdf8!important;text-align:center!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important;align-items:center!important;box-sizing:border-box;}#colors .panel-black .cv-name{width:100%!important;font-weight:900!important;color:var(--c)!important;line-height:1.2!important;margin:0 0 12px!important;text-align:center!important;}#colors .panel-black .cv-keyword{width:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;color:var(--c)!important;line-height:1.35!important;margin:0 0 16px!important;text-align:center!important;}#colors .panel-black .cv-keyword img,#colors .panel-black .cv-keyword .black-keyword-replaced-icon,#colors .panel-black .cv-keyword .black-keyword-big-icon{object-fit:var(--img-fit);background:var(--img-bg);border:0;box-shadow:none;border-radius:0!important;padding:0!important;margin:0!important;display:inline-block!important;vertical-align:middle!important;filter:drop-shadow(0 5px 10px rgba(0,0,0,.16))!important;}#colors .panel-black .cv-desc{width:100%!important;font-weight:400!important;color:#555!important;margin:0!important;text-align:center!important;}#colors .panel-black .cv-tags{width:100%!important;display:flex!important;justify-content:center!important;flex-wrap:wrap!important;}#colors .panel-black .cv-tags span{background:var(--c)!important;color:#fff!important;}@media(max-width:520px){#colors .panel-black .cv-info{height:265px!important;min-height:265px!important;padding:24px 20px!important}#colors .panel-black .cv-keyword img,#colors .panel-black .cv-keyword .black-keyword-replaced-icon,#colors .panel-black .cv-keyword .black-keyword-big-icon{width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;max-width:48px!important;max-height:48px!important}}#colors .panel-black{gap:30px!important}#colors .panel-black .cv-img-wrap img{width:clamp(250px,58vw,380px)!important;border-radius:34px!important}#colors .panel-black .cv-info{max-width:560px!important;height:340px!important;min-height:340px!important;padding:42px 34px 34px!important;border-radius:28px!important;border:4px solid var(--c)!important;box-shadow:7px 7px 0 var(--c)!important}#colors .panel-black .cv-name{font-size:36px!important;margin-bottom:24px!important}#colors .panel-black .cv-keyword{font-size:20px!important;font-weight:900!important;margin-bottom:26px!important;gap:14px!important}#colors .panel-black .cv-keyword img,#colors .panel-black .cv-keyword .black-keyword-replaced-icon,#colors .panel-black .cv-keyword .black-keyword-big-icon{width:58px!important;height:58px!important;min-width:58px!important;min-height:58px!important;max-width:58px!important;max-height:58px!important}#colors .panel-black .cv-desc{font-size:18px!important;line-height:2!important;margin-bottom:20px!important}#colors .panel-black .cv-tags{margin-top:auto!important;gap:10px!important}#colors .panel-black .cv-tags span{font-size:16px!important;padding:8px 20px!important;border-radius:999px!important;font-weight:900!important}@media(max-width:520px){#colors .panel-black .cv-img-wrap img{width:clamp(230px,72vw,330px)!important}#colors .panel-black .cv-info{max-width:92vw!important;height:320px!important;min-height:320px!important;padding:36px 22px 30px!important;border-radius:26px!important}#colors .panel-black .cv-name{font-size:34px!important;margin-bottom:20px!important}#colors .panel-black .cv-keyword{font-size:18px!important;margin-bottom:22px!important}#colors .panel-black .cv-keyword img,#colors .panel-black .cv-keyword .black-keyword-replaced-icon,#colors .panel-black .cv-keyword .black-keyword-big-icon{width:52px!important;height:52px!important;min-width:52px!important;min-height:52px!important;max-width:52px!important;max-height:52px!important}#colors .panel-black .cv-desc{font-size:16px!important;line-height:1.9!important}#colors .panel-black .cv-tags span{font-size:14px!important;padding:7px 16px!important}}#colors .color-panel{gap:30px!important}#colors .color-panel .cv-img-wrap img{filter:drop-shadow(0 16px 32px rgba(0,0,0,.18))!important;}#colors .color-panel .cv-info{width:100%!important;max-width:560px!important;min-height:340px!important;height:auto!important;padding:42px 34px 34px!important;border-radius:28px!important;border:4px solid var(--c)!important;box-shadow:7px 7px 0 var(--c)!important;background:#fffdf8!important;text-align:center!important;box-sizing:border-box;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;overflow:visible;}#colors .color-panel .cv-name{width:100%!important;font-size:36px!important;font-weight:900!important;color:var(--c)!important;line-height:1.2!important;margin:0 0 22px!important;text-align:center!important}#colors .color-panel .cv-keyword{width:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;font-size:20px!important;font-weight:900!important;color:var(--c)!important;line-height:1.45!important;margin:0 0 24px!important;text-align:center!important;flex-wrap:wrap!important}#colors .color-panel .cv-keyword img,#colors .color-panel .cv-keyword .black-keyword-replaced-icon,#colors .color-panel .cv-keyword .black-keyword-big-icon{width:56px!important;height:56px!important;min-width:56px!important;min-height:56px!important;max-width:56px!important;max-height:56px!important;object-fit:var(--img-fit);background:var(--img-bg);border:0;box-shadow:none;border-radius:0!important;padding:0!important;margin:0!important;display:inline-block!important;vertical-align:middle!important;filter:drop-shadow(0 5px 10px rgba(0,0,0,.16))!important}#colors .color-panel .cv-desc{width:100%!important;font-size:18px!important;line-height:2!important;font-weight:400!important;color:#555!important;margin:0!important;text-align:center!important;overflow:visible;}#colors .color-panel .cv-tags{width:100%!important;display:flex!important;justify-content:center!important;flex-wrap:wrap!important;gap:10px!important;margin-top:24px!important}#colors .color-panel .cv-tags span{font-size:16px!important;font-weight:900!important;padding:8px 20px!important;border-radius:999px!important;background:var(--c)!important;color:#fff!important;line-height:1.2!important;white-space:nowrap!important}@media(max-width:520px){#colors .color-panel{gap:26px!important}#colors .color-panel .cv-img-wrap img{width:clamp(230px,72vw,330px)!important}#colors .color-panel .cv-info{max-width:92vw!important;min-height:330px!important;height:auto!important;padding:36px 22px 30px!important;border-radius:26px!important}#colors .color-panel .cv-name{font-size:34px!important;margin-bottom:20px!important}#colors .color-panel .cv-keyword{font-size:17px!important;margin-bottom:22px!important;gap:10px!important}#colors .color-panel .cv-keyword img,#colors .color-panel .cv-keyword .black-keyword-replaced-icon,#colors .color-panel .cv-keyword .black-keyword-big-icon{width:50px!important;height:50px!important;min-width:50px!important;min-height:50px!important;max-width:50px!important;max-height:50px!important}#colors .color-panel .cv-desc{font-size:15px!important;line-height:1.9!important}#colors .color-panel .cv-tags{gap:8px!important;margin-top:22px!important}#colors .color-panel .cv-tags span{font-size:13px!important;padding:7px 15px!important}}#colors .color-panel .cv-img-wrap{width:100%!important;display:flex!important;justify-content:center!important;align-items:center!important}#colors .color-panel .cv-img-wrap img{width:320px!important;height:320px!important;object-fit:var(--img-fit);display:block!important;margin:0 auto!important;border-radius:34px!important;background:var(--img-bg)}@media(max-width:520px){#colors .color-panel .cv-img-wrap img{width:260px!important;height:260px!important}}#colors .panel-blue .cv-img-wrap img,#colors .panel-green .cv-img-wrap img,#colors .panel-red .cv-img-wrap img{width:320px!important;height:320px!important;object-fit:var(--img-fit);transform:scale(1.12)!important;transform-origin:center center!important}@media(max-width:520px){#colors .panel-blue .cv-img-wrap img,#colors .panel-green .cv-img-wrap img,#colors .panel-red .cv-img-wrap img{width:260px!important;height:260px!important;transform:scale(1.12)!important}}
img{image-rendering:auto;backface-visibility:hidden;transform:translateZ(0)}.hero-cover-new{min-height:82vh!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;padding:96px 18px 70px!important;text-align:center!important;position:relative!important;background:var(--img-bg)}.hero-peek-wrap{margin:0 auto!important;background:var(--img-bg)}.hero-fukukurumon-title{height:auto!important;object-fit:var(--img-fit);display:block!important;background:var(--img-bg);mix-blend-mode:normal!important;box-shadow:none;filter:drop-shadow(0 14px 22px rgba(232,160,32,.22))!important;animation:titleFloat 3.4s ease-in-out infinite!important}.hero-darumon-logo{height:auto!important;object-fit:var(--img-fit);display:block!important;z-index:5!important;background:var(--img-bg);mix-blend-mode:normal!important;box-shadow:none;filter:drop-shadow(0 8px 18px rgba(0,0,0,.12))!important}@keyframes titleFloat{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-10px) scale(1.02)}}@keyframes peekLeft{0%,100%{transform:translate(-12px,-50%) rotate(-2deg)}50%{transform:translate(12px,-50%) rotate(2deg)}}@keyframes peekRight{0%,100%{transform:translate(12px,-50%) rotate(2deg)}50%{transform:translate(-12px,-50%) rotate(-2deg)}}@media(max-width:520px){.hero-cover-new{min-height:78vh!important;padding:84px 12px 58px!important}.hero-peek-wrap{height:470px!important;width:96vw!important}.hero-fukukurumon-title{width:150px!important}}.hero-peek-wrap{width:min(96vw,700px)!important;}.hero-fukukurumon-title{}.hero-darumon-logo{}@media(max-width:520px){.hero-peek-wrap{width:100vw!important;height:620px!important}.hero-fukukurumon-title{width:190px!important}.hero-darumon-logo{width:92vw!important}}.hero-fukukurumon-title{position:relative!important;}.hero-fukukurumon-title{z-index:5!important}@keyframes peekLeftWall{0%,100%{transform:translate(-8px,-50%)}50%{transform:translate(12px,-50%)}}@keyframes peekRightWall{0%,100%{transform:translate(8px,-50%)}50%{transform:translate(-12px,-50%)}}@keyframes peekTopRight{0%,100%{transform:translate(10px,-50%) scaleX(-1)}50%{transform:translate(-12px,-50%) scaleX(-1)}}@keyframes peekBottomLeft{0%,100%{transform:translate(-10px,-50%)}50%{transform:translate(12px,-50%)}}@keyframes peekTopRightVisible{0%,100%{transform:translate(4px,-50%) scaleX(-1)}50%{transform:translate(-10px,-50%) scaleX(-1)}}@keyframes peekBottomLeftVisible{0%,100%{transform:translate(-4px,-50%)}50%{transform:translate(10px,-50%)}}
.hero-peek-wrap{height:520px!important;display:flex!important;align-items:center!important;justify-content:center!important}.hero-fukukurumon-title{width:clamp(190px,42vw,300px)!important;margin:0 auto!important}.hero-darumon-logo{}@media(max-width:520px){.hero-peek-wrap{height:440px!important}.hero-fukukurumon-title{width:210px!important}.hero-darumon-logo{width:92vw!important}}.hero-cover-new{overflow:hidden!important}.hero-peek-wrap{position:relative!important;}.hero-peek-new{position:absolute!important;height:auto!important;object-fit:var(--img-fit);z-index:2!important;background:var(--img-bg);mix-blend-mode:normal!important;box-shadow:none;filter:drop-shadow(0 12px 18px rgba(0,0,0,.14))!important;pointer-events:none!important}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@keyframes peekRightTopNew{0%,100%{transform:translate(8px,-50%) rotate(1deg)}50%{transform:translate(-12px,-50%) rotate(-1deg)}}@keyframes peekLeftBottomNew{0%,100%{transform:translate(-8px,-50%) rotate(-1deg)}50%{transform:translate(12px,-50%) rotate(1deg)}}@media(max-width:520px){.hero-peek-new-righttop{right:-42px!important;top:15%!important;width:235px!important}.hero-peek-new-leftbottom{left:-42px!important;top:76%!important;width:235px!important}}
.hero-peek-new-righttop{animation:peekRightTopNew 3s ease-in-out infinite!important}.hero-peek-new-leftbottom{left:-38px!important;width:clamp(160px,30vw,250px)!important;animation:peekLeftBottomNew 3s ease-in-out infinite!important}@media(max-width:520px){.hero-peek-new-righttop{right:-6px!important;top:16%!important;width:215px!important}.hero-peek-new-leftbottom{left:-24px!important;top:77%!important;width:170px!important}}
.hero-peek-new-righttop{}@media(max-width:520px){.hero-peek-new-righttop{right:-24px!important;top:10%!important;width:215px!important}}.hero-fukukurumon-title{}.hero-darumon-logo{}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:20px!important}.hero-darumon-logo{margin-top:18px!important}.hero-peek-new-righttop{top:15%!important}.hero-peek-new-leftbottom{top:82%!important}}.hero-fukukurumon-title{}.hero-darumon-logo{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:34px!important}.hero-darumon-logo{margin-top:28px!important}.hero-peek-new-righttop{top:19%!important}.hero-peek-new-leftbottom{top:87%!important}}.hero-fukukurumon-title{}.hero-darumon-logo{}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:46px!important}.hero-darumon-logo{margin-top:40px!important}.hero-peek-new-righttop{top:23%!important}.hero-peek-new-leftbottom{top:92%!important}}.hero-fukukurumon-title{}.hero-darumon-logo{}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:70px!important}.hero-darumon-logo{margin-top:58px!important}.hero-peek-new-righttop{top:28%!important}.hero-peek-new-leftbottom{top:98%!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:104px!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:150px!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:220px!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:130px!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:78px!important}}
.hero-cover-new{padding-bottom:0!important;}.hero-darumon-logo{}.bottom-nav,.footer-nav,nav{margin-top:0!important}@media(max-width:520px){.hero-cover-new{margin-bottom:-100px!important}.hero-darumon-logo{margin-top:8px!important;margin-bottom:-72px!important}}
.hero-cover-new{}.hero-darumon-logo{}@media(max-width:520px){.hero-cover-new{margin-bottom:-58px!important}.hero-darumon-logo{margin-bottom:-26px!important}}
.hero-cover-new{margin-bottom:-48px!important}.hero-darumon-logo{margin-bottom:-8px!important}@media(max-width:520px){.hero-cover-new{margin-bottom:-40px!important}.hero-darumon-logo{margin-bottom:2px!important}}
.hero-darumon-logo{}@media(max-width:520px){.hero-darumon-logo{margin-top:20px!important}}
.hero-darumon-logo{margin-top:0!important}@media(max-width:520px){.hero-darumon-logo{top:34px!important}}
.hero-darumon-logo{position:relative!important;top:68px!important}@media(max-width:520px){.hero-darumon-logo{top:58px!important}}@media(max-width:520px){.hero-peek-new-righttop{top:18%!important}}
.hero-peek-new-righttop{}@media(max-width:520px){.hero-peek-new-righttop{top:10%!important}}
.hero-peek-wrap{overflow:visible!important}.hero-peek-new-righttop{width:clamp(230px,40vw,320px)!important}@media(max-width:520px){.hero-peek-new-righttop{top:2%!important;right:-8px!important;width:225px!important}}
.hero-cover-new{}@media(max-width:520px){.hero-cover-new{padding-top:140px!important}}
.hero-cover-new{}@media(max-width:520px){.hero-cover-new{padding-top:180px!important}}
.hero-cover-new{padding-top:270px!important}.hero-peek-new-righttop{}@media(max-width:520px){.hero-cover-new{padding-top:230px!important}.hero-peek-new-righttop{top:-4%!important}}
.hero-peek-new-righttop{right:-52px!important}@media(max-width:520px){.hero-peek-new-righttop{right:-34px!important}}
.hero-darumon-logo{width:min(98vw,980px)!important;max-width:980px!important;transform:scale(1.18)!important;transform-origin:center center!important}.cover-sparkles{position:absolute!important;inset:0!important;z-index:2!important;pointer-events:none!important;overflow:hidden!important}.cover-sparkles .sp{position:absolute!important;display:block!important;font-weight:900!important;color:#ffd35c!important;text-shadow:0 3px 0 #fff4c9,0 6px 14px rgba(232,160,32,.28)!important;animation:sparkleFloatVisible 3s ease-in-out infinite!important}.cover-sparkles .sp1{left:18%!important;top:47%!important;font-size:46px!important}.cover-sparkles .sp2{right:20%!important;top:58%!important;font-size:38px!important;animation-delay:.5s!important}.cover-sparkles .sp3{left:28%!important;bottom:24%!important;font-size:34px!important;animation-delay:1s!important}.cover-sparkles .sp4{right:31%!important;bottom:31%!important;font-size:30px!important;animation-delay:1.4s!important}@keyframes sparkleFloatVisible{0%,100%{transform:translateY(0) scale(1) rotate(0deg);opacity:.75}50%{transform:translateY(-12px) scale(1.22) rotate(8deg);opacity:1}}@media(max-width:520px){.hero-darumon-logo{width:108vw!important;max-width:none!important;transform:scale(1.22)!important}.cover-sparkles .sp1{left:9%!important;top:50%!important;font-size:38px!important}.cover-sparkles .sp2{right:10%!important;top:61%!important;font-size:32px!important}.cover-sparkles .sp3{left:18%!important;bottom:25%!important;font-size:28px!important}.cover-sparkles .sp4{right:22%!important;bottom:32%!important;font-size:26px!important}}
.hero-darumon-logo{opacity:0!important;visibility:hidden!important}.hero-fukukurumon-title,.hero-peek-new-leftbottom,.hero-peek-new-righttop{opacity:1!important;visibility:visible!important;display:block!important}
.top-left-darumon-logo{position:absolute!important;height:auto!important;transform:rotate(-14deg)!important;z-index:20!important;pointer-events:none!important;background:var(--img-bg);filter:drop-shadow(0 10px 18px rgba(0,0,0,.12))!important}@media(max-width:520px){.top-left-darumon-logo{top:18px!important;left:-38px!important;width:72vw!important}}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{width:96vw!important}}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{top:-22px!important;left:-44px!important;width:108vw!important}}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{top:-68px!important;left:-56px!important;width:122vw!important}}
.top-left-darumon-logo{left:-78px!important;width:min(145vw,1500px)!important}@media(max-width:520px){.top-left-darumon-logo{top:-108px!important;left:-68px!important;width:138vw!important}}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{top:-72px!important}}
.hero-fukukurumon-title{}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:28px!important}.hero-peek-new-righttop{top:7%!important}.hero-peek-new-leftbottom{top:104%!important}}
.hero-fukukurumon-title{}.hero-peek-new-righttop{}.hero-peek-new-leftbottom{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:54px!important}.hero-peek-new-righttop{top:13%!important}.hero-peek-new-leftbottom{top:112%!important}}
.hero-fukukurumon-title{}.hero-peek-new-righttop{top:20%!important}.hero-peek-new-leftbottom{top:124%!important}@media(max-width:520px){.hero-fukukurumon-title{margin-top:82px!important}.hero-peek-new-righttop{top:19%!important}.hero-peek-new-leftbottom{top:120%!important}}
.hero-fukukurumon-title{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:118px!important}}
.hero-fukukurumon-title{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:150px!important}}
.hero-fukukurumon-title{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:184px!important}}
.hero-fukukurumon-title{}@media(max-width:520px){.hero-fukukurumon-title{margin-top:218px!important}}
.hero-fukukurumon-title{margin-top:340px!important}@media(max-width:520px){.hero-fukukurumon-title{margin-top:292px!important}}
.hero-fukukurumon-title{}
.hero-fukukurumon-title{transform:scale(0.96)!important;transform-origin:center center!important}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{top:-92px!important}}
.top-left-darumon-logo{}@media(max-width:520px){.top-left-darumon-logo{top:-66px!important}}
.top-left-darumon-logo{top:-48px!important}@media(max-width:520px){.top-left-darumon-logo{top:-42px!important}}
.hero-cover-new::before,.hero-cover-new::after{content:"✦";position:absolute!important;color:#ffe27a!important;text-shadow:0 0 10px rgba(255,230,120,.8),0 0 24px rgba(255,210,80,.5)!important;z-index:4!important;pointer-events:none!important;animation:heroSparkle 3s ease-in-out infinite!important}.hero-cover-new::before{left:10%!important;top:24%!important;font-size:42px!important}.hero-cover-new::after{right:12%!important;bottom:18%!important;font-size:34px!important;animation-delay:1.2s!important}.hero-peek-wrap::before,.hero-peek-wrap::after{content:"✧";position:absolute!important;color:#fff2aa!important;text-shadow:0 0 8px rgba(255,235,140,.8)!important;z-index:4!important;pointer-events:none!important;animation:heroSparkleSmall 2.8s ease-in-out infinite!important}.hero-peek-wrap::before{left:22%!important;top:44%!important;font-size:26px!important}.hero-peek-wrap::after{right:26%!important;top:58%!important;font-size:22px!important;animation-delay:.8s!important}@keyframes heroSparkle{0%,100%{transform:translateY(0) scale(1);opacity:.72}50%{transform:translateY(-8px) scale(1.15);opacity:1}}@keyframes heroSparkleSmall{0%,100%{transform:scale(1);opacity:.6}50%{transform:scale(1.18);opacity:1}}@media(max-width:520px){.hero-cover-new::before{left:6%!important;top:28%!important;font-size:34px!important}.hero-cover-new::after{right:8%!important;bottom:22%!important;font-size:28px!important}.hero-peek-wrap::before{left:14%!important;top:46%!important;font-size:22px!important}.hero-peek-wrap::after{right:18%!important;top:60%!important;font-size:18px!important}}
.top-left-darumon-logo::after{content:"✦ ✧ ✦";animation:leftLogoSparkle 3s ease-in-out infinite!important;}@keyframes leftLogoSparkle{0%,100%{transform:translateY(0) scale(1);opacity:.72}50%{transform:translateY(-6px) scale(1.14);opacity:1}}@media(max-width:520px){.top-left-darumon-logo::after{left:18%!important;bottom:-30px!important;font-size:24px!important;letter-spacing:8px!important}}
.top-left-darumon-logo::after{content:"✦ ✧ ✦";position:absolute!important;left:50%!important;transform:translateX(-50%)!important;bottom:-34px!important;font-size:32px!important;color:#ffe27a!important;text-shadow:0 0 8px rgba(255,240,160,.9),0 0 20px rgba(255,210,80,.55)!important;letter-spacing:12px!important;animation:leftLogoSparkleCenter 3s ease-in-out infinite!important;pointer-events:none!important;white-space:nowrap!important}@keyframes leftLogoSparkleCenter{0%,100%{transform:translateX(-50%) translateY(0) scale(1);opacity:.72}50%{transform:translateX(-50%) translateY(-6px) scale(1.14);opacity:1}}@media(max-width:520px){.top-left-darumon-logo::after{bottom:-28px!important;font-size:26px!important;letter-spacing:8px!important}}
.top-left-logo-sparkles{position:absolute!important;z-index:21!important;pointer-events:none!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:14px!important;color:#ffe27a!important;text-shadow:0 0 8px rgba(255,240,160,.95),0 0 20px rgba(255,210,80,.6)!important}.top-left-logo-sparkles span{display:inline-block!important;font-size:34px!important;animation:topLeftSparkleFloat 3s ease-in-out infinite!important}.top-left-logo-sparkles span:nth-child(2){font-size:27px!important;animation-delay:.5s!important}.top-left-logo-sparkles span:nth-child(3){font-size:30px!important;animation-delay:1s!important}@keyframes topLeftSparkleFloat{0%,100%{transform:translateY(0) scale(1) rotate(0deg);opacity:.72}50%{transform:translateY(-7px) scale(1.16) rotate(8deg);opacity:1}}@media(max-width:520px){.top-left-logo-sparkles{top:178px!important;left:172px!important;gap:10px!important}.top-left-logo-sparkles span{font-size:26px!important}.top-left-logo-sparkles span:nth-child(2){font-size:21px!important}.top-left-logo-sparkles span:nth-child(3){font-size:24px!important}}
.top-left-logo-sparkles{top:275px!important}@media(max-width:520px){.top-left-logo-sparkles{top:208px!important}}
.top-left-logo-sparkles{left:245px!important}@media(max-width:520px){.top-left-logo-sparkles{left:146px!important}}
.top-left-big-sparkle{position:absolute!important;left:252px!important;z-index:22!important;pointer-events:none!important;color:#ffe27a!important;font-size:54px!important;text-shadow:0 0 10px rgba(255,240,160,.95),0 0 28px rgba(255,210,80,.65)!important;animation:bigSparkleFloat 3.4s ease-in-out infinite!important}@keyframes bigSparkleFloat{0%,100%{transform:translateY(0) scale(1);opacity:.76}50%{transform:translateY(-8px) scale(1.18);opacity:1}}@media(max-width:520px){.top-left-big-sparkle{top:256px!important;left:150px!important;font-size:42px!important}}
.top-left-big-sparkle{top:388px!important}@media(max-width:520px){.top-left-big-sparkle{top:296px!important}}
.top-left-big-sparkle-2{position:absolute!important;top:452px!important;left:188px!important;z-index:22!important;pointer-events:none!important;color:#fff2aa!important;font-size:36px!important;text-shadow:0 0 8px rgba(255,240,160,.9),0 0 22px rgba(255,210,80,.55)!important;animation:smallSparkleFloat 3.2s ease-in-out infinite!important}@keyframes smallSparkleFloat{0%,100%{transform:translateY(0) scale(1);opacity:.7}50%{transform:translateY(-6px) scale(1.16);opacity:1}}@media(max-width:520px){.top-left-big-sparkle-2{top:344px!important;left:112px!important;font-size:28px!important}}
.top-left-big-sparkle-3{position:absolute!important;top:520px!important;left:126px!important;z-index:22!important;pointer-events:none!important;color:#ffe27a!important;font-size:30px!important;text-shadow:0 0 8px rgba(255,240,160,.92),0 0 20px rgba(255,210,80,.52)!important;animation:tinySparkleFloat 3.5s ease-in-out infinite!important}@keyframes tinySparkleFloat{0%,100%{transform:translateY(0) scale(1);opacity:.68}50%{transform:translateY(-5px) scale(1.14);opacity:1}}@media(max-width:520px){.top-left-big-sparkle-3{top:392px!important;left:74px!important;font-size:24px!important}}
.c-media--nav-logo{height:auto!important;display:inline-block!important;vertical-align:middle!important;object-fit:var(--img-fit);background:var(--img-bg);margin:0 4px 0 0!important;filter:drop-shadow(0 2px 5px rgba(0,0,0,.18))!important}@media(max-width:520px){.c-media--nav-logo{width:112px!important}}
.c-media--nav-logo{max-width:none!important;}@media(max-width:520px){.c-media--nav-logo{width:148px!important;transform:scale(1.14)!important}}
.c-media--nav-logo{}.name-side-peek{}@media(max-width:520px){.c-media--nav-logo{top:8px!important}.name-side-peek{top:8px!important}}
.c-media--nav-logo{position:relative!important;}.name-side-peek{position:relative!important;}@media(max-width:520px){.c-media--nav-logo{top:14px!important}.name-side-peek{top:14px!important}}
.c-media--nav-logo{}@media(max-width:520px){.c-media--nav-logo{width:176px!important;transform:scale(1.18)!important}}
.bottom-nav,nav{padding-bottom:6px!important;}.c-media--nav-logo,.name-side-peek{transform:none!important}@media(max-width:520px){.bottom-nav,nav{min-height:64px!important;padding-top:4px!important;padding-bottom:4px!important}}
.c-media--nav-logo{transform-origin:left center!important;}.name-side-peek{transform:scale(1.18)!important;transform-origin:left center!important;}@media(max-width:520px){.c-media--nav-logo{width:198px!important;transform:scale(1.22)!important;margin-left:-16px!important}.name-side-peek{transform:scale(1.12)!important;margin-left:-8px!important}}
.c-media--nav-logo{margin-left:-38px!important}.name-side-peek{margin-left:-22px!important}@media(max-width:520px){.c-media--nav-logo{margin-left:-30px!important}.name-side-peek{margin-left:-18px!important}}
.c-media--nav-logo{width:212px!important;transform:scale(1.16)!important}@media(max-width:520px){.c-media--nav-logo{width:178px!important;transform:scale(1.12)!important}}
.bottom-nav,nav{}.nav-links,.nav-links li,.nav-links a{margin-top:0!important}@media(max-width:520px){.bottom-nav,nav{padding-top:0!important;margin-top:0!important}}
.bottom-nav,nav{}@media(max-width:520px){.bottom-nav,nav{margin-top:-12px!important;min-height:54px!important}}
.bottom-nav,nav{}.nav-links{}@media(max-width:520px){.bottom-nav,nav{margin-top:-20px!important;min-height:46px!important}}
.bottom-nav,nav{}@media(max-width:520px){.bottom-nav,nav{margin-top:-38px!important;min-height:32px!important}}
.bottom-nav,nav{margin-top:-68px!important;padding-top:0!important;min-height:18px!important;overflow:visible!important}.c-media--nav-logo{top:14px!important}.name-side-peek{top:14px!important}.nav-links{padding-top:0!important;margin-top:0!important}@media(max-width:520px){.bottom-nav,nav{margin-top:-60px!important;min-height:16px!important}}
.bottom-second-darumon-logo{height:auto!important;display:inline-block!important;vertical-align:middle!important;object-fit:var(--img-fit);background:var(--img-bg);filter:drop-shadow(0 2px 6px rgba(0,0,0,.18))!important}@media(max-width:520px){.bottom-second-darumon-logo{width:128px!important}}
.bottom-second-darumon-logo{width:210px!important;transform:scale(1.18)!important;transform-origin:center center!important;position:relative!important;}@media(max-width:520px){.bottom-second-darumon-logo{width:178px!important;transform:scale(1.14)!important;top:-14px!important}}
.bottom-second-darumon-logo{top:-36px!important}@media(max-width:520px){.bottom-second-darumon-logo{top:-28px!important}}
.bottom-second-logo-under-character{display:flex!important;justify-content:center!important;align-items:center!important;width:100%!important;margin-top:-28px!important;margin-bottom:12px!important;pointer-events:none!important}.bottom-second-under-darumon{width:210px!important;height:auto!important;display:block!important;object-fit:var(--img-fit);background:var(--img-bg);filter:drop-shadow(0 5px 12px rgba(0,0,0,.16))!important;animation:darumonUnderLogoFloat 3s ease-in-out infinite!important}@keyframes darumonUnderLogoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}@media(max-width:520px){.bottom-second-logo-under-character{margin-top:-22px!important}.bottom-second-under-darumon{width:170px!important}}
.under-darumon-happy-text-wrap{display:flex!important;justify-content:center!important;align-items:center!important;margin-top:-8px!important;margin-bottom:20px!important;pointer-events:none!important}.under-darumon-happy-text{width:520px!important;max-width:92%!important;height:auto!important;display:block!important;object-fit:var(--img-fit);filter:drop-shadow(0 4px 10px rgba(0,0,0,.12))!important;animation:textGlowFloat 3.4s ease-in-out infinite!important}@keyframes textGlowFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}@media(max-width:520px){.under-darumon-happy-text{width:320px!important}}
.bottom-second-darumon-logo + .bottom-second-logo-under-character + div:not(.under-darumon-happy-text-wrap){background:var(--img-bg);border:none!important;box-shadow:none;min-height:0!important;height:0!important;padding:0!important;margin:0!important;overflow:hidden!important}p:empty,div:empty{display:none!important}

.sec,section,#profile,#stamps,#colors,#secret,#gacha{position:relative!important}.sec::before,section::before,#profile::before,#stamps::before,#colors::before,#secret::before,#gacha::before{content:""!important;display:block!important;position:absolute!important;top:0!important;left:0!important;width:100%!important;height:16px!important;background:repeating-linear-gradient( 90deg,#ef6b55 0 54px,#ffe074 54px 108px,#f28aaa 108px 162px,#9ed7ef 162px 216px,#bde6a9 216px 270px,#cfa5e8 270px 324px )!important;z-index:10!important;pointer-events:none!important}.sec,section{padding-top:32px!important}@media(max-width:520px){.sec::before,section::before,#profile::before,#stamps::before,#colors::before,#secret::before,#gacha::before{height:12px!important;background:repeating-linear-gradient( 90deg,#ef6b55 0 38px,#ffe074 38px 76px,#f28aaa 76px 114px,#9ed7ef 114px 152px,#bde6a9 152px 190px,#cfa5e8 190px 228px )!important}.sec,section{padding-top:26px!important}}
@keyframes secretSmokeIdle{0%,100%{transform:translateY(0) scale(1);opacity:.34}50%{transform:translateY(-8px) scale(1.04);opacity:.52}}@keyframes secretSmokeOpen{0%{transform:translateY(28px) scale(.7);opacity:0}45%{transform:translateY(-10px) scale(1.12);opacity:.92}100%{transform:translateY(0) scale(1);opacity:.58}}@keyframes secretRevealPop{0%{filter:blur(3px);opacity:0}100%{filter:blur(0);opacity:1}}
.secret-title-wrap{flex-wrap:wrap!important}.secret-title-darumon{height:auto!important;display:block!important;object-fit:var(--img-fit);animation:secretDarumonFloat 3.6s ease-in-out infinite!important}@keyframes secretDarumonFloat{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-8px) rotate(-2deg)}}@media(max-width:520px){.secret-title-wrap{gap:12px!important}.secret-title-darumon{width:58px!important}}
#secret .sec-head{}#secret .sec-en{}.secret-title-wrap{}.secret-title-darumon{}@media(max-width:520px){#secret .sec-head{padding-top:22px!important}.secret-title-wrap{margin-top:8px!important}.secret-title-darumon{margin-top:6px!important}}
#secret .sec-head{}#secret .sec-en{display:block!important;margin-bottom:2px!important;line-height:1!important;}.secret-title-wrap{}@media(max-width:520px){#secret .sec-head{padding-top:14px!important}#secret .sec-en{margin-bottom:0!important;transform:translateY(4px)!important}}
.secret-title-wrap{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:10px!important}.secret-title-darumon{}@media(max-width:520px){.secret-title-wrap{gap:8px!important}.secret-title-darumon{width:70px!important}}
.secret-title-wrap .sec-title{margin-top:14px!important}.secret-title-darumon{}@media(max-width:520px){.secret-title-wrap .sec-title{margin-top:10px!important}}
.secret-title-wrap .sec-title{font-size:clamp(42px,6vw,76px)!important;line-height:1.08!important;letter-spacing:.02em!important}@media(max-width:520px){.secret-title-wrap .sec-title{font-size:clamp(34px,8vw,52px)!important}}
#secret .sec-head{padding-top:42px!important}#secret .sec-en{transform:translateY(14px)!important}.secret-title-wrap{margin-top:16px!important}@media(max-width:520px){#secret .sec-head{padding-top:32px!important}#secret .sec-en{transform:translateY(10px)!important}.secret-title-wrap{margin-top:12px!important}}
.secret-title-darumon{}@media(max-width:520px){.secret-title-darumon{width:96px!important}}
.secret-title-darumon{width:190px!important;filter:drop-shadow(0 10px 18px rgba(0,0,0,.2))!important}@media(max-width:520px){.secret-title-darumon{width:138px!important}}
.secret-title-darumon{}@media(max-width:520px){.secret-title-darumon{margin-top:-8px!important}}
.secret-title-darumon{margin-top:-34px!important}@media(max-width:520px){.secret-title-darumon{margin-top:-26px!important}}
#secret .secret-triangle-grid{align-items:start!important}#secret .c-card--secret{border:3px solid rgba(205,144,55,.95)!important;border-radius:28px!important;background:radial-gradient(circle at 50% 0%,rgba(255,215,106,.10),transparent 38%),linear-gradient(180deg,rgba(66,24,10,.96),rgba(37,8,2,.98))!important;box-shadow:inset 0 0 0 1px rgba(255,226,138,.18),0 12px 24px rgba(0,0,0,.18)!important;overflow:hidden!important}#secret .c-card--secret-bottom{}#secret .c-card--secret summary{list-style:none!important;cursor:pointer!important;min-height:190px!important;padding:26px 18px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:14px!important;position:relative!important}#secret .c-card--secret summary::-webkit-details-marker{display:none!important}#secret .c-card--secret summary::before{content:""!important;position:absolute!important;left:50%!important;bottom:14px!important;transform:translateX(-50%)!important;width:72%!important;height:58px!important;background:radial-gradient(circle at 30% 55%,rgba(255,250,230,.45) 0 16px,transparent 17px),radial-gradient(circle at 50% 42%,rgba(255,250,230,.38) 0 21px,transparent 22px),radial-gradient(circle at 68% 58%,rgba(255,250,230,.42) 0 15px,transparent 16px)!important;opacity:.38!important;pointer-events:none!important;animation:secretTriangleSmokeIdle 3.6s ease-in-out infinite!important}#secret .c-card--secret[open] summary::before{animation:secretTriangleSmokeOpen .9s ease both!important}#secret .secret-triangle-icon{position:relative!important;z-index:2!important;width:96px!important;height:96px!important;border-radius:24px!important;display:grid!important;place-items:center!important;background:rgba(116,58,20,.66)!important;box-shadow:0 8px 18px rgba(0,0,0,.2),inset 0 0 0 1px rgba(255,226,138,.18)!important}#secret .secret-triangle-icon img{width:76px!important;height:76px!important;object-fit:var(--img-fit);display:block!important;filter:drop-shadow(0 5px 9px rgba(0,0,0,.24))!important}#secret .secret-triangle-button{position:relative!important;z-index:2!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:10px 20px!important;border-radius:999px!important;background:linear-gradient(135deg,#fff3b8,#ffd35f,#f5a638)!important;color:#3b1105!important;font-size:clamp(20px,2.5vw,28px)!important;font-weight:900!important;box-shadow:0 6px 0 rgba(113,57,14,.82),0 12px 22px rgba(0,0,0,.18)!important}#secret .secret-triangle-body{padding:0 26px!important;max-height:0!important;opacity:0!important;overflow:hidden!important;transform:translateY(-8px)!important;transition:all .5s ease!important}#secret .c-card--secret[open] .secret-triangle-body{max-height:520px!important;opacity:1!important;transform:translateY(0)!important;padding:0 26px 30px!important}#secret .secret-triangle-body h3{margin:0 0 14px!important;text-align:center!important;color:#ffd35f!important;font-size:clamp(24px,3vw,34px)!important;font-weight:900!important;text-shadow:0 2px 0 rgba(71,28,6,.9)!important}#secret .secret-triangle-body p{margin:0!important;color:rgba(255,255,255,.86)!important;font-size:clamp(15px,2vw,22px)!important;line-height:1.82!important;font-weight:700!important;text-align:left!important}@keyframes secretTriangleSmokeIdle{0%,100%{transform:translateX(-50%) translateY(0) scale(1);opacity:.28}50%{transform:translateX(-50%) translateY(-7px) scale(1.05);opacity:.48}}@keyframes secretTriangleSmokeOpen{0%{transform:translateX(-50%) translateY(20px) scale(.7);opacity:0}45%{transform:translateX(-50%) translateY(-10px) scale(1.14);opacity:.88}100%{transform:translateX(-50%) translateY(0) scale(1);opacity:.45}}@media(max-width:640px){#secret .secret-triangle-grid{grid-template-columns:1fr!important;max-width:390px!important;gap:20px!important}#secret .c-card--secret-bottom{grid-column:auto!important}#secret .c-card--secret summary{min-height:180px!important;padding:24px 16px!important}}
#secret .secret-triangle-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important;max-width:820px!important;margin:18px auto 0!important}#secret .c-card--secret{width:100%!important;max-width:none!important;margin:0!important}#secret .c-card--secret-bottom{grid-column:1 / -1!important;justify-self:center!important;width:calc(50% - 8px)!important;max-width:none!important}@media(max-width:640px){#secret .secret-triangle-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;max-width:94vw!important}#secret .c-card--secret,#secret .c-card--secret-bottom{max-width:none!important;margin:0!important}#secret .c-card--secret-bottom{grid-column:1 / -1!important;justify-self:center!important;width:calc(50% - 6px)!important}#secret .c-card--secret summary{min-height:145px!important;padding:18px 8px!important;gap:10px!important}#secret .secret-triangle-icon{width:68px!important;height:68px!important;border-radius:18px!important}#secret .secret-triangle-icon img{width:52px!important;height:52px!important}#secret .secret-triangle-button{font-size:14px!important;padding:8px 10px!important;white-space:nowrap!important}#secret .c-card--secret[open] .secret-triangle-body{padding:0 10px 18px!important}#secret .secret-triangle-body h3{font-size:20px!important;margin-bottom:10px!important}#secret .secret-triangle-body p{font-size:13px!important;line-height:1.65!important}}
#secret .secret-triangle-grid{margin-top:-38px!important}@media(max-width:640px){#secret .secret-triangle-grid{margin-top:-52px!important}}
#story .pure-darumon-book{width:min(92vw,720px)!important;margin:0 auto!important;text-align:center!important}#story .pure-darumon-book>input{position:absolute!important;opacity:0!important;pointer-events:none!important}#story .pure-book-stage{position:relative!important;width:100%!important;aspect-ratio:1 / 1!important;perspective:1400px!important;border-radius:26px!important;overflow:hidden!important;background:#fff!important;box-shadow:0 12px 26px rgba(99,52,19,.15)!important}#story .pure-book-page{position:absolute!important;inset:0!important;opacity:0!important;transform:rotateY(88deg)!important;transform-origin:left center!important;transition:transform .62s ease,opacity .32s ease!important;backface-visibility:hidden!important;background:#fff!important}#story .pure-book-page img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}#story .pure-book-stage::before,#story .pure-book-stage::after,#story .pure-book-page::before,#story .pure-book-page::after{content:none!important;display:none!important}#pure-book-1:checked ~ .pure-book-stage .pure-book-page-1,#pure-book-2:checked ~ .pure-book-stage .pure-book-page-2,#pure-book-3:checked ~ .pure-book-stage .pure-book-page-3,#pure-book-4:checked ~ .pure-book-stage .pure-book-page-4,#pure-book-5:checked ~ .pure-book-stage .pure-book-page-5{opacity:1!important;transform:rotateY(0deg)!important;z-index:5!important}#story .pure-book-nav{display:none!important;justify-content:center!important;gap:10px!important;margin-top:16px!important}#pure-book-1:checked ~ .pure-book-nav-1,#pure-book-2:checked ~ .pure-book-nav-2,#pure-book-3:checked ~ .pure-book-nav-3,#pure-book-4:checked ~ .pure-book-nav-4,#pure-book-5:checked ~ .pure-book-nav-5{display:flex!important}#story .pure-book-nav label{display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:10px 16px!important;border-radius:999px!important;background:linear-gradient(135deg,#fff4b7,#ffd35d,#f7a93e)!important;color:#4a1807!important;font-weight:900!important;font-size:14px!important;box-shadow:0 5px 0 rgba(131,66,19,.72),0 10px 18px rgba(0,0,0,.10)!important;cursor:pointer!important}#story .pure-book-dots{display:flex!important;justify-content:center!important;gap:8px!important;margin-top:14px!important}#story .pure-book-dots label{width:9px!important;height:9px!important;border-radius:999px!important;background:#f2c35a!important;opacity:.35!important}#pure-book-1:checked ~ .pure-book-dots label:nth-child(1),#pure-book-2:checked ~ .pure-book-dots label:nth-child(2),#pure-book-3:checked ~ .pure-book-dots label:nth-child(3),#pure-book-4:checked ~ .pure-book-dots label:nth-child(4),#pure-book-5:checked ~ .pure-book-dots label:nth-child(5){width:24px!important;opacity:1!important;background:#ef6b55!important}@media(max-width:520px){#story .pure-darumon-book{width:92vw!important}#story .pure-book-stage{border-radius:var(--radius-lg)!important}#story .pure-book-nav label{font-size:12px!important;padding:9px 12px!important}}
#story .sec-head{padding-top:24px !important}
#power .power-mini-scenes{width:min(92vw,780px)!important;margin:28px auto 0!important;display:flex!important;flex-direction:column!important;}#power .power-mini-scene{display:grid!important;position:relative!important}#power .power-mini-reverse{}#power .power-mini-char{display:flex!important;justify-content:center!important;align-items:center!important;position:relative!important;}#power .power-mini-char::before{content:""!important;position:absolute!important;width:132px!important;height:132px!important;border-radius:999px!important;background:radial-gradient(circle,rgba(255,222,112,.34),rgba(255,222,112,0) 70%)!important;z-index:0!important}#power .power-mini-char img{max-width:100%!important;height:auto!important;display:block!important;position:relative!important;z-index:1!important;transform-origin:center center!important}#power .power-mini-koro .power-mini-char img{animation:miniKoro 3s ease-in-out infinite!important}#power .power-mini-fire .power-mini-char img{animation:miniFire 2.4s ease-in-out infinite!important}#power .power-mini-heart .power-mini-char img{animation:miniHeart 3.2s ease-in-out infinite!important}#power .power-mini-bubble{position:relative!important;background:rgba(255,255,250,.96)!important;border:3px solid #ffd35d!important;text-align:center!important;box-shadow:0 10px 20px rgba(107,57,17,.10),inset 0 0 0 1px rgba(255,255,255,.8)!important}#power .power-mini-bubble::before{content:""!important;position:absolute!important;top:50%!important;width:22px!important;height:22px!important;background:rgba(255,255,250,.96)!important;border-left:3px solid #ffd35d!important;border-bottom:3px solid #ffd35d!important;transform:translateY(-50%) rotate(45deg)!important}#power .power-mini-scene:not(.power-mini-reverse) .power-mini-bubble::before{left:-13px!important}#power .power-mini-reverse .power-mini-bubble::before{right:-13px!important;transform:translateY(-50%) rotate(225deg)!important}#power .power-mini-koro .power-mini-bubble,#power .power-mini-koro .power-mini-bubble::before{border-color:#ef6b55!important}#power .power-mini-fire .power-mini-bubble,#power .power-mini-fire .power-mini-bubble::before{border-color:#f0a51c!important}#power .power-mini-heart .power-mini-bubble,#power .power-mini-heart .power-mini-bubble::before{border-color:#ff7cac!important}#power .power-mini-bubble h3{margin:0 0 10px!important;color:#3b1608!important;font-weight:900!important;letter-spacing:.04em!important}#power .power-mini-bubble p{margin:0!important;color:#6b5b54!important;font-weight:800!important}@keyframes miniKoro{0%,100%{transform:rotate(-6deg) translateY(0)}35%{transform:rotate(7deg) translateY(-6px)}70%{transform:rotate(-3deg) translateY(0)}}@keyframes miniFire{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-7px) scale(1.04)}}@keyframes miniHeart{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-7px) rotate(-2deg)}}@media(max-width:560px){#power .power-mini-scenes{width:94vw!important;gap:18px!important;margin-top:24px!important}#power .power-mini-scene,#power .power-mini-reverse{grid-template-columns:116px minmax(0,1fr)!important;gap:8px!important}#power .power-mini-reverse{grid-template-columns:minmax(0,1fr) 116px!important}#power .power-mini-char{min-height:118px!important}#power .power-mini-char::before{width:96px!important;height:96px!important}#power .power-mini-char img{width:116px!important}#power .power-mini-bubble{padding:16px 12px!important;border-radius:22px!important}#power .power-mini-bubble::before{width:16px!important;height:16px!important}#power .power-mini-scene:not(.power-mini-reverse) .power-mini-bubble::before{left:-10px!important}#power .power-mini-reverse .power-mini-bubble::before{right:-10px!important}#power .power-mini-bubble h3{font-size:19px!important;margin-bottom:8px!important}#power .power-mini-bubble p{font-size:13px!important;line-height:1.55!important}}
#power .sec-head{}
#power .power-mini-scene{grid-template-columns:250px minmax(0,1fr)!important;gap:10px!important}#power .power-mini-reverse{grid-template-columns:minmax(0,1fr) 250px!important}#power .power-mini-char{min-height:230px!important}#power .power-mini-char::before{display:none!important;content:none!important}#power .power-mini-char img{width:250px!important;filter:drop-shadow(0 12px 18px rgba(92,45,13,.18))!important}#power .power-mini-bubble{padding:20px 20px!important;border-radius:26px!important}#power .power-mini-bubble h3{font-size:clamp(22px,3vw,32px)!important;margin-bottom:8px!important}#power .power-mini-bubble p{font-size:clamp(15px,2.2vw,22px)!important;line-height:1.55!important}@media(max-width:560px){#power .power-mini-scene,#power .power-mini-reverse{grid-template-columns:150px minmax(0,1fr)!important;gap:6px!important}#power .power-mini-reverse{grid-template-columns:minmax(0,1fr) 150px!important}#power .power-mini-char{min-height:150px!important}#power .power-mini-char img{width:150px!important}#power .power-mini-bubble{padding:14px 10px!important}#power .power-mini-bubble h3{font-size:18px!important}#power .power-mini-bubble p{font-size:12.5px!important;line-height:1.45!important}}
#power .power-mini-koro .power-mini-char img{}#power .power-mini-koro .power-mini-char{}#power .sec-head{}@media(max-width:560px){#power .power-mini-koro .power-mini-char img{width:180px !important}#power .power-mini-koro .power-mini-char{min-height:180px !important}#power .sec-head{padding-top:70px !important}}
#power .power-mini-koro{}#power .power-mini-koro .power-mini-char{}#power .power-mini-koro .power-mini-char img{}#power .power-mini-scenes{}#power .sec-head{padding-top:70px !important;}@media(max-width:560px){#power .power-mini-koro .power-mini-char{min-height:220px !important}#power .power-mini-koro .power-mini-char img{width:220px !important}#power .power-mini-scenes{gap:10px !important}#power .sec-head{padding-top:55px !important}}
#power .power-mini-scenes{}#power .power-mini-scene{align-items:center !important}#power .power-mini-koro{grid-template-columns:310px minmax(0,1fr) !important}#power .power-mini-koro .power-mini-char{min-height:260px !important}#power .power-mini-koro .power-mini-char img{}#power .power-mini-fire{}@media(max-width:560px){#power .power-mini-scenes{gap:0 !important;margin-top:0 !important}#power .power-mini-koro{margin-top:-18px !important;margin-bottom:-58px !important;grid-template-columns:170px minmax(0,1fr) !important}#power .power-mini-koro .power-mini-char{min-height:180px !important}#power .power-mini-koro .power-mini-char img{width:255px !important;max-width:none !important}#power .power-mini-fire{margin-top:-6px !important}}
#power .speech:empty,#power .bubble:empty,#power .power-speech:empty,#power .power-bubble:empty,#power .power-mini-bubble:empty,#power div:empty{display:none!important;width:0!important;height:0!important;margin:0!important;padding:0!important;border:none!important;background:none!important;box-shadow:none!important}#power .power-mini-scenes{}#power .power-mini-koro{}#power .power-mini-koro .power-mini-char img{width:430px!important;max-width:none!important}#power .power-mini-scenes::before,#power .power-mini-scenes::after{content:none!important;display:none!important}@media(max-width:560px){#power .power-mini-scenes{margin-top:-42px!important;gap:0!important}#power .power-mini-koro{margin-top:-34px!important;margin-bottom:-72px!important}#power .power-mini-koro .power-mini-char img{width:270px!important;max-width:none!important}}
#power .power-mini-scenes{margin-top:-70px !important;gap:0 !important}#power .power-mini-koro{}#power .sec-head{margin-bottom:-20px !important}@media(max-width:560px){#power .power-mini-scenes{margin-top:-78px !important}#power .power-mini-koro{margin-top:-60px !important;margin-bottom:-95px !important}#power .sec-head{margin-bottom:-28px !important}}
#power .power-mini-scenes>*:empty{display:none !important;width:0 !important;height:0 !important;margin:0 !important;padding:0 !important;border:none !important;box-shadow:none !important;background:var(--img-bg) !important}#power .power-mini-koro{margin-bottom:-145px !important}#power .power-mini-fire{}@media(max-width:560px){#power .power-mini-koro{margin-bottom:-130px !important}#power .power-mini-fire{margin-top:-28px !important}}
#power .power-mini-fire .power-mini-char img{width:340px !important;max-width:none !important}@media(max-width:560px){#power .power-mini-fire .power-mini-char img{width:220px !important}}

#power .power-mini-heart img,#power .power-mini-heart .power-mini-char img,#power .power-mini-heart picture img{}#power .power-mini-heart .power-mini-char{}@media(max-width:560px){#power .power-mini-heart img,#power .power-mini-heart .power-mini-char img,#power .power-mini-heart picture img{width:300px !important;max-width:none !important}#power .power-mini-heart .power-mini-char{min-height:220px !important}}
#power .power-mini-heart{grid-template-columns:230px minmax(0,1fr)!important;align-items:center!important;margin-top:-10px!important}#power .power-mini-heart img,#power .power-mini-heart .power-mini-char img,#power .power-mini-heart picture img{width:340px!important;max-width:none!important}#power .power-mini-heart .power-mini-char{min-height:240px!important;overflow:visible!important}#power .power-mini-heart .power-mini-bubble{margin-left:8px!important}@media(max-width:560px){#power .power-mini-heart{grid-template-columns:145px minmax(0,1fr)!important;gap:6px!important;margin-top:-8px!important}#power .power-mini-heart img,#power .power-mini-heart .power-mini-char img,#power .power-mini-heart picture img{width:210px!important;max-width:none!important}#power .power-mini-heart .power-mini-char{min-height:160px!important}#power .power-mini-heart .power-mini-bubble{margin-left:0!important}}
#power .power-mini-koro{margin-top:18px!important}#power .power-mini-koro .power-mini-char img{transform:translateY(24px)!important}@media(max-width:560px){#power .power-mini-koro{margin-top:14px!important}#power .power-mini-koro .power-mini-char img{transform:translateY(20px)!important}}


html,body{overflow-x:hidden !important;max-width:100% !important}#power{overflow-x:hidden !important}#power img{max-width:100%;height:auto}
#power .power-mini-fire{margin-top:22px !important}#power .power-mini-fire .power-mini-bubble{transform:translateY(12px) !important}#power .power-mini-fire .power-mini-char{transform:translateY(12px) !important}@media(max-width:560px){#power .power-mini-fire{margin-top:16px !important}#power .power-mini-fire .power-mini-bubble,#power .power-mini-fire .power-mini-char{transform:translateY(8px) !important}}
#power,section[id*="power"]{display:none !important}
@media(max-width:560px){}
@media(max-width:560px){}
@media(max-width:560px){}
@media(max-width:560px){}
#gacha .sec-head{padding-top:120px !important}@media(max-width:520px){#gacha .sec-head{padding-top:90px !important}}
#hukutan .hukutan-head{}#hukutan .hukutan-creator-box.hukutan-creator-horizontal{max-width:780px !important;margin:0 auto !important;padding:26px 24px !important;display:flex !important;justify-content:center !important;text-align:left !important;background:#fffaf4 !important;border:4px solid #f0cf72 !important;border-radius:34px !important;box-shadow:0 8px 20px rgba(120,70,20,.08) !important}#hukutan .hukutan-creator-image-wrap{flex:0 0 42% !important;display:flex !important;justify-content:center !important;align-items:center !important}#hukutan .hukutan-hug-image{height:auto !important;object-fit:var(--img-fit) !important;background:var(--img-bg) !important;border:0 !important;box-shadow:none !important;filter:drop-shadow(0 6px 12px rgba(100,50,20,.16)) !important}#hukutan .hukutan-creator-text{flex:1 !important;color:#6b3a1a !important}#hukutan .hukutan-creator-en{letter-spacing:.42em !important;color:#d6a32d !important;font-weight:900 !important;margin-bottom:6px !important}#hukutan .hukutan-creator-text h3{font-family:"Noto Sans JP",sans-serif !important;line-height:1.1 !important;color:#7a431a !important;margin:0 0 16px !important;letter-spacing:.08em !important}#hukutan .hukutan-creator-text p{font-weight:800 !important;color:#6b4a35 !important;margin:0 0 14px !important}@media(max-width:560px){#hukutan .hukutan-head{margin-bottom:18px !important}#hukutan .hukutan-creator-box.hukutan-creator-horizontal{max-width:94% !important;padding:20px 14px !important;gap:12px !important;border-radius:28px !important}#hukutan .hukutan-creator-image-wrap{flex:0 0 43% !important}#hukutan .hukutan-hug-image{max-width:175px !important}#hukutan .hukutan-creator-en{font-size:9px !important;letter-spacing:.28em !important;margin-bottom:4px !important}#hukutan .hukutan-creator-text h3{font-size:23px !important;margin-bottom:10px !important}#hukutan .hukutan-creator-text p{font-size:13px !important;line-height:1.75 !important;margin-bottom:10px !important}}
#hukutan .hukutan-creator-image-wrap{flex:0 0 48% !important}#hukutan .hukutan-hug-image{}@media(max-width:560px){#hukutan .hukutan-creator-image-wrap{flex:0 0 48% !important}#hukutan .hukutan-hug-image{max-width:220px !important}}
#hukutan .hukutan-creator-image-wrap{flex:0 0 55% !important}#hukutan .hukutan-hug-image{}@media(max-width:560px){#hukutan .hukutan-creator-image-wrap{flex:0 0 52% !important}#hukutan .hukutan-hug-image{max-width:280px !important}}
#hukutan .hukutan-creator-box.hukutan-creator-horizontal{}#hukutan .hukutan-creator-image-wrap{flex:0 0 62% !important}#hukutan .hukutan-hug-image{}#hukutan .hukutan-creator-text{flex:0 0 38% !important}@media(max-width:560px){#hukutan .hukutan-creator-image-wrap{flex:0 0 58% !important}#hukutan .hukutan-hug-image{max-width:340px !important}#hukutan .hukutan-creator-text{flex:0 0 42% !important}}
#hukutan .hukutan-creator-box.hukutan-creator-horizontal{align-items:center !important;gap:6px !important}#hukutan .hukutan-creator-image-wrap{flex:0 0 68% !important}#hukutan .hukutan-hug-image{}#hukutan .hukutan-creator-text{flex:1 1 32% !important;min-width:220px !important}#hukutan .hukutan-creator-text h3{}#hukutan .hukutan-creator-text p{}@media(max-width:560px){#hukutan .hukutan-creator-box.hukutan-creator-horizontal{flex-direction:column !important;text-align:center !important}#hukutan .hukutan-creator-image-wrap{flex:none !important;width:100% !important}#hukutan .hukutan-hug-image{max-width:420px !important;width:96% !important}#hukutan .hukutan-creator-text{min-width:auto !important;width:100% !important;text-align:center !important}}
#hukutan .hukutan-creator-image-wrap{flex:0 0 72% !important}#hukutan .hukutan-hug-image{}#hukutan .hukutan-creator-text{flex:1 1 28% !important}@media(max-width:560px){#hukutan .hukutan-hug-image{max-width:480px !important;width:98% !important}}
#hukutan .hukutan-creator-en{font-size:14px !important}#hukutan .hukutan-creator-text h3{font-size:36px !important}#hukutan .hukutan-creator-text p{font-size:19px !important;line-height:1.9 !important}@media(max-width:560px){#hukutan .hukutan-creator-en{font-size:11px !important}#hukutan .hukutan-creator-text h3{font-size:28px !important}#hukutan .hukutan-creator-text p{font-size:16px !important}}
#hukutan .hukutan-head{margin-bottom:0 !important;padding-bottom:0 !important}#hukutan .hukutan-creator-box{}#hukutan .hukutan-hug-image{margin-bottom:-25px !important}#hukutan .hukutan-creator-text{}@media(max-width:560px){#hukutan .hukutan-hug-image{margin-top:-40px !important;margin-bottom:-35px !important}#hukutan .hukutan-creator-text{margin-top:-28px !important}}
#hukutan .hukutan-creator-box{}#hukutan .hukutan-creator-image-wrap{}#hukutan .hukutan-hug-image{margin-top:0 !important}@media(max-width:560px){#hukutan .hukutan-creator-box{padding-top:0 !important}#hukutan .hukutan-creator-image-wrap{margin-top:-90px !important}}
#hukutan>.sec-inner>.sec-head,#hukutan .hukutan-head{display:none !important}
#hukutan .hukutan-creator-box{}@media(max-width:560px){#hukutan .hukutan-creator-box{margin-top:32px !important}}
#hukutan .hukutan-creator-box{}@media(max-width:560px){#hukutan .hukutan-creator-box{margin-top:60px !important}}
#hukutan .hukutan-creator-box{margin-top:115px !important}@media(max-width:560px){#hukutan .hukutan-creator-box{margin-top:90px !important}}
#hukutan .hukutan-hug-image{}@media(max-width:560px){#hukutan .hukutan-hug-image{max-width:260px !important;width:72% !important}}
#hukutan .hukutan-creator-box{overflow:hidden !important;padding-top:34px !important}#hukutan .hukutan-creator-image-wrap{margin-top:0 !important;transform:none !important}#hukutan .hukutan-hug-image{width:62% !important;max-width:320px !important;margin:0 auto 10px !important;display:block !important;position:static !important;transform:none !important}#hukutan .hukutan-creator-text{margin-top:0 !important}@media(max-width:560px){#hukutan .hukutan-creator-box{padding-top:28px !important}#hukutan .hukutan-hug-image{width:58% !important;max-width:220px !important;margin-bottom:8px !important}}

footer img:nth-of-type(2){transform:scale(1.65) !important;transform-origin:center center !important;margin-top:40px !important;margin-bottom:70px !important}@media(max-width:560px){footer img:nth-of-type(2){transform:scale(1.85) !important;margin-top:50px !important;margin-bottom:85px !important}}
footer img{max-width:none !important}footer img[src*="data:image"]{width:320px !important;height:auto !important;display:block !important;margin:30px auto 35px !important}@media(max-width:520px){footer img[src*="data:image"]{width:360px !important}}
footer .footer-main-darumon{display:block !important;width:min(72vw,420px) !important;height:auto !important;max-width:none !important;margin:18px auto 2px !important;padding:0 !important;object-fit:var(--img-fit) !important;transform:none !important}footer .footer-tagline{display:block !important;width:min(86vw,520px) !important;height:auto !important;max-width:none !important;margin:0 auto 18px !important;padding:0 !important}@media(max-width:560px){footer .footer-main-darumon{width:78vw !important;margin:12px auto -2px !important}footer .footer-tagline{width:88vw !important;margin-top:-4px !important}}
footer .bottom-second-logo-under-character{line-height:0!important;font-size:0!important;margin-bottom:-18px!important;align-items:flex-end!important}footer .bottom-second-under-darumon.footer-main-darumon{display:block!important;margin:10px auto -10px!important;padding:0!important;vertical-align:bottom!important;object-fit:var(--img-fit);animation:none!important}footer .under-darumon-happy-text-wrap{line-height:0!important;font-size:0!important;margin-top:-18px!important;margin-bottom:16px!important;padding:0!important;align-items:flex-start!important}footer .under-darumon-happy-text.footer-tagline{display:block!important;margin:0 auto!important;padding:0!important;vertical-align:top!important;animation:none!important}@media(max-width:560px){footer .bottom-second-logo-under-character{margin-bottom:-14px!important}footer .bottom-second-under-darumon.footer-main-darumon{margin:8px auto -8px!important}footer .under-darumon-happy-text-wrap{margin-top:-14px!important;margin-bottom:14px!important}}
html{overflow-x:hidden!important}body{overflow-x:visible!important}body::before{content:""!important;position:fixed!important;inset:0!important;width:100vw!important;height:100vh!important;pointer-events:none!important;overflow:hidden!important;z-index:-1!important}nav{position:sticky!important;top:0!important;left:0!important;right:0!important;z-index:2147483647!important;width:100%!important;background:rgba(26,8,0,.98)!important;box-shadow:0 5px 18px rgba(0,0,0,.24)!important;transform:none!important;-webkit-transform:none!important;contain:none!important;isolation:isolate!important}nav + .fun-divider{position:relative!important;z-index:2!important}.sec{scroll-margin-top:120px!important}@media(max-width:720px){nav{top:0!important}.sec{scroll-margin-top:132px!important}}
.nav-links{gap:3px!important}.nav-links a{font-size:10px!important;padding:5px 8px!important;white-space:nowrap!important}#top,#profile,#story,#stamps,#colors,#secret,#gacha,#creator{scroll-margin-top:120px!important}@media(max-width:720px){nav{gap:7px!important}.nav-links{gap:2px!important}.nav-links a{font-size:9px!important;padding:5px 6px!important;letter-spacing:.02em!important}#top,#profile,#story,#stamps,#colors,#secret,#gacha,#creator{scroll-margin-top:138px!important}}
.prof-name{display:flex!important;align-items:center!important;flex-wrap:wrap!important;gap:8px!important}.profile-sns-buttons{display:inline-flex!important;align-items:center!important;gap:8px!important;margin-left:10px!important;vertical-align:middle!important}.c-btn--profile-sns{width:42px!important;height:42px!important;min-width:42px!important;min-height:42px!important;border-radius:50%!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important;text-decoration:none!important;box-shadow:0 4px 10px rgba(0,0,0,.18)!important;transition:transform .18s ease,box-shadow .18s ease!important;background:#fff!important}.c-btn--profile-sns:hover,.c-btn--profile-sns:focus,.c-btn--profile-sns:active{transform:translateY(-2px) scale(1.06)!important;box-shadow:0 7px 14px rgba(0,0,0,.24)!important}.c-btn--profile-sns img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important;margin:0!important;padding:0!important;border:0;border-radius:50%!important;background:var(--img-bg);box-shadow:none;filter:none!important}.c-btn--profile-sns.c-btn--tiktok{background:#000!important}@media(max-width:520px){.prof-name{gap:6px!important}.profile-sns-buttons{gap:7px!important;margin-left:8px!important}.c-btn--profile-sns{width:38px!important;height:38px!important;min-width:38px!important;min-height:38px!important}}
.c-btn--profile-sns.c-btn--instagram img{background:#fff !important}
.c-btn--profile-sns.c-btn--instagram{background:#fff !important}.c-btn--profile-sns.c-btn--instagram img{object-fit:var(--img-fit) !important;width:72% !important;height:72% !important;padding:0 !important;margin:auto !important;border-radius:0 !important;background:var(--img-bg) !important}
#promise,#contact{scroll-margin-top:132px!important}.promise-section .sec-head,.contact-section .sec-head{margin-bottom:24px!important}.c-card--promise,.c-card--contact{max-width:720px!important;margin:0 auto!important;text-align:center!important;background:#fffaf4!important;border:4px solid #ffd36a!important;border-radius:32px!important;padding:30px 22px!important;box-shadow:0 8px 20px rgba(120,60,20,.10)!important}.promise-lead,.c-card--contact p{color:#6b4a35!important;font-size:17px!important;font-weight:900!important;line-height:1.9!important;margin:0 0 20px!important}.promise-toggle,.c-btn--contact{display:inline-flex!important;align-items:center!important;justify-content:center!important;border:none!important;border-radius:999px!important;min-height:58px!important;padding:15px 30px!important;background:linear-gradient(135deg,#fff4b8 0%,#ffd36a 40%,#ff7aa2 100%)!important;color:#fff!important;text-decoration:none!important;font-family:"Kosugi Maru",sans-serif!important;font-size:18px!important;font-weight:900!important;letter-spacing:.04em!important;text-shadow:0 2px 0 rgba(160,70,20,.28)!important;box-shadow:0 7px 0 #e99431,0 14px 22px rgba(232,140,40,.22)!important;cursor:pointer!important;transition:transform .18s ease,box-shadow .18s ease!important}.promise-toggle:hover,.promise-toggle:focus,.c-btn--contact:hover,.c-btn--contact:focus{transform:translateY(-3px) scale(1.02)!important;box-shadow:0 10px 0 #e99431,0 18px 28px rgba(232,140,40,.25)!important;outline:none!important}.promise-image-wrap{margin:28px auto 0!important;max-width:980px!important;animation:promisePop .26s ease-out!important}.promise-image-wrap[hidden]{display:none!important}.promise-image{display:block!important;width:100%!important;max-width:980px!important;height:auto!important;margin:0 auto!important;border-radius:24px!important;border:4px solid #fff2c5!important;box-shadow:0 12px 30px rgba(120,60,20,.18)!important;background:#fff!important}.c-card--contact{border-color:#f6bfd3!important}.c-btn--contact{background:linear-gradient(135deg,#ff6f9a 0%,#ff8f64 48%,#ffd36a 100%)!important;box-shadow:0 7px 0 #e85b82,0 14px 22px rgba(232,90,130,.20)!important}.c-btn--contact:hover,.c-btn--contact:focus{box-shadow:0 10px 0 #e85b82,0 18px 28px rgba(232,90,130,.24)!important}@keyframes promisePop{0%{opacity:0;transform:translateY(-10px) scale(.97)}100%{opacity:1;transform:translateY(0) scale(1)}}@media(max-width:560px){.c-card--promise,.c-card--contact{border-radius:26px!important;padding:24px 16px!important}.promise-lead,.c-card--contact p{font-size:15px!important}.promise-toggle,.c-btn--contact{width:100%!important;max-width:320px!important;font-size:16px!important;padding:14px 18px!important}.promise-image{border-radius:18px!important;border-width:3px!important}}
.promise-details{margin:0 auto!important;text-align:center!important}.promise-details summary{list-style:none!important}.promise-details summary::-webkit-details-marker{display:none!important}.promise-details .promise-image-wrap{display:none!important}.promise-details[open] .promise-image-wrap{display:block!important;margin:28px auto 0!important;max-width:980px!important;animation:promisePop .26s ease-out!important}.promise-details[open] .promise-toggle{background:linear-gradient(135deg,#ff7aa2 0%,#ffd36a 100%)!important}.promise-details[open] .promise-toggle::after{content:""}.promise-toggle{user-select:none!important;-webkit-user-select:none!important}
.promise-toggle{min-height:72px!important;padding:12px 26px!important;background:linear-gradient(180deg,#fffdf3 0%,#fff3c9 100%)!important;border:4px solid #ffd36a!important;overflow:visible!important}.promise-button-logo{display:block!important;height:auto!important;object-fit:var(--img-fit);margin:0 auto!important;padding:0!important;border:0;background:var(--img-bg);box-shadow:none;filter:drop-shadow(0 4px 8px rgba(120,60,20,.16))!important}@media(max-width:560px){.promise-toggle{min-height:62px!important;padding:10px 16px!important}.promise-button-logo{width:min(330px,86vw)!important}}
.promise-button-logo{width:min(340px,68vw)!important;max-width:340px!important}@media(max-width:560px){.promise-button-logo{width:min(270px,72vw)!important;max-width:270px!important}}
.promise-title-image{text-align:center!important}.promise-title-logo{display:block!important;width:min(720px,92vw)!important;max-width:720px!important;height:auto!important;margin:0 auto!important}@media(max-width:560px){.promise-title-logo{width:min(520px,95vw)!important}}
.promise-helper{text-align:center!important;}.c-media--promise-helper{max-width:170px!important;height:auto!important;display:block!important;margin:0 auto!important;filter:drop-shadow(0 8px 16px rgba(0,0,0,.12))!important}@media(max-width:560px){.c-media--promise-helper{width:min(140px,40vw)!important}}
.promise-title-image{}.promise-helper{}.c-card--promise{margin-top:-8px!important}@media(max-width:560px){.promise-helper{margin:-28px 0 2px!important}}
.promise-title-image{margin-bottom:-35px !important}.promise-helper{margin:-70px 0 -10px !important}.c-media--promise-helper{width:min(170px,42vw)!important}@media(max-width:560px){.promise-title-image{margin-bottom:-28px !important}.promise-helper{margin:-58px 0 -12px !important}}
.c-btn--contact{min-height:78px!important;padding:12px 24px!important;background:linear-gradient(180deg,#fffdf3 0%,#fff1bd 100%)!important;border:4px solid #ffd36a!important;overflow:visible!important}.contact-button-logo{display:block!important;height:auto!important;object-fit:var(--img-fit);margin:0 auto!important;padding:0!important;border:0;background:var(--img-bg);box-shadow:none;filter:drop-shadow(0 4px 8px rgba(120,60,20,.16))!important}@media(max-width:560px){.c-btn--contact{min-height:66px!important;padding:10px 16px!important}.contact-button-logo{width:min(330px,86vw)!important}}
.contact-button-logo{width:min(360px,68vw)!important;max-width:360px!important}@media(max-width:560px){.contact-button-logo{width:min(280px,72vw)!important;max-width:280px!important}}
#shop .sec-head{}#shop .darumon-shop-logo{object-fit:var(--img-fit);opacity:1!important;filter:drop-shadow(0 10px 18px rgba(100,50,14,.12))!important}@media(max-width:560px){#shop .sec-head{padding-top:34px!important}#shop .darumon-shop-logo{width:88vw!important;margin-bottom:18px!important}}
#shop .sec-head{}#shop .shop-logo,#shop .shop-main-logo,#shop .darumon-shop-logo{display:block!important;width:min(86vw,620px)!important;max-width:620px!important;height:auto!important;margin:0 auto 6px!important;object-fit:var(--img-fit)}#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .suzuri,#shop .shop-suzuri{background:#fff!important}#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .suzuri img,#shop .shop-suzuri img{transform:scale(1.55)!important}#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"],#shop .booth,#shop .shop-booth{background:#fff3df!important}#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .booth img,#shop .shop-booth img{transform:scale(1.18)!important}#shop .shop-logo + *,#shop .shop-main-logo + *,#shop .darumon-shop-logo + *{margin-top:0!important}@media(max-width:560px){#shop .sec-head{margin-bottom:4px!important}#shop .shop-logo,#shop .shop-main-logo,#shop .darumon-shop-logo{width:92vw!important;margin-bottom:2px!important}#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .suzuri img,#shop .shop-suzuri img{transform:scale(1.65)!important}#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .booth img,#shop .shop-booth img{transform:scale(1.18)!important}}
#shop{padding-top:28px!important}#shop .sec-head{padding-top:0!important;padding-bottom:0!important}#shop .sec-en{margin-bottom:0!important}#shop .darumon-shop-logo{display:block!important;width:min(88vw,620px)!important;max-width:620px!important;height:auto!important;margin:0 auto 0!important;padding:0!important;object-fit:var(--img-fit);transform:none!important}@media(max-width:560px){#shop{padding-top:24px!important}#shop .darumon-shop-logo{width:92vw!important;margin-bottom:0!important}}

#shop .shop-logo-link,#shop .darumon-shop-link,#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"]{background:#FFE4EE !important;border:2px solid #F7BDD0 !important}
#shop .shop-logo-link.suzuri,#shop .darumon-shop-link-suzuri,#shop a[href*="suzuri"],#shop a[href*="SUZURI"]{background:var(--img-bg) !important;background-color:transparent !important;box-shadow:none !important}
#shop .shop-logo-link,#shop .darumon-shop-link,#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"]{background:#FFE4EE !important;border-color:#F7BDD0 !important}#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .shop-logo-link.suzuri,#shop .darumon-shop-link-suzuri{background:var(--img-bg) !important;background-color:transparent !important;border-color:transparent !important;box-shadow:none !important}#shop a[href*="suzuri"] *,#shop a[href*="SUZURI"] *,#shop .shop-logo-link.suzuri *,#shop .darumon-shop-link-suzuri *{background:var(--img-bg) !important;background-color:transparent !important}#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .shop-logo-link.suzuri img,#shop .darumon-shop-link-suzuri img{transform:scale(1.72) !important;transform-origin:center !important;object-fit:var(--img-fit) !important}@media(max-width:560px){#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .shop-logo-link.suzuri img,#shop .darumon-shop-link-suzuri img{transform:scale(1.82) !important}}
#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .darumon-shop-link-suzuri,#shop .shop-logo-link.suzuri{border:3px solid #F7BDD0 !important;border-radius:24px !important;background:#FFE4EE !important;box-shadow:none !important}
#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"],#shop .darumon-shop-link-suzuri,#shop .darumon-shop-link-booth{background:#FFF8EC !important;border:3px solid #E6C36A !important;border-radius:24px !important}
#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .booth img,#shop .shop-booth img,#shop .darumon-shop-link-booth img{width:92px !important;height:92px !important;max-width:92px !important;max-height:92px !important;object-fit:var(--img-fit) !important;transform:none !important}@media(max-width:560px){#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .booth img,#shop .shop-booth img,#shop .darumon-shop-link-booth img{width:82px !important;height:82px !important;max-width:82px !important;max-height:82px !important}}
#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"],#shop .darumon-shop-link-suzuri,#shop .darumon-shop-link-booth,#shop .shop-logo-link.suzuri,#shop .shop-logo-link.booth{width:142px !important;height:142px !important;min-width:142px !important;min-height:142px !important;max-width:142px !important;max-height:142px !important;border-radius:50% !important;padding:16px !important;display:flex !important;align-items:center !important;justify-content:center !important;background:#FFF8EC !important;border:3px solid #E6C36A !important;overflow:hidden !important;box-sizing:border-box !important}#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .darumon-shop-link-suzuri img,#shop .shop-logo-link.suzuri img{width:108px !important;height:auto !important;max-width:108px !important;max-height:108px !important;object-fit:var(--img-fit) !important;transform:none !important}#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .darumon-shop-link-booth img,#shop .shop-logo-link.booth img{width:92px !important;height:92px !important;max-width:92px !important;max-height:92px !important;object-fit:var(--img-fit) !important;transform:none !important}@media(max-width:560px){#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop a[href*="booth"],#shop a[href*="BOOTH"],#shop a[href*="pixiv"],#shop .darumon-shop-link-suzuri,#shop .darumon-shop-link-booth,#shop .shop-logo-link.suzuri,#shop .shop-logo-link.booth{width:132px !important;height:132px !important;min-width:132px !important;min-height:132px !important;max-width:132px !important;max-height:132px !important;padding:14px !important}#shop a[href*="suzuri"] img,#shop a[href*="SUZURI"] img,#shop .darumon-shop-link-suzuri img,#shop .shop-logo-link.suzuri img{width:102px !important;max-width:102px !important;max-height:102px !important}#shop a[href*="booth"] img,#shop a[href*="BOOTH"] img,#shop a[href*="pixiv"] img,#shop .darumon-shop-link-booth img,#shop .shop-logo-link.booth img{width:84px !important;height:84px !important;max-width:84px !important;max-height:84px !important}}
#shop .darumon-shop-message:not(:has(img)),#shop .shop-message:not(:has(img)),#shop .shop-lead:not(:has(img)),#shop .shop-copy:not(:has(img)),#shop .shop-text:not(:has(img)){display:none !important}








#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .darumon-shop-link-suzuri,#shop .shop-logo-link.suzuri{position:relative !important;}@media(max-width:560px){#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .darumon-shop-link-suzuri,#shop .shop-logo-link.suzuri{left:-8px !important}}
#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{}@media(max-width:560px){#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{margin-top:16px !important}}
#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{}@media(max-width:560px){#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{margin-top:30px !important}}
#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{margin-top:44px !important}@media(max-width:560px){#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{margin-top:38px !important}}
#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{position:relative !important;left:-12px !important}@media(max-width:560px){#shop .darumon-shop-logo,#shop .shop-main-logo,#shop .shop-logo{left:-8px !important}}
#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .darumon-shop-link-suzuri,#shop .shop-logo-link.suzuri{left:-22px !important}@media(max-width:560px){#shop a[href*="suzuri"],#shop a[href*="SUZURI"],#shop .darumon-shop-link-suzuri,#shop .shop-logo-link.suzuri{left:-14px !important}}
#shop a[href*="suzuri"],#shop a[href*="booth"],#shop .shop-buttons,#shop .shop-btns,#shop .shop-link-buttons,#shop .suzuri-btn,#shop .booth-btn,#shop img[alt*="公式グッズ"],#shop img[alt*="グッズはこちら"],.shop a[href*="suzuri"],.shop a[href*="booth"],.shop .shop-buttons,.shop .shop-btns,.shop .shop-link-buttons,.shop .suzuri-btn,.shop .booth-btn,.shop img[alt*="公式グッズ"],.shop img[alt*="グッズはこちら"]{display:none!important}

#shop .shop-wait-text,#shop a[href*="suzuri"],#shop a[href*="booth"],#shop .shop-buttons,#shop .shop-btns,#shop .shop-link-buttons,#shop .suzuri-btn,#shop .booth-btn,#shop img[alt*="公式グッズ"],#shop img[alt*="グッズはこちら"]{display:none !important}#shop .sec-head{margin-bottom:18px !important}#shop{padding-bottom:34px !important;margin-bottom:0 !important}



