@charset "UTF-8";
.about-section {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.about-section .about-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) 80px 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-section .about-title {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 6px;
}
.about-section .about-subtitle {
  margin-top: 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.1;
  color: var(--text-color);
  font-weight: 400;
}
.about-section .about-text {
  color: #5b7561;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.about-section .about-cards-stack {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-section .about-card {
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.35);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-section .about-card-quote {
  background: rgba(255, 255, 255, 0.55);
}
.about-section .about-card-plain {
  border: none;
  background: transparent;
  padding: 0;
}
.about-section .about-card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-section .about-card-row {
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.about-section .about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.about-section .about-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.about-section .about-card-pretitle {
  color: #5b7561;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-section .about-card-title {
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-color);
}
.about-section .about-card-text {
  color: #5b7561;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.about-section .about-card-text p {
  margin-bottom: 8px;
}
.about-section .about-card-list {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-section .about-card-list li {
  color: #5b7561;
  font-size: 0.95rem;
  line-height: 1.4;
}
.about-section .about-join-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.about-section .about-join-grid > .about-card {
  height: 100%;
}
.about-section .about-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-section .about-icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #5b7561;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 400;
}
.about-section .about-icon-list i {
  margin-top: 2px;
  color: #24582A;
  flex-shrink: 0;
}
.about-section .about-subcard {
  margin-top: 14px;
  border: 1px dashed rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.35);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-section .about-subcard-title {
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-color);
}
.about-section .about-subcard-text {
  color: #5b7561;
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 400;
}
.about-section .about-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}
.about-section .about-accordion-item {
  border: 1px solid rgba(36, 88, 42, 0.18);
  background-color: rgba(255, 255, 255, 0.35);
  padding: 12px 14px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.about-section .about-accordion-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.about-section .about-accordion-item summary::-webkit-details-marker {
  display: none;
}
.about-section .about-accordion-item summary::after {
  content: "›";
  transform: rotate(90deg);
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.25s ease;
}
.about-section .about-accordion-item[open] summary::after {
  transform: rotate(-90deg);
}
.about-section .about-accordion-item[open] {
  background-color: rgba(255, 255, 255, 0.45);
}
.about-section .about-accordion-item[data-accordion-ready] > .about-accordion-body {
  display: block;
}
.about-section .about-accordion-body {
  margin-top: 0;
  color: #5b7561;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 400;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin-top 0.35s ease;
}

@media (max-width: 998px) {
  .about-section .about-inner {
    padding: calc(var(--header-height) + 24px) 24px 54px;
  }
  .about-section .about-join-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-section .about-inner {
    padding: calc(var(--header-height) + 20px) 16px 50px;
  }
}/*# sourceMappingURL=about.css.map */