@charset "UTF-8";
/* ニュース記事（single-news）Figma: node 2006:66656 相当 */
.p-newsDetail {
  color: #333;
}

.p-newsDetail__layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  padding: 80px 6%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__layout {
    flex-direction: column;
    padding: 40px 5.33%;
  }
}

.p-newsDetail__main {
  width: 100%;
  max-width: 704px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.p-newsDetail__sidebar {
  flex: 0 0 328px;
  width: 100%;
  max-width: 328px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__sidebar {
    display: none;
  }
}

.p-newsDetail__sidebarTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.p-newsDetail__sidebarTitle:nth-of-type(2) {
  margin-top: 40px;
}

.p-newsDetail__sidebarList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-newsDetail__sidebarCard {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-newsDetail__sidebarCardInner {
  display: flex;
  gap: 8px;
}

.p-newsDetail__sidebarCardFig {
  display: block;
  flex: 0 0 147px;
}
.p-newsDetail__sidebarCardFig img {
  width: 100%;
  aspect-ratio: 147/98;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .p-newsDetail__sidebarCardFig {
    flex-basis: 100px;
    width: 100px;
  }
}

.p-newsDetail__sidebarCardBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.p-newsDetail__sidebarCardMeta {
  display: flex;
  align-items: center;
  gap: 4px 8px;
  justify-content: space-between;
}

.p-newsDetail__sidebarCardDate {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #757575;
}

.p-newsDetail__sidebarCardTitle {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-newsDetail__sidebarCardTitle a {
  color: inherit;
  text-decoration: none;
}
.p-newsDetail__sidebarCardTitle a:hover {
  opacity: 0.85;
}

.p-newsDetail__sidebarCardTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-newsDetail__sidebarCardFig--ranking {
  position: relative;
}
.p-newsDetail__sidebarCardFig--ranking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1;
  width: 42px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.p-newsDetail__sidebarCard[data-ranking="1"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_01.webp);
}

.p-newsDetail__sidebarCard[data-ranking="2"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_02_2.webp);
}

.p-newsDetail__sidebarCard[data-ranking="3"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_03.webp);
}

.p-newsDetail__sidebarCard[data-ranking="4"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_04.webp);
}

.p-newsDetail__sidebarCard[data-ranking="5"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_05.webp);
}

.p-newsDetail__sidebarCard[data-ranking="6"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_06.webp);
}

.p-newsDetail__sidebarCard[data-ranking="7"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_07.webp);
}

.p-newsDetail__sidebarCard[data-ranking="8"] .p-newsDetail__sidebarCardFig--ranking::before {
  background-image: url(../img/common/ranking_08.webp);
}

/* --- ヘッダーブロック --- */
.p-newsDetail__titleSet {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.p-newsDetail__date {
  display: inline-flex;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__date {
    font-size: 10px;
  }
}

.p-newsDetail__dateIcon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #757575;
}

.p-newsDetail__h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__h1 {
    font-size: 24px;
  }
}

.p-newsDetail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.p-newsDetail__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: #e5edff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: pre;
  color: #4067cd;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__label {
    font-size: 12px;
  }
}

.p-newsDetail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tags {
    gap: 4px 8px;
  }
}

.p-newsDetail__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #4067cd;
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #4067cd;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tag {
    font-size: 10px;
  }
}
.p-newsDetail__tag:hover {
  opacity: 0.85;
}

/* --- アイキャッチ --- */
.p-newsDetail__eyecatch {
  margin: 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.p-newsDetail__eyecatch img,
.p-newsDetail__eyecatch .p-newsDetail__eyecatchImg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- もくじ --- */
.p-newsDetail__toc {
  align-self: stretch;
  padding: 30px;
  border-radius: 20px;
  background: #fafafa;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__toc {
    padding: 30px 20px;
  }
}

.p-newsDetail__tocHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.p-newsDetail__tocTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocTitle {
    font-size: 20px;
  }
}

.p-newsDetail__tocIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.p-newsDetail__tocToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocToggle {
    font-size: 12px;
  }
}
.p-newsDetail__tocToggle .p-newsDetail__tocChev.is-close {
  display: none;
}
.p-newsDetail__tocToggle[aria-expanded=false] .p-newsDetail__tocChev:not(.is-close) {
  display: none;
}
.p-newsDetail__tocToggle[aria-expanded=false] .p-newsDetail__tocChev.is-close {
  display: block;
}

.p-newsDetail__tocChev {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.p-newsDetail__tocBody {
  display: grid;
  grid-template-rows: 1fr;
  margin-top: 20px;
  transition: grid-template-rows 0.55s cubic-bezier(0.33, 1, 0.68, 1), margin-top 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-newsDetail__tocBody.is-collapsed {
  grid-template-rows: 0fr;
  margin-top: 0;
}
@media (prefers-reduced-motion: reduce) {
  .p-newsDetail__tocBody {
    transition: none;
  }
}

.p-newsDetail__tocBodyInner {
  overflow: hidden;
  min-height: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.p-newsDetail__tocBody.is-collapsed .p-newsDetail__tocBodyInner {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .p-newsDetail__tocBodyInner {
    transition: none;
  }
  .p-newsDetail__tocBody.is-collapsed .p-newsDetail__tocBodyInner {
    opacity: 1;
  }
}

.p-newsDetail__tocList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0 !important;
}
.p-newsDetail__tocList a {
  font-size: 18px;
  font-weight: 700;
  padding-block: 10px;
  color: #333 !important;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocList a {
    font-size: 16px;
    padding-block: 0;
  }
}
.p-newsDetail__tocList a:hover {
  opacity: 0.85;
}

.p-newsDetail__tocList li.is-sub {
  margin-left: 56px;
  padding-left: 16px;
  margin-top: 0 !important;
  position: relative;
  list-style: none !important;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocList li.is-sub {
    margin-left: 32px;
  }
}
.p-newsDetail__tocList li.is-sub a {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocList li.is-sub a {
    font-size: 14px;
  }
}
.p-newsDetail__tocList li.is-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #4067cd;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__tocList li.is-sub::before {
    top: 9px;
  }
}

