@charset "utf-8";
/* CSS Document */
.main {
  margin: 0px auto 60px;
  padding-top: 80px;
}
.section-top {
  margin: 0px auto 10px;
  max-width: 327px;
  padding: 0px 24px 20px;
}
.section-top h2 {
  display: inline-block;
  text-align: left;
  line-height: 3.6rem;
  letter-spacing: 0.4rem;
  font-weight: 700;
}
.section-top__image {
  max-width: 327px;
  height: 306px;
  margin: 0px auto;
}
.section-top__image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
@media(min-width:1160px) {
  .section-top {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    height: 600px;
    margin: 0 auto;
  }
  .section-top h2 {
    font-size: 5.6rem;
    line-height: 8.4rem;
    letter-spacing: 1.0rem;
    padding-top: 230px;
    width: 60%;
  }
  .section-top__image {
    max-width: 416px;
    height: 100%;
    margin: 0px;
    padding-top: 100px;
  }
  .section-top__image img {
    width: 100%;
    height: 100%;
  }
}
.section-works {
  background-color: #ffdcd6;
  padding: 50px 24px 43px;
  margin-bottom: 80px;
}
.section-works h2 {
  letter-spacing: 0.4rem;
  margin: 0 auto 30px;
}
.works-item {
  max-width: 326px;
  height: 326px;
  margin: 0 auto 20px;
}
.works-item:last-child {
  margin-bottom: 34px;
}
.works-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(min-width:1160px) {
  .section-works {
    margin-bottom: 100px;
  }
  .section-works h2 {
    font-size: 4.0rem;
    letter-spacing: 1.2rem;
    margin-bottom: 45px;
  }
  .works-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1160px;
    margin: 0 auto 10px;
  }
  .works-item {
    width: 265px;
    height: 265px;
  }
}
.section-about {
  padding: 0px 24px 70px;
}
.section-about h2 {
  letter-spacing: 0.4rem;
  margin: 0 auto 40px;
}
.section-about__image {
  max-width: 200px;
  height: 200px;
  margin: 0px auto 10px;
}
.section-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about__profile-name h3 {
  font-size: 24px;
  letter-spacing: 0.2rem;
  margin-bottom: 5px;
}
.section-about__profile-name p {
  letter-spacing: 0.2rem;
  margin-bottom: 32px;
}
.section-about__profile-description {
  margin: 0px auto 38px;
  max-width: 760px;
}
.section-about__profile-description p {
  text-align: left;
}
@media(min-width:1160px) {
  .section-about h2 {
    font-size: 4.0rem;
    letter-spacing: 1.2rem;
    margin-bottom: 45px;
  }
  .about-flex {
    display: flex;
    justify-content: center;
    max-width: 830px;
    margin: 0 auto;
  }
  .section-about__image {
    width: 30%;
    height: 100%;
    padding-top: 10px;
  }
  .section-about__profile {
    width: 70%;
    text-align: left;
    padding-left: 40px;
  }
}
.section-contact {
  padding: 0px 24px;
  margin-bottom: 70px;
}
.section-contact h2 {
  letter-spacing: 0.4rem;
  padding-top: 60px;
  margin: 0 auto 40px;
  border-top: solid #777 1px;
}
.section-contact__description {
  margin-bottom: 40px;
}
@media(min-width:1160px) {
  .section-contact h2 {
    font-size: 4.0rem;
    letter-spacing: 1.2rem;
    margin-bottom: 45px;
    padding-top: 80px;
    max-width: 1040px;
  }
}
.info-button {
  display: block;
  margin: 0px auto;
  max-width: 323px;
  height: 80px;
  position: relative;
  color: #333;
  font-weight: 700;
  font-size: 2.0rem;
  text-decoration: none;
  letter-spacing: 0.1rem;
  line-height: 80px;
  transition-duration: .4s;
}
.info-button::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 8px;
  background: url("../img/common/info-button_back.png");
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  z-index: -1;
  transition-duration: .4s;
}
.info-button::after {
  display: block;
  content: "";
  border-radius: 8px;
  border: 2px solid #ff6a4e;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

@media(min-width:1160px) {
  .info-button {
    max-width: 460px;
  }
  .info-button:hover {
  transform: translateY(4px);
}
.info-button:hover::before {
  transform: translate(-6px, -6px);
  opacity: 0;
}
}