/*
Theme Name: Enfant Corporate Hikari Draft v12
Theme URI: https://enfant.co.jp/
Author: Enfant
Description: Hikari-style corporate WordPress theme draft for Enfant with WooCommerce support.
Version: 0.12.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: enfant-corporate
*/

:root {
  --ink: #1f2421;
  --muted: #6d746e;
  --paper: #f4f1ea;
  --surface: #ffffff;
  --line: #d9d3c8;
  --accent: #a48658;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

#container {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
  height: 64px;
  padding: 0;
  background: none;
  border-bottom: none;
}

.global-nav {
  display: flex;
  align-items: stretch;
  width: auto;
  background: rgba(10, 11, 10, 0.94);
  backdrop-filter: blur(14px);
}

.global-nav ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 0 28px 0 0;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.global-nav li {
  display: flex;
  align-items: stretch;
}

.site-logo-bar {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  height: 100%;
  padding-left: 8px;
  background: var(--paper);
  text-decoration: none;
}

.site-logo-bar img {
  display: block;
  height: 57px;
  width: auto;
}

.nav-icons {
  display: flex;
  align-items: stretch;
  height: 100%;
  background: #d6d6d6;
}

.global-nav a.nav-icon {
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 100%;
  padding: 0 8px;
  color: var(--ink);
  background: none;
}

.nav-icons .nav-icon:first-child {
  padding-left: 24px;
}

.nav-icons .nav-icon:last-child {
  padding-right: 24px;
}

.nav-icon svg {
  display: block;
}

.menu-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 64px;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  overflow-y: auto;
  padding: 96px 28px 60px;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
}

.site-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.site-menu-overlay-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.menu-list,
.menu-list-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list {
  margin-top: 16px;
  border-top: 1px solid rgba(31, 36, 33, 0.14);
}

.menu-list li {
  border-bottom: 1px solid rgba(31, 36, 33, 0.14);
}

.menu-list a {
  display: block;
  padding: 13px 4px 13px 1em;
  color: var(--ink);
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.menu-list a:hover {
  opacity: 0.6;
}

.menu-list-item-with-sub {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 34px;
}

.menu-list-item-with-sub > a {
  padding-right: 0;
}

.menu-list-subitems {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.menu-list-subitems a {
  color: rgba(31, 36, 33, 0.6);
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: none;
}

.menu-list-subitems a:hover {
  color: var(--ink);
}

.menu-list-sub-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 3px;
  color: rgba(31, 36, 33, 0.66);
}

.menu-list-sub-icon:hover {
  color: var(--ink);
}

.menu-list-sub-icon svg {
  display: block;
}

.menu-list-sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 32px;
  padding-left: 1.9rem;
}

.menu-list-sub a {
  color: rgba(31, 36, 33, 0.66);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.menu-list-sub a:hover {
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

.home-hero {
  padding: 0 0 28px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 28px);
  overflow: hidden;
  background: #ddd6cb;
}

.hero-visual,
.hero-visual img,
.hero-visual video {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 28px);
}

.hero-visual img,
.hero-visual video {
  object-fit: cover;
  background: #d8d1c6;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 42px;
  z-index: 1;
  height: 104px;
  width: auto;
  margin-left: -5.5px;
  filter: brightness(0) invert(1);
}

.hero-brand {
  position: absolute;
  left: 42px;
  bottom: 44px;
  z-index: 1;
  color: #fff;
}

.hero-brand p,
.panel-label,
.image-tile span:not(.tile-arrow) {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.hero-brand h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.9rem;
  line-height: 1.05;
  font-weight: 400;
}