/* --- 本文 --- */
.p-newsDetail__body {
  align-self: stretch;
}
.p-newsDetail__body .p-newsDetail__toc {
  margin: 40px 0;
}
.p-newsDetail__body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__body {
    font-size: 14px;
  }
}
.p-newsDetail__body p {
  margin-bottom: 20px;
}
.p-newsDetail__body a {
  color: #4067cd;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-newsDetail__body a:hover {
  opacity: 0.85;
}
.p-newsDetail__body .wp-block-image {
  margin-bottom: 40px;
}
.p-newsDetail__body .wp-block-table {
  margin-bottom: 20px;
}
.p-newsDetail__body .wp-block-embed {
  margin-block: 40px 20px;
}
.p-newsDetail__body .wp-embedded-content {
  width: 100% !important;
  height: auto !important;
}
.p-newsDetail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.p-newsDetail__body h2:not(.p-newsDetail__tocTitle) {
  margin: 40px 0;
  padding: 10px 0;
  border-bottom: 2px solid #4067cd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__body h2:not(.p-newsDetail__tocTitle) {
    font-size: 20px;
  }
}
.p-newsDetail__body h3 {
  margin: 40px 0 30px;
  padding-block: 6px;
  padding-inline: 36px 16px;
  border-radius: 10px;
  background: #fafafa;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__body h3 {
    padding-inline: 32px 16px;
  }
}
.p-newsDetail__body h3::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4067cd;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__body h3 {
    font-size: 18px;
  }
}
.p-newsDetail__body ul,
.p-newsDetail__body ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.p-newsDetail__body ul li + li,
.p-newsDetail__body ol li + li {
  margin-top: 0.5em;
}
.p-newsDetail__body ul {
  list-style: disc;
}
.p-newsDetail__body ul li {
  list-style: disc;
}
.p-newsDetail__body ol {
  list-style: decimal;
}
.p-newsDetail__body ol li {
  list-style: decimal;
}

/* --- シェア --- */
.p-newsDetail__share {
  padding-block: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__share {
    padding-block: 40px;
    flex-direction: column;
  }
}

.p-newsDetail__shareLabel {
  font-size: 16px;
  font-weight: 700;
  color: #4067cd;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__shareLabel {
    font-size: 14px;
  }
}

.p-newsDetail__sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__sns {
    gap: 26px;
  }
}
.p-newsDetail__sns a {
  display: flex;
  transition: opacity 0.2s ease;
}
.p-newsDetail__sns a:hover {
  opacity: 0.75;
}
.p-newsDetail__sns img {
  width: 30px;
  height: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__sns img {
    width: 28px;
    height: 28px;
  }
}

.p-newsDetail__copy {
  position: relative;
}

.p-newsDetail__copyFeedback {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 4px;
  background: #333;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.p-newsDetail__copyFeedback.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- 著者（post-meta の st-author-box をラップ）--- */
.p-newsDetail__authorWrap {
  align-self: stretch;
  padding: 20px;
  border-radius: 20px;
  background: #f2f5fa;
}
.p-newsDetail__authorWrap .st-author-box {
  margin: 0;
}
.p-newsDetail__authorWrap #st-tab-box {
  margin: 0;
}
.p-newsDetail__authorWrap .p-single__author {
  padding: 0;
}
.p-newsDetail__authorWrap .p-single__author dl {
  margin: 0;
  display: flex;
  align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author dl {
    flex-direction: column;
    gap: 20px;
  }
}
.p-newsDetail__authorWrap .p-single__author dt {
  flex: 0 0 auto;
  position: relative;
}
.p-newsDetail__authorWrap .p-single__author dt::before {
  content: "";
  position: absolute;
  background-image: url(../img/news/dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author dt::before {
    display: none;
  }
}
.p-newsDetail__authorWrap .p-single__author dt a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author dt a {
    min-width: 140px;
  }
}
.p-newsDetail__authorWrap .p-single__author dd {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author dd {
    display: contents;
  }
}
.p-newsDetail__authorWrap .p-single__author-title {
  margin: 0;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #89a1e5;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author-title {
    order: 1;
    font-size: 12px;
  }
}
.p-newsDetail__authorWrap .p-single__author-title::before, .p-newsDetail__authorWrap .p-single__author-title::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 1px;
  height: 17px;
  background: #89a1e5;
}
.p-newsDetail__authorWrap .p-single__author-title::after {
  right: 5px;
  transform: rotate(20deg);
}
.p-newsDetail__authorWrap .p-single__author-title::before {
  left: 5px;
  transform: rotate(-20deg);
}
.p-newsDetail__authorWrap .avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .avatar {
    order: 2;
  }
}
.p-newsDetail__authorWrap .p-single__author-name {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author-name {
    order: 3;
  }
}
.p-newsDetail__authorWrap .p-single__author-name .p-single__author-firstname {
  font-size: 14px;
  font-weight: 700;
  color: #4067cd;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author-name .p-single__author-firstname {
    font-size: 12px;
  }
}
.p-newsDetail__authorWrap .p-single__author-name .st-author-nickname {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .p-single__author-name .st-author-nickname {
    font-size: 16px;
  }
}
.p-newsDetail__authorWrap .st-author-description {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .st-author-description {
    order: 5;
    font-size: 12px;
    position: relative;
    padding-top: 20px;
    line-height: 2;
  }
  .p-newsDetail__authorWrap .st-author-description::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    height: 3px;
    background-image: url(../img/news/dot-sp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
.p-newsDetail__authorWrap .st-author-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__authorWrap .st-author-sns {
    order: 4;
    justify-content: center;
    gap: 16px;
  }
}
.p-newsDetail__authorWrap .st-author-sns a {
  display: flex;
}
.p-newsDetail__authorWrap .st-author-sns img {
  width: 24px;
  height: 24px;
}

/* --- 関連記事スライダー（Figma: node 2006:66966）--- */
.p-newsDetail__kanren {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fafafa;
  padding: 80px 0;
  overflow: hidden;
}
.p-newsDetail__kanren .l-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__kanren {
    padding: 40px 0;
  }
}

