:root {
  --ink: #151719;
  --ink-soft: #2c302f;
  --paper: #fbf8f3;
  --paper-2: #f2ece4;
  --white: #ffffff;
  --sage: #315c52;
  --rose: #b76570;
  --gold: #c79a48;
  --clay: #8f4f37;
  --muted: #76716a;
  --line: rgba(21, 23, 25, .14);
  --shadow: 0 22px 60px rgba(21, 23, 25, .12);
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-serif: "Shippori Mincho", "Yu Mincho", serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
  --font-mono: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  z-index: 90;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
.lead,
.btn,
summary {
  word-break: auto-phrase;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.wide-wrap {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

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

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--rose);
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.38;
  font-weight: 700;
  margin: 12px 0 18px;
}

.lead {
  color: var(--muted);
  max-width: 42em;
  margin: 0;
}

.section-dark .lead {
  color: rgba(251, 248, 243, .72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 16px 32px -18px rgba(49, 92, 82, .8);
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
}

.btn-line {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}

.section-dark .btn-line,
.image-cta .btn-line {
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 23, 25, .08);
}

.header-alert {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7bdba5;
  box-shadow: 0 0 0 0 rgba(123, 219, 165, .55);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 9px rgba(123, 219, 165, 0);
  }
}

.today {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  opacity: .78;
}

.header-inner {
  width: min(1360px, calc(100% - 44px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--paper);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 23px;
}

.brand-text {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.14;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  margin-top: 4px;
}

.nav-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.nav-list a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.nav-list a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: var(--white);
}

.header-tel span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.header-tel small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
}

.header-reserve {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
}

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

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__shade {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 23, 25, .46);
  backdrop-filter: blur(3px);
  padding: 0;
}

.mobile-menu__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(88vh, 720px);
  overflow-y: auto;
  border-radius: 28px 28px 0 0;
  background: var(--white);
  box-shadow: 0 -28px 70px rgba(21, 23, 25, .26);
  transform: translateY(104%);
  transition: transform .52s cubic-bezier(.22, 1, .36, 1);
  overscroll-behavior: contain;
}

.mobile-menu.is-open .mobile-menu__sheet {
  transform: translateY(0);
}

.mobile-menu__grab {
  width: 48px;
  height: 5px;
  margin: 13px auto 5px;
  border-radius: 999px;
  background: rgba(21, 23, 25, .18);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 22px 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__head b {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .12em;
}

.mobile-menu__head small {
  display: block;
  margin-top: 2px;
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.mobile-menu__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 23, 25, .15);
  border-radius: 50%;
  background: var(--paper);
  padding: 0;
}

.mobile-menu__close span {
  grid-area: 1 / 1;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 18px 8px;
}

.mobile-menu__tile {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(21, 23, 25, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 248, 243, .96), rgba(242, 236, 228, .72)),
    var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.mobile-menu__tile span,
.mobile-menu__links span {
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.mobile-menu__tile b {
  font-size: 15px;
  line-height: 1.35;
}

.mobile-menu__tile small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.mobile-menu__links {
  padding: 4px 20px 12px;
}

.mobile-menu__links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(21, 23, 25, .16);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu__contact {
  padding: 14px 18px calc(24px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(49, 92, 82, .08), rgba(183, 101, 112, .09)),
    var(--paper);
}

.mobile-menu__line {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: #06c755;
  color: var(--white);
  box-shadow: 0 16px 26px rgba(6, 199, 85, .24);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}

.mobile-menu__subactions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 9px;
}

.mobile-menu__subactions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 23, 25, .18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu__contact small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

.home-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 72px 0 86px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(183, 101, 112, .16), transparent 28%),
    linear-gradient(120deg, var(--paper) 0%, #f8f1ec 45%, #eef2ee 100%);
}

.home-hero::after {
  content: "KOBE SANNOMIYA";
  position: absolute;
  right: -4vw;
  bottom: 2vw;
  font-family: var(--font-en);
  font-size: clamp(54px, 12vw, 172px);
  color: rgba(21, 23, 25, .045);
  line-height: .8;
  pointer-events: none;
}

.hero-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.16;
  font-weight: 700;
  margin: 0;
}

.hero-copy h1 .accent {
  color: var(--rose);
}

.hero-copy p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 34em;
}

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

.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-chip {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.proof-chip b {
  display: block;
  font-family: var(--font-mono);
  color: var(--sage);
  font-size: 20px;
  line-height: 1.1;
}

.proof-chip span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-img {
  position: absolute;
  inset: 0 0 0 16%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-main-img img,
.floating-img img,
.media-card img,
.style-card img,
.staff-photo img,
.archive-card img,
.post-hero__bg img,
.post-figure img,
.style-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(21, 23, 25, .32));
}

