@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------------------------------
   Design Tokens & Reset
---------------------------------------------------------------- */
:root {
  /* Palette */
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c; /* Elegant Gold/Amber */

  /* Gradient (Purple-Blue for Campaign) */
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --g-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.6)
  );

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 100px;

  /* Layout */
  --container-max: 1200px;
  --header-h: 70px;
  --radius-md: 14px;
  --radius-sm: 8px;

  /* Typography */
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography Helper */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.text-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--c-gray-med);
  font-weight: 400;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.text-ul {
  text-decoration: underline;
}

.text-ul:hover {
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px; /* Pill shape */
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--c-white);
  color: var(--c-black);
}
.btn-primary:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}

.btn-outline {
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background: transparent;
}
.btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.btn-gradient {
  background: var(--c-white);
  color: #6a11cb;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

/* ----------------------------------------------------------------
   Header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  color: var(--c-black);
}

/* Transparent mode for Hero pages */
.header.transparent {
  background-color: transparent;
  color: var(--c-white);
  padding-top: 10px;
}

/* Solid mode for standard pages or scrolled */
.header.solid,
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  color: var(--c-black);
  padding-top: 0;
}

.announcement-bar {
  background-color: var(--c-black);
  color: var(--c-white);
  font-size: 0.75rem;
  text-align: center;
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-left: 24px;
}

.nav-desktop {
  display: none;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1;
}

.nav-social-link i {
  font-size: 0.95rem;
}

.header-icons {
  display: flex;
  gap: 16px;
}

.icon-btn {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 32px;
  }
  .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .nav-link.active::after {
    width: 100%;
  }
  .nav-social-link:hover {
    opacity: 0.75;
  }
}

/* ----------------------------------------------------------------
   Product Grid Components
---------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image-wrapper {
  background-color: var(--c-off-white);
  padding: 40px;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

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

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.badge.new {
  background: var(--c-accent);
}
.badge.sale {
  background: #e03e3e;
}
.badge.best {
  background: #2575fc;
}

.product-info {
  padding: 24px 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--c-gray-med);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.product-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-amazon {
  background-color: #f2c14e;
  border: 1px solid #f2c14e;
  color: #1a1a1a;
}

.btn-amazon:hover {
  background-color: #e7b63d;
  border-color: #e7b63d;
  color: #1a1a1a;
}

.btn-amazon i {
  margin-right: 8px;
  font-size: 0.95rem;
}

.product-colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------------
   Page Headers
---------------------------------------------------------------- */
.page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image:
    var(--g-overlay),
    url("https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--c-white);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* ----------------------------------------------------------------
   Utilities & Animations
---------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   Migrated Inline Styles (Scoped per page)
---------------------------------------------------------------- */

/* blog-detail.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-blog-detail {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-blog-detail *,
body.page-blog-detail *::before,
body.page-blog-detail *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-blog-detail {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8; /* Blog optimized line-height */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-blog-detail a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-blog-detail ul {
  list-style: none;
}
body.page-blog-detail img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-blog-detail button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-blog-detail .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-blog-detail .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-blog-detail .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-blog-detail .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-blog-detail .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-blog-detail .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-blog-detail .nav-link:hover {
    color: var(--c-accent);
  }
}

body.page-blog-detail .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Blog Detail Layout
        ---------------------------------------------------------------- */
body.page-blog-detail .blog-detail-container {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 900px) {
  body.page-blog-detail .blog-detail-container {
    grid-template-columns: 1fr 300px; /* Main + Sidebar */
  }
}

/* Blog Article Header */
body.page-blog-detail .blog-header {
  margin-bottom: 40px;
  text-align: center;
}

body.page-blog-detail .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--c-gray-med);
  font-family: monospace; /* Tech feel */
}

body.page-blog-detail .blog-cat {
  color: var(--c-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.page-blog-detail .blog-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

body.page-blog-detail .blog-eyecatch {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Blog Article Content (Typography) */
body.page-blog-detail .blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--c-gray-dark);
}

body.page-blog-detail .blog-content > * + * {
  margin-top: 2em;
}

/* Styles for Blog Detail (Different from News) */

/* H2: Left border with background */
body.page-blog-detail .blog-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-black);
  background-color: var(--c-off-white);
  padding: 20px 25px;
  border-left: 5px solid var(--c-black);
  margin-top: 3.5em;
  margin-bottom: 1.5em;
  border-radius: 0 8px 8px 0;
}

/* H3: Bottom border dotted */
body.page-blog-detail .blog-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-black);
  padding-bottom: 10px;
  border-bottom: 2px dotted var(--c-gray-light);
  margin-top: 3em;
  margin-bottom: 1.2em;
}

/* H4: Simple bold with icon-like slash */
body.page-blog-detail .blog-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2.5em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
body.page-blog-detail .blog-content h4::before {
  content: "/";
  color: var(--c-accent);
  font-weight: 400;
  margin-right: 10px;
  font-size: 1.4em;
}

/* Lists: Custom bullets */
body.page-blog-detail .blog-content ul {
  margin-left: 0;
  padding-left: 0;
}
body.page-blog-detail .blog-content ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
}
body.page-blog-detail .blog-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background-color: var(--c-accent);
  border-radius: 50%;
}

body.page-blog-detail .blog-content ol {
  counter-reset: blog-counter;
  margin-left: 0;
  padding-left: 0;
}
body.page-blog-detail .blog-content ol li {
  list-style: none;
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.8em;
}
body.page-blog-detail .blog-content ol li::before {
  counter-increment: blog-counter;
  content: counter(blog-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--c-black);
  color: var(--c-white);
  font-size: 0.8em;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Table: Striped style */
body.page-blog-detail .blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5em 0;
  font-size: 0.95rem;
  border-radius: 8px;
  overflow: hidden; /* for rounded corners */
  box-shadow: 0 0 0 1px var(--c-gray-light);
}

