@charset "UTF-8";
/* =========================================
topics-single
========================================= */
.pg_topics_contents {
  padding-bottom: 130px;
}

.pg_catetory {
  position: relative;
  margin: 0 auto 80px;
  padding: 76px 0 92px;
  text-align: center;
}
.pg_catetory .ja {
  display: block;
  padding-left: 0.1em;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.pg_catetory .en {
  display: block;
  padding-left: 0.1em;
  color: var(--color_accent);
  font-family: var(--font_accent);
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.pg_catetory::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 20px;
  margin: 0 auto;
  background: url(../../img/common/title_bg.svg) no-repeat 0 0/contain;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_topics_contents {
    padding: 0 15px 25px;
  }
  .pg_catetory {
    margin: 0 0 41px;
    padding: 45px 0 60px;
  }
  .pg_catetory::after {
    width: 10px;
    height: 16px;
  }
  .pg_catetory .ja {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  .pg_catetory .en {
    font-size: 1.3rem;
  }
}
/* =========================================
pg_item
========================================= */
.pg_item_column {
  display: grid;
  grid-template-columns: 415px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 40px;
  grid-template-areas: "gallery single_header" "gallery item_box";
  max-width: 830px;
  margin: 0 auto;
  word-break: break-word;
}

.pg_item_header {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: single_header;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 19px;
}

.pg_item_photo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: gallery;
}

.pg_item_box {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: item_box;
}

.pg_item_header_title {
  font-size: 2rem;
}

.pg_item_header_new {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 20px;
  margin-bottom: 15px;
  background-color: #ffc200;
  color: var(--color_accent);
  font-family: var(--font_accent);
  letter-spacing: 0.05em;
}

.pg_item_header_time {
  display: block;
  margin-bottom: 7px;
  letter-spacing: 0;
}

.pg_item_photo img {
  display: block;
  border-radius: 5px;
}

.pg_item_box {
  line-height: 1.5;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_item {
    margin-bottom: 46px;
  }
  .pg_item_column {
    display: block;
    margin: 0;
  }
  .pg_item_header {
    margin-bottom: 22px;
  }
  .pg_item_header_title {
    margin: 0;
    font-size: 1.8rem;
  }
  .pg_item_header_new {
    margin-bottom: 9px;
  }
  .pg_item_header_time {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .pg_item_photo {
    margin-bottom: 26px;
  }
  .pg_item_box {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
/* =========================================
pg_pager
========================================= */
.pg_pager {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 100px auto 0;
}

.pg_pager_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  padding-left: 0.05em;
  background-color: var(--color_accent);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 5px;
  transition: opacity 0.15s;
}

.pg_pager_prev {
  position: absolute;
  top: 0;
  left: -60px;
}
.pg_pager_prev a {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../img/common/icon_arrow.svg) no-repeat center/15px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  transform: scale(-1, 1);
}

.pg_pager_next {
  position: absolute;
  top: 0;
  right: -60px;
}
.pg_pager_next a {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../img/common/icon_arrow.svg) no-repeat center/15px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_pager {
    margin: 67px auto 0;
  }
}
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .pg_pager_next a:hover {
    opacity: 0.5;
  }
}
/* TouchDevice設定 ------------------ */
@media (pointer: none) {
  .pg_pager_next a:active {
    opacity: 0.5;
  }
}