.p-newsDetail__kanrenTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
}
.p-newsDetail__kanrenTitle img {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__kanrenTitle {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .p-newsDetail__kanrenTitle img {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}

.p-newsDetail__kanrenWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}

.p-kanren__splide {
  position: static;
}
.p-kanren__splide .splide__arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  width: auto;
  height: 40px;
  padding: 0;
  transform: none;
  max-width: 1080px;
  margin-inline: auto;
}
.p-kanren__splide .button {
  position: relative;
  transform: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  top: 0;
  left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
}
.p-kanren__splide .button svg {
  display: none;
}
.p-kanren__splide .button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-kanren__splide .prev::before {
  background-image: url(../img/news/arrow-circle-left.svg);
}
.p-kanren__splide .next::before {
  background-image: url(../img/news/arrow-circle-right.svg);
}

.p-newsDetail__kanrenList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-newsDetail__kanrenSlide {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-newsDetail__kanrenThumb {
  overflow: hidden;
  border-radius: 20px;
}
.p-newsDetail__kanrenThumb a {
  display: block;
}
.p-newsDetail__kanrenThumb img {
  display: block;
  width: 100%;
  aspect-ratio: 234/155;
  object-fit: cover;
  height: auto;
}

.p-newsDetail__kanrenBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-newsDetail__kanrenMeta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.p-newsDetail__kanrenCategory {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-newsDetail__kanrenDate {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
  color: #757575;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__kanrenDate {
    font-size: 10px;
  }
}

.p-newsDetail__kanrenCardTitle {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-newsDetail__kanrenCardTitle a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.p-newsDetail__kanrenCardTitle a:hover {
  color: #4067cd;
}
@media screen and (max-width: 768px) {
  .p-newsDetail__kanrenCardTitle {
    font-size: 14px;
  }
}

.p-newsDetail__kanrenTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- WordPress 埋め込みカード（Figma: blog-card / node 2006:66685）--- */
body.wp-embed {
  padding: 0;
  background: transparent;
}

body.wp-embed .wp-embed-footer {
  display: none;
}

body.wp-embed .wp-embed {
  padding: 0;
  border: 0;
  box-shadow: none;
  max-width: 704px;
}

.p-embedCard {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 0;
}
.p-embedCard:hover {
  opacity: 0.9;
}

.p-embedCard__fig {
  flex: 0 0 180px;
  width: 180px;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-embedCard__fig {
    flex-basis: 130px;
    width: 130px;
  }
}
.p-embedCard__fig img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.p-embedCard__body {
  flex: 1;
  min-width: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-embedCard__metaTop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.p-embedCard__date {
  margin-left: auto;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .p-embedCard__date {
    font-size: 10px;
  }
}

.p-embedCard__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-embedCard__title {
    font-size: 12px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.p-embedCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-category__hash {
  border-radius: 20px;
  background: #e5edff;
  display: flex;
  padding: 20px 80px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 907px;
  margin-inline: auto;
}

.p-category__hash.--home {
  padding: 30px;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
}

.p-category__hash.--side {
  background: #f2f5fa;
  padding: 40px 14px;
  align-items: center;
  gap: 30px;
  max-width: 100%;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .p-category__hash {
    padding: 20px 16px;
  }
  .p-category__hash.--home {
    padding: 20px;
    gap: 10px;
  }
}
.p-category__hash-title {
  color: #4067cd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.p-category__hash-title.--home {
  color: #000;
  padding-left: 40px;
  position: relative;
}

.p-category__hash-title.--home::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  background-image: url(../images/re/icon-tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 768px) {
  .p-category__hash-title.--home::before {
    width: 24px;
    height: 24px;
  }
  .p-category__hash-title {
    font-size: 20px;
  }
  .p-category__hash-title.--home {
    font-size: 18px;
    padding-left: 32px;
  }
}
.p-category__hash-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.p-category__hash-list.--home {
  justify-content: flex-start;
}

a.p-category__hash-item {
  display: inline-flex;
  padding-inline: 24px 16px;
  padding-block: 8px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #4067cd;
  background: #fff;
  color: #4067cd;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media (max-width: 768px) {
  a.p-category__hash-item {
    font-size: 14px;
    padding-inline: 22px 16px;
  }
}
@media (any-hover: hover) {
  a.p-category__hash-item:hover {
    background-color: #4067cd;
    color: #fff;
    opacity: 1;
  }
}

.p-category__hash-item.no-link {
  pointer-events: none;
}

.p-category__hash-item::before {
  content: "＃";
  position: absolute;
  display: inline-block;
  font-size: 16px;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-category__hash-item::before {
    font-size: 12px;
  }
}

.p-side__category {
  border-radius: 20px;
  background: #faf1dd;
  padding: 40px 14px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 160px;
  left: 0;
  transition: all 0.5s ease;
}

.p-side__category.js-slide-up {
  top: 80px;
}

.p-side__category h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
  width: fit-content;
  margin-inline: auto;
}

.p-side__category h3::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/icon-category.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.p-side__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-bottom: 0;
}

.p-side__category-item {
  width: 50%;
  padding-left: 42px;
  position: relative;
  display: flex;
  align-items: center;
}

.p-side__category-item::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.p-side__category-item:nth-child(1)::before {
  background-image: url(../img/common/icon-category02.webp);
}

.p-side__category-item:nth-child(2)::before {
  background-image: url(../img/common/icon-category01.webp);
}

.p-side__category-item:nth-child(3)::before {
  background-image: url(../img/common/icon-category03.webp);
}

.p-side__category-item:nth-child(4)::before {
  background-image: url(../img/common/icon-category04.webp);
}

.p-side__category-item:nth-child(5)::before {
  background-image: url(../img/common/icon-category05.webp);
}

.p-side__category-item:nth-child(6)::before {
  background-image: url(../img/common/icon-category06.webp);
}

.p-side__category-item:nth-child(7)::before {
  background-image: url(../img/common/icon-category07.webp);
}

.p-side__category-item:nth-child(8)::before {
  background-image: url(../img/common/icon-category08.webp);
}

.p-side__category-item:nth-child(9)::before {
  background-image: url(../img/common/icon-category09.webp);
}

.p-side__category-item:nth-child(10)::before {
  background-image: url(../img/common/icon-category10.webp);
}

.p-side__category-item:nth-child(11)::before {
  background-image: url(../img/common/icon-category11.webp);
}

.p-side__category-item:nth-child(12)::before {
  background-image: url(../img/common/icon-category12.webp);
}

.p-side__category-item:nth-child(13)::before {
  background-image: url(../img/common/icon-category13.webp);
}

.p-side__category-item:nth-child(14)::before {
  background-image: url(../img/common/icon-category14.webp);
}

.p-side__category-item:nth-child(2n)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  bottom: 0;
  left: 0;
  border-left: 1px dashed #5287c1;
}

.p-side__category-item span {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding-block: 6px;
}

/* ========================================
   ニュースアーカイブ（archive-news）Figma: 2006:60699 / 2006:61401
   ======================================== */
.p-newsArchive__mv {
  position: relative;
  height: 524px;
  display: flex;
  justify-content: center;
  text-align: center;
  background-image: url(../img/mv.jpg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 112px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__mv {
    height: 386px;
    padding-top: 40px;
  }
}

.p-newsArchive__mvInner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-newsArchive__mvTitle {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.004em;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__mvTitle {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.p-newsArchive__mvText {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__mvText {
    font-size: 16px;
    line-height: 1.8;
  }
}

.p-newsArchive {
  padding-top: 0;
}

.p-mainArticle {
  margin-top: -220px;
  padding-top: 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .p-mainArticle {
    margin-top: -140px;
  }
}

.p-mainArticle__slide .splide__track {
  overflow-x: hidden;
  overflow-y: visible;
}
.p-mainArticle__slide .splide__slide {
  transition: transform 0.3s ease;
}
.p-mainArticle__slide .splide__slide.is-active .p-newsArchive__card--slider .p-newsArchive__cardMain {
  transform: scale(1);
}
.p-mainArticle__slide .p-newsArchive__cardFig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mainArticle__slide .splide__arrows {
  position: relative;
  width: 160px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .p-mainArticle__slide .splide__arrows {
    position: absolute;
    width: 95%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 0;
  }
}
.p-mainArticle__slide .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.p-mainArticle__slide .button {
  background: transparent;
  width: 30px;
  height: 30px;
  min-width: 30px;
  box-shadow: none;
  opacity: 1;
  transition: opacity 0.2s;
}
.p-mainArticle__slide .button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-mainArticle__slide .prev::before {
  background-image: url(../img/common/arrow-blue03.svg);
  background-position: center;
  transform: rotate(180deg);
}
.p-mainArticle__slide .next::before {
  background-image: url(../img/common/arrow-blue03.svg);
  background-position: center;
}
.p-mainArticle__slide .splide__arrow--prev {
  left: 0;
}
.p-mainArticle__slide .splide__arrow--next {
  right: 0;
}
.p-mainArticle__slide .pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  width: auto;
  min-width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.p-mainArticle__slide .pagination span {
  color: #4067cd;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-mainArticle__slide .pagination {
    display: none;
  }
}

.p-newsArchive__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.p-newsArchive__card:hover {
  opacity: 1;
}
.p-newsArchive__card:hover .p-newsArchive__cardMain img {
  transform: scale(1.05);
}

.p-newsArchive__cardMain {
  display: flex;
  flex-direction: column;
  gap: inherit;
  color: inherit;
  text-decoration: none;
}

.p-newsArchive__cardThumb,
.p-newsArchive__cardTitle a {
  color: inherit;
  text-decoration: none;
}
.p-newsArchive__cardThumb:hover,
.p-newsArchive__cardTitle a:hover {
  opacity: 1;
}

.p-newsArchive__cardThumb {
  display: block;
  flex: 1;
}

.p-newsArchive__card--slider .p-newsArchive__cardMain {
  gap: 16px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.p-newsArchive__card--new .p-newsArchive__cardMain {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.p-newsArchive__cardFig {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}
.p-newsArchive__cardFig img {
  width: 100%;
  height: auto;
  aspect-ratio: 328/218;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.p-newsArchive__cardFig--slider img {
  aspect-ratio: 328/218;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardFig--slider img {
    aspect-ratio: 300/225;
  }
}

.p-newsArchive__cardFig--new {
  flex: 1;
}

.p-newsArchive__cardFig--ranking {
  position: relative;
  flex: 1;
}

.p-newsArchive__cardBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-newsArchive__cardBody--slider {
  gap: 16px;
}

.p-newsArchive__cardBody--new {
  width: 53%;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardBody--new {
    width: 60%;
    gap: 4px;
  }
}

.p-newsArchive__cardMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardMeta {
    gap: 4px;
  }
}

.p-newsArchive__cardDate {
  color: #757575;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardDate {
    font-size: 10px;
  }
}

.p-newsArchive__cardTitle {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardTitle {
    font-size: 12px;
  }
}

.p-newsArchive__cardTitle--slider {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardTitle--slider {
    font-size: 18px;
  }
}

.p-newsArchive__cardTitle--ranking {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardTitle--ranking {
    font-size: 14px;
  }
}

.p-newsArchive__cardTitle--travelLead {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardTitle--travelLead {
    font-size: 18px;
  }
}

.p-newsArchive__cardTitle--travel {
  font-size: 16px;
}

.p-newsArchive__cardTitle--new {
  font-size: 16px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__cardTitle--new {
    font-size: 14px;
  }
}

.p-newsArchive__cardExcerpt {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.p-newsArchive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-newsArchive__recommend .p-newsDetail__label {
    font-size: 8px;
    padding: 2px 4px;
  }
  .p-newsArchive__recommend .p-newsArchive__cardDate {
    font-size: 8px;
  }
  .p-newsArchive__recommend .p-newsArchive__cardFig {
    border-radius: 10px;
  }
  .p-newsArchive__recommend .p-newsArchive__cardFig img {
    border-radius: 10px;
  }
}

.p-newsArchive__rankingSlide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (max-width: 768px) {
  .p-newsArchive__rankingSlide {
    padding-inline: 5.33% 0;
    padding-bottom: 40px;
  }
}
.p-newsArchive__rankingSlide .splide__slide {
  position: relative;
}
.p-newsArchive__rankingSlide .splide__slide::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 16px;
  width: 76px;
  height: 86px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="1"]::before {
  background-image: url(../img/common/ranking_01.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="2"]::before {
  background-image: url(../img/common/ranking_02_2.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="3"]::before {
  background-image: url(../img/common/ranking_03.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="4"]::before {
  background-image: url(../img/common/ranking_04.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="5"]::before {
  background-image: url(../img/common/ranking_05.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="6"]::before {
  background-image: url(../img/common/ranking_06.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="7"]::before {
  background-image: url(../img/common/ranking_07.webp);
}
.p-newsArchive__rankingSlide .splide__slide[data-ranking="8"]::before {
  background-image: url(../img/common/ranking_08.webp);
}
.p-newsArchive__rankingSlide .splide__pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  width: inherit;
}
.p-newsArchive__rankingSlide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdbdbd;
  opacity: 1;
  margin-inline: 8px;
  margin-block: 0px;
}
.p-newsArchive__rankingSlide .splide__pagination__page.is-active {
  background: #4067cd;
  transform: scale(1);
}
.p-newsArchive__rankingSlide .splide__pagination__page:not(.is-active) {
  background: #bdbdbd;
}
.p-newsArchive__rankingTitle::before {
  background-image: url(../img/common/ranking-title.webp);
}

@media screen and (max-width: 768px) {
  .p-newsArchive__travel .p-newsArchive__card--travel:not(.p-newsArchive__card--travelLead) .p-newsDetail__label {
    font-size: 8px;
  }
  .p-newsArchive__travel .p-newsArchive__card--travel:not(.p-newsArchive__card--travelLead) .p-newsArchive__cardDate {
    font-size: 8px;
  }
  .p-newsArchive__travel .p-newsArchive__card--travel:not(.p-newsArchive__card--travelLead) .p-newsArchive__cardFig {
    border-radius: 10px;
  }
  .p-newsArchive__travel .p-newsArchive__card--travel:not(.p-newsArchive__card--travelLead) .p-newsArchive__cardFig img {
    border-radius: 10px;
  }
  .p-newsArchive__travel .p-newsArchive__card--travel:not(.p-newsArchive__card--travelLead) .p-newsArchive__cardTitle--travel {
    font-size: 12px;
  }
}

.p-newsArchive__travelList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 48px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__travelList {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}

.p-newsArchive__card--travelLead {
  grid-column: span 2;
  grid-row: span 2;
}
.p-newsArchive__card--travelLead .p-newsArchive__cardMain {
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__card--travelLead {
    grid-column: span 2;
    grid-row: span 2;
    margin-bottom: 8px;
  }
}
.p-newsArchive__card--travelLead .p-newsArchive__cardFig img {
  aspect-ratio: 680/453;
}

@media screen and (max-width: 768px) {
  .p-newsArchive__new .p-newsDetail__label {
    font-size: 10px;
  }
  .p-newsArchive__new .p-newsArchive__cardDate {
    font-size: 8px;
  }
  .p-newsArchive__new .p-newsArchive__cardFig {
    border-radius: 10px;
  }
  .p-newsArchive__new .p-newsArchive__cardFig img {
    border-radius: 10px;
  }
}

.p-newsArchive__newList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__newList {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.p-newsArchive .p-category__hash {
  border-radius: 20px;
  background: #e5edff;
  display: flex;
  padding: 20px 80px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 907px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-newsArchive .p-category__hash {
    padding: 20px 16px;
  }
}

.p-newsArchive .p-category__hash-title {
  color: #4067cd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-newsArchive .p-category__hash-title {
    font-size: 20px;
  }
}

.p-newsArchive .p-category__hash-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.p-newsArchive .p-category__hash-item {
  display: inline-flex;
  padding: 8px 16px 8px 24px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #4067cd;
  background: #fff;
  color: #4067cd;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-newsArchive .p-category__hash-item {
    font-size: 10px;
    padding: 8px 10px 8px 20px;
  }
}
.p-newsArchive .p-category__hash-item::before {
  content: "＃";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive .p-category__hash-item::before {
    font-size: 10px;
  }
}

/* SP カテゴリ横スクロール（Figma: 2006:61423）archive-news / ヘッダー検索 */
.p-newsArchive__wrap .p-category__list-wrap,
.p-newsHeaderSearch .p-category__list-wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__wrap .p-category__list-wrap,
  .p-newsHeaderSearch .p-category__list-wrap {
    display: block;
    overflow-x: hidden;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-inline: 5.33% 0;
  }
}
@media screen and (max-width: 768px) {
  .p-newsArchive__wrap .p-category__list.sp_visible,
  .p-newsHeaderSearch .p-category__list.sp_visible {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-inline: 5px 5.33%;
    padding-bottom: 10px;
    justify-content: flex-start;
    grid-template-columns: unset;
  }
}
@media screen and (max-width: 768px) {
  .p-newsArchive__wrap .p-category__list.sp_visible .p-category__item,
  .p-newsHeaderSearch .p-category__list.sp_visible .p-category__item {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 80px;
    min-width: 80px;
    height: 64px;
    padding: 16px 5px;
    border-radius: 10px;
    background: #faf1dd;
    box-shadow: 0 2.672px 6.68px rgba(0, 0, 0, 0.25);
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }
  .p-newsArchive__wrap .p-category__list.sp_visible .p-category__item > span,
  .p-newsHeaderSearch .p-category__list.sp_visible .p-category__item > span {
    padding: 0;
  }
  .p-newsArchive__wrap .p-category__list.sp_visible .p-category__item > span::before, .p-newsArchive__wrap .p-category__list.sp_visible .p-category__item > span::after,
  .p-newsHeaderSearch .p-category__list.sp_visible .p-category__item > span::before,
  .p-newsHeaderSearch .p-category__list.sp_visible .p-category__item > span::after {
    display: none;
  }
  .p-newsArchive__wrap .p-category__list.sp_visible .p-category__item img,
  .p-newsHeaderSearch .p-category__list.sp_visible .p-category__item img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-newsArchive__wrap .p-category__list.sp_visible.--white .p-category__item,
  .p-newsHeaderSearch .p-category__list.sp_visible.--white .p-category__item {
    background: #fff;
  }
}

/* news ヘッダー */
.p-header--news .p-header__nav.--news.js-slide-up {
  transform: translateY(25%);
}
.p-header--news .p-header__list--news {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  height: inherit;
}
.p-header--news .p-header__item.--tour a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 8px 16px;
  border-radius: 100px;
  background: #4067cd;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  border: none;
}
.p-header--news .p-header__item.--article {
  cursor: pointer;
  list-style: none;
}
.p-header--news .p-header__item.--article span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 8px 44px 8px 20px;
  border: 2px solid #4067cd;
  border-radius: 100px;
  color: #4067cd;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  white-space: nowrap;
}
.p-header--news .p-header__item.--article span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/common/icon-search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-header--news .p-header__item.--article .p-header__articleClose,
.p-header--news .p-header__item.--article.is-open .p-header__articleOpen {
  display: none;
}
.p-header--news .p-header__item.--article.is-open .p-header__articleClose {
  display: flex;
  border: none;
  padding: 8px 44px 8px 20px;
}
.p-header--news .p-header__item.--article.is-open .p-header__articleClose::before,
.p-header--news .p-header__item.--article.is-open .p-header__articleClose::after {
  width: 15px;
  height: 2px;
  background: #4067cd;
  background-image: none;
  border-radius: 1px;
}
.p-header--news .p-header__item.--article.is-open .p-header__articleClose::before {
  transform: translateY(-50%) rotate(45deg);
}
.p-header--news .p-header__item.--article.is-open .p-header__articleClose::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(-45deg);
}
.p-header--news.is-search-open {
  background-color: #faf1dd;
  box-shadow: none;
  translate: 0;
}
.p-header--news.is-search-open .p-header__logo {
  transform: translateY(0%) scale(1);
}
.p-header--news.is-search-open .p-header__nav.--news {
  transform: translateY(0%);
}
@media (max-width: 990px) {
  .p-header--news .p-header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-header--news .p-header__nav.--news {
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    width: auto;
    margin-inline: 0;
    height: inherit;
    overflow-y: visible;
    background-color: transparent;
  }
  .p-header--news .p-header__list--news {
    width: auto;
    display: flex;
    grid-template-columns: unset;
    grid-template-rows: unset;
    height: inherit;
    padding: 0;
    background-color: transparent;
  }
  .p-header--news .p-header__item.--article:not(.is-open) .p-header__articleOpen {
    display: flex;
  }
  .p-header--news .p-header__item.--article span {
    font-size: 14px;
    padding: 13px 28px 13px 0;
    border: none;
    border-radius: 0;
  }
  .p-header--news .p-header__item.--article span::before {
    right: 0;
  }
  .p-header--news .p-header__item.--article.is-open .p-header__articleClose {
    padding: 8px 44px 8px 20px;
    border-radius: 100px;
  }
  .p-header--news .p-header__item.--article.is-open .p-header__articleClose::before,
  .p-header--news .p-header__item.--article.is-open .p-header__articleClose::after {
    right: 16px;
  }
}
@media (max-width: 768px) {
  .p-header--news .p-header__item.--tour.--news {
    display: none;
  }
}

.p-search__wrap {
  position: fixed;
  top: 96px;
  left: 0;
  z-index: 200;
  width: 100%;
  height: calc(100vh - 96px);
  overflow-y: auto;
  display: none;
  background-color: #faf1dd;
}
.p-search__wrap.is-open {
  display: block;
}
@media (max-width: 990px) {
  .p-search__wrap {
    top: 73px;
    height: calc(100vh - 73px);
  }
}

.p-search {
  background-color: #faf1dd !important;
  padding-block: 40px 80px;
}

.p-newsHeaderSearch {
  gap: 80px;
}
@media (max-width: 768px) {
  .p-newsHeaderSearch {
    gap: 40px;
  }
}

.p-newsHeaderSearch__form {
  position: relative;
  max-width: 705px;
  margin-inline: auto;
  width: 100%;
}
.p-newsHeaderSearch__form input[type=search] {
  width: 100%;
  height: 52px;
  padding: 10px 88px 10px 32px;
  border: 1px solid #757575;
  border-radius: 100px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #333;
}
.p-newsHeaderSearch__form input[type=search]::placeholder {
  color: #bdbdbd;
}
.p-newsHeaderSearch__form button {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-newsHeaderSearch__rankingSlide {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }
  .p-newsHeaderSearch__rankingSlide .splide__track {
    overflow: visible;
  }
  .p-newsHeaderSearch__rankingSlide .splide__list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
  .p-newsHeaderSearch__rankingSlide .splide__slide {
    width: auto !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .p-newsHeaderSearch__rankingSlide {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 5.33% 0;
  }
}
.p-newsHeaderSearch__rankingSlide .splide__slide {
  position: relative;
}
.p-newsHeaderSearch__rankingSlide .splide__slide::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 8px;
  width: 43px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}
.p-newsHeaderSearch__rankingSlide .splide__slide[data-ranking="1"]::before {
  background-image: url(../img/common/ranking_01.webp);
}
.p-newsHeaderSearch__rankingSlide .splide__slide[data-ranking="2"]::before {
  background-image: url(../img/common/ranking_02_2.webp);
}
.p-newsHeaderSearch__rankingSlide .splide__slide[data-ranking="3"]::before {
  background-image: url(../img/common/ranking_03.webp);
}
.p-newsHeaderSearch__rankingSlide .splide__slide[data-ranking="4"]::before {
  background-image: url(../img/common/ranking_04.webp);
}
.p-newsHeaderSearch__rankingSlide .splide__slide[data-ranking="5"]::before {
  background-image: url(../img/common/ranking_05.webp);
}

.p-newsHeaderSearch__categoryMain {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.p-newsHeaderSearch__categorySub {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 32px;
}
@media (max-width: 768px) {
  .p-newsHeaderSearch__categorySub {
    display: none;
  }
}

.p-newsHeaderSearch__categoryItem {
  width: 258px;
  height: 90px;
  background: #fff;
}

.p-newsHeaderSearch__tagsLead {
  margin-bottom: 24px;
  text-align: center;
  color: #4067cd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-inline: 66px;
  padding-block: 12px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-newsHeaderSearch__tagsLead {
    font-size: 14px;
    padding-inline: 34px;
    padding-block: 0;
  }
}
.p-newsHeaderSearch__tagsLead::before {
  background-image: url(../img/common/tag-title.webp);
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 59px;
}
@media (max-width: 768px) {
  .p-newsHeaderSearch__tagsLead::before {
    width: 28px;
    height: 29px;
  }
}
.p-newsHeaderSearch__tagsLead::after {
  background-image: url(../img/common/tag-title.webp);
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 59px;
}
@media (max-width: 768px) {
  .p-newsHeaderSearch__tagsLead::after {
    width: 28px;
    height: 29px;
  }
}

.classified-tag-search {
  background-color: #e5edff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 0 0;
}

.classified-tag-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-inline: 70px;
}
@media (max-width: 768px) {
  .classified-tag-search-header {
    padding-inline: 16px;
    flex-direction: column;
  }
}

.classified-tag-search-title {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 50px;
}
.classified-tag-search-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon-search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .classified-tag-search-title {
    font-size: 24px;
  }
}

.classified-tag-search-all {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  background: #4067cd;
  border: 1px solid #4067cd;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 48px 8px 16px;
  position: relative;
  white-space: nowrap;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.classified-tag-search-all:hover,
.classified-tag-search-all:focus,
.classified-tag-search-all:focus-visible,
.classified-tag-search-all:active {
  opacity: 1;
}
.classified-tag-search-all::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/common/arrow-w-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
@media (hover: hover) {
  .classified-tag-search-all:hover {
    background-color: #fff;
    color: #4067cd;
  }
  .classified-tag-search-all:hover::after {
    background-image: url(../img/common/arrow-b-right.svg);
  }
}

.classified-tag-search-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.classified-filters-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.classified-filter {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-inline: 70px;
}
@media (max-width: 768px) {
  .classified-filter {
    padding-inline: 16px;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .classified-filter-hidden-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .classified-filter-hidden-mobile.is-visible {
    display: flex;
  }
}

.classified-label {
  flex: 0 0 154px;
  margin: 0;
  color: #4067cd;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .classified-label {
    flex: auto;
    font-size: 16px;
  }
}

.classified-tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.classified-tag-filter {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #4067cd;
  background: #fff;
  cursor: pointer;
  position: relative;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.classified-tag-filter:hover,
.classified-tag-filter:focus,
.classified-tag-filter:focus-visible,
.classified-tag-filter:active {
  opacity: 1;
}
@media (hover: none) {
  .classified-tag-filter:not(.is-active):hover {
    background: #fff;
    color: inherit;
  }
  .classified-tag-filter:not(.is-active):hover .classified-tag-label {
    color: #4067cd;
  }
}
.classified-tag-filter.is-active {
  background: #4067cd;
  color: #fff;
}
.classified-tag-filter.is-active::before,
.classified-tag-filter.is-active .classified-tag-label {
  color: #fff;
}
@media (hover: hover) {
  .classified-tag-filter:hover {
    background: #4067cd;
    color: #fff;
  }
  .classified-tag-filter:hover .classified-tag-label {
    color: #fff;
  }
}

.classified-tag-label {
  color: #4067cd;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .classified-tag-label {
    font-size: 14px;
  }
}

.classified-accordion-controls {
  display: none;
}
@media (max-width: 768px) {
  .classified-accordion-controls {
    display: flex;
    justify-content: center;
  }
}

.classified-accordion-toggle {
  width: 87%;
  padding: 20px 32px;
  border: 0;
  border-top: 2px solid #b1c3f3;
  border-bottom: 2px solid #b1c3f3;
  background: transparent;
  color: #4067cd;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.classified-toggle-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.classified-toggle-icon.closed {
  background-image: url(../img/common/search-arrow-open.svg);
}
.classified-toggle-icon.open {
  background-image: url(../img/common/search-arrow-close.svg);
}

.classified-selected-info {
  padding-inline: 70px;
}
@media (max-width: 768px) {
  .classified-selected-info {
    padding-inline: 16px;
  }
}

.classified-selected-info-container {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px 30px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 768px) {
  .classified-selected-info-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px;
  }
}

.news-tag-results-count {
  flex: 0 0 160px;
  color: #4067cd;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .news-tag-results-count {
    flex: auto;
    font-size: 16px;
  }
}
.news-tag-results-count .result-count {
  color: #4067cd;
  font-size: 14px;
  font-weight: 700;
}
.news-tag-results-count .result-count-number {
  color: #f9581c;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-tag-results-count .result-count-number {
    font-size: 18px;
  }
}

