/* ==============================================
common
============================================== */
.object-pc {
  display: block;
}
.object-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .object-pc {
    display: none;
  }
  .object-sp {
    display: block;
  }
}

.icon-arrow {
  --_icon: url("../img/common/icon-arrow.svg");
  --_color: currentColor;

  display: inline-block;
  width: 20px;
  height: 16px;
  background: linear-gradient(var(--_color) 0 0), CanvasText;
  mask-image: var(--_icon);
}

.buttonShare {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 110px;
  height: 40px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background-color: #f06400;
  border-radius: 20px;
  text-decoration: none;
  --icon: url("../img/common/icon-mail.svg");
}
.buttonShare::before {
  width: 15px;
  height: 15px;
  content: "";
  display: inline-block;
  mask-image: var(--icon);
  background: currentColor;
}

.buttonShare.-mail {
  background-color: #f06400;
  --icon: url("../img/common/icon-mail.svg");
}

.buttonShare.-facebook {
  background-color: #1464a0;
  --icon: url("../img/common/icon-sns-facebook.svg");
}

.buttonShare.-twitter {
  background-color: #000000;
  --icon: url("../img/common/icon-sns-twitter-x.svg");
}

.buttonShare.-line {
  background-color: #00b414;
  --icon: url("../img/common/icon-sns-line.svg");
}

.articleItem {
}
.articleItem__inner {
  background-color: #fff;
  border: 1px solid #ececec;
  border: 1px solid transparent;
  color: var(--text-dark);
  padding: 5px;
  text-decoration: none;
  height: 100%;
  display: block;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .articleItem__inner:hover {
    background-color: #a5d6e747;
  }
}
.articleItem__thumbnail {
  line-height: 1;
  position: relative;
}
.articleItem__image {
  margin: 0;
}
.articleItem__image img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleItem__cats {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.articleItem__cats .catItem {
  background-color: #1464a0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-width: 120px;
  min-height: 30px;
  font-size: 12px;
  border-radius: 0 4px 0 0;
  padding: 5px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .articleItem__cats .catItem {
    min-width: 80px;
  }
}
.articleItem__content {
  padding: 10px 10px 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .articleItem__content {
    padding: 10px 0px 20px;
  }
}
.articleItem__date {
  font-size: 14px;
}
.articleItem__title {
  display: -webkit-box;
  min-height: 44px;
  min-height: 24px;
  /* min-height: 3.9375em; */
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 5px;
}
.articleItem__text {
  display: -webkit-box;
  min-height: 63px;
  min-height: 3.9375em;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3125;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 5px;
}
.articleItemList {
}
.articleItemList__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .articleItemList__list {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.articleItemList__pagination {
  margin-top: 40px;
}
.pagination {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  font-size: 16px;

  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brown);
  letter-spacing: 0.008em;
}

@media screen and (max-width: 767px) {
  .pagination {
    flex-wrap: wrap;
    gap: 10px;
    font-size: rem(16);
  }
}
.pagination__item {
  box-sizing: border-box;
  display: inline-block;
}
.pagination__item.number {
  width: 40px;
  height: 40px;
  color: var(--color-text);
  /* background-color: rgba($color: #f8f7f4, $alpha: .50); */
  display: grid;
  place-items: center;
  border: 1px solid;
  text-decoration: none;
  border-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
  transition: color 0.3s, background-color 0.3s;
  line-height: 1;
}
.pagination__item.blank {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 28px;
  pointer-events: none;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .pagination__item.blank {
    width: 16px;
  }
}

.pagination__item.prev,
.pagination__item.next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #877b64;
  background-color: var(--color-brown);
  border: 1px solid;
  border: none;
  border-radius: 50%;
}
.pagination__item.prev::after,
.pagination__item.next::after {
  --icon: url("../img/common/icon-arrow.svg");

  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background: linear-gradient(currentColor 0 0), CanvasText;
  mask-image: var(--icon);
}
.pagination__item.prev::after {
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .pagination__item.prev {
    margin-right: 16px;
    margin-left: 0;
  }
}
.pagination__item.next::before {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-left: none;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .pagination__item.next {
    margin-right: 0;
    margin-left: 16px;
  }
}
.pagination__item.current {
  pointer-events: none;
  color: #fff;
  background-color: #53747d;
}

.editorContent a,
.editorContent a:visited {
  color: var(--color-blue);
  text-decoration: underline;
}

/* ==============================================
News Single Page
============================================== */
/* Top Image */
.newsSingle-mainTitle {
  padding: calc(18 / 7.68 * 1vh) calc(44.4 / 14.4 * 1vw) calc(29.4 / 7.68 * 1vh)
    calc(42 / 14.44 * 1vw);
}

.newsSingle-subTitle {
  padding-left: 2.9vw;
  margin-top: calc((-12.4 + -24) * 1px);
}

