:root {
  --ink: #151515;
  --muted: #747474;
  --accent: #a43c54;
  --gold: #c8bb84;
  --paper: #fff;
  --offwhite: #f7f7f5;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .04em;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(32px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: transparent;
  transition: background-color .4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
  background: rgba(62, 62, 62, .94);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .12);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 270px;
}

.brand img {
  width: 178px;
  filter: invert(1) brightness(2);
}

.brand span {
  font-size: 10px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
}

.global-nav > .nav-link,
.nav-item > .nav-link {
  position: relative;
  display: grid;
  gap: 4px;
  text-align: center;
}

.global-nav > .nav-link::after,
.nav-item > .nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 1px;
  background: #fff;
  transition: left .25s ease, right .25s ease;
}

.global-nav > .nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  right: 0;
  left: 0;
}

.nav-link b {
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
}

.nav-link small {
  font-size: 9px;
  letter-spacing: .06em;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 22px);
  right: -52px;
  width: min(700px, calc(100vw - 48px));
  padding: 26px;
  color: #fff;
  background: rgba(14, 14, 14, .97);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 24px;
}

.hobby-dropdown {
  right: -210px;
}

.tag-dropdown {
  right: -125px;
  width: min(390px, calc(100vw - 48px));
}

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

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.dropdown-title {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
}

.dropdown-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, .18);
}

.dropdown-links a {
  min-height: 105px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #161616;
  transition: color .25s ease, background .25s ease;
}

.dropdown-links a:hover,
.dropdown-links a:focus-visible {
  color: var(--ink);
  background: #fff;
}

.dropdown-links small {
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 8px;
  letter-spacing: .18em;
}

.dropdown-links b {
  margin: auto 0 5px;
  font-size: 13px;
}

.dropdown-links span {
  color: #aaa;
  font-size: 9px;
}

.dropdown-links a:hover span,
.dropdown-links a:focus-visible span {
  color: #666;
}

.search-button {
  width: 28px;
  height: 28px;
  padding: 3px;
  display: grid;
  place-items: center;
  color: inherit;
}

.search-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("./assets/hero.jpg") center 48% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, .55), rgba(5, 5, 5, .28) 58%, rgba(0, 0, 0, .52)),
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(0, 0, 0, .22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 5vh;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 26px;
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 11px;
  letter-spacing: .45em;
}

.hero h1 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: .08em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

.hero-copy {
  margin: 28px 0 0;
  font-size: 14px;
  letter-spacing: .3em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
}

.scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(-4px) rotate(45deg); opacity: .35; }
  50% { transform: translateY(4px) rotate(45deg); opacity: 1; }
}

.rediscovery {
  position: relative;
  min-height: 950px;
  padding: 130px 0 92px;
  color: #fff;
  overflow: hidden;
  background: #0d0e0e url("./assets/hero.jpg") center 30% / cover fixed no-repeat;
}

.rediscovery-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 6, .84);
}

.rediscovery-copy {
  position: relative;
  z-index: 1;
  width: min(825px, calc(100% - 48px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 52px;
}

.rediscovery-title {
  padding-top: 9px;
}

.rediscovery-title p {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: .14em;
}

.rediscovery-title h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .36em;
}

.rediscovery-text p {
  margin: 0 0 24px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .08em;
}

.recommend-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.recommend-toolbar {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recommend-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
}

.recommend-toolbar p span {
  margin-right: 8px;
  color: var(--gold);
  font-size: 19px;
}

.recommend-controls {
  display: flex;
  gap: 8px;
}

.recommend-controls button {
  width: 38px;
  height: 38px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: transparent;
  transition: color .25s ease, background .25s ease;
}

.recommend-controls button:hover,
.recommend-controls button:focus-visible {
  color: var(--ink);
  background: #fff;
}

.recommend-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.recommend-viewport::-webkit-scrollbar {
  display: none;
}

.recommend-strip {
  width: max-content;
  padding: 0 clamp(24px, 6vw, 80px);
  display: flex;
  gap: 24px;
}

.strip-card {
  flex: 0 0 clamp(245px, 25vw, 320px);
  scroll-snap-align: start;
}

.strip-image {
  position: relative;
  overflow: hidden;
}

.strip-card img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  filter: brightness(.78);
  transition: transform .5s ease, filter .5s ease;
}

