/* 陶芸Tocoton — QINO(qino.jp) ライトトンマナ: ペールミント地、深緑文字、角ばった画像、細い罫線 */

:root {
  --bg: #d8e6da;
  --bg-soft: #e5efe6;
  --bg-panel: #f3f7f3;
  --ink: #15261c;
  --fg: #1a2e24;
  --fg-muted: rgba(26, 46, 36, 0.62);
  --line: rgba(21, 38, 28, 0.22);
  --line-strong: rgba(21, 38, 28, 0.45);
  --accent: #2d4a38;
  --accent-soft: rgba(45, 74, 56, 0.1);
  --gold: #8a7350;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-logo: "DM Sans", "Zen Kaku Gothic New", sans-serif;
  --font-display: "Cormorant Garamond", "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --space-section: clamp(4rem, 11vw, 8rem);
  --radius: 0;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

a:hover {
  color: var(--accent);
}

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

[hidden] {
  display: none !important;
}

/* —— Header (QINO) —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 0 clamp(1.1rem, 3.5vw, 2.75rem);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  pointer-events: auto;
  background: transparent;
}

.site-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-logo);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__shop {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-logo);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.45rem 0;
}

.header__shop .icon-bag {
  flex-shrink: 0;
}

.menu-burger {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #f4f7f4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.menu-burger:hover {
  transform: scale(1.04);
  background: #1e3328;
}

.menu-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(21, 38, 28, 0.28);
  backdrop-filter: blur(2px);
}

/* —— Drawer —— */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--bg-panel);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  overflow-y: auto;
  pointer-events: auto;
}

body.drawer-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer__inner {
  padding: calc(var(--header-h) + 1.25rem) 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-drawer a {
  font-family: var(--font-logo);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.nav-drawer a.is-active {
  color: var(--gold);
}

.nav-dropdown__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font-logo);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
}

.nav-dropdown__btn::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.5;
}

.nav-dropdown__btn[aria-expanded="true"]::after {
  content: "−";
}

.nav-dropdown__panel {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0 0.5rem;
  gap: 0;
}

.nav-dropdown__panel a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
  border-bottom: none;
  padding: 0.45rem 0 0.45rem 0.75rem;
  color: var(--fg-muted);
}

.nav-dropdown__panel a:hover {
  color: var(--ink);
}

/* —— 全画面ヘッダー（写真一面＋テキスト／トップ共通）—— */
body:has(.page-hero-cover) .site-header .logo,
body:has(.q-hero) .site-header .logo {
  color: #eef4ee;
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.45);
}

body:has(.page-hero-cover) .site-header .header__shop,
body:has(.q-hero) .site-header .header__shop {
  color: #eef4ee;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.page-hero-cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 clamp(2.25rem, 7vh, 4rem);
  overflow: hidden;
}

.page-hero-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-cover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-cover__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(21, 38, 28, 0.35) 0%,
    rgba(21, 38, 28, 0.45) 40%,
    rgba(21, 38, 28, 0.78) 100%
  );
  pointer-events: none;
}

.page-hero-cover__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.page-hero-cover .section-label {
  color: rgba(244, 248, 246, 0.72);
}

.page-hero-cover h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  font-weight: 600;
  line-height: 1.06;
  margin: 0 0 1rem;
  color: #fafcf9;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.page-hero-cover .prose {
  color: rgba(245, 250, 247, 0.9);
  max-width: 38em;
  margin-bottom: 0;
}

.page-hero-cover .prose strong {
  color: #fafcf9;
}

.page-hero-cover__lead {
  margin: 0;
  max-width: 36em;
  font-size: 0.94rem;
  line-height: 1.82;
  color: rgba(245, 250, 247, 0.9);
}

/* —— QINO top showcase（全面写真スライダー＋オーバーレイ文言）—— */
.q-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #161d19;
}

.q-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}

.q-slider {
  position: relative;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  border: none;
  background: var(--bg-soft);
}

.q-hero .q-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    118deg,
    rgba(21, 38, 28, 0.72) 0%,
    rgba(21, 38, 28, 0.28) 48%,
    rgba(21, 38, 28, 0.65) 100%
  );
  pointer-events: none;
}

.q-hero__copy {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1380px, 94vw);
  margin-inline: auto;
  padding: calc(var(--header-h) + 1rem) clamp(1.1rem, 3.5vw, 2.75rem) clamp(2.5rem, 8vh, 4.75rem);
  max-width: 100%;
  box-sizing: border-box;
}

.q-hero__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7.75rem);
  font-weight: 600;
  line-height: 0.95;
  color: #fafcf9;
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.q-hero__title {
  font-family: var(--font-logo);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #eef4ee;
}

.q-hero__text {
  color: rgba(246, 250, 248, 0.88);
  max-width: 28em;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.85;
}

.q-hero__link {
  font-family: var(--font-logo);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(250, 252, 249, 0.45);
  color: #fafcf9;
}

.q-hero__link:hover {
  border-bottom-color: #fafcf9;
}

.q-hero__arrows {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.q-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(250, 252, 249, 0.45);
  background: rgba(0, 0, 0, 0.2);
  color: #fafcf9;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.3s, border-color 0.3s;
}

