:root {
  --fm-ink: #171827;
  --fm-ink-soft: #454657;
  --fm-paper: #fffdf7;
  --fm-surface: #ffffff;
  --fm-cream: #fff3d7;
  --fm-blue: #1238c5;
  --fm-blue-dark: #172260;
  --fm-orange: #ff6847;
  --fm-yellow: #ffd53e;
  --fm-aqua: #34c8c4;
  --fm-pink: #f5b7c7;
  --fm-line: #d9d8d0;
  --fm-line-dark: #2a2b3b;
  --fm-error: #b42318;
  --fm-success: #067647;
  --fm-shadow: 0 18px 50px rgba(23, 24, 39, 0.1);
  --fm-sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "YuGothic", "Noto Sans JP", Arial, sans-serif;
  --fm-serif: Georgia, "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    serif;
  --fm-container: 1180px;
  --fm-header-height: 82px;
  --fm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fm-header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--fm-paper);
  color: var(--fm-ink);
  font-family: var(--fm-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--fm-aqua);
  outline-offset: 4px;
}

::selection {
  background: var(--fm-yellow);
  color: var(--fm-ink);
}

.fm-skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border: 2px solid var(--fm-ink);
  background: var(--fm-yellow);
  color: var(--fm-ink);
  font-weight: 800;
  text-decoration: none;
}

.fm-skip-link:focus {
  transform: translateY(0);
}

.fm-inner {
  width: min(var(--fm-container), calc(100% - 48px));
  margin-inline: auto;
}

.fm-inner--narrow {
  max-width: 900px;
}

.fm-section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.fm-section--compact {
  padding-block: clamp(56px, 7vw, 92px);
}

.fm-section--blue {
  overflow: hidden;
  background: var(--fm-blue-dark);
  color: #fff;
}

.fm-section--cream {
  background: var(--fm-cream);
}

.fm-section--white {
  background: var(--fm-surface);
}

.fm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--fm-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fm-kicker::before {
  width: 30px;
  height: 3px;
  background: currentColor;
  content: "";
}

.fm-section--blue .fm-kicker,
.fm-footer .fm-kicker {
  color: var(--fm-yellow);
}

.fm-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(2.6rem, 6.6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.fm-title--medium {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.03;
}

.fm-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--fm-ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.9;
}

.fm-section--blue .fm-lead {
  color: rgba(255, 255, 255, 0.76);
}

.fm-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.fm-section-head__copy {
  max-width: 760px;
}

.fm-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    gap 240ms var(--fm-ease),
    color 240ms ease;
}

.fm-text-link::after {
  content: "↗";
  font-size: 1.1em;
}

.fm-text-link:hover {
  gap: 18px;
  color: var(--fm-orange);
}

.fm-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 2px solid var(--fm-ink);
  border-radius: 0;
  background: var(--fm-ink);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition:
    transform 240ms var(--fm-ease),
    background 240ms ease,
    color 240ms ease,
    border-color 240ms ease;
}

.fm-btn::after {
  content: "→";
  font-size: 1.12rem;
}

.fm-btn:hover {
  transform: translateY(-3px);
  border-color: var(--fm-orange);
  background: var(--fm-orange);
}

.fm-btn--light {
  border-color: #fff;
  background: #fff;
  color: var(--fm-ink);
}

.fm-btn--outline {
  background: transparent;
  color: var(--fm-ink);
}

.fm-btn--outline:hover {
  color: #fff;
}

.fm-btn--blue {
  border-color: var(--fm-blue);
  background: var(--fm-blue);
}

.fm-btn--yellow {
  border-color: var(--fm-yellow);
  background: var(--fm-yellow);
  color: var(--fm-ink);
}

.fm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Header */
.fm-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(23, 24, 39, 0.15);
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(16px);
}

.fm-header__inner {
  display: flex;
  width: min(1320px, calc(100% - 40px));
  min-height: var(--fm-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-inline: auto;
}

.fm-header__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 210px;
  flex: 0 0 210px;
  overflow: hidden;
  text-decoration: none;
}

