@charset "utf-8";
/* CSS Document */
.main {
  margin: 0px auto 60px;
  padding-top: 80px;
}
.section-works {
  background-color: #fff;
  padding: 0px 24px;
  margin: 0px auto 80px;
}
.section-works h2 {
  letter-spacing: 0.4rem;
  margin: 0 auto 30px;
}
.works-item {
  max-width: 326px;
  height: 326px;
  margin: 0 auto 20px;
  border: solid #777 1px;
}
.works-item:last-child {
  margin-bottom: 34px;
}
.works-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.more-button {
  display: inline-block;
  width: 220px;
  height: 50px;
  background-color: #ff6a4e;
  margin: 0 auto;
  box-shadow: 5px 5px #333;
  color: #fff;
  text-decoration: none;
  font-family: "century-gothic", AppleGothic, sans-serif;
  letter-spacing: 0.2rem;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
}
@media(min-width:1160px) {
  .section-works {
    margin-bottom: 0px;
    padding: 0px;
  }
  .section-works h2 {
    font-size: 4.0rem;
    letter-spacing: 1.2rem;
    padding-top: 80px;
    margin-bottom: 45px;
  }
  .works-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1148px;
    margin: 0 auto 10px;
  }
  .works-item {
    width: 265px;
    height: 265px;
    margin: 10px 20px 10px 0px;
  }
}
.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;
  content: "";
  border-radius: 8px;
  position: absolute;
  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;
}
.info-button:hover {
  transform: translateY(4px);
}
.info-button:hover::before {
  transform: translate(-6px, -6px);
  opacity: 0;
}
@media(min-width:1160px) {
  .info-button {
    max-width: 460px;
  }
}
.section-img {
  padding: 20px 24px 0px;
}
.section-img h2 {
  text-align: left;
  font-size: 2.0rem;
  max-width: 800px;
  margin: 0px auto;
}
.img-area {
  max-width: 800px;
  height: auto;
  margin: 10px auto;
}
.section-img img {
  width: 100%;
  object-fit: cover;
}
.section-description {
  padding: 0px 24px;
}
.section-description__comment {
  max-width: 800px;
  text-align: left;
  margin: 0px auto 20px;
}
.section-description__deta {
  max-width: 800px;
  background-color: #ffdcd6;
  margin: 0px auto 40px;
  padding: 10px 24px 30px;
}
.description-flex dt {
  width: 140px;
  height: 20px;
  font-weight: 600;
  text-align: left;
  padding-top: 2px;
  padding-bottom: 10px;
  margin-right: 20px;
  margin-top: 10px;
}
.description-flex dd {
  text-align: left;
  padding-bottom: 10px;
  border-bottom: solid 1px #777;
}
@media(min-width:1160px) {
  .section-img h2 {
    padding-top: 20px;
  }
  .img-area {
    max-width: 600px;
    height: auto;
    margin: 10px auto;
  }
  .section-description {
    max-width: 800px;
    margin: 0px auto 40px;
    padding: 0px 24px;
  }
  .section-description__deta {
    max-width: 800px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .description-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: solid 1px #777;
    padding-top: 15px;
    padding-bottom: 5px;
  }
  .description-flex dt {
    padding: 0px;
    margin: 0px;
  }
  .description-flex dd {
    border: none;
  }
}