.blog-content th,
body.page-blog-detail .blog-content td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-gray-light);
}

body.page-blog-detail .blog-content th {
  background-color: var(--c-black);
  color: var(--c-white);
  font-weight: 600;
  border-bottom: none;
}

body.page-blog-detail .blog-content tr:last-child td {
  border-bottom: none;
}

body.page-blog-detail .blog-content tr:nth-child(even) td {
  background-color: var(--c-off-white);
}

/* Image in content */
body.page-blog-detail .blog-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 2.5em 0;
}

/* Highlight Box */
body.page-blog-detail .blog-highlight {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: var(--radius-md);
  margin: 2em 0;
  border-left: 4px solid #448aff;
}

/* Pagination */
body.page-blog-detail .blog-nav {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--c-gray-light);
  display: flex;
  justify-content: space-between;
}

body.page-blog-detail .nav-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-black);
  transition: color 0.3s;
}
body.page-blog-detail .nav-btn:hover {
  color: var(--c-accent);
}

body.page-blog-detail .back-list {
  padding: 10px 30px;
  border: 1px solid var(--c-gray-light);
  border-radius: 50px;
}
body.page-blog-detail .back-list:hover {
  border-color: var(--c-black);
}

/* Sidebar Styles (Same as blog.html) */
body.page-blog-detail .sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

body.page-blog-detail .sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-black);
}

body.page-blog-detail .product-banner-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.page-blog-detail .product-banner {
  display: block;
  background-color: var(--c-off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

body.page-blog-detail .product-banner:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--c-gray-light);
  transform: translateY(-2px);
}

body.page-blog-detail .banner-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 20px;
}

body.page-blog-detail .banner-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

body.page-blog-detail .banner-info {
  padding: 15px;
  background: var(--c-white);
}

body.page-blog-detail .banner-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 4px;
}

body.page-blog-detail .banner-desc {
  font-size: 0.8rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-blog-detail .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-blog-detail .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-blog-detail .footer-logo-img {
  height: auto;
  width: 120px;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-blog-detail .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-blog-detail .footer-sitemap {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-blog-detail .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-blog-detail .footer-col ul li {
  margin-bottom: 12px;
}
body.page-blog-detail .footer-col a:hover {
  color: var(--c-white);
}
body.page-blog-detail .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* blog.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-blog {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-blog *,
body.page-blog *::before,
body.page-blog *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-blog {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-blog a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-blog ul {
  list-style: none;
}
body.page-blog img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-blog button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-blog .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-blog .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-blog .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-blog .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-blog .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-blog .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-blog .nav-link:hover {
    color: var(--c-accent);
  }
}

body.page-blog .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Page Header
        ---------------------------------------------------------------- */
body.page-blog .page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image: var(--g-overlay), url("../images/top/P1_04.jpg");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

body.page-blog .page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  font-weight: 700;
}

body.page-blog .page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Blog Layout
        ---------------------------------------------------------------- */
body.page-blog .blog-container {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 900px) {
  body.page-blog .blog-container {
    grid-template-columns: 1fr 300px; /* Main (2col grid) + Sidebar */
  }
}

/* Blog Grid (Main Content) */
body.page-blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-content: start;
  align-items: start;
  align-self: start;
}

@media (min-width: 600px) {
  body.page-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Blog Card */
body.page-blog .blog-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  transition: transform 0.3s ease;
  align-self: start;
  height: fit-content;
}

body.page-blog .blog-card:hover {
  transform: translateY(-5px);
}

body.page-blog .blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

body.page-blog .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.page-blog .blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

body.page-blog .blog-meta {
  font-size: 0.8rem;
  color: var(--c-gray-med);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.page-blog .blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--c-black);
}

body.page-blog .blog-excerpt {
  font-size: 0.95rem;
  color: var(--c-gray-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-blog .blog-readmore {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
}

body.page-blog .blog-readmore::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.3s;
}

body.page-blog .blog-card:hover .blog-readmore::after {
  transform: translateX(4px);
}

/* Sidebar */
body.page-blog .sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

body.page-blog .sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-black);
}

/* Product Banner Links */
body.page-blog .product-banner-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.page-blog .product-banner {
  display: block;
  background-color: var(--c-off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

body.page-blog .product-banner:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--c-gray-light);
  transform: translateY(-2px);
}

body.page-blog .banner-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 20px;
}

body.page-blog .banner-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

body.page-blog .banner-info {
  padding: 15px;
  background: var(--c-white);
}

body.page-blog .banner-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 4px;
}

