@charset "UTF-8";

/* ==========================================================
   TOKENS
========================================================== */
:root {
  --color-white: #ffffff;
  --color-base: #f8faf9;
  --color-surface: #f4f7f7;
  --color-text: #172a32;
  --color-body: #40545c;
  --color-muted: #667980;
  --color-accent: #006b7d;
  --color-accent-dark: #064756;
  --color-product-blue: #2458b8;
  --color-line: #d7e0e2;
  --color-water: #eaf3f5;
  --color-footer: #102c36;
  --color-dark-surface: #102c36;
  --color-dark-text: #f7fafa;
  --color-dark-body: #d6e0e2;
  --color-dark-accent: #83b9c2;

  --font-en: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
  --font-heading-ja: "Noto Serif JP", "Hiragino Mincho ProN",
    "Yu Mincho", serif;
  --font-impact-ja: "Yuji Boku", "Yu Mincho", serif;

  --site-padding: clamp(24px, 5vw, 84px);
  --section-space: clamp(88px, 9vw, 160px);
  --content-width: 1800px;

  /* Fluid type scale: 1181px and above */
  --type-page-title: clamp(64px, 5.2vw, 88px);
  --type-major-heading: clamp(56px, 4.5vw, 72px);
  --type-section-heading: clamp(40px, 3.3vw, 52px);
  --type-card-heading: clamp(26px, 2vw, 34px);
  --type-kicker: clamp(14px, 0.95vw, 16px);
  --type-body: clamp(16px, 1.1vw, 18px);
  --type-nav-ja: clamp(14px, 1vw, 16px);
  --type-nav-en: clamp(10px, 0.7vw, 12px);
}

/* ==========================================================
   RESET
========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */
.section-kicker {
  display: block;
  margin-bottom: clamp(24px, 2.1vw, 40px);
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: var(--type-kicker);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-kicker--line::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 32px;
  background: var(--color-accent);
}

.display-title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--color-accent-dark);
}

.display-title__line,
.text-line {
  display: block;
}

.display-title__line {
  font-family: var(--font-heading-ja);
}

/*
  PCでは意図しない改行を禁止。
  HTML側のspan単位でのみ改行します。
*/
@media (min-width: 961px) {
  .display-title__line,
  .text-line,
  .jp-heading,
  .editorial-hero__title,
  .subpage-hero__title,
  .service-section__content > h2,
  .shop-card h2,
  .product-card h3,
  .craft-card h3,
  .brand-notes h3,
  .service-section__note h3,
  .status-guide h3,
  .region-card h3 {
    white-space: nowrap;
  }

  :is(
    html.translated-ltr,
    html.translated-rtl,
    html:not([lang^="ja"]),
    body.translated-ltr,
    body.translated-rtl
  ) :is(
    .display-title__line,
    .text-line,
    .jp-heading,
    .editorial-hero__title,
    .subpage-hero__title,
    .service-section__content > h2,
    .shop-card h2,
    .product-card h3,
    .craft-card h3,
    .brand-notes h3,
    .service-section__note h3,
    .status-guide h3,
    .region-card h3
  ) {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
  }
}

.display-title--hero {
  font-size: var(--type-page-title);
  font-family: var(--font-heading-ja);
}

.display-title--philosophy {
  font-size: var(--type-major-heading);
}

.jp-heading {
  margin: 0;
  font-family: var(--font-heading-ja);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.45;
  color: var(--color-text);
}

.jp-heading--large {
  font-size: var(--type-major-heading);
}

.jp-heading--medium {
  margin-top: 0;
  font-size: var(--type-section-heading);
}

.jp-heading--commitment {
  font-size: var(--type-major-heading);
  line-height: 1.5;
}

.jp-heading--global {
  font-size: var(--type-major-heading);
}

.jp-heading--news {
  font-size: var(--type-section-heading);
}

.body-copy {
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 2;
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 1.4em;
}

/* ==========================================================
   BUTTON
========================================================== */
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 210px;
  margin-top: clamp(34px, 3vw, 58px);
  padding: 18px 28px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.outline-button:hover {
  color: var(--color-white);
  background: var(--color-accent);
}

.outline-button--wide {
  min-width: 290px;
}

/* ==========================================================
   HEADER
========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px var(--site-padding);
  background: transparent;
  border-bottom: 1px solid transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    transition:
      background-color 320ms ease,
      border-color 320ms ease,
      box-shadow 320ms ease,
      color 320ms ease,
      backdrop-filter 320ms ease;
  }
}

.site-logo {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 54px;
  line-height: 1;
}

.site-logo::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  aspect-ratio: 1;
  background: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  filter: brightness(0) saturate(100%);
  transform: translateY(-50%);
  content: "";
}

.site-logo__ja {
  font-family: var(--font-heading-ja);
  font-size: clamp(24px, 1.75vw, 28px);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-logo__en {
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 700;
  letter-spacing: 0.32em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 30px);
}

.site-language-switcher {
  display: flex;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-language-switcher select {
  width: 96px !important;
  min-height: 32px;
  padding: 4px 22px 4px 7px !important;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background-color: transparent;
  font-size: 10px !important;
  line-height: 1.2;
  cursor: pointer;
}

.site-language-switcher select option {
  color: var(--color-text);
  background: var(--color-white);
}

.site-language-switcher .gt_float_switcher {
  width: auto !important;
  min-width: 0 !important;
  border: 1px solid currentColor !important;
  border-radius: 0 !important;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 10px !important;
}

.site-language-switcher .gt_float_switcher .gt-selected {
  background: transparent !important;
}

.site-language-switcher .gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px 8px !important;
  color: inherit !important;
}

.site-language-switcher .gt_float_switcher img {
  width: 17px !important;
  height: auto !important;
  margin-right: 5px !important;
}

.site-language-switcher .gt_float_switcher .gt_options a {
  display: flex !important;
  align-items: center;
  padding: 6px 8px !important;
  color: var(--color-text) !important;
  background: var(--color-white) !important;
  font-size: 10px !important;
}

.site-language-switcher .gt_float_switcher .gt_options.gt-open {
  min-width: 132px !important;
  max-width: 200px !important;
  max-height: 240px !important;
  overflow-y: auto !important;
  visibility: visible !important;
}

.site-header__right,
.global-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 30px);
}

.site-header__right {
  margin-left: auto;
}

.site-menu-toggle {
  display: none;
}

.global-nav__item {
  display: flex;
  min-width: 58px;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.global-nav__ja {
  font-family: var(--font-ja);
  font-size: var(--type-nav-ja);
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.global-nav__en {
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: var(--type-nav-en);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
}

.global-nav__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.global-nav__button-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

@media (min-width: 961px) {
  .global-nav__button .global-nav__ja {
    font-size: calc(var(--type-nav-ja) - 2px);
  }

  .global-nav__button .global-nav__en {
    font-size: calc(var(--type-nav-en) - 2px);
  }
}

.global-nav__icon {
  box-sizing: content-box;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.global-nav__contact {
  color: var(--color-white);
  background: var(--color-accent-dark);
  border: 1px solid var(--color-accent-dark);
}

.global-nav__contact .global-nav__icon {
  border-color: rgba(255, 255, 255, 0.25);
}

.global-nav__shop {
  border: 1px solid currentColor;
}

.global-nav__shop .global-nav__icon {
  color: var(--color-accent-dark);
  border-color: rgba(0, 107, 125, 0.2);
}

.global-nav__button:hover .global-nav__icon {
  transform: translateY(-1px);
}

.global-nav__shop:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.global-nav__shop:hover .global-nav__en {
  color: rgba(255, 255, 255, 0.72);
}

.global-nav__shop:hover .global-nav__icon {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.global-nav__contact:hover {
  color: var(--color-accent-dark);
  background: var(--color-white);
}

.global-nav__contact:hover .global-nav__icon {
  color: var(--color-accent-dark);
  background: rgba(0, 107, 125, 0.07);
  border-color: rgba(0, 107, 125, 0.2);
}

.global-nav__contact:hover .global-nav__en,
.site-header--subpage .global-nav__contact:hover .global-nav__en {
  color: var(--color-muted);
}

/* ==========================================================
   HERO
========================================================== */
.hero-sequence {
  position: relative;
}

.hero-sequence__sticky {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-water);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-color: var(--color-water);
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.32) 30%,
      rgba(255, 255, 255, 0.08) 58%,
      rgba(255, 255, 255, 0) 100%
    ),
    var(--hero-image-pc, url("../images/hero-kiragiku-composite.webp"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(62vw, 1150px);
  padding: 150px var(--site-padding) 80px;
}

.hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 90px -6% 24px 0;
  background: radial-gradient(
    ellipse at 28% 50%,
    rgba(255, 255, 255, 0.54) 0%,
    rgba(255, 255, 255, 0.28) 52%,
    rgba(255, 255, 255, 0) 78%
  );
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  -webkit-mask-image: radial-gradient(
    ellipse at 28% 50%,
    #000 0%,
    rgba(0, 0, 0, 0.88) 54%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse at 28% 50%,
    #000 0%,
    rgba(0, 0, 0, 0.88) 54%,
    transparent 80%
  );
  pointer-events: none;
}

.hero__lead {
  margin: clamp(40px, 4vw, 72px) 0 0;
  font-family: var(--font-heading-ja);
  font-size: clamp(27px, 2.3vw, 44px);
  font-weight: 600;
  line-height: 1.75;
}

.hero__scroll {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  transform: translateX(-50%);
}

.hero__scroll-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero__scroll-icon {
  width: 18px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.motion-enabled .hero__scroll-icon {
  animation: hero-scroll-bounce 1900ms ease-in-out infinite;
}

.hero-pin-ready .hero__scroll {
  opacity: calc(1 - var(--hero-reveal, 0));
}

/* ==========================================================
   HERO PIN + REVEAL
   FVを画面に固定し、スクロールでテキストを表示。
   さらにスクロールすると次のセクションが上から覆いかぶさる。
========================================================== */
@media (min-width: 961px) and (min-height: 720px) {
  .hero-pin-ready .hero-sequence {
    height: 260svh;
  }

  .hero-pin-ready .hero-sequence__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
  }

  .hero-pin-ready .hero__content {
    opacity: var(--hero-reveal, 0);
    transform: translate3d(0, calc((1 - var(--hero-reveal, 0)) * 26px), 0);
  }

  .hero-pin-ready .philosophy {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
    box-shadow: 0 -40px 90px rgba(6, 22, 28, 0.16);
    will-change: transform;
  }
}

/* ==========================================================
   COMMON SECTION
========================================================== */
.section {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

/* ==========================================================
   PHILOSOPHY
========================================================== */
.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 4.5vw, 84px);
  min-height: auto;
  padding:
    var(--section-space)
    var(--site-padding);
  background: var(--color-white);
}

.philosophy__content {
  min-width: 0;
  padding: 0;
}

.philosophy .section-kicker {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.4vw, 20px);
  margin-bottom: clamp(24px, 2.5vw, 36px);
  font-size: var(--type-kicker);
  letter-spacing: 0.18em;
}

.philosophy .section-kicker::after {
  content: "";
  width: clamp(40px, 4vw, 64px);
  height: 1px;
  background: var(--color-accent);
}

