:root {
  --red: #9e1f24;
  --red-dark: #78171b;
  --ink: #171717;
  --charcoal: #343434;
  --gray: #777;
  --mid: #b8b8b5;
  --light: #f1f1ef;
  --white: #fff;
  --line: #d4d4d0;
  --font-en: Oswald, Arial Narrow, sans-serif;
  --font-ja: Noto Sans JP, sans-serif;
  --header: 76px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: var(--font-ja);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #e34b50;
  outline-offset: 4px;
}

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

.narrow {
  max-width: 960px;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-index {
  margin: 0 0 24px;
  color: var(--red);
  font: 600 0.78rem/1 var(--font-en);
  letter-spacing: 0.18em;
}

.section h2 {
  margin: 0;
  font: 700 clamp(2.7rem, 6.2vw, 6rem)/0.98 var(--font-en);
  letter-spacing: -0.025em;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.section-head > p {
  max-width: 360px;
  margin: 0;
  color: #595959;
  font-size: 0.92rem;
}

.note {
  margin: 28px 0 0;
  color: #686868;
  font-size: 0.76rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
  color: var(--white);
  background: rgba(18, 18, 18, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(100% - 48px, 1400px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 7px;
  font: 700 1.1rem/1 var(--font-en);
  letter-spacing: 0.03em;
}

.brand-hhm {
  grid-row: 1/3;
  color: #bc2b30;
  font-size: 2rem;
}

.brand small {
  grid-column: 2;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.global-nav a {
  font: 600 0.84rem/1 var(--font-en);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.global-nav a:hover {
  color: #e34b50;
}

.global-nav .nav-entry {
  padding: 12px 24px;
  background: var(--red);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: #1b1b1b;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.08) 70%), url("../images/hero-main.png") 65% center/cover no-repeat;
  filter: saturate(0.55) contrast(1.08);
}

.hero-noise,
.archive::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.7px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-100 {
  position: absolute;
  z-index: 1;
  top: 4%;
  right: -1%;
  color: rgba(255, 255, 255, 0.18);
  font: 700 min(43vw, 650px)/1 var(--font-en);
  letter-spacing: -0.08em;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 1400px);
  height: 100%;
  margin: auto;
  padding-top: clamp(145px, 18vh, 210px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 14px;
  color: white;
  background: var(--red);
  font: 600 0.82rem/1 var(--font-en);
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font: 700 clamp(4rem, 8vw, 8rem)/0.82 var(--font-en);
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: #d3373c;
  font-style: normal;
}

.hero-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
}

.hero-meta p {
  display: grid;
  margin: 0;
}

.hero-meta small {
  color: #d5d5d5;
  font: 500 0.62rem/1 var(--font-en);
  letter-spacing: 0.14em;
}

.hero-meta strong {
  margin: 5px 0 3px;
  font: 700 clamp(1.15rem, 2vw, 1.8rem)/1 var(--font-en);
  letter-spacing: 0.02em;
}

.hero-meta span {
  font: 600 0.7rem/1 var(--font-en);
  letter-spacing: 0.09em;
}

.hero-copy {
  margin: 0 0 5px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.hero-subcopy {
  margin: 0 0 30px;
  color: #c9c9c9;
  font: 500 0.73rem/1 var(--font-en);
  letter-spacing: 0.25em;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 17px 24px;
  border: 1px solid currentColor;
  font: 600 0.9rem/1 var(--font-en);
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-ghost {
  background: rgba(15, 15, 15, 0.25);
}

.hero-index {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  font: 500 0.65rem/1 var(--font-en);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.about {
  background: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.vertical-word {
  margin-top: 80px;
  color: #d8d8d5;
  font: 700 4.2rem/1 var(--font-en);
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
}

.about-copy h2 {
  font-family: var(--font-ja);
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.copy-columns p {
  margin: 0;
  font-size: 0.93rem;
}

.event-info {
  background: #e5e5e2;
}

.section-mark {
  color: #cacac6 !important;
  font: 700 clamp(4rem, 8vw, 8rem)/0.75 var(--font-en) !important;
  text-align: right;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 2px solid var(--ink);
}

.info-grid div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid #bdbdb8;
}

.info-grid div:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid #bdbdb8;
}

.info-grid div:nth-child(even) {
  padding-left: 30px;
}

.info-grid dt {
  color: var(--red);
  font: 600 0.72rem/1 var(--font-en);
  letter-spacing: 0.14em;
}

.info-grid dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.info-grid dd span {
  margin: 0 8px;
  color: #aaa;
}

.info-note {
  display: inline-block;
  margin: 6px 0 0 0 !important;
  color: #777;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
}

.contents {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #c8c8c4;
  border: 1px solid #c8c8c4;
}

.content-card {
  position: relative;
  padding: 16px 16px 30px;
  background: var(--light);
}

.content-card > span {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  color: white;
  font: 600 0.7rem/1 var(--font-en);
}

.card-art {
  height: 210px;
  margin-bottom: 28px;
  overflow: hidden;
  background: #484848;
  filter: grayscale(1);
}

.card-art::before,
.card-art::after {
  content: "";
  display: block;
  position: absolute;
}

.art-drive {
  background: linear-gradient(150deg, #999 0 48%, #333 49% 100%);
}

.art-drive::before {
  width: 75%;
  height: 12px;
  top: 120px;
  left: 12%;
  background: #ddd;
  transform: skewX(-25deg);
  box-shadow: 0 24px #555;
}

.art-display {
  background: radial-gradient(circle at 60% 65%, #ddd 0 12%, #555 13% 18%, transparent 19%), linear-gradient(15deg, #333 0 40%, #aaa 41%);
}

.art-display::before {
  width: 72%;
  height: 48px;
  top: 125px;
  left: 12%;
  background: #bbb;
  clip-path: polygon(8% 55%, 22% 15%, 72% 5%, 95% 55%, 100% 85%, 0 85%);
}

.art-photo {
  background: linear-gradient(35deg, #222 0 35%, #999 36% 65%, #555 66%);
}

.art-photo::before {
  width: 90px;
  height: 65px;
  top: 80px;
  left: 35%;
  border: 10px solid #ddd;
  border-radius: 8px;
}

.art-owners {
  background: radial-gradient(circle at 22% 48%, #ccc 0 8%, transparent 9%), radial-gradient(circle at 54% 42%, #aaa 0 9%, transparent 10%), radial-gradient(circle at 78% 52%, #ddd 0 8%, transparent 9%), #444;
}

.content-card h3 {
  margin: 0 0 14px;
  font: 700 2.4rem/1 var(--font-en);
}

.content-card h3::first-letter {
  color: var(--red);
}

.content-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.85;
}

.entry {
  background: var(--ink);
  color: white;
}

.entry .section-head > p {
  color: #aaa;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  padding: 42px 34px;
  background: #282828;
  border-top: 5px solid #777;
}

.price-card.featured {
  border-color: var(--red);
}

.plan-en {
  margin: 0 0 8px;
  color: #aaa;
  font: 600 0.72rem/1 var(--font-en);
  letter-spacing: 0.15em;
}

.price-card h3 {
  margin: 0 0 28px;
  font-size: 1.7rem;
}

.capacity {
  padding: 12px 0;
  border-block: 1px solid #555;
  font: 500 0.75rem/1 var(--font-en);
  letter-spacing: 0.1em;
}

.capacity strong {
  color: #d94348;
  font-size: 1.5rem;
}

.price {
  margin: 24px 0 18px;
  font: 700 3.3rem/1 var(--font-en);
}

.price > span {
  font-size: 1.3rem;
}

.price small {
  font: 400 0.7rem/1 var(--font-ja);
}

.price-card > p:last-of-type {
  min-height: 82px;
  color: #c8c8c8;
  font-size: 0.82rem;
}

.price-includes {
  margin: -8px 0 20px;
  color: #aaa;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-link {
  display: block;
  margin-top: 26px;
  padding-top: 17px;
  color: #ef5b60;
  border-top: 1px solid #555;
  font-size: 0.78rem;
  font-weight: 700;
}

.entry .note {
  color: #aaa;
}

.archive {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 0;
  background: #3e3e3e;
  color: white;
}

.archive-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 36, 36, 0.94), rgba(45, 45, 45, 0.75)), url("../images/hero-main.png") center/cover;
  filter: grayscale(0.65) contrast(1.1);
  opacity: 0.78;
}

.archive::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -8%;
  top: -20%;
  width: 28%;
  height: 150%;
  background: rgba(158, 31, 36, 0.82);
  transform: skewX(-14deg);
  mix-blend-mode: multiply;
}

.archive-inner {
  position: relative;
  z-index: 2;
}

.archive-head h2 {
  margin: 0;
  font: 700 clamp(3.8rem, 8.5vw, 8.5rem)/0.8 var(--font-en);
  letter-spacing: -0.05em;
}

.archive-head h2 span {
  display: block;
  color: white;
}

.archive-head h2 {
  color: #c72d32;
}

.archive-catch {
  margin: 40px 0 8px;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 900;
}

.archive-head > p:last-child {
  color: #ddd;
}

.archive-ghost {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.08);
  font: 700 clamp(4rem, 9vw, 9rem)/0.8 var(--font-en);
  writing-mode: vertical-rl;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 60px;
}

.archive-card {
  position: relative;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  background: rgba(25, 25, 25, 0.78);
  border: 1px solid #777;
}

.archive-label {
  color: #e04449;
  font: 600 0.72rem/1 var(--font-en);
  letter-spacing: 0.15em;
}

.archive-copy {
  position: relative;
  z-index: 3;
  width: 45%;
  margin-top: 20px;
}

.archive-copy h3 {
  margin: 0 0 28px;
  font: 700 clamp(2.4rem, 4vw, 4rem)/0.92 var(--font-en);
}

.archive-copy h3 em {
  color: #d4373c;
  font-style: normal;
}

.archive-copy p {
  margin: 0;
  color: #ddd;
  font-size: 0.78rem;
}

.archive-foot {
  margin: 70px 0 0;
  text-align: center;
  font: 500 0.72rem/1 var(--font-en);
  letter-spacing: 0.3em;
}

.flow {
  background: var(--white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.flow-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  min-height: 220px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list > li > span {
  color: var(--red);
  font: 700 1rem/1 var(--font-en);
}

.flow-list h3 {
  margin: 0 0 15px;
  font-size: 1rem;
}

.flow-list p {
  margin: 0;
  color: #626262;
  font-size: 0.78rem;
}

.notice {
  background: #e4e4e1;
}

.notice h2 {
  font-family: var(--font-ja);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.25;
}

.notice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: notice;
}

.notice-list li {
  position: relative;
  padding: 18px 0 18px 35px;
  border-top: 1px solid #b9b9b5;
  font-size: 0.8rem;
  counter-increment: notice;
}

.notice-list li::before {
  content: counter(notice, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--red);
  font: 600 0.66rem/1.8 var(--font-en);
}

.faq {
  background: var(--white);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.faq-item button span::before {
  content: "Q";
  display: inline-block;
  margin-right: 24px;
  color: var(--red);
  font: 700 1.2rem/1 var(--font-en);
}

.faq-item i {
  position: relative;
  flex: 0 0 24px;
  height: 24px;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s;
}

.faq-item i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded=true] i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 48px;
  color: #5a5a5a;
  font-size: 0.85rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 28px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vw, 190px) 0;
  color: white;
  background: #1c1c1c;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: radial-gradient(#fff 0.8px, transparent 1px);
  background-size: 5px 5px;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 0 45px;
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.final-cta p {
  max-width: 680px;
  color: #c9c9c9;
}

.entry-period {
  display: inline-block;
  margin: 25px 0 25px !important;
  padding: 10px 15px;
  color: white !important;
  background: #303030;
  border-left: 4px solid var(--red);
  font-size: 0.82rem;
}

.button-large {
  display: flex;
  width: min(100%, 440px);
  padding: 24px 30px;
  font-size: 1.15rem;
}

.cta-100 {
  position: absolute;
  right: -2%;
  bottom: -12%;
  color: rgba(255, 255, 255, 0.035);
  font: 700 min(48vw, 700px)/1 var(--font-en);
}

.site-footer {
  padding: 65px 0 25px;
  color: white;
  background: #0f0f0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.5fr;
  gap: 40px;
  align-items: start;
}

.site-footer p {
  margin: 9px 0 0;
  color: #888;
  font: 500 0.65rem/1.6 var(--font-en);
  letter-spacing: 0.1em;
}

.footer-grid > div:nth-child(2) strong {
  font: 700 2rem/1 var(--font-en);
}

.footer-grid nav {
  display: grid;
  gap: 10px;
  font: 500 0.75rem/1 var(--font-en);
  letter-spacing: 0.1em;
}

.copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.copyright a {
  color: #888;
  font: 500 0.65rem/1 var(--font-en);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 960px) {
  :root {
    --header: 68px;
  }
  .global-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    height: calc(100dvh - var(--header));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(18, 18, 18, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .global-nav.open {
    transform: none;
  }
  .global-nav a {
    font-size: 1.4rem;
  }
  .menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
  }
  .menu-toggle span {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 2px;
    background: white;
    transition: 0.25s;
  }
  .menu-toggle span:nth-child(1) {
    top: 12px;
  }
  .menu-toggle span:nth-child(2) {
    top: 20px;
  }
  .menu-toggle span:nth-child(3) {
    top: 28px;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }
  .hero {
    min-height: 760px;
  }
  .hero-photo {
    background-position: 67% center;
  }
  .hero-inner {
    padding-top: 145px;
  }
  .split-heading {
    grid-template-columns: 1fr;
  }
  .vertical-word {
    display: none;
  }
  .copy-columns {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card > p:last-of-type {
    min-height: auto;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .archive-card {
    min-height: 440px;
  }
  .flow-list {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid nav {
    grid-column: 1/-1;
    display: flex;
    gap: 25px;
  }
}
@media (max-width: 640px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 32px, var(--max));
  }
  .section {
    padding: 78px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 38px;
  }
  .section-head > p {
    margin-top: 22px;
  }
  .hero {
    height: auto;
    min-height: 790px;
  }
  .hero-photo {
    background-image: linear-gradient(220deg, rgba(7, 7, 7, 0.28), rgba(7, 7, 7, 0.33) 68%, #111), url(../images/hero-main-sp.png);
    background-position: 64% center;
  }
  .hero-100 {
    top: 12%;
    right: -8%;
    font-size: 55vw;
  }
  .hero-inner {
    padding-top: 130px;
  }
  .eyebrow {
    font-size: 0.66rem;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
    line-height: 0.88;
  }
  .hero-meta {
    display: grid;
    gap: 14px;
  }
  .hero-copy {
    margin-top: 25px;
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
    margin-top: 130px;
  }
  .button {
    width: 100%;
  }
  .hero-index {
    display: none;
  }
  .about-copy h2 br {
    display: none;
  }
  .copy-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-grid div,
  .info-grid div:nth-child(odd),
  .info-grid div:nth-child(even) {
    grid-template-columns: 100px 1fr;
    padding: 0;
    border-right: 0;
  }
  .info-grid dd {
    font-size: 0.82rem;
  }
  .section-mark {
    display: none;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .card-art {
    height: 240px;
  }
  .price-card {
    padding: 34px 24px;
  }
  .archive-head h2 {
    font-size: 18vw;
  }
  .archive-ghost {
    display: none;
  }
  .archive-card {
    min-height: 560px;
    padding: 26px;
  }
  .archive-copy {
    width: 100%;
  }
  .instagram-mock {
    right: 3%;
    bottom: 40px;
    width: 88%;
    height: 320px;
  }
  .book-mock {
    right: 18%;
    bottom: 35px;
    width: 62%;
  }
  .flow-list {
    grid-template-columns: 1fr;
  }
  .flow-list li {
    min-height: auto;
  }
  .notice-list {
    grid-template-columns: 1fr;
  }
  .faq-item button {
    padding: 23px 0;
    font-size: 0.88rem;
  }
  .faq-item button span::before {
    margin-right: 12px;
  }
  .faq-answer > p {
    padding-inline: 0;
  }
  .final-cta h2 {
    font-size: 13vw;
  }
  .final-cta h2 br {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid nav {
    grid-column: auto;
  }
  .copyright {
    display: grid;
    gap: 18px;
  }
  .site-footer .brand {
    display: inline-grid;
  }
}
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.art-drive {
  background: url("../images/content-drive.png") center/cover no-repeat;
}

.art-display {
  background: url("../images/content-display.png") center/cover no-repeat;
}

.art-photo {
  background: url("../images/content-photo.png") center/cover no-repeat;
}

.art-owners {
  background: url("../images/content-owners.png") center/cover no-repeat;
}

.art-drive::before,
.art-display::before,
.art-photo::before,
.art-owners::before {
  display: none;
}

.archive-grid {
  gap: clamp(42px, 5vw, 78px);
  padding: 20px 0 70px;
}

.archive-card {
  overflow: visible;
}

.archive-visual {
  position: absolute;
  z-index: 4;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.52));
}

.archive-instagram-visual {
  right: -13%;
  bottom: 12%;
  width: 66%;
  transform: rotate(-2deg);
}

.archive-book-visual {
  right: -16%;
  top: 21%;
  width: 76%;
  transform: rotate(4deg);
}

@media (max-width: 960px) {
  .archive-grid {
    gap: 110px;
    padding-bottom: 85px;
  }
  .archive-instagram-visual {
    right: -7%;
    bottom: -14%;
    width: 60%;
  }
  .archive-book-visual {
    right: -8%;
    top: -12%;
    width: 62%;
  }
}
@media (max-width: 640px) {
  .archive-grid {
    gap: 120px;
    padding-top: 0;
    padding-bottom: 70px;
  }
  .archive-card {
    min-height: 580px;
  }
  .archive-copy {
    width: 100%;
    padding-right: 0;
  }
  .archive-instagram-visual {
    right: -6%;
    bottom: 0%;
    width: 110%;
  }
  .archive-book-visual {
    right: -5%;
    top: auto;
    bottom: 0%;
    width: 110%;
  }
}
.hero-index {
  position: fixed;
  z-index: 80;
  right: clamp(14px, 2vw, 30px);
  bottom: 24px;
  padding: 14px 9px;
  color: var(--white);
  font: 500 0.66rem/1 var(--font-en);
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  pointer-events: none;
  mix-blend-mode: difference;
}

@media (max-width: 640px) {
  .hero-index {
    display: none;
  }
}
.gallery-walk-in {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-top: 17px;
  color: #d0d0d0;
  border-top: 1px solid #555;
  font-size: 0.76rem;
  line-height: 1.7;
}

.gallery-walk-in strong {
  color: #ef5b60;
  font: 600 0.82rem/1 var(--font-ja);
}

.site-footer .brand {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  width: max-content;
  white-space: nowrap;
}

.site-footer .brand-hhm {
  grid-row: auto;
  flex: 0 0 auto;
}

.copyright [data-back-to-top] {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */