@charset "UTF-8";

:root {
  --ink: #202428;
  --muted: #697178;
  --line: #e5e7e8;
  --soft: #f4f5f4;
  --accent: #b52c32;
  --accent-dark: #902228;
  --dark: #1f2326;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: .02em;
}

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

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

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

.narrow {
  max-width: 820px;
}

.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

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

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

.brand-small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
}

.brand-main {
  margin-top: 4px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-ja {
  margin-top: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.header-contact {
  text-align: right;
}

.header-contact-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.header-phone {
  display: block;
  margin-top: 2px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 750;
  line-height: 1.3;
}

.global-nav {
  border-top: 1px solid var(--line);
}

.nav-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 54px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-inner a {
  position: relative;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-inner a:first-child {
  padding-left: 0;
}

.nav-inner a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-inner a:first-child::after {
  left: 0;
}

.nav-inner a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 22, 24, .92) 0%, rgba(19, 22, 24, .76) 46%, rgba(19, 22, 24, .30) 100%),
    url("../images/hero.jpg") 58% center / cover no-repeat,
    #303437;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 90px 0;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero-kicker {
  color: #fff;
  opacity: .75;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 720;
  line-height: 1.22;
  letter-spacing: .015em;
}

.hero-title-line {
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-points span {
  min-height: 42px;
  padding: 8px 15px 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.hero-point-icon {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .96;
}

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

.button {
  min-width: 190px;
  padding: 15px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 750;
  transition: .2s ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

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

.button-ghost {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255,255,255,.10);
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--soft);
}

.intro {
  text-align: center;
}

.intro h2,
.section-heading h2,
.guide-layout h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
}

.intro-text {
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
}

.centered {
  justify-content: center;
  text-align: center;
}

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

.property-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e3e5e6;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(25, 30, 33, .05);
}

.property-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  background-color: #d8d9d8;
}

.property-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28));
}

.property-photo-ikebukuro {
  background-image: url("../images/higashi-ikebukuro.jpg");
}

.property-photo-nishishimbashi {
  background-image: url("../images/nishishimbashi.jpg");
}

.property-photo-akasaka {
  background-image: url("../images/akasaka.jpg");
}

.property-area {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  background: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 750;
}

.property-body {
  padding: 27px 26px 28px;
}

.property-body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
}

.property-address {
  min-height: 60px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.property-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  margin-top: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 54px;
}

.feature-card {
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.feature-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.feature-card h3 {
  margin: 14px 0 10px;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.eyebrow-light {
  color: rgba(255,255,255,.55);
}

.guide-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.guide-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.68);
}

.guide-links {
  border-top: 1px solid rgba(255,255,255,.16);
}

.guide-links a {
  padding: 19px 4px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-weight: 650;
}

.guide-links a:hover {
  color: #fff;
  opacity: .72;
}

.contact-section {
  padding: 90px 0;
  background: #f1eee9;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
}

.contact-inner > div > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-phone {
  min-height: 142px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 22px rgba(25,30,33,.06);
}

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

.contact-phone strong {
  margin-top: 4px;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.25;
}

