/* ============================================
   イロドリ不動産 - トップページ スタイル
   ============================================ */
.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}
/* --- CSS Variables (DESIGN-GUIDELINE Section 15) --- */
body {
  font-family: 
    'Roboto',
    'Yu Gothic',
    'YuGothic',
    'Hiragino Sans',
    sans-serif;
  font-weight: 500;
}
:root {
  --color-primary: #009b63;
  --color-primary-light: #87c796;
  --color-primary-bg: #edf5ec;
  --color-primary-gradient: linear-gradient(90deg, #009b63, #87c796);
  --color-text: #2f2f2f;
  --color-text-light: #666;
  --color-text-muted: #888;
  --color-white: #fff;
  --color-bg: #fff;
  --color-bg-light: #f8f8f8;
  --color-bg-phone: #f5f5f5;
  --color-bg-worry: #efefef;
  --color-border: #c0c0c0;
  --color-border-input: #2f2f2f;
  --color-placeholder: #cdcdcd;
  --color-footer-bg: #2f2f2f;
  --color-accent: #ffa251;
  --color-accent-yellow: #fef8af;
  --color-error: #e74c3c;
  --font-sans: 'Yu Gothic', 'YuGothic', 'Hiragino Sans', sans-serif;
  --font-english: 'Roboto', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 0 0.5px rgba(47, 47, 47, 0.3), 2px 2px 2px rgba(47, 47, 47, 0.2);
  --shadow-md: 0 2px 1px rgba(47, 47, 47, 0.2);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-comparison: 1px 1px 5px rgba(47, 47, 47, 0.2);
  --color-success: #2ecc71;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 2.5rem;
  --space-8: 3rem;
  --space-10: 5rem;
  --space-12: 7.5rem;
  --space-section: clamp(3.75rem, 7.5vw, 7.5rem);
  --radius-sm: 1px;
  --radius-md: 8px;
  --radius-lg: 20px;
  --radius-xl: 40px;
  --radius-pill: 50px;
  --radius-full: 9999px;
  --z-header: 1000;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --container-max: 75rem;
  --side-padding: clamp(1rem, 5vw, 7.5rem);
  --leading-tight: 1.3;
  --leading-normal: 1.8;
  --tracking-normal: 0.1em;
  --tracking-wide: 0.2em;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* --- Scroll Animations --- */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.6s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.75s; }

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--color-white);
  padding-top: 72px;
}

/* --- Focus Visible (DESIGN-GUIDELINE 7-13) --- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Reduced Motion (DESIGN-GUIDELINE Section 10) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

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

/* hero img override moved to Hero section */

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

ul {
  list-style: none;
}

body.is-menu-open {
  overflow: hidden;
}

/* --- Focus States for Interactive Elements --- */
.header-nav a:focus-visible {
  color: var(--color-primary);
}

.reasons-card:focus-visible img {
  transform: scale(1.08);
}

.footer-instagram:focus-visible {
  opacity: 0.7;
}

.contact-info-item .bordered:focus-visible {
  background: var(--color-white);
  color: var(--color-text);
}

.footer :focus-visible {
  outline-color: var(--color-white);
}

.contact :focus-visible,
.contact-cta :focus-visible {
  outline-color: var(--color-white);
}

/* --- Screen Reader Only --- */
.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;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* --- Common --- */

.inner {
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 10%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.section-title {
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: bold;
  letter-spacing: clamp(1.6px, 0.17vw, 2.4px);
  color: var(--color-text);
  margin-top: 2px;
}

.gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--color-primary-gradient);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.gradient-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: inset 2px -2px 4px #2b785c, inset -2px 2px 7px rgba(251, 255, 241, 0.4);
  pointer-events: none;
}

.gradient-btn:hover,
.gradient-btn:focus-visible {
  transform: translateY(4px);
  transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gradient-btn:active {
  transform: translateY(6px);
  box-shadow: none;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 43px;
}

.header-logo .logo-mark {
  height: 31px;
  width: auto;
}

.header-logo .logo-text {
  height: 24px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--color-primary);
}

.header-nav .btn-contact {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 1.6px;
  padding: 8px 32px;
  border-radius: 4px;
}


.header-nav .btn-contact:hover,
.header-nav .btn-contact:focus-visible {
  color: var(--color-white);
}
/* ============================================
   Hero
   ============================================ */
.hero-section {
  position: relative;
}

.hero-outer {
  margin-top: 0;
  overflow: hidden;
  aspect-ratio: 1440 / 750;
  min-height: 700px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* --- 縦書きカード コンテナ（.hero-sectionの子） --- */
.hero-text-vertical {
  position: absolute;
  top: 7%;
  right: 8%;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

/* --- 縦書きカード 共通 --- */
.vertical-card {
  writing-mode: vertical-rl;
  white-space: nowrap;
  background: var(--color-white);
  padding: 0.3em 0.4em;
  font-size: clamp(1.5rem, 3.3vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  line-height: 1;
  color: var(--color-text);
}

/* --- 左カード 下げ / 右カード 下余白 --- */
.vertical-card--left {
  margin-top: 2.5rem;
}

.vertical-card--right {
  margin-bottom: 2.5rem;
}

/* --- 「彩」の色 --- */
.vertical-card em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-subtitle {
  position: absolute;
  bottom: calc((100vw - 900px) * 0.1 - 0px);
  left: 7%;
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: clamp(1.6px, 0.2vw, 3.2px);
  line-height: 1.7;
  z-index: 2;
}

/* ============================================
   Philosophy (企業理念)
   ============================================ */
.philosophy {
  position: relative;
  padding: 120px 120px 400px;
  overflow: hidden;
}

.philosophy-wave {
  position: absolute;
  left: -50vw;
  top: 15%;
  width: 195vw;
  height: 70%;
  z-index: 0;
}

.philosophy-wave img {
  width: 100%;
  height: 100%;
}

.philosophy .inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0;
}

.philosophy-label {
  display: inline-block;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: bold;
  letter-spacing: clamp(2px, 0.3vw, 4px);
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 40px;
}

.philosophy-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: bold;
  letter-spacing: clamp(4px, 0.6vw, 8px);
  line-height: 1.6;
  color: var(--color-text);
  flex-shrink: 0;
}

.philosophy-list {
  width: 700px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.philosophy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.philosophy-item-line {
  width: 60px;
  height: 2px;
  background: var(--color-text);
  margin-top: 18px;
  flex-shrink: 0;
}

.philosophy-item p {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: clamp(1.6px, 0.14vw, 2px);
  color: var(--color-text);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

/* ============================================
   Three Reasons (選ばれる3つの理由)
   ============================================ */
.reasons {
  padding: 0px 0 40px;
}

.reasons-header {
  padding: 0 120px;
}

.reasons-cards {
  display: flex;
  margin-top: 60px;
}

.reasons-card {
  flex: 1;
  position: relative;
  height: 339px;
  overflow: hidden;
}

.reasons-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*   transition: transform 0.5s ease; */
}

/* .reasons-card:hover img {
  transform: scale(1.08);
}
 */
.reasons-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(47, 47, 47, 0) 0%, rgba(47, 47, 47, 0.8) 70%);
}

.reasons-card-title {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 3.2px;
}

/* ============================================
   House Reform
   ============================================ */
.reform {
  padding: 60px 120px 0;
}

.reform-intro {
  display: flex;
  gap: 110px;
  align-items: flex-start;
  margin-top: 60px;
}

.reform-text {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: clamp(1.6px, 0.14vw, 2px);
  color: var(--color-text);
  max-width: 650px;
}

.reform-text p + p {
  margin-top: 1.8em;
}

.reform-illustration {
  flex-shrink: 0;
  width: 484px;
  height: 396px;
}

.reform-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scaleX(-1);
}

/* --- Reform Cases --- */
.reform-cases {
  margin-top: 80px;
}

.reform-cases-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.reform-cases-label .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.reform-cases-label h3 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2.4px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 40px;
}

.case-card {
  position: relative;
}

.case-card-image {
  position: relative;
  width: calc(100% - 40px);
  margin-left: 40px;
  height: 380px;
  border-radius: 0;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*   transition: transform 0.5s ease; */
}

/* .case-card:hover .case-card-image img {
  transform: scale(1.05);
} */

.case-card-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 184px;
  height: 131px;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid #fff;
}

.case-card-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-before-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 69px;
  height: 20px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 1.4px;
  border-radius: 0;
}

.case-card-info {
  position: relative;
  margin-top: -60px;
  margin-right: 120px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 32px 40px;
  z-index: 1;
}

.case-card-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.case-card-tag-bar {
  width: 4px;
  height: 22px;
  background: var(--color-primary);
}

.case-card-tag span {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 2px;
}

.case-card-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 12px;
}

.case-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-card-location img {
  width: 16px;
  height: 16px;
}

