@charset "UTF-8";

/*=======================================================
#features 主な特徴
=======================================================*/
#features {
  padding: 10rem 0 8rem;
  background-color: var(--color_5);
}

.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 8rem;
}

.feature__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feature__ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -1.5em auto 2.4rem -1em;
  padding: 0.5em 1em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  background-color: var(--color_3);
  z-index: 1;
}

@media screen and (max-width: 896px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .feature__ttl {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 600px) {
  #features {
    padding: 8rem 0 4.8rem;
  }
  .features__ttl-big {
    display: block;
    font-size: 2rem;
  }
  .features__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  .feature__img {
    max-width: 350px;
    margin: auto;
  }
  .feature__ttl {
    margin: -1.5em auto 1.6rem -1em;
    font-size: 1.8rem;
  }
}

/*=======================================================
#overview 事業概要
=======================================================*/
#overview {
  padding: 10rem 0 8rem;
}

.overview__table {
  width: 88rem;
  margin: 4rem 0 0 auto;
  padding: 4rem;
  background-color: var(--color_5);
  border-radius: 2rem;
}

.overview__table table {
  width: 100%;
}

.overview__table th,
.overview__table td {
  padding: 2.4rem 0;
  line-height: 3rem;
  vertical-align: top;
  border-bottom: var(--color_1) 3px solid;
}

.overview__table th {
  width: 35%;
}

.overview__table td {
  width: 65%;
  font-size: 87.5%;
}
.overview__table td span {
  display: inline-block;
}

@media screen and (max-width: 896px) {
  .overview__table {
    width: 100%;
  }
  .overview__table tr td {
    font-size: 100%;
  }
}

@media screen and (max-width: 600px) {
  #overview {
    padding: 8rem 0 4.8rem;
  }

  .overview__table,
  .overview__table tbody,
  .overview__table tr,
  .overview__table th,
  .overview__table td {
    display: block;
    width: 100%;
  }
  .overview__table {
    margin: 4rem 0 0 auto;
    padding: 2rem;
  }
  .overview__table th {
    position: relative;
    padding: 1.6rem 0 0 1em;
    border-bottom: none;
  }
  .overview__table th::before {
    content: "■";
    position: absolute;
    top: 1.6rem;
    left: -0.2em;
    color: var(--color_3);
  }
  .overview__table td {
    padding: 1rem 0 1.6rem 1em;
    line-height: 2;
  }
}

/*=======================================================
#profile つくるヒト
=======================================================*/
#profile {
  padding: 10rem 0 8rem;
}

.content__wrap-p {
  width: 88rem;
}

.content__head-p .content__en {
  text-align: center;
}

.content__head-p .content__ttl-big {
  margin: auto;
}

.profile__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.profile__img {
  position: relative;
  display: flex;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 26rem;
  margin-left: 0.5rem;
  background-color: var(--color_5);
  border-radius: 50%;
}
.profile__img::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -0.5rem;
  width: 42%;
  height: 85%;
  background-color: var(--color_3);
}

.profile__img img {
  width: 70%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.profile__txt {
  width: 52rem;
}

.profile__name {
  margin-bottom: 3.2rem;
}
.profile__desc {
  font-size: 87.5%;
  line-height: 2;
}

.profile__likes {
  margin: 5rem auto 0;
}

.profile__likes h3 {
  text-align: center;
}

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.8em;
  padding: 1.6rem;
  font-size: 87.5%;
  line-height: 2;
  background-color: var(--color_5);
  border: var(--color_7) 1px solid;
}

.profile__tags span {
  display: inline-block;
}

@media screen and (max-width: 896px) {
  .content__wrap-p {
    width: 100%;
  }
  .profile__img {
    width: 28%;
  }
  .profile__txt {
    width: 68%;
  }
}
@media screen and (max-width: 600px) {
  #profile {
    padding: 8rem 0 4.8rem;
  }
  .profile__flex {
    display: block;
  }
  .profile__img {
    width: 50%;
    margin: auto;
  }
  .profile__txt {
    width: 100%;
    margin: 2.4rem 0 0;
  }
  .profile__txt h3 {
    text-align: center;
  }
  .profile__name {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .profile__likes {
    margin: 2.4rem auto 0;
  }
}
