/* 作成者 田島 */
/* single */


/* 全体設定 */

.single_wrap {
  max-width: 90rem;
  margin: 0 auto;
  margin-top: 10rem;
  margin-bottom: 10rem;
  color: #333;
}

/* コンテンツ設定 */

.single_date {
  font-size: 1.6rem;
  color: #707071;
  font-weight: 400;
}

.single_title {
  font-size: 1.6rem;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
  font-weight: 500;
}

.single_img_wrap {
  width: 90rem;
  height: 50.7rem;
}

.single_text_wrap {
  width: 81.6rem;
  margin-top: 3rem;
  margin-bottom: 7rem;
}

.single_text_content {
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-bottom: 3rem;
}

.single_text_content:last-child {
  margin-bottom: 0;
}

.single_text_content p {
  margin-bottom: 2.4rem;
  line-height: calc(24 / 16);
  color: #000;
  font-weight: 500;
}

.single_text_content p:last-child {
  margin-bottom: 0;
}

/* リンクボタン部分 */

.single_return_btn {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 1.1rem 3rem 1rem 3.5rem;
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  z-index: 10;
}

.single_btn_wrap {
  width: 28.1rem;
  height: 5rem;
  margin: 0 auto;
  position: relative;
  background-color: #F38200;
  border-radius: 2.5rem;
}

.single_btn_wrap::after {
  position: absolute;
  content: "";
  background-image: url(../img/btn_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.77rem;
  height: 2rem;
  top: 1.55rem;
  right: 3rem;
  transition: all 0.2s;
}

.single_btn_wrap:hover::after {
  transform: translateX(1rem);
}

/* レスポンシブ */

@media screen and (max-width:699.98px) {

  /* 全体設定 */

  .single_wrap {
    margin-top: 5rem;
    width: 34.5rem;
  }

  /* コンテンツ設定 */

  .single_title {
    margin-bottom: 2.5rem;
  }

  .single_img_wrap {
    width: 34.5rem;
    height: 19.4rem;
  }

  .single_text_wrap {
    width: 34.5rem;
    margin-top: 2.5rem;
    margin-bottom: 6rem;
  }

  .single_text_content {
    font-weight: 400;
  }

  .single_text_content p {
    font-weight: 400;
  }

}