:root {
  --color-dark: #111;
  --color-light: #f7f4ef;
  --color-paper: #f4f0e8;
  --color-text-dark: #171717;
  --color-muted: rgba(247, 244, 239, 0.72);

  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-dark);
  color: var(--color-light);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 22px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--color-light);
  mix-blend-mode: difference;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.brand {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.menu-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--kenburns-duration, 5000ms) linear;
  will-change: transform;
}

.hero-slide.is-zooming img {
  transform: scale(var(--kenburns-scale, 1.05));
}

.hero-01 img {
  object-position: 50% 43%;
}

.hero-02 img {
  object-position: 50% 47%;
}

.hero-03 img {
  object-position: 50% 45%;
}

.hero-04 img {
  object-position: 52% 50%;
}

.hero-05 img {
  object-position: 50% 46%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.06) 35%,
      rgba(0, 0, 0, 0.26) 62%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    radial-gradient(
      circle at 50% 62%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.hero-copy {
  position: absolute;
  z-index: 5;
  left: 24px;
  right: 24px;
  bottom: 136px;
  color: var(--color-light);
}

.hero-en {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.78);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 10vw, 48px);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 330px;
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.hero-progress {
  position: absolute;
  z-index: 6;
  left: 24px;
  bottom: 54px;
  display: flex;
  gap: 8px;
}

.hero-progress span {
  position: relative;
  width: 22px;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 244, 239, 0.28);
}

.hero-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 239, 0.9);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-progress span.is-active::after {
  animation: progressFill var(--progress-duration, 4000ms) linear forwards;
}

@keyframes progressFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.scroll-link {
  position: absolute;
  z-index: 6;
  right: 24px;
  bottom: 43px;
  color: rgba(247, 244, 239, 0.72);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}

body.is-white-fading::after {
  opacity: 1;
}

.brand-section {
  min-height: 68svh;
  padding: 124px 24px 112px;
  display: flex;
  align-items: center;
}

.section-inner {
  width: 100%;
}

.about-section,
.office-section,
.contact-section {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.service-section,
.recruit-section {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-label {
  margin: 0 0 48px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.about-section .section-label,
.office-section .section-label,
.contact-section .section-label {
  color: rgba(23, 23, 23, 0.42);
}

.service-section .section-label,
.recruit-section .section-label {
  color: rgba(247, 244, 239, 0.42);
}

.brand-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 10vw, 44px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand-section p:not(.section-label) {
  margin: 38px 0 0;
  font-size: 14px;
  line-height: 2.35;
}

.about-section p:not(.section-label),
.office-section p:not(.section-label),
.contact-section p:not(.section-label) {
  color: rgba(23, 23, 23, 0.68);
}

.service-section p:not(.section-label),
.recruit-section p:not(.section-label) {
  color: rgba(247, 244, 239, 0.66);
}

.text-link {
  display: inline-block;
  margin-top: 52px;
  padding-bottom: 9px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.about-section .text-link,
.office-section .text-link,
.contact-section .text-link {
  color: var(--color-text-dark);
  border-bottom: 1px solid rgba(23, 23, 23, 0.35);
}

.service-section .text-link,
.recruit-section .text-link {
  color: var(--color-light);
  border-bottom: 1px solid rgba(247, 244, 239, 0.35);
}

.site-footer {
  padding: 54px 24px 34px;
  background: var(--color-dark);
  color: rgba(247, 244, 239, 0.42);
}

.site-footer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.site-footer small {
  display: block;
  margin-top: 14px;
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

@media (min-width: 768px) {
  .site-header {
    padding: 30px 44px 0;
  }

  .brand {
    font-size: 15px;
  }

  .hero-slider {
    height: 100vh;
    min-height: 720px;
  }

  .hero-copy {
    left: 8vw;
    right: auto;
    bottom: 16vh;
    width: 540px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-lead {
    max-width: 420px;
    font-size: 14px;
  }

  .hero-progress {
    left: 8vw;
    bottom: 8vh;
  }

  .scroll-link {
    right: 44px;
    bottom: 7vh;
  }

  .hero-01 img {
    object-position: 50% 44%;
  }

  .hero-02 img {
    object-position: 50% 48%;
  }

  .hero-03 img {
    object-position: 50% 46%;
  }

  .hero-04 img {
    object-position: 50% 50%;
  }

  .hero-05 img {
    object-position: 50% 45%;
  }

  .brand-section {
    min-height: 62vh;
    padding: 150px 8vw 140px;
  }

  .section-inner {
    max-width: 720px;
  }

  .brand-section h2 {
    font-size: 52px;
  }

  .brand-section p:not(.section-label) {
    max-width: 520px;
  }

  .site-footer {
    padding: 64px 8vw 42px;
  }
}

/* Service page */

.brand {
  color: inherit;
  text-decoration: none;
}

.service-page {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: var(--color-light);
}

.page-hero-image {
  position: absolute;
  inset: 0;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.08) 36%,
      rgba(0, 0, 0, 0.36) 68%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 124px 24px 84px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-copy .section-label {
  margin-bottom: 34px;
  color: rgba(247, 244, 239, 0.64);
}

.page-hero-copy h1,
.page-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.page-hero-copy h1 {
  font-size: clamp(34px, 10vw, 48px);
  line-height: 1.48;
}

.page-hero-copy p:not(.section-label) {
  margin: 34px 0 0;
  max-width: 360px;
  font-size: 13px;
  line-height: 2.2;
  color: rgba(247, 244, 239, 0.76);
}

.page-section {
  padding: 116px 24px;
}

.page-section-inner {
  width: 100%;
}

.page-section-inner.narrow {
  max-width: 620px;
}

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

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

.page-section .section-label {
  margin: 0 0 44px;
}

.light-section .section-label {
  color: rgba(23, 23, 23, 0.42);
}

.dark-section .section-label,
.message-section .section-label {
  color: rgba(247, 244, 239, 0.42);
}

.page-section h2 {
  font-size: clamp(32px, 9.5vw, 46px);
  line-height: 1.58;
}

.page-section p:not(.section-label) {
  margin: 38px 0 0;
  font-size: 14px;
  line-height: 2.25;
}

.light-section p:not(.section-label) {
  color: rgba(23, 23, 23, 0.68);
}

.dark-section p:not(.section-label),
.message-section p:not(.section-label) {
  color: rgba(247, 244, 239, 0.68);
}

.service-card-grid {
  margin-top: 58px;
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 34px 28px 32px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.service-card span {
  display: block;
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(23, 23, 23, 0.36);
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.service-card p {
  margin-top: 24px !important;
  font-size: 13px !important;
  line-height: 2.05 !important;
}

.philosophy-section {
  min-height: 82svh;
  display: flex;
  align-items: center;
}

.flow-list {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  gap: 34px;
}

.flow-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 56px;
  width: 1px;
  height: 24px;
  background: rgba(23, 23, 23, 0.18);
}

.flow-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 23, 23, 0.12) 0 2px, transparent 3px),
    transparent;
}

.flow-list p {
  margin: 0 !important;
  font-family: var(--font-serif);
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: rgba(23, 23, 23, 0.78) !important;
}

.message-section {
  min-height: 86svh;
  padding: 124px 24px 116px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.92)),
    url("images/hero-05.jpg") center 48% / cover no-repeat;
  color: var(--color-light);
}

.message-section .text-link {
  color: var(--color-light);
  border-bottom: 1px solid rgba(247, 244, 239, 0.35);
}

.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 100vh;
  }

  .page-hero-image img {
    object-position: 50% 48%;
  }

  .page-hero-copy {
    min-height: 100vh;
    padding: 150px 8vw 13vh;
  }

  .page-hero-copy h1 {
    max-width: 760px;
    font-size: 60px;
  }

  .page-hero-copy p:not(.section-label) {
    max-width: 520px;
    font-size: 14px;
  }

  .page-section {
    padding: 150px 8vw;
  }

  .page-section-inner {
    max-width: 1120px;
  }

  .page-section h2 {
    font-size: 52px;
  }

  .service-card-grid {
    margin-top: 72px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    min-height: 280px;
    padding: 38px 28px 34px;
  }

  .flow-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
  }

  .flow-list li {
    display: block;
  }

  .flow-list li:not(:last-child)::after {
    left: calc(46px + 22px);
    top: 23px;
    width: calc(100% - 68px);
    height: 1px;
  }

  .flow-list p {
    margin-top: 24px !important;
  }

  .message-section {
    min-height: 88vh;
    padding: 160px 8vw;
    background-position: center 45%;
  }

  .sp-only {
    display: none;
  }
}

/* Office page */

.office-page {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.office-hero .page-hero-image img {
  object-position: 50% 47%;
}

.area-section {
  overflow: hidden;
}

.simple-map {
  position: relative;
  margin-top: 64px;
  min-height: 260px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(23, 23, 23, 0.08) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(23, 23, 23, 0.04), rgba(255, 255, 255, 0.42));
}

.simple-map::before,
.simple-map::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 50%;
}

.simple-map::after {
  inset: 78px;
}

.simple-map span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: rgba(23, 23, 23, 0.44);
}

.office-info-list {
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 244, 239, 0.16);
}

.office-info-list div {
  padding: 26px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.16);
}

.office-info-list dt {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  color: rgba(247, 244, 239, 0.42);
}

.office-info-list dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.82);
}

.office-message-section {
  min-height: 78svh;
  display: flex;
  align-items: center;
}

.office-contact-section {
  min-height: 58svh;
}

@media (min-width: 768px) {
  .office-hero .page-hero-image img {
    object-position: 50% 44%;
  }

  .area-section .page-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    column-gap: 8vw;
    align-items: center;
  }

  .area-section .section-label,
  .area-section h2,
  .area-section p {
    grid-column: 1;
  }

  .simple-map {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-top: 0;
    min-height: 420px;
  }

  .office-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    border-top: 0;
  }

  .office-info-list div {
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(247, 244, 239, 0.16);
  }

  .office-message-section {
    min-height: 82vh;
  }

  .office-contact-section {
    min-height: 56vh;
  }
}

/* Recruit page */

.recruit-page {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.recruit-hero .page-hero-image img {
  object-position: 50% 50%;
}

.recruit-message-section {
  min-height: 72svh;
  display: flex;
  align-items: center;
}

.values-section {
  overflow: hidden;
}

.values-list {
  margin-top: 60px;
  display: grid;
  gap: 16px;
}

.values-list article {
  padding: 34px 28px 32px;
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.values-list span {
  display: block;
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(247, 244, 239, 0.36);
}

.values-list h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.9);
}

.values-list p {
  margin-top: 24px !important;
  font-size: 13px !important;
  line-height: 2.05 !important;
  color: rgba(247, 244, 239, 0.62) !important;
}

.working-section {
  min-height: 74svh;
  display: flex;
  align-items: center;
}

.working-list {
  margin-top: 58px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.working-list p {
  margin: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  font-family: var(--font-serif);
  font-size: 22px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.08em;
  color: rgba(23, 23, 23, 0.78) !important;
}

.recruit-entry-section {
  min-height: 86svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.9)),
    url("images/hero-03.jpg") center 46% / cover no-repeat;
  color: var(--color-light);
}

.recruit-entry-section .section-label {
  color: rgba(247, 244, 239, 0.46);
}

.recruit-entry-section p:not(.section-label) {
  color: rgba(247, 244, 239, 0.68);
}

.entry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
  min-width: 160px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(247, 244, 239, 0.42);
  border-radius: 999px;
  color: var(--color-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  background: rgba(247, 244, 239, 0.04);
}