.strip-card:hover img,
.strip-card:focus-within img {
  transform: scale(1.04);
  filter: brightness(.62);
}

.strip-image span {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: rgba(255, 255, 255, .78);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
}

.strip-card small {
  display: block;
  margin-top: 13px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .08em;
}

.strip-card p {
  margin: 7px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.recommend-progress {
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  margin: 30px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.recommend-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(.08);
  transform-origin: left;
  transition: transform .12s linear;
}

.outline-button,
.more-button {
  position: relative;
  z-index: 2;
  width: min(320px, calc(100% - 48px));
  height: 52px;
  margin: 50px auto 0;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: .15em;
  transition: color .25s, background .25s;
}

.outline-button span,
.more-button span {
  position: absolute;
  right: 16px;
}

.outline-button:hover {
  color: var(--ink);
  background: #fff;
}

.hobbies {
  padding: 105px 0 170px;
  background: #fff;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .15em;
}

.section-heading > span {
  display: block;
  width: 50px;
  height: 2px;
  margin: 34px auto 0;
  background: var(--accent);
}

.section-heading p {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  letter-spacing: .12em;
}

.hobby-stories {
  width: min(1125px, calc(100% - 48px));
  margin: 115px auto 0;
}

.hobby-story {
  position: relative;
  min-height: 390px;
  margin: 0 0 90px;
  display: grid;
  grid-template-columns: 180px minmax(0, 640px);
  align-items: center;
  gap: 34px;
}

.hobby-story.align-right {
  margin-left: auto;
  justify-content: end;
}

.hobby-story.align-left {
  grid-template-columns: minmax(0, 640px) 180px;
  justify-content: start;
}

.hobby-story.align-left .story-index {
  grid-column: 2;
  grid-row: 1;
}

.hobby-story.align-left .story-visual {
  grid-column: 1;
  grid-row: 1;
}

.story-index {
  align-self: start;
  padding-top: 30px;
  color: #b3b3b3;
  font-family: "Avenir Next", "Futura", sans-serif;
}

.story-index b {
  display: block;
  color: var(--ink);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: .08em;
}

.story-index span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
}

.story-visual {
  position: relative;
  display: block;
  overflow: visible;
}

.story-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.story-visual:hover img,
.story-visual:focus-visible img {
  transform: scale(1.025);
  filter: brightness(.86);
}

.story-label {
  position: absolute;
  right: -75px;
  bottom: -38px;
  width: min(380px, 66%);
  padding: 22px 28px 25px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.align-left .story-label {
  right: auto;
  left: -75px;
}

.story-label p {
  margin: 0 0 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 12px;
}

.story-label h3 {
  margin: 0 0 12px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .15em;
}

.story-label small {
  color: var(--muted);
  font-size: 10px;
}

.story-label::after {
  content: "VIEW CATEGORY  ↗";
  position: absolute;
  right: 22px;
  bottom: 16px;
  color: var(--accent);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 8px;
  letter-spacing: .16em;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .3s ease, transform .3s ease;
}

.story-visual:hover .story-label::after,
.story-visual:focus-visible .story-label::after {
  opacity: 1;
  transform: none;
}

.category-map {
  position: relative;
  min-height: 690px;
  padding: 110px 48px;
  color: #fff;
  background:
    linear-gradient(rgba(7, 13, 16, .86), rgba(7, 13, 16, .92)),
    url("./assets/hero.jpg") center / cover no-repeat;
}

.category-map-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.category-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 12px;
  letter-spacing: .38em;
}

.category-map h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .08em;
}

.tag-links {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(55px, 8vw, 110px);
}

.tag-group {
  position: relative;
  padding-top: 28px;
}

.tag-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0));
}

.tag-group-heading {
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  align-items: start;
  gap: 18px;
  padding-bottom: 30px;
}

.tag-group-heading > span {
  color: rgba(255, 255, 255, .25);
  font-family: "Avenir Next", sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.tag-group-heading small {
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 9px;
  letter-spacing: .22em;
}

.tag-group-heading h3 {
  margin: 7px 0 12px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .13em;
}

.tag-group-heading p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 11px;
  line-height: 1.8;
}

