.carlog-about-html {
  --about-navy: #111a2c;
  --about-orange: #ff6b1a;
  --about-orange-dark: #e85b09;
  --about-orange-soft: #fff3ea;
  --about-cream: #fffaf6;
  --about-soft: #f5f7fa;
  --about-muted: #5f6877;
  --about-line: #e6ebf1;
  --about-shadow: 0 16px 36px rgba(17, 26, 44, 0.08);
  --about-max: 1080px;
  background: #ffffff;
  color: var(--about-navy);
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.carlog-about-html * {
  box-sizing: border-box;
}

.carlog-about-html img,
.carlog-about-html svg {
  display: block;
  max-width: 100%;
}

.about-section {
  position: relative;
  padding: 68px 20px;
}

.about-container {
  position: relative;
  z-index: 2;
  width: min(var(--about-max), 100%);
  margin: 0 auto;
}

.about-center {
  text-align: center;
}

.about-eyebrow {
  margin: 0 0 9px;
  color: var(--about-orange);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.about-main-title,
.about-section-title {
  margin: 0;
  color: var(--about-navy);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.42;
  text-align: center;
}

.about-main-title {
  font-size: clamp(34px, 4vw, 48px);
}

.about-section-title {
  margin-bottom: 34px;
  font-size: clamp(25px, 2.6vw, 34px);
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--about-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.about-primary-button,
.about-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 234px;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-primary-button {
  background: var(--about-orange);
  box-shadow: 0 12px 22px rgba(255, 107, 26, 0.22);
  color: #ffffff;
}

.about-primary-button:hover {
  background: var(--about-orange-dark);
  box-shadow: 0 14px 26px rgba(255, 107, 26, 0.28);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.about-outline-button {
  border: 2px solid var(--about-orange);
  background: #ffffff;
  color: var(--about-orange);
}

.about-outline-button:hover {
  background: var(--about-orange-soft);
  color: var(--about-orange);
  opacity: 1;
  transform: translateY(-1px);
}

.about-button-small {
  min-width: 210px;
  min-height: 46px;
  padding: 12px 24px;
  font-size: 13px;
}

.about-hero {
  min-height: 535px;
  padding-top: 54px;
  padding-bottom: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, #fff9f4 100%);
  text-align: center;
}

.about-hero-visual {
  position: absolute;
  top: 35px;
  right: max(-12px, calc((100vw - 1280px) / 2));
  z-index: 0;
  width: min(52vw, 650px);
  max-width: none;
  opacity: 0.82;
  pointer-events: none;
}

.about-hero-copy {
  max-width: 780px;
  margin: 12px auto 38px;
}

.about-hero-copy p {
  color: #4a5566;
  font-size: 15px;
  font-weight: 700;
}

.about-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 850px;
  margin: 0 auto 30px;
}

.about-hero-point {
  position: relative;
  text-align: center;
}

.about-icon-bubble {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--about-orange-soft);
  box-shadow: 0 8px 22px rgba(255, 107, 26, 0.08);
  color: var(--about-orange);
  font-size: 30px;
}

.about-hero-point h2 {
  margin: 0 0 10px;
  color: var(--about-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.about-hero-point p {
  max-width: 210px;
  margin: 0 auto;
  color: #687282;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

.about-reasons {
  background: #fff8f4;
  padding-top: 64px;
  padding-bottom: 72px;
}

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

.about-reason-card {
  min-height: 492px;
  padding: 24px 28px 26px;
  border: 1px solid #f0ebe7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--about-shadow);
  text-align: center;
}

.about-reason-number {
  margin: 0 0 8px;
  color: var(--about-orange);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-reason-card h3 {
  min-height: 56px;
  margin: 0;
  color: var(--about-navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}

.about-reason-visual {
  margin: 20px auto 17px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--about-orange-soft);
}

.about-reason-body {
  text-align: left;
}

.about-reason-body p {
  margin: 0 0 14px;
  color: #586273;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.85;
}

.about-reason-list,
.about-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-reason-list {
  display: grid;
  gap: 7px;
}

.about-reason-list li {
  position: relative;
  padding-left: 18px;
  color: #697386;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.about-reason-list li::before {
  content: "\f00c";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--about-orange);
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
}

.about-quality {
  background: var(--about-soft);
  padding-top: 58px;
  padding-bottom: 60px;
}

.about-quality-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1016px;
  margin: 0 auto;
  padding: 30px 58px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 26, 44, 0.05);
}

.about-quality-visual svg {
  border-radius: 10px;
}

.about-quality-text h3 {
  margin: 0 0 18px;
  color: var(--about-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.65;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--about-orange);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.about-text-link:hover {
  color: var(--about-orange-dark);
  opacity: 1;
}

.about-flow {
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 0;
  background: #ffffff;
}

.about-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 26px auto 22px;
}

.about-flow-track::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: #d8dee7;
}

.about-flow-step {
  position: relative;
  text-align: center;
}

.about-flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--about-orange);
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.about-flow-icon {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--about-orange-soft);
  color: var(--about-orange);
  font-size: 34px;
}

