@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;700&family=Zen+Kaku+Gothic+New:wght@300;400;500&display=swap');

/* ============================================================
   style.css - mineraln FC subpages
   Top page inspired shared theme
   ============================================================ */

:root {
  --sky-1: #fbfbfa;
  --sky-2: #f7f7f5;
  --sky-3: #f1f2f4;
  --ink: #4f5862;
  --ink-2: #4f5862;
  --ink-soft: #4f5862;
  --ink-ghost: rgba(79, 88, 98, 0.08);
  --glass: rgba(255, 255, 255, 0.38);
  --glass-s: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-border: rgba(255, 255, 255, 0.74);
  --glass-border-soft: rgba(255, 255, 255, 0.38);
  --pearl-blue: rgba(201, 214, 226, 0.34);
  --mist-blue: rgba(214, 224, 233, 0.46);
  --mist-rose: rgba(234, 224, 228, 0.32);
  --surface: rgba(244, 247, 249, 0.82);
  --surface-2: rgba(237, 242, 245, 0.72);
  --shadow-soft: 0 18px 42px rgba(129, 146, 163, 0.10);
  --shadow-md: 0 24px 60px rgba(129, 146, 163, 0.14);
  --shadow-lg: 0 32px 90px rgba(129, 146, 163, 0.18);
  --shadow-deep: rgba(123, 141, 160, 0.18);
  --font-wordmark: 'Cormorant Garamond', serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  --font-display-en: 'Cormorant Garamond', serif;
  --max-w: 1100px;
  --header-h: 64px;
  --header-height: var(--header-h);
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --ease: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition: var(--ease);

  /* legacy aliases for page-local CSS */
  --white: #ffffff;
  --c-bg: var(--sky-2);
  --blue-50: #eef4f7;
  --blue-100: #dde8ef;
  --blue-200: #c4d3df;
  --blue-accent: #687687;
  --pink-50: #f3eeef;
  --pink-100: #eadfe3;
  --pink-200: #d9c4cb;
  --pink-accent: #93808b;
  --lav-50: #f1f1ef;
  --lav-100: #e3e3df;
  --lav-accent: #7d8791;
  --c-text: var(--ink);
  --c-text-md: var(--ink-2);
  --c-text-soft: #4f5862;
  --c-text-muted: var(--c-text-soft);
  --c-text-strong: var(--ink);
  --glass-bg: rgba(255, 255, 255, 0.64);
  --glass-bg-s: rgba(255, 255, 255, 0.42);
  --c-card: rgba(255, 255, 255, 0.60);
  --c-surface: rgba(246, 248, 250, 0.84);
  --c-border: rgba(148, 165, 181, 0.22);
  --glass-border-s: rgba(148, 165, 181, 0.16);
  --c-gold: #6f7f91;
  --c-gold-dark: #5f6d7d;
  --c-gold-light: #8390a1;
  --c-member: #7f8d9b;
  --c-danger: #a06b74;
  --shadow: var(--shadow-md);
  --shadow-sm: 0 10px 24px rgba(129, 146, 163, 0.10);
  --shadow-gold: 0 24px 50px rgba(123, 141, 160, 0.16);
}

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

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

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }

  body {
    font-weight: 400;
  }
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.12) 26%, transparent 38%),
    radial-gradient(circle at 82% 10%, rgba(222, 231, 239, 0.45) 0%, rgba(222, 231, 239, 0.06) 28%, transparent 40%),
    radial-gradient(circle at 72% 76%, rgba(232, 236, 241, 0.38) 0%, rgba(232, 236, 241, 0.04) 30%, transparent 44%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 44%, var(--sky-3) 100%);
  cursor: url('../assets/paw-cursor.png') 20 8, auto;
}