.case-card-location span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-primary-bg);
  padding: 120px;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  margin-top: 120px;
}

.faq-left {
  flex-shrink: 0;
  width: 260px;
}

.faq-illustration {
  margin-top: 40px;
  width: 260px;
  height: 178px;
}

.faq-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px 40px;
  box-shadow: 0 0 0.5px rgba(47, 47, 47, 0.3), 2px 2px 2px rgba(47, 47, 47, 0.2);
}

.faq-question {
  display: flex;
  gap: 8px;
  align-items: baseline;
  cursor: pointer;
}


.faq-question:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-question .q-label {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: 2.4px;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

.faq-question p {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.8;
}

.faq-question .chevron {
  width: 16px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s;
  transform: rotate(180deg);
  align-self: center;
}
.faq-item.open:hover{
	opacity:1;
}
.faq-item:hover{
	opacity: 0.6;
}
.faq-item.open .faq-question .chevron {
  transform: rotate(0deg);
}

.faq-answer {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 900px;
  opacity: 1;
  margin-top: 8px;
}

.faq-answer .a-label {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--color-primary);
  paint-order: stroke fill;
  letter-spacing: 2.4px;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

.faq-answer-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.faq-answer-text p + p {
  margin-top: 0;
}

/* ============================================
   Contact (CTA)
   ============================================ */
.contact {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: -1px;
}

.contact-bg {
  position: absolute;
  inset: -10px;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.4);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding-top: 77px;
}

.contact-heading {
  text-align: center;
  color: var(--color-white);
}

.contact-heading h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 6.4px;
  line-height: 1.2;
}

.contact-heading p {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 0;
}

.contact-form-btn {
  font-size: 1.25rem;
  letter-spacing: 2px;
  padding: 24px;
  gap: 64px;
  margin-bottom: 10px;
}

.contact-form-btn img {
  width: 22px;
  height: 22px;
}

.contact-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.contact-info-item {
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
}

.contact-info-item .label {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
}

.contact-info-item .bordered {
  width: 320px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-white);
  transition: background 0.3s, color 0.3s;
}

.contact-info-item .bordered img + span {
  font-size: 1rem;
  font-weight: 500;
}

.contact-info-item .bordered:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.contact-info-item .bordered img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s;
}

.contact-info-item .bordered:hover img {
  filter: brightness(0);
}

.contact-info-item .sub {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  white-space: nowrap;
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0 16px;
}

.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-company-logo {
  height: 20px;
  width: 111px;
}

.footer-company p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 1.4px;
  line-height: normal;
}

.footer-instagram {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.footer-instagram:hover {
  opacity: 0.7;
}

.footer-instagram img {
  width: 100%;
  height: 100%;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.footer-bottom a {
  color: var(--color-white);
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

/* ============================================
   About Page — Current Nav
   ============================================ */
.header-nav a.is-current {
  position: relative;
}

.header-nav a.is-current::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
/*   background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); */
}

/* ============================================
   About Page — Hero (Group 333)
   ============================================ */
.about-hero {
  position: relative;
  width: calc(100% - 40px);
  max-width: none;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

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

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.5);
  mix-blend-mode: multiply;
}

.about-hero-title {
  position: absolute;
  left: 122px;
  top: 40%;
  transform: translateY(50%);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4.8px;
  color: var(--color-white);
  z-index: 1;
}

/* ============================================
   About Page — Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 16px 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
  letter-spacing: 1px;
  padding-left: 142px;
  white-space: nowrap;
}

.breadcrumb a {
  color: var(--color-text);
  font-weight: 500;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-separator {
  color: var(--color-text);
}

.breadcrumb-arrow {
  width: 8px;
  height: 6px;
}

.sell-breadcrumb {
  background: var(--color-white);
}

.sell-breadcrumb .inner {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--color-text);
  letter-spacing: 1.4px;
  padding-left: 142px;
	
}

.sell-breadcrumb a {
  color: var(--color-text);
}

/* ============================================
   About Page — Section Title
   ============================================ */
.about-section-title {
  padding: 120px 0 40px;
}

.about-section-title-inner {
  padding-left: 120px;
}

.about-section-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-section-title-line {
  width: 64px;
  height: 2px;
  background: var(--color-text);
  flex-shrink: 0;
}

.about-section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  line-height: 1.5;
  color: var(--color-text);
}

/* ============================================
   About Page — 3 Reasons Cards
   ============================================ */
.about-reasons-cards {
  display: flex;
  margin-top: 0;
}

.about-reasons-card {
  flex: 1;
  position: relative;
  height: 339px;
  overflow: hidden;
}

.about-reasons-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*   transition: transform 0.5s ease; */
}

/* .about-reasons-card:hover img {
  transform: scale(1.08);
} */

.about-reasons-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(47, 47, 47, 0) 0%, rgba(47, 47, 47, 0.8) 70%);
}

.about-reasons-card-title {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 3.2px;
}

/* ============================================
   About Page — Comparison Section
   ============================================ */
.about-comparison {
  background: var(--color-primary-bg);
  padding: 40px 20px 120px;
}

.about-comparison-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(47, 47, 47, 0.2);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comparison-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-label {
  display: inline-block;
  padding: 4px 16px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-white);
  width: fit-content;
}

.comparison-label--green {
  background: var(--color-primary);
}

.comparison-label--dark {
  background: var(--color-text);
}

.comparison-desc {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: var(--color-text);
}

/* ---- Irodori flow ---- */
.comparison-flow-irodori {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.comparison-irodori-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--color-primary-bg);
  border-radius: 10px;
  width: 100%;
}

.comparison-irodori-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 200px;
}

.comparison-irodori-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-align: center;
}

.comparison-irodori-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.comparison-irodori-arrow {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}

.comparison-irodori-bracket {
  width: 940px;
  height: 16px;
}

.comparison-irodori-company {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
  text-align: center;
}

/* ---- Industry flow ---- */
.comparison-flow-industry {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.comparison-industry-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.comparison-industry-box {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.comparison-industry-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 2px;
  text-align: center;
}

.comparison-industry-icon {
  width: 100px;
  height: 100px;
}

.comparison-industry-bracket {
  width: 180px;
  height: 16px;
}

.comparison-industry-company {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
  text-align: center;
}

.comparison-industry-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 92px;
  width: 24px;
  flex-shrink: 0;
}

.comparison-industry-arrows img {
  width: 24px;
  height: 11px;
  transform: none;
}
.comparison-industry-arrows img:first-child {
  transform: scaleX(-1);
}

/* ============================================
   About Page — Merit Section
   ============================================ */
.about-merit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.about-merit-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.about-merit-title p {
  font-size: clamp(1.125rem, 3vw, 2rem);
  font-weight: bold;
  letter-spacing: clamp(1.8px, 0.3vw, 3.2px);
  color: var(--color-primary);
  text-align: center;
}

.about-merit-bracket {
  width: clamp(1rem, 2vw, 22px);
  height: clamp(1.25rem, 2.5vw, 28px);
  margin: 0 8px;
}
.about-merit-bracket:last-of-type {
  transform: scaleX(-1);
}

.about-merit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.about-merit-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  margin-top: -20px;
}

.about-merit-point {
  position: relative;
  width: clamp(80px, 10vw, 120px);
  height: clamp(80px, 10vw, 120px);
  margin-bottom: -50px;
}

.about-merit-badge {
  width: clamp(80px, 10vw, 120px);
  height: clamp(80px, 10vw, 120px);
}

/* "仲介手数料・諸費用 0円" */
.about-merit-zero {
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 3.2px;
  line-height: 1.8;
}

.about-merit-zero-label {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.about-merit-zero strong {
  font-size: clamp(3rem, 5.5vw, 4rem);
  letter-spacing: 3.2px;
  position: relative;
}

.about-merit-zero-unit {
  font-size: clamp(3rem, 5.5vw, 4rem);
}

.about-merit-zero strong::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: clamp(1rem, 2vw, 1.5rem);
  background: #ffa251;
  z-index: -1;
}

/* "リノベーション費用・物件価格 最大20％削減！" */
.about-merit-reduction {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-merit-reduction-label {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 2.4px;
  color: var(--color-text);
}

.about-merit-reduction-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-merit-vertical {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-text);
  line-height: 1.1;
}

