/* ===================================
   松田昆布加工店 - Design System
   =================================== */

/* --- CSS Variables --- */
:root {
  --color-sumi: #2C2C2C;
  --color-sumi-light: #4A4A4A;
  --color-fukamidori: #2D5016;
  --color-fukamidori-light: #3D6B1E;
  --color-shu: #C53D43;
  --color-shu-dark: #A03035;
  --color-kinari: #F5F0E8;
  --color-gold: #B8860B;
  --color-gold-light: #D4A017;
  --color-usuzumi: #E8E4DC;
  --color-white: #FEFCF8;
  --color-black: #1A1A1A;

  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-en: 'Cormorant Garamond', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-sumi);
  background-color: var(--color-kinari);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.4; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title .en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title .ja {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-sumi);
  letter-spacing: 0.15em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-shu);
  margin: 1rem auto 0;
}

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Washi Paper Texture (CSS Pattern) --- */
.washi-bg {
  background-color: var(--color-kinari);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,190,170,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(180,170,150,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(190,180,160,0.05) 0%, transparent 50%);
}

/* ===================================
   Header / Navigation
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  transition: color var(--transition);
  white-space: nowrap;
}

.header.scrolled .logo { color: var(--color-sumi); }

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.header.scrolled .nav-list a { color: var(--color-sumi-light); }

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-shu);
  transition: width var(--transition);
}

.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { color: var(--color-shu); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--color-sumi); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-konbu.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.4) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-md);
}

.hero-sub {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.25em;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  animation: fadeUp 1s 1.5s forwards;
  opacity: 0;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: var(--space-2xl) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 3px solid var(--color-kinari);
}

.about-text h3 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--color-fukamidori);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--color-sumi-light);
}

.about-accent {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

/* ===================================
   Products Section
   =================================== */
.products {
  padding: var(--space-2xl) 0;
  background-color: var(--color-usuzumi);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-img-wrap { overflow: hidden; }

.product-card-body {
  padding: 1.2rem;
  text-align: center;
}

.product-card-body h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.product-card-body p {
  font-size: 0.8rem;
  color: var(--color-sumi-light);
  line-height: 1.6;
}

/* ===================================
   Spirit Section
   =================================== */
.spirit {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.spirit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.spirit-image {
  position: relative;
}

.spirit-image img {
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.spirit-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--color-fukamidori);
  border-left: 3px solid var(--color-shu);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.spirit-text h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-sumi);
}

.spirit-text p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-sumi-light);
  margin-bottom: 1rem;
}

.spirit-values {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.spirit-value {
  text-align: center;
  flex: 1;
}

.spirit-value-kanji {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-shu);
  margin-bottom: 0.3rem;
}

.spirit-value span {
  font-size: 0.75rem;
  color: var(--color-sumi-light);
  letter-spacing: 0.1em;
}

/* ===================================
   President Section
   =================================== */
.president {
  padding: var(--space-2xl) 0;
  background-color: var(--color-usuzumi);
}

.president-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.president-photo {
  position: relative;
}

.president-photo img {
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  width: 100%;
}

.president-photo::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  z-index: -1;
}

.president-info h3 {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.president-info .president-role {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.president-info p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-sumi-light);
  margin-bottom: 1rem;
}

.president-kendo {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 6px;
  border-left: 3px solid var(--color-shu);
}

.president-kendo h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-sumi);
}

.kendo-org {
  margin-bottom: 1rem;
}

.kendo-org h5 {
  font-size: 0.9rem;
  color: var(--color-fukamidori);
  margin-bottom: 0.3rem;
  font-family: var(--font-serif);
}

.kendo-org p {
  font-size: 0.85rem;
  color: var(--color-sumi-light);
  margin-bottom: 0.2rem;
  line-height: 1.6;
}

/* ===================================
   Company Section
   =================================== */
