:root {
  --white: #ffffff;
  --ink: #1f1f1f;
  --gold: #9c7307;
  --gold-soft: #b9994c;
  --paper: #f7f5f0;
  --gray: #dddddd;
  --gray-dark: #a9a9a9;
  --line: #d8d5cf;
  --max: 1280px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP",
    serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
    "Noto Sans JP", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.045em;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

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

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

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

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p,
li,
dt,
dd {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3,
:lang(ja) p,
:lang(ja) li,
:lang(ja) dt,
:lang(ja) dd,
:lang(ja) strong {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 92px;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 62px;
}

.brand-mark {
  width: 48px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-text small {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.registered-mark {
  position: relative;
  top: -0.2em;
  margin-left: 0.08em;
  font-family: var(--sans);
  font-size: 0.42em;
  font-weight: 400;
  line-height: 0;
  letter-spacing: 0;
  vertical-align: super;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}

.global-nav > a,
.nav-business > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.035em;
}

.global-nav > a::after,
.nav-business > a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.35s ease;
}

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

.nav-business {
  position: relative;
  display: flex;
  height: 100%;
}

.nav-submenu {
  position: absolute;
  top: 72px;
  right: -24px;
  display: grid;
  visibility: hidden;
  width: 330px;
  padding: 14px 24px 20px;
  transform: translateY(-8px);
  opacity: 0;
  border-top: 2px solid var(--gold);
  background: var(--ink);
  color: var(--white);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.nav-business:hover .nav-submenu,
.nav-business:focus-within .nav-submenu {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.nav-submenu a:last-child {
  border-bottom: 0;
}

.nav-submenu a:hover {
  color: #d8bd78;
}

.nav-submenu span {
  color: #d8bd78;
  font-family: Georgia, serif;
  font-size: 10px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  height: 100svh;
  padding: 145px 6.5vw 75px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-company,
.eyebrow {
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 8.2vw, 126px);
  font-weight: 400;
  line-height: 0.79;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  display: block;
  animation: heroRise 0.9s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-copy h1 span:nth-child(2) {
  margin-left: 0.72em;
  color: var(--gold);
  animation-delay: 0.1s;
}

.hero-japanese {
  margin: 42px 0 22px 12px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.hero-description {
  margin-left: 12px;
  font-size: 14px;
  line-height: 1.9;
}

.hero-emblem {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(34vw, 460px);
  aspect-ratio: 1;
}

.hero-emblem::before,
.hero-emblem::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(156, 115, 7, 0.36);
  border-radius: 50%;
}

.hero-emblem::before {
  inset: 0;
  animation: slowSpin 24s linear infinite;
}

.hero-emblem::after {
  inset: 8%;
  border-style: dashed;
}

.hero-emblem img {
  position: relative;
  z-index: 2;
  width: 71%;
  opacity: 0.96;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.08));
}

.registered-mark-hero {
  position: absolute;
  z-index: 3;
  top: 13%;
  right: 10%;
  color: var(--gold);
  font-size: clamp(14px, 1.5vw, 21px);
}

.hero-ring {
  position: absolute;
  z-index: -1;
  inset: 17%;
  border-radius: 50%;
  background: var(--paper);
}

.scroll-label {
  position: absolute;
  bottom: 0;
  left: 6.5vw;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: rotate(90deg);
  transform-origin: left bottom;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.scroll-label i {
  display: block;
  width: 75px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-label i::after {
  display: block;
  width: 35%;
  height: 100%;
  content: "";
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

.mission-section,
.business-section,
.highlight-section,
.company-preview,
.news-preview,
.business-intro,
.business-grid-page,
.service-lead,
.service-scope,
.value-section,
.service-sections,
.service-closing,
.company-main-image,
.company-profile,
.statement-section,
.contact-intro,
.contact-form-section,
.privacy-content,
.news-archive {
  width: min(var(--max), calc(100% - 12vw));
  margin: 0 auto;
}

.mission-section {
  display: grid;
  padding: 125px 0;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid var(--line);
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-index span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.section-index strong {
  font-size: 12px;
  font-weight: 500;
}

.section-index-home {
  gap: 5px;
}

.section-index-home span {
  font-size: 18px;
}

.section-index-home strong {
  font-size: 14px;
}

.mission-copy {
  max-width: 820px;
}

.mission-copy h2 {
  margin-bottom: 40px;
  font-size: clamp(28px, 3vw, 42px);
}

.mission-copy h2,
.section-heading-row h2,
.highlight-copy h2,
.business-intro h2,
.service-lead h2,
.service-scope h2,
.value-section > h2,
.service-detail h2,
.service-closing h2,
.statement-section h2,
.contact-intro h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.mission-copy p {
  margin-bottom: 25px;
  line-height: 2;
}

.business-section {
  padding: 120px 0;
}

.section-heading-row {
  display: grid;
  align-items: start;
  margin-bottom: 65px;
  grid-template-columns: 280px 1fr;
}

.business-list {
  border-top: 1px solid var(--ink);
}

.business-card {
  display: grid;
  align-items: center;
  min-height: 168px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr 80px;
  transition:
    color 0.35s ease,
    padding 0.35s ease,
    background 0.35s ease;
}

.business-card:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: var(--ink);
  color: var(--white);
}

.card-number {
  align-self: start;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.business-card p {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.business-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.card-summary {
  display: block;
  max-width: 670px;
  font-size: 12px;
  line-height: 1.9;
  opacity: 0.72;
}

.card-arrow {
  position: relative;
  justify-self: end;
  width: 19px;
  height: 19px;
}

.card-arrow::before {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.card-arrow::after {
  position: absolute;
  top: 9px;
  right: 1px;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.business-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-width: 230px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink);
  font-family: Georgia, serif;
  font-size: 13px;
  transition: color 0.25s ease;
}

.arrow-link:hover {
  color: var(--gold);
}

.highlight-section {
  display: grid;
  align-items: center;
  padding: 120px 0;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  border-top: 1px solid var(--line);
}

.highlight-copy h2 {
  margin-bottom: 35px;
  font-size: clamp(28px, 3vw, 42px);
}

.highlight-copy > p:not(.eyebrow) {
  margin-bottom: 38px;
  line-height: 2;
}

.placeholder-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
    #d2d2d2;
  color: #7b7b7b;
}

.placeholder-image::before,
.placeholder-image::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.36);
}

.placeholder-image::before {
  width: 120%;
  height: 1px;
  transform: rotate(35deg);
}

.placeholder-image::after {
  width: 1px;
  height: 120%;
  transform: rotate(35deg);
}

.placeholder-image span {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(210, 210, 210, 0.9);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.placeholder-square {
  aspect-ratio: 1;
}

.placeholder-landscape {
  aspect-ratio: 4 / 3;
}

.placeholder-wide {
  aspect-ratio: 16 / 9;
}

.placeholder-portrait {
  aspect-ratio: 4 / 5;
}

.site-image {
  overflow: hidden;
  background: #d2d2d2;
}

.site-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-image-square {
  aspect-ratio: 1;
}

.site-image-landscape {
  aspect-ratio: 4 / 3;
}

.site-image-wide {
  aspect-ratio: 16 / 9;
}

.site-image-portrait {
  aspect-ratio: 4 / 5;
}

.company-preview {
  display: grid;
  align-items: start;
  padding: 125px 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.company-preview-content {
  min-width: 0;
}

.company-preview-description {
  max-width: 520px;
  margin: 46px 0 0;
  line-height: 2;
}

.company-preview-link {
  margin-top: 38px;
}

.mini-profile {
  margin: 80px 0 0;
  border-top: 1px solid var(--ink);
}

.company-preview .mini-profile {
  margin: 0;
}

.mini-profile div {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
}

.mini-profile dt {
  font-size: 12px;
}

.mini-profile dd {
  margin: 0;
  font-size: 13px;
}

.news-preview {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.news-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
}

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

.news-item {
  display: grid;
  align-items: center;
  min-height: 108px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 140px 1fr 30px;
  transition:
    color 0.25s ease,
    padding 0.25s ease;
}

.news-item:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--gold);
}

.news-item time {
  font-family: Georgia, serif;
  font-size: 12px;
}

.news-item > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.news-item strong {
  font-size: 14px;
  font-weight: 500;
}

.news-item i {
  justify-self: end;
  font-style: normal;
}

.contact-band {
  position: relative;
  padding: 105px max(6vw, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--gold);
  color: var(--white);
}

.contact-band::after {
  position: absolute;
  top: 50%;
  right: -9vw;
  width: 42vw;
  aspect-ratio: 1;
  content: "";
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.contact-band .eyebrow {
  color: var(--white);
  opacity: 0.8;
}

.contact-band h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-band p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  margin-bottom: 35px;
  line-height: 1.9;
}

.contact-band .arrow-link {
  position: relative;
  z-index: 2;
  border-color: var(--white);
}

.site-footer {
  padding: 100px 5.5vw 32px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer-brand span {
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.footer-address {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.9;
  opacity: 0.65;
}

.footer-links {
  display: grid;
  max-width: 650px;
  margin: 70px 0 90px auto;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  padding: 7px 0;
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links .footer-heading {
  margin-bottom: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  font-size: 17px;
  opacity: 1;
}

.footer-primary-links a {
  margin: 0;
  padding: 7px 0;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  opacity: 0.7;
}

.footer-primary-links a:first-child {
  border-top: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 465px;
  padding: 145px max(6vw, calc((100vw - var(--max)) / 2)) 75px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: 8vw;
  bottom: -30%;
  width: min(44vw, 600px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(156, 115, 7, 0.28);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
}

.page-hero-description {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(var(--max), calc(100% - 12vw));
  margin: 0 auto;
  padding: 26px 0;
  color: #777;
  font-size: 10px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.business-intro {
  padding: 90px 0 80px;
}

.business-intro h2 {
  margin-bottom: 38px;
}

.business-intro > p:last-child {
  max-width: 680px;
  margin-left: auto;
  line-height: 2;
}

.business-grid-page {
  display: grid;
  padding-bottom: 150px;
  grid-template-columns: 1fr 1fr;
  gap: 65px 4.5vw;
}

.service-tile {
  display: block;
}

.service-tile .placeholder-image,
.service-tile .site-image {
  transition: filter 0.35s ease;
}

.service-tile:hover .placeholder-image,
.service-tile:hover .site-image {
  filter: brightness(0.92);
}

.service-tile-copy {
  position: relative;
  padding: 28px 0 0;
}

.service-tile-copy > span {
  position: absolute;
  top: 31px;
  right: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.service-tile-copy p {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.service-tile-copy h2 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.service-tile-copy strong {
  display: block;
  max-width: 560px;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

.service-tile-copy i {
  display: block;
  margin-top: 22px;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: normal;
}

.service-lead {
  display: grid;
  align-items: center;
  padding: 95px 0 120px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 9vw;
}

.service-lead h2 {
  margin-bottom: 45px;
  font-size: clamp(28px, 3vw, 42px);
}

.service-lead-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
  line-height: 2;
}

.service-scope {
  display: grid;
  padding: 105px 0;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid var(--line);
}

.service-scope h2 {
  margin-bottom: 40px;
  font-size: clamp(28px, 3vw, 42px);
}

.service-scope > div:last-child {
  max-width: 820px;
}

.service-scope p {
  margin-bottom: 22px;
  line-height: 2;
}

.value-section {
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
}

.value-section > h2 {
  margin-bottom: 55px;
  font-size: clamp(28px, 3vw, 42px);
}

.value-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.value-grid article {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.value-grid h3 {
  margin: 48px 0 20px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.value-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.85;
}

.service-sections {
  padding-bottom: 90px;
}

.service-detail {
  display: grid;
  padding: 100px 0 110px;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-detail-heading > span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.service-detail-heading > p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
}

.service-detail-content {
  max-width: 820px;
}

.service-detail h2 {
  margin-bottom: 40px;
  font-size: clamp(28px, 3vw, 42px);
}

.service-detail-content p {
  margin-bottom: 22px;
  line-height: 2;
}

.service-closing {
  padding: 105px 7vw;
  background: var(--paper);
}

.service-closing h2 {
  max-width: 950px;
  margin-bottom: 45px;
}

.service-closing > p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 18px;
  line-height: 2.15;
}

.closing-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 65px;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  transition: color 0.25s ease;
}

.closing-link:hover {
  color: var(--gold);
}

.news-archive {
  padding: 85px 0 120px;
}

.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-bottom: 55px;
  color: #888;
  font-family: Georgia, serif;
  font-size: 12px;
}

.archive-filter a {
  color: inherit;
  transition: color 0.2s ease;
}

.archive-filter a:hover,
.archive-filter a.is-active {
  color: var(--gold);
}

.news-archive .navigation.pagination {
  margin-top: 55px;
}

.news-archive .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-archive .page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  place-items: center;
  font-size: 12px;
}

.news-archive .page-numbers.current,
.news-archive .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.news-detail-page {
  width: min(950px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 160px 0 115px;
}

.news-detail-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  font-size: 12px;
}

.news-detail-meta span {
  color: var(--gold);
}

.news-detail-page h1 {
  margin-bottom: 45px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.breadcrumb-article {
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-body {
  padding: 60px 0;
  font-size: 15px;
  line-height: 2.1;
}

.news-body p {
  margin-bottom: 28px;
}

.back-link {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: Georgia, serif;
  font-size: 12px;
}

.company-main-image {
  padding: 65px 0 100px;
}

.company-profile {
  display: grid;
  padding: 100px 0;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid var(--line);
}

.company-profile dl {
  margin: 0;
}

.company-profile dl div {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
}

.company-profile dt {
  font-size: 12px;
}

.company-profile dd {
  margin: 0;
  font-size: 13px;
}

.statement-section {
  display: grid;
  padding: 110px 0 125px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
  border-top: 1px solid var(--line);
}

.statement-section .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.statement-section h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.statement-section > div p {
  margin-bottom: 24px;
  line-height: 2;
}

.contact-intro {
  padding: 85px 0 55px;
}

.contact-intro h2 {
  margin-bottom: 40px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.contact-intro p {
  max-width: 780px;
  margin-bottom: 15px;
  line-height: 2;
}

.contact-form-section {
  padding: 35px 0 110px;
}

.contact-form {
  border-top: 1px solid var(--ink);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  align-items: center;
  min-height: 118px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 280px 1fr;
  gap: 35px;
}

.form-row-top {
  align-items: start;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
}

.form-row label span {
  margin-left: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d7d4ce;
  border-radius: 0;
  outline: none;
  background: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
}

.global-nav > .nav-ren {
  height: auto;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.global-nav > .nav-ren::after {
  display: none;
}

.global-nav > .nav-ren:hover {
  background: var(--gold);
  color: var(--white);
}

/* 根津樹木葬 蓮-REN- */

.ren-page {
  --ren-green: #173f31;
  --ren-green-deep: #0d2e23;
  --ren-cream: #f4f0e5;
  --ren-gold: #a67c22;
  background: #fff;
}

.ren-container {
  width: min(1180px, calc(100% - 12vw));
  margin: 0 auto;
}

.ren-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 790px;
  padding: 175px max(6vw, calc((100vw - 1180px) / 2)) 80px;
  overflow: hidden;
  color: var(--white);
}

.ren-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.ren-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 30, 22, 0.9) 0%, rgba(8, 30, 22, 0.69) 43%, rgba(8, 30, 22, 0.14) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 55%);
}

.ren-hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 60vw);
}

.ren-hero-content > p {
  margin-bottom: 18px;
  color: #d7c690;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ren-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 98px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.11em;
}

.ren-hero h1 small {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.ren-hero h1 span {
  margin-left: 0.14em;
  color: #d7c690;
  font-family: Georgia, serif;
  font-size: 0.34em;
  letter-spacing: 0.08em;
  vertical-align: 0.2em;
}

.ren-hero h2 {
  margin: 25px 0 34px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.13em;
}

.ren-hero ul {
  display: flex;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.ren-hero li {
  padding: 2px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.ren-hero li:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.ren-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 190px;
  min-height: 56px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 13px;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.ren-action-primary,
.ren-action-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ren-green-deep);
}

.ren-action-primary:hover {
  border-color: #d7c690;
  background: #d7c690;
}

.ren-button-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
}

.ren-icon-document::before,
.ren-icon-document::after {
  position: absolute;
  left: 3px;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
}

.ren-icon-document::before {
  top: 5px;
}

.ren-icon-document::after {
  top: 9px;
}

.ren-icon-calendar::before {
  position: absolute;
  top: 4px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
}

.ren-icon-calendar::after {
  position: absolute;
  top: -3px;
  left: 3px;
  width: 7px;
  height: 4px;
  content: "";
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.ren-local-nav {
  position: sticky;
  z-index: 20;
  top: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-bottom: 1px solid #ddd8cb;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.ren-local-nav a {
  padding: 7px 27px;
  border-left: 1px solid #ddd8cb;
  font-size: 11px;
}

.ren-local-nav a:last-child {
  border-right: 1px solid #ddd8cb;
}

.ren-intro {
  display: grid;
  padding: 120px 0 135px;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0 65px;
}

.ren-section-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ren-section-label span {
  color: var(--ren-gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.09em;
}

.ren-section-label strong {
  font-size: 12px;
  font-weight: 500;
}

.ren-intro-copy {
  max-width: 790px;
}

.ren-kicker {
  margin-bottom: 20px;
  color: var(--ren-gold);
  font-size: 12px;
}

.ren-intro h2,
.ren-memory h2,
.ren-section-heading h2,
.ren-guide h2,
.ren-contact-heading h2 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.ren-intro-copy > p:not(.ren-kicker),
.ren-memory-copy > p:not(.ren-kicker),
.ren-guide-grid > div:last-child > p {
  margin-bottom: 20px;
  line-height: 2.05;
}

.ren-poster {
  margin: 80px 0 0;
  grid-column: 1 / -1;
}

.ren-poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ren-memory {
  padding: 125px 0;
  background: var(--ren-green);
  color: var(--white);
}

.ren-memory-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 9vw;
}

.ren-memory-copy .ren-kicker {
  color: #d7c690;
  font-family: Georgia, serif;
  letter-spacing: 0.13em;
}

.ren-memory-images {
  position: relative;
  min-height: 570px;
}

.ren-memory-images img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.ren-memory-images img:first-child {
  top: 0;
  right: 0;
  width: 78%;
  height: 64%;
}

.ren-memory-images img:last-child {
  bottom: 0;
  left: 0;
  width: 68%;
  height: 48%;
}

.ren-points {
  padding: 130px 0 145px;
}

.ren-section-heading {
  display: grid;
  align-items: start;
  margin-bottom: 75px;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 65px;
}

.ren-section-heading h2 {
  margin-bottom: 0;
}

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

.ren-point-grid article {
  position: relative;
  min-height: 260px;
  padding: 36px 45px 42px 80px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ren-point-grid article:nth-child(even) {
  border-right: 0;
}

.ren-point-grid article > span {
  position: absolute;
  top: 39px;
  left: 25px;
  color: var(--ren-gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.ren-point-grid h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.ren-point-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.95;
}

.ren-gallery {
  padding: 125px 0 140px;
  border-top: 1px solid var(--line);
}

.ren-gallery-grid {
  display: flex;
  justify-content: safe center;
  width: 100%;
  gap: 18px;
  padding: 0 0 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(23, 63, 49, 0.34) transparent;
  scrollbar-width: thin;
}

.ren-gallery-grid figure {
  width: clamp(270px, 27vw, 345px);
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}

.ren-gallery-wide {
  grid-column: auto;
}

.ren-gallery-grid img {
  display: block;
  width: 100%;
  height: 123px;
  object-fit: cover;
  object-position: center;
}

.ren-gallery-wide img {
  object-position: center;
}

.ren-gallery-grid figcaption {
  margin-top: 12px;
  font-size: 11px;
}

.ren-guide {
  padding: 125px 0;
  background: var(--ren-cream);
}

.ren-guide-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 65px;
}

.ren-guide-grid > div:last-child {
  max-width: 810px;
}

.ren-contact {
  padding: 125px 0 135px;
  background: var(--ren-green-deep);
  color: var(--white);
}

.ren-contact-heading {
  text-align: center;
}

.ren-contact-heading > p {
  margin-bottom: 12px;
  color: #d7c690;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.13em;
}

.ren-contact-heading h2 {
  margin-bottom: 12px;
}

.ren-contact-heading > strong {
  display: block;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.ren-contact-heading > span {
  display: block;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.ren-contact-options {
  display: grid;
  align-items: stretch;
  margin: 60px 0 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: 1fr 1fr;
}

.ren-contact-options > div {
  padding: 35px 40px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.ren-contact-options > div > p {
  margin-bottom: 18px;
  font-size: 11px;
  opacity: 0.7;
}

.ren-actions-compact .ren-action-button {
  min-width: 150px;
  min-height: 50px;
}

.ren-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 20px 30px 50px;
}

.ren-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.ren-phone > span:last-child {
  display: flex;
  flex-direction: column;
}

.ren-phone small {
  margin-bottom: 2px;
  font-size: 10px;
  opacity: 0.7;
}

.ren-phone strong {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.045em;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

.ren-phone em {
  font-size: 10px;
  font-style: normal;
  opacity: 0.7;
}

.ren-form {
  scroll-margin-top: 120px;
  padding: 55px 6vw 62px;
  background: var(--white);
  color: var(--ink);
}

.ren-inquiry-choice {
  display: grid;
  margin: 0 0 38px;
  padding: 0;
  border: 0;
  grid-template-columns: 200px 1fr 1fr;
  gap: 15px;
}

.ren-inquiry-choice legend {
  float: left;
  padding: 14px 0;
  font-size: 12px;
}

.ren-inquiry-choice legend span,
.ren-form-grid label > span {
  margin-left: 7px;
  color: var(--ren-gold);
  font-size: 9px;
}

.ren-inquiry-choice label {
  position: relative;
}

.ren-inquiry-choice input {
  position: absolute;
  opacity: 0;
}

.ren-inquiry-choice label > span {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}

.ren-inquiry-choice input:checked + span {
  border-color: var(--ren-green);
  background: var(--ren-green);
  color: var(--white);
}

.ren-inquiry-choice input:focus-visible + span {
  outline: 2px solid var(--ren-gold);
  outline-offset: 2px;
}

.ren-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 32px;
}

.ren-form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.ren-form-grid label > small {
  margin-left: 7px;
  color: #777;
  font-size: 9px;
}

.ren-form-grid input,
.ren-form-grid textarea {
  width: 100%;
  margin-top: 9px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #f7f5f0;
  font-size: 14px;
}

.ren-form-grid input:focus,
.ren-form-grid textarea:focus {
  border-color: var(--ren-gold);
}

.ren-form-grid textarea {
  resize: vertical;
}

.ren-form-wide {
  grid-column: 1 / -1;
}

.ren-privacy-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  margin: 36px 0 10px;
  font-size: 11px;
}

.ren-privacy-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--ren-green);
}

.ren-privacy-check a {
  border-bottom: 1px solid;
}

.ren-form-note {
  margin-bottom: 25px;
  text-align: center;
  color: #777;
  font-size: 10px;
}

.ren-form-notice {
  max-width: 650px;
  margin: 0 auto 20px;
  padding: 12px 15px;
  background: #f3eee0;
  text-align: center;
  font-size: 11px;
}

.ren-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(300px, 100%);
  min-height: 48px;
  margin: 0 auto;
  padding: 13px 20px;
  border: 0;
  background: var(--ren-green);
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
}

.ren-access {
  display: flex;
  justify-content: space-between;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.ren-access a {
  color: var(--white);
}

.form-thanks-page {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 150px 6vw 90px;
  background: var(--paper);
}

.form-thanks-page > div {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 70px clamp(28px, 6vw, 80px);
  border-top: 2px solid var(--gold);
  background: var(--white);
}

.form-thanks-page h1 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 43px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.form-thanks-page p:not(.eyebrow) {
  margin-bottom: 38px;
  line-height: 2;
}

.form-thanks-page a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}

.ren-thanks-page {
  background: #0d2e23;
}

.recaptcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(360px, 100%);
  margin: 45px 0 30px auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #f3f3f3;
}

.recaptcha-placeholder span {
  font-weight: 600;
}

.recaptcha-placeholder small {
  color: #777;
  font-size: 9px;
}

.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 38px auto 14px;
  font-size: 12px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.privacy-check a {
  border-bottom: 1px solid;
}

.sales-note {
  margin-bottom: 35px;
  text-align: center;
  color: #777;
  font-size: 11px;
}

.form-notice {
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  font-size: 12px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

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

.privacy-content {
  max-width: 920px;
  padding: 85px 0 120px;
}

.privacy-content > p:first-child {
  margin-bottom: 75px;
  line-height: 2.3;
}

.privacy-content section {
  margin-bottom: 55px;
}

.privacy-content h2 {
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.privacy-content p {
  line-height: 2.25;
}

.privacy-date {
  margin-top: 80px;
  text-align: right;
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(760px, calc(100vw - 44px));
  padding: 24px 26px;
  gap: 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(31, 31, 31, 0.97);
  color: var(--white);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.07em;
}

.cookie-banner p {
  margin: 0;
  font-size: 10px;
  line-height: 1.8;
  opacity: 0.75;
}

.cookie-banner a {
  border-bottom: 1px solid;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.button-ghost,
.button-dark {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
}

.button-dark {
  border-color: var(--gold);
  background: var(--gold);
}

@keyframes heroRise {
  from {
    transform: translateY(35px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(290%);
  }
  100% {
    transform: translateX(290%);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 76px;
  }

  .brand {
    height: 55px;
  }

  .brand-mark {
    width: 42px;
    height: 48px;
  }

  .brand-text span {
    font-size: 16px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

  .global-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 32px 7vw 70px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    background: var(--ink);
    color: var(--white);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav > a,
  .nav-business > a {
    height: auto;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 20px;
  }

  .nav-business {
    display: block;
    height: auto;
  }

  .nav-submenu {
    position: static;
    display: grid;
    visibility: visible;
    width: 100%;
    padding: 8px 0 14px 18px;
    transform: none;
    opacity: 1;
    border-top: 0;
    background: transparent;
  }

  .global-nav:not(.is-open) .nav-submenu {
    visibility: hidden;
    pointer-events: none;
  }

  .global-nav.is-open .nav-submenu {
    visibility: visible;
    pointer-events: auto;
  }

  .nav-submenu a {
    padding: 7px 0;
    font-size: 11px;
  }

  .global-nav > .nav-ren {
    align-self: flex-start;
    margin-top: 18px;
    padding: 12px 24px;
    border: 1px solid #d8bd78;
    color: #d8bd78;
    font-size: 15px;
  }

  .ren-local-nav {
    top: 76px;
  }

  .ren-memory-grid {
    gap: 5vw;
  }

  .ren-memory-images {
    min-height: 480px;
  }

  .home-hero {
    min-height: 690px;
    padding-top: 135px;
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    right: 15%;
  }

  .hero-emblem {
    position: absolute;
    right: 2vw;
    bottom: 7%;
    width: min(45vw, 370px);
    opacity: 0.42;
  }

  .hero-copy h1 {
    font-size: clamp(60px, 12vw, 104px);
  }

  .hero-japanese {
    margin-top: 45px;
  }

  .mission-section,
  .section-heading-row,
  .service-scope,
  .company-profile {
    grid-template-columns: 210px 1fr;
  }

  .highlight-section {
    gap: 5vw;
  }

  .service-detail {
    grid-template-columns: 210px 1fr;
    gap: 0;
  }

  .value-grid article {
    padding: 28px;
  }

  .value-grid h3 {
    margin-top: 50px;
  }
}

@media (max-width: 720px) {
  body {
    letter-spacing: 0.025em;
  }

  h1,
  h2,
  h3 {
    letter-spacing: 0.045em;
    text-wrap: balance;
  }

  p,
  li,
  dt,
  dd {
    text-wrap: pretty;
  }

  body {
    font-size: 14px;
    line-height: 1.9;
  }

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

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

  .brand-text span {
    font-size: 14px;
  }

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

  .home-hero {
    min-height: 640px;
    padding: 116px 24px 68px;
  }

  .hero-company {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 16vw, 78px);
    line-height: 0.85;
  }

  .hero-copy h1 span:nth-child(2) {
    margin-left: 0;
  }

  .hero-japanese {
    margin: 36px 0 18px;
    font-size: 24px;
  }

  .hero-description {
    margin-left: 0;
    font-size: 12px;
  }

  .hero-emblem {
    right: -45px;
    bottom: 30px;
    width: 260px;
  }

  .scroll-label {
    left: 24px;
  }

  .mission-section,
  .business-section,
  .highlight-section,
  .company-preview,
  .news-preview,
  .business-intro,
  .business-grid-page,
  .service-lead,
  .service-scope,
  .value-section,
  .service-sections,
  .service-closing,
  .company-main-image,
  .company-profile,
  .statement-section,
  .contact-intro,
  .contact-form-section,
  .privacy-content,
  .news-archive {
    width: calc(100% - 48px);
  }

  .mission-section,
  .section-heading-row,
  .company-preview,
  .service-scope,
  .company-profile,
  .service-detail,
  .statement-section {
    grid-template-columns: 1fr;
  }

  .mission-section {
    padding: 78px 0;
    gap: 42px;
  }

  .mission-copy h2,
  .section-heading-row h2,
  .highlight-copy h2,
  .business-intro h2,
  .service-lead h2,
  .service-scope h2,
  .value-section > h2,
  .service-detail h2,
  .service-closing h2,
  .statement-section h2,
  .contact-intro h2 {
    font-size: 27px;
  }

  .mission-copy h2 {
    margin-bottom: 30px;
  }

  .business-section {
    padding: 82px 0;
  }

  .section-heading-row {
    gap: 38px;
    margin-bottom: 48px;
  }

  .business-card {
    min-height: 150px;
    padding: 23px 0;
    grid-template-columns: 48px 1fr 25px;
  }

  .business-card h3 {
    font-size: 21px;
  }

  .card-summary {
    display: none;
  }

  .highlight-section {
    padding: 82px 0;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .company-preview {
    padding: 82px 0;
    gap: 0;
  }

  .company-preview-description {
    margin-top: 38px;
  }

  .company-preview .mini-profile {
    margin-top: 56px;
  }

  .company-preview-link {
    margin-top: 32px;
  }

  .mini-profile div {
    grid-template-columns: 95px 1fr;
  }

  .news-preview {
    padding: 78px 0;
  }

  .news-preview-heading {
    align-items: start;
    flex-direction: column;
    gap: 35px;
  }

  .news-item {
    align-items: start;
    min-height: 145px;
    padding: 24px 0;
    grid-template-columns: 90px 1fr 22px;
    grid-template-rows: auto auto;
  }

  .news-item > span {
    grid-column: 2;
  }

  .news-item strong {
    margin-top: 10px;
    grid-column: 1 / 3;
  }

  .news-item i {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .contact-band {
    padding: 76px 24px;
  }

  .contact-band h2 {
    font-size: 30px;
  }

  .site-footer {
    padding: 68px 24px calc(28px + env(safe-area-inset-bottom));
  }

  .footer-top {
    flex-direction: column;
    gap: 35px;
  }

  .footer-brand img {
    width: 62px;
    height: 62px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-links {
    margin: 60px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .page-hero {
    min-height: 390px;
    padding: 120px 24px 55px;
  }

  .page-hero h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .breadcrumb {
    width: calc(100% - 48px);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .business-intro {
    padding: 68px 0;
  }

  .business-intro > p:last-child {
    margin-top: 35px;
  }

  .business-grid-page {
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-lead {
    padding: 68px 0 85px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-scope {
    padding: 76px 0;
    gap: 55px;
  }

  .value-section {
    padding: 76px 0 88px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: 0;
    padding: 30px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-grid article:last-child {
    border-bottom: 0;
  }

  .value-grid h3 {
    margin: 28px 0 18px;
  }

  .service-detail {
    padding: 76px 0 85px;
    gap: 42px;
  }

  .service-detail-heading > p {
    margin-bottom: 0;
  }

  .service-detail-content h2 {
    margin-bottom: 30px;
  }

  .service-closing {
    width: 100%;
    padding: 78px 24px;
  }

  .closing-link {
    align-items: start;
    gap: 20px;
    font-size: 15px;
  }

  .news-archive {
    padding: 65px 0 85px;
  }

  .news-detail-page {
    width: calc(100% - 48px);
    padding: 125px 0 85px;
  }

  .news-body {
    padding: 55px 0;
  }

  .company-main-image {
    padding: 45px 0 72px;
  }

  .company-profile {
    padding: 76px 0;
    gap: 55px;
  }

  .company-profile dl div {
    grid-template-columns: 95px 1fr;
    gap: 18px;
  }

  .statement-section {
    padding: 78px 0 90px;
    gap: 48px;
  }

  .statement-section .eyebrow {
    margin-bottom: 0;
  }

  .contact-intro {
    padding: 65px 0 45px;
  }

  .contact-form-section {
    padding-bottom: 80px;
  }

  .form-row {
    align-items: stretch;
    min-height: auto;
    padding: 25px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recaptcha-placeholder {
    margin-left: 0;
  }

  .privacy-check {
    align-items: flex-start;
  }

  .privacy-content {
    padding: 65px 0 85px;
  }

  .cookie-banner {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    width: calc(100vw - 24px);
    padding: 20px;
    gap: 18px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .ren-container {
    width: calc(100% - 48px);
  }

  .ren-hero {
    min-height: 680px;
    padding: 135px 24px 58px;
  }

  .ren-hero > img {
    object-position: 65% center;
  }

  .ren-hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 30, 22, 0.92), rgba(8, 30, 22, 0.58) 72%, rgba(8, 30, 22, 0.24)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 65%);
  }

  .ren-hero-content {
    width: 100%;
  }

  .ren-hero h1 {
    font-size: 58px;
  }

  .ren-hero h1 small {
    font-size: 15px;
  }

  .ren-hero h2 {
    font-size: 24px;
  }

  .ren-hero ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ren-hero li,
  .ren-hero li:first-child {
    padding: 0;
    border: 0;
  }

  .ren-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ren-action-button {
    min-width: 0;
    padding: 12px 10px;
  }

  .ren-local-nav {
    top: 76px;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 14px;
    overflow-x: auto;
  }

  .ren-local-nav a {
    flex: 0 0 auto;
    padding: 5px 16px;
    white-space: nowrap;
  }

  .ren-intro,
  .ren-section-heading,
  .ren-guide-grid {
    grid-template-columns: 1fr;
  }

  .ren-intro {
    padding: 82px 0 90px;
    gap: 40px;
  }

  .ren-intro-copy {
    max-width: none;
  }

  .ren-intro h2,
  .ren-memory h2,
  .ren-section-heading h2,
  .ren-guide h2,
  .ren-contact-heading h2 {
    margin-bottom: 28px;
    font-size: 29px;
  }

  .ren-poster {
    margin-top: 40px;
  }

  .ren-poster img {
    aspect-ratio: auto;
  }

  .ren-memory {
    padding: 82px 0 90px;
  }

  .ren-memory-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ren-memory-images {
    min-height: 430px;
  }

  .ren-points,
  .ren-gallery {
    padding: 85px 0 90px;
  }

  .ren-section-heading {
    margin-bottom: 48px;
    gap: 35px;
  }

  .ren-point-grid {
    grid-template-columns: 1fr;
  }

  .ren-point-grid article,
  .ren-point-grid article:nth-child(even) {
    min-height: 0;
    padding: 30px 16px 34px 55px;
    border-right: 0;
  }

  .ren-point-grid article > span {
    top: 33px;
    left: 10px;
  }

  .ren-point-grid h3 {
    font-size: 19px;
  }

  .ren-gallery-grid {
    justify-content: safe center;
    gap: 12px;
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px 12px;
  }

  .ren-gallery-grid figure {
    width: 228px;
  }

  .ren-gallery-grid img,
  .ren-gallery-wide img {
    height: 93px;
    object-position: center;
  }

  .ren-guide {
    padding: 85px 0;
  }

  .ren-guide-grid {
    gap: 38px;
  }

  .ren-contact {
    padding: 85px 0 95px;
  }

  .ren-contact-options {
    margin: 48px 0 55px;
    grid-template-columns: 1fr;
  }

  .ren-contact-options > div {
    padding: 30px 0 35px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .ren-phone {
    justify-content: flex-start;
    padding: 30px 0;
  }

  .ren-form {
    padding: 35px 20px 42px;
  }

  .ren-inquiry-choice {
    grid-template-columns: 1fr 1fr;
  }

  .ren-inquiry-choice legend {
    width: 100%;
    grid-column: 1 / -1;
  }

  .ren-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ren-form-wide {
    grid-column: auto;
  }

  .ren-access {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.8;
  }
}

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

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