@charset "UTF-8";

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Noto Sans JP','Inter',sans-serif;
  color:#1f2937;
  background:#fff;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  font-feature-settings:'palt';
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.78}
img{max-width:100%;height:auto;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit}


.btn_primaryFill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  background:#6d28d9;
  color:#fff;
  padding:13px 22px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  border:none;
  transition:background .15s ease, transform .12s ease;
  box-shadow:0 4px 14px rgba(109,40,217,.18);
}
.btn_primaryFill:hover{background:#5b21b6;color:#fff;opacity:1;transform:translateY(-1px)}
.btn_primaryFill:active{background:#4c1d95}
.btn_primaryFill i{font-size:1rem}

.btn_textArrow{
  display:inline-flex;align-items:center;gap:6px;
  color:#1f2937;
  font-weight:600;
  font-size:14px;
  padding:13px 8px;
  border-bottom:1px solid transparent;
  transition:border-color .15s;
}
.btn_textArrow:hover{border-bottom-color:#6d28d9;color:#6d28d9;opacity:1}

.btn_white_lg{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#6d28d9;
  padding:14px 1.75rem;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  border:none;
  letter-spacing:.4px;
  box-shadow:0 4px 16px rgba(0,0,0,.1);
}
.btn_white_lg:hover{background:#f5f3ff;color:#5b21b6;opacity:1}

.btn_ghostWhite{
  display:inline-flex;align-items:center;gap:4px;
  color:#fff;
  font-weight:600;
  font-size:14px;
  padding:14px 6px;
  border-bottom:1px solid rgba(255,255,255,.4);
  transition:border-color .15s;
}
.btn_ghostWhite:hover{border-bottom-color:#fff;opacity:1;color:#fff}
.btn_ghostWhite i{font-size:18px}

.btn_translucentDk{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.1);
  color:#fff;
  padding:13px 22px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  border:1px solid rgba(255,255,255,.18);
  transition:background .15s;
}
.btn_translucentDk:hover{background:rgba(255,255,255,.2);color:#fff;opacity:1}


#topAnnounceBar{
  background:#1f2937;
  color:#e5e7eb;
  padding:9px 18px;
  text-align:center;
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.3px;
}
.topAnnounce_in{
  max-width:1200px;
  margin:0 auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.topAnnounce_dot{
  width:6px;height:6px;
  border-radius:50%;
  background:#a78bfa;
  animation:dotBlink 2s ease-in-out infinite;
  display:inline-block;
}
@keyframes dotBlink{
  0%,100%{opacity:.4}
  50%{opacity:1}
}


#navHead{
  background:#fff;
  border-bottom:1px solid #f3f4f6;
  position:sticky;top:0;z-index:80;
}
.navHead_in{
  max-width:1280px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}
.navHead_logoBlock{
  display:flex;align-items:center;gap:10px;
}
.logoMark_box{
  width:38px;height:38px;
  background:#6d28d9;
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  border-radius:9px;
  font-size:1.125rem;
}
.logoTxt_wrap{
  display:flex;flex-direction:column;line-height:1;
}
.logoTxt_main{
  font-family:'Lexend','Noto Sans JP',sans-serif;
  font-weight:700;
  font-size:18px;
  color:#1f2937;
  letter-spacing:.4px;
}
.logoTxt_sub{
  font-size:10px;
  color:#9ca3af;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-top:3px;
  font-weight:500;
}

.navHead_links{
  display:flex;align-items:center;gap:28px;
}
.navLink_a{
  font-size:14px;
  color:#4b5563;
  font-weight:500;
  padding:6px 0;
  position:relative;
}
.navLink_a:hover{color:#6d28d9}
.navLink_active{color:#1f2937;font-weight:600}
.navLink_active:after{
  content:"";
  position:absolute;left:0;bottom:-2px;
  width:18px;height:2px;
  background:#6d28d9;
}

.navHead_right{
  display:flex;align-items:center;gap:14px;
}
.navHead_phone{
  display:flex;align-items:center;gap:6px;
  font-size:13px;
  color:#4b5563;
  font-weight:600;
  letter-spacing:.3px;
}
.navHead_phone i{color:#6d28d9}
.navHead_cartBtn{
  width:42px;height:42px;
  border-radius:50%;
  background:#f5f3ff;
  color:#6d28d9;
  display:flex;align-items:center;justify-content:center;
  position:relative;
  font-size:18px;
  transition:background .15s;
}
.navHead_cartBtn:hover{background:#ede9fe}
.cartBadge_n{
  position:absolute;
  top:-2px;right:-2px;
  background:#dc2626;
  color:#fff;
  font-size:10px;
  font-weight:700;
  min-width:18px;height:18px;
  border-radius:9px;
  display:none;
  align-items:center;justify-content:center;
  padding:0 4px;
  border:2px solid #fff;
}

.navHead_burger{
  display:none;
  width:42px;height:42px;
  font-size:1.4em;
  color:#1f2937;
  align-items:center;justify-content:center;
}

.mobileMenu_overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.45);
  z-index:9999;
  display:none;
}
.mobileMenu_overlay.mmOpen{display:block}
.mobMenu_inner{
  position:absolute;right:0;top:0;bottom:0;
  width:280px;
  background:#fff;
  padding:60px 26px 26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mobMenu_inner a{
  font-size:15px;
  font-weight:500;
  color:#1f2937;
  padding:8px 0;
  border-bottom:1px solid #f3f4f6;
}
.mobMenu_close{
  position:absolute;top:14px;right:18px;
  width:36px;height:36px;
  font-size:18px;
  color:#1f2937;
  display:flex;align-items:center;justify-content:center;
}


#heroBlock{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(245,243,255,.5) 0%, #fff 100%);
  isolation:isolate;
}
.hero_skewSlab{
  position:absolute;
  top:0;bottom:0;
  right:50%;
  margin-right:-380px;
  width:200%;
  z-index:-1;
  background:#fff;
  transform:skewX(-22deg);
  box-shadow:0 4px 30px rgba(109,40,217,.04);
  border-right:1px solid #f5f3ff;
}
.hero_in{
  max-width:1280px;
  margin:0 auto;
  padding:5rem 24px 100px;
}
.hero_grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:3.75rem;
  align-items:center;
}
.hero_eyeBrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:1.5px;
  color:#7c3aed;
  font-weight:600;
  background:#f5f3ff;
  padding:6px 14px;
  border-radius:99px;
  margin-bottom:1.625rem;
}
.hero_h1{
  font-size:62px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-1.5px;
  color:#0f172a;
  margin-bottom:24px;
  font-family:'Noto Sans JP',sans-serif;
}
.hero_lede{
  font-size:1.0625rem;
  color:#4b5563;
  max-width:520px;
  margin-bottom:2rem;
  line-height:1.85;
}
.hero_btnRow{
  display:flex;align-items:center;gap:18px;
  margin-bottom:36px;
  flex-wrap:wrap;
}
.hero_metaList{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  padding-top:24px;
  border-top:1px solid #f3f4f6;
}
.hero_metaList li{
  display:flex;align-items:center;gap:8px;
  font-size:13px;
  color:#6b7280;
  font-weight:500;
}
.hero_metaList i{color:#6d28d9;font-size:16px}

.hero_imgCol{
  position:relative;
}
.heroImg_round{
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:5/6;
  background:#f5f3ff;
  box-shadow:0 30px 60px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.04);
}
.heroImg_main{
  width:100%;height:100%;object-fit:cover;
}
.heroImg_floatTag{
  position:absolute;
  left:-30px;bottom:2.5rem;
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  box-shadow:0 12px 30px rgba(15,23,42,.1);
  display:flex;align-items:center;gap:12px;
  border:1px solid #f3f4f6;
}
.floatTag_dot{
  width:10px;height:10px;
  border-radius:50%;
  background:#10b981;
  box-shadow:0 0 0 4px rgba(16,185,129,.15);
}
.floatTag_txt{
  display:flex;flex-direction:column;line-height:1.3;
}
.floatTag_txt strong{
  font-family:'Lexend',sans-serif;
  font-size:13px;
  font-weight:600;
  color:#1f2937;
  letter-spacing:.5px;
}
.floatTag_txt span{
  font-size:11px;
  color:#9ca3af;
  margin-top:2px;
}


#purpleBandFeat{
  background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.purpleBand_blob_a{
  position:absolute;
  top:-40%;right:-10%;
  width:60%;height:180%;
  background:radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 60%);
  z-index:-1;
}
.purpleBand_in{
  max-width:760px;
  margin:0 auto;
  padding:5.5em 24px;
  text-align:center;
}
.purpleBand_pill{
  display:inline-block;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:99px;
  margin-bottom:22px;
  border:1px solid rgba(255,255,255,.2);
}
.purpleBand_h2{
  font-size:2.75rem;
  font-weight:800;
  color:#fff;
  letter-spacing:-1px;
  line-height:1.2;
  margin-bottom:20px;
}
.purpleBand_sub{
  font-size:17px;
  color:#ddd6fe;
  line-height:1.85;
  max-width:580px;
  margin:0 auto 36px;
}
.purpleBand_btns{
  display:inline-flex;align-items:center;gap:18px;
  flex-wrap:wrap;justify-content:center;
}


#approachStats{
  background:#fff;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  border-top:1px solid #f9fafb;
}
.approach_blur1{
  position:absolute;
  top:-200px;left:-100px;
  width:500px;height:500px;
  background:radial-gradient(circle, rgba(167,139,250,.15) 0%, transparent 60%);
  filter:blur(80px);
  z-index:-1;
}
.approach_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.approach_headRow{
  max-width:760px;
  margin-bottom:60px;
}
.approach_eyeBrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.approach_h2{
  font-size:42px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.25;
  margin-bottom:1.25rem;
}
.approach_lede{
  font-size:16px;
  color:#4b5563;
  line-height:1.85;
  max-width:600px;
}
.approach_statsGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
}
.statBlock_col{
  padding:28px 0 0;
  border-top:2px solid #1f2937;
}
.statBlock_n{
  font-family:'Lexend',sans-serif;
  font-size:3rem;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:-1.5px;
  line-height:1;
  margin-bottom:8px;
}
.statBlock_label{
  font-size:13px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.statBlock_txt{
  font-size:13.5px;
  color:#6b7280;
  line-height:1.75;
}


#shopGridBlock{
  background:#fafafa;
  border-top:1px solid #f3f4f6;
  scroll-margin-top:80px;
}
.shopGrid_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.shopGrid_head{
  text-align:center;
  max-width:680px;
  margin:0 auto 3rem;
}
.shopGrid_eyeBrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.shopGrid_h2{
  font-size:42px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.25;
  margin-bottom:18px;
}
.shopGrid_sub{
  font-size:16px;
  color:#4b5563;
  line-height:1.8;
}

.catTabs_row{
  display:flex;justify-content:center;gap:.625rem;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.catTab_btn{
  background:#fff;
  border:1px solid #e5e7eb;
  padding:9px 20px;
  font-size:13px;
  font-weight:600;
  color:#4b5563;
  border-radius:99px;
  transition:all .15s;
}
.catTab_btn:hover{
  border-color:#6d28d9;
  color:#6d28d9;
}
.catTab_btn.catTab_on{
  background:#1f2937;
  color:#fff;
  border-color:#1f2937;
}

.prodGrid_wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.75rem;
}

.prdCard_box{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  border:1px solid #f3f4f6;
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
}
.prdCard_box:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}
.prodCard_badge{
  position:absolute;top:14px;left:14px;
  background:#1f2937;
  color:#fff;
  font-size:11px;
  font-weight:600;
  letter-spacing:.5px;
  padding:5px 12px;
  border-radius:99px;
  z-index:2;
}
.prdCard_imgWr{
  aspect-ratio:1/1;
  background:#f5f3ff;
  overflow:hidden;
}
.prdCard_imgWr img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.prdCard_box:hover .prdCard_imgWr img{transform:scale(1.04)}