body.page-blog .banner-desc {
  font-size: 0.8rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-blog .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-blog .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-blog .footer-brand {
  flex-basis: 300px;
}
body.page-blog .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-blog .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-blog .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-blog .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-blog .footer-col ul li {
  margin-bottom: 12px;
}
body.page-blog .footer-col a:hover {
  color: var(--c-white);
}
body.page-blog .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Animation */
body.page-blog .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
body.page-blog .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* brand.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-brand {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-brand *,
body.page-brand *::before,
body.page-brand *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-brand {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-brand a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-brand ul {
  list-style: none;
}
body.page-brand img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-brand button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-brand h1,
body.page-brand h2,
body.page-brand h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.page-brand .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-brand .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-brand .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-brand .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-brand .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-brand .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-brand .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-brand .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Page Headers (Copied from products.html design)
        ---------------------------------------------------------------- */
body.page-brand .page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image: var(--g-overlay), url("../images/top/P1_01.jpg");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

body.page-brand .page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

body.page-brand .page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Brand Page Specific Styles
        ---------------------------------------------------------------- */
body.page-brand .brand-section {
  padding: 80px 0 110px;
  max-width: 900px;
  margin: 0 auto;
}

body.page-brand .brand-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

body.page-brand .brand-title-en {
  font-size: clamp(1.8rem, 2.6vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0;
  color: #3b3b3b;
  margin-bottom: 12px;
}

body.page-brand .brand-title-ja {
  font-size: 0.85rem;
  color: #7d7d7d;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

body.page-brand .brand-text {
  font-size: 0.95rem;
  color: #4f4f4f;
  line-height: 3;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

body.page-brand .brand-image-fullbleed {
  width: 100vw;
  margin: 56px calc(50% - 50vw);
}

body.page-brand .brand-hero-image {
  width: 100%;
  height: min(46vw, 430px);
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  body.page-brand .brand-section {
    padding: 56px 0 80px;
  }

  body.page-brand .brand-title-ja {
    margin-bottom: 20px;
  }

  body.page-brand .brand-image-fullbleed {
    margin: 40px calc(50% - 50vw);
  }

  body.page-brand .brand-hero-image {
    height: 58vw;
  }
}

/* ----------------------------------------------------------------
           CTA Section
        ---------------------------------------------------------------- */
body.page-brand .cta-section {
  padding: 60px 20px;
  background-color: var(--c-off-white);
}
body.page-brand .cta-banner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
body.page-brand .cta-title {
  font-size: 2rem;
  margin-bottom: 16px;
}
body.page-brand .cta-desc {
  margin-bottom: 30px;
  color: var(--c-gray-med);
}

body.page-brand .btn-gradient {
  background: var(--g-campaign);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
body.page-brand .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-brand .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-brand .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-brand .footer-brand {
  flex-basis: 300px;
}
body.page-brand .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-brand .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-brand .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-brand .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-brand .footer-col ul li {
  margin-bottom: 12px;
}
body.page-brand .footer-col a:hover {
  color: var(--c-white);
}
body.page-brand .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* contact-complete.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-contact-complete {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-contact-complete *,
body.page-contact-complete *::before,
body.page-contact-complete *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-contact-complete {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-contact-complete main {
  flex: 1;
  display: flex;
  align-items: center;
}

body.page-contact-complete a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-contact-complete ul {
  list-style: none;
}
body.page-contact-complete img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-contact-complete button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-contact-complete .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-contact-complete .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-contact-complete .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-contact-complete .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-contact-complete .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-contact-complete .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-contact-complete .nav-link:hover {
    color: var(--c-accent);
  }
}

body.page-contact-complete .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Complete Page Styles
        ---------------------------------------------------------------- */
body.page-contact-complete .complete-container {
  padding: 80px 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

body.page-contact-complete .complete-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-black);
}

body.page-contact-complete .complete-text {
  font-size: 1rem;
  color: var(--c-gray-dark);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Buttons */
body.page-contact-complete .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
}

body.page-contact-complete .btn-black {
  background-color: var(--c-black);
  color: var(--c-white);
}
body.page-contact-complete .btn-black:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-contact-complete .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-contact-complete .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-contact-complete .footer-brand {
  flex-basis: 300px;
}
body.page-contact-complete .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-contact-complete .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-contact-complete .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-contact-complete .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-contact-complete .footer-col ul li {
  margin-bottom: 12px;
}
body.page-contact-complete .footer-col a:hover {
  color: var(--c-white);
}
body.page-contact-complete .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Animation */
body.page-contact-complete .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
body.page-contact-complete .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* contact.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-contact {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-contact *,
body.page-contact *::before,
body.page-contact *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-contact {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-contact a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-contact ul {
  list-style: none;
}
body.page-contact img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-contact button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-contact h1,
body.page-contact h2,
body.page-contact h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.page-contact .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-contact .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-contact .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-contact .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-contact .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-contact .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-contact .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-contact .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Page Header
        ---------------------------------------------------------------- */
body.page-contact .page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image:
    var(--g-overlay),
    url("https://images.unsplash.com/photo-1516387938699-a93567ec168e?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

body.page-contact .page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

body.page-contact .page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Contact Form
        ---------------------------------------------------------------- */
body.page-contact .contact-container {
  padding: 80px 0 120px;
  max-width: 800px;
  margin: 0 auto;
}

body.page-contact .contact-notice {
  background-color: var(--c-off-white);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 50px;
  font-size: 0.95rem;
  color: var(--c-gray-dark);
}

body.page-contact .contact-notice p {
  margin-bottom: 1em;
}
body.page-contact .contact-notice p:last-child {
  margin-bottom: 0;
}

body.page-contact .contact-form {
  display: grid;
  gap: 24px;
}

body.page-contact .contact-form-wrap .contact-form,
body.page-contact .contact-form-wrap .ff-default,
body.page-contact .contact-form-wrap .frm-fluent-form {
  display: grid;
  gap: 24px;
}

body.page-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-contact .form-label {
  font-weight: 700;
  font-size: 0.95rem;
}

body.page-contact .required {
  color: #e03e3e;
  margin-left: 4px;
  font-size: 0.8rem;
}

body.page-contact .form-input,
body.page-contact .form-textarea,
body.page-contact .form-select,
body.page-contact .contact-form-wrap .ff-el-form-control,
body.page-contact .contact-form-wrap .ff-el-form-control[type="text"],
body.page-contact .contact-form-wrap .ff-el-form-control[type="email"],
body.page-contact .contact-form-wrap .ff-el-form-control[type="tel"],
body.page-contact .contact-form-wrap select.ff-el-form-control,
body.page-contact .contact-form-wrap textarea.ff-el-form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--c-gray-light);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.3s;
}

body.page-contact .form-input:focus,
body.page-contact .form-textarea:focus,
body.page-contact .form-select:focus,
body.page-contact .contact-form-wrap .ff-el-form-control:focus {
  outline: none;
  border-color: var(--c-black);
}

body.page-contact .form-textarea {
  height: 200px;
  resize: vertical;
}

body.page-contact .contact-form-wrap .ff-el-group {
  margin-bottom: 0;
}

body.page-contact .contact-form-wrap .ff-el-input--label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-black);
}

body.page-contact .contact-form-wrap .ff-el-is-required.asterisk-right label::after,
body.page-contact .contact-form-wrap .ff-el-input--label .text-danger {
  color: #e03e3e;
  margin-left: 4px;
  font-size: 0.8rem;
}

body.page-contact .contact-form-wrap textarea.ff-el-form-control {
  min-height: 200px;
  resize: vertical;
}

body.page-contact .contact-form-wrap .ff_submit_btn_wrapper,
body.page-contact .contact-form-wrap .ff-btn-submit {
  text-align: center;
}

body.page-contact .btn-submit {
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  justify-self: center;
  margin-top: 20px;
  min-width: 200px;
}

body.page-contact .contact-form-wrap .ff-btn-submit:not(.ff_btn_no_style) {
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width: 200px;
  line-height: 1.4;
}

body.page-contact .btn-submit:hover {
  background-color: var(--c-accent);
}

body.page-contact .contact-form-wrap .ff-btn-submit:not(.ff_btn_no_style):hover {
  background-color: var(--c-accent);
}

body.page-contact .contact-form-wrap .ff-message-success,
body.page-contact .contact-form-wrap .ff-message-error {
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-contact .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-contact .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-contact .footer-brand {
  flex-basis: 300px;
}
body.page-contact .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-contact .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-contact .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-contact .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-contact .footer-col ul li {
  margin-bottom: 12px;
}
body.page-contact .footer-col a:hover {
  color: var(--c-white);
}
body.page-contact .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* index.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset
        ---------------------------------------------------------------- */
body.page-index {
  /* Palette */
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  /* Elegant Gold/Amber */

  /* Gradient */
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);

  /* Spacing */
  --header-h: 70px;
  --radius-md: 14px;

  /* Typography */
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

*,
*::before,
body.page-index *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-index {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-index a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

body.page-index ul {
  list-style: none;
}

body.page-index img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-index button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1,
h2,
h3,
body.page-index h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.page-index .text-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--c-gray-med);
  font-weight: 400;
}

body.page-index .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
body.page-index .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
}

body.page-index .btn-primary {
  background-color: var(--c-white);
  color: var(--c-black);
}

body.page-index .btn-primary:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}

body.page-index .btn-outline {
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background: transparent;
}

body.page-index .btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

body.page-index .btn-gradient {
  background: var(--c-white);
  color: #6a11cb;
}

body.page-index .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-index .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  color: var(--c-black);
  transition: transform 0.3s ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-index .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-index .logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 24px;
}

body.page-index .logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-left: 24px;
}

body.page-index .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-index .nav-desktop {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  body.page-index .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }

  body.page-index .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Hero Section (Slider)
        ---------------------------------------------------------------- */
body.page-index .hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
}

body.page-index .slider-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s var(--ease-out);
}