@media (min-width: 768px) {
  .recruit-hero .page-hero-image img {
    object-position: 50% 46%;
  }

  .recruit-message-section {
    min-height: 74vh;
  }

  .values-list {
    margin-top: 72px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .values-list article {
    min-height: 260px;
    padding: 38px 28px 34px;
  }

  .working-section {
    min-height: 76vh;
  }

  .working-list {
    max-width: 720px;
  }

  .recruit-entry-section {
    min-height: 88vh;
    background-position: center 44%;
  }
}

/* Contact page */

.contact-page {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.contact-hero .page-hero-image img {
  object-position: 50% 44%;
}

.contact-form-section {
  min-height: 86svh;
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  gap: 64px;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.contact-form label {
  display: grid;
  gap: 12px;
}

.contact-form span {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: rgba(23, 23, 23, 0.48);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 0;
  padding: 12px 0 14px;
  background: transparent;
  color: var(--color-text-dark);
  font: inherit;
  font-size: 16px;
  line-height: 1.7;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(23, 23, 23, 0.64);
}

.contact-form button {
  justify-self: start;
  margin-top: 18px;
  min-width: 144px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(23, 23, 23, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.contact-info-section {
  min-height: 68svh;
  display: flex;
  align-items: center;
}

.contact-info-list {
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  border-top: 1px solid rgba(247, 244, 239, 0.16);
}

.contact-info-list div {
  padding: 26px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.16);
}

.contact-info-list dt {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  color: rgba(247, 244, 239, 0.42);
}

.contact-info-list dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.82);
}

.contact-message-section {
  min-height: 86svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.56), rgba(17, 17, 17, 0.9)),
    url("images/hero-05.jpg") center 46% / cover no-repeat;
  color: var(--color-light);
}

.contact-message-section .section-label {
  color: rgba(247, 244, 239, 0.46);
}

.contact-message-section p:not(.section-label) {
  color: rgba(247, 244, 239, 0.68);
}

.contact-message-section .text-link {
  color: var(--color-light);
  border-bottom: 1px solid rgba(247, 244, 239, 0.35);
}

@media (min-width: 768px) {
  .contact-hero .page-hero-image img {
    object-position: 50% 43%;
  }

  .contact-form-section {
    min-height: 88vh;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    column-gap: 10vw;
    align-items: start;
  }

  .contact-info-section {
    min-height: 70vh;
  }

  .contact-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    border-top: 0;
  }

  .contact-info-list div {
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(247, 244, 239, 0.16);
  }

  .contact-message-section {
    min-height: 88vh;
    background-position: center 44%;
  }
}

/* Final polish: global rhythm, menu, transitions */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  opacity: 0;
  transition: opacity 420ms ease;
}

body.is-loaded {
  opacity: 1;
}

body.is-leaving {
  opacity: 0;
}

body.no-scroll {
  overflow: hidden;
}

.site-header {
  mix-blend-mode: normal;
  padding-bottom: 42px;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0));
}

.site-header.is-menu-open {
  background: transparent;
}

.brand,
.menu-button {
  position: relative;
  z-index: 1002;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.menu-button {
  cursor: pointer;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  padding: 110px 24px 54px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--color-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

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

.site-menu nav {
  width: 100%;
}

.site-menu a {
  display: block;
  color: var(--color-light);
  text-decoration: none;
}

.site-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu-list li {
  border-bottom: 1px solid rgba(247, 244, 239, 0.13);
}

.site-menu-list a {
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.site-menu-small {
  margin-top: 40px;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: rgba(247, 244, 239, 0.44);
}

.hero-copy {
  bottom: max(128px, 15svh);
}

.hero-progress {
  bottom: max(54px, 6svh);
}

.scroll-link {
  bottom: max(43px, 5svh);
}

.brand-section,
.page-section,
.page-hero-copy,
.site-footer {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.brand-section.is-visible,
.page-section.is-visible,
.page-hero-copy.is-visible,
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  min-height: 100svh;
}

.page-section h1,
.not-found-section h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(36px, 10vw, 54px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.not-found-section {
  min-height: 82svh;
  display: flex;
  align-items: center;
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.not-found-section .section-label {
  color: rgba(23, 23, 23, 0.42);
}

.not-found-section p:not(.section-label) {
  color: rgba(23, 23, 23, 0.68);
}

.about-page {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.about-hero .page-hero-image img {
  object-position: 50% 44%;
}

.about-story-section {
  min-height: 78svh;
  display: flex;
  align-items: center;
}

@media (hover: hover) {
  .text-link,
  .entry-button,
  .menu-button,
  .site-menu a,
  .contact-form button {
    transition: opacity 240ms ease, border-color 240ms ease, background 240ms ease;
  }

  .text-link:hover,
  .site-menu a:hover,
  .menu-button:hover {
    opacity: 0.62;
  }

  .entry-button:hover,
  .contact-form button:hover {
    background: rgba(247, 244, 239, 0.12);
  }
}

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

@media (min-width: 768px) {
  .site-menu {
    align-items: center;
    padding: 120px 8vw 80px;
  }

  .site-menu nav {
    max-width: 760px;
  }

  .site-menu-list a {
    font-size: 44px;
  }

  .hero-copy {
    bottom: 16vh;
  }
}

/* Bilingual labels: English as context, Japanese as guidance */
.section-label .label-en,
.section-label .label-ja {
  display: block;
}

.section-label .label-ja {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.86;
}

.hero-en-ja {
  display: inline-block;
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.74);
}

.scroll-link span,
.scroll-link small {
  display: block;
  text-align: right;
}

.scroll-link small {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.86;
}

.site-menu-list a span,
.site-menu-list a small {
  display: block;
}

.site-menu-list a small {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: rgba(247, 244, 239, 0.58);
}

.site-menu-small span {
  display: inline-block;
  margin-top: 10px;
}

.recruit-support-section {
  overflow: hidden;
}

.recruit-note-list {
  margin-top: 58px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 244, 239, 0.14);
}

.recruit-note-list p {
  margin: 0 !important;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.14);
  font-family: var(--font-serif);
  font-size: 20px !important;
  line-height: 1.65 !important;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 239, 0.82) !important;
}

.values-list-friendly article {
  background: rgba(255, 255, 255, 0.045);
}

.recruit-message-section p + p,
.working-section p + p {
  margin-top: 28px !important;
}

.recruit-page .page-section h2 {
  max-width: 760px;
}

@media (min-width: 768px) {
  .site-menu-list a small {
    font-size: 13px;
  }

  .recruit-note-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 52px;
    border-top: 0;
  }

  .recruit-note-list p {
    border-top: 1px solid rgba(247, 244, 239, 0.14);
  }
}
.simple-map small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* Service page v2 — i connect Brand Book v1.0 */
.service-page-v2 {
  background: var(--color-paper);
}

.service-hero-v2 .page-hero-image img {
  object-position: 50% 47%;
}

.service-hero-v2 .page-hero-copy h1 span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: rgba(247, 244, 239, 0.66);
}

.service-overview-section {
  padding-top: 112px;
  padding-bottom: 48px;
  overflow: hidden;
}

.service-overview-section h2 {
  max-width: 420px;
}

.service-story-list {
  margin-top: 74px;
  display: grid;
  gap: 92px;
}

.service-story-item {
  display: grid;
  gap: 34px;
}

.service-story-text {
  padding: 0 2px;
}

.service-number {
  margin: 0 0 24px !important;
  font-family: var(--font-serif);
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.18em;
  color: rgba(93, 116, 95, 0.54) !important;
}

.service-story-text h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(27px, 8vw, 38px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(23, 23, 23, 0.86);
}

.service-story-text p:not(.service-number) {
  margin: 26px 0 0 !important;
  font-size: 14px !important;
  line-height: 2.18 !important;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.66) !important;
}

.service-story-image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 54px rgba(76, 64, 48, 0.055);
}

.service-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.warm-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(220, 190, 136, 0.18), transparent 34%),
    linear-gradient(180deg, #f7f3eb 0%, #efe8dc 100%);
  color: var(--color-text-dark);
}

.warm-section .section-label {
  color: rgba(23, 23, 23, 0.42);
}

.warm-section p:not(.section-label) {
  color: rgba(23, 23, 23, 0.68);
}

.service-philosophy-v2 {
  min-height: 74svh;
  display: flex;
  align-items: center;
}

.service-flow-v2 {
  padding-top: 112px;
  padding-bottom: 120px;
}

.flow-list-v2 {
  gap: 30px;
}

.flow-list-v2 li {
  gap: 20px;
}

.flow-list-v2 li:not(:last-child)::after {
  background: rgba(93, 116, 95, 0.18);
}

.flow-icon-v2 {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 116, 95, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(93, 116, 95, 0.72);
}

.service-cta-section {
  min-height: 82svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.44), rgba(17, 17, 17, 0.78)),
    url("images/hero-05.jpg") center 48% / cover no-repeat;
  color: var(--color-light);
}

.service-cta-section .section-label {
  color: rgba(247, 244, 239, 0.48);
}

.service-cta-section p:not(.section-label) {
  color: rgba(247, 244, 239, 0.74);
}

.service-cta-section .text-link {
  color: var(--color-light);
  border-bottom-color: rgba(247, 244, 239, 0.35);
}

@media (min-width: 768px) {
  .service-overview-section {
    padding-top: 150px;
    padding-bottom: 86px;
  }

  .service-story-list {
    margin-top: 96px;
    gap: 124px;
  }

  .service-story-item {
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: 7vw;
  }

  .service-story-item.is-reverse {
    grid-template-columns: minmax(420px, 1.18fr) minmax(280px, 0.82fr);
  }

  .service-story-item.is-reverse .service-story-text {
    order: 2;
  }

  .service-story-item.is-reverse .service-story-image {
    order: 1;
  }

  .service-story-text h3 {
    font-size: 42px;
  }

  .service-story-text p:not(.service-number) {
    font-size: 15px !important;
    max-width: 430px;
  }

  .service-story-image {
    border-radius: 34px;
  }

  .service-philosophy-v2 {
    min-height: 76vh;
  }

  .service-flow-v2 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .flow-list-v2 {
    margin-top: 72px;
  }

  .flow-list-v2 li:not(:last-child)::after {
    left: calc(52px + 22px);
    top: 26px;
    width: calc(100% - 74px);
  }

  .service-cta-section {
    min-height: 84vh;
  }
}

.flow-list-v2 li:not(:last-child)::after {
  left: 26px;
  top: 62px;
  height: 24px;
}

@media (min-width: 768px) {
  .flow-list-v2 li:not(:last-child)::after {
    height: 1px;
  }
}

/* Brand Book v1.0 final tuning */
.section-label {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.section-label .label-en {
  font-family: var(--font-serif);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.section-label .label-ja {
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

.site-footer p span,
.site-footer small {
  letter-spacing: 0.11em;
}

/* Service: illustration-first, picture-book rhythm */
.service-overview-section {
  padding-top: 132px;
  padding-bottom: 78px;
}

.service-overview-section .page-section-inner {
  max-width: 1180px;
}

.service-story-list {
  margin-top: 94px;
  gap: 118px;
}

.service-story-item {
  gap: 44px;
}

.service-story-text {
  max-width: 390px;
}

.service-story-image {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.service-story-image img {
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 70px rgba(76, 64, 48, 0.05);
}

.service-number {
  color: rgba(93, 116, 95, 0.42) !important;
}

.service-story-text h3 {
  color: rgba(23, 23, 23, 0.82);
}

.service-story-text p:not(.service-number) {
  color: rgba(23, 23, 23, 0.64) !important;
}

/* Recruit: reassurance immediately after Hero */
.recruit-reassurance-section {
  padding-top: 86px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 86% 10%, rgba(143, 168, 132, 0.12), transparent 34%),
    var(--color-paper);
}

.recruit-reassurance-list {
  margin-top: 44px;
  display: grid;
  gap: 20px;
}

.recruit-reassurance-list p {
  margin: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  font-family: var(--font-serif);
  font-size: clamp(22px, 6vw, 34px) !important;
  line-height: 1.65 !important;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.84) !important;
}

@media (max-width: 767px) {
  .service-story-item.is-reverse .service-story-text {
    order: 1;
  }

  .service-story-item.is-reverse .service-story-image {
    order: 2;
  }

  .service-story-image img {
    width: min(112%, 560px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .service-overview-section {
    padding-top: 178px;
    padding-bottom: 116px;
  }

  .service-story-list {
    margin-top: 124px;
    gap: 166px;
  }

  .service-story-item {
    grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
    gap: 8vw;
  }

  .service-story-item.is-reverse {
    grid-template-columns: minmax(520px, 1.28fr) minmax(260px, 0.72fr);
  }

  .service-story-image img {
    width: min(100%, 680px);
    border-radius: 36px;
  }

  .recruit-reassurance-section {
    padding-top: 120px;
    padding-bottom: 128px;
  }

  .recruit-reassurance-list {
    margin-top: 58px;
  }
}

/* Release Candidate final: logo, clarity, compliance-friendly guidance */
.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 118px;
  max-width: 34vw;
  height: auto;
  color: inherit;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.22));
}

.hero-station {
  margin: 0 0 18px !important;
  font-size: 11px !important;
  line-height: 1.7 !important;
  letter-spacing: 0.12em;
  color: rgba(247, 244, 239, 0.82) !important;
}

.service-facts-section {
  padding-top: 92px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 90% 8%, rgba(107, 181, 169, 0.10), transparent 34%),
    var(--color-paper);
}