.floating-img {
  position: absolute;
  left: 0;
  bottom: 44px;
  width: 36%;
  aspect-ratio: 3 / 4;
  border: 8px solid var(--paper);
  box-shadow: 0 24px 52px rgba(21, 23, 25, .18);
  overflow: hidden;
}

.hero-ticket {
  position: absolute;
  right: 6%;
  bottom: 34px;
  width: min(260px, 46%);
  background: rgba(251, 248, 243, .92);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 20px 44px rgba(21, 23, 25, .16);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.hero-ticket span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--rose);
  font-weight: 700;
}

.hero-ticket b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.35;
}

.intro-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 58px;
  align-items: center;
}

.big-word {
  font-family: var(--font-en);
  font-size: clamp(74px, 13vw, 168px);
  line-height: .78;
  color: var(--rose);
  opacity: .92;
}

.intro-text {
  font-size: 18px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.reason-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.reason-no {
  font-family: var(--font-en);
  font-size: 42px;
  color: var(--rose);
  line-height: 1;
}

.reason-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 18px 0;
  border-radius: 4px;
}

.reason-card h3,
.media-card h3,
.style-card h3,
.staff-card h3,
.archive-card h2,
.price-item h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 8px;
}

.reason-card p,
.media-card p,
.style-card p,
.staff-card p,
.archive-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.catalog-head,
.split-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.style-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.style-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 4px;
}

.style-card:hover img,
.archive-card:hover img,
.media-card:hover img {
  transform: scale(1.04);
}

.style-card img,
.archive-card img,
.media-card img {
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.style-card__body {
  padding-top: 16px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, .52);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 4px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: var(--ink);
}

.media-card img {
  position: absolute;
  inset: 0;
  opacity: .72;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(21, 23, 25, .86));
}

.media-card__body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.services-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.services-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 25, .95), rgba(21, 23, 25, .62)),
    url("../images/care-products.jpg") center / cover;
  opacity: .86;
}

.service-index {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(251, 248, 243, .24);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 190px 1.1fr;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid rgba(251, 248, 243, .18);
  padding: 28px 8px;
}

.service-row .num,
.service-row .en {
  font-family: var(--font-mono);
  color: rgba(251, 248, 243, .55);
  letter-spacing: .18em;
  font-size: 12px;
}

.service-row h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 44px);
  margin: 0;
}

.service-row p {
  margin: 0;
  color: rgba(251, 248, 243, .72);
}

.voice-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: stretch;
}

.voice-photo {
  min-height: 420px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.voice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-copy {
  align-self: center;
}

.voice-copy blockquote {
  margin: 22px 0;
  font-family: var(--font-serif);
  font-size: clamp(25px, 3.5vw, 42px);
  line-height: 1.45;
}

.voice-index {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.voice-index li a {
  display: grid;
  grid-template-columns: 72px 1fr 140px 120px;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.voice-index .no {
  font-family: var(--font-mono);
  color: var(--rose);
  font-size: 12px;
}

.voice-index .quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
}

.voice-index .name,
.voice-index .menu {
  color: var(--muted);
  font-size: 13px;
}

.gallery-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-col:nth-child(2) {
  margin-top: -38px;
}

.gallery-cols figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-cols img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cols .tall {
  aspect-ratio: 3 / 4;
}

.gallery-cols .wide {
  aspect-ratio: 4 / 3;
}

.gallery-cols figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .38);
}

.staff-section {
  background: linear-gradient(to bottom, var(--white) 0 30%, #e9f0e8 30% 100%);
}

.staff-layout {
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 44px;
  align-items: center;
}

.vertical-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vertical-title .en {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  letter-spacing: .28em;
  color: var(--sage);
  font-size: 12px;
}

.vertical-title h2 {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(29px, 4vw, 44px);
  letter-spacing: .14em;
  line-height: 1.55;
  margin: 0;
  padding-right: 0;
}

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

.staff-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.staff-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 46% 46% 48% 48% / 58% 58% 42% 42%;
  box-shadow: 0 24px 44px -24px rgba(21, 23, 25, .42);
  background: var(--paper-2);
  line-height: 0;
}

