/* 作成者名：　坂井 */

/* 使用フォント */
/* タスク：ヘッダーがまだないので後でフォント追加する（Shippori Mincho B1, Bold） */
:root {
  --NotoSans: "Noto Sans JP", sans-serif;
  --ZenMaru: "Zen Maru Gothic", sans-serif;
}

:root {
  /* font-weight */
  --thin: 100;
  --extralight: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extrabold: 800;
  --black: 900;
}

.single_news_page {
  width: 100%;
}

.single_titleSec {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* トップ画像 */
.single_top_img {
  position: absolute;
  width: 31rem;
  height: 31rem;
  top: 5rem;
  left: 0;
  overflow: hidden;
  mask-image: url(../img/mask_img.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  z-index: -2;
}


.single_top_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  opacity: 0.5;
  z-index: 0;
}



/* ヘッダーがまだないので後でフォント追加する（Shippori Mincho B1, Bold） */
.single_title_text {
  font-family: var(--Shippori);
  font-size: 3rem;
  font-weight: var(--bold);
  color: #342019;
  line-height: 4.4rem;
  margin-top: 15rem;
}

/* 記事詳細 */
.single_wrapper {
  width: 100%;
  margin-top: 15rem;
  margin-bottom: 15rem;
  padding-left: 22.9rem;
  padding-right: 20.1rem;
}

.single_img {
  width: 85rem;
  height: 55rem;
  border-radius: 4rem;
  object-fit: cover;
}

.single_contents {
  margin-top: 2.5rem;
}

.single_contents_top {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: 2rem;
}

.single_date {
  font-family: var(--NotoSans);
  font-size: 1.8rem;
  font-weight: var(--medium);
  color: #e7977e;
}

.single_category {
  background-color: #e7977e;
  padding: 0.2rem 0.8rem 0.2rem 1rem;
  color: #ffffff;
  font-family: var(--NotoSans);
  font-weight: var(--regular);
  font-size: 1.2rem;
  height: 2rem;
}

.single_title {
  margin-top: 2.2rem;
  color: #342019;
  font-family: var(--NotoSans);
  font-weight: var(--bold);
  font-size: 2rem;
  letter-spacing: 0rem;
  line-height: calc(35 / 20);
}

.single_text {
  margin-top: 2.5rem;
  color: #342019;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  font-size: 1.7rem;
  letter-spacing: 0rem;
  line-height: calc(35 / 17);
}

.to_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 3.6rem;
  margin: 10rem auto 0;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  font-size: 1.7rem;
  color: #ffffff;
  background-color: #e7977e;
  border-radius: 0.5rem;
}

/* モバイル対応 */
@media screen and (max-width: 699.98px) {

  /* トップ画像 */
  .single_top_img {
    width: 20rem;
    height: 20rem;
    top: 0;
  }

  .single_title_text {
    margin-top: 10.4rem;
  }

  /* 記事詳細 */
  .single_wrapper {
    width: 100%;
    margin-top: 7.5rem;
    margin-bottom: 15rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .single_img {
    width: 34.5rem;
    height: 27.4rem;
  }

  .single_contents {
    margin-top: 1.5rem;
  }

  .single_title {
    margin-top: 1.7rem;
    font-size: 2rem;
    letter-spacing: 0rem;
    line-height: calc(35 / 20);
  }

  .single_text {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: calc(35 / 15);
  }
}