body.has-sub-bottom-bar {
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

body.has-sub-bottom-bar.has-sub-bottom-bar-auth {
  padding-bottom: calc(142px + env(safe-area-inset-bottom, 0px));
}

body.has-sub-bottom-bar.sub-bottom-bar-hidden,
body.has-sub-bottom-bar.has-sub-bottom-bar-auth.sub-bottom-bar-hidden {
  padding-bottom: 0;
}

/* PC: フッター下（©表記の下）の余白を控えめに */
@media (min-width: 641px) {
  body.has-sub-bottom-bar {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

body.nav-open::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 920;
  background: rgba(79, 88, 98, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.16;
  z-index: -2;
}

::selection {
  background: rgba(202, 215, 228, 0.55);
}

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

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: opacity var(--ease), color var(--ease), transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

a,
button,
.btn,
.hamburger,
.social-link {
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.84;
  }
}

ul,
ol {
  list-style: none;
}

a,
button,
.btn,
.hamburger,
.global-nav a,
.mobile-nav a,
.site-logo,
.auth-logo a,
.plan-card,
.news-card,
.content-preview-item,
.category-list-item,
.mypage-nav__item,
.tab-btn,
.view-btn,
.inquiry-type-card,
.plan-select-card {
  cursor: url('../assets/button-cursor.png') 24 12, pointer;
}

.container {
  width: min(92%, var(--max-w));
  margin-inline: auto;
}

.main-content {
  position: relative;
  z-index: 1;
}

.page-hero + .main-content {
  margin-top: 0;
}

.section {
  padding: 92px 0;
}

.main-content > .section:first-child {
  padding-top: 0;
}

.main-content > .section:last-child {
  padding-bottom: 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(240, 244, 247, 0.66) 100%);
}

.section-title,
.panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.section-title {
  text-align: center;
  margin-bottom: 0.35em;
}

.section-title::after {
  content: '';
  display: block;
  width: 46px;
  height: 1px;
  margin: 1.1rem auto 0;
  background: rgba(79, 88, 98, 0.18);
}

.section-subtitle {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.95rem;
}

.glass-card,
.contact-form-card,
.contact-info-card,
.legal-body,
.toc-card,
.sidebar-widget,
.mypage-sidebar__profile,
.mypage-nav,
.info-section,
.plan-info-box,
.benefit-item,
.news-card,
.event-card,
.content-preview-item,
.plan-card,
.auth-card,
.omission-box,
.tokusho-card,
.checkout-summary,
.plan-select-card,
.inquiry-type-card,
.alert {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(242, 247, 250, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  position: relative;
}

.glass-card::before,
.contact-form-card::before,
.contact-info-card::before,
.legal-body::before,
.toc-card::before,
.sidebar-widget::before,
.mypage-sidebar__profile::before,
.mypage-nav::before,
.info-section::before,
.plan-info-box::before,
.benefit-item::before,
.news-card::before,
.event-card::before,
.plan-card::before,
.auth-card::before,
.omission-box::before,
.tokusho-card::before,
.checkout-summary::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 14px 22px;
  transition: padding var(--ease);
}

.site-header.is-solid {
  padding-top: 0;
}

.header-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 9px 14px 9px 16px;
  background: rgba(108, 121, 136, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 30px rgba(79, 88, 98, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.site-header.is-solid .header-inner {
  border-radius: 0 0 22px 22px;
}

.site-logo {
  width: clamp(92px, 12vw, 118px);
  height: 40px;
  display: flex;
  align-items: center;
  justify-self: start;
  margin-left: -12px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  flex-shrink: 0;
}

.site-logo::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url('../assets/header-logo-cropped.png') center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.site-logo span {
  display: none;
}

/* FC専用：テキスト2段ロゴ */
.site-logo--fc {
  width: auto;
  height: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28em;
  letter-spacing: 0.04em;
}

.site-logo--fc::before {
  display: none;
}

.site-logo--fc span {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.32em;
  font-style: normal;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1;
}

.site-logo--fc span::before,
.site-logo--fc span::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.site-official-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  padding: 0.28em 0.8em;
  border-radius: 999px;
  border: 1px solid rgba(148, 165, 181, 0.22);
  background: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--ease), border-color var(--ease);
  margin-left: 0.6rem;
}

.site-official-link::before {
  content: '←';
  font-size: 0.72em;
}

/* ロゴ画像バリアント（FCページの公式サイトリンク） */
.site-official-link--logo {
  padding: 0 0 0 0.5rem;
  margin-left: -0.4rem;
  font-size: 0;
  letter-spacing: 0;
  color: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  box-shadow: none;
}

.site-official-link--logo::before {
  content: none;
}

.site-official-link--logo::after {
  content: '';
  display: block;
  width: 92px;
  height: 28px;
  background: url('../assets/header-logo-cropped.png') center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  transition: opacity var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .site-official-link--logo:hover {
    opacity: 1;
  }
  .site-official-link--logo:hover::after {
    opacity: 0.92;
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-official-link:hover {
    opacity: 1;
    border-color: rgba(148, 165, 181, 0.45);
  }
}

.global-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 0;
  flex: none;
  min-width: max-content;
}

.global-nav a,
.header-cta > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.35em 0;
  border: none;
  background: none;
  backdrop-filter: none;
  white-space: nowrap;
}