.staff-role {
  position: relative;
  display: inline-flex;
  margin-top: -16px;
  min-height: 30px;
  align-items: center;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.price-board {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 56px;
  align-items: end;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 34px;
}

.price-large {
  text-align: right;
}

.price-large .from {
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
}

.price-large .value {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(68px, 12vw, 150px);
  line-height: .84;
}

.price-large .yen {
  font-size: .32em;
  color: var(--sage);
  margin-top: .28em;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 42px;
  margin-top: 38px;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-item strong {
  font-family: var(--font-mono);
  color: var(--sage);
}

.recruit-home-band {
  padding: 74px 0;
  background: var(--ink);
  color: var(--paper);
}

.recruit-home-band .section-kicker,
.recruit-home-band .btn-line {
  color: var(--paper);
}

.recruit-home-band__inner {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  align-items: center;
}

.recruit-home-band h2 {
  max-width: 720px;
  margin: 10px 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.35;
}

.recruit-home-band p {
  max-width: 620px;
  color: rgba(251, 248, 243, .72);
}

.recruit-home-band__points {
  display: grid;
  gap: 12px;
}

.recruit-home-band__points article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(251, 248, 243, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
}

.recruit-home-band__points b {
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: .12em;
}

.news-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 54px;
  align-items: start;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
  text-decoration: none;
}

.news-row:first-child {
  padding-top: 0;
}

.news-row img {
  width: 128px;
  height: 88px;
  object-fit: cover;
  border-radius: 4px;
}

.news-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-bottom: 6px;
}

.faq-chat {
  width: min(820px, calc(100% - 48px));
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  width: fit-content;
  max-width: 78%;
  padding: 16px 20px;
  border-radius: 20px;
  font-size: 15px;
}

.bubble.q {
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
  border-top-left-radius: 6px;
}

.bubble.a {
  align-self: flex-end;
  background: var(--rose);
  color: var(--white);
  border-top-right-radius: 6px;
}

.image-cta {
  width: min(1120px, calc(100% - 48px));
  min-height: 340px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: var(--ink);
}

.image-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
}

.image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(21, 23, 25, .88) 35%, rgba(21, 23, 25, .48) 72%, rgba(183, 101, 112, .42));
}

.image-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 50px 6%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.footer-map {
  min-height: 430px;
  position: relative;
  background: #e4ece4;
  overflow: hidden;
}

.map-block,
.map-road,
.map-river,
.map-pin {
  position: absolute;
}

.map-block {
  background: #d5dfd4;
  border-radius: 4px;
}

.map-block.b1 { left: 6%; top: 10%; width: 18%; height: 20%; }
.map-block.b2 { left: 38%; top: 9%; width: 24%; height: 18%; }
.map-block.b3 { left: 11%; top: 50%; width: 22%; height: 21%; }
.map-block.b4 { left: 70%; top: 40%; width: 20%; height: 35%; }

.map-road {
  background: var(--white);
}

.map-road.r1 { left: 0; right: 0; top: 35%; height: 28px; }
.map-road.r2 { top: 0; bottom: 0; left: 56%; width: 28px; }
.map-road.r3 { left: 0; right: 0; top: 72%; height: 14px; transform: rotate(-4deg); }

.map-river {
  left: -4%;
  right: -4%;
  bottom: -14%;
  height: 30%;
  background: #c5dce3;
  border-radius: 50% 50% 0 0;
}

.map-pin {
  left: 50%;
  top: 42%;
  transform: translate(-50%, -100%);
  text-align: center;
}

.map-pin span {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--sage);
  transform: rotate(-45deg);
  box-shadow: 0 18px 28px -14px rgba(49, 92, 82, .8);
}

.map-pin b {
  display: inline-flex;
  padding: 7px 13px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
}

.footer-nap {
  padding: 56px clamp(28px, 5vw, 68px) 46px;
}

.footer-nap h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  margin: 12px 0 10px;
}

.footer-lead {
  color: var(--muted);
}

.footer-nap dl {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
}