.philosophy .jp-heading--medium {
  margin-top: 0;
  font-size: var(--type-section-heading);
  line-height: 1.65;
}

.philosophy__content .body-copy {
  max-width: 560px;
  margin-top: clamp(32px, 3vw, 48px);
  font-size: var(--type-body);
  line-height: 2.05;
}

.philosophy__content .body-copy p + p {
  margin-top: 1.65em;
}

.philosophy__media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 2;
  background-color: var(--color-surface);
  background-image: url("../images/kiragiku-premium-pour.webp");
  background-position: center center;
  background-size: cover;
}

/* ==========================================================
   COLLECTION
========================================================== */
.collection {
  padding:
    var(--section-space)
    var(--site-padding);
}

.collection__header {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
  margin-bottom: clamp(54px, 5vw, 88px);
}

.collection__header .section-kicker {
  flex: 0 0 auto;
  margin-bottom: 0;
  font-size: var(--type-kicker);
  letter-spacing: 0.18em;
}

.collection__header-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-accent) 24%,
    var(--color-line) 24%,
    var(--color-line) 100%
  );
}

.collection__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 3vw, 56px);
}

.collection__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(58px, 6vw, 96px);
}

.collection__action .outline-button {
  margin-top: 0;
}

.product-card {
  min-width: 0;
}

.product-card__media {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-surface);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__media--01 {
  background-image: url("../images/product-01.webp");
}

.product-card__media--02 {
  background-image: url("../images/product-02.webp");
}

.product-card__media--03 {
  background-image: url("../images/product-03.webp");
}

.product-card__media--04 {
  background-image: url("../images/product-04.webp");
}

.product-card h3 {
  margin: 28px 0 8px;
  font-family: var(--font-heading-ja);
  font-size: var(--type-card-heading);
  font-weight: 600;
}

.product-card p {
  margin: 0;
  color: var(--color-body);
  font-size: var(--type-body);
  line-height: 1.8;
}

/* ==========================================================
   OUR STORY
========================================================== */
.origin-story,
.growing {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
  align-items: center;
  padding: clamp(72px, 7vw, 120px) var(--site-padding);
  border-top: 1px solid var(--color-line);
}

.origin-story__content,
.growing__content {
  min-width: 0;
  padding-right: clamp(32px, 3vw, 54px);
}

.origin-story .section-kicker,
.craftsmanship .section-kicker,
.growing .section-kicker {
  margin-bottom: clamp(26px, 2.5vw, 38px);
  font-size: var(--type-kicker);
  letter-spacing: 0.18em;
}

.origin-story__content .body-copy,
.growing__content .body-copy {
  max-width: 680px;
  margin-top: clamp(32px, 3.4vw, 52px);
}

.origin-story__media,
.growing__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--color-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.origin-story__media {
  background-image: url("../images/commitment-04-brewery.webp");
}

/* ==========================================================
   CRAFTSMANSHIP
========================================================== */
.craftsmanship {
  padding: clamp(76px, 7.5vw, 132px) var(--site-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--color-dark-surface);
}

.craftsmanship__heading {
  max-width: 880px;
  margin-bottom: clamp(50px, 5vw, 84px);
}

.craftsmanship .section-kicker {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.4vw, 20px);
  color: var(--color-dark-accent);
}

.craftsmanship .section-kicker::after {
  content: "";
  width: clamp(40px, 4vw, 64px);
  height: 1px;
  background: var(--color-dark-accent);
}

.craftsmanship .jp-heading--large {
  color: var(--color-dark-text);
  font-size: var(--type-major-heading);
  line-height: 1.55;
}

.craftsmanship__heading .body-copy {
  margin-top: clamp(32px, 3vw, 48px);
  color: var(--color-dark-body);
}

.craftsmanship__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 36px);
}

.craft-card {
  min-width: 0;
}

.craft-card__media {
  aspect-ratio: 4 / 3;
  background-color: var(--color-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.craft-card__media--water {
  background-image: url("../images/commitment-02-water.webp");
}

.craft-card__media--brewing {
  background-image: url("../images/commitment-03-brewing.webp");
}

.craft-card__media--partnership {
  background-image: url("../images/commitment-06-partnership.webp");
}

.craft-card__media--fruit {
  background-image: url("../images/commitment-05-fruit.webp");
}

.craft-card h3 {
  margin: 24px 0 10px;
  color: var(--color-dark-text);
  font-family: var(--font-heading-ja);
  font-size: var(--type-card-heading);
  font-weight: 700;
  line-height: 1.5;
}

.craft-card p {
  margin: 0;
  color: var(--color-dark-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.9;
}

/* ==========================================================
   GROWING TOGETHER
========================================================== */
.growing {
  background: #eef2f1;
}

.growing__media {
  background-image: url("../images/commitment-01-farmer.webp");
}

/* ==========================================================
   BUSINESS / GLOBAL TEASER
========================================================== */
.business-teaser,
.global-teaser {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.business-teaser {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  min-height: 720px;
  background: var(--color-white);
}

.business-teaser__media {
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(16, 44, 54, 0.08), rgba(16, 44, 54, 0.42)),
    url("../images/business-hero.webp") center / cover no-repeat;
}

.business-teaser__content,
.global-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(72px, 7vw, 132px) clamp(36px, 6vw, 110px);
}

.business-teaser__content {
  color: var(--color-text);
}

.business-teaser__content .section-kicker {
  color: var(--color-accent);
}

.business-teaser__content .jp-heading,
.business-teaser__content .body-copy {
  color: inherit;
}

.business-teaser__content .body-copy,
.global-teaser__content .body-copy {
  max-width: 640px;
  margin-top: clamp(32px, 3.2vw, 52px);
}

.business-teaser__content .body-copy {
  color: var(--color-body);
}

.business-teaser__content .outline-button {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.global-teaser {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 700px;
  background: #f3f5f4;
}

.global-teaser__gallery {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
}

.global-teaser__media {
  min-width: 0;
  min-height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.global-teaser__media--jet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/global-private-jet.webp");
  background-position: 58% center;
}

.global-teaser__media--yacht,
.global-teaser__media--restaurant {
  display: none;
}

/* ==========================================================
   LOWER PAGES
========================================================== */
.subpage {
  background: var(--color-base);
}

.site-header--subpage {
  color: var(--color-white);
}

.site-header--subpage .site-logo::before {
  filter: brightness(0) invert(1);
}

.site-header--subpage .global-nav__en {
  color: rgba(255, 255, 255, 0.66);
}

.site-header--subpage .global-nav__shop .global-nav__icon {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header--subpage .global-nav__shop:hover .global-nav__icon {
  color: var(--color-white);
}

.site-header--subpage .global-nav__item[aria-current="page"] {
  position: relative;
}

.site-header--subpage .global-nav__item[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.subpage-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(82vh, 880px);
  padding: 150px var(--site-padding) 90px;
  color: var(--color-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subpage-hero--business {
  background-image:
    linear-gradient(90deg, rgba(8, 28, 36, 0.88) 0%, rgba(8, 28, 36, 0.48) 44%, rgba(8, 28, 36, 0.08) 72%),
    url("../images/business-hero.webp");
}

.subpage-hero--global {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 33, 0.82) 0%, rgba(7, 24, 33, 0.46) 44%, rgba(7, 24, 33, 0.08) 72%),
    url("../images/global-business-hero.webp");
}

.subpage-hero--company {
  background-image:
    linear-gradient(90deg, rgba(8, 28, 36, 0.86) 0%, rgba(8, 28, 36, 0.52) 44%, rgba(8, 28, 36, 0.12) 74%),
    url("../images/commitment-04-brewery.webp");
}

.subpage-hero--shop {
  background-image:
    linear-gradient(90deg, rgba(8, 28, 36, 0.88) 0%, rgba(8, 28, 36, 0.5) 44%, rgba(8, 28, 36, 0.12) 74%),
    url("../images/global-restaurant.webp");
}

.subpage-hero--contact {
  background-image:
    linear-gradient(90deg, rgba(8, 28, 36, 0.9) 0%, rgba(8, 28, 36, 0.54) 44%, rgba(8, 28, 36, 0.14) 74%),
    url("../images/philosophy-sake-pour.webp");
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
}

.subpage-hero__content .section-kicker {
  color: var(--color-dark-accent);
}

.subpage-hero__title {
  margin: clamp(20px, 2vw, 32px) 0 0;
  font-family: var(--font-heading-ja);
  font-size: var(--type-page-title);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.06em;
}

.subpage-hero__content > p {
  margin: clamp(22px, 2.4vw, 36px) 0 0;
  font-family: var(--font-heading-ja);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.8;
}

/* Editorial hero: business / global / company / shops / contact
   Pattern: subpage-mv-patterns.html PROPOSAL 02 “Cinematic Overlay” */
.subpage--editorial .site-header--subpage {
  background: rgba(5, 23, 30, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Fixed header: once the page has scrolled past the top, every variant
   (home / subpage / editorial-overlay) converges on the same solid,
   legible bar instead of staying transparent over arbitrary content. */
.site-header.is-scrolled {
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
  box-shadow: 0 16px 40px rgba(6, 22, 28, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .site-logo::before {
  filter: brightness(0) saturate(100%);
}

.site-header.is-scrolled .global-nav__en {
  color: var(--color-muted);
}

.site-header.is-scrolled .global-nav__shop .global-nav__icon {
  color: var(--color-accent-dark);
  border-color: rgba(0, 107, 125, 0.2);
}

.editorial-hero {
  --editorial-title-size: clamp(56px, 4.25vw, 64px);
  --editorial-kicker-size: clamp(16px, 1.1vw, 17px);

  position: relative;
  min-height: 100svh;
  color: var(--color-dark-text);
  background: var(--color-dark-surface);
  overflow: hidden;
}

.editorial-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.editorial-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.editorial-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: none;
  pointer-events: none;
}

.editorial-hero__content {
  position: absolute;
  z-index: 2;
  top: clamp(150px, 13vw, 205px);
  bottom: clamp(70px, 7vw, 112px);
  left: var(--site-padding);
  display: flex;
  width: min(50%, 760px);
  flex-direction: column;
  justify-content: space-between;
}

.editorial-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-en);
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

.editorial-hero__breadcrumb.-color{
    color: var(--color-text);
    margin-bottom: 20px;
}


.editorial-hero__breadcrumb a {
  transition: color 0.2s ease;
}

.editorial-hero__breadcrumb a:hover {
  color: var(--color-white);
}

.editorial-hero__breadcrumb.-color a:hover{
  opacity: .7;
  color: var(--color-text);
}

.editorial-hero__heading {
  min-width: 0;
}

@media (min-width: 769px) {
  .editorial-hero__heading {
    width: fit-content;
    max-width: 100%;
    padding: clamp(24px, 2.4vw, 38px) clamp(26px, 2.8vw, 46px);
    border-left: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(5, 23, 30, 0.4);
    box-shadow: 0 18px 50px rgba(5, 23, 30, 0.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.editorial-hero__heading .section-kicker {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 22px);
  margin-bottom: clamp(20px, 1.65vw, 26px);
  color: var(--color-dark-accent);
  font-size: var(--editorial-kicker-size);
  letter-spacing: 0.22em;
}

.editorial-hero__heading .section-kicker::after {
  width: clamp(44px, 3.6vw, 58px);
  height: 1px;
  background: currentColor;
  content: "";
}

.editorial-hero__title {
  margin: 0;
  font-family: var(--font-heading-ja);
  font-size: var(--editorial-title-size);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.04em;
}

.editorial-hero__lead {
  max-width: 25em;
  margin: clamp(26px, 2.6vw, 40px) 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading-ja);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.95;
}

.editorial-hero--business .editorial-hero__media img {
  object-position: 52% center;
}

.editorial-hero--global .editorial-hero__media img {
  object-position: 48% center;
}

.editorial-hero--company .editorial-hero__media img {
  object-position: 47% center;
}

.editorial-hero--shop .editorial-hero__media img {
  object-position: 52% center;
}

.editorial-hero--contact .editorial-hero__media img {
  object-position: 54% center;
}


/* ==========================================================
   SUBPAGE BACKGROUND DETAILS
   和紙の繊維感と水紋を低コントラストで重ねる
========================================================== */
.subpage--editorial .page-intro,
.subpage--editorial .company-profile {
  position: relative;
  background-color: #f8f9f7;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(16, 44, 54, 0.014) 0 1px,
    transparent 1px 11px
  );
  isolation: isolate;
  overflow: hidden;
}

.subpage--editorial .page-intro::before,
.subpage--editorial .company-profile::before {
  position: absolute;
  z-index: -1;
  top: clamp(-190px, -10vw, -90px);
  right: clamp(-180px, -8vw, -70px);
  width: clamp(420px, 39vw, 720px);
  aspect-ratio: 1;
  background: rgba(0, 107, 125, 0.045);
  -webkit-mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.subpage--editorial .page-intro {
  border-bottom: 1px solid rgba(16, 44, 54, 0.08);
}

.subpage--editorial .service-section__content {
  position: relative;
  background-color: #f4f6f3;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 107, 125, 0.055) 0,
      rgba(0, 107, 125, 0.055) 1px,
      transparent 1px
    ),
    repeating-linear-gradient(
      108deg,
      rgba(16, 44, 54, 0.012) 0 1px,
      transparent 1px 12px
    );
  background-position: clamp(24px, 4vw, 72px) 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 1px 100%, auto;
  isolation: isolate;
  overflow: hidden;
}

.subpage--editorial .service-section__content::before {
  position: absolute;
  z-index: -1;
  right: clamp(-160px, -8vw, -70px);
  bottom: clamp(-170px, -9vw, -80px);
  width: clamp(360px, 34vw, 620px);
  aspect-ratio: 1;
  background: rgba(0, 107, 125, 0.045);
  -webkit-mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.subpage--editorial .service-section--reverse .service-section__content {
  background-color: #eef3f2;
  background-image: repeating-linear-gradient(
    108deg,
    rgba(16, 44, 54, 0.012) 0 1px,
    transparent 1px 12px
  );
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.subpage--editorial .service-section--reverse .service-section__content::before {
  right: auto;
  left: clamp(-160px, -8vw, -70px);
  transform: rotate(-10deg);
}

.subpage--editorial .regions-section {
  position: relative;
  background-color: var(--color-dark-surface);
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.012) 0 1px,
    transparent 1px 13px
  );
  isolation: isolate;
  overflow: hidden;
}

.subpage--editorial .regions-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("../images/kiragiku-mark-outline.png");
  background-position: 30px 26px;
  background-repeat: repeat;
  background-size: clamp(145px, 13vw, 210px) auto;
  opacity: 0.022;
  pointer-events: none;
  content: "";
}

.subpage--editorial .partner-section {
  position: relative;
  background-color: #163943;
  background-image: repeating-linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.01) 0 1px,
    transparent 1px 12px
  );
  isolation: isolate;
  overflow: hidden;
}

.subpage--editorial .partner-section::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(-230px, -11vw, -100px);
  width: clamp(480px, 43vw, 780px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.035);
  -webkit-mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  transform: translateY(-50%) rotate(8deg);
  pointer-events: none;
  content: "";
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
}

.page-intro__body {
  width: min(100%, 800px);
  max-width: none;
  margin-left: auto;
}

.page-intro--global {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(42px, 4.6vw, 70px);
  text-align: center;
}

.subpage--editorial .page-intro--global::before {
  display: none;
}

.page-intro--global .page-intro__heading {
  display: flex;
  width: min(100%, 1380px);
  max-width: none;
  align-items: center;
  flex-direction: column;
}

.page-intro--global .page-intro__heading::before {
  width: clamp(48px, 3.8vw, 60px);
  aspect-ratio: 1000 / 1022;
  margin-bottom: clamp(22px, 2vw, 30px);
  background: var(--color-accent-dark);
  -webkit-mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  opacity: 0.62;
  content: "";
}

.page-intro--global .section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
  margin-bottom: clamp(30px, 2.8vw, 42px);
  font-size: clamp(16px, 1.15vw, 18px);
  letter-spacing: 0.24em;
}

.page-intro--global .section-kicker::before,
.page-intro--global .section-kicker::after {
  width: clamp(48px, 5vw, 78px);
  height: 1px;
  background: currentColor;
  opacity: 0.68;
  content: "";
}

.page-intro--global .jp-heading--large {
  width: 100%;
  font-size: clamp(42px, 3.35vw, 54px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.page-intro--global .page-intro__body {
  width: min(100%, 880px);
  max-width: none;
  margin-inline: auto;
  text-align: left;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 160px);
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
}

.company-profile__list {
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.company-profile__row {
  display: grid;
  grid-template-columns: clamp(110px, 10vw, 170px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 3vw, 46px) 0;
  border-bottom: 1px solid var(--color-line);
}

.company-profile__row dt {
  color: var(--color-muted);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 600;
}

.company-profile__row dd {
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 2;
}

.company-profile__row dd div + div,.company-profile__row dd address + address {
  margin-top: clamp(24px, 3vw, 40px);
}

.company-profile address {
  display: grid;
  font-style: normal;
}

.company-profile address strong,
.company-profile__role {
  display: block;
  margin-bottom: 6px;
  color: var(--color-accent-dark);
  font-size: 0.88em;
  font-weight: 700;
}

.company-profile__officers > div {
  display: grid;
}

/* ==========================================================
   EXECUTIVE PROFILE
   最高醸造責任者プロフィール
========================================================== */
.executive-profile {
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
}

.executive-profile__inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 7vw, 128px);
}

.executive-profile__media {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}

.executive-profile__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 42, 50, 0.08);
  pointer-events: none;
  content: "";
}