.q-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(250, 252, 249, 0.75);
}

.q-slider__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s var(--ease-out);
  position: relative;
  z-index: 1;
}

.q-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}

.q-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q-slider__dots {
  position: absolute;
  bottom: clamp(7rem, 18vh, 10rem);
  left: clamp(1.1rem, 3.5vw, 2.75rem);
  transform: none;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.q-slider__dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(250, 252, 249, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.45;
}

.q-slider__dots button.is-active {
  opacity: 1;
  background: rgba(250, 252, 249, 0.9);
}

.q-hero .scroll-hint {
  z-index: 5;
  color: rgba(248, 252, 249, 0.55);
  bottom: clamp(1.75rem, 4vh, 2.75rem);
}

.q-hero .scroll-hint::after {
  background: linear-gradient(transparent, rgba(250, 252, 249, 0.3));
}

@media (max-width: 560px) {
  .q-slider__dots {
    bottom: clamp(5.5rem, 22vh, 8rem);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  translate: -50% 0;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(transparent, var(--line-strong));
}

/* —— Layout —— */
.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.wrap--wide {
  width: min(1380px, 94vw);
  margin-inline: auto;
}

/* Legacy hero (unused on home) —— */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  background: var(--bg-soft);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 250, 245, 0.3) 0%, rgba(216, 230, 218, 0.92) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero__lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--fg-muted);
  max-width: 36em;
  margin: 0 0 1.5rem;
}

.section {
  padding: var(--space-section) 0;
  background: var(--bg);
}

.section--muted {
  background: var(--bg-soft);
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.65rem;
  font-family: var(--font-logo);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  line-height: 1.14;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.prose {
  color: var(--fg-muted);
  max-width: 40em;
}

.prose p {
  margin: 0 0 1.25em;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.split__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 600;
  color: rgba(21, 38, 28, 0.12);
  line-height: 1;
  padding-top: 0.1em;
}

@media (max-width: 640px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.strip {
  display: flex;
  gap: clamp(1rem, 2vw, 1.25rem);
  overflow-x: auto;
  padding: 1rem 0 1.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  cursor: grab;
}

.strip:active {
  cursor: grabbing;
}

.strip__card {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strip__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: none;
}

.strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}

.strip__card:hover .strip__media img {
  transform: scale(1.03);
}

.strip__body {
  padding: 1rem 0 0;
}

.strip__idx {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-family: var(--font-logo);
  margin-bottom: 0.35rem;
}

.strip__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-weight: 600;
}

.strip__text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  column-gap: clamp(1.75rem, 4vw, 3rem);
  row-gap: clamp(2.25rem, 5vw, 3.5rem);
}

.card {
  border: none;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  transition: opacity 0.35s var(--ease-out);
}

.card__ph {
  aspect-ratio: 1;
  background: linear-gradient(150deg, rgba(200, 220, 201, 0.35), rgba(232, 241, 233, 0.5));
  overflow: hidden;
}

.card__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.card:hover .card__ph img {
  transform: scale(1.03);
}

.card__body {
  padding: 0;
  max-width: 14em;
}

.card__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

.card__price {
  font-size: 0.76rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: transparent;
  padding: 0;
  margin-top: 0.35rem;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.35);
}

.news-item__date {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

.news-item__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0;
  color: var(--ink);
}

.quotes {
  display: grid;
  gap: 1rem;
}

.quote {
  border-left: 2px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.1rem;
  color: var(--fg-muted);
  font-size: 0.93rem;
}

.quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-logo);
}

.store {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.store h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.form label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.35rem;
  font-family: var(--font-logo);
}

.form {
  display: grid;
  gap: 1.1rem;
  max-width: 480px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-family: var(--font-logo);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-soft);
  border-color: var(--ink);
}

.calendar-wrap {
  border: none;
  background: transparent;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  max-width: 520px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.calendar-head h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.cal-nav {
  display: flex;
  gap: 0.45rem;
}

.cal-nav button {
  width: auto;
  min-width: 2rem;
  height: auto;
  padding: 0.35rem 0.5rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
}

.cal-nav button:hover {
  border-bottom-color: var(--ink);
  background: transparent;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
  font-size: 0.68rem;
}

.calendar-grid .dow {
  color: var(--fg-muted);
  padding: 0.45rem 0;
}

.calendar-grid button.day {
  aspect-ratio: 1;
  max-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  cursor: pointer;
}

.calendar-grid button.day:disabled {
  opacity: 0.2;
  cursor: default;
}

.calendar-grid button.day.selectable:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.calendar-grid button.day.selected {
  background: var(--accent-soft);
  border-color: var(--ink);
  color: var(--ink);
}

.calendar-grid button.day.closed {
  text-decoration: line-through;
  opacity: 0.35;
}

.cal-legend {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.cal-selection {
  margin-top: 1.35rem;
  padding-top: 0;
  border-top: none;
  font-size: 0.88rem;
}

.site-footer {
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.1rem, 3.5vw, 2.75rem);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--fg-muted);
  background: var(--bg-soft);
}

.site-footer .wrap {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

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

.mt-0 {
  margin-top: 0;
}
.mt-lg {
  margin-top: var(--space-section);
}
.section--tight {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