@media screen and (max-width: 767px) {
  .newsSingle-mainTitle {
    padding: calc(12.3 / 8.44 * 1vh) calc((1 + 33.31) / 3.9 * 1vw)
      calc(21.9 / 8.44 * 1vh) calc(28.7 / 3.9 * 1vw);
  }
  .newsSingle-subTitle {
    padding-left: calc(28.7 / 3.9 * 1vw);
    margin-top: calc((-9.8 + -15) * 1px);
  }
}

.pg-newsSingle {
  --footer-margin: 198px;
  padding-bottom: calc(var(--footer-margin) + 60px);
}
.pg-newsSingle .l-inner {
  width: 100%;
  padding-inline: 15px;
  max-width: 830px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
}
.pg-newsSingle .p-post {
  padding-top: 100px;
}
.pg-newsSingle .p-post__cats {
  margin: 10px 0;
  line-height: 1;
}
.pg-newsSingle .p-post__cats .catItem {
  background-color: #1464a0;
  /* border: 1px solid #1464a0; */
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-width: 120px;
  min-height: 30px;
  font-size: 14px;
  /* border-radius: 0 4px 0 0; */
  border-radius: 4px;
  padding: 5px;
  align-items: center;
  text-decoration: none;
  line-height: 1.4;
  width: auto;
}
@media screen and (max-width: 767px) {
  .pg-newsSingle .p-post__cats .catItem {
    min-width: 80px;
  }
}

.pg-newsSingle .p-post__title {
  margin-bottom: 20px;
}
.pg-newsSingle .p-post__body {
  margin: 40px 0;
}
.pg-newsSingle .p-post__navigation {
  margin: 40px 0;
}

.pg-newsSingle .p-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 5px;
  align-items: center;
  max-width: 490px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
}
.pg-newsSingle .p-navigation a {
  color: var(--color-blue);
}

.pg-newsSingle .p-navigation a:visited {
  color: var(--color-blue);
}

.pg-newsSingle .p-navigation__item {
  display: grid;
  place-items: center;
  height: 100%;
}

.pg-newsSingle .p-navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .pg-newsSingle .p-navigation__link:hover {
    text-decoration: underline;
  }
}

.pg-newsSingle .p-navigation__link.-active {
  width: 140px;
  height: 50px;
  color: #fff;
  background-color: #6e2800;
  border-radius: 25px;
}

.pg-newsSingle .p-navigation__link .icon-arrow {
  width: 16px;
  height: 13px;
  translate: 15px 0;
}
.pg-newsSingle .p-navigation__link.-prev .icon-arrow {
  scale: -1;
  translate: -15px 0;
}

.pg-newsSingle .shereBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 15px 20px;
  /* background-color: rgba($color: #321e00, $alpha: .10); */
  border-radius: 9px;
  background-color: #a5d6e747;
}

@media screen and (max-width: 767px) {
  .pg-newsSingle .shereBox {
    grid-template-columns: 1fr;
  }
}
.pg-newsSingle .shereBox__header {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: rem(16);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pg-newsSingle .shereBox__header {
    justify-content: center;
  }
}
.pg-newsSingle .shereBox__header::before {
  --icon: url("../img/common/icon-share.svg");

  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(currentColor 0 0), CanvasText;
  mask-image: var(--icon);
}

.pg-newsSingle .shereBox__body {
  border-radius: 4px;
}

.pg-newsSingle .shereBox__body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .pg-newsSingle .shereBox__body ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.pg-newsSingle .shereBox__body ul li {
  flex-basis: 140px;
}
.pg-newsSingle .shereBox__body ul li .buttonShare {
  max-width: 100%;
}
.pg-newsSingle .p-section-more {
  padding: 40px 0;
}
.pg-newsSingle .p-section-more .p-sectionTitle {
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ==============================================
News Single Page
============================================== */
/* Top Image */
.newsArchive-mainTitle {
  padding: calc(18 / 7.68 * 1vh) calc(44.4 / 14.4 * 1vw) calc(29.4 / 7.68 * 1vh)
    calc(42 / 14.44 * 1vw);
}

.newsArchive-subTitle {
  padding-left: 2.9vw;
  margin-top: calc((-12.4 + -24) * 1px);
}

@media screen and (max-width: 767px) {
  .newsArchive-mainTitle {
    padding: calc(12.3 / 8.44 * 1vh) calc((1 + 33.31) / 3.9 * 1vw)
      calc(21.9 / 8.44 * 1vh) calc(28.7 / 3.9 * 1vw);
  }
  .newsArchive-subTitle {
    padding-left: calc(28.7 / 3.9 * 1vw);
    margin-top: calc((-9.8 + -15) * 1px);
  }
}

.pg-newsArchive {
  --footer-margin: 198px;
  padding-bottom: calc(var(--footer-margin) + 60px);
}
.pg-newsArchive .l-inner {
  width: 100%;
  padding-inline: 15px;
  max-width: 1030px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
}

.pg-newsArchive .p-section-main {
  padding-top: 100px;
}
.pg-newsArchive .p-archiveTitle {
  margin-bottom: 20px;
}