.company {
  padding: var(--space-2xl) 0;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.company-table th,
.company-table td {
  padding: 1rem;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
}

.company-table th {
  font-family: var(--font-serif);
  font-weight: 600;
  width: 120px;
  color: var(--color-sumi);
  letter-spacing: 0.1em;
}

.company-table td { color: var(--color-sumi-light); }

.company-map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 300px;
}

.company-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--color-sumi);
  color: var(--color-white);
}

.contact .section-title .ja { color: var(--color-white); }
.contact .section-title .en { color: var(--color-gold); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.contact-info-item a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--color-shu); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  padding: 0.9rem 2.5rem;
  background: var(--color-shu);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--color-shu-dark);
  transform: translateY(-2px);
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: 2rem 0;
  background: var(--color-black);
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-shu);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(197,61,67,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

.back-to-top svg { width: 18px; height: 18px; }

/* ===================================
   Mobile Navigation Overlay
   =================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.95);
  z-index: 999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active { display: flex; opacity: 1; }

.nav-overlay-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-overlay-list a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav-overlay-list a:hover { color: var(--color-shu); }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .about-content,
  .spirit-inner,
  .company-content { grid-template-columns: 1fr; }

  .about-img-sub { position: static; width: 60%; margin-top: -40px; margin-left: auto; }

  .president-content { grid-template-columns: 250px 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }

  .hero-title { letter-spacing: 0.1em; }
  .hero-catch { letter-spacing: 0.1em; }

  .president-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .president-photo { max-width: 250px; margin: 0 auto; }
  .president-kendo { text-align: left; }

  .contact-inner { grid-template-columns: 1fr; }

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

  .spirit-values { flex-wrap: wrap; }
  .spirit-value { min-width: 80px; }
}

/* ===================================
   Product Catalog (Accordion)
   =================================== */
.product-catalog {
  margin-top: var(--space-lg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.catalog-toggle {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: var(--color-fukamidori);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 8px;
  transition: background var(--transition), border-radius var(--transition);
}

.catalog-toggle:hover { background: var(--color-fukamidori-light); }

.catalog-toggle svg {
  transition: transform var(--transition);
}

.catalog-toggle.open {
  border-radius: 8px 8px 0 0;
}

.catalog-toggle.open svg {
  transform: rotate(180deg);
}

.catalog-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--color-white);
}

.catalog-body.open {
  max-height: 1200px;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
}

.catalog-table thead th {
  background: var(--color-kinari);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  color: var(--color-sumi);
  border-bottom: 2px solid var(--color-fukamidori);
  white-space: nowrap;
}

.catalog-table td {
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--color-sumi-light);
  vertical-align: top;
}

.catalog-table tbody tr:hover {
  background: rgba(45,80,22,0.03);
}

.catalog-product-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-sumi) !important;
  white-space: nowrap;
}

.catalog-note {
  padding: 1rem 1.5rem;
  background: var(--color-kinari);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.catalog-note p {
  font-size: 0.8rem;
  color: var(--color-sumi-light);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.catalog-note a {
  color: var(--color-fukamidori);
  font-weight: 500;
}

/* ===================================
   President Photo Placeholder
   =================================== */
.president-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-sumi) 0%, var(--color-sumi-light) 100%);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
  overflow: hidden;
}

.president-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,134,11,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(197,61,67,0.08) 0%, transparent 50%);
}

.president-initial {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3em;
  position: relative;
  z-index: 1;
}

.president-initial-sub {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}

/* ===================================
   Active Nav Link
   =================================== */
.nav-list a.active {
  color: var(--color-shu) !important;
}

.nav-list a.active::after {
  width: 100%;
}

/* ===================================
   Responsive (continued)
   =================================== */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .spirit-values { gap: 1rem; }

  .catalog-table thead { display: none; }
  .catalog-table, .catalog-table tbody, .catalog-table tr, .catalog-table td {
    display: block;
    width: 100%;
  }
  .catalog-table tr {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .catalog-table td {
    padding: 0.2rem 0;
    border: none;
    font-size: 0.8rem;
  }
  .catalog-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--color-fukamidori);
    display: block;
  }
}
