/* ========================================
   ABOUT / コース情報
   ======================================== */

.about {
  position: relative;
  overflow: hidden;
}

/* ── About Header ── */
.about__header {
  margin-bottom: 60px;
}

.about__label {
  font-family: var(--font-jakarta);
  color: var(--clr-accent);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about__heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--clr-navy);
  line-height: 1.4;
}

/* ── About Content ── */
.about__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 120px;
  row-gap: 60px;
  align-items: start;
  z-index: 1;
  position: relative;
}

.about__content {
  display: contents;
}

.about__body {
  grid-column: 1;
  grid-row: 1;
}

.about__image {
  grid-column: 2;
  grid-row: 1;
}

/* ── Left: Content ── */
.about__body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .06em;
  color: var(--clr-navy-mid);
}

.about__body p+p {
  margin-top: 1.4em;
}

/* ── Download Links ── */
.about__downloads ul {
  display: flex;
  gap: 30px;
}


.about__download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
  width: 100%;
  transition: all var(--transition);
}

.about__download-item.btn01,
.about__download-item.btn02,
.about__download-item.btn03 {
  background: #E8F1F7;
}

.about__download-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about__download-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: .06em;
}

.about__download-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-key-1);
  margin-left: 16px;
}

.about__download-arrow svg {
  width: 14px;
  height: 14px;
}

/* ── Right: Content ── */
.about__image img {
  width: 100%;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .about.section {
    padding: 196px 0 0;
  }
  .about__header {
    margin-bottom: 32px;
    text-align: center;
  }

  .about__heading {
    font-size: 24px;
    line-height: 1.5;
  }

  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .about__content {
    display: block;
  }

  .about__body {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .04em;
    margin-bottom: 30px;
  }

  .about__body p+p {
    margin-top: 1.2em;
  }

  .about__downloads ul {
    flex-direction: column;
    gap: 16px;
  }

  .about__download-item {
    min-height: 64px;
    padding: 14px 16px;
  }

  .about__download-name {
    font-size: 14px;
    line-height: 1.5;
  }

  .about__download-arrow {
    width: 28px;
    height: 28px;
    margin-left: 12px;
  }

  .about__image {
    width: min(82%, 320px);
    margin-inline: auto;
  }
}