.about-merit-reduction-num {
  font-size: clamp(3rem, 5.5vw, 4rem);
  font-weight: bold;
  letter-spacing: clamp(4.8px, 0.5vw, 6.4px);
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.about-merit-reduction-num::after {
  content: "";
  position: absolute;
  bottom: clamp(1rem, 1.8vw, 1.25rem);
  left: 0;
  width: 100%;
  height: clamp(1rem, 2vw, 1.5rem);
  background: #ffa251;
  z-index: -1;
}

/* Barrel Charts — CSS 3D cylinders */
.about-merit-right {
  display: flex;
  align-items: flex-end;
  flex-shrink: 1;
  min-width: 0;
}

.about-merit-chart-img {
  width: 100%;
  height: auto;
}

.barrel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Barrel chart — SVG layer stacking */
.barrel-chart {
  position: relative;
  width: clamp(180px, 27vw, 320px);
  height: clamp(236px, 35.5vw, 420px);
}

.barrel-chart--short {
  height: clamp(236px, 35.5vw, 420px);
}

.barrel-layer {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
  max-width: none;
}

.barrel-label {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(0.75rem, 1.35vw, 1rem);
  font-weight: bold;
  letter-spacing: clamp(0.9px, 0.13vw, 1.6px);
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
  z-index: 20;
  pointer-events: none;
}

.barrel-total {
  font-size: clamp(0.5625rem, 1.35vw, 1rem);
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
  text-align: center;
  margin-top: 12px;
}

.barrel-total strong {
  font-size: clamp(0.875rem, 2vw, 1.5rem);
  letter-spacing: 2.4px;
}

/* Connecting dashed lines between barrels */
.barrel-between {
  position: relative;
  width: clamp(45px, 6.7vw, 80px);
  flex-shrink: 0;
  align-self: flex-end;
  height: clamp(236px, 35.5vw, 420px);
  margin-bottom: 30px;
}

.barrel-line-diagonal {
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  height: 38.6%;
}

.barrel-line-horizontal {
  position: absolute;
  bottom: 11.7%;
  left: 0;
  width: 100%;
  height: 1px;
}

/* Difference label */
.barrel-diff {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #b0b0b0;
  z-index: 10;
}

.barrel-diff-label {
  font-size: clamp(0.5625rem, 1.35vw, 1rem);
  font-weight: bold;
  letter-spacing: 1.6px;
}

.barrel-diff-value {
  font-size: clamp(1.125rem, 2.8vw, 2rem);
  font-weight: bold;
  letter-spacing: 4px;
}

.barrel-diff-value strong {
  font-size: clamp(1.375rem, 3.5vw, 2.5rem);
}

.about-merit-example {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto 0;
}

.about-merit-example-label {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1.6px;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.about-merit-example-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1.6px;
  color: var(--color-text);
  flex: 1;
}

/* ============================================
   About Page — Quality & Flow Card
   ============================================ */
.about-quality-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 40px;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-quality-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  width: 100%;
}

.about-quality-title-line {
  width: 1000px;
  height: 1px;
  background: var(--color-primary);
}

.about-quality-title p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.6;
}

.about-quality-title strong {
  font-size: 2rem;
}

.about-quality-step {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.about-quality-text {
  flex: 1;
  max-width: 580px;
}

.about-quality-text h3 {
  margin-bottom: 8px;
}

.about-quality-text h3 span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2.4px;
  color: var(--color-primary);
}

.about-quality-text h3 em {
  font-style: normal;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2.4px;
  color: var(--color-primary);
  text-decoration: underline wavy;
  text-decoration-thickness: 7%;
  text-underline-offset: 4px;
}

.about-quality-text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: var(--color-text);
}

.about-quality-text-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.about-quality-photo {
  width: 380px;
  height: 235px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(8px 8px 0 #E2EFD1);
}

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

.about-quality-arrows {
  width: 58px;
  height: 64px;
}

.about-quality-arrows img {
  width: 100%;
  height: 100%;
}

.about-quality-badge {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  margin-left: 20px;
}

.about-quality-badge-circle {
  width: 120px;
  height: 120px;
}

.about-quality-badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.about-quality-badge-text span:first-child {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 1.4px;
  color: var(--color-text);
}

.about-quality-badge-text span:nth-child(2) {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  color: var(--color-text);
}

.about-quality-badge-text .about-quality-badge-small {
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: center;
}

.about-quality-badge-circle--rotated {
  transform: rotate(0deg);
}

.about-quality-badge-arrow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) rotate(90deg);
  width: 8px;
  height: 14px;
}

/* ============================================
   About Page — Greeting
   ============================================ */
.about-greeting {
  padding: 120px 120px;
}

.about-greeting-layout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-greeting-main {
  flex: 1;
  max-width: 800px;
}

.about-greeting-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-greeting-label {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-greeting-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.8;
  color: var(--color-text);
}

.about-greeting-body p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: var(--color-text);
}

.about-greeting-body p + p {
  margin-top: 1.6em;
}

.about-greeting-body .about-greeting-closing {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-top: 20px;
}

.about-greeting-illustration {
  width: 320px;
  flex-shrink: 0;
}

.about-greeting-illustration img {
  width: 100%;
  height: auto;
}

/* ============================================
   About Page — 会社概要
   ============================================ */
.about-company {
  background: var(--color-primary-bg);
  padding: 120px;
}

.about-company-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-company-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.about-company-heading-line {
  width: 64px;
  height: 2px;
  background: var(--color-text);
}

.about-company-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-text);
}

.about-company-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 840px;
}

.about-company-line {
  width: 100%;
  height: 1px;
  background: #c0c0c0;
}

.about-company-row {
  display: flex;
  align-items: baseline;
}

.about-company-label {
  width: 175px;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-primary);
  line-height: 1.5;
}

.about-company-value {
  flex: 1;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================
   About Page — アクセス
   ============================================ */
.about-access {
  padding: 120px;
}

.about-access-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-access-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
}

.about-access-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-access-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-access-heading-line {
  width: 64px;
  height: 2px;
  background: var(--color-text);
}

.about-access-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-text);
}

.about-access-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-access-company {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text);
}

.about-access-address {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.5;
  color: var(--color-text);
}

.about-access-station {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-access-train-icon {
  width: 40px;
  height: 40px;
}

.about-access-station p {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
}

.about-access-photo {
  width: 80%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 640 / 396;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 1;
}

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

.about-access-map {
  max-width: 1200px;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
}

.about-access-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Sell Page — Hero
   ============================================ */
.sell-hero {
  position: relative;
  width: calc(100% - 40px);
  max-width: none;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

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

.sell-hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 90%;
}

.sell-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.5);
  mix-blend-mode: multiply;
}

.sell-hero-title {
  position: absolute;
  left: 122px;
  top: 40%;
  transform: translateY(50%);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4.8px;
  color: var(--color-white);
  z-index: 1;
}

/* ============================================
   Sell Page — Section Heading (shared)
   ============================================ */
.sell-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sell-section-heading-line {
  width: 64px;
  height: 2px;
  background: var(--color-text);
  flex-shrink: 0;
}

.sell-section-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  color: var(--color-text);
}

/* ============================================
   Sell Page — 売却の悩み
   ============================================ */
.sell-worries {
  background: var(--color-bg-worry);
  padding: 120px 0;
}

.sell-worries-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sell-worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 24px;
  justify-content: center;
}

.sell-worry-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  min-height: 160px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}

.sell-worry-text {
  font-size: clamp(0.9375rem, 1.6vw, 1.25rem);
  font-weight: bold;
  letter-spacing: clamp(1.4px, 0.16vw, 2px);
  color: var(--color-primary);
  line-height: 1.6;
}

.sell-worry-text p {
  line-height: 1.6;
}

.sell-worry-icon {
  width: 160px;
  height: 140px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sell-worry-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sell-worry-icon .worry-img-1 { width: 100%; height: 100%; }
.sell-worry-icon .worry-img-2 { width: 180px; height: auto; }
.sell-worry-icon .worry-img-3 { width: 100%; height: 100%; }
.sell-worry-icon .worry-img-4 { width: 120px; height: 105px; }
.sell-worry-icon .worry-img-5 { width: 180px; height: auto; }
.sell-worry-icon .worry-img-6 { width: 100%; height: 100%; }

/* ============================================
   Sell Page — その悩み…解決
   ============================================ */
.sell-solution {
  padding: 80px 120px;
}

.sell-solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sell-solution-heading {
  text-align: center;
}

.sell-solution-brackets {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
}

.sell-bracket {
  width: clamp(30px, 6vw, 80px);
  height: clamp(50px, 7.5vw, 100px);
}

.sell-bracket--right {
  transform: scaleX(-1);
}

.sell-solution-text-block {
  text-align: center;
  position: relative;
}

.sell-solution-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: bold;
  letter-spacing: clamp(1.8px, 0.2vw, 2.4px);
  color: var(--color-primary);
  margin-bottom: 12px;
}