.site-footer {
  padding: 46px 0;
  background: #16191b;
  color: rgba(255,255,255,.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.footer-note {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  line-height: 1.7;
}

.copyright {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  white-space: nowrap;
}

.sp-only {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
  }

  .header-contact {
    display: none;
  }

  .nav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-inner a {
    padding-inline: 16px;
  }

  .nav-inner a:first-child {
    padding-left: 0;
  }

  .property-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .property-grid {
    max-width: 650px;
    margin-inline: auto;
  }

  .property-address {
    min-height: auto;
  }

  .guide-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .hero-title-line {
    white-space: normal;
  }

  .container,
  .header-inner,
  .nav-inner,
  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-main {
    font-size: 25px;
  }

  .brand-ja {
    font-size: 10px;
  }

  .global-nav {
    border-bottom: 1px solid var(--line);
  }

  .nav-inner {
    min-height: 48px;
  }

  .nav-inner a {
    padding: 12px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 600px;
    background:
      linear-gradient(90deg, rgba(19,22,24,.90), rgba(19,22,24,.68)),
      url("../images/hero.jpg") 58% center / cover no-repeat,
      #303437;
  }

  .hero-inner {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-title-line {
  white-space: nowrap;
}

.hero-lead {
    font-size: 15px;
  }

  .hero-points {
    gap: 7px;
  }

  .hero-points span {
    font-size: 11px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    display: block;
  }

  .section-heading > p {
    margin-top: 10px;
  }

  .property-body {
    padding: 23px 20px 25px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-phone {
    min-height: 125px;
    padding: 22px;
  }

  .footer-inner {
    display: block;
  }

  .copyright {
    margin-top: 28px;
  }

  .sp-only {
    display: inline;
  }
}


/* =========================
   PROPERTY DETAIL
========================= */

.detail-hero {
  padding: 74px 0 82px;
  background: #f1eee9;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.detail-area {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.22;
  letter-spacing: .01em;
}

.detail-address {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.detail-access-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.detail-access-summary span {
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #dedbd7;
  font-size: 12px;
  font-weight: 700;
}

.detail-main-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

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

.detail-two-column {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.detail-section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
}

.access-list {
  border-top: 1px solid var(--line);
}

.access-item {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.access-label {
  color: var(--muted);
  font-size: 13px;
}

.access-item strong {
  font-size: 16px;
  font-weight: 650;
}

.room-intro {
  max-width: 760px;
  margin: -8px 0 34px;
  color: var(--muted);
}

.price-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #dedfe0;
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.price-table th {
  background: #262b2f;
  color: #fff;
  font-size: 12px;
  letter-spacing: .05em;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:nth-child(even) {
  background: #f7f7f6;
}

.price-table td:last-child {
  font-weight: 800;
}

.price-caution {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.detail-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.detail-feature-copy > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
}

.detail-feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-feature-box {
  min-height: 210px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-feature-box span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.detail-feature-box strong {
  display: block;
  margin-top: 24px;
  font-size: 20px;
}

.detail-feature-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.property-contact {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
}

.property-contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.property-contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.4;
}

.property-contact-phone {
  min-width: 360px;
  padding: 24px 28px;
  background: #fff;
  color: var(--ink);
  border-left: 4px solid var(--accent);
}

.property-contact-phone span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.property-contact-phone strong {
  display: block;
  margin-top: 5px;
  font-size: 32px;
  line-height: 1.2;
}

.property-pager {
  padding-top: 34px;
  padding-bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.property-pager a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .detail-hero-grid,
  .detail-two-column,
  .detail-feature-row,
  .property-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-main-photo {
    max-width: 680px;
  }

  .detail-feature-boxes {
    grid-template-columns: 1fr;
  }

  .property-contact-phone {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .detail-hero {
    padding: 54px 0 60px;
  }

  .detail-hero h1 {
    font-size: 39px;
  }

  .detail-main-photo {
    aspect-ratio: 4 / 3;
  }

  .access-item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .price-table th,
  .price-table td {
    padding: 13px 10px;
    font-size: 12px;
  }

  .property-contact {
    padding: 64px 0;
  }

  .property-contact-phone strong {
    font-size: 27px;
  }
}


@media (min-width: 901px) {
  .detail-section-title {
    white-space: nowrap;
  }
}


@media (min-width: 901px) {
  .detail-feature-box strong {
    white-space: nowrap;
  }
}


/* 西新橋 */
.detail-main-photo-shimbashi {
  aspect-ratio: 4 / 3;
}

.detail-main-photo-shimbashi img {
  object-position: 52% center;
}

.detail-feature-boxes-four {
  grid-template-columns: repeat(2, 1fr);
}

.price-note-small {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.parking-copy {
  padding-top: 4px;
}

.parking-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 900px) {
  .detail-feature-boxes-four {
    grid-template-columns: 1fr;
  }
}


/* =========================
   GUIDE / CONTRACT
========================= */

.page-hero {
  padding: 86px 0 90px;
  background: #f1eee9;
}

.page-hero-inner h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.2;
}

.page-hero-inner > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.step-card {
  min-height: 250px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.step-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.step-card h3 {
  margin: 30px 0 12px;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-contact-strip {
  margin-top: 28px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--dark);
  color: #fff;
}

.guide-contact-strip span {
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

.guide-contact-strip a {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.document-card {
  padding: 30px;
  background: #fff;
  border-top: 3px solid var(--ink);
}

.document-label {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.document-card h3 {
  margin: 12px 0 14px;
  font-size: 22px;
}

.document-card > p:not(.document-label) {
  color: var(--muted);
}

.simple-list {
  margin: 17px 0 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 14px;
}

.simple-list li + li {
  margin-top: 6px;
}

.guide-info-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.guide-info-list > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 52px minmax(180px, .65fr) 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.guide-info-list span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.guide-info-list strong {
  font-size: 15px;
}

.guide-info-list small {
  color: var(--muted);
  font-size: 12px;
}

.guide-caution {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.cost-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
}

.cost-main {
  padding: 36px;
  background: var(--dark);
  color: #fff;
}

.cost-main h3 {
  margin: 0 0 28px;
  font-size: 18px;
}

.cost-formula {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 750;
  line-height: 1.45;
}

.cost-formula span {
  display: inline-block;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 500;
}

.cost-formula b {
  display: block;
  margin: 8px 0;
  color: var(--accent);
}

.cost-side {
  display: grid;
  gap: 12px;
}

.cost-note {
  padding: 22px 24px;
  border: 1px solid var(--line);
}

.cost-note strong {
  font-size: 15px;
}

.cost-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.guide-small-note {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.guide-small-note p {
  margin: 0;
}

.guide-small-note p + p {
  margin-top: 4px;
}

.guide-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guide-panel {
  min-height: 260px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}

.guide-panel h2 {
  margin: 0;
  font-size: 30px;
}

.guide-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.guide-large-text {
  margin-top: 24px !important;
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 750;
}

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

.prohibited-list li {
  counter-increment: prohibited;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.prohibited-list li::before {
  content: counter(prohibited, decimal-leading-zero);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.guide-caution-bottom {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .step-grid,
  .document-grid,
  .cost-layout,
  .guide-two-column {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 62px 0 66px;
  }

  .page-hero-inner h1 {
    font-size: 43px;
  }

  .guide-contact-strip {
    display: block;
  }

  .guide-contact-strip a {
    display: block;
    margin-top: 6px;
  }

  .guide-info-list > div {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .guide-info-list small {
    grid-column: 2;
  }

  .cost-main,
  .guide-panel,
  .document-card {
    padding: 25px 22px;
  }

  .prohibited-list li {
    grid-template-columns: 42px 1fr;
  }
}


/* =========================
   FAQ
========================= */

.faq-container {
  max-width: 980px;
}

.faq-item {
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 25px 8px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.faq-answer {
  padding: 0 56px 30px 68px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-answer strong {
  color: var(--ink);
}

.faq-note {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.75;
}

.faq-guide-link {
  margin-top: 60px;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--soft);
}

.faq-guide-link h2 {
  margin: 0;
  font-size: 30px;
}

.faq-guide-link p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 700px) {
  .faq-item summary {
    grid-template-columns: 38px 1fr 20px;
    gap: 10px;
    padding: 20px 0;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 0 26px 48px;
  }

  .faq-guide-link {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .faq-guide-link .btn {
    width: 100%;
  }
}


/* =========================
   STORAGE TIPS
========================= */

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

.storage-tip-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.storage-tip-number,
.storage-check > span,
.storage-use-index {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.storage-tip-card h3 {
  margin: 28px 0 18px;
  font-size: 24px;
  line-height: 1.45;
}

.storage-tip-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.storage-tip-card p + p {
  margin-top: 10px;
}

.storage-clothing {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.storage-large-heading {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.4;
}

.storage-clothing-content {
  border-top: 1px solid var(--line);
}

.storage-check {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.storage-check strong {
  display: block;
  font-size: 17px;
}

.storage-check p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.storage-use-list {
  border-top: 1px solid var(--line);
}

.storage-use-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.storage-use-item h3 {
  margin: 0;
  font-size: 23px;
}

.storage-use-item p {
  max-width: 800px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.storage-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.storage-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.4;
}

.storage-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .storage-tip-grid,
  .storage-clothing,
  .storage-cta {
    grid-template-columns: 1fr;
  }

  .storage-tip-card {
    min-height: 0;
  }

  .storage-clothing {
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .storage-use-item {
    grid-template-columns: 45px 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .storage-tip-card {
    padding: 25px 22px;
  }
}


/* =========================
   RECRUIT / PROPERTY WANTED
========================= */

.recruit-intro,
.recruit-proposal {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.recruit-intro h2,
.recruit-proposal h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.4;
}

.recruit-intro-copy p,
.recruit-proposal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.recruit-intro-copy p + p,
.recruit-proposal-copy p + p {
  margin-top: 14px;
}

.recruit-condition-list {
  border-top: 1px solid var(--line);
}

.recruit-condition {
  display: grid;
  grid-template-columns: 64px 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-condition > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.recruit-condition strong {
  font-size: 15px;
}

.recruit-condition p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.recruit-contact-card {
  max-width: 900px;
  background: #fff;
  border-top: 3px solid var(--ink);
}

.recruit-contact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 22px 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.recruit-contact-row > span {
  color: var(--muted);
  font-size: 12px;
}

.recruit-contact-row strong,
.recruit-contact-row a {
  font-size: 18px;
  font-weight: 700;
}

.recruit-contact-row a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .recruit-intro,
  .recruit-proposal {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .recruit-condition {
    grid-template-columns: 42px 1fr;
    gap: 10px 12px;
  }

  .recruit-condition p {
    grid-column: 2;
  }

  .recruit-contact-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px;
  }

  .recruit-contact-row strong,
  .recruit-contact-row a {
    font-size: 16px;
  }
}


@media (max-width: 520px) {
  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    min-height: 40px;
    padding: 7px 13px 7px 10px;
  }

  .hero-point-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}


/* TOP feature icons */
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon text {
  fill: currentColor;
  stroke: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .feature-icon {
    width: 62px;
    height: 62px;
    margin: 14px 0 20px;
  }
}


/* v10.3 FEATURE layout adjustment */
.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 18px;
}

.feature-card .feature-number {
  margin: 0;
  flex: 0 0 auto;
}

.feature-card .feature-icon {
  width: 62px;
  height: 62px;
  margin: 0;
  flex: 0 0 62px;
}

.feature-card h3 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .feature-card-head {
    margin: 14px 0 16px;
  }

  .feature-card .feature-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}


/* v10.4 property photo links */
.property-photo-link {
  display: block;
  overflow: hidden;
  color: inherit;
}

.property-photo-link .property-photo {
  transition: transform .28s ease;
}

.property-photo-link:hover .property-photo {
  transform: scale(1.018);
}


/* v11 East Ikebukuro Google map */
.detail-map-section {
  padding: 0 0 72px;
  background: #fff;
}

.detail-map-wrap {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f2f2f2;
}

.detail-map {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.detail-map-link {
  margin-top: 12px;
  text-align: right;
}

.detail-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.detail-map-link a::after {
  content: "↗";
  font-size: 13px;
}

.detail-map-link a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .detail-map-section {
    padding-bottom: 52px;
  }

  .detail-map {
    height: 300px;
  }
}


/* v13 nishishimbashi photo gallery */
.facility-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.facility-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.facility-photo-card-large {
  grid-row: span 2;
}

.facility-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.facility-photo-card figcaption,
.locker-photo-card figcaption {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.locker-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 14px;
}

.locker-photo-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  overflow: hidden;
}

.locker-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f5f4;
}

@media (max-width: 900px) {
  .facility-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-photo-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .facility-gallery-grid,
  .locker-photo-grid {
    grid-template-columns: 1fr;
  }

  .facility-photo-card img {
    min-height: 220px;
  }
}


/* v13.1 Nishishimbashi gallery layout */
.facility-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.facility-photo-card-large {
  grid-column: auto;
  grid-row: auto;
}

.facility-photo-card img {
  width: 100%;
  height: 260px;
  min-height: 0;
  object-fit: cover;
}

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

@media (max-width: 700px) {
  .facility-gallery-grid,
  .locker-photo-grid {
    grid-template-columns: 1fr;
  }

  .facility-photo-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}


/* =========================
   GUIDE REFINED v14
========================= */

.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(115deg, #f3f0eb 0%, #f3f0eb 68%, #ece8e1 68%, #ece8e1 100%);
}

.guide-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(181,44,50,.15);
  border-radius: 50%;
}

.guide-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.guide-local-nav {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.guide-local-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.guide-local-nav a {
  position: relative;
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.guide-local-nav a:first-child {
  border-left: 1px solid var(--line);
}

.guide-local-nav a::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.guide-local-nav a:hover::after {
  transform: scaleX(1);
}

.guide-section-heading {
  align-items: end;
}

.guide-section-heading h2 {
  line-height: 1.3;
}

.guide-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-flow::before {
  content: "";
  position: absolute;
  top: 59px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: #d7d9da;
}

.guide-flow-card {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.guide-flow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.guide-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guide-flow-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.guide-flow-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181,44,50,.22);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
}

.guide-flow-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-flow-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.45;
}

.guide-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-contact-strip {
  border-radius: 2px;
}

.guide-contact-strip > div {
  display: grid;
  gap: 2px;
}

.guide-contact-strip small {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.guide-document-grid {
  gap: 28px;
}

.guide-document-card {
  position: relative;
  min-height: 335px;
  padding: 34px;
  border-top: 0;
  border: 1px solid var(--line);
  box-shadow: inset 0 3px 0 var(--ink);
}

.guide-document-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.guide-document-mark {
  color: #a5aaae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.guide-check-list {
  list-style: none;
  padding-left: 0;
}

.guide-check-list li {
  position: relative;
  padding-left: 24px;
}

.guide-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.guide-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  border-top: 0;
}

.guide-info-cards > div {
  min-height: 118px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}

.guide-info-cards span {
  letter-spacing: .14em;
}

.guide-info-cards strong {
  font-size: 15px;
  line-height: 1.55;
}

.guide-info-cards small {
  font-size: 12px;
}

.guide-caution-box {
  padding: 15px 18px;
  border-left: 3px solid #d6d8da;
  background: rgba(255,255,255,.56);
}

.guide-cost-layout {
  gap: 24px;
}

.guide-cost-main {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-cost-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.guide-cost-main h3 {
  margin-bottom: 28px;
  font-size: 22px;
}

.cost-formula-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.cost-formula-grid > b {
  color: var(--accent);
  font-size: 26px;
  font-weight: 500;
}

.cost-formula-item {
  display: grid;
  gap: 7px;
}

.cost-formula-item strong {
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.3;
}

.cost-formula-item span {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.6;
}

.guide-cost-side {
  gap: 12px;
}

.guide-cost-side .cost-note {
  position: relative;
  padding: 21px 24px 21px 86px;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cost-note-label {
  position: absolute;
  left: 22px;
  top: 24px;
  color: #a4a9ad;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.guide-fee-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 4px 22px;
  align-items: start;
}

.guide-fee-note strong {
  grid-row: 1 / span 2;
  color: var(--ink);
  font-size: 13px;
}

.guide-basics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guide-basic-card {
  min-height: 245px;
  padding: 30px 32px;
  background: #fff;
  border: 1px solid var(--line);
}

.guide-basic-index {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.guide-basic-card h3 {
  margin: 17px 0 0;
  font-size: 25px;
  line-height: 1.4;
}

.guide-basic-card > p:not(.guide-large-text) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-basic-card .guide-large-text {
  margin-top: 22px !important;
  font-size: 18px;
}

.guide-prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.guide-prohibited-list li {
  min-height: 76px;
  padding: 19px 20px 19px 0;
}

.guide-prohibited-list li:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.guide-prohibited-list li:nth-child(even) {
  padding-left: 28px;
}

.guide-prohibited-list li:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

@media (max-width: 900px) {
  .guide-local-nav-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-local-nav a {
    border-bottom: 1px solid var(--line);
  }

  .guide-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guide-flow::before {
    display: none;
  }

  .guide-flow-card {
    min-height: 0;
  }

  .guide-info-cards {
    grid-template-columns: 1fr;
  }

  .cost-formula-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cost-formula-grid > b {
    line-height: 1;
  }

  .guide-basics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .guide-hero {
    padding: 64px 0 68px;
  }

  .guide-local-nav-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-local-nav a {
    padding: 14px 8px;
    font-size: 12px;
  }

  .guide-local-nav a:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .guide-flow-card,
  .guide-document-card,
  .guide-basic-card {
    padding: 24px 22px;
  }

  .guide-flow-icon {
    width: 50px;
    height: 50px;
  }

  .guide-contact-strip {
    padding: 22px;
  }

  .guide-contact-strip > div {
    margin-bottom: 10px;
  }

  .guide-contact-strip small {
    line-height: 1.6;
  }

  .guide-cost-main {
    padding: 28px 24px;
  }

  .guide-cost-side .cost-note {
    padding-left: 72px;
  }

  .guide-fee-note {
    grid-template-columns: 1fr;
  }

  .guide-fee-note strong {
    grid-row: auto;
  }

  .guide-prohibited-list {
    grid-template-columns: 1fr;
  }

  .guide-prohibited-list li,
  .guide-prohibited-list li:nth-child(odd),
  .guide-prohibited-list li:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .guide-prohibited-list li:last-child {
    grid-column: auto;
  }
}


/* v14.1 COST desktop wrapping fix */
@media (min-width: 901px) {
  .cost-formula-item strong {
    white-space: nowrap;
    font-size: clamp(18px, 1.8vw, 25px);
  }

  .cost-formula-grid {
    gap: 10px;
  }
}


/* =========================
   RECRUIT REFINED v15
========================= */

.recruit-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(115deg, #f3f0eb 0%, #f3f0eb 68%, #ece8e1 68%, #ece8e1 100%);
}

.recruit-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(181,44,50,.15);
  border-radius: 50%;
}

.recruit-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.recruit-local-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.recruit-local-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.recruit-local-nav a {
  position: relative;
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.recruit-local-nav a:first-child {
  border-left: 1px solid var(--line);
}

.recruit-local-nav a::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.recruit-local-nav a:hover::after {
  transform: scaleX(1);
}

.recruit-intro-refined {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.recruit-intro-title h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.38;
}

.recruit-intro-panel {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: inset 3px 0 0 var(--accent);
}

.recruit-intro-panel p {
  margin: 0;
  color: var(--muted);
}

.recruit-intro-panel p + p {
  margin-top: 16px;
}

.recruit-intro-panel .recruit-intro-lead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
}

.recruit-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.recruit-audience span {
  padding: 7px 12px;
  border: 1px solid rgba(181,44,50,.24);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.recruit-section-heading {
  align-items: end;
}

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

.recruit-condition-card {
  min-height: 250px;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.recruit-condition-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.recruit-condition-head > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.recruit-condition-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(181,44,50,.2);
  border-radius: 50%;
}

.recruit-condition-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-condition-card h3 {
  margin: 26px 0 13px;
  font-size: 21px;
  line-height: 1.45;
}

.recruit-condition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.recruit-condition-card .recruit-condition-main {
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
}

.recruit-condition-card .recruit-condition-main + p {
  margin-top: 7px;
}

.recruit-caution {
  margin-top: 26px;
}

.recruit-proposal-refined {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.recruit-proposal-copyblock h2 {
  margin: 8px 0 24px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.4;
}

.recruit-proposal-copyblock p {
  margin: 0;
  color: var(--muted);
}

.recruit-proposal-copyblock p + p {
  margin-top: 14px;
}

.recruit-proposal-copyblock .recruit-proposal-lead {
  color: var(--ink);
  font-weight: 700;
}

.recruit-proposal-steps {
  border-top: 1px solid var(--line);
}

.recruit-proposal-steps article {
  display: grid;
  grid-template-columns: 52px 160px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-proposal-steps span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.recruit-proposal-steps strong {
  font-size: 15px;
}

.recruit-proposal-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.recruit-contact-refined {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.recruit-contact-dept,
.recruit-contact-method {
  min-height: 180px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-contact-dept,
.recruit-contact-method:not(:last-child) {
  border-right: 1px solid var(--line);
}

.recruit-contact-label,
.recruit-contact-method > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.recruit-contact-dept p,
.recruit-contact-method small {
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 12px;
}

.recruit-contact-dept strong {
  font-size: 20px;
  line-height: 1.45;
}

.recruit-contact-method strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.recruit-contact-method {
  transition: background .2s ease;
}

.recruit-contact-method:hover {
  background: #faf9f7;
}

@media (max-width: 900px) {
  .recruit-intro-refined,
  .recruit-proposal-refined {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .recruit-contact-refined {
    grid-template-columns: 1fr;
  }

  .recruit-contact-dept,
  .recruit-contact-method {
    min-height: 140px;
  }

  .recruit-contact-dept,
  .recruit-contact-method:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .recruit-hero {
    padding: 64px 0 68px;
  }

  .recruit-local-nav-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-local-nav a {
    padding: 14px 8px;
    font-size: 12px;
    border-bottom: 1px solid var(--line);
  }

  .recruit-local-nav a:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .recruit-intro-panel {
    padding: 26px 24px;
  }

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

  .recruit-condition-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .recruit-proposal-steps article {
    grid-template-columns: 42px 1fr;
  }

  .recruit-proposal-steps p {
    grid-column: 2;
  }

  .recruit-contact-dept,
  .recruit-contact-method {
    min-height: 0;
    padding: 24px 22px;
  }
}


/* v15.1 recruit proposal heading fix */
@media (min-width: 901px) {
  .recruit-proposal-refined {
    grid-template-columns: 1fr 1fr;
  }

  .recruit-proposal-copyblock h2 {
    font-size: clamp(28px, 3.2vw, 40px);
  }

  .recruit-proposal-nowrap {
    white-space: nowrap;
  }
}


/* =========================
   FAQ REFINED v16
========================= */

.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(115deg, #f3f0eb 0%, #f3f0eb 68%, #ece8e1 68%, #ece8e1 100%);
}

.faq-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(181,44,50,.15);
  border-radius: 50%;
}

.faq-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.faq-section {
  background: #fff;
}

.faq-container {
  max-width: 1040px;
}

.faq-list-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.faq-list-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.4;
}

.faq-list-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list .faq-item {
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

.faq-list .faq-item[open] {
  border-color: #d8d5d1;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}

.faq-list .faq-item summary {
  grid-template-columns: 46px 1fr 26px;
  gap: 18px;
  padding: 23px 24px;
  font-size: 17px;
  line-height: 1.55;
}

.faq-list .faq-item summary:hover {
  background: #fbfaf8;
}

.faq-list .faq-q {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.faq-list .faq-item summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(181,44,50,.25);
  border-radius: 50%;
  font-size: 17px;
}

.faq-list .faq-answer {
  margin: 0 24px 24px 88px;
  padding: 22px 26px;
  border-left: 2px solid rgba(181,44,50,.28);
  background: #f8f7f5;
  color: #5f666c;
}

.faq-list .faq-note {
  border-top-color: #dedbd7;
}

.faq-guide-link {
  margin-top: 54px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: #f3f0eb;
}

.faq-guide-link h2 {
  line-height: 1.4;
}

@media (min-width: 901px) {
  .faq-guide-link h2 {
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .faq-hero {
    padding: 64px 0 68px;
  }

  .faq-list-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }

  .faq-list .faq-item summary {
    grid-template-columns: 38px 1fr 24px;
    gap: 11px;
    padding: 19px 16px;
    font-size: 16px;
  }

  .faq-list .faq-q {
    width: 34px;
    height: 34px;
  }

  .faq-list .faq-answer {
    margin: 0 16px 16px;
    padding: 20px 18px;
  }

  .faq-guide-link {
    margin-top: 42px;
  }
}


/* =========================
   STORAGE TIPS EDITORIAL v17
========================= */

.storage-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 102px;
  background:
    linear-gradient(118deg, #f3f0eb 0%, #f3f0eb 67%, #ebe6df 67%, #ebe6df 100%);
}

.storage-hero::before {
  content: "";
  position: absolute;
  right: 11%;
  top: 34px;
  width: 1px;
  height: 150px;
  background: rgba(181,44,50,.22);
}

.storage-hero::after {
  content: "";
  position: absolute;
  right: 6.5%;
  bottom: -128px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(181,44,50,.15);
  border-radius: 50%;
}

.storage-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.storage-local-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.storage-local-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.storage-local-nav a {
  position: relative;
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.storage-local-nav a:first-child {
  border-left: 1px solid var(--line);
}

.storage-local-nav a::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.storage-local-nav a:hover::after {
  transform: scaleX(1);
}

.storage-editorial-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.storage-editorial-title h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
}

.storage-editorial-kicker {
  display: block;
  margin-top: 14px;
  color: #9a9fa3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.storage-editorial-lead {
  margin: 0 0 5px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.storage-tip-grid-refined {
  gap: 18px;
}

.storage-tip-card-refined {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 32px 30px 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, #fff 73%, #faf9f7 100%);
}

.storage-tip-card-refined::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(181,44,50,.10);
  border-radius: 50%;
}

.storage-tip-card-refined .storage-tip-number {
  display: block;
  font-size: 12px;
}

.storage-tip-rule {
  width: 38px;
  height: 2px;
  margin-top: 20px;
  background: var(--accent);
}

.storage-tip-card-refined h3 {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.55;
}

.storage-tip-card-refined p {
  position: relative;
  z-index: 1;
}

.storage-clothing-section {
  position: relative;
  overflow: hidden;
  background: #24282b;
  color: #fff;
}


.storage-clothing-refined {
  position: relative;
  z-index: 1;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

.storage-clothing-heading {
  position: sticky;
  top: 36px;
}

.storage-editorial-kicker-light {
  color: rgba(255,255,255,.36);
}

.storage-clothing-refined .storage-large-heading {
  margin-top: 18px;
  color: #fff;
}

.storage-clothing-line {
  width: 54px;
  height: 2px;
  margin-top: 32px;
  background: var(--accent);
}

.storage-clothing-content-refined {
  border-top-color: rgba(255,255,255,.15);
}

.storage-clothing-content-refined .storage-check {
  grid-template-columns: 58px 1fr;
  padding: 27px 0;
  border-bottom-color: rgba(255,255,255,.15);
}

.storage-clothing-content-refined .storage-check > span {
  color: #d76268;
}

.storage-clothing-content-refined .storage-check strong {
  color: #fff;
  font-size: 18px;
}

.storage-clothing-content-refined .storage-check p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.storage-trunk-section {
  background:
    linear-gradient(90deg, #fff 0%, #fff 71%, #faf8f5 71%, #faf8f5 100%);
}

.storage-editorial-heading-trunk {
  margin-bottom: 36px;
}

.storage-use-list-refined {
  border-top: 0;
}

.storage-use-item-refined {
  position: relative;
  grid-template-columns: 150px 1fr;
  gap: 42px;
  padding: 0;
  border-bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.storage-use-item-refined + .storage-use-item-refined {
  margin-top: 16px;
}

.storage-use-number-block {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f0eb;
  border-right: 1px solid var(--line);
}

.storage-use-item-refined .storage-use-index {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .02em;
}

.storage-use-copy {
  padding: 36px 42px 36px 0;
}

.storage-use-copy h3 {
  margin: 0 0 15px;
  font-size: 23px;
}

.storage-use-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.storage-use-copy p + p {
  margin-top: 8px;
}

.storage-cta-refined {
  position: relative;
  overflow: hidden;
  padding: 42px 44px;
  background: #fff;
  border: 1px solid var(--line);
}

.storage-cta-refined::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.storage-cta-copy {
  position: relative;
  z-index: 1;
}

.storage-cta-copy h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.4;
}

@media (min-width: 901px) {
  .storage-cta-copy h2 {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .storage-editorial-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .storage-editorial-lead {
    max-width: 700px;
  }

  .storage-clothing-refined {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .storage-clothing-heading {
    position: static;
  }

  .storage-use-item-refined {
    grid-template-columns: 110px 1fr;
  }

  .storage-use-number-block {
    min-height: 170px;
  }
}

@media (max-width: 700px) {
  .storage-hero {
    padding: 64px 0 68px;
  }

  .storage-local-nav a {
    padding: 14px 8px;
    font-size: 12px;
  }

  .storage-editorial-heading {
    margin-bottom: 30px;
  }

  .storage-editorial-lead {
    padding-left: 18px;
    font-size: 14px;
  }

  .storage-tip-card-refined {
    min-height: 0;
    padding: 27px 23px 30px;
  }

  .storage-use-item-refined {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .storage-use-number-block {
    min-height: 72px;
    justify-content: flex-start;
    padding: 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .storage-use-item-refined .storage-use-index {
    font-size: 22px;
  }

  .storage-use-copy {
    padding: 26px 24px 30px;
  }

  .storage-cta-refined {
    padding: 30px 24px;
  }

  .storage-cta-refined .btn {
    width: 100%;
  }

  .storage-cta-copy h2 {
    white-space: normal;
  }
}


/* v17.2 TOP smartphone readability fix */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(32px, 10.5vw, 40px);
    line-height: 1.28;
  }

  .hero-title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
  }

  .intro-text {
    max-width: 34em;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 2;
  }
}
