 :root {
   --accent: #B5647A;
   --accent-dark: #8C3F55;
   --accent-pale: #F8F0F2;
   --dark: #1A1A1A;
   --white: #ffffff;
   --gray-50: #F9F9F9;
   --gray-100: #F2F2F2;
   --gray-200: #E5E5E5;
   --gray-400: #AAAAAA;
   --gray-600: #888888;
   --gray-800: #333333;
 }

 *,
 *::before,
 *::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   background: var(--white);
   color: var(--gray-800);
   font-family: "Noto Sans JP", sans-serif;
   font-size: 15px;
   line-height: 1.8;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img {

   max-width: 100%;
   height: auto;
 }

 .pc {
   display: block;
 }

 .sp {
   display: none;
 }

 /* ── HERO ── */
 .hero {
   background: var(--white);
   text-align: center;
 }

 .eyebrow {
   font-size: 12px;
   letter-spacing: .4em;
   color: var(--accent);
   text-transform: uppercase;
   margin-bottom: 20px;
 }

 .hero h1 {
   font-family: "Noto Serif JP", serif;
   font-size: clamp(22px, 4vw, 36px);
   font-weight: 600;
   color: var(--dark);
   line-height: 1.45;
   margin-bottom: 16px;
 }

 .hero h1 em {
   color: var(--accent);
   font-style: normal;
 }

 .hero-lead {
   font-size: 15px;
   color: var(--gray-600);
   line-height: 2.1;
   max-width: 520px;
   margin: 0 auto 40px;
 }

 .hero-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: center;
 }

 .hero-nav a {
   width: 120px;
   height: 120px;
   border: 1px solid var(--accent);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   font-family: "Noto Serif JP", serif;
   font-size: 15px;
   font-weight: 600;
   line-height: 1.5;
   color: var(--accent);
   background: var(--white);
   transition: background .2s, color .2s;
   white-space: normal;
   padding: 12px;
 }

 .hero-nav a:hover {
   background: var(--accent);
   color: var(--white);
 }

 /* ── STICKY NAV ── */
 .sticky-nav {
   position: sticky;
   top: 0;
   z-index: 100;
   background: var(--white);
   border-bottom: 1px solid var(--gray-200);
 }

 .sticky-nav ul {
   max-width: 1040px;
   margin: 0 auto;
   padding: 0 32px;
   display: flex;
   list-style: none;
 }

 .sticky-nav ul li a {
   display: block;
   padding: 14px 18px;
   font-size: 13px;
   letter-spacing: .06em;
   color: var(--gray-600);
   border-bottom: 2px solid transparent;
   transition: color .2s, border-color .2s;
   white-space: nowrap;
   text-align: center;
 }

 .sticky-nav ul li a:hover,
 .sticky-nav ul li a.active {
   color: var(--dark);
   border-bottom-color: var(--accent);
 }

 /* ── CATEGORY ── */
 .category {
   padding: 72px 0;
   border-bottom: 1px solid var(--gray-100);
 }

 .category:last-of-type {
   border-bottom: none;
 }

 .category:nth-child(even) {
   background: #FDF6F8;
 }

 .cat-inner {
   max-width: 1040px;
   margin: 0 auto;
   padding: 0 32px;
 }

 .cat-header {
   display: grid;
   grid-template-columns: 180px 1fr;
   gap: 48px;
   align-items: start;
   margin-bottom: 44px;
 }

 .cat-label {
   position: sticky;
   top: 72px;
 }

 .cat-num {
   font-family: "Noto Serif JP", serif;
   font-size: 70px;
   font-weight: 700;
   color: #ffc2d3;
   line-height: 1;
   margin-bottom: 6px;
 }

 .cat-en {
   font-size: 11px;
   color: var(--accent);
   letter-spacing: .2em;
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 4px;
 }

 .cat-ja {
   font-family: "Noto Serif JP", serif;
   font-size: 22px;
   font-weight: 600;
   color: var(--dark);
   line-height: 1.35;
 }

 .cat-pill {
   display: inline-block;
   margin-top: 10px;
   font-size: 10px;
   color: var(--gray-800);
   border: 1px solid var(--gray-200);
   padding: 3px 10px;
   letter-spacing: .12em;
   text-transform: uppercase;
 }

 .cat-text h3 {
   font-family: "Noto Serif JP", serif;
   font-size: 20px;
   font-weight: 600;
   color: var(--dark);
   margin-bottom: 10px;
   line-height: 1.55;
 }

 .divider {
   width: 28px;
   height: 2px;
   background: var(--accent);
   margin-bottom: 14px;
 }

 .cat-text p {
   font-size: 14px;
   color: var(--gray-600);
   line-height: 2.1;
 }

 /* ── FEATURED 2-UP ── */
 .featured-wrap {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
   margin-bottom: 28px;
 }

 .featured-item {
   border: 1px solid var(--gray-200);
   display: flex;
   flex-direction: column;
   transition: border-color .2s;
   border-radius: 30px 0px 30px 0px;
 }

 .featured-item:hover {
   border-color: var(--accent);
 }

 .featured-item:hover .fi-img img {
   transform: scale(1.04);
 }

 .fi-img {
   overflow: hidden;
   aspect-ratio: 4/3.6;
   border-radius: 30px 0px 30px 0px;
 }

 .fi-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .4s ease;
 }

 .fi-body {
   padding: 18px 20px 22px;
   flex: 1;
   display: flex;
   flex-direction: column;
 }

 .fi-brand {
   font-size: 11px;
   letter-spacing: .18em;
   color: var(--gray-400);
   text-transform: uppercase;
   margin-bottom: 6px;
 }

 .fi-body h3 {
   font-family: "Noto Serif JP", serif;
   font-size: 17px;
   font-weight: 600;
   color: var(--dark);
   margin-bottom: 10px;
   line-height: 1.5;
 }

 .fi-desc {
   font-size: 13px;
   color: var(--gray-600);
   line-height: 1.9;
   flex: 1;
   margin-bottom: 16px;
 }

 .btn-buy {
   display: block;
   width: 100%;
   padding: 10px;
   background: var(--accent);
   color: var(--white);
   text-align: center;
   font-size: 13px;
   letter-spacing: .1em;
   transition: background .2s;
 }

 .btn-buy:hover {
   background: #dab985;
 }

 /* ── PRODUCT GRID 4-col ── */
 .product-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 14px;
 }

 .card {
   border: 1px solid var(--gray-200);
   overflow: hidden;
   transition: border-color .2s;
   border-radius: 30px 0px 30px 0px;
 }

 .card:hover {
   border-color: var(--accent);
 }

 .card:hover .card-img-inner {
   transform: scale(1.04);
 }

 .card-img {
   overflow: hidden;
   aspect-ratio: 1/1;
   background: var(--gray-50);
 }

 .card-img-inner {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .4s ease;
 }

 .card-body {
   padding: 12px 12px 14px;
 }

 .card-brand {
   font-size: 10px;
   color: var(--gray-400);
   letter-spacing: .16em;
   text-transform: uppercase;
   margin-bottom: 4px;
 }

 .card-name {
   font-size: 13px;
   font-weight: 500;
   color: var(--dark);
   line-height: 1.55;
 }

 /* ── SERIES BLOCK (unused in dessert LP) ── */
 .series-section {
   padding: 72px 0;
   background: #f0e4e8;
 }

 .series-inner {
   max-width: 1040px;
   margin: 0 auto;
   padding: 0 32px;
 }

 .series-label-top {
   font-size: 12px;
   letter-spacing: .4em;
   color: var(--accent);
   text-transform: uppercase;
   text-align: center;
   margin-bottom: 10px;
 }

 .series-section h2 {
   font-family: "Noto Serif JP", serif;
   font-size: clamp(20px, 3vw, 28px);
   font-weight: 600;
   color: #2c5566;
   text-align: center;
   margin-bottom: 8px;
 }

 .series-sub {
   font-size: 14px;
   color: rgb(6 0 0 / 73%);
   text-align: center;
   margin-bottom: 48px;
 }

 .series-intro {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 0;
   margin-bottom: 28px;
 }

 .series-img {
   overflow: hidden;
   /* aspect-ratio: 4/3; */
 }

 .series-img img {
   width: 100%;
   /* height: 100%; */
   object-fit: cover;
   transition: transform .5s ease;
 }

 .series-intro:hover .series-img img {
   transform: scale(1.03);
 }

 .series-text {
   padding: 40px 36px;
   /* background: #222; */
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .s-eyebrow {
   font-size: 13px;
   letter-spacing: .25em;
   color: var(--accent);
   text-transform: uppercase;
   margin-bottom: 12px;
 }

 .s-name {
   font-family: "Noto Serif JP", serif;
   font-size: 28px;
   font-weight: 600;
   color: var(--white);
   line-height: 1.3;
   margin-bottom: 4px;
 }

 .s-name-en {
   display: block;
   font-family: "Noto Serif JP", serif;
   font-size: 13px;
   font-weight: 400;
   letter-spacing: .18em;
   color: #fff;
   margin-bottom: 20px;
 }

 .s-divider {
   width: 28px;
   height: 1px;
   background: var(--accent);
   margin-bottom: 18px;
 }

 .s-desc {
   font-size: 14px;
   color: rgb(14 0 0);
   line-height: 2.1;
   margin-bottom: 22px;
 }

 .s-brand {
   font-size: 11px;
   letter-spacing: .14em;
   color: rgba(255, 255, 255, .3);
   border-top: 1px solid rgba(255, 255, 255, .1);
   padding-top: 14px;
   margin-top: auto;
 }

 .series-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
 }

 /* .series-img {
   border: 1px solid rgba(255, 255, 255, .08);
 } */

 .series-img:hover {
   border-color: var(--accent);
 }

 .series-card {
   /* border: 1px solid rgba(255, 255, 255, .08); */
   /* background: #fff; */
   transition: border-color .2s;
 }

 .series-card:hover {
   border-color: var(--accent);
 }

 .series-card:hover .sc-img img {
   transform: scale(1.04);
 }

 .sc-img {
   overflow: hidden;
   aspect-ratio: 1/1;
   background: #2a2a2a;
 }

 .sc-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .4s ease;
 }

 .sc-body {
   padding: 12px 14px 30px;
 }

 .sc-body.asort {
   padding-top: 0px;
 }

 .sc-name {
   font-size: 13px;
   color: rgb(28 28 28 / 80%);
   font-weight: 500;
   margin-bottom: 10px;
   line-height: 1.5;
 }

 .sc-btn {
   display: block;
   width: 100%;
   padding: 8px;
   background: #ffffff;
   border: 1px solid rgba(255, 255, 255, .2);
   color: rgb(0 0 0 / 81%);
   text-align: center;
   font-size: 12px;
   letter-spacing: .08em;
   transition: background .2s, border-color .2s, color .2s;
   border-radius: 50px;
 }

 .sc-btn:hover {
   background: var(--accent);
   border-color: var(--accent);
   color: var(--white);
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 900px) {
   .cat-header {
     grid-template-columns: 1fr;
     gap: 8px;
   }

   .cat-label {
     position: static;
   }

   .cat-num {
     font-size: 40px;
   }

   .product-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .series-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 680px) {
   .series-intro {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 780px) {
   .pc {
     display: none;
   }

   .sp {
     display: block;
   }

   body {
     font-size: 14px;
   }

   .hero {
     padding: 0;
   }

   .hero h1 {
     font-size: 22px;
   }


   .featured-wrap {
     display: grid;
     grid-template-columns: 1fr;
     gap: 24px;
     margin-bottom: 28px;
   }

   .cat-ja {
     float: left;
   }

   .cat-pill {
     float: right;
   }


   .hero-nav a {
     width: 44%;
     height: auto;
     border-radius: 0;
     padding: 10px 6px;
   }

   .sticky-nav {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
     display: none;
   }

   .sticky-nav::-webkit-scrollbar {
     display: none;
   }

   .sticky-nav ul {
     width: max-content;
     padding: 0 12px;
   }

   .sticky-nav ul li a {
     padding: 12px 12px;
     font-size: 12px;
   }

   .cat-inner,
   .series-inner {
     padding: 0 16px;
   }

   .category {
     padding: 48px 0;
   }


   .fi-img {
     aspect-ratio: 3/2.6;
   }

   .product-grid {
     gap: 10px;
   }

   .series-section {
     padding: 48px 0;
   }

   .series-intro {
     grid-template-columns: 1fr;
   }

   .series-img {
     aspect-ratio: 3/2;
   }

   .series-text {
     padding: 24px 20px;
   }

   .s-name {
     font-size: 22px;
   }

   .series-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
   }
 }

 /* ── GRASHEW TAB ── */
 .grashew-section {
   background: #bfdae5;
 }

 .gs-tabs {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   margin-bottom: 32px;
   justify-content: center;
 }

 .gs-tab {
   font-family: "Noto Serif JP", serif;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: .06em;
   color: var(--accent-dark);
   background: rgba(255, 255, 255, .55);
   border: 1px solid rgba(44, 85, 102, .3);
   padding: 8px 24px;
   cursor: pointer;
   transition: background .2s, color .2s, border-color .2s;
   border-radius: 2px;
 }

 button.gs-tab.blue {
   color: #fff;
   background: #2c5566ad;
 }

 button.gs-tab.amber {
   color: #fff;
   background: #c392339c;
 }



 .gs-tab:hover {
   background: rgba(255, 255, 255, .85);
   border-color: var(--accent);
 }

 .gs-tab.blue.active {
   background: #398eb1;
   color: #fff;
   border-color: #398eb1;
 }

 .gs-panel {
   display: none;
 }

 .gs-panel.active {
   display: block;
 }


 /* サイズグループ */
 .gs-size-group {
   margin-bottom: 28px;
 }

 .gs-size-label {
   font-family: "Noto Serif JP", serif;
   font-size: 18px;
   font-weight: 600;
   color: var(--accent-dark);
   letter-spacing: .1em;
   margin-bottom: 12px;
   padding-left: 2px;
   border-left: 3px solid var(--accent);
   padding-left: 10px;
 }

 .gs-size-grid {
   grid-template-columns: repeat(2, 1fr) !important;
   max-width: 480px;
 }

 @media (max-width: 780px) {
   .gs-tabs {
     gap: 6px;
   }

   .gs-tab {
     font-size: 13px;
     padding: 7px 14px;
   }

   .gs-size-grid {
     max-width: 100%;
   }
 }


 button.gs-tab.amber.active {
   background: #c39233;
   border-color: #c39233;
 }

 button.gs-tab.clear.active {
   background: #ffffff;
   border-color: #ffffff;
   color: #2C5566;
 }

 /* ── みなも ── */
 .minamo-section {
   background: #e4eef2;
 }

 .minamo-section .series-label-top,
 .minamo-section .s-eyebrow {
   color: #2c7a8e;
 }

 .minamo-section h2 {
   color: #1e5566;
 }

 .minamo-section .series-sub {
   color: rgba(0, 0, 0, .55);
 }

 .minamo-section .s-name {
   color: #1a3d4a;
 }

 .minamo-section .s-name-en {
   color: rgba(0, 0, 0, .35);
 }

 .minamo-section .s-desc {
   color: #2a4a55;
 }

 .minamo-section .s-divider {
   background: #2c7a8e;
 }

 .minamo-section .sc-btn:hover {
   background: #2c7a8e;
   border-color: #2c7a8e;
 }

 /* ── いろしずく ── */
 .iroshizuku-section {
   background: #f5f0ea;
 }

 .iroshizuku-section .series-label-top,
 .iroshizuku-section .s-eyebrow {
   color: #8a6a42;
 }

 .iroshizuku-section h2 {
   color: #4a3820;
 }

 .iroshizuku-section .series-sub {
   color: rgba(0, 0, 0, .5);
 }

 .iroshizuku-section .s-name {
   color: #2e2010;
 }

 .iroshizuku-section .s-name-en {
   color: rgba(0, 0, 0, .35);
 }

 .iroshizuku-section .s-desc {
   color: #3a2c1a;
 }

 .iroshizuku-section .s-divider {
   background: #9a7a52;
 }

 .iroshizuku-section .sc-btn:hover {
   background: #9a7a52;
   border-color: #9a7a52;
 }

 /* いろしずく アイテム種別グループ */
 .iro-group {
   margin-bottom: 36px;
 }

 .iro-group:last-child {
   margin-bottom: 0;
 }

 .iro-group-label {
   font-family: "Noto Serif JP", serif;
   font-size: 15px;
   font-weight: 600;
   color: #4a3820;
   letter-spacing: .1em;
   margin-bottom: 14px;
   padding-left: 12px;
   border-left: 3px solid #9a7a52;
 }

 /* 豆皿：1枚だけ左寄せで小さく */
 .iro-grid-1 {
   grid-template-columns: repeat(1, 1fr) !important;
   max-width: 240px;
 }

 /* カラードット（sc-name の前に色付き丸） */
 .sc-name {
   display: flex;
   align-items: center;
   gap: 6px;
 }

 .iro-blue {
   border-top: 3px solid #6aabe0;
 }

 .iro-pink {
   border-top: 3px solid #e0829a;
 }

 .iro-green {
   border-top: 3px solid #72b87a;
 }

 /* ── すずね ── */
 .suzune-section {
   background: #f4f2ef;
 }

 .suzune-section .series-label-top,
 .suzune-section .s-eyebrow {
   color: #6b6055;
 }

 .suzune-section h2 {
   color: #3a342c;
 }

 .suzune-section .series-sub {
   color: rgba(0, 0, 0, .5);
 }

 .suzune-section .s-name {
   color: #2a241e;
 }

 .suzune-section .s-name-en {
   color: rgba(0, 0, 0, .35);
 }

 .suzune-section .s-desc {
   color: #4a4035;
 }

 .suzune-section .s-divider {
   background: #8a7a6a;
 }

 .suzune-section .sc-btn:hover {
   background: #8a7a6a;
   border-color: #8a7a6a;
 }

 /* すずね 4列グリッド */
 .suzune-grid {
   grid-template-columns: repeat(4, 1fr);
 }

 @media (max-width: 900px) {
   .suzune-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .iro-grid-1 {
     max-width: 100%;
     grid-template-columns: repeat(2, 1fr) !important;
   }
 }

 @media (max-width: 780px) {
   .suzune-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .iro-grid-1 {
     grid-template-columns: repeat(1, 1fr) !important;
     max-width: 160px;
   }

   .s-desc {
     font-size: 14px;
     margin-bottom: 0px
   }

   .series-sub {
     font-size: 14px;
     margin-bottom: 20px;
   }

   .s-eyebrow {
     font-size: 13px;
   }
 }


 .sc-asort {
   display: grid;
   grid-auto-flow: column;
   align-items: baseline;
   grid-template-columns: 1fr 1fr;
 }

 .asort-name {
   padding: 12px 20px 0px;
 }

 /* ── sticky-nav スクロール出現 ── */
 .sticky-nav {
   opacity: 0;
   pointer-events: none;
   transform: translateY(-4px);
   transition: opacity .25s ease, transform .25s ease;
 }

 .sticky-nav.is-visible {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }

 /* ── s-sub-copy：series-textのシリーズ名直下サブコピー ── */
 .s-sub-copy {
   font-size: 12px;
   letter-spacing: .12em;
   color: var(--gray-600);
   margin-bottom: 14px;
   line-height: 1.5;
 }

 .minamo-section .s-sub-copy {
   color: #3a6a7a;
 }

 .iroshizuku-section .s-sub-copy {
   color: #7a5a38;
 }

 .suzune-section .s-sub-copy {
   color: #6b5c4e;
 }

 /* ── かき氷特集 誘導バナー ── */
 .kakigori-banner {
   display: grid;
   grid-template-columns: auto 1fr auto;
   align-items: center;
   gap: 0;
   margin-top: 44px;
   border-top: 1px solid var(--gray-200);
   border-bottom: 1px solid var(--gray-200);
   padding: 32px 30px 32px 0;
   text-decoration: none;
   color: inherit;
   transition: opacity .2s;
   position: relative;
 }

 .kakigori-banner::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, transparent 60%, rgb(106 204 221 / 16%) 100%) pointer-events: none;
   transition: background .3s;
 }

 .kakigori-banner:hover::before {
   background: linear-gradient(90deg, transparent 40%, rgb(42 172 251 / 12%) 100%);
 }

 .kakigori-banner__deco {
   font-family: "Noto Serif JP", serif;
   font-size: 72px;
   font-weight: 700;
   line-height: 1;
   color: #2aaadf;
   letter-spacing: -.02em;
   padding-right: 36px;
   transition: color .25s;
   user-select: none;
   font-style: italic;
 }

 .kakigori-banner:hover .kakigori-banner__deco {
   color: #89c6df;
 }

 .kakigori-banner__body {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .kakigori-banner__eyebrow {
   font-size: 10px;
   letter-spacing: .35em;
   color: #89c6df;
   text-transform: uppercase;
   font-weight: 500;
 }

 .kakigori-banner__title {
   font-family: "Noto Serif JP", serif;
   font-size: 22px;
   font-weight: 600;
   color: var(--dark);
   line-height: 1.3;
 }

 .kakigori-banner__sub {
   font-size: 15px;
   color: #5b5b5b;
   line-height: 1.75;
 }

 .kakigori-banner__cta {
   display: flex;
   align-items: center;
   gap: 8px;
   padding-left: 40px;
   font-family: "Noto Serif JP", serif;
   font-size: 16px;
   font-weight: 600;
   letter-spacing: .1em;
   color: #178bbb;
   white-space: nowrap;
   border-left: 1px solid var(--gray-200);
   margin-left: 32px;
 }

 .kakigori-banner__arrow {
   flex-shrink: 0;
   transition: transform .25s ease;
 }

 .kakigori-banner:hover .kakigori-banner__arrow {
   transform: translateX(5px);
 }

 @media (max-width: 780px) {
   .kakigori-banner {
     grid-template-columns: 1fr auto;
     grid-template-rows: auto auto;
     gap: 4px 0;
     padding: 24px 0;
   }

   .kakigori-banner__deco {
     font-size: 60px;
   }

   .kakigori-banner__body {
     /* grid-column: 1 / 2; */
     gap: 4px;
   }

   .kakigori-banner__sub {
     font-size: 13px;
   }

   .kakigori-banner__title {
     font-size: 18px;
   }

   .kakigori-banner__cta {
     grid-column: 2 / 3;
     padding-left: 0;
     border-left: none;
     margin-left: 0;
     font-size: 15px;
     color: #289bcb;
   }
 }