body.page-index .slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
}

body.page-index .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform-origin: center center;
  transform: scale(1.05);
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.1);
  }
}

body.page-index .slide.active .slide-bg {
  animation: zoomIn 3s linear forwards;
}

body.page-index .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 2;
}

/* Fixed Content */
body.page-index .hero-fixed-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  color: var(--c-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.page-index .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

body.page-index .hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 500;
}

/* Slider Controls */
body.page-index .slider-controls {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
}

body.page-index .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.3s ease;
}

body.page-index .dot.active {
  background: var(--c-white);
  transform: scale(1.2);
}

body.page-index .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: white;
  padding: 20px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

body.page-index .arrow:hover {
  opacity: 1;
}

body.page-index .arrow-prev {
  left: 20px;
}

body.page-index .arrow-next {
  right: 20px;
}

@media (max-width: 768px) {
  body.page-index .arrow {
    display: none;
  }
}

/* Scroll Down */
body.page-index .scroll-down {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: auto;
  transform: none;
  z-index: 10;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

body.page-index .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-white) 50%, transparent 100%);
  margin-top: 8px;
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ----------------------------------------------------------------
           Navigation Cards
        ---------------------------------------------------------------- */
body.page-index .nav-cards {
  padding: 80px 0;
}

body.page-index .nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  body.page-index .nav-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.page-index .nav-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

body.page-index .nav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

body.page-index .nav-card:hover img {
  transform: scale(1.05);
}

body.page-index .nav-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--c-white);
}

body.page-index .nav-card-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

body.page-index .arrow-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
}

body.page-index .arrow-link svg {
  margin-left: 8px;
  transition: transform 0.3s;
}

body.page-index .nav-card:hover .arrow-link svg {
  transform: translateX(5px);
}

/* ----------------------------------------------------------------
           Products Section
        ---------------------------------------------------------------- */
body.page-index .products-section {
  padding: 100px 0;
  background-color: var(--c-white);
}

body.page-index .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

body.page-index .product-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out);
  border: 1px solid #f0f0f0;
}

body.page-index .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.page-index .product-image-wrapper {
  background-color: var(--c-off-white);
  padding: 40px;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-index .product-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

body.page-index .product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

body.page-index .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

body.page-index .badge.new {
  background: var(--c-accent);
}

body.page-index .badge.sale {
  background: #e03e3e;
}

body.page-index .product-info {
  padding: 24px;
  text-align: center;
}

body.page-index .product-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

body.page-index .product-desc {
  font-size: 0.9rem;
  color: var(--c-gray-med);
  margin-bottom: 12px;
}

body.page-index .product-price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
}

body.page-index .section-header {
  text-align: center;
  margin-bottom: 60px;
}

body.page-index .section-title {
  font-size: 2.5rem;
  color: var(--c-black);
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
           News Section
        ---------------------------------------------------------------- */
body.page-index .news-section {
  padding: 100px 0;
  background-color: var(--c-off-white);
}

body.page-index .news-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  body.page-index .news-layout {
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
  }
}