.sell-solution-main {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: bold;
  letter-spacing: clamp(2px, 0.2vw, 2.4px);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.sell-solution-main strong {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 2.4px;
}

.sell-solution-highlight {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(380px, 45vw, 590px);
  height: 16px;
  background: #fef8af;
  z-index: 0;
}

/* ============================================
   Sell Page — メリットボックス
   ============================================ */
.sell-merit-box {
  width: 1200px;
  position: relative;
  padding-top: 40px;
}

/* タイトルバー：コンテンツ上部に重ねて中央配置 */
.sell-merit-title-bar {
  width: fit-content;
  max-width: 90%;
  height: auto;
  padding: 5px 60px;
  white-space: nowrap;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-sizing: border-box;
}

.sell-merit-title-border,
.sell-merit-title-border img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sell-merit-title-border--sp {
  display: none;
}

.sell-merit-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 4.8px;
  color: var(--color-text);
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.sell-merit-strong {
  font-size: 2rem;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.sell-merit-strong::before {
  content: '';
  position: absolute;
  width: 148px;
  height: 7px;
  top: -8px;
  left: 40%;
  transform: translateX(calc(-50% - 1px));
  z-index: 1;
  background-image: radial-gradient(circle closest-side, var(--color-primary) 90%, transparent 100%);
  background-size: 25% 100%;
}

/* コンテンツエリア（枠線+グリッド線+メリット項目） */
.sell-merit-content {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.sell-merit-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sell-merit-wave--sp { display: none; }

/* グリッド線（CSS） */
.sell-merit-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    repeating-linear-gradient(to right, var(--color-bg-worry) 0px, var(--color-bg-worry) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-bg-worry) 0px, var(--color-bg-worry) 1px, transparent 1px, transparent 20px);
}


/* メリット項目 */
.sell-merit-items {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 35px;
  padding: 80px 12% 40px 12%;
}

.sell-merit-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sell-merit-circle {
  width: clamp(100px, 13vw, 160px);
  height: clamp(100px, 13vw, 160px);
  border-radius: 50%;
  background: linear-gradient(141deg, var(--color-primary) 15%, rgba(135, 199, 150, 0.8) 87%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sell-merit-circle p {
  font-size: clamp(0.875rem, 1.8vw, 1.25rem);
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.4;
}

.sell-merit-desc {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.875rem, 1.8vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text);
  line-height: 1.8;
}

.sell-merit-desc .green {
  color: var(--color-primary);
}

/* ============================================
   Sell Page — 売却の5ステップ
   ============================================ */
.sell-steps {
  background: var(--color-primary-bg);
  padding: 120px 0;
}

.sell-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sell-steps-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


.sell-steps-row {
  display: flex;
  align-items: stretch;
}

.sell-step-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: clamp(1.25rem, 3.3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.3vw, 2.5rem);
  min-height: clamp(200px, 30vw, 450px);
  flex: 1;
  flex-shrink: 0;
  max-width: 360px;
}

.sell-step-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sell-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sell-step-number {
  width: clamp(1.75rem, 3vw, 36px);
  height: clamp(1.75rem, 3vw, 36px);
  border-radius: 20px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  font-weight: 500;
  color: var(--color-white);
  flex-shrink: 0;
}

.sell-step-info h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: bold;
  letter-spacing: clamp(1.6px, 0.2vw, 2.4px);
  color: var(--color-primary);
}

.sell-step-line {
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  margin-top: -10px;
}

.sell-step-desc {
  font-size: clamp(0.75rem, 1.3vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: clamp(1.6px, 0.27vw, 3.1px);
  color: var(--color-text);
  line-height: 1.6;
  width: 100%;
}

.sell-step-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  margin: auto auto 0;
}

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

.sell-step-arrow {
  width: clamp(10px, 1.3vw, 1rem);
  height: clamp(1rem, 2vw, 1.5rem);
  flex-shrink: 0;
  align-self: center;
  margin: 0 clamp(3px, 1.8vw, 22px);
}

.sell-step-arrow-between {
  display: none;
}

@media (max-width: 1024px) {
  .sell-step-arrow-between {
    display: block;
    margin: -4px auto;
  }
  .sell-steps-content {
    gap: 20px;
  }
}

.sell-step-arrow img {
  width: 100%;
  height: 100%;
}

/* ============================================
   Contact Page — Hero
   ============================================ */
.contact-hero {
  position: relative;
  width: calc(100% - 40px);
  max-width: none;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

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

.contact-hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 80%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.5);
  mix-blend-mode: multiply;
}

.contact-hero-title {
  position: absolute;
  left: 122px;
  top: 40%;
  transform: translateY(50%);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4.8px;
  color: var(--color-white);
  z-index: 1;
}

/* ============================================
   Contact Page — Main Content
   ============================================ */
.contact-page {
  padding: 64px 0 80px;
}

.contact-page-inner {
  margin: 0 auto;
  padding: 0 clamp(27px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Introduction Text */
.contact-page-intro {
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Phone Contact Box */
.contact-page-phone-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.contact-page-inner .wpcf7,
.contact-page-phone-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-page-phone {
  width: 100%;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 24px clamp(1.25rem, 1.5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 2.5vw, 4rem);
}

.contact-page-phone-label {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text);
  line-height: 1.8;
}

.contact-page-phone-number {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3.2px;
color: #009b63;
}

.contact-page-phone-hours {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
  line-height: 1.8;
}

.contact-page-phone-hours .sp-br {
  display: none;
}

.contact-page-phone-note {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--color-text);
  text-align: right;
  width: 100%;
}

/* Form Container */
.contact-form-container {
  width: 100%;
  background: var(--color-primary-bg);
  border-radius: 20px;
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form-label-row p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form-label-row br {
  display: none;
}

/* CF7 label内のレイアウト制御 */
.contact-form-container label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-container .wpcf7-form-control-wrap {
  width: 100%;
}

.contact-form-label {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
}

.contact-form-required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 22px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1;
}

.contact-form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-text);
/*   line-height: 1.7; */
  outline: none;
  transition: border-color 0.3s;
}

.contact-form-input::placeholder {
  color: #cdcdcd;
}

.contact-form-input:focus {
  border-color: var(--color-primary);
}

.contact-form-input.is-error {
  border-color: #e74c3c;
}

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

.contact-form-error {
  display: none;
  font-size: 0.875rem;
  font-weight: bold;
  color: #e74c3c;
  letter-spacing: 1px;
}

/* プライバシーポリシー */
.contact-form-privacy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-form-divider {
  width: 100%;
  height: 1px;
  background: #cdcdcd;
}

.contact-form-privacy-box {
  width: 100%;
  max-height: 180px;
  overflow-y: auto;
  background: var(--color-white);
  outline: 1px solid var(--color-text);
  padding: 16px 25px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 1.4px;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-form-privacy-box p {
  margin-bottom: 0;
}

.contact-form-privacy-box p + p {
  margin-top: 0.5em;
}

.contact-form-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-form-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form-agree input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}

.contact-form-agree span {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
}

/* CF7 プライバシーチェックボックス */
.contact-form-privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form-privacy-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
}

.contact-form-privacy-check .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form-privacy-check .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}

.contact-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 16px 24px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 40px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form-submit:hover,
.contact-form-submit:focus-visible {
  opacity: 0.6;
}

/* Success Message */
.contact-form-success {
  display: none;
  width: 100%;
  background: var(--color-primary-bg);
  border-radius: 20px;
  padding: 80px;
}

.contact-form-success-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-form-success-inner h2 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2.4px;
  color: var(--color-primary);
}

.contact-form-success-inner p {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: var(--color-text);
}

.contact-form-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--color-primary);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  transition: opacity 0.3s;
}

.contact-form-back-btn:hover,
.contact-form-back-btn:focus-visible {
  opacity: 0.85;
}

/* ============================================
   404 Page
   ============================================ */
.page-404 {
  background: var(--color-primary-bg);
}

.error-page {
  min-height: calc(100vh - 72px - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 120px;
}

.error-page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.error-page-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.error-page-number {
  font-size: 18.75rem;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0;
}

.error-page-illust {
  width: 90px;
  height: 180px;
  object-fit: contain;
}

.error-page-illust--left {
  margin-right: 120px;
  margin-bottom: 30px;
}

.error-page-illust--right {
  margin-left: 120px;
  margin-bottom: 30px;
}

.error-page-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: var(--color-text);
}

.error-page-heading {
  font-size: 1.25rem;
}

.error-page-desc {
  font-size: 1rem;
}

.error-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  padding: 12px 24px;
  background: var(--color-primary);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.error-page-btn:hover,
.error-page-btn:focus-visible {
  opacity: 0.85;
}

/* ============================================
   Responsive — Fluid + Breakpoints
   ============================================ */

/* PC: hide hamburger & SP nav */
.header-menu-btn { display: none; }
.sp-nav { display: none; }
.sp-only { display: none; }
.sp-only-800 { display: none; }

/* =============================================================
   BREAKPOINT 1: ≤1200px — デスクトップ→タブレット移行
   ============================================================= */