.global-nav a:hover,
.header-cta > a:not(.btn):hover,
.global-nav a[aria-current='page'] {
  color: rgba(255, 255, 255, 0.98);
  background: none;
  border-color: transparent;
  box-shadow: none;
  opacity: 1;
}

/* ── ドロップダウン ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
  padding: 0.35em 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown__trigger::after {
  content: '';
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.08em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.12em);
  transition: transform 0.2s;
}

.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: rotate(-135deg) translateY(-0.1em);
}

.nav-dropdown__trigger:hover,
.nav-dropdown.is-open .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 0.98);
  background: none;
  border-color: transparent;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 11rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 165, 181, 0.18);
  border-radius: 16px;
  padding: 0.4rem;
  z-index: 200;
  box-shadow: 0 16px 36px rgba(79, 88, 98, 0.14);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.58em 1em;
  font-size: 0.80rem;
  letter-spacing: 0.07em;
  color: var(--ink);
  border-radius: 10px;
  border: none;
  background: none;
  backdrop-filter: none;
  white-space: nowrap;
}

.nav-dropdown__menu a[aria-current='page'] {
  color: var(--ink);
  background: rgba(79, 88, 98, 0.06);
  font-weight: 400;
}

.nav-dropdown__menu a:hover {
  color: var(--ink);
  background: rgba(79, 88, 98, 0.06);
  border: none;
  box-shadow: none;
}

/* ── ドロップダウン ここまで ── */

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: nowrap;
  margin-left: auto;
}

.header-cta .btn {
  min-height: 40px;
  padding: 0.52em 1.08em;
  border-radius: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.header-cta .btn--ghost {
  color: #465463;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 248, 0.93) 100%);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 10px 24px rgba(79, 88, 98, 0.14);
}

.header-cta .btn--ghost:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 250, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.68);
}

.header-cta .btn--sm {
  padding: 0.48em 1em;
  font-size: 0.72rem;
}

.hamburger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  box-shadow: none;
}

.hamburger span {
  width: 16px;
  height: 1.6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(14px + var(--header-h) + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, calc(100vw - 40px));
  max-height: calc(100vh - 96px);
  overflow: auto;
  z-index: 950;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.6rem) 1.35rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 165, 181, 0.22);
  box-shadow: 0 32px 72px rgba(79, 88, 98, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  grid-template-columns: 1fr;
  row-gap: 0;
  align-items: start;
  align-content: start;
  scrollbar-width: thin;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav__sns {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.5rem;
  padding-top: 1.1rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(79, 88, 98, 0.08);
}

.mobile-nav__sns .social-link {
  width: 32px;
  height: 32px;
  color: rgba(79, 88, 98, 0.55);
  border: none;
  background: none;
}

.mobile-nav__sns .social-link:hover {
  color: rgba(79, 88, 98, 0.88);
  background: none;
  transform: translateY(-1px);
}

.mobile-nav__sns .social-link[aria-label='YouTube'] svg path:last-child,
.mobile-nav__social .social-link[aria-label='YouTube'] svg path:last-child {
  fill: white;
  stroke: none;
}

.mobile-nav__section {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0.18rem 0 0.35rem;
  border-top: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  align-self: end;
}

.mobile-nav > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.02rem 0.08rem 0.9rem;
  border-radius: 0;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  border: none;
  background: none;
  white-space: nowrap;
  line-height: 1.45;
  transition: opacity var(--ease), transform var(--ease), color var(--ease);
}

.mobile-nav > a::after {
  content: none;
}