body.page-index .news-text-area {
  text-align: left;
}

body.page-index .news-desc {
  margin-bottom: 40px;
  color: var(--c-gray-med);
  font-size: 1rem;
}

body.page-index .news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.page-index .news-item {
  background: var(--c-white);
  padding: 24px 56px 24px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

body.page-index .news-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 5l7 7-7 7'/%3E%3C/svg%3E");
  opacity: 0.9;
}

body.page-index .news-item:hover {
  border-color: var(--c-gray-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

body.page-index .news-meta {
  font-size: 0.8rem;
  color: var(--c-gray-med);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
}

body.page-index .news-tag {
  color: var(--c-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

body.page-index .news-item h4 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ----------------------------------------------------------------
           CTA (Contact)
        ---------------------------------------------------------------- */
body.page-index .cta-section {
  padding: 64px 20px;
}

body.page-index .cta-banner {
  background: var(--g-campaign);
  border-radius: 24px;
  color: var(--c-white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.page-index .cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body.page-index .cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

body.page-index .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-index .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

body.page-index .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 900px) {
  body.page-index .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

body.page-index .footer-brand {
  flex-basis: 300px;
}

body.page-index .footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

body.page-index .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}

body.page-index .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}

body.page-index .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}

body.page-index .footer-col ul li {
  margin-bottom: 12px;
}

body.page-index .footer-col a:hover {
  color: var(--c-white);
}

body.page-index .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ----------------------------------------------------------------
           Animations
        ---------------------------------------------------------------- */
body.page-index .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

body.page-index .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* news-detail.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-news-detail {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-news-detail *,
body.page-news-detail *::before,
body.page-news-detail *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-news-detail {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-news-detail a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-news-detail ul {
  list-style: none;
}
body.page-news-detail img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-news-detail button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-news-detail .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-news-detail .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-news-detail .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-news-detail .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-news-detail .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-news-detail .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-news-detail .nav-link:hover {
    color: var(--c-accent);
  }
}

body.page-news-detail .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           News Detail Layout
        ---------------------------------------------------------------- */
body.page-news-detail .news-detail-container {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 900px) {
  body.page-news-detail .news-detail-container {
    grid-template-columns: 1fr 300px; /* Main content + Sidebar */
  }
}

/* Article Header */
body.page-news-detail .article-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--c-gray-light);
  padding-bottom: 20px;
}

body.page-news-detail .article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--c-gray-med);
}

body.page-news-detail .article-cat {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a2777c;
  background-color: #f8eff0;
  text-transform: uppercase;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

body.page-news-detail .article-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
}

/* Article Content (Typography) */
body.page-news-detail .article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-gray-dark);
}

body.page-news-detail .article-content > * + * {
  margin-top: 2em;
}

/* Headings */
body.page-news-detail .article-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-black);
  border-bottom: 2px solid var(--c-black);
  padding-bottom: 10px;
  margin-top: 3em;
  margin-bottom: 1.5em;
}

body.page-news-detail .article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-black);
  padding-left: 15px;
  border-left: 4px solid var(--c-accent);
  margin-top: 2.5em;
  margin-bottom: 1.2em;
}

body.page-news-detail .article-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
}

/* Lists */
.article-content ul,
body.page-news-detail .article-content ol {
  margin-left: 20px;
  padding-left: 0;
}

body.page-news-detail .article-content ul li {
  list-style: disc;
  margin-bottom: 0.5em;
  padding-left: 5px;
}

body.page-news-detail .article-content ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
  padding-left: 5px;
}

/* Table */
body.page-news-detail .article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95rem;
}

.article-content th,
body.page-news-detail .article-content td {
  border: 1px solid var(--c-gray-light);
  padding: 15px;
  text-align: left;
}

body.page-news-detail .article-content th {
  background-color: var(--c-off-white);
  font-weight: 700;
  color: var(--c-black);
  width: 30%;
}

/* Image in content */
body.page-news-detail .article-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 2em 0;
}

/* Pagination */
body.page-news-detail .article-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--c-gray-light);
  display: flex;
  justify-content: space-between;
}

body.page-news-detail .nav-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-black);
}
body.page-news-detail .nav-btn:hover {
  color: var(--c-accent);
}

body.page-news-detail .back-list {
  padding: 10px 30px;
  border: 1px solid var(--c-gray-light);
  border-radius: 50px;
}
body.page-news-detail .back-list:hover {
  border-color: var(--c-black);
}

/* Sidebar */
body.page-news-detail .sidebar {
  position: sticky;
  top: 100px;
}

body.page-news-detail .sidebar-widget {
  margin-bottom: 40px;
}

body.page-news-detail .widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--c-black);
  padding-bottom: 10px;
}

body.page-news-detail .cat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-news-detail .cat-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
body.page-news-detail .cat-item:hover {
  color: var(--c-accent);
}