.fm-header__logo img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  object-position: center 41%;
}

.fm-header__logo img[src*="nav_01_home"] {
  height: auto;
  object-fit: initial;
}

.fm-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
}

.fm-header__nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--fm-ink);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fm-header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--fm-orange);
  content: "";
  transition: transform 260ms var(--fm-ease);
}

.fm-header__nav-link:hover::after,
.fm-header__nav-link.is-active::after,
.fm-header__nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.fm-header__burger {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--fm-line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--fm-ink);
  cursor: pointer;
}

.fm-header__burger span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    top 220ms ease,
    transform 220ms ease,
    opacity 160ms ease;
}

.fm-header__burger span:nth-child(1) {
  top: 15px;
}

.fm-header__burger span:nth-child(2) {
  top: 22px;
}

.fm-header__burger span:nth-child(3) {
  top: 29px;
}

.fm-header__burger[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.fm-header__burger[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.fm-header__overlay {
  display: none;
}

.fm-header-spacer {
  display: none;
}

/* Hero */
.fm-hero {
  position: relative;
  min-height: min(600px, calc(100svh - var(--fm-header-height)));
  overflow: hidden;
  border-bottom: 1px solid var(--fm-line-dark);
  background:
    linear-gradient(rgba(23, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 39, 0.06) 1px, transparent 1px),
    var(--fm-cream);
  background-size: 48px 48px;
}

.fm-hero::before {
  position: absolute;
  top: -11vw;
  right: -8vw;
  width: clamp(330px, 45vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fm-yellow);
  content: "";
}

.fm-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -23vw;
  width: clamp(460px, 56vw, 900px);
  aspect-ratio: 1;
  border: clamp(42px, 6vw, 90px) solid var(--fm-aqua);
  border-radius: 50%;
  content: "";
}

.fm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(600px, calc(100svh - var(--fm-header-height)));
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 20px;
  padding-block: clamp(30px, 4vh, 50px);
}

.fm-hero__copy {
  position: relative;
  z-index: 2;
}

.fm-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.fm-hero__eyebrow span {
  padding: 5px 9px;
  background: var(--fm-blue);
  color: #fff;
}

.fm-hero__title {
  max-width: 820px;
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(3.25rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.fm-hero__title em {
  display: block;
  color: var(--fm-blue);
  font-style: italic;
}

.fm-hero__lead {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.85;
}

.fm-hero .fm-actions {
  margin-top: 24px;
}

.fm-hero__art {
  position: relative;
  align-self: stretch;
}

.fm-hero__character {
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: -6%;
  width: min(760px, 64vw);
  max-width: none;
  filter: drop-shadow(0 30px 30px rgba(22, 28, 70, 0.16));
}

.fm-hero__stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 12%;
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--fm-ink);
  border-radius: 50%;
  background: var(--fm-orange);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.fm-hero__note {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 10%;
  padding: 10px 14px;
  border: 1px solid var(--fm-ink);
  background: var(--fm-paper);
  font-family: var(--fm-serif);
  font-size: 0.82rem;
  font-style: italic;
  transform: rotate(-3deg);
}

.fm-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--fm-line-dark);
  background: var(--fm-blue);
  color: #fff;
}

.fm-marquee__track {
  display: flex;
  width: max-content;
  animation: fm-marquee 32s linear infinite;
}

.fm-marquee__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px 28px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
}

.fm-marquee__item::after {
  color: var(--fm-yellow);
  content: "✦";
  font-size: 1rem;
}

@keyframes fm-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Information */
.fm-info-list {
  border-top: 1px solid var(--fm-line-dark);
}

.fm-info-card {
  display: grid;
  grid-template-columns: 145px 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--fm-line-dark);
  text-decoration: none;
  transition:
    padding 240ms var(--fm-ease),
    background 240ms ease;
}

.fm-info-card:hover {
  padding-inline: 18px;
  background: var(--fm-cream);
}

