/* ---------------------------------- */
/* ブレイクポイントは下記を使用して下さい */
/* ---------------------------------- */
/* 非常に小さなスクリーン向け (420px以下) */
/* @media screen and (max-width: 420px) {
  } */

/* スマートフォン向け (768px以下) */
/* @media screen and (max-width: 768px) {
  } */

/* タブレット向け (1024px以下) */
/* @media screen and (max-width: 1024px) {
  } */

/* 削除しないで下さい。
header用のスタイル */
.header__inner--news-single {
  background-color: #36563c;
  min-height: 228px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__inner--news-single {
    min-height: 150px;
  }
}
@media screen and (max-width: 420px) {
  .header__inner--news-single {
    min-height: 100px;
  }
}

.header__menu--single {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 420px) {
  .header__menu--single {
    align-items: center;
  }
}

.header__menu-logo--single {
  padding: 0 0 40px 32px;
}

.header__menu-logo--single img {
  width: 100%;
  max-width: 451px;
  aspect-ratio: 451 / 111;
  height: auto;
  rotate: -5deg;
}

@media screen and (max-width: 1024px) {
  .header__menu-logo--single {
    padding: 0 0 20px 20px;
  }

  .header__menu-logo--single img {
    max-width: 300px;
    aspect-ratio: 300 / 74;
  }
}

@media screen and (max-width: 420px) {
  .header__menu-logo--single {
    padding: 0 0 10px 10px;
  }

  .header__menu-logo--single img {
    max-width: 200px;
    aspect-ratio: 200 / 50;
  }
}

.header__menu-map--single {
  display: none;
}
/* ここまで削除しないで下さい */

/* ここから記述して下さい */

.scroll-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 64px;
  background: rgba(54, 86, 60, 0.8);
  border-radius: 50%;
  width: clamp(60px, 10vw, 125px);
  height: clamp(60px, 10vw, 125px);
  min-height: 0;
  z-index: 1000;
  color: #fbf6e8;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  top: 16%;
  width: clamp(11px, 5vw, 28px);
  height: clamp(11px, 5vw, 28px);
  min-height: 0;
  background-image: url(../img/svg/page-top__btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.scroll-top a {
  position: absolute;
  top: clamp(-1%, 10vw, 50%);
  min-height: 0;
}

/* 記事 */

.article {
  padding-top: 228px;
}

.article__container-1 {
  background: linear-gradient(180deg, #36563c 0%, #36563c 50%, #fbf6e8 50%, #fbf6e8 100%);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 64px;
}

.article__header {
  text-align: left;
  justify-content: space-between;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  border-bottom: solid 1px #ffffff;
  padding-bottom: 16px;
}

.article__header-title {
  font-size: 1.875rem;
}

.article__header-time {
  font-size: 1.25rem;
  display: block;
  font-family: "Work Sans";
  text-align: right;
  margin-top: 10px;
}

.article_img {
  width: 100%;
  max-width: 700px;
  margin: 15px auto;
}

.article_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.archive__tag-list {
  display: flex;
  gap: 10px;
  border-top: solid 0.5px #373c38;
  border-bottom: solid 0.5px #373c38;
  padding: 16px 0px;
  max-width: 900px;
  margin: 16px auto 0px;
}

.archive__tag-item {
  border: solid #373c38 0.2px;
  border-radius: 10px;
  font-size: 0.875rem;
  padding: 2px 10px;
}

.article__container-2 {
  background-color: #fbf6e8;
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.article__txt {
  max-width: 900px;
  margin: 0px auto 80px;
  font-size: 1rem;
  padding-top: 25px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: justify;
}

.btn--primary {
  display: block;
  margin: 20px auto 0px;
  width: fit-content;
}

.article__link {
  /* text-decoration: underline 0.5px; */
  border-bottom: solid 0.5px;
}

@media screen and (max-width: 1024px) {
  .article__header {
    max-width: 600px;
  }

  .article__header-title {
    font-size: 1.5rem;
  }

  .article__header-time {
    font-size: 1rem;
  }

  .archive__tag-list {
    max-width: 600px;
  }

  .archive__tag-item {
    /* font-size: 1rem; */
  }

  .article__txt {
    /* font-size: 1.2rem; */
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .article {
    padding: 150px 0px 0px;
  }

  .article__container-1 {
    padding: 50px 10% 0px;
  }

  .article__header {
    display: block;
    /* max-width: fit-content; */
  }

  .article__header-title {
    text-align: left;
  }

  .article__header-time {
    font-size: 0.75rem;
    display: block;
    font-family: "Work Sans";
    text-align: right;
    margin-top: 10px;
  }

  .article__container-2 {
    padding: 0px 10% 64px;
  }

  .article__txt {
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    padding-top: 16px;
  }

  .archive__tag-item {
    font-size: 0.8rem;
  }

  .archive__tag-list {
    flex-wrap: wrap;
  }

  .scroll-top {
    font-size: 0.6875rem;
    letter-spacing: 1.4px;
    gap: 0;
    right: 32px;
  }
}

@media screen and (max-width: 420px) {
  .article {
    padding: 100px 0px 0px;
  }

  .article__header-title {
    text-align: left;
    font-size: 1rem;
  }

  .article__container-2 {
    padding: 0px 10% 64px;
  }

  .article__header {
    border-bottom: solid 0.5px;
  }

  .article__header-time {
    font-size: 0.75rem;
    display: block;
    font-family: "Work Sans";
    text-align: right;
    margin-top: 10px;
  }

  .article__txt {
    font-size: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0.36px;
  }

  .archive__tag-list {
    padding: 10px 0px;
  }
  .archive__tag-item {
    font-size: 0.625rem;
  }
}

.btn_news--single {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #36563c;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: clamp(13px, 1.5vw, 16px) clamp(11px, 2vw, 24px);
  border-radius: clamp(5px, 1vw, 10px);
  border: clamp(0.5px, 0.2vw, 1px) solid #36563c;
  text-decoration: none;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .btn_news--single {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.btn_news--single .btn_news--single__icon {
  display: inline-block;
  margin-right: 7px;
  width: 10px;
  height: 9px;
  background-image: url("../img/svg/news_archive-arrow.svg"); /* アイコン画像 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