body.page-news-detail .archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-news-detail .archive-item {
  display: block;
  padding: 10px 16px;
  border: 1px solid var(--c-gray-light);
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
body.page-news-detail .archive-item:hover {
  border-color: var(--c-black);
  background-color: var(--c-black);
  color: var(--c-white);
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-news-detail .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-news-detail .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-news-detail .footer-brand {
  flex-basis: 300px;
}
body.page-news-detail .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-news-detail .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-news-detail .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-news-detail .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-news-detail .footer-col ul li {
  margin-bottom: 12px;
}
body.page-news-detail .footer-col a:hover {
  color: var(--c-white);
}
body.page-news-detail .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* news.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-news {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-news *,
body.page-news *::before,
body.page-news *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-news {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-news a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-news ul {
  list-style: none;
}
body.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-news button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-news h1,
body.page-news h2,
body.page-news h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.page-news .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-news .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-news .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-news .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-news .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-news .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-news .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-news .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Page Header
        ---------------------------------------------------------------- */
body.page-news .page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image:
    var(--g-overlay),
    url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

body.page-news .page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

body.page-news .page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           News Layout
        ---------------------------------------------------------------- */
body.page-news .news-container {
  padding: 72px 0 110px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  body.page-news .news-container {
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: flex-start;
  }
}

/* Sidebar (Archive) */
body.page-news .sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-gray-light);
  padding-bottom: 10px;
  letter-spacing: 0.02em;
}

body.page-news .archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-news .archive-item {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--c-gray-light);
  border-radius: 8px;
  background: var(--c-white);
  text-align: left;
  font-size: 0.88rem;
  color: var(--c-gray-med);
  transition: all 0.3s ease;
}

body.page-news .archive-item:hover {
  border-color: #d5d5d9;
  color: var(--c-black);
  transform: translateX(3px);
}

body.page-news .archive-item.is-active {
  border-color: var(--c-black);
  color: var(--c-black);
  background: #f7f7f7;
}

/* Main Content */
body.page-news .news-main {
  width: 100%;
}

/* Category Filters */
body.page-news .category-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

body.page-news .cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #787b82;
  background: #f4f5f7;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}
body.page-news .cat-btn:hover {
  border-color: #d8dbe0;
  color: #545860;
  background: #eef0f3;
}

body.page-news .cat-btn.is-active {
  border-color: currentColor;
  box-shadow: inset 0 0 0 1px currentColor;
}

body.page-news .cat-btn.all {
  background-color: #eceef1;
  color: #555a63;
}
body.page-news .cat-btn.news {
  background-color: #f8eff0;
  color: #a2777c;
}
body.page-news .cat-btn.event {
  background-color: #eff5ea;
  color: #7f9a67;
}
body.page-news .cat-btn.support {
  background-color: #edf2f8;
  color: #7387a4;
}

/* News List */
body.page-news .news-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-news .news-row {
  display: flex;
  align-items: flex-start;
  background: var(--c-white);
  padding: 22px 56px 22px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  gap: 14px;
  text-decoration: none;
  color: var(--c-black);
  flex-wrap: wrap;
  position: relative;
}

body.page-news .news-row:hover {
  border-color: var(--c-gray-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

body.page-news .news-row::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 5l7 7-7 7'/%3E%3C/svg%3E");
  opacity: 0.9;
}

body.page-news .news-date {
  font-size: 0.8rem;
  color: var(--c-gray-med);
  min-width: 112px;
}

body.page-news .news-label {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8e98a4;
  background: #f2f4f7;
  text-transform: uppercase;
  min-width: 76px;
  text-align: center;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

body.page-news .news-label.news {
  background-color: #f8eff0;
  color: #a2777c;
}
body.page-news .news-label.event {
  background-color: #eff5ea;
  color: #7f9a67;
}
body.page-news .news-label.support {
  background-color: #edf2f8;
  color: #7387a4;
}

body.page-news .news-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 600px) {
  body.page-news .news-row {
    gap: 10px;
    padding: 18px 44px 18px 18px;
  }
  body.page-news .news-date {
    width: 100%;
    margin-bottom: 4px;
  }
  body.page-news .news-label {
    margin-right: 10px;
  }
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-news .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-news .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-news .footer-brand {
  flex-basis: 300px;
}
body.page-news .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-news .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-news .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-news .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-news .footer-col ul li {
  margin-bottom: 12px;
}
body.page-news .footer-col a:hover {
  color: var(--c-white);
}
body.page-news .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Animation */
body.page-news .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
body.page-news .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* product-arc-air2.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited from Index)
        ---------------------------------------------------------------- */
body.page-product-arc-air2 {
  /* Palette */
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;

  /* Gradient */
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);

  /* Spacing */
  --header-h: 70px;
  --radius-md: 14px;

  /* Typography */
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-product-arc-air2 *,
body.page-product-arc-air2 *::before,
body.page-product-arc-air2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-product-arc-air2 {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-product-arc-air2 a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
body.page-product-arc-air2 ul {
  list-style: none;
}
body.page-product-arc-air2 img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-product-arc-air2 button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-product-arc-air2 h1,
body.page-product-arc-air2 h2,
body.page-product-arc-air2 h3,
body.page-product-arc-air2 h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.page-product-arc-air2 .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Header (Same as Index)
        ---------------------------------------------------------------- */
body.page-product-arc-air2 .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  color: var(--c-black);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-product-arc-air2 .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-product-arc-air2 .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-product-arc-air2 .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .nav-desktop {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  body.page-product-arc-air2 .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-product-arc-air2 .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Product Detail Styles
        ---------------------------------------------------------------- */

/* 1. Main Visual Section */
body.page-product-arc-air2 .pd-hero {
  padding: 60px 0;
  background-color: var(--c-white);
}

body.page-product-arc-air2 .pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .pd-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.page-product-arc-air2 .pd-hero-content {
  padding: 20px;
}

body.page-product-arc-air2 .pd-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
  line-height: 1;
}

body.page-product-arc-air2 .pd-colors {
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray-med);
}

body.page-product-arc-air2 .pd-catch {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

body.page-product-arc-air2 .pd-subcatch {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--c-gray-med);
  margin-bottom: 32px;
}

/* Product Gallery Slider */
body.page-product-arc-air2 .pd-gallery {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  background: var(--c-off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

body.page-product-arc-air2 .pd-gallery-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
  height: 100%;
}

body.page-product-arc-air2 .pd-gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

body.page-product-arc-air2 .pd-gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

body.page-product-arc-air2 .pd-gallery-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

body.page-product-arc-air2 .pd-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

body.page-product-arc-air2 .pd-gallery-dot.active {
  background: var(--c-black);
  transform: scale(1.2);
}

/* 2. Introduction Section */
body.page-product-arc-air2 .pd-intro {
  padding: 80px 0;
  background-color: var(--c-off-white);
}

body.page-product-arc-air2 .pd-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .pd-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.page-product-arc-air2 .pd-section-title {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}

body.page-product-arc-air2 .pd-text {
  font-size: 1rem;
  color: var(--c-gray-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* 3. Feature Summary Grid */
body.page-product-arc-air2 .pd-summary {
  padding: 80px 0;
}

body.page-product-arc-air2 .pd-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .pd-summary-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on PC */
  }
}

body.page-product-arc-air2 .feature-card {
  background: var(--c-off-white);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

body.page-product-arc-air2 .feature-card:hover {
  transform: translateY(-5px);
}

body.page-product-arc-air2 .feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

body.page-product-arc-air2 .feature-text {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

/* 4. Detailed Features Section */
body.page-product-arc-air2 .pd-details {
  padding: 0 0 0;
}

body.page-product-arc-air2 .detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  scroll-margin-top: 110px;
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .detail-block {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  /* Alternating Layout */
  body.page-product-arc-air2 .detail-block:nth-child(even) .detail-content {
    order: 1;
  }
  body.page-product-arc-air2 .detail-block:nth-child(even) .detail-image {
    order: 2;
  }
}

body.page-product-arc-air2 .detail-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color removed */
  padding: 40px; /* Padding added for size adjustment */
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .detail-image {
    height: auto;
    padding: 80px; /* More padding on PC to control size */
  }
}

body.page-product-arc-air2 .detail-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Changed to contain to respect padding and size */
}

body.page-product-arc-air2 .detail-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-white);
}

@media (min-width: 900px) {
  body.page-product-arc-air2 .detail-content {
    padding: 80px;
  }
}

body.page-product-arc-air2 .detail-title {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

body.page-product-arc-air2 .detail-desc {
  font-size: 1rem;
  color: var(--c-gray-dark);
  margin-bottom: 24px;
  line-height: 1.8;
}

body.page-product-arc-air2 .app-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
body.page-product-arc-air2 .app-btn img {
  height: 40px;
  width: auto;
  display: block;
}

/* 5. Specs Table Section */
body.page-product-arc-air2 .pd-specs {
  padding: 80px 0;
  background-color: var(--c-white);
}

body.page-product-arc-air2 .spec-container {
  max-width: 800px;
  margin: 0 auto;
}

body.page-product-arc-air2 .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

body.page-product-arc-air2 .spec-table th,
body.page-product-arc-air2 .spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--c-gray-light);
  text-align: left;
  vertical-align: top;
}