.footer-nap dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--sage);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.footer-nap dd {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.footer-nap dd small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.footer-low {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 28px;
  border-top: 1px solid var(--line);
}

.footer-list {
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-list a,
.footer-low small {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.page-hero {
  padding: 96px 0 66px;
  background: linear-gradient(120deg, var(--paper) 0%, #f5eceb 55%, #ecf1ed 100%);
}

.recruit-hero {
  padding: 92px 0 86px;
  background: linear-gradient(120deg, var(--paper) 0%, #f5eceb 48%, #e7efea 100%);
  overflow: hidden;
}

.recruit-page {
  overflow-x: clip;
}

.recruit-hero__inner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.recruit-hero__copy,
.recruit-hero__media,
.recruit-message__grid > *,
.recruit-two-col > * {
  min-width: 0;
}

.recruit-hero__copy h1 {
  margin: 14px 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.22;
}

.recruit-hero__copy h1 span {
  display: block;
}

.recruit-hero__copy p {
  max-width: 620px;
  color: var(--ink-soft);
}

.recruit-hero__media {
  position: relative;
  min-height: 560px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recruit-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.recruit-hero__note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(21, 23, 25, .12);
}

.recruit-hero__note span {
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.recruit-hero__note b {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.45;
}

.recruit-message__grid,
.recruit-two-col {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.recruit-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.recruit-photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 18px 42px rgba(21, 23, 25, .12);
}

.recruit-photo-pair img:nth-child(2) {
  margin-top: 54px;
}

.recruit-ruled-list {
  margin-top: 28px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.recruit-ruled-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-ruled-list strong {
  color: var(--sage);
}

.recruit-ruled-list p {
  margin: 0;
  color: var(--muted);
}

.recruit-card-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.recruit-card,
.job-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.recruit-card span,
.job-card strong {
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.recruit-card h3,
.job-card h3 {
  margin: 12px 0 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
}

.recruit-card p,
.job-card p {
  margin: 0;
  color: var(--muted);
}

.day-flow,
.recruit-flow {
  display: grid;
  gap: 14px;
}

.day-flow article,
.recruit-flow article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.day-flow time,
.recruit-flow span {
  color: var(--sage);
  font-family: var(--font-mono);
  font-weight: 700;
}

.day-flow p,
.recruit-flow p {
  margin: 0;
}

.recruit-table {
  display: grid;
  border-top: 1px solid var(--ink);
}

.recruit-table div {
  display: grid;
  grid-template-columns: 150px 1fr 120px;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-table strong {
  color: var(--sage);
}

.recruit-table span {
  color: var(--ink-soft);
}

.recruit-table b {
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
}

.recruit-cta .image-cta__inner {
  align-items: center;
}

.page-hero h1,
.post-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.25;
  margin: 12px 0;
}

.crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
}

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

.archive-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(21, 23, 25, .08);
  border-radius: 6px;
  overflow: hidden;
}

.archive-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}

.archive-card__body {
  padding: 22px;
}

.archive-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 12px;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.single-main {
  min-width: 0;
}

.post-figure {
  margin: 0 0 34px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
}

.style-gallery {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.style-gallery__main {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(251, 248, 243, .92), rgba(242, 236, 228, .74)),
    var(--paper-2);
  border: 1px solid rgba(21, 23, 25, .08);
}

.style-gallery__main img {
  object-fit: contain;
}

.style-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.style-gallery__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-2);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.style-gallery__thumb:hover,
.style-gallery__thumb:focus-visible {
  opacity: .86;
}

.style-gallery__thumb.is-active {
  border-color: var(--sage);
}

.style-gallery__thumb:active {
  transform: scale(.98);
}

.style-gallery__thumb img {
  object-fit: cover;
}

.data-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}

.data-panel dl {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 18px;
}

.data-panel dt,
.data-panel dd {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.data-panel dt {
  color: var(--sage);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
}

.data-panel dd {
  margin: 0;
}

.interview-block {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.interview-block section {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.interview-block h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 8px;
}

.style-data-card {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--white), rgba(49, 92, 82, .06));
}

.style-data-card h2 {
  margin: 4px 0 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 24px;
  letter-spacing: .12em;
}

.style-data-list {
  display: grid;
  gap: 18px;
}

.style-data-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(21, 23, 25, .22);
}

.style-data-row b,
.style-keywords b {
  color: var(--ink-soft);
  font-weight: 700;
}

.style-data-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.style-data-pill {
  min-width: 92px;
  padding: 8px 14px;
  border: 1px solid rgba(21, 23, 25, .35);
  background: rgba(255, 255, 255, .62);
  text-align: center;
  font-size: 14px;
}

.style-data-pill.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
  font-weight: 700;
}

.face-shape-list {
  gap: 10px;
}

.face-shape {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  color: var(--muted);
  font-size: 12px;
}

.face-shape i {
  width: 42px;
  height: 42px;
  display: block;
  border: 1px solid var(--line);
  background: rgba(49, 92, 82, .18);
}

.face-shape:nth-child(1) i {
  border-radius: 48% 48% 42% 42%;
}

.face-shape:nth-child(2) i {
  border-radius: 50%;
}

.face-shape:nth-child(3) i {
  width: 34px;
  border-radius: 50%;
}

.face-shape:nth-child(4) i {
  clip-path: polygon(50% 8%, 92% 88%, 8% 88%);
}

.face-shape:nth-child(5) i {
  border-radius: 2px;
}

.face-shape.is-active {
  color: var(--sage);
  font-weight: 700;
}

.face-shape.is-active i {
  border-color: var(--sage);
  background: rgba(49, 92, 82, .72);
}

.style-keywords {
  display: grid;
  gap: 10px;
}

.style-keywords p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--ink-soft);
}