.prdCard_body{
  padding:22px 22px 24px;
  flex:1;
  display:flex;flex-direction:column;
}
.prdCard_name{
  font-size:1rem;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
  letter-spacing:.2px;
  font-family:'Lexend','Noto Sans JP',sans-serif;
}
.prdCard_spec{
  font-size:12px;
  color:#9ca3af;
  margin-bottom:1rem;
  line-height:1.6;
}
.prdCard_priceRow{
  display:flex;align-items:baseline;gap:10px;
  margin-bottom:10px;
}
.prdCard_price{
  font-family:'Lexend',sans-serif;
  font-size:20px;
  font-weight:700;
  color:#0f172a;
  letter-spacing:-.3px;
}
.prdCard_oldp{
  font-size:14px;
  color:#9ca3af;
  text-decoration:line-through;
  font-weight:500;
}
.prdCard_stock{
  font-size:12px;
  color:#10b981;
  font-weight:600;
  margin-bottom:18px;
}
.prdCard_stock.prdStockOut{color:#dc2626}

.prdCard_addBtn{
  margin-top:auto;
  background:#f5f3ff;
  color:#6d28d9;
  border:none;
  padding:11px 16px;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  transition:background .15s;
}
.prdCard_addBtn:hover{background:#ede9fe}
.prdCard_addBtn i{font-size:15px}


#howItWorks_proc{
  background:#fff;
  border-top:1px solid #f3f4f6;
}
.howWorks_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.howWorks_head{
  text-align:center;
  max-width:640px;
  margin:0 auto 56px;
}
.howWorks_eyeBrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.howWorks_h2{
  font-size:38px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.3;
}
.howWorks_steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
}
.howStep_card{
  background:#fafafa;
  border:1px solid #f3f4f6;
  border-radius:18px;
  padding:32px 28px;
  position:relative;
  transition:transform .2s, border-color .2s;
}
.howStep_card:hover{
  border-color:#ddd6fe;
  transform:translateY(-3px);
}
.howStep_num{
  font-family:'Lexend',sans-serif;
  font-size:14px;
  font-weight:700;
  color:#a78bfa;
  letter-spacing:1px;
  margin-bottom:18px;
}
.howStep_icon{
  width:48px;height:48px;
  background:#fff;
  border:1px solid #ede9fe;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  color:#6d28d9;
  font-size:1.375rem;
  margin-bottom:18px;
}
.howStep_h{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:12px;
}
.howStep_p{
  font-size:13.5px;
  color:#6b7280;
  line-height:1.75;
}


#materialsCardBl{
  background:#0f172a;
  color:#e5e7eb;
}
.materials_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.materials_head{
  max-width:680px;
  margin:0 auto 56px;
  text-align:center;
}
.materials_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#a78bfa;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.materials_h2{
  font-size:42px;
  font-weight:800;
  color:#fff;
  letter-spacing:-1px;
  line-height:1.25;
  margin-bottom:20px;
}
.materials_lede{
  font-size:16px;
  color:#9ca3af;
  line-height:1.85;
}
.matCards_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.matCard_box{
  background:#1e293b;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #334155;
  transition:transform .25s, border-color .25s;
}
.matCard_box:hover{
  transform:translateY(-4px);
  border-color:#7c3aed;
}
.matCard_img{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#334155;
}
.matCard_img img{
  width:100%;height:100%;
  object-fit:cover;
}
.matCard_chip{
  position:absolute;top:14px;right:14px;
  background:rgba(15,23,42,.85);
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:5px 12px;
  border-radius:99px;
  backdrop-filter:blur(4px);
}
.matCard_body{
  padding:24px 24px 28px;
}
.matCard_label{
  display:inline-block;
  font-family:'Lexend',sans-serif;
  font-size:11px;
  color:#a78bfa;
  letter-spacing:2px;
  margin-bottom:10px;
  font-weight:600;
}
.matCard_h{
  font-size:19px;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
}
.matCard_p{
  font-size:13.5px;
  color:#94a3b8;
  line-height:1.8;
  margin-bottom:18px;
}
.matCard_lnk{
  display:inline-flex;align-items:center;gap:6px;
  color:#a78bfa;
  font-size:13px;
  font-weight:600;
  letter-spacing:.3px;
}
.matCard_lnk:hover{color:#c4b5fd;opacity:1}


#founderStory_dk{
  position:relative;
  background:#1f2937;
  color:#e5e7eb;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:520px;
  scroll-margin-top:80px;
}
.founderDk_imgHalf{
  position:relative;
  overflow:hidden;
  background:#0f172a;
}
.founderDk_imgHalf img{
  width:100%;height:100%;
  object-fit:cover;
}
.founderDk_blurSvg{
  position:absolute;
  bottom:-100px;left:-50px;
  width:400px;height:400px;
  background:radial-gradient(circle, rgba(124,58,237,.6) 0%, transparent 60%);
  filter:blur(60px);
  pointer-events:none;
}
.founderDk_textHalf{
  display:flex;align-items:center;
  padding:5rem 24px;
}
.founderDk_textIn{
  max-width:520px;
  margin-left:60px;
}
.founderDk_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#a78bfa;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:20px;
}
.founderDk_h{
  font-size:46px;
  font-weight:800;
  color:#fff;
  letter-spacing:-1px;
  line-height:1.2;
  margin-bottom:24px;
}
.founderDk_p{
  font-size:15.5px;
  color:#cbd5e1;
  line-height:1.85;
  margin-bottom:18px;
}


#reviewsGridBl{
  background:#f8fafc;
  border-top:1px solid #f3f4f6;
}
.reviewsGrid_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.reviewsGrid_head{
  text-align:center;
  max-width:680px;
  margin:0 auto 4rem;
}
.revHead_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.revHead_h{
  font-size:40px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.25;
}
.revGrid_list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.revGrid_list > li{list-style:none}
.revCol_stack{
  list-style:none;
  display:flex;flex-direction:column;gap:24px;
}
.revCol_stack > li{list-style:none}
.revCard_box{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:30px 28px;
  box-shadow:0 6px 20px rgba(15,23,42,.05);
  border:1px solid #f3f4f6;
}
.revCard_quote{
  position:absolute;
  top:18px;left:22px;
  font-size:48px;
  color:#ede9fe;
  line-height:1;
}
.revCard_box blockquote{
  position:relative;
  z-index:1;
  margin-top:24px;
}
.revCard_box blockquote p{
  font-size:14.5px;
  color:#1f2937;
  line-height:1.85;
  letter-spacing:.1px;
}
.revCard_box figcaption{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #f3f4f6;
}
.revCard_name{
  font-family:'Lexend','Noto Sans JP',sans-serif;
  font-size:14px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:3px;
}
.revCard_role{
  font-size:12px;
  color:#9ca3af;
}