body.page-product-arc-air2 .spec-table th {
  width: 30%;
  background-color: var(--c-off-white);
  font-weight: 700;
  color: var(--c-black);
}

body.page-product-arc-air2 .spec-table td {
  color: var(--c-gray-dark);
}

body.page-product-arc-air2 .spec-btn-wrap {
  text-align: center;
}

body.page-product-arc-air2 .btn-outline {
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
}
body.page-product-arc-air2 .btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

/* ----------------------------------------------------------------
           Footer (Same as Index)
        ---------------------------------------------------------------- */
body.page-product-arc-air2 .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-product-arc-air2 .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-product-arc-air2 .footer-brand {
  flex-basis: 300px;
}
body.page-product-arc-air2 .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-product-arc-air2 .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-product-arc-air2 .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-product-arc-air2 .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-product-arc-air2 .footer-col ul li {
  margin-bottom: 12px;
}
body.page-product-arc-air2 .footer-col a:hover {
  color: var(--c-white);
}
body.page-product-arc-air2 .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* products.html */
/* Product Page Specific */

body.page-products .products-container {
  padding: 0;
}

body.page-products .products-section {
  padding: 100px 0;
  background-color: var(--c-white);
}

body.page-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

body.page-products .product-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out);
  border: 1px solid #f0f0f0;
}

body.page-products .page-header {
  background-image: url("../images/top/P1_03.jpg");
}

body.page-products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.page-products .product-image-wrapper {
  background-color: var(--c-off-white);
  padding: 40px;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-products .product-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

body.page-products .product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  body.page-products .products-section {
    padding: 72px 0;
  }
}

/* support.html */
/* ----------------------------------------------------------------
           Design Tokens & Reset (Inherited)
        ---------------------------------------------------------------- */
body.page-support {
  --c-white: #ffffff;
  --c-off-white: #f9f9fb;
  --c-black: #121212;
  --c-gray-dark: #333333;
  --c-gray-med: #666666;
  --c-gray-light: #e0e0e2;
  --c-accent: #c6a87c;
  --g-campaign: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --header-h: 70px;
  --radius-md: 14px;
  --font-main:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.page-support *,
body.page-support *::before,
body.page-support *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-support {
  font-family: var(--font-main);
  color: var(--c-black);
  background-color: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body.page-support a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

body.page-support a.text-ul {
  text-decoration: underline;
}

body.page-support a.text-ul:hover {
  text-decoration: none;
}

body.page-support ul {
  list-style: none;
}
body.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.page-support button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-support h1,
body.page-support h2,
body.page-support h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.page-support .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
           Header
        ---------------------------------------------------------------- */
body.page-support .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

body.page-support .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-support .logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: 24px;
}

body.page-support .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body.page-support .nav-desktop {
    display: flex;
    gap: 24px;
  }
  body.page-support .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  body.page-support .nav-link:hover {
    color: var(--c-accent);
  }
}

/* ----------------------------------------------------------------
           Page Header
        ---------------------------------------------------------------- */
body.page-support .page-header {
  background-color: var(--c-off-white);
  padding: 160px 0 80px;
  text-align: center;
  background-image:
    var(--g-overlay),
    url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

body.page-support .page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

body.page-support .page-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--c-gray-med);
}

/* ----------------------------------------------------------------
           Support Content
        ---------------------------------------------------------------- */