.service-facts-grid {
  margin-top: 54px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.10);
}

.service-facts-grid article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.10);
}

.service-facts-grid span,
.usage-list dt,
.footer-service-info dt {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  color: rgba(23, 23, 23, 0.44);
}

.service-facts-grid p {
  margin: 0 !important;
  font-family: var(--font-serif);
  font-size: 22px !important;
  line-height: 1.55 !important;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.80) !important;
}

.service-facts-note,
.usage-note {
  margin-top: 30px !important;
  font-size: 12px !important;
  line-height: 2 !important;
  color: rgba(23, 23, 23, 0.52) !important;
}

.service-usage-section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.usage-list {
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.10);
}

.usage-list div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.10);
}

.usage-list dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.80);
}

.target-list {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(23, 23, 23, 0.10);
}

.target-list h3 {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(23, 23, 23, 0.78);
}

.target-list ul,
.contact-audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.10);
}

.target-list li,
.contact-audience-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.10);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.78);
}

.contact-audience-section {
  padding-top: 94px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 86% 10%, rgba(238, 125, 119, 0.08), transparent 34%),
    var(--color-paper);
}

.contact-audience-list {
  margin-top: 46px;
}

.site-footer {
  padding-top: 64px;
}

.footer-logo-wrap {
  width: 118px;
  max-width: 38vw;
  margin-bottom: 30px;
  opacity: 0.88;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

.footer-ai,
.footer-ai-ja {
  color: rgba(247, 244, 239, 0.44);
}

.footer-service-info {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  color: rgba(247, 244, 239, 0.50);
}

.footer-service-info p {
  margin: 0 0 24px !important;
  font-family: var(--font-serif);
  font-size: 15px !important;
  line-height: 1.8 !important;
  letter-spacing: 0.10em;
  color: rgba(247, 244, 239, 0.72);
}

.footer-service-info dl {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.footer-service-info div {
  margin: 0;
}

.footer-service-info dt {
  margin-bottom: 6px;
  color: rgba(247, 244, 239, 0.34);
}

.footer-service-info dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.58);
}

.footer-service-info small {
  margin-top: 26px;
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.38);
}

@media (min-width: 768px) {
  .brand-logo {
    width: 132px;
  }

  .hero-station {
    font-size: 12px !important;
  }

  .service-facts-section {
    padding-top: 128px;
    padding-bottom: 116px;
  }

  .service-facts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    border-top: 0;
  }

  .service-facts-grid article {
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.10);
  }

  .usage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    border-top: 0;
  }

  .usage-list div {
    padding-top: 0;
  }

  .target-list ul,
  .contact-audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 52px;
    border-top: 0;
  }

  .target-list li,
  .contact-audience-list li {
    border-top: 1px solid rgba(23, 23, 23, 0.10);
  }

  .contact-audience-section {
    padding-top: 128px;
    padding-bottom: 124px;
  }

  .footer-service-info dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }
}


/* Release v1.0 final additions */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-main-heading,
.page-hero-heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-main-heading {
  font-size: clamp(34px, 10vw, 48px);
  line-height: 1.42;
}

.page-hero-heading {
  font-size: clamp(34px, 10vw, 48px);
  line-height: 1.48;
  color: var(--color-light);
}

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

.promise-section .section-label,
.promise-section p:not(.section-label) {
  color: rgba(23, 23, 23, 0.66);
}

.promise-grid {
  display: grid;
  gap: 28px;
}

.promise-grid article {
  padding: 30px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.promise-grid h2 {
  font-size: 24px;
  line-height: 1.6;
}

.promise-grid p,
.legal-text p {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(23, 23, 23, 0.7);
}

.legal-hero-section {
  padding-top: 150px;
}

.legal-list {
  margin: 0;
}

.legal-list div {
  padding: 22px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.legal-list dt {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(23, 23, 23, 0.48);
}

.legal-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.legal-text h2 {
  margin: 46px 0 18px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
}

.map-embed {
  margin-top: 34px;
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: rgba(23, 23, 23, 0.42);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.footer-links,
.site-menu-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a,
.site-menu-trust a {
  color: rgba(247, 244, 239, 0.44);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-main-heading { font-size: 54px; }
  .page-hero-heading { font-size: 54px; }
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
  .map-embed { min-height: 320px; }
}

/* Phase 1 — PC brand polish: TOP / About / Promise / Service */
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pc-figure {
  display: none;
  margin: 0;
}

.about-pc-figure img {
  display: block;
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(76, 64, 48, 0.08);
}

@media (min-width: 1024px) {
  :root {
    --pc-page-max: 1320px;
    --pc-side-space: clamp(72px, 8vw, 150px);
  }

  .site-header {
    padding: 32px var(--pc-side-space) 70px;
  }

  .brand-logo {
    width: 138px;
  }

  .hero-slider {
    height: 100vh;
    min-height: 760px;
  }

  .hero-slide {
    transition: opacity 2400ms ease-in-out;
  }

  .hero-slide img {
    transition: transform var(--kenburns-duration, 8600ms) linear;
  }

  .hero-copy {
    left: var(--pc-side-space);
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(560px, 42vw);
    transform: translateY(-42%);
  }

  .hero-station {
    margin-bottom: 24px !important;
    font-size: 12px !important;
    letter-spacing: 0.16em;
  }

  .hero-en {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .hero-en-ja {
    font-size: 11px;
  }

  .hero-main-heading {
    font-size: clamp(56px, 5.2vw, 82px);
    line-height: 1.34;
    letter-spacing: 0.075em;
  }

  .hero-lead {
    max-width: 460px;
    margin-top: 34px;
    font-size: 15px;
    line-height: 2.25;
  }

  .hero-overlay {
    background:
      linear-gradient(to right, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.04) 72%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.32) 100%);
  }

  .hero-progress {
    left: var(--pc-side-space);
    bottom: 8.5vh;
  }

  .hero-progress span {
    width: 42px;
  }

  .scroll-link {
    right: var(--pc-side-space);
    bottom: 7.6vh;
  }

  .hero-01 img { object-position: 50% 50%; }
  .hero-02 img { object-position: 50% 48%; }
  .hero-03 img { object-position: 50% 50%; }
  .hero-04 img { object-position: 50% 50%; }
  .hero-05 img { object-position: 50% 52%; }

  .brand-section {
    min-height: 72vh;
    padding: 180px var(--pc-side-space);
  }

  .brand-section .section-inner,
  .page-section-inner {
    max-width: var(--pc-page-max);
    margin-inline: auto;
  }

  .brand-section h2,
  .page-section h2 {
    font-size: clamp(48px, 4.2vw, 68px);
  }

  .brand-section p:not(.section-label),
  .page-section p:not(.section-label) {
    font-size: 15px;
  }

  .page-hero {
    min-height: 100vh;
  }

  .page-hero-copy {
    min-height: 100vh;
    padding: 170px var(--pc-side-space) 14vh;
  }

  .page-hero-copy h1,
  .page-hero-heading {
    max-width: 860px;
    font-size: clamp(58px, 5vw, 78px);
  }

  .page-hero-copy p:not(.section-label) {
    max-width: 560px;
    font-size: 15px;
  }

  .page-section {
    padding: 180px var(--pc-side-space);
  }

  .about-story-section .page-section-inner {
    max-width: var(--pc-page-max) !important;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(64px, 8vw, 132px);
    align-items: center;
  }

  .about-story-section .section-label,
  .about-story-section h2,
  .about-story-section p {
    grid-column: 1;
  }

  .about-pc-figure {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .promise-list-section .page-section-inner {
    max-width: var(--pc-page-max);
  }

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

  .promise-grid article {
    min-height: 280px;
    padding: 54px 52px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 60px rgba(76, 64, 48, 0.045);
    transition: transform 360ms ease, box-shadow 360ms ease;
  }

  .promise-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 76px rgba(76, 64, 48, 0.075);
  }

  .promise-grid h2 {
    font-size: 30px;
  }

  .promise-grid p {
    margin-top: 26px;
    max-width: 440px;
  }

  .service-hero-v2 .page-hero-image img {
    object-position: 52% 50%;
  }

  .service-facts-section .page-section-inner,
  .service-overview-section .page-section-inner,
  .service-flow-v2 .page-section-inner {
    max-width: var(--pc-page-max);
  }

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

  .service-overview-section {
    padding-top: 190px;
    padding-bottom: 140px;
  }

  .service-story-list {
    margin-top: 142px;
    gap: 176px;
  }

  .service-story-item,
  .service-story-item.is-reverse {
    grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(70px, 8vw, 134px);
    align-items: center;
  }

  .service-story-item.is-reverse {
    grid-template-columns: minmax(560px, 1.28fr) minmax(320px, 0.72fr);
  }

  .service-story-text {
    max-width: 430px;
  }

  .service-story-text h3 {
    font-size: clamp(38px, 3.4vw, 52px);
  }

  .service-story-text p:not(.service-number) {
    font-size: 15px !important;
    line-height: 2.28 !important;
  }

  .service-story-image img {
    width: min(100%, 760px);
    border-radius: 38px;
  }

  .service-philosophy-v2 {
    min-height: 80vh;
  }

  .service-cta-section {
    min-height: 92vh;
    background-position: center 48%;
  }
}


/* Phase 2 — PC Release v1.0 polish */
.desktop-nav { display: none; }
.footer-top-link { color: rgba(247,244,239,.48); text-decoration: none; font-size: 10px; letter-spacing: .12em; }
.office-city-image { margin: 0; }
.office-city-image img { border-radius: 30px; box-shadow: 0 22px 70px rgba(76,64,48,.06); }

@media (min-width: 1024px) {
  body { overflow-x: hidden; }
  .site-header {
    align-items: center;
    padding: 30px clamp(64px,7vw,140px) 0;
    mix-blend-mode: normal;
    text-shadow: 0 2px 18px rgba(0,0,0,.28);
  }
  .brand-logo { width: 126px; }
  .menu-button { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px,2.2vw,34px);
    margin-left: auto;
  }
  .desktop-nav a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(247,244,239,.78);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .1em;
    text-align: right;
    padding-bottom: 10px;
  }
  .desktop-nav a small { font-size: 9px; opacity: .72; letter-spacing: .08em; }
  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.3);
    transform-origin: center;
    transition: opacity .28s ease, transform .28s ease;
  }
  .desktop-nav a:hover::after,
  .desktop-nav a.is-current::after { opacity: .72; transform: scaleX(1); }
  .desktop-nav a.is-current { color: rgba(247,244,239,.96); }

  .hero-slider { height: 100vh; min-height: 760px; }
  .hero-copy {
    left: clamp(84px,9vw,170px);
    top: 52%;
    width: min(620px, 42vw);
    transform: translateY(-50%);
  }
  .hero-main-heading { font-size: clamp(62px,5.4vw,88px); line-height: 1.32; }
  .hero-lead { max-width: 480px; }
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,.54) 0%, rgba(0,0,0,.28) 35%, rgba(0,0,0,.04) 78%),
      linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.04) 45%, rgba(0,0,0,.34));
  }
  .hero-slide img { transition: transform var(--kenburns-duration, 9000ms) linear; }
  .hero-slide.is-zooming img { transform: scale(var(--kenburns-scale, 1.08)); }

  .page-hero { min-height: 100vh; }
  .page-hero-copy {
    min-height: 100vh;
    justify-content: center;
    padding: 160px clamp(84px,9vw,170px) 120px;
  }
  .page-hero-copy h1,
  .page-hero-heading { font-size: clamp(60px,5vw,84px); line-height: 1.32; }
  .page-hero-copy p:not(.section-label) { max-width: 600px; line-height: 2.25; }

  .page-section { padding: 190px clamp(84px,9vw,170px); }
  .page-section-inner { max-width: 1360px; margin-inline: auto; }
  .page-section-inner.narrow { max-width: 880px; }

  .about-story-section .page-section-inner {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(78px,8vw,150px);
    align-items: center;
  }
  .about-pc-figure { display: block; grid-column: 2; grid-row: 1 / span 3; }
  .about-pc-figure img { border-radius: 42px; }

  .promise-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px; }
  .promise-grid article {
    padding: 56px 54px;
    border: 1px solid rgba(23,23,23,.08);
    border-radius: 34px;
    background: rgba(255,255,255,.44);
    box-shadow: 0 18px 58px rgba(76,64,48,.045);
    transition: transform .36s ease, box-shadow .36s ease;
  }
  .promise-grid article:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(76,64,48,.07); }

  .service-facts-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; }
  .service-story-list { margin-top: 140px; gap: 178px; }
  .service-story-item,
  .service-story-item.is-reverse { align-items: center; gap: clamp(76px,8vw,140px); }
  .service-story-item { grid-template-columns: minmax(300px,.72fr) minmax(580px,1.28fr); }
  .service-story-item.is-reverse { grid-template-columns: minmax(580px,1.28fr) minmax(300px,.72fr); }
  .service-story-image img { width: min(100%, 760px); border-radius: 40px; }
  .service-story-text { max-width: 460px; }

  .office-hero .page-hero-image img { object-position: 50% 50%; }
  .office-city-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(72px,8vw,140px);
    align-items: center;
  }
  .office-city-image img { border-radius: 42px; }
  .area-section .page-section-inner,
  .office-info-section .page-section-inner,
  .access-map-section .page-section-inner { max-width: 1200px; }
  .simple-map { min-height: 360px; }
  .map-embed { min-height: 420px; border-radius: 38px; }
  .office-info-list { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 46px; }

  .contact-hero .page-hero-image img { object-position: center 52%; }
  .contact-grid { grid-template-columns: .72fr 1.28fr; gap: clamp(80px,8vw,150px); align-items: start; }
  .contact-form { padding: 58px 58px 64px; border-radius: 36px; background: rgba(255,255,255,.5); box-shadow: 0 24px 70px rgba(76,64,48,.055); }
  .contact-form label + label { margin-top: 28px; }

  .site-footer { padding: 96px clamp(84px,9vw,170px) 58px; }
  .site-footer > * { max-width: 1360px; margin-left: auto; margin-right: auto; }
  .footer-service-info dl { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-links { gap: 14px 28px; align-items: center; }
  .footer-top-link { margin-left: auto; }
}