#wsInspireBlock{
  background:#fff;
  border-top:1px solid #f3f4f6;
}
.wsInspire_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.wsInspire_head{
  max-width:640px;
  margin:0 auto 48px;
  text-align:center;
}
.wsInspire_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.wsInspire_h{
  font-size:38px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.3;
  margin-bottom:18px;
}
.wsInspire_lede{
  font-size:15.5px;
  color:#4b5563;
  line-height:1.8;
}
.wsInspire_grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:1.25rem;
}
.wsItem_card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#f5f3ff;
}
.wsItem_card img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s;
}
.wsItem_card:hover img{transform:scale(1.04)}
.wsItem_caption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:18px 22px 20px;
  color:#fff;
  background:linear-gradient(180deg, transparent 0%, rgba(15,23,42,.85) 100%);
}
.wsItem_tag{
  display:inline-block;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:99px;
  margin-bottom:10px;
  backdrop-filter:blur(4px);
  letter-spacing:.5px;
}
.wsItem_caption p{
  font-size:13px;
  line-height:1.65;
  color:#fff;
}
.wsItem_big{
  grid-row:span 2;
  aspect-ratio:auto;
}
.wsItem_wide{
  grid-column:span 2;
  aspect-ratio:auto;
  min-height:13.75rem;
}


#faqStackBl{
  background:#fafafa;
  border-top:1px solid #f3f4f6;
}
.faqStack_in{
  max-width:840px;
  margin:0 auto;
  padding:96px 24px;
}
.faqStack_head{
  margin-bottom:2.5rem;
}
.faqHd_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.faqHd_h{
  font-size:38px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.25;
}

.faq_list{
  display:flex;flex-direction:column;
  background:#fff;
  border-radius:16px;
  border:1px solid #f3f4f6;
  overflow:hidden;
}
.faq_row{
  border-bottom:1px solid #f3f4f6;
}
.faq_row:last-child{border-bottom:none}