body.page-support .support-container {
  padding: 80px 0 120px;
  max-width: 800px;
  margin: 0 auto;
}

body.page-support .support-section {
  margin-bottom: 80px;
}

body.page-support .support-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid var(--c-accent);
  padding-left: 15px;
}

body.page-support .support-text {
  font-size: 1rem;
  color: var(--c-gray-dark);
  margin-bottom: 20px;
  text-align: justify;
}

body.page-support .support-note {
  background-color: var(--c-off-white);
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--c-gray-dark);
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------
           FAQ Accordion
        ---------------------------------------------------------------- */
body.page-support .faq-section {
  margin-top: 60px;
}

body.page-support .faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

body.page-support .faq-group-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--c-accent);
}

body.page-support .accordion-item {
  border-bottom: 1px solid var(--c-gray-light);
}

body.page-support .accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 15px 24px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-black);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

body.page-support .accordion-header:hover {
  color: var(--c-accent);
}

body.page-support .accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
body.page-support .accordion-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.page-support .accordion-icon::before {
  width: 100%;
  height: 2px;
}
body.page-support .accordion-icon::after {
  width: 2px;
  height: 100%;
  transition: transform 0.3s ease;
}

body.page-support .accordion-header.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg); /* Make it minus */
}
body.page-support .accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

body.page-support .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

body.page-support .accordion-body {
  padding: 0 15px 30px;
  font-size: 1rem;
  color: var(--c-gray-med);
  line-height: 1.8;
}

body.page-support .accordion-body > *:first-child {
  margin-top: 0;
}

body.page-support .accordion-body > *:last-child {
  margin-bottom: 0;
}

body.page-support .accordion-body p {
  margin: 0 0 14px;
}

body.page-support .accordion-body h3,
body.page-support .accordion-body h4 {
  font-size: 1rem;
  line-height: 1.35;
  color: #1f2937;
  margin: 24px 0 14px;
  font-weight: 700;
  padding-left: 10px;
  border-left: 5px solid #0ea5e9;
}

body.page-support .accordion-body h5 {
  font-size: 1.1rem;
  line-height: 1.45;
  color: #1f2937;
  margin: 22px 0 10px;
  padding-left: 10px;
  border-left: 5px solid #0ea5e9;
  font-weight: 700;
}

body.page-support .accordion-body ul,
body.page-support .accordion-body ol {
  margin: 8px 0 18px 1.6em;
  padding: 0;
}

body.page-support .accordion-body ul {
  list-style: disc;
}

body.page-support .accordion-body ol {
  list-style: decimal;
}

body.page-support .accordion-body li {
  margin: 6px 0;
}

body.page-support .accordion-body li > strong {
  color: #374151;
}

body.page-support .accordion-body .faq-note {
  margin: 14px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
}

/* ----------------------------------------------------------------
           Footer
        ---------------------------------------------------------------- */
body.page-support .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}
body.page-support .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body.page-support .footer-brand {
  flex-basis: 300px;
}
body.page-support .footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
body.page-support .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}
body.page-support .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  flex-grow: 1;
  max-width: 800px;
}
body.page-support .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}
body.page-support .footer-col ul li {
  margin-bottom: 12px;
}
body.page-support .footer-col a:hover {
  color: var(--c-white);
}
body.page-support .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ----------------------------------------------------------------
   Shared Header Logo Size
---------------------------------------------------------------- */
body[class^="page-"] .header .logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-left: 24px;
}

/* ----------------------------------------------------------------
   Page Header Overlay And Desc Color
---------------------------------------------------------------- */
body[class^="page-"] .page-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body[class^="page-"] .page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 0;
}

body[class^="page-"] .page-header > .container {
  position: relative;
  z-index: 1;
}

body[class^="page-"] .page-header .page-desc {
  color: #fff;
}

/* ----------------------------------------------------------------
   Shared Footer Style (Base: blog-detail.html)
---------------------------------------------------------------- */
body[class^="page-"] .footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

body[class^="page-"] .footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 900px) {
  body[class^="page-"] .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

body[class^="page-"] .footer-brand {
  flex-basis: 300px;
}

body[class^="page-"] .footer-logo-img {
  height: auto;
  width: 120px;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

body[class^="page-"] .footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
}

body[class^="page-"] .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

body[class^="page-"] .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

body[class^="page-"] .footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.08);
}

body[class^="page-"] .footer-sitemap {
  flex-grow: 1;
  max-width: 800px;
}

body[class^="page-"] .footer-menu-columns {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

body[class^="page-"] .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body[class^="page-"] .footer-col h4 {
  color: var(--c-white);
  margin-bottom: 24px;
  font-size: 1rem;
}

body[class^="page-"] .footer-col ul li {
  margin-bottom: 12px;
}

body[class^="page-"] .footer-menu-list li {
  margin-bottom: 12px;
}

body[class^="page-"] .footer-col a:hover {
  color: var(--c-white);
}

body[class^="page-"] .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ----------------------------------------------------------------
   Shared Header Style Override
---------------------------------------------------------------- */
body[class^="page-"] .header,
body[class*=" page-"] .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  color: var(--c-black);
  transition: transform 0.3s ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-top: 0;
}

body[class^="page-"] .header-main,
body[class*=" page-"] .header-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body[class^="page-"] .logo,
body[class*=" page-"] .logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 24px;
}

body[class^="page-"] .header .logo-img,
body[class*=" page-"] .header .logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-left: 24px;
}

body[class^="page-"] .nav-desktop,
body[class*=" page-"] .nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  body[class^="page-"] .nav-desktop,
  body[class*=" page-"] .nav-desktop {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  body[class^="page-"] .nav-link,
  body[class*=" page-"] .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }

  body[class^="page-"] .nav-link:hover,
  body[class*=" page-"] .nav-link:hover {
    color: var(--c-accent);
  }
}