.about-flow-step h3 {
  margin: 0 0 10px;
  color: var(--about-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.about-flow-step p {
  max-width: 170px;
  margin: 0 auto;
  color: #697386;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.about-cityline {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  opacity: 0.9;
}

.about-partners {
  padding-top: 42px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 8% 40%, rgba(255, 255, 255, 0.95) 0 42px, transparent 43px),
    radial-gradient(circle at 0% 45%, rgba(255, 255, 255, 0.86) 0 62px, transparent 63px),
    #fff9f3;
}

.about-partners-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(390px, 1fr);
  gap: 44px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-partners-map {
  display: flex;
  justify-content: center;
}

.about-partners-map img {
  width: min(100%, 360px);
}

.about-check-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.about-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--about-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
}

.about-check-list li::before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--about-orange);
  color: #ffffff;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
}

.about-message {
  padding-top: 72px;
  padding-bottom: 70px;
  background: var(--about-navy);
  color: #ffffff;
}

.about-message::before,
.about-message::after {
  content: "";
  position: absolute;
  inset: 0;
}

.about-message::before {
  background-image: var(--about-message-bg);
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.about-message::after {
  background: linear-gradient(90deg, rgba(8, 21, 40, 0.98), rgba(8, 21, 40, 0.9));
}

.about-message .about-eyebrow {
  color: var(--about-orange);
}

.about-message .about-section-title {
  margin-bottom: 24px;
  color: #ffffff;
}

.about-message-inner {
  max-width: 940px;
  text-align: center;
}

.about-message-body p {
  max-width: 880px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.05;
  text-align: center;
}

.about-services {
  padding-top: 58px;
  padding-bottom: 70px;
  background: #ffffff;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 970px;
  margin: 0 auto;
}

.about-service-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  border: 1px solid #edf0f4;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 26, 44, 0.04);
  color: var(--about-navy);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-service-card:hover {
  border-color: rgba(255, 107, 26, 0.38);
  box-shadow: 0 12px 30px rgba(17, 26, 44, 0.08);
  opacity: 1;
  transform: translateY(-2px);
}

.about-service-icon {
  display: grid;
  min-height: 42px;
  margin-bottom: 13px;
  place-items: center;
  color: var(--about-orange);
  font-size: 34px;
}

.about-service-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--about-navy);
  font-size: 14px;
  font-weight: 900;
}

.about-service-card span:last-child {
  color: #687282;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.6;
}

.about-services-cta {
  margin-top: 34px;
  text-align: center;
}

@media (max-width: 1024px) {
  .about-hero-visual {
    right: -110px;
    width: 62vw;
    opacity: 0.45;
  }

  .about-hero-points {
    gap: 28px;
  }

  .about-quality-card,
  .about-partners-layout {
    grid-template-columns: 1fr;
  }

  .about-quality-card {
    max-width: 760px;
    padding: 28px;
  }

  .about-partners-layout {
    max-width: 720px;
  }

  .about-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 18px;
  }

  .about-main-title {
    font-size: 32px;
  }

  .about-section-title {
    margin-bottom: 26px;
    font-size: 24px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .about-hero-visual {
    top: 18px;
    right: -160px;
    width: 520px;
    opacity: 0.2;
  }

  .about-hero-copy {
    margin-bottom: 30px;
  }

  .about-hero-points,
  .about-reason-grid,
  .about-flow-track,
  .about-service-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-points {
    max-width: 330px;
    gap: 28px;
  }

  .about-reason-card {
    min-height: auto;
  }

  .about-quality-card {
    gap: 24px;
    padding: 20px;
  }

  .about-quality-text h3 {
    font-size: 19px;
  }

  .about-flow {
    padding-bottom: 0;
  }

  .about-flow-track {
    max-width: 330px;
    gap: 30px;
  }

  .about-flow-track::before {
    top: 0;
    bottom: 0;
    left: 15px;
    width: 1px;
    height: auto;
  }

  .about-flow-step {
    padding-left: 54px;
    text-align: left;
  }

  .about-flow-number {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .about-flow-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 12px;
    font-size: 26px;
  }

  .about-flow-step p {
    max-width: none;
    margin: 0;
  }

  .about-cityline {
    width: 920px;
    max-width: none;
    margin-left: -240px;
  }

  .about-partners {
    padding-top: 38px;
  }

  .about-partners-layout {
    gap: 26px;
  }

  .about-message-body p {
    font-size: 13.5px;
    text-align: left;
  }

  .about-service-grid {
    max-width: 330px;
  }
}