/* Phase3 Recruit — practical hiring page with Brand Book tone */
.recruit-page-v3 {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.recruit-hero-v3 .page-hero-image img {
  object-position: 50% 50%;
}

.recruit-hero-v3 .page-hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.1) 36%, rgba(0,0,0,.62)),
    linear-gradient(to right, rgba(0,0,0,.52), rgba(0,0,0,.12) 64%, rgba(0,0,0,.04));
}

.recruit-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .18em;
  color: rgba(247,244,239,.82);
}

.recruit-hero-copy .page-hero-heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 9vw, 50px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: .07em;
  color: rgba(247,244,239,.96);
}

.recruit-hero-copy p:not(.section-label):not(.page-hero-heading) {
  margin-top: 28px;
  max-width: 560px;
}

.recruit-welcome-section,
.recruit-anxiety-section,
.recruit-message-v3-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(116, 171, 153, .12), transparent 34%),
    var(--color-paper);
}

.paper-section {
  background: #fbf8f2;
  color: var(--color-text-dark);
}

.recruit-target-card,
.recruit-check-list,
.opening-points,
.requirements-grid {
  display: grid;
  gap: 12px;
}

.recruit-target-card p,
.recruit-check-list p,
.opening-points p {
  margin: 0 !important;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: rgba(23,23,23,.78) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  letter-spacing: .08em;
}

.recruit-target-card p {
  padding: 14px 18px;
  text-align: center;
}

.recruit-check-list p,
.opening-points p {
  padding: 18px 20px;
  border-radius: 18px;
  text-align: left;
}

.recruit-life-section h2,
.recruit-anxiety-section h2,
.recruit-opening-section h2,
.recruit-ict-section h2,
.recruit-message-v3-section h2,
.recruit-requirements-section h2,
.recruit-entry-v3 h2 {
  max-width: 760px;
}

.recruit-life-section p + p,
.recruit-ict-section p + p,
.message-body-block p + p {
  margin-top: 24px !important;
}

.recruit-opening-section {
  background:
    linear-gradient(to bottom, rgba(17,17,17,.88), rgba(17,17,17,.94)),
    url("images/hero-05.jpg") center 48% / cover no-repeat;
  color: var(--color-light);
}

.recruit-opening-section .section-label,
.recruit-entry-v3 .section-label {
  color: rgba(247,244,239,.54);
}

.recruit-opening-section p:not(.section-label),
.recruit-entry-v3 p:not(.section-label) {
  color: rgba(247,244,239,.72) !important;
}

.opening-points {
  margin-top: 46px;
}

.opening-points p {
  border-color: rgba(247,244,239,.14);
  background: rgba(255,255,255,.045);
  color: rgba(247,244,239,.82) !important;
}

.recruit-note {
  display: block;
  margin-top: 34px;
  font-size: 11px;
  line-height: 2;
  letter-spacing: .08em;
  color: rgba(23,23,23,.52);
}

.message-body-block {
  border-top: 1px solid rgba(23,23,23,.1);
  padding-top: 38px;
}

.message-body-block p {
  margin: 0;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .06em;
  color: rgba(23,23,23,.72);
}

.representative-name {
  margin-top: 40px !important;
  font-family: var(--font-serif);
  font-size: 18px !important;
  color: rgba(23,23,23,.82) !important;
}

.requirements-grid {
  margin-top: 48px;
}

.requirements-grid article {
  padding: 28px 26px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.54);
}

.requirements-grid h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: rgba(23,23,23,.82);
}

.requirements-grid p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 2 !important;
  color: rgba(23,23,23,.62) !important;
}

.recruit-entry-v3 {
  background:
    linear-gradient(to bottom, rgba(17,17,17,.46), rgba(17,17,17,.84)),
    url("images/hero-03.jpg") center 48% / cover no-repeat;
}

.recruit-cta-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.recruit-cta-list .entry-button {
  margin-top: 0;
}

@media (max-width: 767px) {
  .recruit-page-v3 .page-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .recruit-welcome-section {
    padding-top: 84px;
  }

  .recruit-target-card {
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-target-card p:last-child {
    grid-column: 1 / -1;
  }

  .recruit-check-list,
  .opening-points {
    margin-top: 36px;
  }

  .recruit-check-list p,
  .opening-points p {
    font-size: 13px !important;
  }

  .recruit-message-v3-section h2 br {
    display: none;
  }
}

@media (min-width: 768px) {
  .recruit-page-v3 .page-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .recruit-two-column,
  .recruit-message-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(64px, 7vw, 132px);
    align-items: start;
  }

  .recruit-first-grid {
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
  }

  .recruit-target-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 34px;
    border: 1px solid rgba(23,23,23,.08);
    border-radius: 34px;
    background: rgba(255,255,255,.38);
    box-shadow: 0 24px 70px rgba(76,64,48,.045);
  }

  .recruit-target-card p {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
  }

  .recruit-check-list {
    gap: 14px;
  }

  .opening-points,
  .requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .message-body-block {
    border-top: 0;
    padding-top: 0;
    padding-left: clamp(36px, 4vw, 72px);
    border-left: 1px solid rgba(23,23,23,.1);
  }

  .message-body-block p {
    font-size: 15px;
    line-height: 2.25;
  }

  .requirements-grid {
    gap: 20px;
  }

  .recruit-cta-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .recruit-hero-v3 .page-hero-copy {
    left: clamp(84px, 9vw, 170px);
    width: min(760px, 50vw);
  }

  .recruit-hero-copy .page-hero-heading {
    font-size: clamp(48px, 4.2vw, 72px);
  }

  .recruit-page-v3 .page-section {
    padding-left: clamp(84px, 9vw, 170px);
    padding-right: clamp(84px, 9vw, 170px);
  }

  .recruit-page-v3 .page-section-inner {
    max-width: 1320px;
  }
}

/* Phase3-2 Recruit final polish */
.recruit-hero-final .recruit-opening-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(247,244,239,.36);
  border-radius: 999px;
  background: rgba(247,244,239,.10);
  color: rgba(247,244,239,.92);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .14em;
  backdrop-filter: blur(8px);
}

.recruit-hero-final .section-label {
  margin-bottom: 14px;
}

.recruit-hero-final .recruit-hero-lead {
  color: rgba(247,244,239,.78) !important;
}

.recruit-target-card-final p {
  font-weight: 400;
}

.recruit-staff-photo-section {
  background: var(--color-paper);
  padding: 0 24px;
}

.recruit-staff-photo-section img {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 28px 90px rgba(76, 64, 48, .08);
}

.recruit-message-v3-section {
  padding-top: 96px !important;
}

.recruit-entry-v3 .entry-button:first-child {
  background: rgba(247,244,239,.96);
  color: #171717;
}

.recruit-entry-v3 .entry-button:not(:first-child) {
  background: rgba(247,244,239,.12);
  color: rgba(247,244,239,.86);
  border-color: rgba(247,244,239,.32);
}

@media (max-width: 767px) {
  .recruit-hero-final .page-hero-copy {
    bottom: 90px;
  }

  .recruit-hero-final .recruit-opening-badge {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .recruit-hero-final .page-hero-heading {
    font-size: clamp(31px, 8.6vw, 43px);
    line-height: 1.46;
  }

  .recruit-hero-final .recruit-hero-lead {
    margin-top: 22px !important;
    font-size: 13px;
    line-height: 2;
  }

  .recruit-target-card-final {
    gap: 10px;
  }

  .recruit-target-card-final p {
    padding: 13px 12px;
    font-size: 12px !important;
    letter-spacing: .06em;
  }

  .recruit-staff-photo-section {
    padding: 0 20px;
  }

  .recruit-staff-photo-section img {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 768px) {
  .recruit-hero-final .page-hero-copy {
    max-width: 720px;
  }

  .recruit-target-card-final {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruit-target-card-final p:last-child {
    grid-column: 2 / 3;
  }

  .recruit-staff-photo-section {
    padding: 0 clamp(84px, 9vw, 170px);
  }

  .recruit-message-v3-section {
    padding-top: 128px !important;
  }
}

/* Phase4-1 Service practical guidance */
.service-detail-section {
  padding-top: 104px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 88% 8%, rgba(143, 168, 132, 0.10), transparent 34%),
    var(--color-paper);
}

.service-detail-section h2,
.service-consult-section h2 {
  max-width: 620px;
}

.service-detail-grid {
  margin-top: 54px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.10);
}

.service-detail-grid article {
  padding: 26px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.10);
}

.service-detail-grid h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(23, 23, 23, 0.82);
}

