@charset "utf-8";

/* -----------------------------------------
Profile
-------------------------------------------*/
.profile {
  background-color: var(--color-bg-gray);
}
.profile__section-title::after {
  background-color: var(--color-bg-white);
}
.profile__container {
  display: flex;
  gap: 54px;
  justify-content: space-between;
  padding: 160px 0 0;
}
.profile__img {
  max-width: 315px;
  object-fit: contain;
}
.profile__content {
  width: 60%;
}
.profile__name {
  font-size: clamp(1.375rem, 1.284rem + 0.45vw, 1.625rem); /*22px,26px*/
  margin-bottom: 90px;
}
.profile__en {
  font-family: var(--font-en-accent);
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem); /*16px,18px*/
  letter-spacing: 0.1em;
  padding-left: 24px;
}
.profile-dl {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem); /*16px,20px*/
  display: flex;
  flex-wrap: wrap;
}
.profile-dt {
  flex-basis: 25%;
  padding: 1rem 0;
}
.profile-dd {
  line-height: 1.4;
  text-indent: -1rem;
  flex-basis: 75%;
  padding: 1rem 0 1rem 1rem;
}
.profile-dd_indent {
  margin-left: 25%;
}

/* :::::::::::::::: SP ::::::::::::::::: */
@media (max-width: 768px) {
  .profile__container {
    flex-direction: column;
    gap: 24px;
    padding-top: 100px;
  }
  .profile__img {
    margin: 0 60px 0 auto;
  }
  .profile__content {
    width: 100%;
  }
  .profile__name {
    margin-bottom: 46px;
  }
  .profile__en {
    font-family: var(--font-en-accent);
    letter-spacing: 0.1em;
    padding-left: 24px;
  }
  .profile-dl {
    flex-direction: column;
  }
  .profile-dt {
    flex-basis: 25%;
    padding: 0.5rem 0;
  }
  .profile-dd {
    padding-top: 0;
  }
  .profile-dd:last-child {
    margin-left: 0;
  }
}

/* -----------------------------------------
Strengths
-------------------------------------------*/
.strengths {
  background-color: var(--color-bg-yellow);
}
.strengths__section-title::after {
  margin: 0 0 8px -44px;
}
.strengths__lead {
  text-align: center;
  margin-top: 160px;
}
.strengths__cards {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin-top: 120px;
}
.strengths-card {
  max-width: 320px;
  text-align: center;
}
.strengths-card__number {
  font-size: 20px;
  margin-bottom: 36px;
}
.strengths-card__number span {
  border-bottom: 1px solid var(--color-bg-black);
}
.strengths-card__title-en {
  font-family: var(--font-en-accent);
  font-size: clamp(1.625rem, 1.55rem + 0.38vw, 2rem); /*26px 32px*/
}
.strengths-card__icon {
  width: 134px;
  position: relative;
  z-index: -1;
  margin: -20px 0 20px;
}
.strengths-card__title-ja {
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem); /*22px 26px*/
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.strength-card__bar {
  width: 1px;
  height: 26px;
  display: inline-block;
  background-color: var(--color-bg-black);
  margin-bottom: 16px;
}

.news__section-title::after {
  margin: 0 0 8px -128px;
}

@media (max-width: 768px) {
  .strengths__lead {
    text-align: left;
    margin-top: 100px;
  }
  .strengths__cards {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
  .strengths-card {
    width: 100%;
    margin: 0 16px;
  }
  .strengths-card__title-ja {
    margin-top: -40px;
  }
}

/* -----------------------------------------
News
-------------------------------------------*/
.news__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 160px;
}
.news__date {
  width: 140px;
  height: 36px;
  background-color: var(--color-bg-gray);
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); /*16px,20px*/
  font-weight: bold;
  padding-top: 8px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .news__item {
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
  }
  .news__date {
    font-size: 14px;
    height: 28px;
  }
}
