@charset "UTF-8";

* {
  box-sizing: border-box;
}


main {
  background-image: url(../img/bg_2.png);
}


/* header */
header {
  background: #FFFFFF;
}

.header_item p {
  color: #5C4243;
}


/* ハンバ-ガー */
.hamburger1 .MenuBtn-BarFrame-FirstBar {
  background-color: #5C4243;
}

.hamburger1 .MenuBtn-BarFrame-SecondBar {
  background-color: #5C4243;
}

.hamburger1 .MenuBtn-BarFrame-ThirdBar {
  background-color: #5C4243;
}

/* news_top */

.news_top {
  padding-top: 8rem;
}

/* news_maincontent */

.news_maincontent {
  padding-block: 7rem;
}

.news_lists {
  width: 86%;
  margin-inline: auto;
}

li.news_item {
  display: flex;
  padding: 6rem 6rem 3rem 6rem;
  gap: 7rem;
  background-color: #FFFFFF;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

li.news_item+li.news_item {
  margin-top: 5.5rem;
}

.news_item_text_area {
  width: 65%;
}

.news_item_img_area {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .readmore_area {
    margin-right: 0;
  }
}

.news_item_img {
  width: 100%;
  padding-top: 6rem;
}


.news_item_img_area .readmore_txt {
  white-space: nowrap;
}

.news_item_top_area {
  display: flex;
  gap: 3rem;

  p {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.news_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3.5rem;
}

.news_txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: 400;
  margin-top: 2rem;
}

@media (max-width: 834px) {
  .news_title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 3.5rem;
  }

  .news_txt {
    font-size: 2rem;

  }

  .news_item_top_area {
  p {
    font-size: 1.8rem;
    font-weight: 400;
  }
}
}


/* pagination */

.news_blog_pagination {
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.pagination_wrapper {
  width: 84%;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  gap: 3.5rem;
}

.pagination_txt {
  font-family: "Cormorant SC", serif;
  font-weight: 500;
  font-size: 3.6rem;
}

.pagination_active {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #C69090;
  text-align: center;

  p {
    line-height: 5rem;
  }
}

.pagination_inactive {
  width: 5rem;
  height: 5rem;

  p {
    line-height: 5rem;
  }
}