@charset "UTF-8";
#chosa{
/* ===================================
   調査・支援サービス / PILLAR (2列カード)
   =================================== */
.section-service {
  background: var(--color-offwhite);
}

/* ===================================
   独自の強み / STRENGTH
   =================================== */
.section-strength {
  background: var(--color-white);
}
.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.strength-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.strength-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--color-gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.strength-lead {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.strength-desc {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-top: 24px;
}

/* ===================================
   ロードマップ提案 / ROADMAP
   =================================== */
.section-roadmap {
  background: var(--color-white);
  padding-top: 0;
}
.section-roadmap .section-title-left {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 32px;
}
.section-roadmap .section-title-left::after {
  display: none;
}
.roadmap-intro {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.roadmap-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.roadmap-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  background: var(--color-offwhite);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
}
.roadmap-point-item::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background: url(../images/chosa/icon-check-square.png) no-repeat center / contain;
}
.roadmap-point-item p {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin: 0;
}
.roadmap-outro {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   このようなタイミングでご相談ください / TIMING
   =================================== */
.section-timing {
  background: var(--color-offwhite);
  padding-bottom: 50px;
}
.timing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.timing-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
}
.timing-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.timing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.timing-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timing-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.timing-card-body {
  padding: 28px 28px 32px;
}
.timing-card-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 16px;
}
.timing-card-body p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===================================
   一級建築士が直接対応 / ASSURANCE (admin-box reuse)
   =================================== */
.section-assurance {
  background: var(--color-offwhite);
  padding-top: 0;
}
.admin-box {
  background: var(--color-white);
  border: none;
  border-radius: 15px;
  padding: 48px 40px;
  width: 100%;
}
.admin-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-accent);
  text-align: center;
}
.admin-lead {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 36px);
}
.admin-body {
  flex: 1;
  min-width: 0;
}
.admin-body-photo {
  width: 35%;
  flex-shrink: 0;
  margin: 0;
}
.admin-body-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
}
.admin-body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.admin-body p + p {
  margin-top: 20px;
}
.admin-btn-wrap {
  margin-top: 1rem;
  text-align: left;
}

/* ===================================
   行政の基準に基づいた安心の強み / ADMIN-STRENGTH
   =================================== */
.section-admin-strength {
  background: var(--color-white);
}
.section-admin-strength .section-header-group {
  margin-bottom: 40px;
}



/* ===================================
   RESPONSIVE
   =================================== */
@media only screen and (max-width: 1024px) {
  .strength-grid {
    gap: 32px;
  }
  .admin-box {
    padding: 40px 28px;
  }
  .admin-body-photo img {
    aspect-ratio: 1 / 1.25;
  }  .timing-card-body {
    padding: 24px 24px 28px;
  }
  .pillar-card-body h3 {
    font-size: 2.2vw;
  }
}

@media only screen and (max-width: 600px) {
  .pillar-card-body h3 {
    font-size: 4.5vw;
  }
  .strength-grid {
    grid-template-columns: 1fr;
  }
  .strength-lead {
    text-align: center;
  }
  .admin-box {
    padding: 36px 20px;
  }
  .admin-lead {
    flex-direction: column;
    gap: 24px;
  }
  .admin-body-photo {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    order: 1;
  }
  .admin-body {
    order: 0;
  }
  .admin-btn-wrap {
    text-align: center;
  }
  .admin-body-photo img {
    aspect-ratio: 3 / 2;
  }
  .timing-grid {
    grid-template-columns: 1fr;
  }
  .timing-card-body {
    padding: 24px 20px 28px;
  }
  .roadmap-points {
    margin-bottom: 32px;
  }
  .roadmap-point-item {
    padding: 16px 20px;
  }
  .faq-q {
    padding: 19px 17px;
    gap: 12px;
  }
  .faq-a {
    margin: 0;
    padding: 17px 17px 22px;
    gap: 12px;
  }
  .faq-label {
    width: 41px;
    height: 41px;
    font-size: 18px;
  }
  .faq-toggle-icon {
    width: calc(41px * 0.8);
    height: calc(41px * 0.8);
  }
  .faq-label-a {
    font-size: 20px;
  }
  .faq-toggle-icon::before {
    font-size: calc(20px * 0.8);
  }
  .faq-item.is-open .faq-toggle-icon::before {
    font-size: calc(24px * 0.8);
  }
  .faq-q-text {
    font-size: 17px;
  }
  .faq-a p {
    font-size: 16px;
  }}


}