.executive-profile__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.executive-profile__content {
  min-width: 0;
}

.executive-profile__content .section-kicker {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.3vw, 20px);
  margin-bottom: clamp(24px, 2.5vw, 38px);
}

.executive-profile__content .section-kicker::after {
  width: clamp(42px, 4vw, 64px);
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.executive-profile__role {
  margin: 0 0 10px;
  color: var(--color-accent-dark);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.executive-profile__name {
  margin: 0;
  padding-bottom: clamp(24px, 2.4vw, 36px);
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
  font-family: var(--font-heading-ja);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.executive-profile__body {
  max-width: 780px;
  margin-top: clamp(28px, 3vw, 46px);
  color: var(--color-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 2.05;
}

.executive-profile__body p {
  margin: 0;
}

.executive-profile__body p + p {
  margin-top: 1.5em;
}

@media (max-width: 960px) {
  .executive-profile__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .executive-profile__media {
    width: min(100%, 680px);
  }
}

@media (max-width: 768px) {
  .executive-profile {
    padding: 72px var(--site-padding);
  }

  .executive-profile__inner {
    gap: 34px;
  }

  .executive-profile__content .section-kicker {
    margin-bottom: 22px;
  }

  .executive-profile__name {
    padding-bottom: 22px;
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .executive-profile__body {
    margin-top: 24px;
    font-size: 15px;
    line-height: 2;
  }
}

.shop-list {
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
}

.shop-list__heading {
  margin-bottom: clamp(48px, 6vw, 96px);
}

.shop-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 48px);
}

.shop-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.shop-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface);
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card--produce .shop-card__media img {
  object-position: center 44%;
}

.shop-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 40px);
}

.shop-card__meta {
  display: flex;
  gap: 0;
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.shop-card__meta span + span::before {
  margin: 0 10px;
  color: var(--color-line);
  content: "/";
}

.shop-card h2 {
  margin: 18px 0 0;
  font-family: var(--font-heading-ja);
  font-size: var(--type-card-heading);
  font-weight: 700;
  line-height: 1.55;
}

.shop-card__description {
  margin: 18px 0 0;
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.95;
}

.contact-section {
  display: block;
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
}

.contact-section__intro {
  width: min(100%, 1000px);
  min-width: 0;
  margin-inline: auto;
}

.contact-section .jp-heading {
  font-size: var(--type-section-heading);
  line-height: 1.5;
}

.contact-section__notice {
  max-width: 880px;
  margin-top: clamp(32px, 3.2vw, 48px);
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 2;
}

.contact-section__notice p {
  margin: 0;
}

.contact-section__notice p + p {
  margin-top: 22px;
}

.contact-section__domain-note {
  padding: 20px 22px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-base);
}

.contact-section__domain-note strong {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.contact-form {
  width: min(100%, 1000px);
  min-width: 0;
  margin: clamp(64px, 7vw, 112px) auto 0;
  padding: clamp(48px, 5vw, 76px) 0 0;
  background: transparent;
  border-top: 1px solid var(--color-line);
}

.contact-form__field + .contact-form__field {
  margin-top: clamp(30px, 3vw, 46px);
}

.contact-form__field > label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: var(--font-heading-ja);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 700;
}

.contact-form__field > label strong {
  padding: 3px 8px;
  color: var(--color-white);
  background: var(--color-accent-dark);
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  color: var(--color-text);
  background: var(--color-base);
  border: 1px solid #cbd6d8;
  border-radius: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 240px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #849398;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 107, 125, 0.1);
}

