/* .about */

.about {
  padding: 25px 0;
  font-family: "游明朝", "Yu Mincho", serif;
  color: #707070;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image {
  width: 85%;
  margin: auto;
}

.about h1 {
  font-size: 35px;
  position: relative;
  background: url("../img/hero-img.png") no-repeat center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  letter-spacing: 2px;
}

.about h1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.about-text p {
  padding: 50px 0 25px;
}

.about-text span {
  display: block;
  padding-top: 25px;
}

.about img {
  width: 100%;
  height: auto;
}

.about .profile {
  font-size: 14px;
  padding-top: 15px;
}

.about .profile section {
  display: flex;
}

.about .profile section + section {
  padding-top: 25px;
}

.about .profile .head {
  width: 25%;
  padding: 0;
  font-weight: bold;
  text-align: justify;
  text-align-last: justify;
}

.about .profile span {
  width: 10%;
  padding: 0;
  font-weight: bold;
  text-align: center;
}

.about .profile .body {
  padding: 0;
  flex: 1;
}

.about .sns {
  text-align: center;
  padding: 30px 0 0;
}

.about .sns h2 {
  font-size: 25px;
  padding: 20px;
}

.sns-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .sns section {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.about .sns h3 {
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
}

.about .sns a {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  
  font-size: 14px;
  color: #707070;
  transition: opacity 0.4s;
}

.about .sns a:hover {
  opacity: 0.6;
}

@media (min-width: 760px) {
  .about-image {
    width: 95%;
  }

  .about-content {
    display: flex;
    gap: 40px;
  }

  .profile,
  .sns {
    flex: 1;
  }
}

@media (min-width: 960px) {
  .about img {
    height: 700px;
    object-fit: cover;
  }
}