.mobile-nav > a:hover,
.mobile-nav > a[aria-current='page'] {
  opacity: 1;
  color: var(--ink);
  background: none;
  box-shadow: none;
  transform: translateX(2px);
}

.mobile-nav > a {
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  position: relative;
  padding-left: 0;
  justify-content: center;
  text-align: center;
}

.mobile-nav > a::before {
  display: none;
}

.mobile-nav__social {
  grid-column: 1 / -1;
  grid-row: 8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(79, 88, 98, 0.1);
}

.mobile-nav__social .social-link {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  color: rgba(79, 88, 98, 0.72);
}

.mobile-nav__social .social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.mobile-nav__social .social-link[aria-label='TikTok'] svg {
  transform: translateY(-1px);
}

.mobile-nav__social .social-link:hover {
  background: rgba(79, 88, 98, 0.06);
  color: rgba(79, 88, 98, 0.98);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 134px) 0 18px;
  text-align: center;
  background: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -2%;
  left: 0;
  width: 100%;
  height: min(19vw, 170px);
  background: url('../assets/lace-floral.jpeg') top center / cover no-repeat;
  opacity: 0.28;
  filter: saturate(0.72) brightness(1.03);
  pointer-events: none;
}

.page-hero::after {
  content: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  width: min(92%, 780px);
  padding-top: 0.45rem;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.page-hero--members .page-hero__title {
  font-family: 'Noto Serif JP', serif;
}

.page-hero__lead {
  font-family: var(--font-display-en);
  margin-top: 0.72rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (min-width: 721px) {
  .page-hero {
    padding-top: calc(var(--header-h) + 94px);
  }

  .page-hero::before {
    height: min(16vw, 150px);
  }
}

.btn {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  padding: 0.68em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  white-space: nowrap;
  overflow: hidden;
}

.btn::after {
  display: none;
}

.btn--primary {
  background: linear-gradient(180deg, rgba(125, 137, 151, 0.96) 0%, rgba(96, 108, 121, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(94, 106, 119, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 1;
  background: linear-gradient(180deg, rgba(134, 146, 160, 0.98) 0%, rgba(104, 116, 129, 1) 100%);
}

.btn--ghost,
.btn--outline {
  color: #4f5d6b;
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.94) 0%, rgba(234, 239, 243, 0.92) 100%);
  border-color: rgba(129, 141, 154, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 8px 20px rgba(123, 141, 160, 0.10);
}


.btn--ghost:hover,
.btn--outline:hover {
  transform: translateY(-1px);
  opacity: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 242, 245, 0.96) 100%);
  border-color: rgba(129, 141, 154, 0.34);
}


.btn--outline {
  background: rgba(255, 255, 255, 0.56);
}

.btn--sm {
  padding: 0.5em 1.22em;
  font-size: 0.76rem;
}

.btn--lg {
  padding: 0.92em 2.4em;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: 24px;
}

.alert--info {
  color: var(--ink);
}

.badge-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
  padding: 0.24em 0.72em;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(127, 140, 154, 0.94) 0%, rgba(102, 114, 127, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 6px 18px rgba(123, 141, 160, 0.16);
}

.badge-exclusive::before {
  content: '✦';
  font-size: 0.6rem;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0.2em 0.58em;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, rgba(167, 137, 145, 0.92) 0%, rgba(145, 116, 124, 0.96) 100%);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  margin-bottom: 0.62rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

.required {
  color: var(--c-danger);
  margin-left: 0.28em;
}

.form-input,
.form-textarea,
select {
  width: 100%;
  border: 1px solid rgba(148, 165, 181, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0.94rem 1rem;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 22px rgba(123, 141, 160, 0.06);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease), transform var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(79, 88, 98, 0.36);
}

.form-input:focus,
.form-textarea:focus,
select:focus {
  border-color: rgba(127, 145, 163, 0.48);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(214, 224, 233, 0.38),
    0 12px 24px rgba(123, 141, 160, 0.10);
}

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

.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.form-check input {
  width: 18px;
  height: 18px;
  accent-color: #7b8999;
  flex-shrink: 0;
}

.form-error {
  display: none;
  margin-top: 0.48rem;
  font-size: 0.76rem;
  color: var(--c-danger);
}

.input-toggle-btn {
  color: var(--ink-soft);
}

.input-toggle-btn:hover {
  color: var(--ink);
}

.img-placeholder {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.66) 0%, transparent 28%),
    linear-gradient(145deg, rgba(248, 250, 252, 0.84) 0%, rgba(232, 238, 243, 0.88) 100%);
}