.service-detail-grid p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 2 !important;
  letter-spacing: 0.05em;
  color: rgba(23, 23, 23, 0.62) !important;
}

.service-detail-note {
  margin-top: 32px !important;
  font-size: 12px !important;
  line-height: 2 !important;
  color: rgba(23, 23, 23, 0.52) !important;
}

.service-consult-section {
  padding-top: 106px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 14% 8%, rgba(107, 181, 169, 0.08), transparent 36%),
    #fbf8f2;
}

.service-consult-list {
  list-style: none;
  margin: 54px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-consult-list li {
  padding: 20px 22px;
  border: 1px solid rgba(93, 116, 95, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.76);
}

@media (min-width: 768px) {
  .service-detail-section {
    padding-top: 140px;
    padding-bottom: 148px;
  }

  .service-detail-grid {
    margin-top: 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 72px;
    border-top: 0;
  }

  .service-detail-grid article {
    border-top: 1px solid rgba(23, 23, 23, 0.10);
    border-bottom: 0;
    padding: 30px 0 34px;
  }

  .service-detail-grid h3 {
    font-size: 25px;
  }

  .service-detail-grid p {
    max-width: 430px;
    font-size: 14px !important;
  }

  .service-consult-section {
    padding-top: 142px;
    padding-bottom: 146px;
  }

  .service-consult-list {
    margin-top: 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .service-consult-list li {
    padding: 24px 28px;
    border-radius: 26px;
    font-size: 21px;
  }

  .usage-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* Release v1.0 final Service refinements */
.service-detail-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.service-detail-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 116, 95, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(93, 116, 95, 0.62);
}

.service-detail-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-grid article p + p {
  margin-top: 8px !important;
}

.service-case-section {
  padding-top: 104px;
  padding-bottom: 110px;
  background: #fffaf2;
}

.service-case-list {
  margin-top: 46px;
  display: grid;
  gap: 12px;
}

.service-case-list p {
  margin: 0 !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(93, 116, 95, 0.12);
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: rgba(23, 23, 23, 0.70) !important;
}

.service-case-note {
  margin-top: 30px !important;
  font-size: 13px !important;
  line-height: 2 !important;
  color: rgba(23, 23, 23, 0.58) !important;
}

@media (min-width: 768px) {
  .service-case-section {
    padding-top: 140px;
    padding-bottom: 146px;
  }

  .service-case-list {
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  .service-case-list p {
    padding: 22px 26px;
    border-radius: 24px;
  }
}

/* Release v1.0 final Office refinements */
.office-hero-release .page-hero-image img {
  object-position: 50% 50%;
}

.office-message,
.office-area,
.office-access,
.office-links {
  padding: 104px 24px;
  background: var(--color-paper, #f7f3ec);
  color: var(--color-text-dark, #171717);
}

.office-message__inner,
.office-access__inner,
.office-links__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.office-message__inner {
  display: grid;
  gap: 48px;
}

.office-message__title h2,
.office-area h2,
.office-access h2,
.office-link-card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.office-message__body {
  display: grid;
  gap: 28px;
  max-width: 620px;
}

.office-message__body p,
.office-area .section-heading p,
.office-map-note,
.office-link-card p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(23, 23, 23, 0.72);
}

.office-area .section-heading {
  width: min(100%, 1180px);
  margin: 0 auto 48px;
}

.office-area__cards {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.office-area__card {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 31, 31, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03);
}

.office-area__card span {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(31, 31, 31, 0.38);
}

.office-area__card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.office-area__note {
  width: min(100%, 1180px);
  margin: 34px auto 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(31, 31, 31, 0.64);
}

.office-access {
  background: #fffaf2;
}

.office-access__inner {
  display: grid;
  gap: 56px;
}

.office-detail {
  margin: 40px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.office-detail div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.office-detail dt {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(31, 31, 31, 0.46);
}

.office-detail dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(31, 31, 31, 0.76);
}

.office-detail a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 31, 31, 0.24);
}

.office-map-note {
  margin: 0 0 18px;
}

.office-map iframe {
  width: 100%;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  filter: saturate(0.78) contrast(0.96);
  border: 1px solid rgba(31, 31, 31, 0.05) !important;
}

.office-links__inner {
  display: grid;
  gap: 20px;
}

.office-link-card {
  padding: 36px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 31, 0.06);
}

.office-link-card p {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .office-area__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

@media (min-width: 1024px) {
  .office-message,
  .office-area,
  .office-access,
  .office-links {
    padding: 150px 8vw;
  }

  .office-message__inner {
    grid-template-columns: 0.42fr 0.58fr;
    align-items: start;
    gap: 96px;
  }

  .office-message__body {
    padding-top: 14px;
  }

  .office-area .section-heading {
    margin-bottom: 64px;
  }

  .office-area__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .office-area__card {
    min-height: 150px;
    padding: 30px 26px;
  }

  .office-access__inner {
    grid-template-columns: 0.38fr 0.62fr;
    align-items: start;
    gap: 96px;
  }

  .office-map iframe {
    min-height: 440px;
  }

  .office-links__inner {
    gap: 28px;
  }

  .office-link-card {
    padding: 48px 44px;
    transition: transform 500ms ease, border-color 500ms ease, background 500ms ease;
  }

  .office-link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(31, 31, 31, 0.1);
  }
}


/* Recruit profile — Release v1.0 integration */
.recruit-profile-section {
  background: var(--color-paper, #f4f0e8);
}

.recruit-profile-wrap {
  display: grid;
  gap: 40px;
}

.recruit-profile-heading {
  max-width: 520px;
}

.recruit-profile-heading > p:last-child {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  color: rgba(23, 23, 23, 0.62);
}

.recruit-profile-card {
  padding: 30px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
}

.recruit-profile-item + .recruit-profile-item {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 23, 23, 0.07);
}

.recruit-profile-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: rgba(23, 23, 23, 0.46);
}

.recruit-profile-item p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(23, 23, 23, 0.74);
}

@media (min-width: 1024px) {
  .recruit-profile-wrap {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(72px, 8vw, 128px);
    align-items: start;
  }

  .recruit-profile-card {
    padding: 48px 52px;
  }
}

