/* TopicsList Style
------------------------------------------------------------- */
.p-topicsList {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 var(--layout-gutter);
  font-size: 16px;
  font-family: var(--font-min);
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-topicsList.is-active {
  opacity: 1;
}
.p-topicsList #bread {
  font-family: var(--font-goth);
}
.p-topicsListTitle {
  text-align: center;
}
.p-topicsListContent {
  margin-top: 40px;
}
.p-topicsListContent__guide {
  text-align: center;
}
.p-topicsListContent__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  list-style: none;
}
.p-topicsListItem {
  color: var(--color-black);
}
.p-topicsListItem__head {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-black);
  opacity: 0.5;
}
.p-topicsListItem__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
  position: relative;
  width: 100%;
  margin-top: 11px;
  padding: 0 0 18px;
  font-size: clamp(13px, calc(13px + (15 - 13) * ((100vw - 375px) / (1600 - 375))), 15px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-topicsListItem__body::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}
.p-topicsListItem__body::before {
  width: 100%;
  background-color: var(--color-line_gray);
}
.p-topicsListItemTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-topicsListItemIcon {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 7px;
  overflow: hidden;
}
.p-topicsListItemIcon::before,
.p-topicsListItemIcon::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  width: 16px;
  height: 7px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDE0IDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIuODg2NzJMOSAtMy4yNjYzM2UtMDVWNS43NzM0N0wxNCAyLjg4NjcyWk0wIDIuODg2NzJWMy4zODY3Mkg5LjVWMi44ODY3MlYyLjM4NjcySDBWMi44ODY3MloiIGZpbGw9ImJsYWNrIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: contain;
  will-change: transform, opacity;
}
.p-topicsListItemIcon::before {
  transform: translateX(-16px);
  opacity: 0;
}
.p-topicsListItemIcon::after {
  transform: translateX(0);
  opacity: 1;
}
.p-topicsListSort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  margin-bottom: 100px;
  font-size: 14px;
}
.p-topicsListSort .pageguide {
  font-size: 14px;
}
.p-topicsListSort .pagelink {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.p-topicsListSort .pagelink .current {
  color: var(--color-black);
}
.p-topicsListSort .pagelink a {
  color: var(--color-text_gray);
}
.p-topicsListSort .page_arrow a {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--color-black);
}
.p-topicsListSort .page_arrow a::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.p-topicsListSort .page_arrow.page_prev a:before {
  transform: rotate(-135deg);
}
@media screen and (max-width: 991px) {
  .p-topicsList #bread {
    display: block;
  }
  .p-topicsListItem__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    margin-top: 11px;
    padding-bottom: 20px;
  }
  .p-topicsListItemIcon {
    display: none;
  }
  .p-topicsListSort {
    flex-direction: column;
    gap: 20px;
  }
  .p-topicsListSort .pageguide {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .p-topicsListItem:hover .p-topicsListItemIcon::before {
    animation: arrow-out 0.2s cubic-bezier(0.55,0.08,0.68,0.53) both;
  }
  .p-topicsListItem:hover .p-topicsListItemIcon::after {
    animation: arrow-in 0.6s cubic-bezier(1,0,0.85,0.01) both;
  }
}
/* TopicsDetail Style
------------------------------------------------------------- */
.p-topicsDetail {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 var(--layout-gutter) 100px;
  font-size: 16px;
  font-family: var(--font-min);
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
}
.p-topicsDetail #bread {
  font-family: var(--font-goth);
}
.p-topicsDetailTitle {
  text-align: center;
}
.p-topicsDetailContent {
  margin-top: 45px;
}
.p-topicsDetailInfo__titleImg {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}
.p-topicsDetailInfo__titleImg > img {
  width: fit-content;
  margin-inline: auto;
}
.p-topicsDetailInfo__date {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-black);
  opacity: 0.5;
}
.p-topicsDetailInfo__text {
  width: 100%;
  max-width: 700px;
  margin-top: 35px;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.p-topicsDetailInfo__text a {
  text-decoration: underline;
}
.p-topicsDetailInfo__text img {
  display: block;
  margin-inline: auto;
  margin-block: 20px;
}
.p-topicsDetailInfo__img {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 45px;
}
.p-topicsDetailInfo__img > img {
  width: fit-content;
  margin-inline: auto;
}
.p-topicsDetailContent__button {
  margin-top: 80px;
}
.p-topicsDetailBackButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 280px;
  margin-inline: auto;
  padding: 12px 50px;
  border: solid 1px var(--color-black);
  border-radius: 3px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-black);
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .p-topicsDetail #bread {
    display: block;
    margin-inline: calc(var(--layout-gutter) * -1);
  }
  .p-topicsDetail .c-breadcrumb {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .p-topicsDetail .c-breadcrumb__inner {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .p-topicsDetail .c-breadcrumbList {
    padding-inline: var(--layout-gutter);
  }
  .p-topicsDetailContent {
    margin-top: 30px;
  }
  .p-topicsDetailInfo__text {
    margin-top: 20px;
  }
  .p-topicsDetailInfo__text {
    font-size: 15px;
  }
  .p-topicsDetailContent__button {
    margin-top: 60px;
  }
  .p-topicsDetailBackButton {
    width: 80%;
    max-width: 280px;
    min-width: auto;
  }
}
@media (hover: hover) {
  .p-topicsDetailBackButton:hover {
    border-color: var(--color-black);
    color: var(--color-black);
    background-color: var(--color-white);
  }
}