.hero-topics {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  width: min(520px, calc(100% - 64px));
  padding: 22px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hero-topics .panel-label {
  color: var(--accent);
  margin-bottom: 8px;
}

.topic-link {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.topic-link time {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.topic-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tile-section {
  padding: 28px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
}

.image-tile {
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  background: #cfc7ba;
  border-radius: 8px;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
  background: #d8d1c6;
}

.tile-slideshow {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.tile-slideshow .tile-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tile-slideshow .tile-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d8d1c6;
}

.image-tile:hover img {
  transform: scale(1.045);
}

.image-tile span,
.image-tile strong {
  position: relative;
  z-index: 1;
}

.tile-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.tile-title {
  display: block;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tile-large .tile-title {
  font-size: 2.15rem;
}

.tile-arrow {
  display: block;
  width: 100%;
  height: 18px;
  margin-top: 1px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) left calc(100% - 1.5px) / calc(100% - 2px) 1.3px no-repeat,
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgPGxpbmUgeDE9IjIiIHkxPSIyIiB4Mj0iMTYiIHkyPSIxNiIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utb3BhY2l0eT0iMC45MiIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K") right bottom / 18px 18px no-repeat;
  transition: transform 0.32s ease;
}

.tile-arrow::after {
  content: none;
}

.image-tile:hover .tile-arrow {
  transform: translateX(8px);
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.tile-social .tile-title {
  max-width: 78%;
  font-size: 1.35rem;
}

.access-map-tile {
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
  background: #ded8ce;
  border-radius: 8px;
}

.access-map-tile iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  filter: grayscale(0.15);
}

.contact-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #241f8f 0%, #2f6fd0 55%, #2ec7c2 100%);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: opacity 0.25s ease;
}

.contact-tile--line {
  background-image: linear-gradient(135deg, #06b755 0%, #05c46b 55%, #7bf1a8 100%);
}

.contact-tile.has-image::before {
  content: none;
}

.contact-tile.has-image .contact-tile-icon,
.contact-tile.has-image .contact-tile-label {
  display: none;
}

.contact-tile-icon,
.contact-tile-label {
  position: relative;
  z-index: 1;
}

.contact-tile:hover {
  opacity: 0.88;
}

.contact-tile-icon {
  display: block;
}

.contact-tile-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-tile-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 4px;
}

.page-section,
.page-content,
.post-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 116px 40px 84px;
}

.shop-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 116px 40px 84px;
}

.page-title {
  margin: 0 0 2rem;
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 500;
}

.site-footer {
  position: relative;
  padding: 56px 34px 28px !important;
  color: #fff;
  background: #0d0f0e;
  font-size: 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo-img {
  display: block;
  height: 84px !important;
  width: auto;
  margin-left: -4.4px;
  filter: brightness(0) invert(1);
}

.footer-office {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem !important;
  line-height: 1.9;
}

.footer-office-name {
  margin: 0 0 3px;
  color: #fff;
  font-weight: 400;
  font-size: 0.95rem !important;
}

.footer-office-title {
  margin: 0;
  font-weight: 400;
}

.footer-office p {
  margin: 0;
  font-size: inherit !important;
}

.footer-office small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  justify-content: flex-end;
  padding-left: 8%;
  margin-top: 108px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-col > * + * {
  margin-top: 22px;
}

.footer-nav-col > a:not(.footer-nav-subitem),
.footer-nav-heading {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-decoration: none;
}

.footer-nav-subitem {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 0.86rem !important;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  text-decoration: none;
}

.footer-nav-subitem + .footer-nav-subitem {
  margin-top: 7px;
}

.footer-nav a:hover {
  opacity: 0.75;
}

.copyright {
  max-width: 1240px;
  margin: 40px auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-align: right;
}

/* ==========================================================================
   Back to top button
   ========================================================================== */

.back-to-top-row {
  display: flex;
  justify-content: center;
  overflow: visible;
  padding: 12px 0 28px;
}

.back-to-top-row--home {
  padding-top: 56px;
}

.back-to-top {
  display: block;
  width: 68px;
  height: 68px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.back-to-top img {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(1);
}

/* ==========================================================================
   WooCommerce
   ========================================================================== */

.woocommerce-breadcrumb {
  margin: 0 0 32px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.woocommerce-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  color: var(--ink);
}

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  list-style: none;
  margin: 0 0 24px;
  padding: 16px 20px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.woocommerce-error {
  border-color: #c0503f;
  color: #8a3a2d;
}

/* Shop archive / product loop */

ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.products li.product {
  position: relative;
  display: block;
  text-decoration: none;
}

ul.products li.product a {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

ul.products li.product img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 0 14px;
  background: #d8d1c6;
  border-radius: 6px;
}

ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 6px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

ul.products li.product .price {
  display: block;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

ul.products li.product .price ins {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

ul.products li.product .price del {
  margin-right: 8px;
  color: var(--muted);
  opacity: 0.7;
}

ul.products li.product .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 10px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--ink);
  border-radius: 4px;
}

ul.products li.product .button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

ul.products li.product .button:hover {
  color: #fff;
  background: var(--ink);
}

.woocommerce-result-count,
.woocommerce-ordering {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.woocommerce-ordering select {
  padding: 6px 10px;
  font-family: Arial, sans-serif;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.woocommerce-pagination .current {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

/* Single product */

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce div.product .woocommerce-product-gallery img {
  width: 100%;
  border-radius: 8px;
  background: #d8d1c6;
}

.woocommerce div.product .summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce div.product .product_title {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  line-height: 1.8;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.woocommerce div.product .quantity {
  display: inline-flex;
}

.woocommerce div.product .quantity .qty {
  width: 64px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.woocommerce div.product .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--ink);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  opacity: 0.85;
  color: #fff;
}

.woocommerce div.product .product_meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 56px;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 28px;
  margin: 0 0 24px;
  padding: 0 0 12px;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.woocommerce-tabs ul.tabs li a {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--ink);
}

.related.products {
  grid-column: 1 / -1;
  margin-top: 56px;
}

.related.products > h2 {
  margin: 0 0 24px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Cart & checkout */

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
}

.woocommerce-cart table.shop_table img {
  width: 64px;
  border-radius: 4px;
}

.woocommerce-cart .quantity .qty {
  width: 56px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.cart-collaterals .cart_totals {
  max-width: 420px;
  margin-left: auto;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart_totals h2 {
  margin: 0 0 16px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
}

.wc-proceed-to-checkout a.checkout-button {
  display: flex;
  width: 100%;
  margin-top: 12px;
}

.woocommerce-checkout #payment {
  margin-top: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 12px 14px;
  font-family: Arial, sans-serif;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

#order_review_heading,
#order_review {
  margin-top: 24px;
}

.star-rating {
  color: var(--accent);
}

/* Header cart icon */

.nav-cart-link {
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-cart-link svg {
  display: block;
}

.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  background: #fff;
  border-radius: 50%;
}

/* ==========================================================================
   Concept page
   ========================================================================== */

.concept-page {
  padding-top: 64px;
}

.concept-page-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 40px 0;
}

.concept-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: #9cc0d9;
}

.concept-hero-parallax {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.concept-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4));
}

.concept-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 64px 48px;
  color: #fff;
}