.table,
.tokusho-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(148, 165, 181, 0.22);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.table th,
.table td,
.tokusho-table th,
.tokusho-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 165, 181, 0.16);
  color: var(--ink-2);
  font-size: 0.84rem;
  line-height: 1.8;
}

.table th,
.tokusho-table th {
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(240, 244, 247, 0.88);
}

.table tr:last-child td,
.table tr:last-child th,
.tokusho-table tr:last-child td,
.tokusho-table tr:last-child th {
  border-bottom: none;
}

.table--striped tbody tr:nth-child(even) td {
  background: rgba(246, 248, 250, 0.48);
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.tab-btn,
.view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58em 1.2em;
  border: 1px solid rgba(148, 165, 181, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-2);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.tab-btn.is-active,
.view-btn.is-active,
.category-list-item.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 165, 181, 0.34);
  box-shadow: 0 8px 20px rgba(123, 141, 160, 0.10);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 165, 181, 0.22);
  background: rgba(255, 255, 255, 0.60);
  color: var(--ink-2);
}

.pagination .is-current,
.pagination [aria-current='page'] {
  background: linear-gradient(180deg, rgba(125, 137, 151, 0.96) 0%, rgba(96, 108, 121, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.auth-page {
  position: relative;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66) 0%, transparent 28%),
    url('../assets/water-texture-2.png') center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.auth-card {
  border-radius: 30px;
}

.auth-logo {
  position: relative;
  z-index: 1;
}

.auth-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(270px, 70vw);
  height: 88px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.auth-logo a::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url('../assets/header-logo-cropped.png') center / contain no-repeat;
}

.auth-logo span {
  display: none;
}

.auth-divider {
  height: 1px;
  width: 54px;
  margin-inline: auto;
  background: rgba(79, 88, 98, 0.18);
}

.auth-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.auth-lead,
.auth-footer-links {
  color: var(--ink-soft);
}

.social-btn {
  border-radius: 18px;
}

.toc-card,
.sidebar-widget,
.mypage-sidebar__profile,
.mypage-nav,
.info-section,
.contact-form-card,
.contact-info-card,
.legal-body,
.auth-card,
.omission-box,
.tokusho-card,
.checkout-summary {
  border-radius: 30px;
}

.site-footer {
  margin-top: 18px;
  padding: 16px 24px 2px;
  border-top: 1px solid rgba(79, 88, 98, 0.08);
  background: none;
}

.social-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
}

.social-strip--bar {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  gap: 0.3rem;
}

.bottom-bar--subpage {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(108, 121, 136, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform var(--ease), opacity var(--ease);
}

.bottom-bar--subpage[hidden] {
  display: none !important;
}

body.sub-bottom-bar-hidden .bottom-bar--subpage {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px)));
}

.bottom-bar__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-bar--subpage .social-link {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 0;
  color: rgba(255, 255, 255, 0.96);
  background: none;
  border: none;
  box-shadow: none;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.bottom-bar--subpage .social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(var(--icon-shift, 0));
  overflow: visible;
}

.bottom-bar--subpage .social-link[aria-label='YouTube'] svg {
  width: 19px;
  height: 19px;
}

.bottom-bar--subpage .social-link[aria-label='X'] svg {
  width: 17px;
  height: 17px;
}

.bottom-bar--subpage .social-link[aria-label='TikTok'] svg {
  width: 17px;
  height: 17px;
  --icon-shift: 0px;
}

.bottom-bar--subpage .social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
  opacity: 1;
}

.bottom-bar--subpage .bar-actions {
  display: flex;
  gap: 0.55rem;
}

.bottom-bar--subpage .bar-btn {
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.5em 1.12em;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--ease);
}

.bottom-bar--subpage .bar-btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -60%;
  width: 40%;
  height: 120%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  animation: btn-shimmer 7s ease-in-out infinite;
}