.tag-group-heading i {
  color: var(--gold);
  font-family: "Avenir Next", sans-serif;
  font-size: 18px;
  font-style: normal;
  transition: transform .3s ease;
}

.tag-group-heading:hover i,
.tag-group-heading:focus-visible i {
  transform: translate(4px, -4px);
}

.hobby-tag-list {
  margin-left: 82px;
  display: grid;
}

.hobby-tag-list a {
  position: relative;
  padding: 19px 0 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .04));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: padding-left .3s ease, color .3s ease;
}

.hobby-tag-list a:hover,
.hobby-tag-list a:focus-visible {
  padding-left: 12px;
  color: var(--gold);
}

.hobby-tag-list small {
  grid-column: 1;
  color: rgba(255, 255, 255, .45);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 8px;
  letter-spacing: .2em;
}

.hobby-tag-list b {
  grid-column: 1;
  margin-top: 4px;
  font-size: 14px;
}

.hobby-tag-list span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-family: "Avenir Next", sans-serif;
  transition: transform .3s ease;
}

.hobby-tag-list a:hover span,
.hobby-tag-list a:focus-visible span {
  transform: translateX(5px);
}

.latest {
  padding: 105px 48px 115px;
}

.post-grid {
  width: min(1115px, 100%);
  margin: 105px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card a {
  display: block;
}

.post-image {
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.035);
  filter: brightness(.86);
}