.classified-selected-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.classified-selected-tag {
  position: relative;
  padding-left: 16px;
  color: #4067cd;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .classified-selected-tag {
    font-size: 14px;
    padding-left: 14px;
  }
}
.classified-selected-tag::before {
  content: "＃";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.classified-search-button-container {
  display: flex;
  justify-content: center;
  padding: 0 70px 50px;
}
@media (max-width: 768px) {
  .classified-search-button-container {
    padding-inline: 16px;
  }
}

.classified-search-button {
  width: 100%;
  max-width: 335px;
  padding: 16px 44px;
  border: 2px solid #f9581c;
  border-radius: 100px;
  background: #f9581c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .classified-search-button {
    font-size: 14px;
  }
}
.classified-search-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/common/arrow-w.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.classified-search-button:hover {
  opacity: 0.8;
}

body.is-news-search-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .c-fixed-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #4067cd;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .c-fixed-btn span {
    padding-right: 39px;
    position: relative;
  }
  .c-fixed-btn span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(../img/common/arrow-w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
/* 記事一覧ページ（Figma: 2006:66133 / 2006:66240） */
.p-newsList {
  background: #fff;
  padding-bottom: 40px;
}

.p-newsList__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: content-box;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-newsList__inner {
    padding-inline: 20px;
    padding-top: 0;
  }
}

