@charset "UTF-8";
html {
  --gd-bg: rgba(255, 255, 255, 0.96);
  --gd-ink: #171512;
  --gd-accent: #995a31;
  --gd-accent-dark: #7a4726;
  --gd-line: #e6e0d6;
  --gd-border: #e6e0d6;
  --gd-soft: #f6f0e5;
  --gd-orange: #e9582f;
  --gd-header-h: 82px;
  scroll-behavior: auto;
  scroll-padding-top: 104px;
}
.gd-header,
.gd-header * {
  box-sizing: border-box;
}
.gd-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: var(--gd-bg);
  border-bottom: 1px solid rgba(230, 224, 214, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}
.gd-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(40, 31, 20, 0.07);
}
.gd-header__inner {
  display: grid;
  width: min(100% - 48px, 1500px);
  height: var(--gd-header-h);
  margin: 0 auto;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 24px;
}
.gd-brand {
  display: inline-flex;
  width: 138px;
  justify-self: start;
}
.gd-brand__logo {
  display: block;
  width: 100%;
}
.gd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}
.gd-nav__link {
  position: relative;
  padding: 27px 0 24px;
  color: var(--gd-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.gd-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--gd-accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.gd-nav__link:hover::after,
.gd-nav__link:focus-visible::after {
  transform: scaleX(1);
}
.gd-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}
.gd-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  gap: 3px;
  color: var(--gd-ink);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}