@media (max-width: 1200px) {


  .sell-worries {
    padding: 120px 120px;
  }

  .sell-steps {
    padding: 120px 120px;
  }


  .sell-step-card {
    width: 100%;
    max-width: 29%;
  }
  /* Philosophy */
  .philosophy { padding: 100px 120px 300px; }

  /* Sell merit */
  .sell-merit-title-bar {
    width: fit-content;
  }
  .sell-merit-title span {
    display: block;
  }
  .sell-merit-items {
    padding-top: 120px;
  }

  /* Contact phone — hours wraps */
  .contact-page-phone-hours {
    width: 100%;
    text-align: center;
  }

  /* Fixed 1200px elements → fluid */
  .about-merit-content {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .sell-merit-box {
    width: 100%;
  }
  .sell-merit-content {
    width: 100%;
  }
  .about-access-map {
    width: 100%;
  }
  .about-quality-title-line {
    width: 100%;
  }

  /* About comparison card */
  .about-comparison-card {
    padding: 60px 40px;
  }

  /* About quality card */
  .about-quality-card {
    padding: 60px 40px;
    margin: 20px 40px;
  }
  .about-quality-step {
    gap: 24px;
  }
  .about-quality-photo {
    width: 360px;
    height: 280px;
  }

  /* About greeting */
  .about-greeting {
    padding: 100px 40px;
  }
  .about-greeting-layout {
    gap: 40px;
  }
  .about-greeting-illustration {
    width: 240px;
  }

  /* About merit (barrel charts) */
  .about-merit-right {
    max-width: 50%;
  }

  /* About company info */
  .about-company {
    padding: 100px 40px;
  }

  .about-access {
    padding: 100px 40px;
  }

  /* Sell worries grid */
  .sell-worries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sell-worry-card {
    min-height: 140px;
    height: auto;
    padding: 16px 30px;
  }

  /* Contact form */
  .contact-form-container {
    padding: 56px 40px;
  }

  /* Header nav spacing */
  .header-nav {
    gap: 20px;
  }
  .header-nav a {
    font-size: 0.875rem;
  }

  /* Reform gap */
  .reform-intro {
    gap: 60px;
  }

  /* 下層ヒーロー */
  .about-hero,
  .sell-hero,
  .contact-hero {
    height: 350px;
  }
  .about-hero-title,
  .sell-hero-title,
  .contact-hero-title {
    font-size: 2.5rem;
    left: 80px;
    letter-spacing: 6px;
  }

  .sell-breadcrumb .inner {
    padding-left: 100px;
  }
  .breadcrumb-inner {
    padding-left: 100px;
  }
}

/* =============================================================
   BREAKPOINT 2: ≤1024px — ナビ切替・ヒーロー・タブレット化
   ============================================================= */
@media (max-width: 1024px) {

  /* Philosophy */
  .philosophy { padding: 80px 40px 200px; }

  /* 下層ヒーロー */
  .about-hero,
  .sell-hero,
  .contact-hero {
    height: 280px;
  }
  .about-hero-title,
  .sell-hero-title,
  .contact-hero-title {
    font-size: 2rem;
    left: 40px;
    letter-spacing: 4px;
  }



  .sell-breadcrumb .inner {
    padding-left: 60px;
  }

  .breadcrumb-inner {
    padding-left: 60px;
  }

  .about-section-title-inner {
    padding-left: 40px;
  }
  .hero-outer {
    aspect-ratio: unset;
    height: auto;
    margin-top: -64px;
    padding-bottom: 40px;
    max-height: none;
    min-height: auto;
  }
  .hero {
    width: 100%;
    left: auto;
    transform: none;
  }
  .hero-text-vertical {
    top: 10%;
    right: 10%;
  }
  .vertical-card {
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
  }
  .hero-image-wrapper {
    position: relative;
    height: auto;
  }
  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-subtitle {
    bottom: 7%;
    left: 5%;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  /* その悩み…解決 */
  .sell-solution {
    padding: 60px 40px;
  }

  /* padding 120px → 40px */
  .reasons-header {
    padding: 0 40px;
  }

  /* Reform gap */
  .reform-intro {
    gap: 40px;
  }

  /* Header → hamburger */

  body {
    padding-top: 64px;
  }

  /* Header */
  .header {
    padding: 0 20px;
    height: 72px;
    background: transparent;
    box-shadow: none;
    position: fixed;
    z-index: 1000;
    transition: background 0.3s;
  }
  .header.is-scrolled {
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .header.nav-open {
    background: transparent;
  }
  .header-logo .logo-text { height: 20px; }
  .header-logo .logo-mark { height: 26px; }
  .header-nav { display: none; }

  .header-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    background: var(--color-white);
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s;
  }
  .header-menu-btn:hover,
  .header-menu-btn:focus-visible {
    opacity: 0.7;
  }
  .header-menu-btn .menu-hamb,
  .header-menu-btn .menu-cross {
    position: absolute;
  }

  /* ハンバーガー3本線 */
  .header-menu-btn .menu-hamb line {
    transition: transform 0.8s cubic-bezier(.165,.84,.44,1);
  }
  .header-menu-btn .menu-hamb line:nth-child(1) { transition-delay: 0.4s; }
  .header-menu-btn .menu-hamb line:nth-child(2) { transition-delay: 0.5s; }
  .header-menu-btn .menu-hamb line:nth-child(3) { transition-delay: 0.6s; }

  .header-menu-btn.is-open .menu-hamb line {
    transform: translateX(50px);
  }
  .header-menu-btn.is-open .menu-hamb line:nth-child(1) { transition-delay: 0s; }
  .header-menu-btn.is-open .menu-hamb line:nth-child(2) { transition-delay: 0.1s; }
  .header-menu-btn.is-open .menu-hamb line:nth-child(3) { transition-delay: 0.2s; }

  /* Xクロス線 */
  .header-menu-btn .menu-cross line:first-child {
    transform: translate(20px, 1.25rem);
  }
  .header-menu-btn .menu-cross line:last-child {
    transform: translate(20px, -20px);
  }
  .header-menu-btn .menu-cross line {
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(.165,.84,.44,1);
    transition-delay: 0s;
  }
  .header-menu-btn.is-open .menu-cross line {
    transform: translate(0, 0);
    transition-delay: 0.5s;
  }

  .sp-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--color-primary-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 102px;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.165,.84,.44,1), transform 0.5s cubic-bezier(.165,.84,.44,1);
    transform: translateX(100%);
    overflow-y: auto;
  }
  .sp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* ナビリンク */
  .sp-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 320px;
  }
  .sp-nav-links a {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-text);
    text-decoration: none;
	  border-bottom: 1px solid;
  }
  .sp-nav-links a.is-current { color: var(--color-primary); }
  .sp-nav-links a:hover,
  .sp-nav-links a:focus-visible { opacity: 0.6; }
  .sp-nav-contact-btn:hover,
  .sp-nav-contact-btn:focus-visible { opacity: 0.8; }
  .sp-nav-pill:hover,
  .sp-nav-pill:focus-visible { opacity: 0.7; }

  /* お問い合わせボタン */
  .sp-nav-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 320px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1.6px;
    color: var(--color-white);
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    box-shadow: 0px 2px 2px rgba(47, 47, 47, 0.2);
    box-sizing: border-box;
  }
  .sp-nav-contact-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  /* 情報エリア */
  .sp-nav-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 320px;
  }
  .sp-nav-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .sp-nav-info-label {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1.6px;
    color: var(--color-text);
    margin: 0;
  }
  .sp-nav-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 260px;
    height: 40px;
    border: 1px solid var(--color-text);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 1.8px;
    color: var(--color-text);
    text-decoration: none;
  }
  .sp-nav-insta-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0);
  }
  .sp-nav-info-note {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: var(--color-text);
    text-align: center;
    line-height: 1.6;
    margin: 0;
  }

  /* プライバシーポリシー */


  .vertical-card {
    padding: 0.3em 0.3em;
  }

  .vertical-card--left {
    margin-top: 2rem;
  }

  .vertical-card--right {
    margin-bottom: 2rem;
  }

  .sp-only { display: inline; }
  .pc-only { display: none; }

  /* Reform — stack */
  .reform { padding: 60px 40px 0; }
  .reform-intro {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .reform-text { max-width: 100%; }
  .reform-illustration {
    width: 60%;
    height: auto;
    aspect-ratio: 440 / 360;
  }
  .reform-cases {
    margin-top: 0;
  }
  .reform-cases-label h3 {
    font-size: 1rem;
  }
  .case-card-info {
    margin-right: 64px;
  }

}


/* =============================================================
   BREAKPOINT 2.5: 481px〜1024px — 売却ステップ中間レイアウト
   ============================================================= */
