@import url(common.css);

section img {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

section h2 {
  font-size: 28px;
  padding: 49px 0 40px 0;
}

section p {
  margin: 0 100px;
  text-align: left;
  line-height: normal;
}

/* スライドボタン */
.prev {
  position: absolute;
  z-index: 1;
  left: 170px;
  top: 120px;
  cursor: pointer;
}
.next {
  position: absolute;
  right: 170px;
  top: 120px;
  cursor: pointer;
}

button {
  margin: 80px 0 120px 0;
}

/* レスポンシブ */
@media (max-width: 1600px) {
  .prev {
    position: absolute;
    z-index: 1;
    left: -15px;
    top: 110px;
    width: 80px;
    height: auto;
  }
  .next {
    position: absolute;
    right: -15px;
    top: 110px;
    width: 80px;
    height: auto;
  }
}
@media (max-width: 767px) {
  section img {
    max-width: 300px;
  }
  section p {
    margin: 0;
  }
  .prev {
    top: 70px;
    width: 50px;
  }
  .next {
    top: 70px;
    width: 50px;
  }
}
