@charset "UTF-8";
#kanri{
/* ===================================
   定期報告業務 / PILLAR (トップ準拠3列カード)
   =================================== */
.section-service {
  background: var(--color-offwhite);
}

/* ===================================
   行政×現場 / ADMIN
   =================================== */
.admin-box {
  margin-top: 32px;
  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;
}

/* ===================================
   独自の強み / 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-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;
}

/* ===================================
   是正提案セット / PROPOSAL
   =================================== */
.section-proposal {
  background: var(--color-white);
  padding-top: 0;
}
.section-proposal .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-proposal .section-title-left::after {
  display: none;
}
.proposal-intro {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.proposal-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
}
.proposal-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.proposal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proposal-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proposal-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.proposal-card-body {
  padding: 28px 28px 32px;
}
.proposal-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;
}
.proposal-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proposal-points li {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  padding-left: 20px;
  position: relative;
}
.proposal-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-navy);
  border-radius: 1px;
}

/* ===================================
   業務の流れ / FLOW
   =================================== */
.section-flow {
  background: var(--color-offwhite);
}
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-card {
  display: flex;
  gap: 24px;
  padding: 35px 31px;
  border: 2px solid var(--color-gray-light);
  border-radius: 12px;
  align-items: flex-start;
  background: var(--color-white);
  transition: border-color 0.3s ease;
}
.flow-card:hover {
  border-color: var(--color-navy);
}
.flow-card-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-card-num span {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}
.flow-arrow {
  text-align: center;
  font-size: 20px;
  color: var(--color-navy);
  line-height: 1;
  margin: -8px 0;
}
.flow-card-body h3 {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.flow-card-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

/* ===================================
   お悩み / WORRY
   =================================== */
.section-worry {
  background: var(--color-white);
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
}
.worry-grid {
  isolation: isolate;
}
.worry-note {
  width: 100%;
  padding: 32px 28px;
  background: #f5f5f5;
  border-right: 15px solid var(--color-accent);
  position: relative;
}
.worry-note::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: -14px;
  z-index: -1;
  transform: rotate(3deg);
  width: 100%;
  height: 50%;
  background: #d0d0d0;
  filter: blur(5px);
}
.worry-note p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-align: left;
}
.worry-bottom {
  margin-top: 40px;
  padding: 28px 32px;
  border: none;
  background: transparent;
}
.worry-bottom p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-align: left;
}



/* ===================================
   RESPONSIVE
   =================================== */
@media only screen and (max-width: 1024px) {
  .flow-card {
    padding: 28px 24px;
  }
  .strength-grid {
    gap: 32px;
  }
  .admin-box {
    padding: 40px 28px;
  }
  .admin-body-photo img {
    aspect-ratio: 1 / 1.25;
  }  .worry-note p {
    font-size: calc(18px * 0.9);
  }}

@media only screen and (max-width: 600px) {
  .flow-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .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;
  }
  .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;
  }  .proposal-grid {
    grid-template-columns: 1fr;
  }
  .proposal-card-body {
    padding: 24px 20px 28px;
  }
  .worry-grid {
    grid-template-columns: 1fr;
  }
  .worry-note {
    padding: 24px 20px;
  }
  .worry-bottom {
    padding: 20px;
  }
}


}