:root {
  --ink: #26332c;
  --ink-deep: #18221c;
  --moss: #53675b;
  --sage: #aebcad;
  --paper: #f4f1e9;
  --paper-warm: #e9e0d2;
  --sand: #d1bda2;
  --wood: #a46f43;
  --wood-deep: #70452f;
  --clay: #c86f4d;
  --white: #fffdf8;
  --line: rgba(38, 51, 44, 0.18);
  --shadow: 0 28px 72px rgba(29, 35, 31, 0.16);
  --radius: 2px;
  --content: 1180px;
  --header-height: 88px;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e59165;
  outline-offset: 4px;
}

::selection {
  background: var(--clay);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-deep);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(38, 51, 44, 0.1);
  background: rgba(244, 241, 233, 0.94);
  box-shadow: 0 8px 30px rgba(25, 32, 27, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  transform: skewY(-9deg);
}

.brand-mark i {
  display: block;
  background: var(--ink);
}

.brand-mark i:nth-child(1) {
  height: 100%;
}

.brand-mark i:nth-child(2) {
  height: 72%;
  margin-top: auto;
  background: var(--wood);
}

.brand-mark i:nth-child(3) {
  height: 46%;
  margin-top: auto;
  background: var(--clay);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.35;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--moss);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.global-nav a,
.footer-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.global-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 200ms ease;
}

.global-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-button-icon {
  display: flex;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-button-icon i {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-button[aria-expanded="true"] .menu-button-icon i:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.menu-button[aria-expanded="true"] .menu-button-icon i:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 76px) 0 84px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 253, 248, 0.92), transparent 38%),
    linear-gradient(135deg, var(--paper) 0%, #ece4d7 100%);
}

.hero::before {
  position: absolute;
  inset: auto auto -18% -5%;
  width: min(60vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(38, 51, 44, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(70, 59, 45, 0.025) 6px 7px),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.14) 8px 9px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 64px), var(--content));
  min-height: calc(100svh - var(--header-height) - 160px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.eyebrow,
.section-kicker {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 12px;
  color: var(--wood-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow span {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.eyebrow b {
  font-weight: inherit;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--wood-deep);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: #49554e;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--wood-deep);
}

.button b {
  font-size: 17px;
}

.draft-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5e675f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.draft-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 5px rgba(164, 111, 67, 0.13);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.visual-frame {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 48% 48% 4px 4px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.15), transparent 42%),
    #bcc6b9;
  box-shadow: var(--shadow);
}

.visual-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(38, 51, 44, 0.035) 54px 55px);
}

.sun-disc {
  position: absolute;
  top: 13%;
  right: 8%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ede1ce;
  box-shadow: inset 0 0 50px rgba(164, 111, 67, 0.08);
}

.wood-panel {
  position: absolute;
  bottom: 0;
  width: 32%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, var(--wood), var(--wood-deep));
  box-shadow: 12px 0 30px rgba(38, 29, 22, 0.15);
}

.panel-one {
  left: 0;
  height: 52%;
}

.panel-two {
  left: 33.5%;
  height: 39%;
  background-color: #c58b59;
}

.panel-three {
  right: 0;
  height: 29%;
  background-color: #82553d;
}

.furniture-form {
  position: absolute;
  z-index: 3;
  right: 12%;
  bottom: 16%;
  width: 58%;
  height: 34%;
}

.form-top {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  transform: skewX(-18deg);
  border-radius: 3px;
  background: var(--ink-deep);
  box-shadow: 0 18px 30px rgba(16, 20, 17, 0.22);
}

.form-side {
  position: absolute;
  top: 17%;
  right: 0;
  width: 16%;
  height: 54%;
  transform: skewY(-24deg);
  background: #35453c;
}

.form-leg {
  position: absolute;
  top: 15%;
  width: 6%;
  height: 82%;
  transform: skewX(-4deg);
  background: var(--ink-deep);
}

.leg-one {
  left: 11%;
}

.leg-two {
  right: 16%;
}

.visual-label {
  position: absolute;
  z-index: 4;
  top: 16%;
  left: 11%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  line-height: 1;
}

