body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 1.6em;
  line-height: 2.4;
  text-align: left;
}
/* ===== About ===== */
.about {
  background: url('../image/about/about_bg.jpg') bottom/ contain no-repeat;
  padding: 0 24px;
}
.about__inner {
  max-width: 1150px;
  aspect-ratio: 1028 / 255;
  margin: 60px auto 0;
}
.about__inner__sp {
  display: none;
}
.about__heading {
  max-width: 644px;
  margin: 60px auto 80px;
}
.about__heading h1 {
  display: none;
}
.about__heading__sp{
  display: none;
}
.about__body {
  margin: 0 auto ;
  text-align: center;
  padding-bottom: 200px;
}
.about__text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #001738;
  line-height: 2.5;
  margin-top: 30px;
  text-shadow: 
    0 0 40px  rgba(255,255,255,1),
    0 0 40px  rgba(255,255,255,1),
    0 0 40px  rgba(255,255,255,1),
    0 0 40px  rgba(255,255,255,1);
}
@media (max-width: 800px) {
.about {
  background: url('../image/about/about_bg_sp.png') bottom/ contain no-repeat;
  padding: 0 24px;
}
  .about__inner__pc {
  display: none;
}
  .about__inner__sp {
  display: block;
}
  .about__heading {
  width: 80vw;
  margin: 20px auto 50px ;
}
  .about__heading__pc{
  display: none;
}
  .about__heading__sp{
  display: block;
    margin: 0 auto ;
}
}
/* ===== profile ===== */
.company-profile {
  max-width: 645px;
  margin: 80px auto 120px;
  padding: 0 40px;
}

.company-profile__title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #173D80;
  margin-bottom: 16px;
}

.company-profile__list {
  border-top: 1px solid #ccc;
}

.company-profile__row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.company-profile__row dt {
  flex: 0 0 100px;
  font-size: 14px;
  color: #333;
}

.company-profile__row dd {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}