.works-hero-inner {
  max-width: 100%;
  width: 100%;
  text-align: center;
  color: var(--ink);
}

.works-hero::after {
  background: rgba(255, 255, 255, 0.1);
}

.concept-hero-inner h1.works-hero-title {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.concept-hero-inner p.works-hero-subtitle {
  margin: 40px 0 0;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.concept-hero-label {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.concept-hero-inner h1 {
  margin: 18px 0 32px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.5;
}

.concept-hero-inner p {
  margin: 0 0 20px;
  font-size: 1.12rem;
  line-height: 2;
}

.concept-mark {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 140px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up-delay {
  transition-delay: 0.15s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   WORKS page
   ========================================================================== */

.works-page {
  padding-top: 64px;
}

.works-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  text-align: center;
}

.works-intro h1 {
  margin: 18px 0 0;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.works-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px 160px;
}

.works-item {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.works-item:last-child {
  border-bottom: none;
}

.works-item-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
}

.works-item-index {
  align-self: center;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 6.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.works-item-label {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0 0 20px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 6.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-spacing: 0.35em;
  line-height: 0.95;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-140px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.works-item-inner h2 {
  grid-column: 2;
  margin: 6px 0 20px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-140px);
  transition: opacity 0.7s ease 0.85s, transform 0.7s ease 0.85s;
}

.works-item-inner p:not(.works-item-label) {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.85;
  opacity: 0;
  transform: translateX(-140px);
  transition: opacity 0.7s ease 1.25s, transform 0.7s ease 1.25s;
}

.works-item-inner.is-visible .works-item-index,
.works-item-inner.is-visible .works-item-label,
.works-item-inner.is-visible h2,
.works-item-inner.is-visible p:not(.works-item-label) {
  opacity: 1;
  transform: translate(0, 0);
}

.concept-mark-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #f4f1ea;
}

.concept-mark-body {
  margin-top: -102px;
}

.concept-mark-heading {
  margin: 0 0 20px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
}

.concept-mark-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 2.1;
}

.concept-pillars {
  display: flex;
  flex-direction: column;
  gap: 170px;
  padding-bottom: 140px;
}

.concept-pillar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0 48px;
  align-items: center;
}

.concept-pillar--reverse .concept-pillar-media {
  order: 2;
}

.concept-pillar--reverse .concept-pillar-body {
  order: 1;
}

.concept-pillar--reverse .concept-pillar-head {
  grid-column: 2;
}

.concept-pillar-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 0;
}

.concept-pillar-index {
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.concept-pillar-label {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.concept-pillar-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #d8d1c6;
}

.concept-pillar-body h4 {
  margin: 0 0 18px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.7;
}

.concept-pillar-body p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.concept-pillar--value {
  display: block;
}

.concept-value-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.concept-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.concept-value-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #d8d1c6;
}

.concept-value-item h4 {
  margin: 0 0 14px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.concept-value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

/* ==========================================================================
   Brand page: brand list
   ========================================================================== */

.brand-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 40px 140px;
}

.brand-list-heading {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.product-intro {
  margin: -50px 0 44px;
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 2;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.brand-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d1c6;
  text-decoration: none;
}

.brand-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.brand-item:not(.brand-item--static):hover img {
  transform: scale(1.05);
}

.brand-item--static {
  cursor: default;
}

/* ==========================================================================
   COMPANY page
   ========================================================================== */

.company-page-title {
  margin: 0 0 100px;
  text-align: center;
  font-family: "Montserrat", "Poppins", "Avenir Next", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.company-section-heading {
  margin: 0 0 40px;
  text-align: center;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.company-message-heading {
  margin-top: -40px;
  margin-bottom: 100px;
  font-size: 1.1rem;
}

.company-message {
  margin-bottom: 160px;
}

.company-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.company-message-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f1ea;
}

.company-message-quote {
  margin: 0 0 24px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.6;
}

.company-message-body p:not(.company-message-quote) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.company-message-signature {
  max-width: 1000px;
  margin: 32px auto 0;
  padding-left: calc(30% + 56px);
  text-align: right;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.8;
}

.company-info {
  margin-top: 60px;
  margin-bottom: 140px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px max(40px, calc(50vw - 500px));
  background: rgba(164, 134, 88, 0.07);
}

.company-history {
  margin-top: 60px;
  margin-bottom: 140px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.company-table tr {
  border-bottom: 1px solid var(--line);
}

.company-table th,
.company-table td {
  padding: 22px 20px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  vertical-align: top;
}

.company-table th {
  width: 220px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

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

/* ==========================================================================
   Product detail page
   ========================================================================== */

.product-detail-title {
  margin: 0 0 48px;
  text-align: center;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.product-detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f1ea;
  margin-bottom: 120px;
}

.product-detail-section {
  margin-bottom: 120px;
}

.product-detail-lead {
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.product-detail-gallery figure {
  margin: 0;
}

.product-detail-gallery img,
.product-detail-single-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #f4f1ea;
}

.product-detail-single-image {
  max-width: 780px;
  margin: 0 auto;
}

.product-detail-cta {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 40px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--ink);
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
}

.product-detail-banner-link {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.product-detail-banner-link img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #f4f1ea;
  transition: opacity 0.2s ease;
}

.product-detail-banner-link:hover img {
  opacity: 0.85;
}

.product-detail-back a:hover {
  color: var(--ink);
}

/* ==========================================================================
   Simple placeholder pages (e.g. RECRUIT "coming soon")
   ========================================================================== */

.simple-page {
  padding-top: 64px;
}

.simple-page-inner {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.simple-page-card {
  width: 100%;
  padding: 64px 48px;
  background: #fff;
  border-radius: 16px;
}

.simple-page-inner .panel-label {
  justify-content: center;
}

.simple-page-inner h1 {
  margin: 18px 0 24px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.simple-page-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

/* ==========================================================================
   omoikane brand page
   ========================================================================== */

.omoikane-page {
  padding-top: 64px;
}

.omoikane-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  background: #000;
}

.omoikane-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.omoikane-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.omoikane-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 4.4rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.omoikane-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
}

.omoikane-intro-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f1ea;
}

.omoikane-intro-body h2 {
  margin: 0 0 24px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.omoikane-intro-body p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 2.05;
}

.omoikane-intro-body p:last-child {
  margin-bottom: 0;
}

/* Dark full-bleed feature section (image + text), modeled on the LVMH "ICON" layout */

.omoikane-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 560px;
  margin: 80px 40px;
  background: #0d0f0e;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.omoikane-feature-media {
  position: relative;
  min-height: 360px;
}

.omoikane-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.omoikane-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px 64px 40px;
}

.omoikane-feature-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.omoikane-feature-body h2 {
  margin: 0 0 24px;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.omoikane-feature-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 2.05;
}

/* Carousels: circular peek carousel, JS-driven transform + fade (see theme.js) */

.omoikane-carousel-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.omoikane-carousel-heading {
  margin: 0 0 40px;
  padding: 0 40px;
  text-align: center;
  font-family: "Avenir Next", "Avenir", "Poppins", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.omoikane-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.omoikane-carousel-track {
  display: flex;
  align-items: center;
  gap: 32px;
}

.omoikane-carousel-slide {
  flex: 0 0 48%;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.omoikane-carousel-slide img,
.omoikane-carousel-slide a {
  display: block;
}

.omoikane-carousel-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f1ea;
}

.omoikane-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.omoikane-carousel-arrow--prev {
  left: 20%;
}

.omoikane-carousel-arrow--next {
  right: 20%;
}

.omoikane-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1120px) {
  .global-nav ul {
    padding: 0 20px;
    gap: 14px;
  }

  .hero-brand h2 {
    font-size: 3.2rem;
  }

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

  ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 899px) {
  .global-nav ul {
    gap: 10px;
    padding: 0 14px;
  }

  .global-nav a {
    font-size: 0.7rem;
  }
}

@media (max-width: 760px) {
  .product-detail-title {
    margin-bottom: 32px;
    font-size: 1.5rem;
  }

  .product-detail-hero img {
    margin-bottom: 64px;
  }

  .product-detail-section {
    margin-bottom: 64px;
  }

  .product-detail-gallery {
    gap: 20px;
  }

  .simple-page {
    padding-top: 46px;
  }

  .simple-page-inner {
    min-height: calc(100vh - 46px);
    padding: 56px 24px;
  }

  .simple-page-card {
    padding: 40px 24px;
  }

  .simple-page-inner h1 {
    font-size: 1.5rem;
  }

  .company-page-title {
    margin-bottom: 56px;
    font-size: 2.4rem;
  }

  .company-section-heading {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .company-message {
    margin-bottom: 88px;
  }

  .company-message-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-message-photo img {
    aspect-ratio: 4 / 3;
  }

  .company-message-quote {
    font-size: 1.2rem;
  }

  .company-message-signature {
    padding-left: 0;
    text-align: right;
  }

  .company-info {
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 28px 20px;
  }

  .company-history {
    margin-top: 32px;
    margin-bottom: 72px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: auto;
    padding: 10px 0;
  }

  .company-table th {
    padding-bottom: 0;
    border-bottom: none;
  }

  .company-table tr {
    display: block;
    padding: 16px 0;
  }

  .works-page {
    padding-top: 46px;
  }

  .works-intro {
    padding: 64px 20px 56px;
  }

  .works-intro h1 {
    font-size: 1.7rem;
  }

  .works-items {
    padding: 32px 20px 88px;
  }

  .works-item {
    padding: 64px 0;
  }

  .works-item-inner {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .works-item-index {
    font-size: 4rem;
  }

  .works-item-label {
    grid-column: 1;
    grid-row: auto;
    margin-top: 4px;
    margin-bottom: 10px;
    font-size: 3rem;
  }

  .works-item-inner h2,
  .works-item-inner p:not(.works-item-label) {
    grid-column: 1;
  }

  .works-item-inner h2 {
    margin: 4px 0 14px;
    font-size: 1.4rem;
  }

  .works-item-inner p:not(.works-item-label) {
    font-size: 1.05rem;
  }

  .omoikane-page {
    padding-top: 46px;
  }

  .omoikane-hero {
    min-height: 420px;
  }

  .omoikane-hero-title {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
  }

  .omoikane-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 20px;
  }

  .omoikane-intro-body h2 {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }

  .omoikane-feature {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 48px 16px;
  }

  .omoikane-feature-media {
    min-height: 240px;
  }

  .omoikane-feature-body {
    padding: 64px 20px;
  }

  .omoikane-feature-body h2 {
    font-size: 1.4rem;
  }

  .omoikane-carousel-section {
    padding: 56px 0;
  }

  .omoikane-carousel-heading {
    padding: 0 20px;
    margin-bottom: 24px;
    font-size: 1.4rem;
  }

  .omoikane-carousel {
    max-width: 100%;
    padding: 0 16px;
  }

  .omoikane-carousel-track {
    gap: 16px;
  }

  .omoikane-carousel-slide {
    flex-basis: 68%;
  }

  .omoikane-carousel-arrow {
    width: 48px;
    height: 48px;
  }

  .omoikane-carousel-arrow--prev {
    left: 16%;
  }

  .omoikane-carousel-arrow--next {
    right: 16%;
  }

  .site-header {
    height: 46px;
  }

  .nav-item-contact {
    display: none;
  }

  .nav-home-logo {
    padding: 0 8px;
  }

  .nav-home-logo img {
    height: 16px;
  }

  .global-nav ul {
    gap: 10px;
    padding: 0 8px 0 0;
  }

  .global-nav a {
    min-height: 32px;
    font-size: 0.56rem;
  }

  .nav-icons .nav-icon:first-child {
    padding-left: 12px;
  }

  .nav-icons .nav-icon:last-child {
    padding-right: 12px;
  }

  .global-nav a.nav-icon {
    min-width: 30px;
    padding: 0 4px;
  }

  .nav-icon svg {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    width: 46px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .site-menu-overlay {
    padding: 66px 20px 40px;
  }

  .menu-list a {
    padding: 12px 4px 12px 1em;
    font-size: 1.4rem;
  }

  .menu-list-item-with-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .menu-list-subitems {
    gap: 3px 10px;
    padding-left: 1em;
  }

  .menu-list-subitems a {
    font-size: 0.62rem;
  }

  .home-hero {
    padding: 0 0 14px;
  }

  .hero-stage,
  .hero-visual,
  .hero-visual img,
  .hero-visual video {
    min-height: 620px;
  }

  .hero-brand {
    left: 16px;
    right: 16px;
    bottom: 108px;
  }

  .hero-logo {
    top: 6px;
    left: 16px;
    height: 40px;
    margin-left: -2.1px;
  }

  .site-logo-bar {
    padding-left: 4px;
  }

  .site-logo-bar img {
    height: 42px;
  }

  .hero-brand h2 {
    font-size: 0.95rem;
  }

  .hero-topics {
    top: auto;
    bottom: 14px;
    right: 14px;
    left: 14px;
    width: auto;
    padding: 8px 10px;
  }

  .hero-topics .panel-label {
    font-size: 0.62rem;
  }

  .topic-link {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 4px 0;
  }

  .topic-link time {
    font-size: 0.6rem;
  }

  .topic-link span {
    font-size: 0.74rem;
  }

  .tile-section {
    padding: 14px;
  }

  .tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .image-tile {
    min-height: 0;
    padding: 14px;
  }

  .tile-large {
    grid-row: span 1;
  }

  .tile-title,
  .tile-large .tile-title {
    font-size: 1.05rem;
  }

  .page-section,
  .shop-section,
  .page-content,
  .post-content {
    padding: 96px 18px 64px;
  }

  .page-title {
    font-size: 2.3rem;
  }

  .concept-page {
    padding-top: 46px;
  }

  .concept-page-inner {
    padding: 64px 20px 0;
  }

  .concept-hero {
    min-height: 420px;
  }

  .brand-hero .concept-hero-parallax {
    background-position: left center;
  }

  .concept-hero-inner {
    padding: 40px 24px;
  }

  .concept-hero-inner h1 {
    font-size: 1.7rem;
  }

  .concept-hero-inner h1.works-hero-title {
    font-size: 4rem;
  }

  .concept-hero-inner p.works-hero-subtitle {
    margin-top: 22px;
    font-size: 1.3rem;
  }

  .concept-mark {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }

  .concept-mark-body {
    margin-top: -78px;
  }

  .concept-mark-heading {
    margin: 0 0 14px;
    font-size: 1.2rem;
  }

  .concept-pillars {
    gap: 96px;
    padding-bottom: 88px;
  }

  .concept-pillar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .concept-pillar-body {
    margin-top: 20px;
  }

  .concept-pillar--reverse .concept-pillar-media,
  .concept-pillar--reverse .concept-pillar-body {
    order: 0;
  }

  .concept-pillar--reverse .concept-pillar-head {
    grid-column: 1;
  }

  .concept-pillar-label {
    font-size: 1.5rem;
  }

  .concept-value-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .brand-list {
    padding: 64px 20px 88px;
  }

  .brand-list-heading {
    font-size: 1.7rem;
    margin-bottom: 28px;
  }

  .product-intro {
    margin: -24px 0 32px;
    font-size: 1rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.86rem;
  }

  .woocommerce div.product .product_title {
    font-size: 1.5rem;
  }

  .woocommerce-cart table.shop_table th,
  .woocommerce-cart table.shop_table td,
  .woocommerce-checkout table.shop_table th,
  .woocommerce-checkout table.shop_table td {
    padding: 10px 6px;
    font-size: 0.76rem;
  }

  .cart-collaterals .cart_totals {
    max-width: none;
  }

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

  .site-footer {
    padding: 46px 18px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-img {
    height: 34px;
    margin-left: -1.8px;
  }

  .footer-nav {
    display: none;
  }
}