/* Home v2 — simple information-first redesign */
.home-v2{background:#f8f7f3;color:#1f1f1f}.home-wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}.home-block{padding:96px 0}.home-eyebrow{margin:0 0 28px;font-size:12px;font-weight:600;letter-spacing:.16em}.home-eyebrow span{margin-left:12px;font-weight:400;letter-spacing:.08em;color:rgba(31,31,31,.55)}.home-v2 h2{margin:0;font-size:clamp(34px,7vw,64px);font-weight:500;line-height:1.35;letter-spacing:.01em}.home-copy p,.home-v2 article p,.home-contact-v2>div>p{font-size:15px;line-height:2;color:rgba(31,31,31,.72)}.home-text-link{display:inline-flex;gap:18px;margin-top:30px;padding-bottom:6px;border-bottom:1px solid rgba(31,31,31,.35);font-size:14px}.home-button{display:inline-block;margin-top:28px;padding:15px 26px;border:1px solid #1f1f1f;border-radius:999px;font-size:14px}.home-button--light{border-color:rgba(255,255,255,.8);color:#fff}.home-hero-v2{position:relative;min-height:760px;height:100svh;background:#111;overflow:hidden}.home-hero-v2__image,.home-hero-v2__image img{position:absolute;inset:0;width:100%;height:100%}.home-hero-v2__image img{object-fit:cover;object-position:50% 43%}.home-hero-v2__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.48),rgba(0,0,0,.08) 72%),linear-gradient(0deg,rgba(0,0,0,.28),transparent 50%)}.home-hero-v2__copy{position:absolute;left:24px;right:24px;bottom:11vh;z-index:1;color:#fff}.home-kicker{margin:0 0 20px;font-size:13px;letter-spacing:.08em}.home-hero-v2 h1{margin:0;font-size:clamp(46px,11vw,82px);font-weight:500;line-height:1.22;letter-spacing:.02em}.home-hero-v2__lead{margin:24px 0 0;font-size:15px;line-height:1.9}.home-split{display:grid;gap:48px}.home-service-v2{background:#fff}.home-service-grid{display:grid;gap:0;margin:54px 0 12px;border-top:1px solid rgba(31,31,31,.12)}.home-service-grid article{padding:26px 0;border-bottom:1px solid rgba(31,31,31,.12)}.home-service-grid article>span,.home-feature-list strong{font-size:11px;letter-spacing:.12em;color:rgba(31,31,31,.42)}.home-service-grid h3,.home-feature-list h3{margin:10px 0 6px;font-size:19px;font-weight:500}.home-service-grid p{margin:0}.home-features-v2{background:#ece9e2}.home-feature-list{margin-top:54px}.home-feature-list article{display:grid;grid-template-columns:44px 1fr;gap:14px;padding:28px 0;border-top:1px solid rgba(31,31,31,.14)}.home-feature-list article:last-child{border-bottom:1px solid rgba(31,31,31,.14)}.home-feature-list h3{margin:0 0 8px;font-size:22px}.home-feature-list p{margin:0}.home-area-v2{background:#f8f7f3}.home-area-card{padding:34px 28px;background:#fff;border-radius:24px}.home-area-card>p{margin:0 0 22px;font-size:12px;color:rgba(31,31,31,.55)}.home-area-card strong{display:block;padding:14px 0;border-top:1px solid rgba(31,31,31,.1);font-size:28px;font-weight:500}.home-area-card small{display:block;margin-top:22px;line-height:1.8;color:rgba(31,31,31,.58)}.home-pro-v2{background:#fff}.home-recruit-v2{position:relative;min-height:650px;background:#111;color:#fff;overflow:hidden}.home-recruit-v2__image,.home-recruit-v2__image img{position:absolute;inset:0;width:100%;height:100%}.home-recruit-v2__image img{object-fit:cover}.home-recruit-v2::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.46)}.home-recruit-v2__copy{position:relative;z-index:1;width:min(1120px,calc(100% - 48px));margin:0 auto;padding-top:150px}.home-recruit-v2 h2{color:#fff}.home-recruit-v2 p:not(.home-eyebrow){max-width:520px;font-size:15px;line-height:2;color:rgba(255,255,255,.82)}.home-recruit-v2 .home-eyebrow span{color:rgba(255,255,255,.65)}.home-contact-v2{text-align:center;padding:120px 0}.home-contact-v2 p{margin:28px auto 0;max-width:620px}
@media(min-width:768px){.home-wrap{width:min(1120px,calc(100% - 96px))}.home-block{padding:140px 0}.home-hero-v2__copy{left:max(48px,calc((100vw - 1120px)/2));bottom:13vh}.home-split{grid-template-columns:.9fr 1.1fr;gap:90px;align-items:start}.home-service-grid{grid-template-columns:repeat(2,1fr)}.home-service-grid article{padding:34px 34px 34px 0}.home-service-grid article:nth-child(even){padding-left:34px;border-left:1px solid rgba(31,31,31,.12)}.home-feature-list article{grid-template-columns:80px 1fr;padding:36px 0}.home-area-card{padding:48px}.home-recruit-v2__copy{width:min(1120px,calc(100% - 96px));padding-top:180px}}

/* HOME v3 - readability first */
.home-v2{background:#fff}.home-block{padding:72px 0}.home-eyebrow{font-size:15px;font-weight:700;letter-spacing:.03em;color:#333;margin-bottom:18px}.home-eyebrow span{display:none}.home-v2 h2{font-size:clamp(28px,6vw,46px);line-height:1.45;font-weight:600}.home-copy p,.home-v2 article p,.home-contact-v2>div>p{font-size:17px;line-height:1.9;color:#444}.home-service-grid h3,.home-feature-list h3{font-size:21px;font-weight:600}.home-button{font-size:16px;font-weight:600;padding:16px 28px}.home-text-link{font-size:16px;font-weight:600}.home-hero-v2__copy{bottom:9vh}.home-hero-v2 h1{font-size:clamp(42px,10vw,70px)}.home-kicker{font-size:15px;font-weight:600}.home-hero-v2__lead{font-size:17px;line-height:1.8}.home-features-v2{background:#f5f5f2}.home-area-card{border-radius:12px}.home-contact-v2{text-align:left}.home-contact-v2>div>p{margin:24px 0 0}.home-recruit-v2__copy .home-eyebrow{color:#fff}.home-recruit-v2__copy p{font-size:17px!important}.home-recruit-v2{min-height:560px}
@media(min-width:768px){.home-block{padding:100px 0}.home-contact-v2{text-align:center}.home-contact-v2>div>p{margin:28px auto 0}}

/* HOME v4 - clear visual cards and icons */
.home-card-grid{gap:16px;border-top:0;margin-top:40px}.home-card-grid article,.home-card-grid article:nth-child(even){padding:26px 22px;border:1px solid #d9e3ea;border-radius:16px;background:#fff}.home-info-card{box-shadow:0 4px 14px rgba(27,73,101,.04)}.home-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;border-radius:14px;background:#eef7fb;color:#176d91}.home-icon svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}.home-info-card h3{margin:0 0 10px;color:#173b56}.home-info-card p{font-size:16px!important;line-height:1.8!important}.home-feature-cards{display:grid;gap:18px;margin-top:38px}.home-feature-cards article,.home-feature-cards article:last-child{display:block;padding:28px 24px;border:1px solid #d9e3ea;border-radius:16px;background:#fff}.home-feature-card{box-shadow:0 4px 14px rgba(27,73,101,.04)}.home-icon--feature{background:#edf6f2;color:#2d7c63}.home-feature-card:nth-child(3) .home-icon--feature{background:#fff4ea;color:#ce6f24}.home-feature-card:nth-child(4) .home-icon--feature{background:#eef4fb;color:#356d9b}.home-feature-card h3{margin:0 0 10px;color:#173b56}.home-feature-card p{font-size:16px!important;line-height:1.85!important}.home-features-v2{background:#f4f7f8}.home-service-v2{background:#fbfcfd}.home-area-card{border:1px solid #d9e3ea;box-shadow:0 4px 14px rgba(27,73,101,.04)}
@media(min-width:768px){.home-card-grid{grid-template-columns:repeat(3,1fr);gap:18px}.home-card-grid article,.home-card-grid article:nth-child(even){padding:30px 24px}.home-feature-cards{grid-template-columns:repeat(2,1fr)}.home-feature-cards article,.home-feature-cards article:last-child{padding:32px 28px}.home-icon{width:58px;height:58px}.home-icon svg{width:38px;height:38px}}

/* HOME v5 - i connect brand palette, warm and easy to read */
:root{
  --ic-teal:#63b9ad;
  --ic-teal-deep:#357f78;
  --ic-teal-soft:#eef8f5;
  --ic-coral:#ef7f78;
  --ic-coral-deep:#bd5f59;
  --ic-coral-soft:#fff1ed;
  --ic-cream:#fbf5ee;
  --ic-paper:#fffdf9;
  --ic-ink:#26343a;
  --ic-line:#dbe8e4;
}

.home-v2{
  background:var(--ic-cream);
  color:var(--ic-ink);
}
.home-v2 h2{color:#29434b}
.home-eyebrow{color:var(--ic-teal-deep)}
.home-about-v2{background:#fffaf5}
.home-service-v2{background:#f2f8f6}
.home-features-v2{background:#fff3ef}
.home-area-v2{background:#f7f3ec}
.home-pro-v2{background:#edf7f6}
.home-contact-v2{background:#fff9f4}

.home-card-grid article,
.home-card-grid article:nth-child(even),
.home-feature-cards article,
.home-feature-cards article:last-child,
.home-area-card{
  background:rgba(255,255,255,.9);
  border-color:rgba(70,139,130,.22);
  box-shadow:0 8px 24px rgba(65,107,104,.06);
}

.home-info-card,
.home-feature-card{
  position:relative;
  overflow:hidden;
}
.home-info-card::before,
.home-feature-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--ic-teal);
}
.home-info-card:nth-child(2n)::before{background:var(--ic-coral)}
.home-info-card:nth-child(3n)::before{background:#86b9ce}
.home-feature-card:nth-child(2)::before{background:#78b6a0}
.home-feature-card:nth-child(3)::before{background:var(--ic-coral)}
.home-feature-card:nth-child(4)::before{background:#78a7c1}

.home-icon{
  background:#e9f6f3;
  color:var(--ic-teal-deep);
}
.home-info-card:nth-child(2n) .home-icon{
  background:var(--ic-coral-soft);
  color:var(--ic-coral-deep);
}
.home-info-card:nth-child(3n) .home-icon{
  background:#eef6fa;
  color:#4f849b;
}
.home-icon--feature{
  background:#e9f6f3;
  color:var(--ic-teal-deep);
}
.home-feature-card:nth-child(3) .home-icon--feature{
  background:var(--ic-coral-soft);
  color:var(--ic-coral-deep);
}
.home-feature-card:nth-child(4) .home-icon--feature{
  background:#edf4f8;
  color:#4c7f98;
}

.home-info-card h3,
.home-feature-card h3{color:#315965}
.home-v2 article p,
.home-copy p,
.home-contact-v2>div>p{color:#46575c}

.home-button{
  border-color:var(--ic-teal-deep);
  background:var(--ic-teal-deep);
  color:#fff;
}
.home-button--light{
  background:rgba(255,255,255,.1);
  border-color:#fff;
  color:#fff;
  backdrop-filter:blur(3px);
}
.home-text-link{
  color:var(--ic-teal-deep);
  border-bottom-color:rgba(53,127,120,.35);
}

.home-area-card strong{color:#315965;border-top-color:rgba(70,139,130,.16)}
.home-area-card>p{color:var(--ic-coral-deep);font-weight:700}

.home-recruit-v2::after{
  background:linear-gradient(90deg,rgba(31,73,75,.67),rgba(31,73,75,.24) 70%,rgba(31,73,75,.12));
}
.home-recruit-v2 .home-eyebrow{color:#fff4ef}

.home-contact-v2 .home-button{
  background:var(--ic-coral);
  border-color:var(--ic-coral);
}

@media (hover:hover){
  .home-card-grid article,
  .home-feature-cards article,
  .home-area-card{transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
  .home-card-grid article:hover,
  .home-feature-cards article:hover,
  .home-area-card:hover{
    transform:translateY(-2px);
    border-color:rgba(70,139,130,.36);
    box-shadow:0 12px 28px rgba(65,107,104,.1);
  }
}

/* HOME v6 - keep recruitment photo in its original color */
.home-recruit-v2::after{
  background:linear-gradient(90deg,rgba(20,20,20,.52),rgba(20,20,20,.18) 70%,rgba(20,20,20,.08));
}

/* ABOUT v1 - consolidated About / interview / company page */
.about-v2{background:#fffdf9;color:#26343a}.about-v2-wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}.about-v2-section{padding:82px 0}.about-v2-label{margin:0 0 18px;color:#357f78;font-size:15px;font-weight:700}.about-v2 h2{margin:0;color:#29434b;font-size:clamp(29px,6vw,46px);font-weight:600;line-height:1.45}.about-v2-copy p,.about-v2-intro,.interview-a p{font-size:16px;line-height:1.95;color:#46575c}.about-v2-hero{position:relative;height:70svh;min-height:520px;overflow:hidden;background:#222}.about-v2-hero picture,.about-v2-hero img{position:absolute;inset:0;width:100%;height:100%}.about-v2-hero img{object-fit:cover;object-position:50% 44%}.about-v2-hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,20,20,.55),rgba(20,20,20,.12) 75%),linear-gradient(0deg,rgba(20,20,20,.24),transparent 55%)}.about-v2-hero__copy{position:relative;z-index:1;padding-top:31svh;color:#fff}.about-v2-hero__copy p{margin:0 0 18px;font-size:15px;font-weight:700}.about-v2-hero__copy h1{margin:0 0 22px;font-size:clamp(38px,9vw,66px);font-weight:600;line-height:1.35}.about-v2-hero__copy span{font-size:15px}.about-v2-values{background:#fffaf5}.about-v2-split{display:grid;gap:34px}.about-v2-interview{background:#f2f8f6}.about-v2-intro{max-width:720px;margin:20px 0 0}.interview-list{display:grid;gap:22px;margin-top:42px}.interview-card{position:relative;overflow:hidden;background:rgba(255,255,255,.94);border:1px solid rgba(70,139,130,.22);border-radius:18px;box-shadow:0 8px 24px rgba(65,107,104,.06)}.interview-card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:#63b9ad}.interview-card:nth-child(2)::before,.interview-card:nth-child(5)::before{background:#ef7f78}.interview-card:nth-child(4)::before{background:#86b9ce}.interview-q{margin:0;padding:25px 22px 22px;color:#315965;font-size:20px;font-weight:700;line-height:1.6;border-bottom:1px solid #e5efec}.interview-q span{display:block;margin-bottom:7px;color:#bd5f59;font-size:13px;letter-spacing:.08em}.interview-a{padding:22px}.interview-a p{margin:0 0 18px}.interview-a p:last-child{margin-bottom:0}.interview-a strong{color:#29434b}.interview-emphasis{padding:16px 18px;border-left:4px solid #63b9ad;background:#f5faf8;color:#29434b!important;font-weight:700}.interview-sign{margin:34px 4px 0;text-align:right;line-height:1.8;color:#46575c}.interview-sign strong{font-size:20px;color:#29434b}.about-v2-tech{background:#fff3ef}.tech-en{font-size:clamp(31px,7vw,52px)!important;line-height:1.2!important}.tech-ja{margin:20px 0 0;color:#bd5f59;font-size:18px;font-weight:700;line-height:1.7}.about-v2-company{background:#f7f3ec}.about-v2-profile{margin:38px 0 0;border-top:1px solid rgba(53,127,120,.18);background:rgba(255,255,255,.78);border-radius:16px;overflow:hidden}.about-v2-profile div{display:grid;gap:7px;padding:19px 20px;border-bottom:1px solid rgba(53,127,120,.15)}.about-v2-profile dt{font-weight:700;color:#357f78}.about-v2-profile dd{margin:0;line-height:1.75;color:#394b50}.about-v2-profile dd small{color:#68777a}.about-v2-profile a{color:#315965;text-decoration:underline;text-underline-offset:3px}.about-v2-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.about-v2-actions a{display:inline-block;padding:15px 22px;border-radius:999px;background:#357f78;color:#fff;font-weight:700}.about-v2-actions a.coral{background:#ef7f78}
@media(min-width:768px){.about-v2-wrap{width:min(1120px,calc(100% - 96px))}.about-v2-section{padding:112px 0}.about-v2-split{grid-template-columns:.95fr 1.05fr;gap:90px;align-items:start}.about-v2-hero__copy{padding-top:32svh}.interview-list{gap:28px;margin-top:54px}.interview-card{display:grid;grid-template-columns:minmax(260px,.75fr) minmax(0,1.5fr)}.interview-q{padding:34px 30px;border-right:1px solid #e5efec;border-bottom:0;font-size:21px}.interview-a{padding:34px 38px}.about-v2-profile div{grid-template-columns:190px 1fr;gap:24px;padding:21px 28px}}

/* SERVICE v1 - clear, practical service guide */
.service-v3{background:#fffdf9;color:#26343a}.service-v3-wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}.service-v3-section{padding:82px 0}.service-v3-label{margin:0 0 18px;color:#357f78;font-size:15px;font-weight:700}.service-v3 h2{margin:0;color:#29434b;font-size:clamp(29px,6vw,46px);font-weight:600;line-height:1.45}.service-v3-copy p,.service-v3-lead{font-size:16px;line-height:1.95;color:#46575c}.service-v3-hero{position:relative;height:70svh;min-height:520px;overflow:hidden;background:#222}.service-v3-hero picture,.service-v3-hero img{position:absolute;inset:0;width:100%;height:100%}.service-v3-hero img{object-fit:cover;object-position:center}.service-v3-hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,20,20,.58),rgba(20,20,20,.12) 78%),linear-gradient(0deg,rgba(20,20,20,.22),transparent 55%)}.service-v3-hero__copy{position:relative;z-index:1;padding-top:31svh;color:#fff}.service-v3-hero__copy p{margin:0 0 18px;font-size:15px;font-weight:700}.service-v3-hero__copy h1{margin:0 0 22px;font-size:clamp(38px,9vw,66px);font-weight:600;line-height:1.35}.service-v3-hero__copy span{font-size:15px}.service-v3-intro{background:#fffaf5}.service-v3-split{display:grid;gap:34px}.service-v3-care{background:#f2f8f6}.service-v3-lead{max-width:760px;margin:20px 0 0}.service-v3-grid{display:grid;gap:16px;margin-top:38px}.service-v3-grid article{position:relative;overflow:hidden;padding:25px 22px;background:rgba(255,255,255,.94);border:1px solid rgba(70,139,130,.22);border-radius:17px;box-shadow:0 8px 24px rgba(65,107,104,.06)}.service-v3-grid article::before{content:"";position:absolute;inset:0 0 auto;height:4px;background:#63b9ad}.service-v3-grid article:nth-child(2n)::before{background:#ef7f78}.service-v3-grid article:nth-child(3n)::before{background:#86b9ce}.service-v3-icon{display:flex;align-items:center;justify-content:center;width:54px;height:54px;margin-bottom:16px;border-radius:15px;background:#e9f6f3;color:#357f78}.service-v3-grid article:nth-child(2n) .service-v3-icon{background:#fff1ed;color:#bd5f59}.service-v3-grid article:nth-child(3n) .service-v3-icon{background:#eef6fa;color:#4f849b}.service-v3-icon svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.service-v3-grid h3{margin:0 0 10px;color:#315965;font-size:19px}.service-v3-grid p{margin:0;color:#46575c;font-size:15.5px;line-height:1.85}.service-v3-note{margin:24px 0 0;color:#68777a;font-size:13px;line-height:1.7}.service-v3-consult{background:#fff3ef}.service-v3-consult-grid{display:grid;gap:12px;margin-top:36px}.service-v3-consult-grid p{position:relative;margin:0;padding:18px 18px 18px 48px;border:1px solid rgba(189,95,89,.16);border-radius:14px;background:rgba(255,255,255,.88);color:#46575c;font-size:15.5px;line-height:1.7}.service-v3-consult-grid p::before{content:"✓";position:absolute;left:18px;top:17px;color:#bd5f59;font-weight:800;font-size:18px}.service-v3-insurance{background:#f7f3ec}.service-v3-mini{display:grid;gap:12px;margin-top:24px}.service-v3-mini div{padding:18px 20px;background:rgba(255,255,255,.82);border:1px solid rgba(70,139,130,.17);border-radius:14px}.service-v3-mini strong,.service-v3-mini span{display:block}.service-v3-mini strong{margin-bottom:6px;color:#357f78}.service-v3-mini span{color:#46575c;line-height:1.7}.service-v3-flow{background:#fffdf9}.service-v3-flow-list{display:grid;gap:14px;margin:38px 0 0;padding:0;list-style:none}.service-v3-flow-list li{display:grid;grid-template-columns:56px 1fr;gap:16px;padding:22px 18px;border:1px solid rgba(70,139,130,.2);border-radius:16px;background:#fff}.service-v3-flow-list>li>span{display:flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:50%;background:#e9f6f3;color:#357f78;font-weight:800}.service-v3-flow-list h3{margin:3px 0 7px;color:#315965;font-size:18px}.service-v3-flow-list p{margin:0;color:#46575c;font-size:15px;line-height:1.8}.service-v3-guide{background:#edf7f6}.service-v3-guide-grid{display:grid;gap:14px;margin-top:38px}.service-v3-guide-grid article{padding:23px 20px;border:1px solid rgba(70,139,130,.2);border-radius:16px;background:rgba(255,255,255,.9)}.service-v3-guide-grid span,.service-v3-guide-grid strong{display:block}.service-v3-guide-grid span{margin-bottom:8px;color:#357f78;font-size:13px;font-weight:700}.service-v3-guide-grid strong{color:#29434b;font-size:19px;line-height:1.5}.service-v3-guide-grid p{margin:8px 0 0;color:#596a6e;font-size:14px;line-height:1.7}.service-v3-cta{background:#fff9f4;text-align:left}.service-v3-cta p{max-width:700px;margin:22px 0 0;color:#46575c;font-size:16px;line-height:1.9}.service-v3-cta a{display:inline-block;margin-top:28px;padding:16px 24px;border-radius:999px;background:#ef7f78;color:#fff;font-weight:700}
@media(min-width:768px){.service-v3-wrap{width:min(1120px,calc(100% - 96px))}.service-v3-section{padding:112px 0}.service-v3-split{grid-template-columns:.95fr 1.05fr;gap:90px;align-items:start}.service-v3-hero__copy{padding-top:32svh}.service-v3-grid{grid-template-columns:repeat(2,1fr);gap:18px}.service-v3-grid article{padding:30px 26px}.service-v3-consult-grid{grid-template-columns:repeat(2,1fr)}.service-v3-flow-list{grid-template-columns:repeat(2,1fr);gap:18px}.service-v3-flow-list li{padding:26px 22px}.service-v3-guide-grid{grid-template-columns:repeat(4,1fr)}.service-v3-cta{text-align:center}.service-v3-cta p{margin:24px auto 0}}

/* OFFICE v1 - practical office information */
.office-v2{background:#fffdf9;color:#26343a}.office-v2-wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}.office-v2-section{padding:82px 0}.office-v2-label{margin:0 0 18px;color:#357f78;font-size:15px;font-weight:700}.office-v2 h2{margin:0;color:#29434b;font-size:clamp(29px,6vw,46px);font-weight:600;line-height:1.45}.office-v2-copy p{font-size:16px;line-height:1.95;color:#46575c}.office-v2-hero{position:relative;height:70svh;min-height:520px;overflow:hidden;background:#222}.office-v2-hero picture,.office-v2-hero img{position:absolute;inset:0;width:100%;height:100%}.office-v2-hero img{object-fit:cover;object-position:center}.office-v2-hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,20,20,.58),rgba(20,20,20,.12) 78%),linear-gradient(0deg,rgba(20,20,20,.22),transparent 55%)}.office-v2-hero__copy{position:relative;z-index:1;padding-top:31svh;color:#fff}.office-v2-hero__copy p{margin:0 0 18px;font-size:15px;font-weight:700}.office-v2-hero__copy h1{margin:0 0 22px;font-size:clamp(38px,9vw,66px);font-weight:600;line-height:1.35}.office-v2-hero__copy span{font-size:15px}.office-v2-summary{background:#fffaf5}.office-v2-summary-grid{display:grid;gap:16px;margin-top:38px}.office-v2-summary-grid article{position:relative;overflow:hidden;padding:25px 22px;border:1px solid rgba(70,139,130,.22);border-radius:17px;background:#fff;box-shadow:0 8px 24px rgba(65,107,104,.06)}.office-v2-summary-grid article::before{content:"";position:absolute;inset:0 0 auto;height:4px;background:#63b9ad}.office-v2-summary-grid article:nth-child(2)::before{background:#ef7f78}.office-v2-summary-grid article:nth-child(3)::before{background:#86b9ce}.office-v2-icon{display:flex;align-items:center;justify-content:center;width:54px;height:54px;margin-bottom:16px;border-radius:15px;background:#e9f6f3;color:#357f78}.office-v2-summary-grid article:nth-child(2) .office-v2-icon{background:#fff1ed;color:#bd5f59}.office-v2-summary-grid article:nth-child(3) .office-v2-icon{background:#eef6fa;color:#4f849b}.office-v2-icon svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.office-v2-summary-grid span,.office-v2-summary-grid strong{display:block}.office-v2-summary-grid span{margin-bottom:7px;color:#68777a;font-size:13px;font-weight:700}.office-v2-summary-grid strong{color:#315965;font-size:20px;line-height:1.55}.office-v2-summary-grid p{margin:9px 0 0;color:#46575c;font-size:15px;line-height:1.75}.office-v2-area{background:#f2f8f6}.office-v2-split{display:grid;gap:34px}.office-v2-button{display:inline-block;margin-top:20px;padding:15px 23px;border-radius:999px;background:#357f78;color:#fff;font-weight:700}.office-v2-info{background:#f7f3ec}.office-v2-profile{margin:38px 0 0;border-top:1px solid rgba(53,127,120,.18);background:rgba(255,255,255,.84);border-radius:16px;overflow:hidden}.office-v2-profile div{display:grid;gap:7px;padding:19px 20px;border-bottom:1px solid rgba(53,127,120,.15)}.office-v2-profile dt{font-weight:700;color:#357f78}.office-v2-profile dd{margin:0;line-height:1.75;color:#394b50}.office-v2-profile dd small{color:#68777a}.office-v2-profile a{color:#315965;text-decoration:underline;text-underline-offset:3px}.office-v2-access{background:#edf7f6}.office-v2-map{overflow:hidden;min-height:360px;border:1px solid rgba(70,139,130,.2);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(65,107,104,.06)}.office-v2-map iframe{display:block;width:100%;height:390px;border:0}.office-v2-phone{display:inline-block;margin-top:10px;color:#357f78;font-size:22px;font-weight:800;text-decoration:underline;text-underline-offset:4px}.office-v2-contact{background:#fff3ef;text-align:left}.office-v2-contact>div>p:not(.office-v2-label){max-width:700px;margin:22px 0 0;color:#46575c;font-size:16px;line-height:1.9}.office-v2-contact a{display:inline-block;margin-top:28px;padding:16px 24px;border-radius:999px;background:#ef7f78;color:#fff;font-weight:700}
@media(min-width:768px){.office-v2-wrap{width:min(1120px,calc(100% - 96px))}.office-v2-section{padding:112px 0}.office-v2-hero__copy{padding-top:32svh}.office-v2-summary-grid{grid-template-columns:repeat(3,1fr);gap:18px}.office-v2-summary-grid article{padding:30px 26px}.office-v2-split{grid-template-columns:.9fr 1.1fr;gap:90px;align-items:start}.office-v2-profile div{grid-template-columns:190px 1fr;gap:24px;padding:21px 28px}.office-v2-contact{text-align:center}.office-v2-contact>div>p:not(.office-v2-label){margin:24px auto 0}}


/* RECRUIT v1 - concrete conditions + people-first work style */
.recruit-v4-philosophy{background:#fffaf5}.recruit-v4-benefits{background:#f2f8f6}.recruit-v4-benefits-lead{max-width:760px;margin:20px 0 0;color:#46575c;font-size:16px;line-height:1.9}.recruit-v4-benefit-grid{display:grid;gap:16px;margin-top:38px}.recruit-v4-benefit-grid article{position:relative;overflow:hidden;padding:25px 22px;border:1px solid rgba(70,139,130,.22);border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 8px 24px rgba(65,107,104,.06)}.recruit-v4-benefit-grid article::before{content:"";position:absolute;inset:0 0 auto;height:4px;background:#63b9ad}.recruit-v4-benefit-grid article:nth-child(2n)::before{background:#ef7f78}.recruit-v4-benefit-grid article:nth-child(3n)::before{background:#86b9ce}.recruit-v4-benefit-grid span{display:block;margin-bottom:9px;color:#68777a;font-size:13px;font-weight:700}.recruit-v4-benefit-grid strong{display:block;color:#315965;font-size:21px;line-height:1.45}.recruit-v4-benefit-grid p{margin:9px 0 0;color:#46575c;font-size:15px;line-height:1.75}.recruit-v4-benefits-note{margin:24px 0 0;color:#68777a;font-size:12.5px;line-height:1.75}.recruit-v4-message-link{display:inline-block;margin:10px 0 20px;padding-bottom:5px;border-bottom:1px solid #357f78;color:#357f78;font-weight:700}.recruit-v4-message .message-body-block p{line-height:1.95}@media(min-width:768px){.recruit-v4-benefit-grid{grid-template-columns:repeat(3,1fr);gap:18px}.recruit-v4-benefit-grid article{padding:30px 26px}.recruit-v4-benefit-grid article:nth-child(7){grid-column:span 3}}

/* CONTACT v1 - clear routes for users, professionals and applicants */
.contact-v2{background:#fffdf9;color:#26343a}.contact-v2-wrap{width:min(1120px,calc(100% - 48px));margin:0 auto}.contact-v2-section{padding:82px 0}.contact-v2-label{margin:0 0 18px;color:#357f78;font-size:15px;font-weight:700}.contact-v2 h2{margin:0;color:#29434b;font-size:clamp(29px,6vw,46px);font-weight:600;line-height:1.45}.contact-v2-hero{position:relative;height:70svh;min-height:520px;overflow:hidden;background:#222}.contact-v2-hero picture,.contact-v2-hero picture img{position:absolute;inset:0;width:100%;height:100%}.contact-v2-hero img{object-fit:cover;object-position:center}.contact-v2-hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,20,20,.6),rgba(20,20,20,.12) 78%),linear-gradient(0deg,rgba(20,20,20,.22),transparent 55%)}.contact-v2-hero__copy{position:relative;z-index:1;padding-top:31svh;color:#fff}.contact-v2-hero__copy p{margin:0 0 18px;font-size:15px;font-weight:700}.contact-v2-hero__copy h1{margin:0 0 22px;font-size:clamp(38px,9vw,66px);font-weight:600;line-height:1.35}.contact-v2-hero__copy span{display:block;max-width:650px;font-size:15px;line-height:1.8}.contact-v2-audience{background:#fffaf5}.contact-v2-card-grid{display:grid;gap:16px;margin-top:38px}.contact-v2-card-grid article{position:relative;overflow:hidden;padding:26px 22px;border:1px solid rgba(70,139,130,.22);border-radius:17px;background:#fff;box-shadow:0 8px 24px rgba(65,107,104,.06)}.contact-v2-card-grid article::before{content:"";position:absolute;inset:0 0 auto;height:4px;background:#63b9ad}.contact-v2-card-grid article:nth-child(2)::before{background:#86b9ce}.contact-v2-card-grid article:nth-child(3)::before{background:#ef7f78}.contact-v2-num{color:#bd5f59;font-size:13px;font-weight:800;letter-spacing:.08em}.contact-v2-card-grid h3{margin:12px 0 10px;color:#315965;font-size:20px;line-height:1.55}.contact-v2-card-grid p,.contact-v2-lead{margin:0;color:#46575c;font-size:15.5px;line-height:1.85}.contact-v2-method{background:#edf7f6}.contact-v2-split{display:grid;gap:34px}.contact-v2-lead{margin-top:22px}.contact-v2-direct{display:grid;gap:14px}.contact-v2-direct>div{padding:23px 20px;border:1px solid rgba(70,139,130,.2);border-radius:16px;background:rgba(255,255,255,.92)}.contact-v2-direct span,.contact-v2-direct small{display:block}.contact-v2-direct span{margin-bottom:8px;color:#357f78;font-size:13px;font-weight:700}.contact-v2-direct a{display:block;color:#315965;font-size:18px;font-weight:800;text-decoration:underline;text-underline-offset:4px;overflow-wrap:anywhere}.contact-v2-direct .contact-v2-phone{font-size:26px}.contact-v2-direct small{margin-top:9px;color:#68777a;line-height:1.6}.contact-v2-form-section{background:#f7f3ec}.contact-v2-form-layout{display:grid;gap:38px}.contact-v2-form{padding:24px 20px;border:1px solid rgba(70,139,130,.18);border-radius:18px;background:rgba(255,255,255,.9);box-shadow:0 8px 24px rgba(65,107,104,.05)}.contact-v2-form label{display:block;margin-bottom:22px}.contact-v2-form label>span{display:block;margin-bottom:9px;color:#315965;font-weight:700}.contact-v2-form label>span small{margin-left:7px;padding:3px 6px;border-radius:5px;background:#fff1ed;color:#bd5f59;font-size:11px}.contact-v2-form input,.contact-v2-form select,.contact-v2-form textarea{box-sizing:border-box;width:100%;padding:14px 15px;border:1px solid #cbd8d5;border-radius:10px;background:#fff;color:#26343a;font:inherit;font-size:16px}.contact-v2-form textarea{resize:vertical;line-height:1.7}.contact-v2-form input:focus,.contact-v2-form select:focus,.contact-v2-form textarea:focus{outline:3px solid rgba(99,185,173,.18);border-color:#63b9ad}.contact-v2-privacy{margin:2px 0 22px;color:#68777a;font-size:12.5px;line-height:1.7}.contact-v2-privacy a{color:#357f78;text-decoration:underline}.contact-v2-form button{width:100%;padding:16px 20px;border:0;border-radius:999px;background:#ef7f78;color:#fff;font:inherit;font-weight:800;cursor:pointer}.contact-v2-last{background:#fff3ef;text-align:left}.contact-v2-last>div>p:not(.contact-v2-label){max-width:700px;margin:22px 0 0;color:#46575c;font-size:16px;line-height:1.9}.contact-v2-last a{display:inline-block;margin-top:28px;padding:16px 24px;border-radius:999px;background:#357f78;color:#fff;font-weight:700}
@media(min-width:768px){.contact-v2-wrap{width:min(1120px,calc(100% - 96px))}.contact-v2-section{padding:112px 0}.contact-v2-hero__copy{padding-top:32svh}.contact-v2-card-grid{grid-template-columns:repeat(3,1fr);gap:18px}.contact-v2-card-grid article{padding:30px 26px}.contact-v2-split{grid-template-columns:.9fr 1.1fr;gap:90px;align-items:start}.contact-v2-form-layout{grid-template-columns:.8fr 1.2fr;gap:80px;align-items:start}.contact-v2-form{padding:36px 34px}.contact-v2-last{text-align:center}.contact-v2-last>div>p:not(.contact-v2-label){margin:24px auto 0}}

/* ===== Information Disclosure ===== */
.disclosure-page{background:#fff;color:#26343a}
.disclosure-wrap{width:min(1120px,calc(100% - 40px));margin-inline:auto}
.disclosure-hero{padding:150px 0 78px;background:linear-gradient(135deg,#f2f8f6 0%,#fbf5ee 100%)}
.disclosure-kicker{margin:0 0 18px;color:#357f78;font-weight:800;letter-spacing:.08em;font-size:.86rem}
.disclosure-hero h1{margin:0;max-width:850px;font-size:clamp(2rem,4.5vw,3.65rem);line-height:1.28;letter-spacing:.01em}
.disclosure-hero>div>p:last-child{margin:24px 0 0;max-width:680px;font-size:1.05rem;line-height:1.9;color:#536267}
.disclosure-section{padding:82px 0}
.disclosure-notice{display:flex;gap:18px;align-items:flex-start;padding:24px 26px;margin-bottom:68px;border:1px solid #d6eae5;border-radius:18px;background:#f5faf8}
.disclosure-notice__icon{flex:0 0 34px;width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#63b9ad;color:#fff;font-weight:800;font-family:Georgia,serif}
.disclosure-notice strong{display:block;margin:1px 0 7px;font-size:1rem}
.disclosure-notice p{margin:0;color:#58676b;line-height:1.8;font-size:.93rem}
.disclosure-heading{margin-bottom:34px}
.disclosure-heading>p{margin:0 0 8px;color:#357f78;font-weight:800;font-size:.83rem;letter-spacing:.09em}
.disclosure-heading h2{margin:0;font-size:clamp(1.7rem,3vw,2.45rem);line-height:1.35}
.disclosure-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.disclosure-card{padding:30px;border:1px solid #dde7e4;border-radius:22px;background:#fff;box-shadow:0 10px 30px rgba(38,52,58,.045)}
.disclosure-card__icon{width:50px;height:50px;margin-bottom:20px;border-radius:14px;display:grid;place-items:center;background:#edf7f6;color:#357f78}
.disclosure-card__icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.disclosure-card__eyebrow{margin:0 0 6px;color:#bd5f59;font-size:.78rem;font-weight:800;letter-spacing:.08em}
.disclosure-card h3{margin:0 0 12px;font-size:1.25rem}
.disclosure-card>p:not(.disclosure-card__eyebrow){min-height:3.7em;margin:0 0 22px;color:#657277;line-height:1.8;font-size:.92rem}
.disclosure-status{display:flex;align-items:center;gap:10px;padding:11px 0;border-top:1px solid #edf0ef;color:#526166;font-size:.88rem}
.disclosure-status span{display:inline-block;padding:4px 9px;border-radius:999px;background:#f7f3ec;color:#826b4d;font-size:.72rem;font-weight:800;white-space:nowrap}
.disclosure-link{display:flex;justify-content:space-between;align-items:center;margin:4px 0 10px;padding:12px 14px;border-radius:12px;background:#f2f8f6;color:#357f78;text-decoration:none;font-size:.9rem;font-weight:700}
.disclosure-link:hover{text-decoration:underline}
.disclosure-basic{background:#fbf7f1}
.disclosure-profile{margin:0;border-top:1px solid #dfe5e2}
.disclosure-profile>div{display:grid;grid-template-columns:220px 1fr;gap:24px;padding:20px 4px;border-bottom:1px solid #dfe5e2}
.disclosure-profile dt{font-weight:800;color:#3c4c50}
.disclosure-profile dd{margin:0;line-height:1.75;color:#536267}
.disclosure-profile a{color:#357f78}
.disclosure-actions{display:flex;gap:12px;margin-top:34px}
.disclosure-actions a{display:inline-flex;align-items:center;justify-content:center;min-width:210px;padding:14px 20px;border:1px solid #63b9ad;border-radius:999px;color:#357f78;text-decoration:none;font-weight:800;background:#fff}
.disclosure-actions a.coral{border-color:#ef7f78;background:#ef7f78;color:#fff}
@media(max-width:760px){
  .disclosure-wrap{width:min(100% - 28px,1120px)}
  .disclosure-hero{padding:118px 0 56px}
  .disclosure-hero h1{font-size:2rem}
  .disclosure-hero>div>p:last-child{font-size:.96rem}
  .disclosure-section{padding:58px 0}
  .disclosure-notice{padding:20px 18px;margin-bottom:48px}
  .disclosure-grid{grid-template-columns:1fr}
  .disclosure-card{padding:24px 22px}
  .disclosure-card>p:not(.disclosure-card__eyebrow){min-height:0}
  .disclosure-profile>div{grid-template-columns:1fr;gap:7px;padding:17px 2px}
  .disclosure-actions{flex-direction:column}
  .disclosure-actions a{width:100%;min-width:0}
}


/* Pre-opening notice / contact form operational states */
.preopen-notice{display:flex;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap;padding:10px 20px;background:#f2f8f6;color:#26343a;border-bottom:1px solid rgba(53,127,120,.16);font-size:.92rem;text-align:center}.preopen-notice strong{color:#357f78}.preopen-notice span{font-size:.88rem}.form-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.contact-form-result{grid-column:1/-1;margin-bottom:18px;padding:14px 16px;border-radius:12px;font-weight:700;line-height:1.7}.contact-form-result.is-success{background:#f2f8f6;border:1px solid rgba(53,127,120,.24);color:#357f78}.contact-form-result.is-error{background:#fff3ef;border:1px solid rgba(189,95,89,.22);color:#9b4d48}
/* Mobile pre-open header fix */
@media (max-width: 760px){
  .preopen-notice{
    flex-direction:column;
    gap:4px;
    padding:10px 16px;
    text-align:center;
    line-height:1.45;
  }

  body{
    padding-top:0;
  }
}