.faq_qBtn{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:1.25rem;
  padding:22px 26px;
  font-size:15.5px;
  font-weight:600;
  color:#0f172a;
  text-align:left;
  transition:background .15s;
}
.faq_qBtn:hover{background:#fafafa}
.faq_qBtn span{flex:1}
.faq_plus{
  font-size:1rem;
  color:#9ca3af;
  transition:transform .25s, color .25s;
  flex-shrink:0;
}
.faq_open .faq_plus{
  transform:rotate(45deg);
  color:#6d28d9;
}
.faq_aBox{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq_open .faq_aBox{
  max-height:340px;
}
.faq_aBox p{
  padding:0 26px 24px;
  font-size:14px;
  color:#4b5563;
  line-height:1.85;
}


#hireRecBlock{
  background:#fff;
  border-top:1px solid #f3f4f6;
}
.hireRec_in{
  max-width:960px;
  margin:0 auto;
  padding:96px 24px;
  text-align:center;
}
.hireRec_chip{
  display:inline-block;
  background:#fef2f2;
  color:#dc2626;
  font-size:11px;
  font-weight:700;
  padding:6px 14px;
  border-radius:99px;
  letter-spacing:1.5px;
  margin-bottom:22px;
  border:1px solid #fecaca;
}
.hireRec_h{
  font-size:38px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.25;
  margin-bottom:48px;
}
.hireRec_posList{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-bottom:32px;
  text-align:left;
}
.hirePos_card{
  background:#fafafa;
  border:1px solid #f3f4f6;
  border-radius:16px;
  padding:28px 26px;
  transition:border-color .2s;
}
.hirePos_card:hover{border-color:#ddd6fe}
.hirePos_top{
  display:flex;align-items:center;gap:10px;
  margin-bottom:14px;
}
.hirePos_top i{
  width:32px;height:32px;
  background:#f5f3ff;
  color:#6d28d9;
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;
}
.hirePos_typ{
  font-size:11px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.hirePos_h{
  font-size:1.125rem;
  font-weight:700;
  color:#0f172a;
  margin-bottom:10px;
}
.hirePos_p{
  font-size:13.5px;
  color:#6b7280;
  line-height:1.75;
  margin-bottom:14px;
}
.hirePos_meta{
  font-size:12px;
  color:#9ca3af;
  font-weight:500;
  display:block;
  padding-top:14px;
  border-top:1px solid #f3f4f6;
}
.hireRec_apply{
  font-size:14px;
  color:#4b5563;
}
.hireRec_apply a{
  color:#6d28d9;
  font-weight:600;
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:3px;
}


#orderFormBl{
  background:#f5f3ff;
  border-top:1px solid #ede9fe;
  scroll-margin-top:60px;
  position:relative;
  overflow:hidden;
}
.orderForm_in{
  max-width:1280px;
  margin:0 auto;
  padding:96px 24px;
}
.orderForm_head{
  text-align:center;
  max-width:680px;
  margin:0 auto 48px;
}
.ordHead_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.ordHead_h{
  font-size:36px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.3;
  margin-bottom:1rem;
}
.ordHead_p{
  font-size:15px;
  color:#4b5563;
  line-height:1.8;
}
.orderForm_split{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:2.5rem;
  align-items:flex-start;
}
.orderForm_left{
  background:#fff;
  border-radius:18px;
  padding:36px 36px 40px;
  border:1px solid #ede9fe;
}

.formGrp_2col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.formFld_w{
  margin-bottom:18px;
  position:relative;
}
.formFld_lbl{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#1f2937;
  margin-bottom:7px;
  letter-spacing:.2px;
}
.formFld_in,.formFld_area{
  width:100%;
  border:1px solid #e5e7eb;
  background:#fff;
  padding:11px 14px;
  font-size:14.5px;
  color:#1f2937;
  border-radius:9px;
  transition:border-color .15s, box-shadow .15s;
  outline:none;
  font-family:inherit;
}
.formFld_in:focus,.formFld_area:focus{
  border-color:#6d28d9;
  box-shadow:0 0 0 3px rgba(109,40,217,.12);
}
.formFld_area{resize:vertical;min-height:80px}
.formFld_in.formFld_bad,.formFld_area.formFld_bad{
  border-color:#dc2626;
  box-shadow:0 0 0 3px rgba(220,38,38,.08);
}
.formFld_err{
  display:none;
  font-size:11.5px;
  color:#dc2626;
  margin-top:5px;
}
.formFld_in.formFld_bad ~ .formFld_err,
.formFld_area.formFld_bad ~ .formFld_err{
  display:block;
}

.payBlock_w{
  margin:1.5rem 0 28px;
  padding:24px;
  background:#fafafa;
  border:1px solid #f3f4f6;
  border-radius:12px;
}
.payBlock_h{
  font-size:13px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.payOpt_l{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:8px 14px;
  padding:14px 0;
  border-bottom:1px solid #f3f4f6;
  cursor:pointer;
  align-items:start;
}
.payOpt_l:last-child{border-bottom:none}
.payOpt_l input[type="radio"]{
  margin-top:3px;
  accent-color:#6d28d9;
  width:18px;height:18px;
}
.payOpt_n{
  font-size:14.5px;
  font-weight:600;
  color:#1f2937;
}
.payOpt_d{
  grid-column:2;
  font-size:12.5px;
  color:#6b7280;
  line-height:1.65;
}

.orderSubmit_btn{
  width:100%;
  padding:1rem 28px;
  font-size:15px;
}

.thank_box{
  text-align:center;
  padding:50px 24px;
}
.thank_ico{
  font-size:54px;
  color:#10b981;
  margin-bottom:16px;
  display:inline-block;
}
.thank_box h3{
  font-size:24px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:14px;
}
.thank_box p{
  font-size:14.5px;
  color:#4b5563;
  max-width:480px;
  margin:0 auto;
  line-height:1.8;
}

.orderForm_right{
  position:sticky;top:90px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.ordSumm_box{
  background:#fff;
  border-radius:18px;
  padding:28px 28px 24px;
  border:1px solid #ede9fe;
}
.ordSumm_h{
  font-size:13px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid #f3f4f6;
}
.ordSumm_empty{
  font-size:13px;
  color:#9ca3af;
  text-align:center;
  padding:18px 0;
}
.summItem_l{
  display:flex;justify-content:space-between;gap:12px;
  padding:9px 0;
  border-bottom:1px solid #f9fafb;
  font-size:13.5px;
}
.summItem_l span:first-child{color:#4b5563}
.summItem_l span:last-child{
  font-family:'Lexend',sans-serif;
  font-weight:600;color:#1f2937;
}
.ordSumm_totalRow{
  display:flex;justify-content:space-between;
  padding:14px 0 6px;
  font-size:14px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:.3px;
}
.ordSumm_totVal{
  font-family:'Lexend',sans-serif;
  font-size:20px;
  color:#6d28d9;
}
.ordSumm_note{
  font-size:11.5px;
  color:#9ca3af;
  line-height:1.6;
  margin-top:8px;
}

.ordSide_callBox{
  background:#1f2937;
  color:#fff;
  border-radius:18px;
  padding:24px 28px 26px;
}
.ordSide_h{
  font-size:13px;
  font-weight:700;
  color:#a78bfa;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.ordSide_phone{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Lexend',sans-serif;
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:.3px;
}
.ordSide_phone i{color:#a78bfa;font-size:16px}
.ordSide_p{
  font-size:12.5px;
  color:#cbd5e1;
  line-height:1.65;
}


#ftrSiteEnd{
  background:#0f172a;
  color:#cbd5e1;
}
.ftrEnd_in{
  max-width:1280px;
  margin:0 auto;
  padding:64px 24px 28px;
}
.ftrEnd_topGrid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;
  padding-bottom:48px;
  border-bottom:1px solid #1e293b;
}
.ftr_brandLogo{
  display:flex;align-items:center;gap:10px;
  font-family:'Lexend',sans-serif;
  font-size:1.25rem;
  font-weight:700;
  color:#fff;
  letter-spacing:.3px;
  margin-bottom:14px;
}
.ftr_logoMk{background:#7c3aed}
.ftr_brandTxt{
  font-size:13.5px;
  color:#94a3b8;
  line-height:1.8;
  margin-bottom:22px;
  max-width:340px;
}
.ftr_addrBlock{
  display:flex;flex-direction:column;gap:9px;
}
.ftr_addrBlock > div{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13px;
  color:#94a3b8;
  line-height:1.65;
}
.ftr_addrBlock i{
  color:#a78bfa;
  margin-top:3px;
  flex-shrink:0;
  font-size:14px;
}
.ftr_addrBlock a:hover{color:#a78bfa;opacity:1}

.ftr_navCol{
  display:flex;flex-direction:column;gap:11px;
}
.ftr_navH{
  font-size:12px;
  font-weight:700;
  color:#fff;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.ftr_navCol a{
  font-size:13.5px;
  color:#94a3b8;
}
.ftr_navCol a:hover{color:#fff;opacity:1}

.ftrEnd_imprintBar{
  padding:32px 0;
  border-bottom:1px solid #1e293b;
}
.ftrImp_h{
  font-size:11px;
  font-weight:700;
  color:#a78bfa;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.ftrImp_lines{
  display:flex;flex-direction:column;gap:5px;
}
.ftrImp_lines span{
  font-size:12.5px;
  color:#64748b;
  line-height:1.7;
}

.ftrEnd_botBar{
  padding:24px 0 0;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.ftrBot_copy{
  font-size:12px;
  color:#64748b;
  letter-spacing:.3px;
}
.ftrBot_legal{
  display:flex;gap:22px;
}
.ftrBot_legal a{
  font-size:12px;
  color:#64748b;
}
.ftrBot_legal a:hover{color:#fff;opacity:1}


.prodMod_overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(15,23,42,.6);
  z-index:10000;
  display:none;
  align-items:center;justify-content:center;
  padding:1.25rem;
  backdrop-filter:blur(2px);
}
.prodMod_overlay.modOpen{display:flex}
.prodMod_card{
  background:#fff;
  max-width:880px;
  width:100%;
  max-height:92vh;
  overflow-y:auto;
  border-radius:20px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.3);
}
.prodMod_xBtn{
  position:absolute;
  top:16px;right:16px;
  width:38px;height:38px;
  background:#f5f3ff;
  color:#6d28d9;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
  z-index:2;
  transition:background .15s;
}
.prodMod_xBtn:hover{background:#ede9fe}
.prodMod_inner{
  display:grid;
  grid-template-columns:1fr 1fr;
}
.prodMod_imgSide{
  position:relative;
  background:#f5f3ff;
  min-height:380px;
  border-radius:20px 0 0 20px;
  overflow:hidden;
}
.prodMod_imgSide img{
  width:100%;height:100%;
  object-fit:cover;
}
.prodMod_imgSide .prodCard_badge{top:16px;left:16px}
.prodMod_infoSide{
  padding:38px 36px 36px;
  display:flex;flex-direction:column;
}
.prodMod_eye{
  font-family:'Lexend',sans-serif;
  font-size:11px;
  font-weight:600;
  color:#6d28d9;
  letter-spacing:2px;
  margin-bottom:10px;
}
.prodMod_name{
  font-size:1.5rem;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-.3px;
  margin-bottom:10px;
  font-family:'Noto Sans JP',sans-serif;
}
.prodMod_spec{
  font-size:12.5px;
  color:#9ca3af;
  margin-bottom:16px;
  line-height:1.6;
}
.prodMod_desc{
  font-size:14px;
  color:#4b5563;
  line-height:1.85;
  margin-bottom:18px;
}
.prodMod_stock{
  font-size:13px;
  color:#10b981;
  font-weight:600;
  margin-bottom:18px;
}
.prodMod_stock.prdStockOut{color:#dc2626}
.prodMod_priceRow{
  display:flex;align-items:baseline;gap:12px;
  margin-bottom:22px;
}
.prodMod_price{
  font-family:'Lexend',sans-serif;
  font-size:28px;
  font-weight:700;
  color:#0f172a;
}
.prodMod_oldp{
  font-size:16px;
  color:#9ca3af;
  text-decoration:line-through;
}
.prodMod_qtyRow{
  display:flex;align-items:center;gap:14px;
  margin-bottom:24px;
}
.prodMod_qtyRow label{
  font-size:13px;
  font-weight:600;
  color:#1f2937;
}
.prodMod_qtyRow select{
  padding:9px 14px;
  border:1px solid #e5e7eb;
  border-radius:9px;
  font-size:14px;
  background:#fff;
  outline:none;
}
.prodMod_addBtn{
  width:100%;
  margin-top:auto;
  padding:14px 24px;
}


.kwCart_overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.55);
  z-index:10001;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  backdrop-filter:blur(3px);
}
.kwCart_overlay.panOpen{display:flex}
.kwCart_modal{
  background:#fff;
  width:100%;
  max-width:920px;
  max-height:88vh;
  border-radius:24px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 40px 100px rgba(0,0,0,.35);
  animation:cartFadeIn .25s ease;
}
@keyframes cartFadeIn{
  from{opacity:0;transform:scale(.96) translateY(8px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}
.kwCart_topBar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding:24px 28px 22px;
  border-bottom:1px solid #f3f4f6;
  flex-shrink:0;
}
.kwCart_titleWrap{display:flex;flex-direction:column;gap:4px}
.kwCart_titleEye{
  font-family:'Lexend',sans-serif;
  font-size:11px;
  font-weight:600;
  color:#7c3aed;
  letter-spacing:2px;
  text-transform:uppercase;
}
.kwCart_titleH{
  font-size:1.5rem;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-.3px;
}
.kwCart_xBtn{
  width:38px;height:38px;
  background:#f5f3ff;
  color:#6d28d9;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
  flex-shrink:0;
  transition:background .15s;
}
.kwCart_xBtn:hover{background:#ede9fe}

.kwCart_grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  flex:1;
  overflow:hidden;
}
.kwCart_listSide{overflow-y:auto}
.kwCart_listIn{padding:14px 28px 24px}
.kwCart_summSide{
  background:#fafafa;
  padding:28px 28px 26px;
  border-left:1px solid #f3f4f6;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}
.kwCart_summH{
  font-size:13px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid #e5e7eb;
}
.kwCart_sumLine{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:8px 0;
  font-size:13.5px;
  color:#4b5563;
}
.kwCart_sumLine span:last-child{
  font-weight:600;
  color:#1f2937;
  font-family:'Lexend',sans-serif;
}
.kwCart_muted{color:#9ca3af !important;font-weight:500 !important}
.kwCart_sumDiv{
  height:1px;
  background:#e5e7eb;
  margin:8px 0 4px;
}
.kwCart_sumTotLine{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:10px 0 18px;
  font-size:13.5px;
  font-weight:700;
  color:#1f2937;
  letter-spacing:.4px;
}
.kwCart_grand{
  font-family:'Lexend',sans-serif;
  font-size:1.5rem;
  color:#6d28d9;
  letter-spacing:-.3px;
}
.kwCart_proceedBtn{
  width:100%;
  padding:14px 22px;
  margin-top:auto;
}
.kwCart_helpBox{
  display:flex;align-items:flex-start;gap:10px;
  margin-top:14px;
  padding:12px 14px;
  background:#fff;
  border:1px solid #ede9fe;
  border-radius:10px;
  font-size:11.5px;
  color:#6b7280;
  line-height:1.65;
}
.kwCart_helpBox i{color:#7c3aed;font-size:14px;margin-top:1px;flex-shrink:0}

.kwCart_empty{
  text-align:center;
  padding:60px 20px;
  color:#9ca3af;
}
.kwCart_empty i{
  font-size:3.5rem;
  color:#ddd6fe;
  display:block;
  margin-bottom:14px;
}
.kwCart_empty p{font-size:13.5px;color:#9ca3af;margin-bottom:18px}
.kwCart_empty button{
  background:#f5f3ff;
  color:#6d28d9;
  font-weight:600;
  font-size:13px;
  padding:10px 22px;
  border-radius:99px;
  transition:background .15s;
}
.kwCart_empty button:hover{background:#ede9fe}

.cartItem_row{
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  padding:14px 0;
  border-bottom:1px solid #f3f4f6;
}
.cartItem_row:last-child{border-bottom:none}
.cartIt_info{flex:1;min-width:0}
.cartIt_n{
  font-size:13.5px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.cartIt_p{
  font-family:'Lexend',sans-serif;
  font-size:12.5px;
  color:#6d28d9;
  font-weight:600;
}
.cartIt_ctrl{
  display:flex;align-items:center;gap:6px;
  flex-shrink:0;
}
.cartIt_ctrl button{
  width:28px;height:28px;
  background:#f5f3ff;
  color:#6d28d9;
  border-radius:7px;
  font-size:14px;
  font-weight:600;
  display:flex;align-items:center;justify-content:center;
  transition:background .15s;
}
.cartIt_ctrl button:hover{background:#ede9fe}
.cartIt_ctrl span{
  min-width:24px;text-align:center;
  font-size:14px;
  font-weight:600;
  color:#1f2937;
  font-family:'Lexend',sans-serif;
}
.cartIt_del{background:transparent !important;color:#9ca3af !important}
.cartIt_del:hover{color:#dc2626 !important;background:#fef2f2 !important}


.ckBan_w{
  position:fixed;
  bottom:18px;
  left:18px;
  right:18px;
  z-index:99998;
}
.ckBan_box{
  max-width:1080px;
  margin:0 auto;
  background:#0f172a;
  color:#e5e7eb;
  border-radius:18px;
  padding:22px 26px;
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  border:1px solid #1e293b;
}
.ckBan_left{flex:1;min-width:240px}
.ckBan_h{
  font-size:14px;
  font-weight:700;
  color:#fff;
  letter-spacing:.3px;
  margin-bottom:6px;
}
.ckBan_left p{
  font-size:12.5px;
  color:#94a3b8;
  line-height:1.7;
}
.ckBan_btns{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.ckBtn_g{
  background:transparent;
  color:#cbd5e1;
  border:1px solid #334155;
  padding:9px 16px;
  border-radius:8px;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.3px;
  transition:background .15s, border-color .15s;
  font-family:inherit;
  cursor:pointer;
}
.ckBtn_g:hover{background:#1e293b;border-color:#475569}
.ckBtn_p{
  background:#7c3aed;
  color:#fff;
  border:1px solid #7c3aed;
  padding:9px 18px;
  border-radius:8px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.3px;
  transition:background .15s, border-color .15s;
  font-family:inherit;
  cursor:pointer;
}
.ckBtn_p:hover{background:#6d28d9;border-color:#6d28d9}

.ckSet_overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.55);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  backdrop-filter:blur(2px);
}
.ckSet_overlay.ckSetOpen{display:flex}
.ckSet_box{
  background:#fff;
  max-width:540px;
  width:100%;
  max-height:90vh;
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 30px 80px rgba(0,0,0,.3);
}
.ckSet_head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 26px;
  border-bottom:1px solid #f3f4f6;
}
.ckSet_h{
  font-size:1.125rem;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-.2px;
}
.ckSet_x{
  width:36px;height:36px;
  background:#f5f3ff;
  color:#6d28d9;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
}
.ckSet_x:hover{background:#ede9fe}
.ckSet_body{
  padding:6px 26px;
  overflow-y:auto;
}
.ckSet_row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid #f3f4f6;
}
.ckSet_row:last-child{border-bottom:none}
.ckSet_info{flex:1}
.ckSet_name{
  font-size:14.5px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}
.ckSet_desc{
  font-size:12.5px;
  color:#6b7280;
  line-height:1.7;
}
.ckTog_lbl{
  position:relative;
  display:inline-block;
  width:44px;height:24px;
  cursor:pointer;
  flex-shrink:0;
  margin-top:3px;
}
.ckTog_lbl input{opacity:0;width:0;height:0}
.ckTog_sl{
  position:absolute;
  inset:0;
  background:#e5e7eb;
  transition:background .2s;
  border-radius:99px;
}
.ckTog_sl:before{
  content:"";
  position:absolute;
  height:18px;width:18px;
  left:3px;bottom:3px;
  background:#fff;
  border-radius:50%;
  transition:transform .2s;
  box-shadow:0 1px 3px rgba(0,0,0,.1);
}
.ckTog_lbl input:checked + .ckTog_sl{background:#7c3aed}
.ckTog_lbl input:checked + .ckTog_sl:before{transform:translateX(20px)}
.ckTog_locked{
  background:#a78bfa !important;
  cursor:not-allowed;
}
.ckTog_locked:before{transform:translateX(20px)}

.ckSet_foot{
  padding:18px 26px 22px;
  border-top:1px solid #f3f4f6;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ckSet_foot .ckBtn_g, .ckSet_foot .ckBtn_p{
  flex:1;
  min-width:140px;
  text-align:center;
  padding:12px 18px;
  font-size:13px;
}
.ckSet_foot .ckBtn_g{
  background:#fff;
  color:#1f2937;
  border-color:#e5e7eb;
}
.ckSet_foot .ckBtn_g:hover{background:#fafafa;border-color:#d1d5db}


.cartNotif_bar{
  position:fixed;
  bottom:-80px;left:50%;
  transform:translateX(-50%);
  background:#1f2937;
  color:#fff;
  padding:13px 22px;
  font-size:13px;
  font-weight:600;
  border-radius:99px;
  display:flex;align-items:center;gap:8px;
  z-index:10002;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
  transition:bottom .25s ease;
  max-width:90vw;
}
.cartNotif_bar i{color:#10b981;font-size:16px}
.cartNotif_bar.notifShow{bottom:30px}


.cartFab_box{
  position:fixed;
  bottom:24px;right:24px;
  width:54px;height:54px;
  background:#6d28d9;
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
  box-shadow:0 10px 30px rgba(109,40,217,.4);
  z-index:90;
  opacity:0;
  visibility:hidden;
  transform:scale(.8);
  transition:opacity .25s, transform .25s, visibility .25s;
}
.cartFab_box.fabShow{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}
.cartFab_box:hover{background:#5b21b6}
.cartFab_box .cartBadge_n{border-color:#6d28d9}


@media (max-width:1024px){
  .navHead_links{display:none}
  .navHead_burger{display:flex}
  .navHead_phone{display:none}

  .hero_in{padding:60px 24px 80px}
  .hero_grid{grid-template-columns:1fr;gap:40px}
  .hero_h1{font-size:46px}
  .heroImg_floatTag{left:0}

  .approach_statsGrid{grid-template-columns:repeat(2,1fr);gap:28px}
  .prodGrid_wrap{grid-template-columns:repeat(2,1fr);gap:20px}
  .howWorks_steps{grid-template-columns:repeat(2,1fr)}
  .matCards_grid{grid-template-columns:1fr;max-width:520px;margin:0 auto}

  #founderStory_dk{grid-template-columns:1fr}
  .founderDk_imgHalf{min-height:320px}
  .founderDk_textHalf{padding:60px 24px}
  .founderDk_textIn{margin-left:0}

  .revGrid_list{grid-template-columns:1fr;max-width:560px;margin:0 auto}

  .wsInspire_grid{grid-template-columns:1fr 1fr;gap:14px}
  .wsItem_big{grid-row:auto;aspect-ratio:4/3}
  .wsItem_wide{grid-column:span 2;min-height:auto;aspect-ratio:16/9}

  .hireRec_posList{grid-template-columns:1fr}

  .orderForm_split{grid-template-columns:1fr;gap:28px}
  .orderForm_right{position:static}

  .ftrEnd_topGrid{grid-template-columns:1fr 1fr;gap:36px}
  .ftr_brandCol{grid-column:span 2}
}

@media (max-width:680px){
  #topAnnounceBar{font-size:11.5px;padding:8px 14px}

  .navHead_in{padding:12px 18px;gap:14px}
  .logoTxt_main{font-size:16px}
  .logoTxt_sub{font-size:9px;letter-spacing:1.8px}

  .hero_in{padding:48px 18px 64px}
  .hero_h1{font-size:36px;letter-spacing:-1px}
  .hero_lede{font-size:15px}
  .hero_btnRow{gap:10px}
  .hero_metaList{gap:14px}
  .heroImg_floatTag{padding:10px 14px}

  .purpleBand_in{padding:64px 18px}
  .purpleBand_h2{font-size:30px}
  .purpleBand_sub{font-size:15px}

  #approachStats .approach_in,
  #shopGridBlock .shopGrid_in,
  #howItWorks_proc .howWorks_in,
  #materialsCardBl .materials_in,
  #reviewsGridBl .reviewsGrid_in,
  #wsInspireBlock .wsInspire_in,
  #faqStackBl .faqStack_in,
  #hireRecBlock .hireRec_in,
  #orderFormBl .orderForm_in{padding:64px 18px}

  .approach_h2,.shopGrid_h2,.materials_h2,.revHead_h{font-size:30px}
  .howWorks_h2,.wsInspire_h,.faqHd_h,.hireRec_h{font-size:28px}
  .ordHead_h{font-size:26px}

  .approach_statsGrid{grid-template-columns:1fr;gap:24px}
  .prodGrid_wrap{grid-template-columns:1fr}
  .howWorks_steps{grid-template-columns:1fr}

  .founderDk_h{font-size:34px}
  .founderDk_textHalf{padding:48px 18px}

  .wsInspire_grid{grid-template-columns:1fr}
  .wsItem_wide{grid-column:auto}

  .formGrp_2col{grid-template-columns:1fr;gap:0}
  .orderForm_left{padding:24px 22px 28px}

  .prodMod_inner{grid-template-columns:1fr}
  .prodMod_imgSide{border-radius:20px 20px 0 0;min-height:280px}
  .prodMod_infoSide{padding:24px 22px}

  .cartItem_row{flex-wrap:wrap}
  .kwCart_modal{max-height:92vh;border-radius:18px}
  .kwCart_grid{grid-template-columns:1fr}
  .kwCart_summSide{
    border-left:none;
    border-top:1px solid #f3f4f6;
    padding:20px 22px 22px;
  }
  .kwCart_listIn{padding:14px 22px}
  .kwCart_topBar{padding:18px 22px 16px}
  .kwCart_titleH{font-size:1.25rem}
  .kwCart_overlay{padding:14px}

  .ckBan_w{bottom:12px;left:12px;right:12px}
  .ckBan_box{padding:18px 20px;gap:14px}
  .ckBan_btns{width:100%}
  .ckBan_btns button{flex:1}

  .ftrEnd_in{padding:48px 18px 24px}
  .ftrEnd_topGrid{grid-template-columns:1fr;gap:32px}
  .ftr_brandCol{grid-column:auto}
  .ftrEnd_botBar{flex-direction:column-reverse;align-items:flex-start;gap:14px}

  .cartFab_box{width:48px;height:48px;font-size:18px;bottom:18px;right:18px}
}

@media (max-width:380px){
  .hero_h1{font-size:30px}
  .purpleBand_h2{font-size:26px}
}
#subPgHero{
  background:linear-gradient(180deg, rgba(245,243,255,.5) 0%, #fff 100%);
  border-bottom:1px solid #f3f4f6;
  position:relative;
  isolation:isolate;
  overflow:hidden;
}
.subHero_in{
  max-width:1280px;
  margin:0 auto;
  padding:60px 24px 56px;
  position:relative;
  z-index:1;
}
.subHero_back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:500;
  color:#6b7280;
  margin-bottom:1.5rem;
  letter-spacing:.2px;
  transition:color .15s;
}
.subHero_back:hover{color:#6d28d9;opacity:1}
.subHero_back i{font-size:14px}
.subHero_eye{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#6d28d9;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:20px;
}
.subHero_h{
  font-size:48px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-1.2px;
  color:#0f172a;
  margin-bottom:18px;
  max-width:780px;
  font-family:'Noto Sans JP',sans-serif;
}
.subHero_lede{
  font-size:1.0625rem;
  color:#4b5563;
  line-height:1.85;
  max-width:680px;
}
.subHero_imgWrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px 32px;
}
.subHero_imgWrap img{
  width:100%;
  border-radius:20px;
  aspect-ratio:21/9;
  object-fit:cover;
  background:#f5f3ff;
}

@media (max-width:1024px){
  .subHero_h{font-size:38px}
}

@media (max-width:680px){
  .subHero_in{padding:36px 18px 28px}
  .subHero_h{font-size:30px;letter-spacing:-.8px}
  .subHero_lede{font-size:15px}
  .subHero_imgWrap{padding:0 18px 20px}
  .subHero_imgWrap img{aspect-ratio:16/9;border-radius:14px}
}
#legalPgBody{
  background:#fff;
  padding:48px 0 96px;
}
.legalPg_in{
  max-width:760px;
  margin:0 auto;
  padding:0 24px;
}
.legalPg_in h2{
  font-size:1.5rem;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-.3px;
  margin:36px 0 14px;
  font-family:'Noto Sans JP',sans-serif;
  line-height:1.4;
}
.legalPg_in h2:first-child{margin-top:0}
.legalPg_in h3{
  font-size:1.0625rem;
  font-weight:700;
  color:#1f2937;
  margin:24px 0 10px;
  letter-spacing:-.1px;
}
.legalPg_in p{
  font-size:14.5px;
  color:#4b5563;
  line-height:1.9;
  margin-bottom:14px;
}
.legalPg_in ul,
.legalPg_in ol{
  margin:6px 0 18px;
  padding-left:1.6em;
}
.legalPg_in li{
  font-size:14.5px;
  color:#4b5563;
  line-height:1.85;
  margin-bottom:8px;
}
.legalPg_in li::marker{color:#a78bfa}
.legalPg_in strong{
  color:#1f2937;
  font-weight:700;
}
.legalPg_in a{
  color:#6d28d9;
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:3px;
}
.legalPg_in a:hover{color:#5b21b6;opacity:1}

@media (max-width:680px){
  #legalPgBody{padding:32px 0 64px}
  .legalPg_in{padding:0 18px}
  .legalPg_in h2{font-size:1.25rem;margin:28px 0 12px}
  .legalPg_in h3{font-size:1rem;margin:20px 0 8px}
  .legalPg_in p,
  .legalPg_in li{font-size:14px}
}