.gd-action svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gd-action:hover {
  color: var(--gd-accent-dark);
}
.gd-menu-button {
  display: none;
}
.gd-mobile-menu {
  display: none;
}
.gd-ticker {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 44px;
  overflow: hidden;
  background: var(--gd-orange);
  color: #ffffff;
}
.gd-ticker__viewport {
  position: relative;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gd-ticker__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
}
.gd-ticker__item.is-active {
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.gd-ticker__item.is-entering {
  visibility: visible;
  transform: translateY(100%);
}
.gd-ticker__item.is-moving,
.gd-ticker__item.is-leaving {
  transition: transform 0.42s ease;
}
.gd-ticker__item.is-leaving {
  visibility: visible;
  transform: translateY(-100%);
}
.gd-ticker__link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: inherit !important;
  text-decoration: none !important;
}
.gd-ticker__text {
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  html {
    --gd-header-h: 70px;
  }
  .gd-header__inner {
    width: 100%;
    padding: 0 14px;
    grid-template-columns: 44px 1fr auto;
    gap: 8px;
  }
  .gd-nav {
    display: none;
  }
  .gd-brand {
    width: 118px;
    justify-self: center;
  }
  .gd-menu-button {
    display: block;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .gd-menu-button__lines,
  .gd-menu-button__lines::before,
  .gd-menu-button__lines::after {
    display: block;
    height: 1px;
    background: var(--gd-ink);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .gd-menu-button__lines {
    position: relative;
  }
  .gd-menu-button__lines::before,
  .gd-menu-button__lines::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
  }
  .gd-menu-button__lines::before {
    top: -6px;
  }
  .gd-menu-button__lines::after {
    top: 6px;
  }
  .gd-menu-button[aria-expanded=true] .gd-menu-button__lines {
    background: transparent;
  }
  .gd-menu-button[aria-expanded=true] .gd-menu-button__lines::before {
    transform: translateY(6px) rotate(45deg);
  }
  .gd-menu-button[aria-expanded=true] .gd-menu-button__lines::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .gd-actions {
    gap: 6px;
  }
  .gd-action {
    min-width: 34px;
  }
  .gd-action__label {
    display: none;
  }
  .gd-action svg {
    width: 22px;
    height: 22px;
  }
  .gd-mobile-menu {
    display: block;
    position: fixed;
    top: var(--gd-header-h);
    right: 0;
    left: 0;
    z-index: 950;
    max-height: calc(100svh - var(--gd-header-h));
    overflow: auto;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(50, 40, 28, 0.12);
    transform: translateY(-110%);
    transition: transform 0.28s ease;
  }
  .gd-mobile-menu.is-open {
    transform: translateY(0);
  }
  .gd-mobile-menu__inner {
    padding: 20px 24px 30px;
  }
  .gd-mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 4px;
    border-bottom: 1px solid var(--gd-line);
    color: var(--gd-ink);
    text-decoration: none;
    font-weight: 600;
  }
  .gd-mobile-menu__arrow {
    color: var(--gd-accent-dark);
    font-size: 22px;
    line-height: 1;
  }
  .gd-mobile-menu__actions {
    display: grid;
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gd-mobile-menu__action {
    padding: 13px;
    border: 1px solid var(--gd-line);
    border-radius: 999px;
    color: var(--gd-ink);
    text-align: center;
    text-decoration: none;
    font-size: 13px;
  }
  .gd-ticker {
    height: 40px;
  }
  .gd-ticker__text {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .gd-ticker__link {
    padding: 8px 14px;
    gap: 8px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gd-ticker__item {
    transition: none !important;
  }
}
.gd-ticker,
.gd-ticker * {
  box-sizing: border-box;
}
.gd-ticker {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 42px;
  overflow: hidden;
  background: #f5ecd8;
  color: #3f3528;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}
.gd-ticker__viewport {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gd-ticker__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}
.gd-ticker__item.is-active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.gd-ticker__item.is-entering {
  transform: translateY(100%);
  visibility: visible;
  transition: none;
}
.gd-ticker__item.is-moving,
.gd-ticker__item.is-leaving {
  visibility: visible;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.gd-ticker__item.is-leaving {
  transform: translateY(-100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .gd-ticker__item.is-moving,
  .gd-ticker__item.is-leaving {
    transition: none;
  }
}
.gd-ticker__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 34px;
  color: #3f3528 !important;
  text-decoration: none !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.gd-ticker__link::before,
.gd-ticker__link::after {
  content: none !important;
  display: none !important;
}
.gd-ticker__link:hover,
.gd-ticker__link:focus-visible {
  color: #b48217 !important;
}
.gd-ticker__category,
.gd-ticker__arrow {
  display: none !important;
}
.gd-ticker__text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.gd-ticker__text strong {
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .gd-ticker {
    height: 30px;
  }
  .gd-ticker__item {
    padding: 0 10px;
  }
  .gd-ticker__link {
    width: 100%;
    min-height: 30px;
    font-size: 11.5px;
    letter-spacing: 0;
  }
}
body {
  padding-top: 0 !important;
}
.ec-layoutRole__header {
  display: none !important;
}
.gd-action--cart {
  position: relative;
}
.gd-action__badge {
  position: absolute;
  top: 4px;
  left: 50%;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 9px;
  background: var(--gd-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .gd-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .gd-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: unset;
  }
  .gd-menu-button {
    width: 44px;
    height: 44px;
    padding: 11px;
    flex: none;
  }
  .gd-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
  }
  .gd-nav {
    display: none;
  }
  .gd-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex: none;
  }
  .gd-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    flex-direction: row;
  }
  .gd-action__label {
    display: none;
  }
  .gd-action svg {
    width: 28px;
    height: 28px;
    flex: none;
  }
  body.gd-menu-open {
    overflow: hidden;
  }
  .gd-mobile-menu-overlay {
    position: fixed;
    top: var(--gd-header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 940;
    background: rgba(23, 21, 18, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .gd-mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .gd-mobile-menu {
    top: var(--gd-header-h);
    left: 0;
    right: auto;
    width: 80%;
    max-width: 360px;
    height: calc(100svh - var(--gd-header-h));
    max-height: none;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.32s ease;
    box-shadow: none;
    border-top: 1px solid #e6e0d6;
  }
  .gd-mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }
}
.gd-ticker__link::after {
  content: "›" !important;
  display: inline-block !important;
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .gd-ticker__link {
    font-size: 12.5px;
  }
  .gd-ticker__link::after {
    font-size: 13.5px;
  }
}
.gd-ticker__link::after {
  content: "›" !important;
  display: inline-block !important;
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .gd-ticker__link {
    font-size: 12.5px;
  }
  .gd-ticker__link::after {
    font-size: 13.5px;
  }
}
@media (min-width: 1101px) {
  .gd-nav__link {
    font-size: 15px;
  }
  .gd-action svg {
    width: 26px;
    height: 26px;
  }
  .gd-action__label {
    font-size: 11px;
  }
}
/* ティッカー本文のサイズ調整（_design.scss の 13px を上書き） */
.gd-ticker__text {
  font-size: 14px;
}
.gd-header {
  --gd-accent: #c39d4a;
  --gd-accent-dark: #b88b2d;
}
html {
  --gd-accent: #c39d4a;
  --gd-accent-dark: #b88b2d;
}