/* CSS Document */
body {
  background-color: #F1F5F7;
}

.profile-mainvisual {
  background-image: url(../img/profile.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 20% 50%;
  height: 600px;
  display: grid;
}
.profile-mainvisual > * {
  grid-area: 1/-1;
}
.profile-mainvisual .band {
  justify-self: end;
  align-self: flex-end;
  padding: 24px 80px;
  margin-bottom: 8%;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: right;
  display: grid;
}
.profile-mainvisual .band > * {
  grid-area: 1/-1;
}
.profile-mainvisual .band span {
  font-family: "Lato";
  font-weight: 600;
  font-size: 3.8rem;
  color: #E79E99;
}
.profile-mainvisual .band h1 {
  color: #005EAD;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  align-self: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .profile-mainvisual {
    height: 400px;
  }
  .profile-mainvisual .band {
    padding: 24px 40px;
  }
  .profile-mainvisual .band span {
    font-size: 2rem;
  }
  .profile-mainvisual .band h1 {
    font-size: 3rem;
  }
}

.profile {
  margin-top: 100px;
}
.profile h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}
.profile .pro-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 100px auto;
}
.profile .pro-photo .itemimg {
  width: 33.3333333333%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.618/1;
  border: 0;
}
@media (max-width: 520px) {
  .profile {
    margin-top: 60px;
  }
  .profile h2 {
    margin-bottom: 24px;
  }
  .profile .pro-photo {
    flex-direction: column;
    gap: 8px;
    margin: 60px auto;
  }
  .profile .pro-photo .itemimg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.history {
  margin-bottom: 80px;
}
.history h2 {
  position: relative;
  border-bottom: 5px solid #ddd;
  padding: 10px 0;
  font-size: 2.5rem;
}
.history h2::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 20%;
  height: 5px;
  content: "";
  background: #27acd9;
}
.history img {
  margin-top: 40px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.common-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #ccc;
}
.common-table dt {
  width: 25%;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
.common-table dd {
  width: 75%;
  padding: 20px 0 20px 48px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 520px) {
  .common-table dt {
    padding: 20px 0 20px 8px;
    font-size: 1.6rem;
  }
  .common-table dd {
    padding: 20px 8px 20px 24px;
  }
}/*# sourceMappingURL=profile.css.map */