.p-newsList__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-newsList__head {
    padding-top: 40px;
    padding-bottom: 30px;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-newsList__titleIcon {
    width: 25px;
    height: 19px;
  }
}

.p-newsList__title {
  margin: 0;
  color: #333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-newsList__title {
    font-size: 24px;
  }
}

.p-newsList__description {
  max-width: 704px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-newsList__description {
    font-size: 12px;
    text-align: center;
  }
}
.p-newsList__description p {
  margin: 0;
}

.p-newsList__count {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.p-newsList__countNum {
  color: #f9581c;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-right: 4px;
}

.p-newsList__related {
  margin-bottom: 0;
}

.p-newsList__relatedInner {
  background: #f2f5fa;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-newsList__relatedInner {
    margin-inline: auto;
    gap: 10px;
    padding: 20px;
  }
}

.p-newsList__relatedTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-newsList__relatedTitle {
    font-size: 16px;
  }
}

.p-newsList__relatedIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url(../img/common/icon-tag.svg) center/contain no-repeat;
}

.p-newsList__relatedList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-newsList__relatedTag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #4067cd;
  border-radius: 100px;
  background: #fff;
  color: #4067cd;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-newsList__relatedTag {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.p-newsList__relatedTag:hover {
  background: #4067cd;
  color: #fff;
  opacity: 1;
}