.post-category {
  margin: 18px 0 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.post-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.post-card time {
  display: block;
  margin-top: 8px;
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
}

.more-button {
  color: var(--ink);
}

.more-button:hover {
  color: #fff;
  background: var(--ink);
}

.news {
  padding: 105px 48px 115px;
  background: var(--offwhite);
}

.news-list {
  width: min(760px, 100%);
  margin: 80px auto 0;
  border-top: 1px solid #d7d7d7;
}

.news-list a {
  padding: 23px 14px;
  display: grid;
  grid-template-columns: 120px 1fr 20px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #d7d7d7;
  font-size: 13px;
}

.news-list time {
  color: var(--muted);
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
}

.news-list b {
  transition: transform .25s;
}

.news-list a:hover b {
  transform: translateX(4px);
}

.site-footer {
  min-height: 590px;
  padding: 75px 32px 26px;
  color: #fff;
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 210px;
  filter: invert(1) brightness(2);
}

.mail-icon {
  width: 39px;
  height: 39px;
  margin-top: 31px;
  padding: 7px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.mail-icon svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
}

.footer-navigation {
  width: min(900px, 100%);
  margin-top: 45px;
  padding-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-link-group h2 {
  margin: 0 0 19px;
  color: var(--gold);
  font-family: "Avenir Next", "Futura", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
}

.footer-link-group nav {
  display: grid;
  gap: 11px;
}

.footer-link-group a {
  width: fit-content;
  font-size: 11px;
  font-weight: 500;
}

.footer-link-group a:hover {
  opacity: .68;
}

.site-footer > small {
  margin-top: 58px;
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 40px;
  bottom: 40px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .site-header {
    padding: 0 34px;
  }

  .brand span {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .global-nav {
    gap: 18px;
  }

  .nav-dropdown {
    right: -34px;
    width: min(620px, calc(100vw - 40px));
  }

  .hobby-dropdown {
    right: -180px;
  }

  .tag-dropdown {
    right: -95px;
    width: min(370px, calc(100vw - 40px));
  }

  .strip-card {
    flex-basis: 285px;
  }

  .story-label {
    right: -30px;
  }

  .align-left .story-label {
    left: -30px;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .site-header.scrolled {
    backdrop-filter: none;
  }

  .brand img {
    width: 150px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    width: 38px;
    height: 34px;
    padding: 8px 5px;
    display: grid;
    gap: 5px;
    border: 0;
    background: none;
  }

  .menu-button span {
    display: block;
    height: 1px;
    background: #fff;
    transition: transform .25s, opacity .25s;
  }

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

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

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

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    padding: 90px 24px 40px;
    display: grid;
    align-content: start;
    gap: 18px;
    background: rgba(18, 18, 18, .97);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity .25s, visibility .25s;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link b {
    font-size: 19px;
  }

  .nav-link small {
    font-size: 10px;
  }

  .global-nav > .nav-link,
  .nav-item > .nav-link {
    justify-content: center;
  }

  .nav-dropdown,
  .hobby-dropdown {
    position: static;
    width: 100%;
    padding: 12px 0 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown::before,
  .dropdown-title {
    display: none;
  }

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

  .dropdown-links a {
    min-height: 62px;
    padding: 10px 12px;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, .055);
  }

  .dropdown-links b {
    margin: auto 0;
    font-size: 11px;
  }

  .dropdown-links span {
    display: none;
  }

  .dropdown-links small {
    font-size: 7px;
  }

  .search-button {
    margin: 0 auto;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: clamp(25px, 7vw, 33px);
    line-height: 1.75;
    letter-spacing: .02em;
  }

  .hero-copy {
    font-size: 11px;
  }

  .rediscovery {
    padding-top: 105px;
  }

  .rediscovery-copy {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .rediscovery-title p {
    font-size: 28px;
  }

  .rediscovery-text p {
    font-size: 14px;
  }

  .recommend-strip {
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .strip-card {
    flex-basis: 260px;
  }

  .recommend-toolbar {
    margin-bottom: 18px;
  }

  .hobbies {
    padding-bottom: 100px;
  }

  .hobby-stories {
    margin-top: 80px;
  }

  .hobby-story,
  .hobby-story.align-left {
    min-height: auto;
    margin-bottom: 105px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .hobby-story.align-left .story-index {
    grid-column: 1;
  }

  .hobby-story.align-left .story-visual {
    grid-column: 2;
  }

  .story-index b {
    font-size: 28px;
  }

  .story-visual img {
    aspect-ratio: 4 / 3;
  }

  .story-label,
  .align-left .story-label {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 20px);
    margin: -34px 0 0 20px;
    padding: 18px;
  }

  .story-label h3 {
    font-size: 22px;
  }

  .category-map {
    padding: 90px 24px;
  }

  .tag-links {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .tag-group-heading {
    grid-template-columns: 48px 1fr 20px;
    gap: 12px;
  }

  .tag-group-heading > span {
    font-size: 27px;
  }

  .tag-group-heading h3 {
    font-size: 24px;
  }

  .hobby-tag-list {
    margin-left: 60px;
  }

  .latest,
  .news {
    padding-right: 24px;
    padding-left: 24px;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 75px;
  }

  .news-list a {
    grid-template-columns: 1fr 22px;
    gap: 10px;
  }

  .news-list time {
    grid-column: 1;
  }

  .news-list span {
    grid-column: 1;
  }

  .news-list b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-link-group {
    text-align: center;
  }

  .footer-link-group nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-link-group a {
    width: auto;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* WordPress production integration */
body.fld-home-page {
  min-width: 0;
  overflow-x: hidden;
}

body.fld-home-page #wpadminbar {
  z-index: 10000;
}

body.fld-home-page > .freel-entity-placement {
  display: none !important;
}

body.admin-bar.fld-home-page .site-header {
  top: 32px;
}

body.fld-home-page .site-header a,
body.fld-home-page .site-footer a {
  text-decoration: none;
}

body.fld-home-page .recommend-strip {
  min-width: max-content;
}

.fld-footer-ads {
  padding: 42px max(24px, calc((100vw - 1320px) / 2)) 48px;
  color: #171717;
  background: #f4f2ed;
}

.fld-footer-ad-heading {
  margin: 0 0 20px;
  text-align: center;
  font: 600 10px/1.4 "DM Sans", sans-serif;
  letter-spacing: .2em;
  color: #777;
}

.fld-footer-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 300px));
  justify-content: center;
  gap: 24px;
}

.fld-footer-ad-item {
  display: flex;
  min-width: 0;
  justify-content: center;
  overflow: hidden;
}

.fld-footer-ad-item > .freel-entity-placement,
.fld-footer-ad-item .freel-adlabel {
  width: 100% !important;
}

body.fld-home-page .freel-adlabel {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

@media (max-width: 1280px) {
  .fld-footer-ad-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }
}

@media (max-width: 680px) {
  .fld-footer-ad-grid {
    grid-template-columns: minmax(0, 300px);
  }
}

@media (max-width: 782px) {
  body.admin-bar.fld-home-page .site-header {
    top: 46px;
  }
}