.visual-label span {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0.05em;
}

.visual-label small {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: max(32px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--moss);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--moss) 0 50%, transparent 50% 100%);
  background-size: 100% 200%;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { background-position: 0 100%; }
  100% { background-position: 0 -100%; }
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 152px) 0;
}

.section-inner {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}

.section-heading {
  padding-top: 12px;
}

.section-number {
  margin: 0 0 12px;
  color: var(--wood);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
}

.section-kicker {
  margin: 0;
}

.intro-content {
  max-width: 760px;
}

.intro-content h2,
.principles-head h2,
.company-heading h2,
.split-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.intro-content p {
  max-width: 650px;
  margin: 30px 0 0;
  color: #526057;
  font-size: 16px;
  line-height: 2.25;
}

.section-ink {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-ink::before {
  position: absolute;
  top: -30%;
  right: -12%;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.principles-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.principles-head .section-kicker {
  color: var(--sand);
}

.principles-head h2 {
  max-width: 660px;
}

.principle-list {
  position: relative;
  display: grid;
  margin-top: clamp(56px, 8vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: repeat(3, 1fr);
}

.principle-card {
  min-height: 300px;
  padding: 38px clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.principle-card:first-child {
  padding-left: 0;
}

.principle-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.principle-index {
  display: block;
  margin-bottom: 54px;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.principle-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.principle-card p {
  max-width: 300px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  line-height: 2;
}

.services {
  background: var(--paper-warm);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.service-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.service-card span {
  color: var(--wood);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.service-card h3 {
  margin: 52px 0 0;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
}

.service-card p {
  margin: 18px 0 0;
  color: #556259;
  font-size: 14px;
}

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

.company-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
}

.company-heading h2 {
  margin-top: 20px;
}

.company-heading > p:last-child {
  max-width: 260px;
  margin: 26px 0 0;
  color: #647067;
  font-size: 14px;
}

.company-panel {
  border-top: 1px solid var(--ink);
}

.company-list {
  margin: 0;
}

.company-list > div {
  display: grid;
  min-height: 82px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  align-items: start;
  gap: 20px;
}

.company-list dt {
  color: #68726c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.company-list dd {
  margin: 0;
  font-size: 15px;
}

.company-list dd > span {
  display: block;
}

.company-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--wood);
  background: var(--paper);
  color: #58635b;
  font-size: 13px;
}

.contact {
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(38, 51, 44, 0.96), rgba(65, 78, 69, 0.93)),
    var(--ink);
  color: var(--white);
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.contact::before {
  top: -70%;
  left: -8%;
  width: min(64vw, 800px);
  aspect-ratio: 1;
}

.contact::after {
  right: -10%;
  bottom: -110%;
  width: min(56vw, 680px);
  aspect-ratio: 1;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.contact-copy .section-kicker {
  color: var(--sand);
}

.contact-copy p:last-child,
.contact-copy p:nth-last-child(2) {
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-button {
  display: flex;
  min-height: 92px;
  padding: 18px 24px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-button:hover {
  background: var(--white);
  color: var(--ink);
}

.contact-button small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-button strong {
  margin-top: 3px;
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.05em;
}

.contact-button-light {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-inner {
  display: grid;
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand .brand-mark i {
  background: var(--white);
}

.footer-brand .brand-mark i:nth-child(2) {
  background: var(--sand);
}

.footer-brand .brand-mark i:nth-child(3) {
  background: var(--clay);
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.footer-brand strong {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.noscript-notice {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 18px;
  background: #fff3cf;
  color: #352d20;
  text-align: center;
  font-size: 13px;
}

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

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

.error-page {
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
}

.error-main {
  display: grid;
  min-height: 100svh;
  padding: 32px;
  place-items: center;
}

.error-panel {
  width: min(100%, 640px);
  padding: clamp(42px, 8vw, 80px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.brand-mark-large {
  width: 54px;
  height: 54px;
  margin-inline: auto;
}

.error-code {
  margin: 32px 0 0;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.error-panel h1 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 500;
}

.error-panel > p:not(.error-code) {
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.68);
}

.error-panel .button {
  border-color: rgba(255, 255, 255, 0.44);
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 40px), var(--content));
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .global-nav {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    padding: 42px 28px 80px;
    transform: translateX(100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease, visibility 240ms;
  }

  .global-nav.is-open {
    z-index: 99;
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .global-nav a {
    min-height: 70px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
  }

  .global-nav a::after {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 62px);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .hero-visual {
    width: min(86%, 480px);
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .company-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .principle-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .principle-index {
    margin-bottom: 24px;
  }

  .principle-card p {
    max-width: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .brand {
    gap: 10px;
  }

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

  .brand-copy strong {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 62px);
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-visual {
    width: 100%;
  }

  .visual-frame {
    border-radius: 44% 44% 3px 3px;
  }

  .section {
    padding: 82px 0;
  }

  .intro-content h2,
  .principles-head h2,
  .company-heading h2,
  .split-heading h2,
  .contact-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .intro-content p {
    font-size: 15px;
  }

  .principles-head,
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-list > div {
    min-height: auto;
    padding: 18px 0;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-button {
    padding-inline: 18px;
  }

  .contact-button strong {
    overflow-wrap: anywhere;
  }

  .footer-nav {
    gap: 12px 22px;
  }
}

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

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

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

@media print {
  .site-header,
  .hero-visual,
  .scroll-cue,
  .hero-actions,
  .contact {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 32px 0;
    background: #fff;
  }

  .section {
    padding: 32px 0;
  }

  .section-ink {
    background: #fff;
    color: #000;
  }
}

/* 株式会社愛和家具 production composition */
.global-nav .nav-contact {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
}

.global-nav .nav-contact::after {
  display: none;
}

.global-nav .nav-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(38, 51, 44, 0.38);
  background: rgba(255, 253, 248, 0.24);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-note {
  margin: 16px 0 0;
  color: #6a746e;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(48px, 5.3vw, 76px);
}

.hero h1 em {
  white-space: nowrap;
}

/* Content remains readable even when observers are delayed or unavailable. */
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 0 0 auto;
}

.hero-photo::before {
  position: absolute;
  z-index: -1;
  inset: -22px 24px 22px -22px;
  border: 1px solid rgba(38, 51, 44, 0.18);
  content: "";
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 50%;
  border-radius: 48% 48% 3px 3px;
  box-shadow: var(--shadow);
  filter: saturate(0.86) contrast(1.04);
}

.hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 3px 8px;
  background: rgba(24, 34, 28, 0.72);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-photo-line {
  position: absolute;
  top: 18%;
  left: -44px;
  width: 86px;
  height: 1px;
  background: var(--wood);
}

.hero-photo-caption {
  position: absolute;
  bottom: 38px;
  left: -30px;
  color: var(--wood-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.fact-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fact-strip-inner {
  display: grid;
  width: min(100%, var(--content));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip p {
  display: flex;
  min-height: 112px;
  margin: 0;
  padding: 24px clamp(24px, 4vw, 52px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.fact-strip p:first-child {
  border-left: 1px solid var(--line);
}

.fact-strip small {
  color: var(--wood-deep);
  font-family: Georgia, serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.18em;
}

.fact-strip strong {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500;
  letter-spacing: 0.09em;
}

.intro-lead {
  color: var(--ink) !important;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 2.05 !important;
}

.services.section-ink {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--ink);
  color: var(--white);
}

.services .section-number {
  color: rgba(255, 253, 248, 0.28);
}

.services .section-kicker {
  color: var(--sand);
}

.services .service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.services .service-card {
  min-height: 340px;
  padding: clamp(30px, 5vw, 58px);
  border: 0;
  background: rgba(24, 34, 28, 0.62);
}

.services .service-card > span {
  color: var(--sand);
}

.services .service-card .service-label {
  margin: 48px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.2em;
}

.services .service-card h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
}

.services .service-card p:last-child {
  max-width: 460px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
}

.license-band {
  display: grid;
  margin-top: 1px;
  padding: clamp(30px, 5vw, 56px);
  grid-template-columns: minmax(210px, 0.65fr) 1fr;
  gap: clamp(32px, 6vw, 90px);
  background: var(--white);
  color: var(--ink);
}

.license-band h3 {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
}

.license-band dl {
  margin: 0;
}

.license-band dl > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 118px 1fr;
  gap: 20px;
}

.license-band dt {
  color: #6a746e;
  font-size: 11px;
  font-weight: 700;
}

.license-band dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.company-phone {
  display: inline-flex;
  min-height: 74px;
  margin-top: 38px;
  padding: 14px 18px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.company-phone:hover {
  background: var(--ink);
  color: var(--white);
}

.company-phone small {
  font-size: 9px;
  font-weight: 700;
}

.company-phone strong {
  font-family: Georgia, serif;
  font-size: 23px;
  letter-spacing: 0.05em;
}

.company-list dd small {
  color: #69736d;
  font-size: 12px;
}

.map-link {
  display: flex;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.map-link:hover {
  background: var(--ink);
  color: var(--white);
}

.contact-actions > p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.63);
  font-size: 12px;
}

.contact-button {
  position: relative;
}

.contact-button > span {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 22px;
}

@media (max-width: 900px) {
  .global-nav .nav-contact {
    padding: 0;
    border: 0;
  }

  .hero-photo {
    width: min(82%, 520px);
    margin-inline: auto;
  }

  .fact-strip-inner {
    width: 100%;
  }

  .license-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .desktop-break {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero h1 span,
  .hero h1 em {
    white-space: nowrap;
  }

  .hero-photo {
    width: calc(100% - 20px);
  }

  .hero-photo::before {
    inset: -12px 14px 14px -12px;
  }

  .hero-photo-line,
  .hero-photo-caption {
    display: none;
  }

  .fact-strip-inner {
    grid-template-columns: 1fr;
  }

  .fact-strip p,
  .fact-strip p:first-child {
    min-height: 88px;
    padding: 16px 24px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .services .service-grid {
    grid-template-columns: 1fr;
  }

  .services .service-card {
    min-height: 290px;
  }

  .license-band dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-phone {
    width: 100%;
  }
}

@media print {
  .hero-photo,
  .fact-strip,
  .company-phone,
  .map-link {
    display: none !important;
  }
}

/* 掲載情報について（公的情報の出典） */
.sources {
  padding-block: clamp(64px, 8vw, 108px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.sources-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 84px);
}

.sources-head h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.sources-head p {
  max-width: 46em;
  margin: 0;
  color: rgba(38, 51, 44, 0.82);
  font-size: 14px;
  line-height: 2;
}

.sources-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.sources-list li {
  display: flex;
  padding: 18px 2px;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.sources-list strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sources-list a {
  display: inline;
  padding-block: 4px;
  color: var(--wood-deep);
  font-size: 13px;
  line-height: 2.1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sources-list a span {
  padding-left: 4px;
  text-decoration: none;
}

.sources-list a:hover {
  color: var(--clay);
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: var(--sand);
}

@media (max-width: 900px) {
  .sources-shell {
    grid-template-columns: 1fr;
  }
}

@media print {
  .sources {
    background: none;
  }
}

/* Visual edition v2: authentic Instagram photography / solemn celebration */
:root {
  --gold: #b2904f;
  --gold-light: #d9c08a;
  --lacquer: #4a211d;
  --forest: #13251d;
  --ivory: #f8f3e8;
}

.global-nav {
  gap: clamp(18px, 2.1vw, 34px);
}

.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 253, 248, 0.96), transparent 36%),
    linear-gradient(105deg, rgba(178, 144, 79, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, var(--paper) 0%, #e8dfd0 100%);
  background-size: auto, 68px 68px, auto;
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 0;
  width: min(38vw, 510px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(178, 144, 79, 0.7));
}

.hero-instagram {
  display: grid;
  width: fit-content;
  min-height: 52px;
  margin-top: 24px;
  padding: 8px 14px;
  border-top: 1px solid rgba(38, 51, 44, 0.28);
  border-bottom: 1px solid rgba(38, 51, 44, 0.28);
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 12px;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-instagram:hover {
  border-color: var(--gold);
  color: var(--wood-deep);
}

.hero-instagram span {
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.12em;
}

.hero-instagram strong {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero-instagram b {
  color: var(--gold);
  font-size: 18px;
}

.hero-photo {
  isolation: isolate;
}

.hero-photo::after {
  position: absolute;
  z-index: -1;
  inset: 20px -16px -16px 22px;
  border: 1px solid rgba(178, 144, 79, 0.52);
  content: "";
}

.hero-photo-crest {
  position: absolute;
  top: -28px;
  right: -18px;
  display: grid;
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold-light);
  place-items: center;
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(19, 37, 29, 0.2);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.2em;
}

.hero-photo-crest::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(217, 192, 138, 0.42);
  content: "";
}

.fact-strip {
  border-top-color: rgba(178, 144, 79, 0.36);
  border-bottom-color: rgba(178, 144, 79, 0.36);
}

.fact-strip small,
.section-kicker {
  color: #76532f;
}

.craft-gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(178, 144, 79, 0.26);
  background:
    linear-gradient(90deg, rgba(178, 144, 79, 0.045) 1px, transparent 1px),
    linear-gradient(#f0e9dd, #f6f1e8);
  background-size: 72px 72px, auto;
}

.craft-gallery::before {
  position: absolute;
  z-index: -1;
  top: 3%;
  right: -9%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(178, 144, 79, 0.3);
  border-radius: 50%;
  content: "";
}

.craft-gallery::after {
  position: absolute;
  z-index: -1;
  bottom: 4%;
  left: -16%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(19, 37, 29, 0.04);
}

.craft-heading {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 90px);
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
}

.craft-heading-copy {
  max-width: 700px;
}

.craft-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(37px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.09em;
}

.craft-heading-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #59645e;
  font-size: 14px;
  line-height: 2.1;
}

.instagram-cta {
  display: grid;
  width: min(100%, 430px);
  min-height: 80px;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid rgba(19, 37, 29, 0.44);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  background: rgba(248, 243, 232, 0.72);
  box-shadow: 8px 8px 0 rgba(178, 144, 79, 0.12);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.instagram-cta:hover {
  transform: translate(-2px, -2px);
  background: var(--forest);
  color: var(--ivory);
}

.instagram-cta-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 19px;
}

.instagram-cta > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.instagram-cta small {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.2em;
}

.instagram-cta strong {
  margin-top: 2px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.instagram-cta b {
  color: var(--gold);
  font-size: 21px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
}

.craft-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(178, 144, 79, 0.35);
  background: var(--forest);
  box-shadow: 0 22px 54px rgba(30, 38, 33, 0.13);
}

.craft-card::after {
  position: absolute;
  z-index: 3;
  inset: 9px;
  border: 1px solid rgba(248, 243, 232, 0.36);
  content: "";
  pointer-events: none;
  transition: inset 260ms ease, border-color 260ms ease;
}

.craft-card:hover::after {
  inset: 15px;
  border-color: rgba(217, 192, 138, 0.78);
}

.craft-card figure {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.craft-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 400ms ease;
}

.craft-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.craft-card figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  min-height: 138px;
  padding: 54px clamp(22px, 3vw, 36px) 24px;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent, rgba(13, 24, 19, 0.92));
  color: var(--ivory);
}

.craft-card figcaption small {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.18em;
}

.craft-card figcaption strong {
  margin-top: 3px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.craft-card figcaption span {
  margin-top: 2px;
  color: rgba(248, 243, 232, 0.66);
  font-size: 9px;
}

.craft-card-feature {
  grid-column: span 7;
  grid-row: span 2;
}

.craft-card-feature figure {
  aspect-ratio: 4 / 5;
}

.craft-card-detail,
.craft-card-tissue {
  grid-column: span 5;
}

.craft-card-detail figure,
.craft-card-tissue figure {
  aspect-ratio: 5 / 4;
}

.craft-card-zodiac,
.craft-card-cat {
  grid-column: span 6;
}

.craft-card-zodiac figure,
.craft-card-cat figure {
  aspect-ratio: 4 / 3;
}

.craft-card-zodiac img {
  object-position: 50% 64%;
}

.craft-card-cat img {
  object-position: 50% 48%;
}

.craft-note {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
  color: #6a746e;
  font-size: 11px;
}

.services.section-ink {
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(217, 192, 138, 0.055) 0 1px, transparent 1px 56px),
    radial-gradient(circle at 94% 12%, rgba(178, 144, 79, 0.13), transparent 25%),
    var(--forest);
  background-size: 56px 56px, auto, auto;
}

.services .service-card {
  background: rgba(12, 29, 21, 0.78);
}

.license-band {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.company {
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(178, 144, 79, 0.12) 11% calc(11% + 1px), transparent calc(11% + 1px)),
    var(--paper);
}

.company-panel {
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 58px rgba(27, 35, 30, 0.08);
}

.contact-instagram {
  position: relative;
  display: flex;
  min-height: 82px;
  padding: 14px 62px 14px 20px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(217, 192, 138, 0.62);
  color: var(--ivory);
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-instagram:hover {
  background: var(--ivory);
  color: var(--forest);
}

.contact-instagram small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
}

.contact-instagram strong {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.contact-instagram > span {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 22px;
}

.site-footer {
  border-top: 1px solid rgba(178, 144, 79, 0.26);
}

@media (max-width: 900px) {
  .hero-photo-crest {
    right: -10px;
  }

  .craft-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .craft-heading > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 18px;
  }

  .craft-card-feature {
    grid-column: span 12;
    grid-row: auto;
  }

  .craft-card-feature figure {
    aspect-ratio: 16 / 10;
  }

  .craft-card-detail,
  .craft-card-tissue,
  .craft-card-zodiac,
  .craft-card-cat {
    grid-column: span 6;
  }

  .craft-card-detail figure,
  .craft-card-tissue figure,
  .craft-card-zodiac figure,
  .craft-card-cat figure {
    aspect-ratio: 1;
  }
}

@media (max-width: 600px) {
  .hero::after {
    display: none;
  }

  .hero-instagram {
    width: 100%;
  }

  .hero-photo-crest {
    top: -18px;
    right: -2px;
    width: 56px;
    height: 56px;
    font-size: 12px;
  }

  .craft-gallery {
    padding-top: 86px;
  }

  .craft-heading {
    margin-bottom: 42px;
  }

  .craft-heading h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .craft-heading-copy > p {
    margin-top: 20px;
  }

  .instagram-cta {
    min-height: 74px;
    margin-top: 24px;
  }

  .craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .craft-card-feature {
    grid-column: 1 / -1;
  }

  .craft-card-detail,
  .craft-card-tissue,
  .craft-card-zodiac,
  .craft-card-cat {
    grid-column: span 1;
  }

  .craft-card-feature figure {
    aspect-ratio: 4 / 5;
  }

  .craft-card-detail figure,
  .craft-card-tissue figure,
  .craft-card-zodiac figure,
  .craft-card-cat figure {
    aspect-ratio: 4 / 5;
  }

  .craft-card figcaption {
    min-height: 102px;
    padding: 42px 14px 16px;
  }

  .craft-card figcaption small {
    font-size: 7px;
  }

  .craft-card figcaption strong {
    font-size: 13px;
    line-height: 1.55;
  }

  .craft-card figcaption span {
    display: none;
  }

  .craft-card::after {
    inset: 6px;
  }

  .craft-note {
    font-size: 10px;
    line-height: 1.8;
  }

  .contact-instagram {
    min-height: 76px;
  }
}

@media print {
  .hero-instagram,
  .instagram-cta,
  .contact-instagram {
    display: none !important;
  }
}

/* ---------------------------------------------------------------- コントラスト是正（WCAG AA 4.5:1） */
/* Lighthouse(mobile) color-contrast 指摘の是正。明るい面は濃い茶、暗い面は明るい砂色に振る。 */
.intro .section-number,
.company .section-number,
.sources .section-number {
  color: var(--wood-deep);
}

.services .section-number {
  color: var(--sand);
}

.license-band .section-kicker {
  color: var(--wood-deep);
}

.copyright {
  color: rgba(255, 255, 255, 0.64);
}