.p-newsList .p-sort__container {
  width: fit-content;
  padding: 30px 0 20px;
  justify-content: flex-start;
}

.p-newsList .p-sort__btn {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background: transparent;
  padding-block: 16px;
  padding-inline: 16px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-newsList .p-sort__btn {
    font-size: 12px;
    padding-block: 0;
  }
}
.p-newsList .p-sort__btn:nth-of-type(1):after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 18px;
  background-color: #333;
}
.p-newsList .p-sort__btn.active {
  color: #333;
  font-weight: 400;
  cursor: default;
}

.p-newsList__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-newsList__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 15px;
    margin-inline: auto;
  }
}

.p-newsArchive__card--list .p-newsArchive__cardMain {
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__card--list .p-newsArchive__cardMain {
    gap: 8px;
  }
}
.p-newsArchive__card--list .p-newsArchive__cardFig--list {
  width: 100%;
  aspect-ratio: 328/218;
  border-radius: 20px;
  overflow: hidden;
}
.p-newsArchive__card--list .p-newsArchive__cardFig--list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__card--list .p-newsArchive__cardFig--list {
    border-radius: 10px;
  }
  .p-newsArchive__card--list .p-newsArchive__cardFig--list img {
    border-radius: 10px;
  }
}
.p-newsArchive__card--list .p-newsArchive__cardBody--list {
  gap: 8px;
  padding: 0;
}
.p-newsArchive__card--list .p-newsArchive__cardTitle--list {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-newsArchive__card--list .p-newsArchive__cardTitle--list {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-newsArchive__card--list .p-newsArchive__cardDate {
    font-size: 8px;
  }
  .p-newsArchive__card--list .p-newsDetail__label {
    font-size: 8px;
    padding: 2px 4px;
  }
}
.p-newsArchive__card--list .p-newsDetail__tags {
  margin-top: 4px;
}

.p-newsList__load-more-container {
  text-align: center;
  padding-bottom: 40px;
}

.p-newsList__load-more-button {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #4067cd;
  width: 100%;
  color: #4067cd;
  padding: 24px 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
  outline: none;
}
@media screen and (max-width: 768px) {
  .p-newsList__load-more-button {
    padding: 15px 20px;
    font-size: 14px;
  }
}
.p-newsList__load-more-button span {
  position: relative;
  padding-right: 34px;
}
.p-newsList__load-more-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-newsList__load-more-button .open-text::before {
  background-image: url(../img/common/search-more.svg);
}
.p-newsList__load-more-button .close-text::before {
  background-image: url(../img/common/search-close.svg);
}
.p-newsList__load-more-button:hover {
  opacity: 0.8;
}
.p-newsList__load-more-button.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.p-newsList__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0 80px;
  text-align: center;
}

.p-newsList__emptyTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.p-newsList__emptyTips {
  text-align: left;
  max-width: 400px;
  width: 100%;
}
.p-newsList__emptyTips h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.p-newsList__emptyTips ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.8;
}/*# sourceMappingURL=news.css.map */