.style-keywords span {
  color: var(--sage);
}

.post-body {
  font-size: 17px;
}

.post-body h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-top: 42px;
}

.post-side {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.side-card,
.widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
}

.side-card h3,
.widget__ttl {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 14px;
}

.pagination,
.nav-links {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-numbers {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-numbers.current {
  background: var(--ink);
  color: var(--paper);
}

.reveal {
  opacity: 1;
}

.j .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 1160px) {
  .nav-links,
  .header-tel {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-drawer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-height: 0;
    overflow: hidden;
    background: var(--ink);
    transition: max-height .3s ease;
  }

  .nav-drawer.is-open {
    max-height: 440px;
  }

  .nav-drawer a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: rgba(255, 255, 255, .04);
    color: var(--paper);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .home-hero {
    min-height: auto;
    padding: 58px 0 70px;
  }

  .hero-inner,
  .intro-grid,
  .catalog-head,
  .split-head,
  .voice-feature,
  .staff-layout,
  .recruit-home-band__inner,
  .recruit-hero__inner,
  .recruit-message__grid,
  .recruit-two-col,
  .price-board,
  .news-layout,
  .site-footer,
  .single-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
    order: 0;
  }

  .reason-grid,
  .style-grid,
  .archive-grid,
  .staff-grid,
  .media-grid,
  .recruit-card-grid,
  .job-grid,
  .price-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 54px 1fr;
  }

  .service-row .en,
  .service-row p {
    grid-column: 2;
  }

  .price-large {
    text-align: left;
  }

  .image-cta__inner {
    grid-template-columns: 1fr;
  }

  .post-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .wrap,
  .wide-wrap,
  .hero-inner {
    width: min(100% - 32px, 520px);
  }

  .header-inner {
    width: 100%;
    min-height: 68px;
    padding: 0 14px;
    gap: 10px;
    position: relative;
  }

  .brand {
    padding-right: 58px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 18px;
    max-width: 180px;
  }

  .header-reserve {
    display: none;
  }

  .header-actions {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    z-index: 2;
  }

  .menu-button {
    display: inline-flex;
    flex: 0 0 46px;
    background: var(--sage);
    border-color: var(--sage);
  }

  .menu-button span {
    background: var(--white);
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-main-img {
    inset: 0 0 0 8%;
  }

  .floating-img {
    width: 42%;
  }

  .hero-ticket {
    width: 68%;
    right: 0;
  }

  .recruit-hero {
    padding: 64px 0;
  }

  .recruit-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.35;
    word-break: break-all;
    line-break: anywhere;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .recruit-hero__copy p,
  .recruit-page .section-title,
  .recruit-hero__note b {
    max-width: 100%;
    word-break: break-all;
    line-break: anywhere;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .recruit-hero .hero-actions {
    gap: 10px;
  }

  .recruit-hero .btn {
    min-width: 0;
    padding-inline: 16px;
    font-size: 13px;
  }

  .recruit-hero__media,
  .recruit-hero__media img {
    min-height: 420px;
  }

  .recruit-hero__note {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px;
  }

  .recruit-hero__note b {
    font-size: 20px;
    line-height: 1.55;
    word-break: normal;
    line-break: strict;
  }

  .hero-proof,
  .reason-grid,
  .style-grid,
  .archive-grid,
  .staff-grid,
  .media-grid,
  .recruit-card-grid,
  .job-grid,
  .price-list {
    grid-template-columns: 1fr;
  }

  .recruit-photo-pair {
    grid-template-columns: 1fr;
  }

  .recruit-photo-pair img:nth-child(2) {
    margin-top: 0;
  }

  .recruit-ruled-list article,
  .day-flow article,
  .recruit-flow article,
  .recruit-table div {
    grid-template-columns: 1fr;
  }

  .recruit-table b {
    text-align: left;
  }

  .gallery-cols {
    gap: 10px;
  }

  .gallery-col {
    gap: 10px;
  }

  .voice-index li a {
    grid-template-columns: 46px 1fr;
  }

  .voice-index .name,
  .voice-index .menu {
    grid-column: 2;
  }

  .bubble {
    max-width: 100%;
  }

  .news-row {
    grid-template-columns: 92px 1fr;
  }

  .news-row img {
    width: 92px;
    height: 78px;
  }

  .data-panel dl,
  .footer-nap dl {
    grid-template-columns: 1fr;
  }

  .style-gallery__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .style-data-card {
    padding: 22px;
  }

  .style-data-row {
    grid-template-columns: 1fr;
  }

  .data-panel dt,
  .footer-nap dt {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