.fm-info-card__date {
  font-family: var(--fm-serif);
  font-size: 1.05rem;
  font-style: italic;
}

.fm-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid currentColor;
  color: var(--fm-blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fm-info-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 720;
  line-height: 1.5;
}

.fm-info-card__arrow {
  font-size: 1.4rem;
  transition: transform 240ms var(--fm-ease);
}

.fm-info-card:hover .fm-info-card__arrow {
  transform: translate(4px, -4px);
}

/* Artist cards */
.fm-artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 18px;
}

.fm-artist-card {
  position: relative;
  display: block;
  text-decoration: none;
}

.fm-artist-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--fm-line-dark);
  background:
    linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.35)),
    var(--fm-aqua);
}

.fm-artist-card:nth-child(3n + 2) .fm-artist-card__media {
  background-color: var(--fm-pink);
}

.fm-artist-card:nth-child(3n + 3) .fm-artist-card__media {
  background-color: var(--fm-yellow);
}

.fm-artist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: transform 600ms var(--fm-ease);
}

.fm-artist-card:hover .fm-artist-card__media img {
  transform: scale(1.05);
}

.fm-artist-card__media img[src*="portrait_"] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56%;
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(23, 24, 39, 0.18);
  object-fit: cover;
}

.fm-artist-card:hover .fm-artist-card__media img[src*="portrait_"] {
  transform: translate(-50%, -50%) scale(1.06);
}

.fm-artist-card__number {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--fm-paper);
  color: var(--fm-ink);
  font-family: var(--fm-serif);
  font-size: 0.78rem;
  font-style: italic;
}

.fm-artist-card__body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.fm-artist-card__label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fm-artist-card__name {
  margin: 0;
  color: #fff;
  font-family: var(--fm-serif);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.fm-artist-card__arrow {
  color: var(--fm-yellow);
  font-size: 1.5rem;
  line-height: 1;
}

.fm-artist-aside {
  position: absolute;
  right: -30px;
  bottom: -72px;
  width: clamp(190px, 22vw, 340px);
  pointer-events: none;
}

/* Shop */
.fm-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.fm-shop-character {
  position: relative;
  min-height: 560px;
}

.fm-shop-character::before {
  position: absolute;
  inset: 8% 2% 4% 2%;
  border: 1px solid var(--fm-ink);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(23, 24, 39, 0.12) 50%),
    linear-gradient(transparent 49.7%, rgba(23, 24, 39, 0.12) 50%),
    var(--fm-yellow);
  background-size: 30px 30px;
  content: "";
  transform: rotate(-3deg);
}

.fm-shop-character img {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: 0;
  width: 125%;
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(23, 24, 39, 0.18));
}

.fm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.fm-product-card {
  display: block;
  min-width: 0;
  text-decoration: none;
}

.fm-product-card__image {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--fm-line-dark);
  background: #fff;
}

.fm-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--fm-ease);
}

.fm-product-card:hover .fm-product-card__image img {
  transform: scale(1.05) rotate(1deg);
}

.fm-product-card__code {
  margin: 12px 0 3px;
  color: var(--fm-blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.fm-product-card__title {
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
}

/* About / editorial */
.fm-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(46px, 9vw, 130px);
}

.fm-editorial-copy {
  max-width: 760px;
}

.fm-editorial-copy p {
  margin: 0 0 1.4em;
}

.fm-quote {
  margin: 0;
  padding: 34px 0 34px 34px;
  border-left: 8px solid var(--fm-orange);
  font-family: var(--fm-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.fm-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--fm-line-dark);
  border-left: 1px solid var(--fm-line-dark);
}

.fm-stat {
  min-height: 160px;
  padding: 26px;
  border-right: 1px solid var(--fm-line-dark);
  border-bottom: 1px solid var(--fm-line-dark);
  background: var(--fm-surface);
}

.fm-stat__number {
  margin: 0;
  color: var(--fm-blue);
  font-family: var(--fm-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.fm-stat__label {
  margin: 12px 0 0;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Contact */
.fm-contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fm-line-dark);
  background: var(--fm-yellow);
}

.fm-contact-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 48px;
  padding: clamp(38px, 7vw, 86px);
}

.fm-contact-panel::after {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 480px;
  aspect-ratio: 1;
  border: 70px solid var(--fm-orange);
  border-radius: 50%;
  content: "";
}

.fm-contact-panel__title {
  max-width: 800px;
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(2.9rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.fm-contact-panel__copy {
  margin: 24px 0 0;
  max-width: 650px;
  font-weight: 600;
}

.fm-contact-character {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: -100px;
  width: 330px;
  pointer-events: none;
}

.fm-contact-panel .fm-actions {
  position: relative;
  z-index: 3;
}

/* Newsletter form */
.fm-newsletter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.fm-form-field {
  display: grid;
  gap: 7px;
}

.fm-form-field:first-child {
  grid-column: 1 / -1;
}

.fm-form-field label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fm-form-field input {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.fm-form-field input:focus {
  border-color: var(--fm-yellow);
  background: rgba(255, 255, 255, 0.16);
}

.fm-newsletter .fm-btn {
  align-self: end;
}

.fm-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.fm-footer {
  padding: 74px 0 28px;
  background: var(--fm-ink);
  color: #fff;
}

.fm-footer__grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 48px;
}

.fm-footer__logo {
  width: 220px;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
}

.fm-footer__logo img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  object-position: center 41%;
}

.fm-footer__logo img[src*="nav_01_home"] {
  height: auto;
  object-fit: initial;
}

.fm-footer__brand-desc {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.fm-footer__heading {
  margin: 0 0 18px;
  color: var(--fm-yellow);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fm-footer__links {
  display: grid;
  gap: 9px;
}

.fm-footer__link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.fm-footer__link:hover {
  color: var(--fm-yellow);
  text-decoration: underline;
}

.fm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fm-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.fm-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.fm-socials a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fm-socials a:hover {
  color: var(--fm-yellow);
}

/* Inner pages */
.fm-page-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 142px) 0 clamp(58px, 8vw, 105px);
  border-bottom: 1px solid var(--fm-line-dark);
  background:
    radial-gradient(circle at 88% 24%, var(--fm-yellow) 0 11%, transparent 11.2%),
    linear-gradient(115deg, transparent 70%, rgba(52, 200, 196, 0.38) 70%),
    var(--fm-cream);
}

.fm-page-banner::after {
  position: absolute;
  right: 3%;
  bottom: -100px;
  width: 250px;
  aspect-ratio: 1;
  border: 35px solid var(--fm-orange);
  border-radius: 50%;
  content: "";
}

.fm-page-banner__label {
  margin: 0 0 16px;
  color: var(--fm-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.fm-page-banner__title {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(3rem, 8vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.fm-page-intro {
  display: grid;
  grid-template-columns: 160px minmax(0, 680px);
  gap: 32px;
  margin-bottom: clamp(46px, 8vw, 90px);
}

.fm-page-intro__index {
  color: var(--fm-orange);
  font-family: var(--fm-serif);
  font-size: 1.25rem;
  font-style: italic;
}

.fm-page-intro p {
  margin: 0;
  color: var(--fm-ink-soft);
  font-size: 1.06rem;
}

.fm-page-content {
  color: var(--fm-ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.fm-page-content::after {
  display: block;
  clear: both;
  content: "";
}

.fm-page-content h2,
.fm-page-content h3,
.fm-page-content h4 {
  clear: both;
  color: var(--fm-ink);
  font-family: var(--fm-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.fm-page-content h2 {
  margin: 2em 0 0.7em;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.fm-page-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.fm-page-content h4 {
  margin: 1.6em 0 0.55em;
  font-size: 1.4rem;
}

.fm-page-content p {
  margin: 0 0 1.25em;
}

.fm-page-content > img[align="left"],
.fm-page-content > img[align="right"] {
  width: clamp(140px, 22vw, 230px);
  height: auto;
  margin: 0 30px 24px 0;
  border: 1px solid var(--fm-line-dark);
  object-fit: cover;
}

.fm-page-content > img[align="right"] {
  margin: 0 0 24px 30px;
}

.fm-page-content > img[src*="fmusic_banner"] {
  display: none;
}

.fm-page-content ol,
.fm-page-content ul {
  margin: 1.2em 0;
  padding-left: 1.4em;
}

.fm-page-content a:not(.fm-btn) {
  color: var(--fm-blue);
}

.fm-page-content iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.fm-spotify-embed {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  background: #bd0019;
}

.fm-listen-section {
  padding-top: clamp(96px, 11vw, 164px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.fm-mt-8 {
  margin-top: 48px;
}

/* Artist directory */
.fm-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fm-line-dark);
}

.fm-filter label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fm-filter input {
  width: min(100%, 430px);
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--fm-line-dark);
  border-radius: 0;
  background: #fff;
  color: var(--fm-ink);
}

.fm-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fm-line-dark);
  border-left: 1px solid var(--fm-line-dark);
}

.fm-directory-card {
  display: grid;
  min-height: 260px;
  grid-template-rows: 1fr auto;
  padding: 20px;
  border-right: 1px solid var(--fm-line-dark);
  border-bottom: 1px solid var(--fm-line-dark);
  background: var(--fm-surface);
  text-decoration: none;
  transition:
    background 240ms ease,
    color 240ms ease;
}

.fm-directory-card:hover {
  background: var(--fm-blue);
  color: #fff;
}

.fm-directory-card[hidden] {
  display: none;
}

.fm-directory-card__image {
  width: 108px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--fm-cream);
}

.fm-directory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.fm-directory-card__index {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
}

.fm-directory-card__name {
  margin: 0;
  font-family: var(--fm-serif);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.fm-directory-card__arrow {
  color: var(--fm-orange);
  font-size: 1.2rem;
}

.fm-directory-card:hover .fm-directory-card__arrow {
  color: var(--fm-yellow);
}

.fm-filter-empty {
  display: none;
  margin: 26px 0 0;
  padding: 24px;
  border: 1px solid var(--fm-line-dark);
}

.fm-filter-empty.is-visible {
  display: block;
}

/* Timeline */
.fm-timeline {
  border-top: 1px solid var(--fm-line-dark);
}

.fm-timeline__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  padding: 27px 0;
  border-bottom: 1px solid var(--fm-line-dark);
}

.fm-timeline__year {
  margin: 0;
  color: var(--fm-blue);
  font-family: var(--fm-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1;
}

.fm-timeline__copy {
  display: grid;
  gap: 12px;
}

.fm-timeline__copy p {
  margin: 0;
}

.fm-timeline__copy .fm-ja {
  font-weight: 650;
}

.fm-timeline__copy .fm-en {
  color: var(--fm-ink-soft);
  font-family: var(--fm-serif);
  font-size: 0.95rem;
  font-style: italic;
}

/* Contact page */
.fm-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: clamp(38px, 8vw, 100px);
}

.fm-contact-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--fm-line-dark);
  background: var(--fm-surface);
}

.fm-contact-card + .fm-contact-card {
  margin-top: 18px;
}

.fm-contact-card__label {
  margin: 0 0 12px;
  color: var(--fm-blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fm-contact-card__title {
  margin: 0 0 16px;
  font-family: var(--fm-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.fm-contact-card address {
  font-style: normal;
}

.fm-privacy {
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid var(--fm-line-dark);
}

.fm-privacy h2 {
  margin: 0 0 24px;
  font-family: var(--fm-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

.fm-privacy h3 {
  margin: 1.8em 0 0.5em;
  font-size: 1.05rem;
}

.fm-privacy p,
.fm-privacy li {
  color: var(--fm-ink-soft);
}

/* About page */
.fm-about-portrait {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--fm-line-dark);
  background: var(--fm-yellow);
}

.fm-about-portrait img {
  position: absolute;
  right: -38%;
  bottom: -8%;
  width: 145%;
  max-width: none;
}

.fm-definition-list {
  margin: 0;
  border-top: 1px solid var(--fm-line-dark);
}

.fm-definition-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--fm-line);
}

.fm-definition-list dt {
  color: var(--fm-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fm-definition-list dd {
  margin: 0;
}

/* Legacy shop, preserved forms and embeds */
.fm-shop-page {
  background: var(--fm-paper) !important;
  color: var(--fm-ink);
  font-family: var(--fm-sans);
}

.fm-shop-page.fm-enhanced > section > .inner:first-child {
  display: none;
}

.fm-shop-page > section {
  padding: 0 0 90px;
}

.fm-shop-page > section > .pickup {
  margin: 0;
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 213, 62, 0.32), transparent 26%),
    var(--fm-ink) !important;
}

.fm-shop-page .inner {
  width: min(var(--fm-container), calc(100% - 48px));
  max-width: var(--fm-container);
  margin-inline: auto;
}

.fm-shop-page .fm-header__nav-link {
  color: var(--fm-ink) !important;
}

.fm-shop-page .pickup h2,
.fm-shop-page .pickup h3,
.fm-shop-page .pickup h4 {
  color: var(--fm-yellow) !important;
  font-family: var(--fm-serif) !important;
  font-style: normal !important;
  line-height: 1.08 !important;
}

.fm-shop-page .pickup h2 {
  font-size: clamp(2.3rem, 5vw, 5rem) !important;
}

.fm-shop-page .pickup .main {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.fm-shop-page .pickup .main::before {
  opacity: 0.35;
}

.fm-shop-page .pickup p,
.fm-shop-page .pickup dd {
  color: rgba(255, 255, 255, 0.82);
}

.fm-shop-page .pickup a {
  color: #fff;
}

.fm-shop-page .pickup .flex {
  gap: 18px !important;
}

.fm-shop-page .pickup .flex > a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 240ms var(--fm-ease),
    border-color 240ms ease;
}

.fm-shop-page .pickup .flex > a:hover {
  transform: translateY(-5px);
  border-color: var(--fm-yellow);
}

.fm-shop-page .message,
.fm-shop-page .lyrics {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.fm-shop-page .cnt {
  border-top: 1px solid var(--fm-line-dark);
}

.fm-shop-page .cnt .dots {
  opacity: 0.32;
}

.fm-shop-page .cnt .flex {
  align-items: center;
  padding-block: 28px;
}

.fm-shop-page .cnt .jacket {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--fm-line-dark);
}

.fm-shop-page .cnt h2 {
  margin: 6px 0 16px;
  font-family: var(--fm-serif);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 400;
}

.fm-shop-page input[type="image"] {
  width: auto;
  max-width: 160px;
}

.fm-shop-page iframe {
  max-width: 100%;
}

/* Legacy catalog and album */
.fm-legacy-catalog,
.fm-legacy-album {
  background: var(--fm-paper) !important;
  color: var(--fm-ink);
  font-family: var(--fm-sans);
}

.fm-legacy-catalog .fm-header__nav-link,
.fm-legacy-album .fm-header__nav-link {
  color: var(--fm-ink) !important;
}

.fm-legacy-catalog.fm-enhanced > table:first-of-type,
.fm-legacy-album.fm-enhanced > table:first-of-type {
  width: min(980px, calc(100% - 48px)) !important;
  margin: 0 auto 90px !important;
  background: transparent;
}

.fm-legacy-catalog.fm-enhanced > table:first-of-type > tbody > tr:first-child,
.fm-legacy-catalog.fm-enhanced > table:first-of-type > tbody > tr:nth-child(2),
.fm-legacy-catalog.fm-enhanced > table:first-of-type > tbody > tr:last-child,
.fm-legacy-album.fm-enhanced > table:first-of-type > tbody > tr:first-child,
.fm-legacy-album.fm-enhanced > table:first-of-type > tbody > tr:nth-child(2),
.fm-legacy-album.fm-enhanced > table:first-of-type > tbody > tr:last-child {
  display: none;
}

.fm-legacy-catalog.fm-enhanced td[width="372"],
.fm-legacy-catalog.fm-enhanced td[width="12"],
.fm-legacy-album.fm-enhanced td[width="372"],
.fm-legacy-album.fm-enhanced td[width="12"] {
  display: none;
}

.fm-legacy-catalog.fm-enhanced td[valign="top"],
.fm-legacy-album.fm-enhanced td[valign="top"] {
  display: block;
  width: 100%;
  color: var(--fm-ink-soft);
  line-height: 1.75;
}

.fm-legacy-catalog.fm-enhanced img[src*="fmusic_banner"],
.fm-legacy-catalog.fm-enhanced img[src*="dotted_rule"],
.fm-legacy-album.fm-enhanced img[src*="fmusic_banner"],
.fm-legacy-album.fm-enhanced img[src*="dotted_rule"] {
  display: none;
}

.fm-legacy-catalog.fm-enhanced img[src*="images/albums/"] {
  width: 150px;
  height: 150px;
  margin: 22px 28px 34px 0;
  border: 1px solid var(--fm-line-dark);
  object-fit: cover;
}

.fm-legacy-catalog.fm-enhanced h2 {
  margin: 36px 0 8px;
  color: var(--fm-ink);
  font-family: var(--fm-serif);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.12;
}

.fm-legacy-catalog.fm-enhanced a,
.fm-legacy-album.fm-enhanced a {
  color: var(--fm-blue);
}

/* Reveal */
.fm-reveal {
  opacity: 1;
  transform: none;
}

.fm-js .fm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms var(--fm-ease),
    transform 720ms var(--fm-ease);
}

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

@media (max-width: 1020px) {
  :root {
    --fm-header-height: 72px;
  }

  .fm-header__inner {
    width: min(100% - 30px, 100%);
  }

  .fm-header__logo {
    width: 180px;
    flex-basis: 180px;
  }

  .fm-header__logo img {
    height: 48px;
  }

  .fm-header__burger {
    display: block;
  }

  .fm-header__nav {
    position: fixed;
    z-index: 1;
    top: var(--fm-header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--fm-header-height));
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--fm-line-dark);
    background: var(--fm-paper);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 360ms var(--fm-ease),
      opacity 240ms ease;
  }

  .fm-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .fm-header__nav-link {
    min-height: 56px;
    justify-content: space-between;
    border-bottom: 1px solid var(--fm-line);
    font-family: var(--fm-serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .fm-header__nav-link::after {
    right: auto;
    bottom: 0;
    width: 60px;
  }

  .fm-hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 1.05fr);
  }

  .fm-hero__character {
    right: -24%;
    width: 720px;
  }

  .fm-hero__stamp {
    right: -2%;
  }

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

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

  .fm-shop-character {
    order: 2;
    min-height: 500px;
  }

  .fm-shop-character img {
    right: -5%;
    width: 108%;
  }

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

  .fm-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 0.7fr);
  }

  .fm-footer__grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .fm-inner,
  .fm-shop-page .inner,
  .fm-legacy-catalog.fm-enhanced > table:first-of-type,
  .fm-legacy-album.fm-enhanced > table:first-of-type {
    width: min(100% - 30px, var(--fm-container)) !important;
  }

  .fm-section {
    padding-block: 72px;
  }

  .fm-section-head {
    display: block;
  }

  .fm-section-head .fm-text-link {
    margin-top: 28px;
  }

  .fm-title {
    font-size: clamp(2.55rem, 14vw, 4.7rem);
  }

  .fm-hero {
    min-height: auto;
  }

  .fm-hero::before {
    top: auto;
    right: -28vw;
    bottom: 18vw;
    width: 90vw;
  }

  .fm-hero::after {
    right: -48vw;
    bottom: -38vw;
    width: 110vw;
  }

  .fm-hero__inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 54px 0 0;
  }

  .fm-hero__title {
    max-width: 600px;
    font-size: clamp(3rem, 13.3vw, 4.2rem);
    line-height: 0.92;
  }

  .fm-hero__line {
    display: block;
  }

  .fm-hero__eyebrow {
    max-width: 100%;
    gap: 9px 12px;
    font-size: 0.64rem;
  }

  .fm-hero__lead {
    margin-top: 26px;
  }

  .fm-hero__art {
    min-height: 520px;
    margin-top: -40px;
  }

  .fm-hero__character {
    right: -23%;
    bottom: -4%;
    width: 760px;
  }

  .fm-hero__stamp {
    top: 21%;
    right: 0;
    width: 104px;
    font-size: 0.58rem;
  }

  .fm-hero__note {
    right: 0;
    bottom: 18px;
  }

  .fm-info-card {
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 10px 16px;
    padding-block: 20px;
  }

  .fm-info-card__category {
    grid-column: 1;
    grid-row: 2;
  }

  .fm-info-card__title {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .fm-info-card__arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .fm-artist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fm-artist-card__media {
    aspect-ratio: 5 / 5.4;
  }

  .fm-artist-aside {
    display: none;
  }

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

  .fm-shop-character {
    min-height: 410px;
  }

  .fm-shop-character img {
    right: -27%;
    width: 140%;
  }

  .fm-editorial-grid,
  .fm-contact-grid {
    grid-template-columns: 1fr;
  }

  .fm-newsletter {
    grid-template-columns: 1fr;
  }

  .fm-form-field:first-child {
    grid-column: auto;
  }

  .fm-stat-grid {
    grid-template-columns: 1fr;
  }

  .fm-stat {
    min-height: 120px;
  }

  .fm-contact-panel__inner {
    display: block;
    padding-bottom: 180px;
  }

  .fm-contact-character {
    right: -62px;
    bottom: -140px;
    width: 280px;
  }

  .fm-contact-panel::after {
    right: -230px;
  }

  .fm-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .fm-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .fm-footer__grid > div:last-child {
    grid-column: auto;
  }

  .fm-footer__bottom {
    align-items: start;
    flex-direction: column;
  }

  .fm-page-banner::after {
    right: -110px;
  }

  .fm-page-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .fm-directory-card {
    min-height: 230px;
    padding: 16px;
  }

  .fm-directory-card__image {
    width: 90px;
  }

  .fm-timeline__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fm-definition-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .fm-about-portrait {
    min-height: 420px;
  }

  .fm-shop-page .pickup .flex {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .fm-header__logo {
    width: 160px;
    flex-basis: 160px;
  }

  .fm-header__logo img {
    height: 43px;
  }

  .fm-hero__art {
    min-height: 440px;
    margin-top: 24px;
  }

  .fm-hero__character {
    right: -37%;
    width: 680px;
  }

  .fm-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fm-actions .fm-btn {
    width: 100%;
  }

  .fm-info-card {
    grid-template-columns: 1fr auto;
  }

  .fm-info-card__date {
    grid-column: 1;
  }

  .fm-info-card__category {
    grid-column: 1;
    grid-row: 2;
  }

  .fm-info-card__title {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-top: 5px;
  }

  .fm-info-card__arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .fm-product-grid {
    grid-template-columns: 1fr;
  }

  .fm-directory {
    grid-template-columns: 1fr;
  }

  .fm-directory-card {
    min-height: 210px;
  }

  .fm-footer__grid {
    grid-template-columns: 1fr;
  }

  .fm-footer__grid > div,
  .fm-footer__grid > div:first-child,
  .fm-footer__grid > div:last-child {
    grid-column: auto;
  }

  .fm-page-content > img[align="left"],
  .fm-page-content > img[align="right"] {
    float: none;
    width: min(210px, 70%);
    margin: 0 0 24px;
  }

  .fm-shop-page .pickup .flex {
    grid-template-columns: 1fr;
  }

  .fm-shop-page .cnt .flex {
    align-items: start;
  }
}

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

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

  .fm-js .fm-reveal {
    opacity: 1;
    transform: none;
  }
}