.contact-form__help {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-form__privacy {
  margin-top: clamp(42px, 5vw, 72px);
  padding-top: clamp(30px, 3vw, 46px);
  border-top: 1px solid var(--color-line);
}

.contact-form__privacy > p {
  margin: 0;
  color: var(--color-body);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2;
}

.contact-form__privacy a {
  color: var(--color-accent-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.contact-form__consent {
  width: fit-content;
  margin-top: 26px;
  cursor: pointer;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 600;
}

.contact-form__consent .wpcf7-list-item{
  margin: 0 0 0 0;
}

.contact-form__consent .wpcf7-list-item label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-form__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 5px 0 0;
  accent-color: var(--color-accent-dark);
}

.contact-form__submit{
  width: min(100%, 380px);
}
.contact-form__submit input{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: min(100%, 380px);
  margin-top: clamp(34px, 4vw, 56px);
  padding: 20px 24px;
  color: var(--color-white);
  background: var(--color-accent-dark);
  border: 1px solid var(--color-accent-dark);
  border-radius: 0;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-align: left;
  position: relative;
}

.contact-form__submit:hover {
  color: var(--color-accent-dark);
  background: var(--color-white);
}

.contact-form__submit .-arrow{
  position: absolute;
  right: 24px;
  top: 22px;
  color: #fff;
}

.contact-form__back {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: min(100%, 380px);
  margin-top: clamp(34px, 4vw, 56px);
  padding: 20px 24px;
  color: var(--color-white);
  background: var(--color-accent-dark);
  border: 1px solid var(--color-accent-dark);
  border-radius: 0;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-align: left;
  position: relative;
}

.contact-form__back:hover {
  color: var(--color-accent-dark);
  background: var(--color-white);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  min-height: 760px;
  background: #f2f5f4;
}

.service-section--brand,
.service-section--global {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.service-section--reverse .service-section__media {
  order: 2;
}

.service-section__media {
  min-width: 0;
  min-height: 560px;
  background-color: var(--color-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-section--brand .service-section__media {
  background-image: url("../images/kiragiku-premium-pour.webp");
}

.service-section--wholesale .service-section__media {
  background-image: url("../images/commitment-06-partnership.webp");
}

.service-section--global .service-section__media {
  background-image: url("../images/global-business-hero.webp");
}

.service-section--restaurant .service-section__media {
  background-image: url("../images/global-restaurant.webp");
}

.service-section--produce .service-section__media {
  background-image: url("../images/commitment-05-fruit.webp");
}

.service-section__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(74px, 7vw, 132px) clamp(36px, 6vw, 112px);
}

.service-section__number {
  position: absolute;
  top: clamp(34px, 4vw, 68px);
  right: clamp(30px, 4vw, 64px);
  color: #bdc8ca;
  font-family: var(--font-en);
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-section__content > h2 {
  margin: 0;
  font-family: var(--font-heading-ja);
  font-size: var(--type-section-heading);
  font-weight: 700;
  line-height: 1.5;
}

.service-section--brand .service-section__content > h2,
.service-section--global .service-section__content > h2 {
  font-size: var(--type-major-heading);
}

.service-section__lead {
  margin: clamp(22px, 2.4vw, 38px) 0 0;
  color: var(--color-accent-dark);
  font-family: var(--font-heading-ja);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 600;
  line-height: 1.8;
}

.service-section__content > .body-copy {
  margin-top: clamp(32px, 3.2vw, 52px);
}

.brand-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 3vw, 48px);
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.brand-notes article {
  padding: clamp(22px, 2vw, 32px);
  background: var(--color-white);
}

.brand-notes h3,
.service-section__note h3,
.status-guide h3 {
  margin: 0;
  font-family: var(--font-heading-ja);
  font-size: var(--type-card-heading);
  font-weight: 700;
}

.brand-notes article:last-child h3 {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.brand-notes p,
.service-section__note p,
.status-guide p {
  margin: 12px 0 0;
  color: var(--color-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.9;
}

.service-section__note {
  margin-top: clamp(30px, 3vw, 48px);
  padding: clamp(24px, 2.4vw, 38px);
  border-left: 3px solid var(--color-accent);
  background: var(--color-white);
}

.regions-section {
  padding: var(--section-space) var(--site-padding);
  color: var(--color-dark-text);
  background: var(--color-dark-surface);
}

.regions-section .jp-heading,
.partner-section .jp-heading {
  color: var(--color-dark-text);
}

.regions-section__heading {
  width: min(100%, 840px);
}

.regions-section__heading .section-kicker {
  color: var(--color-dark-accent);
}

.regions-section__heading p {
  margin: clamp(32px, 3.2vw, 52px) 0 0;
  color: var(--color-dark-body);
  font-size: var(--type-body);
  line-height: 2;
}

.regions-section__list {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.8fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  margin-top: clamp(48px, 6vw, 96px);
}

.region-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0d2a33;
  isolation: isolate;
  overflow: hidden;
}

.region-card--asia {
  grid-row: 1 / 3;
}

.region-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 24, 31, 0.04) 18%, rgba(5, 24, 31, 0.36) 58%, rgba(5, 22, 29, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 22, 29, 0.28), transparent 62%);
  pointer-events: none;
  content: "";
}

.region-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.region-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 3vw, 52px);
}

.region-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-dark-accent);
  font-family: var(--font-en);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.region-card__eyebrow::after {
  width: clamp(36px, 4vw, 58px);
  height: 1px;
  background: currentColor;
  opacity: 0.8;
  content: "";
}

.region-card h3 {
  margin: clamp(14px, 1.4vw, 20px) 0 0;
  color: #f4f7f6;
  font-family: var(--font-heading-ja);
  font-size: clamp(28px, 2.3vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.region-card p {
  max-width: 42em;
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  color: rgba(235, 242, 241, 0.84);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.8;
}

.regions-section__caption {
  margin: 24px 0 0;
  color: var(--color-dark-body);
  font-size: 15px;
  line-height: 1.8;
}

.export-section {
  position: relative;
  padding: var(--section-space) var(--site-padding);
  background: var(--color-white);
  isolation: isolate;
  overflow: hidden;
}

.export-section::before {
  position: absolute;
  z-index: -1;
  top: clamp(-180px, -8vw, -80px);
  right: clamp(-160px, -7vw, -70px);
  width: clamp(420px, 38vw, 700px);
  aspect-ratio: 1;
  background: rgba(0, 107, 125, 0.035);
  -webkit-mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.export-section__header,
.export-system,
.export-section__footer {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.export-section__header {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: clamp(56px, 7vw, 124px);
  padding-bottom: clamp(46px, 5vw, 78px);
  border-bottom: 1px solid var(--color-line);
}

.export-section__heading .section-kicker {
  margin-bottom: clamp(22px, 2vw, 30px);
}

.export-section .jp-heading--large {
  font-size: clamp(44px, 3.5vw, 56px);
  line-height: 1.3;
}

.export-section__introduction {
  max-width: 800px;
  margin: 0;
}

.export-section__introduction p {
  margin: 0;
}

.export-system {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 3fr);
  margin-top: clamp(48px, 5vw, 80px);
  border: 1px solid var(--color-line);
  background: var(--color-white);
}

.export-system__origin {
  position: relative;
  display: flex;
  min-height: clamp(370px, 30vw, 470px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 2.5vw, 42px);
  border-right: 1px solid var(--color-line);
  background: #f1f4f2;
  overflow: hidden;
}

.export-system__eyebrow,
.export-flow__number,
.export-section__note > span,
.status-guide__heading > span,
.partner-section__detail-heading > span,
.partnership-grid__item > span {
  position: relative;
  z-index: 1;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.export-system__product {
  position: absolute;
  top: clamp(42px, 4vw, 66px);
  right: clamp(4px, 1vw, 18px);
  bottom: 18px;
  width: min(56%, 190px);
  margin: 0;
}

.export-system__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.export-system__origin-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 58%;
  flex-direction: column;
  margin-top: auto;
  padding-right: 18px;
  background: linear-gradient(90deg, #f1f4f2 76%, rgba(241, 244, 242, 0));
}

.export-system__origin-copy > span {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.export-system__origin-copy strong,
.export-flow__item strong {
  font-family: var(--font-heading-ja);
  font-weight: 600;
}

.export-system__origin-copy strong {
  margin-top: 16px;
  font-size: clamp(24px, 1.8vw, 32px);
}

.export-system__origin-copy small {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
}

.export-flow {
  --flow-padding: clamp(22px, 2.2vw, 38px);

  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.export-flow::before {
  position: absolute;
  z-index: 0;
  top: clamp(83px, 6.8vw, 112px);
  right: var(--flow-padding);
  left: var(--flow-padding);
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), #9ebdc3);
  content: "";
}

.export-flow__item {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: var(--flow-padding);
  border-right: 1px solid var(--color-line);
}

.export-flow__item:last-child {
  border-right: 0;
}

.export-flow__node {
  display: block;
  width: 13px;
  height: 13px;
  margin-top: clamp(34px, 3vw, 48px);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.export-flow__item strong {
  margin-top: auto;
  font-size: clamp(21px, 1.45vw, 27px);
  line-height: 1.45;
}

.export-flow__item small {
  min-height: 4em;
  margin-top: 14px;
  color: var(--color-body);
  font-size: clamp(13px, 0.88vw, 15px);
  font-weight: 400;
  line-height: 1.9;
}

.export-section__footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 108px);
  margin-top: clamp(48px, 5vw, 82px);
}

.export-section__note {
  align-self: center;
  padding-left: clamp(24px, 2.5vw, 42px);
  border-left: 1px solid var(--color-accent);
}

.export-section__note > span {
  display: block;
  margin-bottom: 22px;
}

.export-section__note p {
  margin: 0;
}

.status-guide {
  margin: 0;
  padding: clamp(28px, 3vw, 48px);
  color: var(--color-dark-text);
  background: var(--color-dark-surface);
}

.status-guide__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.status-guide__heading > span {
  color: var(--color-dark-accent);
}

.status-guide__heading h3 {
  margin: 0;
  color: var(--color-dark-text);
  font-family: var(--font-heading-ja);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 600;
}

.status-guide__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 2.5vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.status-guide__items span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px clamp(12px, 1.2vw, 20px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.status-guide__items span:first-child {
  padding-left: 0;
}

.status-guide__items span:last-child {
  padding-right: 0;
  border-right: 0;
}

.status-guide__items i {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--color-dark-accent);
  border-radius: 50%;
  background: var(--color-dark-accent);
}

.status-guide__items span:nth-child(2) i {
  background: transparent;
}

.status-guide__items span:nth-child(3) i {
  border-style: dashed;
  background: transparent;
}

.status-guide__items strong {
  color: var(--color-dark-text);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 600;
  line-height: 1.5;
}

.status-guide__items small {
  margin-top: 8px;
  color: rgba(214, 224, 226, 0.58);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.status-guide > p {
  margin: 20px 0 0;
  color: rgba(214, 224, 226, 0.72);
  font-size: 13px;
  line-height: 1.8;
}

.subpage--editorial .partner-section::before {
  display: none;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: 920px;
  padding: 0;
  color: var(--color-dark-text);
  background: var(--color-dark-surface);
  overflow: hidden;
}

.partner-section__media {
  position: relative;
  min-height: 920px;
  margin: 0;
  overflow: hidden;
}

.partner-section__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 36, 0.02) 48%, rgba(8, 28, 36, 0.78) 100%);
  pointer-events: none;
  content: "";
}

.partner-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-section:hover .partner-section__media img {
  transform: scale(1.025);
}

.partner-section__media figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 2.5vw, 42px);
  bottom: clamp(24px, 3vw, 48px);
  left: clamp(22px, 2.5vw, 42px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(247, 250, 250, 0.72);
  font-family: var(--font-en);
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.partner-section__panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 7vw, 132px) clamp(40px, 5.4vw, 104px);
  isolation: isolate;
  overflow: hidden;
}