@media (max-width: 1024px) and (min-width: 481px) {
  .sell-step-info {
    flex: 1;
    min-width: 0;
  }
  .sell-step-photo {
    max-width: 200px;
    aspect-ratio: 4 / 3;
    height: auto;
    flex-shrink: 0;
    width: 50%;
  }

  .sell-steps-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .sell-step-card {
    width: 100%;
    flex-direction: row;
    max-width: 100%;
  }
  .sell-step-arrow {
    transform: rotate(90deg);
    width: 12px;
    height: 20px;
  }
  .sell-step-arrow img {
    width: 100%;
    height: 100%;
  }
  .sell-step-desc {
    width: 100%;
  }
}

/* About / Comparison — ≤1024px */
@media (max-width: 1024px) {

  .faq {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sell-worries {
    padding: 120px 40px;
  }

  .sell-steps {
    padding: 120px 40px;
  }


  .sell-merit-strong::before {
    top: 0px;
  }
  .sell-merit-box {
    width: 100%;
  }

  .footer-top {
    padding: 0 40px;
  }

  .footer-bottom {
    padding: 0 40px;
  }

  /* 比較フロー縦積み */
  .about-comparison {
    padding: 60px 0 50px;
  }
  .about-comparison-card {
    padding: 32px 24px;
    margin: 0 40px;
    gap: 40px;
  }

  .about-merit-example {
    margin: 40px 40px;
  }
  .comparison-section {
    width: 100%;
    align-items: center;
  }
  .comparison-label {
    font-size: 1.25rem;
    white-space: nowrap;
    padding: 0px 16px;
  }
  .comparison-desc {
    font-size: 0.9375rem;
  }

  /* Irodori flow — vertical */
  .comparison-flow-irodori {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 272px;
    gap: 0;
  }
  .comparison-irodori-company {
    writing-mode: vertical-rl;
    font-size: 1rem;
    letter-spacing: 4px;
    width: 16px;
    flex-shrink: 0;
    order: -2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
  }
  .comparison-irodori-bracket {
    display: none;
  }
  .comparison-flow-irodori::before {
    content: '';
    display: block;
    width: 10px;
    align-self: stretch;
    order: -1;
    flex-shrink: 0;
    border-left: 2px solid var(--color-text);
    border-top: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
  }
  .comparison-irodori-icons {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 220px;
    padding: 8px 0;
    flex-shrink: 0;
    border-radius: 10px;
  }
  .comparison-irodori-step {
    flex-direction: row;
    width: 220px;
    height: 80px;
    gap: 8px;
  }
  .comparison-irodori-name {
    font-size: 1rem;
    color: var(--color-primary);
  }
  .comparison-irodori-icon {
    width: 40px;
    height: 40px;
  }
  .comparison-irodori-arrow {
    transform: rotate(90deg);
    width: 8px;
    height: 12px;
  }

  /* Industry flow — vertical */
  .comparison-flow-industry {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .comparison-industry-step {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 280px;
  }
  .comparison-industry-company {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1rem;
    letter-spacing: 6.6px;
    width: 16px;
    flex-shrink: 0;
    order: -2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
  }
  .comparison-industry-bracket {
    display: none;
  }
  .comparison-industry-step::before {
    content: '';
    display: block;
    width: 8px;
    align-self: stretch;
    order: -1;
    flex-shrink: 0;
    border-left: 2px solid var(--color-text);
    border-top: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
  }
  .comparison-industry-box {
    width: 220px;
    height: 80px;
    flex-direction: row;
    gap: 8px;
    border-radius: 10px;
  }
  .comparison-industry-name {
    font-size: 1rem;
  }
  .comparison-industry-icon {
    width: 40px;
    height: 40px;
  }
  .comparison-industry-arrows {
    padding-top: 0;
    width: 220px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0;
    margin: 0 auto;
    margin-right: calc(50% - 130px);
    height: 18px;
  }
  .comparison-industry-arrows img {
    width: 18px;
    height: 11px;
  }
  .comparison-industry-arrows img:first-child {
    transform: rotate(-90deg);
  }
  .comparison-industry-arrows img:last-child {
    transform: rotate(90deg);
  }

  /* Sell worries — アイコン縮小 */
  .sell-worry-icon {
    width: 100px;
    height: 88px;
  }
  .sell-worry-icon .worry-img-2,
  .sell-worry-icon .worry-img-5 {
    width: 120px;
  }
  .sell-worry-icon .worry-img-4 {
    width: 80px;
    height: 70px;
  }

  /* その悩み…解決 */
  .sell-solution-inner {
    gap: 20px;
  }
  .sell-solution-brackets {
    gap: 8px;
    align-items: flex-end;
  }
  .sell-solution-main > span:first-child {
    display: block;
    background: linear-gradient(#fef8af, #fef8af) no-repeat;
    background-size: 100% 6px;
    background-position: 0 80%;
  }
  .sell-solution-main strong {
    text-decoration: underline #fef8af 6px;
    text-underline-offset: -2px;
    text-decoration-skip-ink: none;
    background: none;
  }
  .sell-solution-main > span:last-child {
    text-decoration: underline #fef8af 6px;
    text-underline-offset: -2px;
    text-decoration-skip-ink: none;
    background: none;
  }
  .sell-solution-highlight {
    display: none;
  }

  /* Quality — 縦並び */
  .about-quality-step {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-quality-step .about-quality-text {
    order: 0;
  }
  .about-quality-step .about-quality-photo {
    order: 1;
  }
  .about-quality-text {
    max-width: 100%;
  }
  .about-quality-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 380 / 235;
  }

  /* About company — 縦並び */
  .about-company-inner {
    flex-direction: column;
    gap: 40px;
  }
  .about-company-list {
    max-width: 100%;
  }

  /* About greeting — 縦並び */
  .about-greeting-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .about-greeting-main {
    text-align: left;
  }
  .about-greeting-header {
    align-items: flex-start;
  }
  .about-greeting-illustration {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =============================================================
   BREAKPOINT 3: ≤768px — メインSP化（2列→1列、全面モバイル）
   ============================================================= */
@media (max-width: 768px) {

  /* Common */
  .inner { padding: 0 20px; }


  .about-comparison-card {
    margin: 0 20px;
  }

  .about-quality-card {
    margin: 20px 20px;
  }
  .contact-page-phone-hours {
    text-align: left;
  }
  .sp-only-800 { display: inline; }
  .pc-only-768 { display: none; }

  /* メリットボックス — SP枠線切替 */
  .sell-merit-title-border--pc {
    display: none;
  }
  .sell-merit-title-border--sp {
    display: block;
  }

  /* Hero — SP（PC版のem設計を維持） */
  .hero-text-vertical {
    top: 15%;
    right: 8%;
    gap: 0.75rem;
  }
  .vertical-card {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    letter-spacing: 0.45em;
    text-indent: 0.45em;
    padding: 0.3em 0.5em;
  }
  .vertical-card--left {
    margin-top: 2rem;
  }
  .vertical-card--right {
    margin-bottom: 2rem;
  }
  .hero-subtitle {
    position: absolute;
    top: auto;
    bottom: 5%;
    left: 5%;
    width: auto;
    max-width: 60%;
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
.section-label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 10%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
  /* Reform — mobile padding */
  .reform { padding: 0px 0 0; }

  /* Reform illustration — restore full width on mobile */
  .reform-illustration {
    width: 100%;
  }
	.fade-right.is-visible{
		margin-top: 40px;
	}
  /* Philosophy — stack */
  .philosophy { padding: 0; }
  .philosophy-wave {
    left: -70%;
    top: -5px;
    width: 230%;
    height: 208px;
  }
  .philosophy-content {
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
  }
  .philosophy-list { width: 100%; }
  .philosophy-item-line { width: 40px; }

  /* Three Reasons — stack */
  .reasons { padding: 60px 0; }
  .reasons-header { padding: 0 20px; }
  .reasons-cards {
    flex-direction: column;
    margin-top: 40px;
  }
  .reasons-card { height: 265px; }
  .reasons-card-title {
    bottom: 18px;
    left: 27px;
    font-size: 1.25rem;
    font-weight: 600;
  }
  .about-reasons-cards {
    flex-direction: column;
    gap: 0;
  }
  .about-reasons-card {
    width: 100%;
    height: 265px;
  }
  .about-reasons-card-title {
    bottom: 18px;
    left: 27px;
    font-size: 1.25rem;
  }


  /* Reform Cases — 1 column */
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-card-image {
    width: calc(100% - 20px);
    margin-left: 20px;
    height: 211px;
  }
  .case-card-before {
    width: 105px;
    height: 75px;
  }
  .case-card-before-label {
    width: 55px;
    height: 16px;
    font-size: 0.6875rem;
  }
  .case-card-info {
    margin-top: -30px;
    margin-right: 40px;
    padding: 16px 20px;
  }
  .case-card-tag span {
    font-size: 1.125rem;
  }
  .case-card-desc {
    font-size: 0.9375rem;
    margin-bottom: 12px;
  }

  /* FAQ — stack */
  .faq {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    margin-top: 60px;
  }
  .faq-left {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    align-items: flex-start;
  }
  .faq-left .section-label {
    grid-column: 1;
    grid-row: 1;
    line-height: 1;
    margin: 0;
    padding: 0;
    margin-bottom: -40px;
  }
  .faq-left .section-title {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    line-height: 1;
  }
  .faq-left .faq-illustration {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
  }
  .faq-illustration {
    margin-top: 0;
    width: 180px;
    height: 124px;
  }
  .faq-right { gap: 40px; }
  .faq-item { padding: 20px; }
  .faq-question .chevron {
    align-self: flex-start;
    margin-top: 4px;
  }
  .faq-answer .a-label { -webkit-text-stroke-width: 2px; }

  .barrel-label-fee {
    top: 15% !important;
  }
  .barrel-label-misc {
    top: 28% !important;
  }
  .barrel-label-reno-r {
    top: 50.14% !important;
  }
  .barrel-line-diagonal {
    top: 4%;
    height: 38.6%;
  }
  .barrel-line-horizontal {
    bottom: 8%;
  }

  .barrel-total {
    font-size: 0.875rem;
    margin-top: 0;
  }
  .barrel-total strong {
    font-size: 1.25rem;
  }

  /* 差額テキストを円柱の内側に配置 */
  .barrel:last-child {
    position: relative;
  }
  .barrel-diff {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    z-index: 30;
    margin-bottom: 0;
  }

  /* Contact — stack */
  .contact { height: auto; min-height: 520px; }
  .contact-content { padding: 41px 27px; gap: 10px; }
  .contact-heading h2 {
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
  .contact-heading p {
    font-size: 1rem;
    letter-spacing: 1.6px;
    margin-top: 0;
    line-height: 1.6;
  }
  .contact-form-btn {
    width: 320px;
    font-size: 1rem;
    letter-spacing: 1.6px;
    padding: 16px 24px;
    box-sizing: border-box;
    gap: 10px;
  }
  .contact-info { flex-direction: column; gap: 16px; }
  .contact-info-item { width: 100%; }
  .contact-info-item .bordered {
    width: 260px;
    height: 40px;
    font-size: 1.125rem;
    letter-spacing: 1.8px;
  }
  .contact-info-item .sub {
    font-size: 1rem;
    letter-spacing: 1.6px;
    text-align: center;
    line-height: 1.5;
  }

  /* Footer — stack */
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
  }
  .footer-bottom {
    padding: 0px 20px;
    flex-direction: column-reverse;
    gap: 4px;
    align-items: flex-start;
    width: 100%;
  }
  .footer-bottom p,
  .footer-bottom a {
    font-size: 0.875rem;
    letter-spacing: 1.4px;
  }
  .footer-instagram { width: 48px; height: 48px; }

  /* ============================================
     About Page — Mobile
     ============================================ */

  /* About Hero */
  .about-hero {
    height: 200px;
    border-radius: 20px;
    width: calc(100% - 20px);
  }
  .about-hero-title {
    font-size: 1.625rem;
    letter-spacing: 3px;
    left: 28px;
    top: 40%;
    transform: translateY(50%);
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 8px 0 0;
  }
  .breadcrumb-inner {
    font-size: 0.75rem;
    padding-left: 40px;
  }

  /* Section Title */
  .about-section-title {
    padding: 60px 0 40px;
    background: var(--color-primary-bg);
  }
  .about-section-title-inner {
    padding-left: 20px;
  }
  .about-section-title h2 {
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  .about-section-title-line {
    width: 32px;
  }
	
	.philosophy-item p {
  font-size: 16px;
}


  /* Comparison Section */

  /* Merit Section */
  .about-merit {
    padding: 60px 20px 0;
    gap: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .about-merit-title {
    gap: 10px;
    margin-bottom: 0px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .about-merit-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 440px;
    padding: 0;
  }
  .about-merit-left {
    width: 100%;
    position: relative;
    gap: 12px;
    margin-top: 20px;
  }
  .about-merit-point {
    position: absolute;
    top: 6px;
    right: 0;
  }
  .about-merit-badge {
    transform: none;
  }
  .about-merit-reduction {
    gap: 0;
  }
  .about-merit-reduction-num {
    white-space: nowrap;
  }
  .about-merit-zero {
    padding-right: 96px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .about-merit-zero strong {
    display: inline-block;
  }
  .about-merit-zero strong::after {
    bottom: -2px;
    height: 16px;
  }
  .about-merit-reduction-num::after {
    bottom: 14px;
    height: 16px;
  }
  .about-merit-right {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .about-merit-example {
    flex-direction: row;
    gap: 0;
    max-width: 420px;
    margin: 24px 20px 10PX;
    padding-top: 20px;
  }
  .about-merit-example-label {
    font-size: 1rem;
    flex-shrink: 0;
  }
  .about-merit-example-text {
    font-size: 1rem;
  }

  .about-quality-badge-text {
    inset: auto;
    top: 26px;
    left: 0;
    width: 100%;
    gap: 0;
  }
  .about-quality-badge-text span:first-child {
    font-size: 0.75rem;
    line-height: 1.1;
  }
  .about-quality-badge-text span:nth-child(2) {
    font-size: 0.875rem;
    line-height: 1.1;
  }
  .about-quality-badge-text .about-quality-badge-small {
    font-size: 0.875rem;
    line-height: 1.1;
  }
  .about-quality-badge-text:has(.about-quality-badge-small) {
    top: 20px;
  }
  .about-quality-badge-arrow {
    transform: rotate(90deg);
    width: 6px;
    height: 10px;
    bottom: 4px;
    right: auto;
    left: 7px;
    top: auto;
  }

  /* Greeting */
  .about-greeting {
    padding: 60px 0;
  }
  .about-greeting-layout {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .about-greeting-main {
    width: 100%;
    flex: none;
    max-width: 100%;
    text-align: left;
  }
  .about-greeting-header {
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  .about-greeting-label {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  .about-greeting-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.8;
  }
  .about-greeting-body p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 1.8;
  }
  .about-greeting-body p + p {
    margin-top: 1.6em;
  }
  .about-greeting-body .about-greeting-closing {
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .about-greeting-illustration {
    width: 320px;
    height: 256px;
    margin: 20px auto 0;
    flex-shrink: unset;
  }

  /* Company Info */
  .about-company {
    padding: 40px 20px;
  }
  .about-company-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 100%;
  }
  .about-company-heading {
    margin-bottom: 0;
    align-self: flex-start;
  }
  .about-company-heading h2 {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  .about-company-heading-line {
    width: 32px;
  }
  .about-company-list {
    width: 100%;
    gap: 8px;
  }
  .about-company-line {
    width: 100%;
  }
  .about-company-row {
    flex-direction: column;
    gap: 0;
  }
  .about-company-label {
    width: 100%;
    min-width: unset;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 3.2px;
  }
  .about-company-value {
    width: 100%;
    flex: none;
    font-size: 1rem;
    letter-spacing: 1.6px;
    line-height: 1.5;
  }

  /* Access */
  .about-access {
    padding: 40px 20px;
  }
  .about-access-inner {
    max-width: 100%;
    gap: 24px;
  }
  .about-access-top {
    flex-direction: column;
    gap: 24px;
  }
  .about-access-info {
    display: contents;
  }
  .about-access-heading {
    order: 1;
    margin-bottom: 0;
    align-self: flex-start;
  }
  .about-access-heading h2 {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  .about-access-heading-line {
    width: 32px;
  }
  .about-access-photo {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 198;
    border-radius: 0;
    overflow: hidden;
  }
  .about-access-detail {
    order: 3;
    gap: 8px;
  }
  .about-access-company {
    font-size: 1.25rem;
  }
  .about-access-address {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .about-access-station {
    order: 4;
  }
  .about-access-station p {
    font-size: 1rem;
  }
  .about-access-map {
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 320;
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .about-access-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ============================================
     Contact Page — Mobile
     ============================================ */

  /* Contact Hero (same pattern as sell-hero) */
  .contact-hero {
    height: 200px;
    border-radius: 20px;
    width: calc(100% - 20px);
  }
  .contact-hero-overlay {
    border-radius: 20px;
  }
  .contact-hero-image img {
    object-position: center 70%;
  }
  .contact-hero-title {
    font-size: 1.625rem;
    letter-spacing: 3px;
    left: 28px;
    top: 40%;
    transform: translateY(50%);
  }

  /* Contact Page Content */
  .contact-page {
    padding: 0;
  }
  .contact-page-inner {
    padding: 60px 27px;
    gap: 24px;
  }
  .contact-page-intro {
    font-size: 1rem;
    letter-spacing: 1.6px;
    line-height: 1.8;
  }

  .contact-page-phone-note {
    text-align: left;
  }

  /* Phone Box — stack vertically */
  .contact-page-phone {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 20px;
  }
  .contact-page-phone-number {
    white-space: nowrap;
  }
  .contact-page-phone-hours {
    white-space: normal;
  }

  /* Form Container */
  .contact-form-container {
    padding: 32px 20px;
  }
  .contact-form-submit {
    width: 280px;
    padding: 12px 24px;
  }

  /* Success Message */
  .contact-form-success {
    padding: 40px 20px;
  }

  /* ============================================
     404 Page — Mobile
     ============================================ */
  .error-page {
    min-height: calc(100vh - 64px - 100px);
    padding: 64px 28px 0;
  }
  .error-page-number {
    font-size: 7.03125rem;
  }
  .error-page-illust {
    height: 67.5px;
    width: 34px;
  }
  .error-page-illust--left {
    width: 31px;
    margin-right: 16px;
    margin-bottom: 10px;
  }
  .error-page-illust--right {
    width: 34px;
    margin-left: 16px;
    margin-bottom: 10px;
  }
  .error-page-text {
    width: 320px;
    max-width: 100%;
  }
  .error-page-heading {
    text-align: center;
  }

  /* ============================================
     Sell Page — Mobile
     ============================================ */

  /* Sell Hero */
  .sell-hero {
    height: 200px;
    border-radius: 20px;
    width: calc(100% - 20px);
  }
  .sell-hero-title {
    font-size: 1.625rem;
    letter-spacing: 3px;
    left: 28px;
    top: 40%;
    transform: translateY(50%);
  }

  /* Sell Breadcrumb */
  .sell-breadcrumb .inner {
    font-size: 0.75rem;
    padding-left: 40px;
  }

  /* Sell Section Heading */
  .sell-section-heading h2 {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  .sell-section-heading-line {
    width: 32px;
  }
  .sell-section-heading {
    align-self: flex-start;
  }

  /* 売却の悩み */
  .sell-worries {
    padding: 60px 0;
  }

  .sell-steps {
    padding: 60px 28px;
  }
  .sell-worries-inner {
    padding: 0 28px;
    gap: 24px;
  }
  .sell-worries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    /* max-width: 320px; */
    margin: 0;
  }
  .sell-worry-card {
    min-height: 80px;
    height: auto;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border-radius: 20px;
  }
  .sell-worry-text {
    font-size: 1.25rem;
    letter-spacing: 1.6px;
    text-align: left;
  }
  .sell-worry-icon {
    width: 100px;
    height: 88px;
  }
  .sell-worry-icon .worry-img-2,
  .sell-worry-icon .worry-img-4,
  .sell-worry-icon .worry-img-5 {
    width: 100%;
    height: 100%;
  }

  /* その悩み…解決 */
  .sell-solution {
    padding: 60px 28px;
  }
  .sell-solution-inner {
    gap: 20px;
  }
  .sell-solution-brackets {
    gap: 8px;
    align-items: flex-end;
  }
  .sell-solution-main > span:first-child {
    display: block;
    background: linear-gradient(#fef8af, #fef8af) no-repeat;
    background-size: 100% 6px;
    background-position: 0 80%;
  }
  .sell-solution-main strong {
    text-decoration: underline #fef8af 6px;
    text-underline-offset: -2px;
    text-decoration-skip-ink: none;
    background: none;
  }
  .sell-solution-main > span:last-child {
    text-decoration: underline #fef8af 6px;
    text-underline-offset: -2px;
    text-decoration-skip-ink: none;
    background: none;
  }

  .sell-solution-highlight {
    display: none;
  }
  .sell-solution-brackets {
    gap: 8px;
  }
  .sell-bracket {
    width: 20px;
    height: 40px;
    margin-bottom: 8px;
  }
  .sell-solution-sub {
    font-size: 1rem;
    letter-spacing: 1.6px;
	  margin-bottom: 0px;
  }
  .sell-solution-main {
    font-size: 1.125rem;
    letter-spacing: 2px;
  }
  .sell-solution-main strong {
    font-size: 1.5rem;
  }

  .sell-merit-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 400px;
  }

  /* メリットボックス */
  .sell-merit-box {
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sell-merit-title {
    font-size: 1.25rem;
    letter-spacing: 4.8px;
    line-height: normal;
    padding: 10px 0;
  }
  .sell-merit-title span {
    display: block;
  }
  .sell-merit-strong {
    font-size: 1.5rem;
    margin-top: 5px;
    display: inline-block;
  }
  .sell-merit-strong::before {
    width: 115px;
    height: 3.5px;
    top: -3px;
    left: 39%;
  }
  .sell-merit-title-bar {
    position: relative;
    height: auto;
    padding: 24px;
    background: none;
    white-space: normal;
    box-sizing: border-box;
    left: auto;
    transform: none;
    z-index: 3;
    margin-top: 20px;
    margin-bottom: -135px;
  }
  .sell-merit-content {
    width: 100%;
    
    height: auto;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .sell-merit-wave--pc { display: none; }
  .sell-merit-wave--sp { display: block; }
  .sell-merit-grid {
    overflow: hidden;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .sell-merit-items {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 140px 20px 40px;
  }
  .sell-merit-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 280px;
  }
  .sell-merit-circle {
    width: 160px;
    height: 160px;
  }
  .sell-merit-circle p {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  .sell-merit-desc {
    width: 280px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-align: left;
    line-height: 1.8;
  }
  .sell-merit-desc p {
    display: inline;
  }

  .sell-step-card {
    width: 100%;
    padding: 20px;
    gap: 24px;
    max-width: 100%;
  }

}


/* =============================================================
   BREAKPOINT 4: ≤480px — 小画面微調整
   ============================================================= */
@media (max-width: 480px) {

  .sell-step-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 0;
  }

  .hero-outer {
    min-height: 500px;
  }

  .contact-page-phone-hours .sp-br {
    display: inline;
  }

  /* Philosophy */
  .philosophy { padding: 0px 0; }

  /* 売却の5ステップ */
  .sell-steps-inner {
    gap: 24px;
  }
  .sell-steps-content {
    gap: 16px;
  }
  .sell-steps-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .sell-step-arrow img {
    width: 75%;
    height: 175%;
  }
  .sell-step-info {
    gap: 16px;
  }
  .sell-step-info h3 {
    font-size: 1.25rem;
  }
  .sell-step-line {
    width: 100%;
  }
  .sell-step-desc {
    width: 100%;
    height: auto;
    font-size: 1rem;
    letter-spacing: 1.6px;
  }
  .sell-step-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 0;
  }
  .sell-step-arrow {
    transform: rotate(90deg);
    width: 16px;
    height: 11px;
  }

  /* 売却の悩み — SP */
  .sell-worry-card {
    min-height: 100px;
    padding: 0 16px;
  }
  .sell-worry-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  .sell-worry-icon {
    width: 57px;
    height: 50px;
  }
  .sell-worry-icon .worry-img-2,
  .sell-worry-icon .worry-img-4,
  .sell-worry-icon .worry-img-5 {
    width: 100%;
    height: 100%;
  }

  /* Greeting */

  .about-quality-title {
    gap: 16px;
    margin-bottom: 0;
  }
  .about-quality-title-line {
    width: 280px;
  }
  .about-quality-title p {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 3.2px;
  }
  .about-quality-title strong {
    font-size: 1.5rem;
  }
  .about-quality-step {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 280px;
  }
  .about-quality-step .about-quality-text {
    order: 0;
  }
  .about-quality-step .about-quality-photo {
    order: 1;
  }
  .about-quality-text {
    flex: none;
    width: 280px;
    max-width: 100%;
  }
  .about-quality-text h3 span {
    font-size: 1.25rem;
    letter-spacing: 2.4px;
	margin-bottom: -5px;
  }
  .about-quality-text h3 em {
    font-size: 1.5rem;
    letter-spacing: 2.4px;
  }
  .about-quality-text p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 1.8;
  }
  .about-quality-text-header {
    position: relative;
    display: block;
  }
  .about-quality-text-header .about-quality-badge {
    position: absolute;
    top: -30px;
    right: 0;
  }
  .about-quality-photo {
    width: 280px;
    height: 173px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: unset;
  }
  .about-quality-arrows {
    width: 23px;
    height: 26px;
  }
  .about-quality-arrows img {
    width: 23px;
    height: 26px;
  }
  .about-quality-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }
  .about-quality-badge-circle {
    width: 80px;
    height: 80px;
  }
  .about-quality-badge-circle--rotated {
    transform: rotate(0deg);
  }

  /* 下層ヒーロー */
  .about-hero,
  .sell-hero,
  .contact-hero {
    height: 140px;
  }
  .about-hero-title,
  .sell-hero-title,
  .contact-hero-title {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}

/* ---- 468px: Hero shift right ---- */