.bottom-bar--subpage .bar-btn--join::after {
  animation-delay: 3.5s;
}

.bottom-bar--subpage .bar-btn--login {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 249, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 8px 20px rgba(123, 141, 160, 0.1);
}

.bottom-bar--subpage .bar-btn--login:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
  opacity: 1;
}

.bottom-bar--subpage .bar-btn--join {
  color: rgba(255, 255, 255, 0.98);
  background: linear-gradient(180deg, rgba(125, 137, 151, 0.96) 0%, rgba(96, 108, 121, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(123, 141, 160, 0.16);
}

.bottom-bar--subpage .bar-btn--join:hover {
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(180deg, rgba(134, 146, 160, 0.98) 0%, rgba(104, 116, 129, 1) 100%);
  opacity: 1;
}

.site-footer::before {
  content: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(148,165,181,0.18);
  color: var(--ink-soft);
  transition: opacity var(--ease), transform var(--ease);
}

.footer-social-link:hover { opacity: 1; transform: translateY(-2px); }
.footer-social-link svg { width: 14px; height: 14px; fill: currentColor; }

.footer-inner {
  width: min(100%, 980px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
}

.footer-copy {
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  text-transform: none;
  color: var(--ink-soft);
}

.footer-disclaimer {
  font-size: 0.62rem;
  color: var(--ink-soft);
  opacity: 1;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
}

.footer-links a,
.footer-links button {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--ink);
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes btn-shimmer {
  0%,
  60% {
    opacity: 0;
    transform: translateX(0);
  }

  65% {
    opacity: 1;
  }

  80%,
  100% {
    opacity: 0;
    transform: translateX(360%);
  }
}

@media (max-width: 1080px) {
  .global-nav {
    gap: 0.72rem;
  }

  .global-nav a,
  .header-cta > a:not(.btn) {
    font-size: 0.76rem;
  }
}

@media (max-width: 960px) {
  .global-nav {
    display: none;
  }

  .header-cta {
    gap: 0.35rem;
  }

  .header-cta .btn--sm {
    padding: 0.46em 0.98em;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 12px;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 6px;
  }

  .section {
    padding: 76px 0;
  }

  .main-content > .section:first-child {
    padding-top: 8px;
  }

  .main-content > .section:last-child {
    padding-bottom: 0;
  }

  .main-content + .site-footer {
    margin-top: 18px;
  }
}

/* PC: フッターのSNSアイコンは非表示（モバイルのみ表示） */
@media (min-width: 641px) {
  .footer-social {
    display: none;
  }
}

@media (max-width: 600px) {
  .news-date,
  .news-title,
  .news-excerpt {
    color: #3c444d;
    font-weight: 500;
  }

  /* フッターSNSアイコン: 丸枠なし（ヒーローのアイコンと同じ） */
  .footer-social-link {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--ink);
  }

  /* ページ見出し（News / Discography）をトップと同じ太さ・濃さに */
  .page-hero__title,
  .section-title,
  .panel-title {
    font-weight: 500;
    color: #3c444d;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    font-weight: 500;
  }

  body,
  body.has-sub-bottom-bar,
  body.has-sub-bottom-bar.has-sub-bottom-bar-auth {
    padding-bottom: 0 !important;
  }

  .bottom-bar--subpage {
    display: none !important;
  }

  body.has-sub-bottom-bar.sub-bottom-bar-hidden,
  body.has-sub-bottom-bar.has-sub-bottom-bar-auth.sub-bottom-bar-hidden {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 14px 18px 1.2rem;
  }

  .bottom-bar--subpage {
    gap: 0.72rem 0.85rem;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .bottom-bar--subpage .bar-btn {
    font-size: 0.68rem;
    padding: 0.5em 1em;
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    min-height: 58px;
    padding: 7px 14px;
    gap: 0.4rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
  }

  .site-header.is-solid .header-inner {
    border-radius: 0;
  }

  .header-cta {
    display: none;
  }

  .site-logo {
    width: 86px;
    height: 30px;
    margin-left: -14px;
  }

  /* FC用ロゴ：モバイル縮小 */
  .site-logo--fc {
    font-size: 1.0rem;
    gap: 0.2em;
  }
  .site-logo--fc span {
    font-size: 0.29em;
    gap: 0.4em;
    letter-spacing: 0.24em;
  }
  .site-logo--fc span::before,
  .site-logo--fc span::after {
    width: 10px;
  }
  .site-official-link--logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    border: none;
  }
  .site-official-link--logo::after {
    width: 70px;
    height: 22px;
  }

  .header-cta .btn {
    min-height: 36px;
    border-radius: 12px;
  }

  .header-cta .btn--sm {
    padding: 0.46em 0.82em;
    font-size: 0.67rem;
    letter-spacing: 0.05em;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .hamburger span {
    width: 14px;
  }

  .mobile-nav {
    top: calc(12px + 58px + 10px);
    width: min(320px, calc(100vw - 40px));
    padding: 1.45rem 1rem 1.1rem;
    border-radius: 22px;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
    justify-items: center;
    align-items: center;
  }


  .mobile-nav__section {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
    padding: 0.12rem 0 0.28rem;
    align-self: center;
  }

  .mobile-nav > a,
  .mobile-nav > a:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin-top: 0;
    padding: 0.86rem 0;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-width: 0;
    padding-left: 0;
  }

  .mobile-nav > a::before {
    display: none;
  }

  .mobile-nav__social {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(79, 88, 98, 0.1);
  }

  .page-hero {
    padding-top: 102px;
    padding-bottom: 14px;
  }

  .page-hero::before {
    top: -6px;
    left: 50%;
    width: calc(100% - 8px);
    height: 94px;
    transform: translateX(-50%);
    opacity: 0.24;
  }

  .page-hero .container {
    padding-top: 0.8rem;
  }

  .page-hero__title {
    font-size: clamp(1.56rem, 6.7vw, 1.96rem);
    line-height: 1.22;
    letter-spacing: 0.1em;
  }

  .page-hero__lead {
    margin-top: 0.38rem;
  }

  .main-content > .section:first-child {
    padding-top: 4px;
  }

  .page-hero__lead,
  .section-subtitle,
  .footer-copy {
    letter-spacing: 0.18em;
  }

  .section-title,
  .panel-title {
    letter-spacing: 0.08em;
  }

  .footer-inner {
    gap: 0.34rem;
  }

  .footer-social {
    margin-bottom: 0.72rem;
  }

  .footer-copy {
    margin: 0;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 0.45rem 0.8rem;
  }

  .footer-links a,
  .footer-links button {
    font-size: 0.72rem;
  }
}

@media (max-width: 520px) {
  .mobile-nav {
    width: min(320px, calc(100vw - 24px));
    padding: 1.2rem 0.9rem 1rem;
    border-radius: 18px;
  }

  .mobile-nav::before {
    width: min(100%, 180px);
    height: 48px;
  }

  .mobile-nav > a,
  .mobile-nav > a:nth-of-type(n) {
    font-size: 0.84rem;
    white-space: normal;
    line-height: 1.35;
    padding: 0.78rem 0;
  }

  .mobile-nav__section {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
    padding-top: 0.14rem;
  }

  .mobile-nav__social {
    gap: 0.7rem;
  }

  .mobile-nav__social .social-link {
    width: auto;
    height: auto;
    flex-basis: auto;
  }
}

@media (min-width: 961px) {
  .mobile-nav > a:nth-of-type(3)::before,
  .mobile-nav > a:nth-of-type(4)::before,
  .mobile-nav > a:nth-of-type(5)::before,
  .mobile-nav > a:nth-of-type(6)::before,
  .mobile-nav > a:nth-of-type(7)::before {
    top: calc(50% + 2px);
    width: 4px;
    height: 4px;
  }

  .mobile-nav > a:nth-of-type(8)::before,
  .mobile-nav > a:nth-of-type(9)::before,
  .mobile-nav > a:nth-of-type(10)::before,
  .mobile-nav > a:nth-of-type(11)::before {
    top: calc(50% + 3px);
  }

  .mobile-nav > a:nth-of-type(1),
  .mobile-nav > a:nth-of-type(2) {
    border-width: 3px;
    margin-top: 0;
    align-self: center;
  }
}

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

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