.partner-section__panel::before {
  position: absolute;
  z-index: -1;
  right: clamp(-220px, -11vw, -100px);
  bottom: clamp(-210px, -10vw, -90px);
  width: clamp(460px, 42vw, 760px);
  aspect-ratio: 1;
  background: rgba(131, 185, 194, 0.055);
  -webkit-mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.partner-section__content {
  max-width: 860px;
}

.partner-section .section-kicker {
  margin-bottom: clamp(22px, 2vw, 30px);
  color: var(--color-dark-accent);
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.22em;
}

.partner-section .jp-heading--large {
  color: var(--color-dark-text);
  font-size: clamp(42px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.035em;
}

.partner-section__lead {
  max-width: 30em;
  margin: clamp(26px, 2.6vw, 40px) 0 0;
  font-family: var(--font-heading-ja);
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 600;
  line-height: 1.9;
}

.partner-section .body-copy {
  max-width: 46em;
  margin-top: clamp(26px, 2.5vw, 38px);
  color: var(--color-dark-body);
}

.partner-section__detail {
  width: 100%;
  max-width: 860px;
  margin: clamp(42px, 4.5vw, 70px) 0 0;
  padding: 0;
  border: 0;
}

.partner-section__detail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.partner-section__detail-heading > span {
  color: var(--color-dark-accent);
}

.partner-section__detail-heading p {
  margin: 0;
  color: rgba(214, 224, 226, 0.64);
  font-size: 13px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.partnership-grid__item {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 1.7vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.partnership-grid__item:hover {
  background: rgba(131, 185, 194, 0.08);
}

.partnership-grid__item:last-child {
  grid-column: 1 / -1;
}

.partnership-grid__item > span {
  color: var(--color-dark-accent);
  font-size: clamp(10px, 0.72vw, 12px);
}

.partnership-grid__item strong {
  margin-top: 22px;
  color: var(--color-dark-text);
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 500;
  line-height: 1.65;
}

.partner-section .outline-button {
  width: min(100%, 430px);
  margin-top: clamp(32px, 3.2vw, 50px);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-ja);
  font-size: clamp(13px, 0.9vw, 15px);
  letter-spacing: 0.08em;
}

.partner-section .outline-button:hover {
  color: var(--color-dark-surface);
  background: var(--color-white);
}

.news-section__intro {
  width: min(100%, 1000px);
  min-width: 0;
  margin-inline: auto;
}

.section-heading-group {
  margin-top: 40px;
}

.news-section__header{
  padding: 40px 0 0;
  border-bottom: 1px solid;
}

.news-section__head{
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-section__head time{
  color: var(--color-muted);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.news-section__head small{
  display: block;
  margin-bottom: 2px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
    
.news-section__title{
  font-size: 30px;
  font-weight: 700;
}

.news-section__content{
  padding: 40px 0 0;
}

.news-section__content h2{
  background-color: var(--color-muted);
  color: #fff;
  padding: .5rem 1rem;
}

.news-section__content h3{
  color: var(--color-muted);
  border-bottom: 2px solid;
  padding: 0 0 .5rem 0;
}

.news-section__content h4{
  color: var(--color-muted);
}

.news-section__content a{
  text-decoration: underline;
  color: blue;
}

.privacy-section__intro {
  width: min(100%, 1000px);
  min-width: 0;
  margin-inline: auto;
}

.privacy-section__content{
  padding: 60px 0 0;
}

/* ==========================================================
   NEWS
   左: お知らせ
   右: 水イメージ
========================================================== */
.news {
  width: min(100%, var(--content-width));
  min-height: 620px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  border-top: 1px solid var(--color-line);
}

.news__content {
  padding:
    clamp(74px, 7vw, 130px)
    clamp(36px, 5vw, 96px)
    clamp(74px, 7vw, 130px)
    var(--site-padding);
}

.news-list {
  margin-top: clamp(32px, 3vw, 54px);
  border-top: 1px solid var(--color-line);
}

.news-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
}

.news-item:hover {
  opacity: .7!important;
}

.news-item time {
  color: var(--color-muted);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.news-item small {
  display: block;
  margin-bottom: 2px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.news__media {
  background-color: var(--color-water);
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.78) 18%,
      rgba(255, 255, 255, 0.28) 42%,
      rgba(255, 255, 255, 0) 68%
    ),
    url("../images/news-water.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ==========================================================
   FOOTER
========================================================== */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(180px, 1fr));
  gap: clamp(30px, 4vw, 74px);
  padding:
    clamp(66px, 6vw, 110px)
    var(--site-padding)
    92px;
  color: var(--color-white);
  background: var(--color-footer);
}

.site-footer__brand {
  position: relative;
  max-width: 420px;
  min-height: 64px;
  padding-left: clamp(64px, 5vw, 86px);
}

.site-footer__brand::before {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(48px, 3.9vw, 66px);
  aspect-ratio: 1;
  background: url("../images/kiragiku-mark-fill.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  content: "";
}

.site-footer__logo-ja {
  display: block;
  font-family: var(--font-heading-ja);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.site-footer__logo-en {
  display: block;
  margin-top: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.site-footer__brand p {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: clamp(20px, 2vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.8;
}

.site-footer__column > span {
  margin-bottom: 14px;
  font-family: var(--font-ja);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.site-footer__column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-ja);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__copyright {
  position: absolute;
  right: var(--site-padding);
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-ja);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.pagenavi{
  margin: 50px auto 0;
}
.pagenavi .wp-pagenavi{
  display: flex;
  justify-content: center;
}
.pagenavi .wp-pagenavi a, .pagenavi .wp-pagenavi span{
  border: unset;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenavi .wp-pagenavi span.current{
  background: var(--color-accent);
  color: #fff;
}
.pagenavi .nextpostslink,.pagenavi .previouspostslink{
  position: relative;
}
.pagenavi .nextpostslink::after{
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.pagenavi .previouspostslink::after{
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/* ==========================================================
   RESPONSIVE: TABLET
========================================================== */
@media (max-width: 1180px) {
  :root {
    --type-page-title: clamp(54px, 6vw, 68px);
    --type-major-heading: clamp(48px, 5vw, 58px);
    --type-section-heading: clamp(36px, 4vw, 46px);
    --type-card-heading: clamp(25px, 2.4vw, 32px);
    --type-kicker: clamp(13px, 1.15vw, 15px);
    --type-body: clamp(15px, 1.5vw, 17px);
    --type-nav-ja: clamp(13px, 1.2vw, 15px);
    --type-nav-en: clamp(10px, 0.9vw, 11px);
  }

  .global-nav {
    gap: 14px;
  }

  .editorial-hero {
    --editorial-title-size: clamp(50px, 4.75vw, 56px);
    --editorial-kicker-size: clamp(15px, 1.35vw, 16px);
  }

  .philosophy,
  .origin-story,
  .growing,
  .business-teaser,
  .global-teaser,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .philosophy__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    order: -1;
  }

  .origin-story,
  .growing {
    gap: 46px;
  }

  .origin-story__content,
  .growing__content,
  .partner-section__content {
    padding-right: 0;
  }

  .business-teaser__media {
    min-height: 520px;
  }

  .global-teaser__gallery {
    min-height: 560px;
  }

  .partner-section__detail {
    margin-top: 54px;
  }

  .export-section__footer {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
  }

  .partner-section__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .export-system__origin-copy strong {
    font-size: clamp(22px, 2.1vw, 24px);
  }

  .partner-section__panel {
    padding: 96px var(--site-padding);
  }

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

  .craftsmanship__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 52px;
  }

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

  .page-intro--global .section-kicker {
    font-size: clamp(15px, 1.5vw, 17px);
  }

  .page-intro--global .jp-heading--large {
    font-size: clamp(38px, 4vw, 46px);
  }

  .company-profile {
    grid-template-columns: 1fr;
  }

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

  .service-section,
  .service-section--reverse,
  .service-section--brand,
  .service-section--global {
    grid-template-columns: 1fr;
  }

  .service-section--reverse .service-section__media {
    order: 0;
  }

  .service-section__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

/* ==========================================================
   RESPONSIVE: SMALL TABLET
========================================================== */
@media (max-width: 960px) {
  :root {
    --type-page-title: clamp(46px, 6.5vw, 58px);
    --type-major-heading: clamp(42px, 5.5vw, 52px);
    --type-section-heading: clamp(32px, 4.5vw, 42px);
    --type-card-heading: clamp(24px, 3.2vw, 30px);
    --type-kicker: clamp(12px, 1.4vw, 14px);
    --type-body: 16px;
  }

  .global-nav__item {
    display: none;
  }

  .page-intro--global .section-kicker {
    font-size: clamp(14px, 1.7vw, 16px);
  }

  .page-intro--global .jp-heading--large {
    font-size: clamp(34px, 4.6vw, 40px);
  }

  .display-title,
  .jp-heading,
  .editorial-hero__title,
  .service-section__content > h2,
  .shop-card h2 {
    text-wrap: balance;
  }

  .editorial-hero {
    --editorial-title-size: clamp(44px, 5.2vw, 50px);
    --editorial-kicker-size: clamp(14px, 1.55vw, 15px);

    min-height: 760px;
  }

  .editorial-hero__content {
    width: min(72%, 620px);
  }

  .shop-list__grid {
    grid-template-columns: 1fr;
  }

  .philosophy {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .philosophy__media {
    min-height: 520px;
    aspect-ratio: auto;
    order: -1;
  }

  .origin-story,
  .growing {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .origin-story__content,
  .growing__content {
    padding-right: 0;
  }

  .origin-story__media,
  .growing__media {
    aspect-ratio: 16 / 9;
  }

  .business-teaser,
  .global-teaser {
    grid-template-columns: 1fr;
  }

  .business-teaser__media {
    min-height: 520px;
  }

  .global-teaser__gallery {
    min-height: 560px;
  }

  .service-section,
  .service-section--reverse,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .service-section--reverse .service-section__media {
    order: 0;
  }

  .service-section__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .regions-section__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .region-card {
    min-height: clamp(460px, 64vw, 580px);
  }

  .region-card--asia {
    grid-row: auto;
  }

  .partner-section__content {
    padding-right: 0;
  }

  .partner-section__detail {
    margin-top: 54px;
  }

  .export-section__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .export-section__introduction {
    max-width: 720px;
  }

  .export-system {
    grid-template-columns: 1fr;
  }

  .export-system__origin {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .export-system__product {
    right: clamp(24px, 8vw, 76px);
    width: min(36%, 180px);
  }

  .export-flow {
    grid-template-columns: 1fr;
  }

  .export-flow::before {
    top: 34px;
    bottom: 34px;
    left: 48px;
    width: 1px;
    height: auto;
  }

  .export-flow__item {
    min-height: 126px;
    justify-content: center;
    padding: 24px 28px 24px 88px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .export-flow__item:last-child {
    border-bottom: 0;
  }

  .export-flow__number {
    position: absolute;
    top: 22px;
    left: 20px;
  }

  .export-flow__node {
    position: absolute;
    top: 50%;
    left: 42px;
    margin: 0;
    transform: translateY(-50%);
  }

  .export-flow__item strong {
    margin-top: 0;
  }

  .export-flow__item small {
    min-height: 0;
    margin-top: 8px;
  }

  .export-section__footer {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .partner-section__panel {
    padding: 88px var(--site-padding);
  }

  .partner-section .jp-heading--large {
    font-size: clamp(40px, 5vw, 48px);
  }
}

/* ==========================================================
   RESPONSIVE: MOBILE
========================================================== */
@media (max-width: 768px) {
  .section-heading-group {
    margin-top: 20px;
  }

  :root {
    --site-padding: 16px;
    --section-space: 76px;
    --type-page-title: clamp(40px, 8vw, 50px);
    --type-major-heading: clamp(36px, 7vw, 44px);
    --type-section-heading: clamp(30px, 5.5vw, 38px);
    --type-card-heading: clamp(23px, 4.5vw, 30px);
    --type-kicker: clamp(11px, 1.8vw, 13px);
    --type-body: 16px;
  }

  body {
    font-size: var(--type-body);
  }

  .page-intro--global {
    gap: 36px;
  }

  .page-intro--global .page-intro__heading::before {
    width: clamp(42px, 6.5vw, 50px);
    margin-bottom: 20px;
  }

  .page-intro--global .section-kicker {
    gap: clamp(14px, 2.8vw, 22px);
    margin-bottom: 28px;
    font-size: clamp(13px, 2vw, 15px);
  }

  .page-intro--global .section-kicker::before,
  .page-intro--global .section-kicker::after {
    width: clamp(36px, 7vw, 56px);
  }

  .page-intro--global .jp-heading--large {
    font-size: clamp(30px, 5vw, 36px);
    line-height: 1.55;
  }

  .site-header {
    padding-block: 13px;
  }

  .site-logo__ja {
    font-size: 20px;
  }

  .site-logo {
    min-height: 38px;
    padding-left: 46px;
  }

  .site-logo::before {
    width: 34px;
  }

  .global-nav__contact,
  .global-nav__shop {
    min-height: 52px;
    padding: 6px 12px 6px 6px;
  }

  .global-nav {
    gap: 8px;
  }

  .site-header {
    gap: 10px;
  }

  .editorial-hero {
    display: block;
    min-height: calc(100vh - var(--mobile-action-bar-height, 72px));
    min-height: calc(100svh - var(--mobile-action-bar-height, 72px));
  }

  .editorial-hero__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .editorial-hero__shade {
    display: none;
  }

  .editorial-hero__content {
    --editorial-title-size: clamp(40px, 5.8vw, 44px);
    --editorial-kicker-size: clamp(13px, 1.8vw, 14px);

    position: absolute;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    padding: 10px var(--site-padding) 46px;
  }

  .editorial-hero__breadcrumb {
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 12px rgba(5, 23, 30, 0.78);
  }

  .editorial-hero__heading {
    width: fit-content;
    max-width: 100%;
    padding: 22px 20px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(5, 23, 30, 0.46);
    box-shadow: 0 14px 36px rgba(5, 23, 30, 0.18);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }

  .editorial-hero__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .editorial-hero--business .editorial-hero__media img {
    object-position: 52% center;
  }

  .editorial-hero--global .editorial-hero__media img,
  .editorial-hero--company .editorial-hero__media img,
  .editorial-hero--shop .editorial-hero__media img,
  .editorial-hero--contact .editorial-hero__media img {
    object-position: 50% center;
  }

  .global-nav__button {
    gap: 9px;
  }

  .global-nav__button .global-nav__ja {
    font-size: clamp(12px, 2.2vw, 14px);
  }

  .global-nav__button .global-nav__en {
    font-size: clamp(10px, 1.6vw, 11px);
  }

  .global-nav__icon {
    width: 32px;
    height: 32px;
  }

  .display-title__line,
  .text-line {
    white-space: normal;
  }

  .display-title--hero {
    font-size: var(--type-page-title);
  }

  .display-title--philosophy {
    font-size: var(--type-major-heading);
  }

  .jp-heading--large,
  .jp-heading--commitment {
    font-size: var(--type-major-heading);
  }

  .jp-heading--medium {
    font-size: var(--type-section-heading);
  }

  .jp-heading--global {
    font-size: var(--type-major-heading);
  }

  .outline-button,
  .outline-button--wide {
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: calc(100vh - var(--mobile-action-bar-height, 72px));
    min-height: calc(100svh - var(--mobile-action-bar-height, 72px));
    align-items: flex-end;
  }

  .hero-sequence.is-mobile-parallax {
    height: 280svh;
  }

  .hero-sequence.is-mobile-parallax .hero-sequence__sticky {
    position: sticky;
    top: 0;
    height: calc(100vh - var(--mobile-action-bar-height, 72px));
    height: calc(100svh - var(--mobile-action-bar-height, 72px));
    overflow: hidden;
  }

  .hero-sequence.is-mobile-parallax .hero {
    height: 100%;
    min-height: 100%;
  }

  .hero__media {
    background-image: var(
      --hero-image-sp,
      var(--hero-image-pc, url("../images/hero-kiragiku-composite.webp"))
    );
    background-position: 73% center;
  }

  .hero__content {
    width: 100%;
    padding: 150px var(--site-padding) 64px;
  }

  .hero__content::before {
    display: none;
  }

  .hero__content > * {
    position: relative;
    z-index: 1;
    text-shadow:
      0 0 5px rgba(255, 255, 255, 1),
      0 0 12px rgba(255, 255, 255, 0.94),
      0 0 24px rgba(255, 255, 255, 0.76),
      0 0 38px rgba(255, 255, 255, 0.5);
  }

  .hero__scroll {
    right: var(--site-padding);
    left: auto;
    transform: none;
  }

  .hero-sequence.is-mobile-parallax .hero__scroll {
    opacity: var(--hero-mobile-scroll-opacity, 1);
  }

  .hero-sequence.is-mobile-parallax .hero__content {
    opacity: var(--hero-mobile-content-opacity, 0);
    transform: translate3d(0, var(--hero-mobile-content-y, 72svh), 0);
    will-change: opacity, transform;
  }

  .hero__lead {
    font-size: 24px;
  }

  .collection {
    padding:
      var(--section-space)
      var(--site-padding);
  }

  .collection__header {
    gap: 16px;
    margin-bottom: 42px;
  }

  .collection__header .section-kicker {
    font-size: var(--type-kicker);
  }

  .collection__header-line {
    background: var(--color-line);
  }

  .philosophy {
    gap: 42px;
    padding:
      72px
      var(--site-padding);
  }

  .philosophy__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .philosophy .section-kicker {
    gap: 16px;
    margin-bottom: 24px;
    font-size: var(--type-kicker);
  }

  .philosophy .section-kicker::after {
    width: 40px;
  }

  .philosophy .jp-heading--medium {
    font-size: var(--type-section-heading);
    line-height: 1.6;
  }

  .philosophy__content .body-copy {
    margin-top: 24px;
    font-size: var(--type-body);
    line-height: 2;
  }

  .origin-story,
  .growing,
  .craftsmanship {
    padding:
      72px
      var(--site-padding);
  }

  .origin-story,
  .growing {
    gap: 36px;
  }

  .origin-story__media,
  .growing__media {
    aspect-ratio: 4 / 3;
  }

  .origin-story .section-kicker,
  .craftsmanship .section-kicker,
  .growing .section-kicker {
    margin-bottom: 24px;
    font-size: var(--type-kicker);
  }

  .craftsmanship .section-kicker {
    gap: 16px;
  }

  .craftsmanship .section-kicker::after {
    width: 40px;
  }

  .craftsmanship .jp-heading--large {
    font-size: var(--type-major-heading);
  }

  .origin-story__content .body-copy,
  .growing__content .body-copy {
    margin-top: 24px;
  }

  .craftsmanship__heading {
    margin-bottom: 42px;
  }

  .craftsmanship__heading .body-copy {
    margin-top: 24px;
  }

  .craftsmanship__list {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .craft-card h3 {
    margin-top: 18px;
  }

  .collection__list {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .collection__action {
    margin-top: 58px;
  }

  .product-card h3 {
    margin-top: 18px;
  }

  .business-teaser,
  .global-teaser {
    min-height: 0;
  }

  .business-teaser__media {
    min-height: 380px;
    background-position: 58% center;
  }

  .business-teaser__content,
  .global-teaser__content {
    padding: 72px var(--site-padding);
  }

  .global-teaser__gallery {
    min-height: 500px;
  }

  .subpage-hero {
    min-height: 720px;
    padding: 136px var(--site-padding) 72px;
    background-position: 62% center;
  }

  .subpage-hero--global {
    background-position: 64% center;
  }

  .subpage-hero__title {
    font-size: var(--type-page-title);
  }

  .page-intro,
  .company-profile,
  .shop-list,
  .contact-section,
  .regions-section {
    padding: 72px var(--site-padding);
  }

  .page-intro {
    gap: 36px;
  }

  .company-profile {
    gap: 42px;
  }

  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .shop-list__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-list__heading {
    margin-bottom: 42px;
  }

  .shop-card h2 {
    white-space: normal;
  }

  .contact-form {
    margin-top: 54px;
    padding: 38px 0 0;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .service-section__content {
    padding: 72px var(--site-padding);
  }

  .service-section__number {
    top: 28px;
    right: var(--site-padding);
  }

  .brand-notes {
    grid-template-columns: 1fr;
  }

  .service-section__media {
    aspect-ratio: 4 / 3;
  }

  .service-section--brand .service-section__media {
    background-position: 56% center;
  }

  .regions-section__list {
    margin-top: 42px;
    gap: 16px;
  }

  .region-card {
    min-height: clamp(430px, 82vw, 560px);
    padding: 0;
  }

  .region-card__content {
    padding: clamp(24px, 6vw, 38px);
  }

  .region-card h3 {
    font-size: clamp(26px, 5.2vw, 34px);
  }

  .partner-section__detail {
    margin-top: 42px;
    padding: 0;
  }

  .export-section {
    padding-block: 76px;
  }

  .export-section .jp-heading--large {
    font-size: clamp(34px, 6.2vw, 40px);
  }

  .export-system__origin {
    min-height: 330px;
    padding: 24px;
  }

  .export-system__product {
    right: 18px;
    width: min(44%, 160px);
  }

  .export-system__origin-copy strong {
    font-size: clamp(22px, 5vw, 28px);
  }

  .export-flow__item {
    padding-right: 20px;
    padding-left: 76px;
  }

  .export-flow::before {
    left: 40px;
  }

  .export-flow__node {
    left: 34px;
  }

  .status-guide__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .status-guide__items {
    grid-template-columns: 1fr;
  }

  .status-guide__items span,
  .status-guide__items span:first-child,
  .status-guide__items span:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .status-guide__items span:last-child {
    border-bottom: 0;
  }

  .partner-section {
    padding: 0;
  }

  .partner-section__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .partner-section__media figcaption {
    flex-direction: column;
    gap: 8px;
  }

  .partner-section__panel {
    padding: 72px var(--site-padding);
  }

  .partner-section .jp-heading--large {
    font-size: clamp(34px, 7vw, 42px);
    line-height: 1.5;
  }

  .partner-section__lead {
    font-size: clamp(18px, 4vw, 21px);
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .partnership-grid__item {
    min-height: 104px;
  }

  .news {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news__content {
    padding:
      var(--section-space)
      var(--site-padding);
  }

  .news__media {
    min-height: 360px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  .site-footer__column {
    padding-left: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .site-footer__copyright {
    right: var(--site-padding);
    left: var(--site-padding);
    text-align: left;
  }
      
  .news-section__title{
    font-size: 20px;
  }

  .news-section__content{
    padding: 20px 0 0;
  }

  .news-section__content h2{
    font-size: 18px;
  }

  .news-section__content h3{
    font-size: 16px;
  }

  .privacy-section__content{
    padding: 40px 0 0;
  }

  .privacy-section__content h2{
   font-size: 22px;
  }
  

}

@media (max-width: 480px) {
  :root {
    --type-page-title: clamp(38px, 10.5vw, 46px);
    --type-major-heading: clamp(34px, 9.5vw, 42px);
    --type-section-heading: clamp(28px, 8vw, 34px);
    --type-card-heading: clamp(22px, 6.5vw, 28px);
    --type-kicker: clamp(11px, 3vw, 13px);
    --type-body: clamp(15px, 4vw, 16px);
  }

  .site-header {
    gap: 6px;
    padding: 10px var(--site-padding);
  }

  .page-intro--global .page-intro__heading::before {
    width: 42px;
    margin-bottom: 18px;
  }

  .page-intro--global .section-kicker {
    gap: 12px;
    margin-bottom: 24px;
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .page-intro--global .section-kicker::before,
  .page-intro--global .section-kicker::after {
    width: clamp(28px, 9vw, 38px);
  }

  .page-intro--global .jp-heading--large {
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.6;
    letter-spacing: 0.025em;
  }

  .page-intro--global .jp-heading--large .text-line {
    display: inline;
  }

  .region-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .region-card::after {
    display: none;
  }

  .region-card__media {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 3 / 2;
  }

  .region-card__content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 1 1 auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, #102f39, #0b252e);
  }

  .region-card__eyebrow {
    gap: 12px;
    font-size: clamp(11px, 3vw, 13px);
  }

  .region-card h3 {
    font-size: clamp(26px, 7.4vw, 30px);
  }

  .region-card p {
    font-size: clamp(15px, 4vw, 16px);
  }

  .editorial-hero__content {
    --editorial-title-size: clamp(38px, 10.2vw, 40px);
    --editorial-kicker-size: clamp(12px, 3.3vw, 13px);

    top: 72px;
    min-height: 300px;
    padding: 10px var(--site-padding) 34px;
  }

  .editorial-hero__media img {
    object-position: 60% center;
  }

  .editorial-hero__heading .section-kicker {
    margin-bottom: 18px;
  }

  .site-logo {
    min-height: 32px;
    padding-left: 34px;
  }

  .site-logo::before {
    width: 26px;
  }

  .site-logo__ja {
    font-size: 16px;
  }

  .site-logo__en {
    margin-top: 5px;
    font-size: 8px;
  }

  .global-nav {
    gap: 4px;
  }

  .global-nav__button,
  .global-nav__contact,
  .global-nav__shop {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    gap: 0;
    padding: 5px;
  }

  .global-nav__button-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }


  .site-footer__brand {
    padding-left: 58px;
  }

  .site-footer__brand::before {
    width: 44px;
  }

  .export-section {
    padding-block: 68px;
  }

  .export-section__header {
    gap: 26px;
    padding-bottom: 36px;
  }

  .export-system {
    margin-top: 36px;
  }

  .export-system__origin {
    min-height: 300px;
  }

  .export-system__eyebrow {
    max-width: 12em;
  }

  .export-system__product {
    top: 46px;
    right: 8px;
    bottom: 12px;
    width: 46%;
  }

  .export-system__origin-copy {
    max-width: 58%;
  }

  .export-flow__item {
    min-height: 132px;
    padding-left: 66px;
  }

  .export-flow::before {
    left: 34px;
  }

  .export-flow__number {
    left: 14px;
  }

  .export-flow__node {
    left: 28px;
  }

  .export-section__footer {
    margin-top: 38px;
  }

  .export-section__note {
    padding-left: 20px;
  }

  .status-guide {
    padding: 26px 20px;
  }

  .partner-section__media {
    aspect-ratio: 4 / 5;
  }

  .partner-section__panel {
    padding-block: 66px;
  }

  .partner-section .section-kicker {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .partner-section .jp-heading--large {
    font-size: clamp(32px, 9vw, 36px);
  }

  .partner-section__detail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .partner-section .outline-button {
    min-width: 0;
    padding-inline: 20px;
  }
}

/* ==========================================================
   TOP PAGE: TYPOGRAPHY & EDITORIAL LAYOUT
   下層ページの大見出しスケールから切り離し、TOP内の序列を整える
========================================================== */
.home-page {
  --top-hero-title: clamp(56px, 4.45vw, 64px);
  --top-heading-philosophy: clamp(38px, 3vw, 44px);
  --top-heading-standard: clamp(40px, 3.1vw, 46px);
  --top-heading-feature: clamp(44px, 3.5vw, 52px);
  --top-heading-news: clamp(34px, 2.7vw, 40px);
  --top-card-heading: clamp(22px, 1.7vw, 26px);
  --top-kicker: clamp(12px, 0.9vw, 14px);
  --top-kicker-gap: clamp(18px, 1.5vw, 22px);
}

.home-page .display-title--hero {
  font-family: var(--font-heading-ja);
  font-size: var(--top-hero-title);
  font-synthesis: none;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.07em;
}

.home-page .display-title--hero .display-title__line {
  font-family: inherit;
  font-weight: inherit;
}

.home-page .display-title--hero .display-title__line + .display-title__line {
  margin-top: 0.08em;
}

.home-page .philosophy .jp-heading--medium {
  font-size: var(--top-heading-philosophy);
  line-height: 1.48;
  letter-spacing: 0.02em;
}

.home-page .origin-story .jp-heading,
.home-page .growing .jp-heading,
.home-page .business-teaser .jp-heading,
.home-page .global-teaser .jp-heading {
  font-size: var(--top-heading-standard);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.home-page .craftsmanship .jp-heading--large {
  font-size: var(--top-heading-feature);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.home-page .news .jp-heading--news {
  font-size: var(--top-heading-news);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.home-page .product-card h3,
.home-page .craft-card h3 {
  font-size: var(--top-card-heading);
}

.home-page .philosophy .section-kicker,
.home-page .origin-story .section-kicker,
.home-page .craftsmanship .section-kicker,
.home-page .growing .section-kicker,
.home-page .business-teaser .section-kicker,
.home-page .global-teaser .section-kicker,
.home-page .news .section-kicker {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.2vw, 18px);
  margin-bottom: var(--top-kicker-gap);
  font-size: var(--top-kicker);
  line-height: 1;
  letter-spacing: 0.22em;
}

.home-page .philosophy .section-kicker::after,
.home-page .origin-story .section-kicker::after,
.home-page .craftsmanship .section-kicker::after,
.home-page .growing .section-kicker::after,
.home-page .business-teaser .section-kicker::after,
.home-page .global-teaser .section-kicker::after,
.home-page .news .section-kicker::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(40px, 3.4vw, 54px);
  height: 1px;
  background: currentColor;
  opacity: 0.78;
}

.home-page .hero .section-kicker {
  margin-bottom: clamp(18px, 1.5vw, 22px);
  font-size: clamp(12px, 0.95vw, 15px);
  letter-spacing: 0.22em;
}

.home-page .hero .section-kicker--line::before {
  width: clamp(42px, 3.4vw, 52px);
  margin-bottom: clamp(18px, 1.5vw, 22px);
}

.home-page .hero__lead {
  margin-top: clamp(28px, 2.6vw, 40px);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.7;
}

.home-page .philosophy__content .body-copy,
.home-page .origin-story__content .body-copy,
.home-page .growing__content .body-copy,
.home-page .craftsmanship__heading .body-copy,
.home-page .business-teaser__content .body-copy,
.home-page .global-teaser__content .body-copy {
  margin-top: clamp(28px, 2.5vw, 40px);
}

.home-page .news-list {
  margin-top: clamp(28px, 2.5vw, 42px);
}

.home-page .business-teaser__content,
.home-page .global-teaser__content {
  padding-inline: clamp(40px, 5vw, 84px);
}

/* Wide screens: 左右を均等割りにせず、見出しに必要な実効幅を確保する。 */
@media (min-width: 1081px) {
  .home-page .philosophy {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  }

  .home-page .philosophy__media {
    order: 0;
  }

  .home-page .origin-story {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  }

  .home-page .growing {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  }

  .home-page .origin-story,
  .home-page .growing {
    gap: 0;
  }

  .home-page .origin-story__content {
    padding-right: clamp(32px, 3vw, 54px);
  }

  .home-page .growing__media {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page .growing__content {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    padding-left: clamp(32px, 3vw, 54px);
  }

  .home-page .business-teaser {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  }

  .home-page .global-teaser {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }
}

/* 1024px前後: 短い見出しだけ2カラムを残し、長文系は先に1カラム化する。 */
@media (min-width: 961px) and (max-width: 1080px) {
  .home-page .origin-story {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 44px);
  }

  .home-page .news {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }
}

@media (max-width: 1180px) {
  .home-page {
    --top-hero-title: clamp(50px, 5vw, 58px);
    --top-heading-philosophy: clamp(36px, 3.4vw, 40px);
    --top-heading-standard: clamp(38px, 3.6vw, 42px);
    --top-heading-feature: clamp(42px, 4vw, 48px);
    --top-heading-news: clamp(33px, 3.2vw, 37px);
    --top-card-heading: clamp(22px, 2.2vw, 26px);
    --top-kicker: clamp(12px, 1.1vw, 13px);
    --top-kicker-gap: clamp(18px, 1.7vw, 21px);
  }
}

@media (max-width: 1080px) {
  .home-page .top-heading--responsive {
    text-wrap: balance;
  }

  .home-page .top-heading--responsive .text-line {
    display: inline;
    white-space: normal;
  }

  .home-page .philosophy__content,
  .home-page .origin-story__content,
  .home-page .growing__content {
    width: min(100%, 900px);
  }

  .home-page .philosophy__media,
  .home-page .origin-story__media,
  .home-page .growing__media,
  .home-page .business-teaser__media,
  .home-page .global-teaser__gallery {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

  .home-page .philosophy__media,
  .home-page .growing__media {
    order: -1;
  }

  .home-page .growing__content,
  .home-page .growing__media {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .growing__content {
    padding-left: 0;
  }
}

@media (min-width: 961px) and (max-width: 1080px) {
  .home-page .origin-story__media {
    align-self: stretch;
    min-height: 360px;
    aspect-ratio: auto;
  }
}

@media (max-width: 960px) {
  .home-page {
    --top-hero-title: clamp(46px, 5.2vw, 51px);
    --top-heading-philosophy: clamp(32px, 3.8vw, 36px);
    --top-heading-standard: clamp(34px, 3.9vw, 38px);
    --top-heading-feature: clamp(38px, 4.35vw, 42px);
    --top-heading-news: clamp(30px, 3.4vw, 33px);
    --top-card-heading: clamp(22px, 2.8vw, 26px);
    --top-kicker: clamp(12px, 1.25vw, 12.5px);
    --top-kicker-gap: clamp(16px, 1.8vw, 19px);
  }

  .home-page .news__media {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }

  .home-page .news {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-page {
    --top-hero-title: clamp(42px, 6.2vw, 48px);
    --top-heading-philosophy: clamp(30px, 4.5vw, 34px);
    --top-heading-standard: clamp(32px, 4.8vw, 36px);
    --top-heading-feature: clamp(36px, 5.2vw, 40px);
    --top-heading-news: clamp(28px, 4.1vw, 32px);
    --top-card-heading: clamp(21px, 4vw, 25px);
    --top-kicker: clamp(11px, 1.7vw, 12px);
    --top-kicker-gap: clamp(15px, 2.3vw, 18px);
  }

  .home-page .philosophy__media,
  .home-page .origin-story__media,
  .home-page .growing__media,
  .home-page .business-teaser__media,
  .home-page .global-teaser__gallery {
    aspect-ratio: 4 / 3;
  }

  .home-page .business-teaser__content,
  .home-page .global-teaser__content {
    padding-inline: var(--site-padding);
  }

  .home-page .origin-story .jp-heading,
  .home-page .growing .jp-heading,
  .home-page .business-teaser .jp-heading,
  .home-page .global-teaser .jp-heading,
  .home-page .craftsmanship .jp-heading {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .home-page .craftsmanship__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }
}

@media (max-width: 480px) {
  .home-page {
    --top-hero-title: clamp(38px, 10vw, 42px);
    --top-heading-philosophy: clamp(28px, 7.5vw, 31px);
    --top-heading-standard: clamp(30px, 8vw, 34px);
    --top-heading-feature: clamp(32px, 8.8vw, 35px);
    --top-heading-news: clamp(27px, 7.5vw, 30px);
    --top-card-heading: clamp(21px, 6.2vw, 25px);
    --top-kicker: clamp(11px, 3vw, 12px);
    --top-kicker-gap: clamp(14px, 4vw, 16px);
  }

  .home-page .philosophy {
    padding-inline: 16px;
  }
}

/* ==========================================================
   MOTION
   静かな立ち上がりと余韻を重視した共通アニメーション
========================================================== */
.motion-enabled .site-header {
  animation: header-entrance 900ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.motion-enabled .section-kicker--line::before,
.motion-enabled .editorial-hero__heading .section-kicker::after {
  transform: scaleX(0);
  transform-origin: left center;
  animation: line-entrance 1000ms cubic-bezier(0.22, 1, 0.36, 1) 760ms both;
}

.motion-enabled .editorial-hero__media img {
  animation: editorial-image-entrance 2200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-enabled .editorial-hero__breadcrumb,
.motion-enabled .editorial-hero__heading {
  animation: hero-copy-entrance 1050ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-enabled .editorial-hero__breadcrumb {
  animation-delay: 180ms;
}

.motion-enabled .editorial-hero__heading {
  animation-delay: 340ms;
}

.motion-enabled .reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-enabled .reveal--card {
  transform: translate3d(0, 22px, 0);
}

.motion-enabled .reveal--media {
  opacity: 0;
  clip-path: inset(0 0 10% 0);
  transform: scale(1.025);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.motion-enabled .reveal--media.is-visible {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

@keyframes header-entrance {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-copy-entrance {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes editorial-image-entrance {
  from {
    opacity: 0.78;
    transform: scale(1.055);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes line-entrance {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }

  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .global-nav__item,
  .site-logo,
  .site-footer__column > a:not(.footer-button) {
    transition:
      color 300ms ease,
      opacity 300ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .global-nav__item:hover {
    transform: translate3d(0, -2px, 0);
  }

  .site-logo:hover {
    opacity: 0.72;
  }

  .outline-button > span:last-child,
  .footer-button > span:last-child,
  .contact-form__submit > span:last-child {
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .outline-button:hover > span:last-child,
  .footer-button:hover > span:last-child,
  .contact-form__submit:hover > span:last-child {
    transform: translate3d(7px, 0, 0);
  }

  .product-card,
  .craft-card,
  .shop-card {
    transition:
      transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-card.is-visible:hover,
  .craft-card.is-visible:hover,
  .shop-card.is-visible:hover {
    transform: translate3d(0, -6px, 0);
  }

  .shop-card__media {
    overflow: hidden;
  }

  .shop-card__media img {
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .shop-card:hover .shop-card__media img {
    transform: scale(1.035);
  }

  .region-card {
    transition: border-color 600ms ease;
  }

  .region-card:hover {
    border-color: rgba(255, 255, 255, 0.44);
  }

  .region-card__media img {
    transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .region-card:hover .region-card__media img {
    transform: scale(1.035);
  }

  .site-footer__column > a:not(.footer-button):hover {
    color: var(--color-white);
    transform: translate3d(4px, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal--media {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}


.lazyblock-kv-Zs8M4x {
  display: contents;
}

/* ==========================================================
   MOBILE NAVIGATION / FIXED ACTION BAR
========================================================== */
@media (max-width: 960px) {
  :root {
    --mobile-action-bar-height: 72px;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .site-footer {
    padding-bottom: calc(110px + var(--mobile-action-bar-height));
  }

  .site-footer__copyright {
    bottom: calc(24px + var(--mobile-action-bar-height));
  }

  .site-header {
    z-index: 100;
  }

  .motion-enabled .site-header {
    animation: none;
    transform: none;
  }

  .site-header,
  .site-header.is-scrolled,
  .subpage--editorial .site-header--subpage {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .subpage--editorial .site-header--subpage:not(.is-scrolled) {
    background: rgba(5, 23, 30, 0.74);
  }

  .site-header__right {
    display: contents;
  }

  .site-logo,
  .site-menu-toggle {
    position: relative;
    z-index: 102;
  }

  .site-menu-toggle {
    display: inline-flex;
    width: 52px;
    min-height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
    padding: 8px;
    border: 0;
    border-radius: 0;
    color: currentColor;
    background: transparent;
    cursor: pointer;
  }

  .site-menu-toggle__lines {
    position: relative;
    display: block;
    width: 27px;
    height: 18px;
  }

  .site-menu-toggle__lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
      top 280ms ease,
      transform 280ms ease,
      opacity 180ms ease;
  }

  .site-menu-toggle__lines span:nth-child(1) {
    top: 0;
  }

  .site-menu-toggle__lines span:nth-child(2) {
    top: 8px;
  }

  .site-menu-toggle__lines span:nth-child(3) {
    top: 16px;
  }

  .site-menu-toggle__label {
    font-family: var(--font-en);
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
  }

  .site-header.is-menu-open .site-menu-toggle__lines span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .site-menu-toggle__lines span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-menu-toggle__lines span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  .site-header.is-menu-open .site-logo,
  .site-header.is-menu-open .site-menu-toggle {
    color: var(--color-white);
  }

  .site-header.is-menu-open .site-logo::before {
    filter: brightness(0) invert(1);
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0 0 var(--mobile-action-bar-height);
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 108px var(--site-padding) 40px;
    color: var(--color-white);
    background: var(--color-dark-surface);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -18px, 0);
    transition:
      opacity 280ms ease,
      visibility 280ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .site-header.is-menu-open .global-nav {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .site-header .global-nav__item {
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-header .global-nav__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-header .global-nav__item .global-nav__ja {
    font-size: clamp(18px, 4.4vw, 22px);
  }

  .site-header .global-nav__item .global-nav__en,
  .site-header.is-menu-open .global-nav__item .global-nav__en {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
  }

  .site-language-switcher {
    width: auto;
    min-width: 0;
    align-self: flex-start;
    margin-top: 16px;
    padding: 0 4px;
    color: var(--color-white);
  }

  .site-language-switcher select {
    width: 112px !important;
    min-height: 40px;
    border-color: rgba(255, 255, 255, 0.5);
    font-size: 11px !important;
  }

  .site-language-switcher .gt_float_switcher {
    font-size: 11px !important;
  }

  .site-language-switcher .gt_float_switcher .gt-selected .gt-current-lang {
    min-height: 40px;
    padding: 8px 12px !important;
  }

  .global-actions {
    position: fixed;
    z-index: 103;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    height: var(--mobile-action-bar-height);
    box-shadow: 0 -6px 24px rgba(6, 34, 43, 0.16);
  }

  .global-actions .global-nav__button,
  .global-actions .global-nav__contact,
  .global-actions .global-nav__shop {
    width: 100%;
    min-width: 0;
    min-height: var(--mobile-action-bar-height);
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
  }

  .global-actions .global-nav__shop {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
  }

  .global-actions .global-nav__shop .global-nav__icon {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .global-actions .global-nav__button-copy {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .global-actions .global-nav__ja {
    color: var(--color-white);
    font-size: clamp(12px, 2.5vw, 14px);
  }

  .global-actions .global-nav__en {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
  }

  .global-actions .global-nav__icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-action-bar-height: 66px;
  }

  .global-actions .global-nav__button,
  .global-actions .global-nav__contact,
  .global-actions .global-nav__shop {
    gap: 7px;
    padding-inline: 8px;
  }

  .global-actions .global-nav__ja {
    font-size: 11px;
  }

  .global-actions .global-nav__en {
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .global-actions .global-nav__icon {
    width: 25px;
    height: 25px;
  }
}

/* ==========================================================
   EXECUTIVE PROFILES
   profile.html / 会社概要ページ用
========================================================== */
.executive-profiles {
  --profile-side-space: var(--site-padding);

  width: min(
    1140px,
    calc(100% - var(--profile-side-space) - var(--profile-side-space))
  );
  max-width: 1140px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--color-white);
}

.executive-profiles .executive-profile {
  position: relative;
  padding-inline: 0;
  isolation: isolate;
}

.executive-profiles .executive-profile + .executive-profile {
  border-top: 1px solid rgba(23, 42, 50, 0.08);
}

.executive-profiles .executive-profile--reverse {
  background-color: #f4f7f6;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(16, 44, 54, 0.012) 0 1px,
    transparent 1px 12px
  );
}

.executive-profiles .executive-profile--reverse::before {
  position: absolute;
  z-index: -1;
  right: clamp(-220px, -10vw, -90px);
  bottom: clamp(-220px, -10vw, -90px);
  width: clamp(420px, 36vw, 680px);
  aspect-ratio: 1;
  background: rgba(0, 107, 125, 0.035);
  -webkit-mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  mask: url("../images/kiragiku-mark-outline.png") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.executive-profiles .executive-profile__inner {
  width: 100%;
  max-width: 1140px;
  grid-template-columns: 360px minmax(0, 740px);
  align-items: start;
  gap: 40px;
}

.executive-profiles .executive-profile__media {
  width: 360px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(16, 44, 54, 0.1);
}

.executive-profiles .executive-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.executive-profiles .executive-profile__content {
  padding-top: clamp(4px, 1vw, 16px);
}

.executive-profiles .executive-profile__body {
  max-width: 100%;
}

@media (min-width: 961px) {
  .executive-profiles .executive-profile--reverse .executive-profile__inner {
    grid-template-columns: minmax(0, 740px) 360px;
  }

  .executive-profiles .executive-profile--reverse .executive-profile__media {
    grid-column: 2;
    grid-row: 1;
  }

  .executive-profiles .executive-profile--reverse .executive-profile__content {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 960px) {
  .executive-profiles .executive-profile__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .executive-profiles .executive-profile__media {
    width: min(100%, 360px);
  }

  .executive-profiles .executive-profile__content {
    padding-top: 0;
  }
}
