/* =========================================================
 全体
========================================================= */
html {
  font-family: "Noto Sans JP", "Roboto", sans-serif, serif;
  touch-action: manipulation;
}

body {
  overflow-x: auto;
  width: 100%;
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  color: #2e2e2e;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 768px) {
  body {
    max-width: 100%;
    min-width: 100%;
  }
}

main {
  margin-bottom: 120px;
}

main.top {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  main {
    margin-bottom: 80px;
  }
}

p,
span,
h1,
h2,
h3,
h4,
a,
img,
ul,
li,
ol {
  visibility: hidden;
}

html.wf-active p,
html.wf-active span,
html.wf-active h1,
html.wf-active h2,
html.wf-active h3,
html.wf-active h4,
html.wf-active a,
html.wf-active img,
html.wf-active ul,
html.wf-active li,
html.wf-active ol {
  visibility: visible;
}

html.wf-inactive p,
html.wf-inactive span,
html.wf-inactive h1,
html.wf-inactive h2,
html.wf-inactive h3,
html.wf-inactive h4,
html.wf-inactive a,
html.wf-inactive img,
html.wf-inactive ul,
html.wf-inactive li,
html.wf-inactive ol {
  visibility: visible;
}

/* =========================================================
 共通要素
========================================================= */
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.simplebar-track {
  background-color: #e3e3e3;
  border-radius: 100px;
}

.simplebar-track.simplebar-horizontal {
  height: 8px;
}

.simplebar-scrollbar::before {
  background-color: #656565;
  border-radius: 100px;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* =========================================================
 インナー
========================================================= */
.inner {
  width: 100%;
  max-width: 1344px;
  margin: auto;
  padding: 0 32px;
}

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

/* =========================================================
 リンク
========================================================= */
.link {
  text-decoration: none;
}

.link--underline {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 7.5%;
  text-underline-offset: 25%;
}

@media (any-hover: hover) {
  .link:hover,
  .link:active {
    opacity: 0.7;
  }

  .link--underline:hover,
  .link--underline:active {
    text-decoration: none;
  }
}

/* =========================================================
 ヘッダー
========================================================= */
header {
  position: sticky;
  top: 0;
  display: flex;
  z-index: 1000;
  transition: all 0.3s;
}

header.menu-open {
  background-color: #f0f0f0;
}

header.is-hidden {
  transform: translateY(-150%);
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 88px;
  margin: 24px 0 8px;
  padding: 0 16px 0 48px;
  background: #ffffff;
  border-radius: 80px;
  z-index: 2000;
  transition: all 0.3s;
  gap: 5%;
}

header.menu-open .header-main {
  background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .header-main {
    height: 60px;
    margin-top: 16px;
    padding: 0 8px 0 16px;
  }
}

.header-main__title {
  max-width: 240px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main__title img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header-main__title {
    max-width: 160px;
  }
}

.header-main__utility {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  transition: all 0.3s;
  width: calc(95% - 212px);
  justify-content: flex-end;
}

.header-main__search {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 5%;
  font-size: 16px;
  font-weight: 700;
  color: #2e2e2e;
}

header.menu-open .header-main__search {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header-main__search {
    display: none;
  }
}

.header-main__dropdown {
  height: 100%;
  cursor: pointer;
  white-space: nowrap;
}

.header-main__dropdown-trigger {
  height: 100%;
  align-content: center;
  color: #2e2e2e;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .header-main__dropdown:hover .header-main__dropdown-trigger {
    text-decoration: underline;
    text-underline-offset: 8px;
  }
}

.header-main__dropdown-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1140px;
  padding-top: 8px;
  cursor: default;
}

@media (any-hover: hover) {
  .header-main__dropdown:hover .header-main__dropdown-box {
    display: block;
  }
}

.header-main__dropdown-contents {
  display: grid;
  width: 100%;
  column-gap: 80px;
  padding: 32px 10%;
  border-radius: 16px;
  background-color: #ffffff;
  grid-template-columns: repeat(2, calc(100% / 2 - 40px));
}

.header-main__dropdown-contents a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  text-decoration: none;
  padding: 16px 8px;
  gap: 8px;
  border-bottom: 4px solid #f0f0f0;
  color: #2e2e2e;
}

.header-main__dropdown-contents img {
  width: 100%;
  height: auto;
  max-width: 32px;
}

.header-main__dropdown-contents span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-wrap-mode: wrap;
  color: #2e2e2e;
}

.header-main__search .link {
  height: 100%;
  align-content: center;
  white-space: nowrap;
  color: #2e2e2e;
}

.header-main__hamburger {
  cursor: pointer;
  z-index: 2000;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main__hamburger-icon {
  display: block;
  width: 64px;
  height: 64px;
}

.header-main__hamburger-icon--close {
  display: none;
}

.header-main__hamburger.active .header-main__hamburger-icon--open {
  display: none;
}

.header-main__hamburger.active .header-main__hamburger-icon--close {
  display: block;
}

@media screen and (max-width: 768px) {
  .header-main__hamburger,
  .header-main__hamburger-icon {
    width: 44px;
    height: 44px;
  }
}

.header-nav {
  height: 100%;
  position: fixed;
  top: 112px;
  left: 0;
  display: none;
  overflow-y: scroll;
  padding: 0 32px 224px;
  width: 100%;
  background-color: #f0f0f0;
  z-index: 999;
  transition: all 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-nav {
    top: 84px;
    padding: 0 16px 224px;
  }
}

@starting-style {
  .header-nav.active {
    opacity: 0;
  }
}

.header-nav.active {
  display: flex;
  justify-content: center;
  opacity: 1;
}

.header-nav__box {
  width: 100%;
  max-width: 1280px;
  z-index: 1100;
  transition: all 0.3s;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 80px 56px 0;
  display: flex;
  gap: 56px;
  margin-bottom: auto;
}

@media screen and (max-width: 1000px) {
  .header-nav__box {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__box {
    border-radius: 32px;
    padding: 40px 40px 0;
    gap: 40px;
  }
}

.header-nav__search-media {
  display: flex;
  flex-direction: column;
  width: calc(70% - 56px);
  gap: 80px;
  padding-bottom: 112px;
}

@media screen and (max-width: 1000px) {
  .header-nav__search-media {
    width: 100%;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__search-media {
    gap: 40px;
  }
}

.header-nav__search-media p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 31px;
  border-radius: 16px;
  background: #ff45e2;
  flex-shrink: 0;
}

.header-nav__search-category {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-nav__search-category p {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 39px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .header-nav__search-category {
    gap: 16px;
  }

  .header-nav__search-category p {
    font-size: 18px;
    line-height: 26.1px;
  }
}

.header-nav__category-list {
  display: grid;
  column-gap: 24px;
  grid-template-columns: repeat(2, calc(100% / 2 - 12px));
  grid-template-rows: repeat(2, auto);
}

.header-nav__category-list a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 76px;
  cursor: pointer;
  padding: 16px 8px;
  gap: 8px;
  border-bottom: 4px solid #d6d6d6;
  color: #2e2e2e;
}

.header-nav__category-list img {
  width: 100%;
  height: auto;
  max-width: 48px;
}

.header-nav__category-list span {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .header-nav__category-list {
    display: flex;
    flex-direction: column;
  }

  .header-nav__category-list a {
    min-height: 60px;
  }

  .header-nav__category-list img {
    max-width: 32px;
  }

  .header-nav__category-list span {
    font-size: 16px;
    line-height: 16px;
  }
}

.header-nav__search-links {
  display: flex;
  gap: 40px;
}

.header-nav__search-links a {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .header-nav__search-links {
    flex-direction: column;
  }

  .header-nav__search-links a {
    font-size: 20px;
    line-height: 30px;
  }
}

.header-nav__corporate {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 80px;
  padding-bottom: 112px;
}

@media screen and (max-width: 1000px) {
  .header-nav__corporate {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__corporate {
    gap: 40px;
  }
}

.header-nav__company-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-nav__company-group p {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 39px;
  color: #2e2e2e;
}

.header-nav__company-group p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 31px;
  border-radius: 16px;
  background: #ff45e2;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .header-nav__company-group {
    gap: 16px;
  }

  .header-nav__company-group p {
    font-size: 18px;
    line-height: 26.1px;
  }
}

.header-nav__company-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-nav__company-list a {
  display: inline;
  align-items: center;
  margin-right: auto;
  font-size: 16px;
  font-weight: 700;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .header-nav__company-list {
    gap: 24px;
  }

  .header-nav__company-list a {
    font-size: 16px;
    line-height: 24px;
  }

  .header-nav__company-list img {
    width: 10px;
    height: 10px;
  }
}

.header-nav__policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-nav__policy a {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  margin-right: auto;
  color: #2e2e2e;
}

/* =========================================================
 フッター
========================================================= */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.js-page-top {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.js-page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (any-hover: hover) {
  .js-page-top.is-show:hover {
    opacity: 0.7;
  }
}

.js-page-top img {
  width: 60px;
  height: auto;
  vertical-align: bottom;
}

.share-box-wrapper {
  width: 100%;
  background-color: #ffffff;
}

.share-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  margin: auto;
  gap: 24px;
}

.share-text {
  display: flex;
  gap: 24px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #2e2e2e;
}

.share-text::before,
.share-text::after {
  content: "";
  width: 32px;
  border-bottom: 3px dashed #9e9e9e;
}

.share-text::before {
  transform-origin: right bottom;
  transform: rotate(60deg);
}

.share-text::after {
  transform-origin: left bottom;
  transform: rotate(-60deg);
}

@media screen and (max-width: 768px) {
  .share-text {
    gap: 20px;
    font-size: 18px;
    line-height: 26.1px;
  }

  .share-text::before,
  .share-text::after {
    content: "";
    width: 26px;
    border-bottom: 1px dashed #9e9e9e;
  }
}

.share-icon {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .share-icon {
    flex-direction: column;
    justify-content: center;
  }
}

.share-icon__link-box {
  display: flex;
  gap: 24px;
  align-items: center;
}

.share-icon__link-box .link {
  width: 48px;
  height: 48px;
}

.share-icon__copy-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  cursor: pointer;
}

.share-icon__copy-link span {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

@media screen and (max-width: 768px) {
  .share-icon__copy-link {
    padding: 10px 48px;
  }
}

.footer-wrapper {
  color: #ffffff;
  background-color: #2e2e2e;
  width: 100%;
}

.footer-sub-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 56px;
  padding-bottom: 32px;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .footer-sub-wrapper {
    padding-bottom: 16px;
  }
}

.footer-title {
  max-width: 282px;
  width: 100%;
}

.footer-title img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer-title {
    max-width: 147px;
  }
}

.footer-inner-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .footer-inner-wrapper {
    gap: 48px;
  }
}

.footer-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
}

@media screen and (max-width: 1000px) {
  .footer-nav {
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (max-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(1, auto);
  }
}

.footer-nav a {
  color: #ffffff;
}

.footer-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.footer-sub-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26.1px;
  display: flex;
  gap: 8px;
}

.footer-sub-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 31px;
  background-color: #ff45e2;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .footer-sub-title {
    font-size: 16px;
    line-height: 21.6px;
  }

  .footer-sub-title::before {
    height: 22px;
  }
}

.footer-list a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26.1px;
}

@media screen and (max-width: 768px) {
  .footer-list a {
    font-size: 16px;
    line-height: 24px;
  }
}

.footer-sub-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .footer-sub-list {
    gap: 24px;
  }
}

.footer-sub-list a {
  font-size: 12px;
  line-height: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-sub-list a {
    font-size: 12px;
    line-height: 18px;
  }
}

.footer-copyright-wrapper {
  border-top: 1px solid #6a6a6a;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.footer-copyright {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer-copyright-wrapper {
    align-items: flex-start;
  }
}

/* =========================================================
 共通領域＋共通要素
========================================================= */
/* 記事タイル＋もっと見るボタン領域 */
.article-and-button-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 記事タイル＋記事件数領域 */
.article-and-count-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 記事件数 */
.article-list-count {
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .article-list-count {
    font-size: 18px;
    line-height: 27px;
  }
}

/* 記事タイル領域 */
.article-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
}

.article-list-container .columntile {
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 1000px) {
  .article-list-container .columntile {
    width: calc((100% - 80px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .article-list-container .columntile {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 480px) {
  .article-list-container .columntile {
    width: 100%;
  }
}

/* 記事が存在しなかった場合のテキスト */
.no-article-text {
  text-wrap-mode: nowrap;
}

@media screen and (max-width: 480px) {
  .no-article-text {
    text-wrap-mode: wrap;
  }
}

/* もっと見るボタン */
.loading-more-button-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.load-more-button {
  color: #ffffff;
  background-color: #0099ff;
  padding: 16px 24px 16px 40px;
  border-radius: 100px;
  cursor: pointer;
  min-width: 220px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: none;
  font-size: 14px;
  font-weight: 700;
}

.load-more-button.active {
  display: flex;
}

.load-more-button__icon {
  display: inline-block;
  flex-shrink: 0;
}

/* サムネイル罫線カテゴリカラー */
.thumbnail-border-first-credit-card {
  border-color: #ffb2ff;
  background-color: #ffb2ff;
}

.thumbnail-border-knowledge {
  border-color: #ffff6b;
  background-color: #ffff6b;
}

.thumbnail-border-how-to-use {
  border-color: #cfffb7;
  background-color: #cfffb7;
}

.thumbnail-border-student {
  border-color: #d2b4ff;
  background-color: #d2b4ff;
}

.thumbnail-border-abroad {
  border-color: #abf3ff;
  background-color: #abf3ff;
}

.thumbnail-border-business {
  border-color: #dbdbdb;
  background-color: #dbdbdb;
}

/* =========================================================
 ページタイトル
========================================================= */
.page-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 56px;
  gap: 48px;
}

.page-title__box {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
}

.page-title__text {
  font-size: 42px;
  font-weight: 700;
  line-height: 50.4px;
  color: #2e2e2e;
}

.page-title__text span {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: #2e2e2e;
}

.page-title__bar {
  width: 100%;
  height: 4px;
  background: #e7e7e7;
}

@media screen and (max-width: 768px) {
  .page-title {
    padding-bottom: 40px;
    gap: 16px;
  }

  .page-title__box {
    gap: 16px;
  }

  .page-title__text {
    font-size: 26px;
    line-height: 33.8px;
  }

  .page-title__text span {
    font-size: 20px;
    line-height: 26px;
  }
}

/* =========================================================
 パンくずリスト
========================================================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  min-height: 32px;
  overflow: hidden;
  margin-bottom: 32px;
}

.breadcrumbs__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  flex-shrink: 0;
  white-space: nowrap;
  color: #2e2e2e;
}

.breadcrumbs__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2e2e2e;
}

.breadcrumbs__separator {
  display: inline-block;
  pointer-events: none;
  background-image: url("/media/common/images/icon_breadcrumb.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 12px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }

  .breadcrumbs__link {
    font-size: 14px;
    line-height: 21px;
  }

  .breadcrumbs__label {
    font-size: 14px;
    line-height: 19.6px;
  }

  .breadcrumbs__separator {
    width: 5px;
    height: 10px;
  }
}

/* =========================================================
 記事タグ
========================================================= */
.tag-area-box {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .tag-area-box {
    row-gap: 8px;
    column-gap: 16px;
  }
}

.tag {
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  height: 30px;
  color: #2e2e2e;
}

.tag::before {
  content: "#";
}

.tag--tile-list {
  height: 22px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
}

.tag--js-button {
  background: #d6d6d6;
  border: none;
}

.tag--js-button.is-active {
  background: #ffff54;
}

/* =========================================================
 監修者リスト-完全版
========================================================= */
.author-full-list {
  width: 100%;
  display: flex;
  padding: 24px 40px 32px;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: #ffffff;
}

.author-full-list__thumb-name {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.author-full-list__thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-full-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-full-list__name-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-full-list__name-box h2 {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
  color: #2e2e2e;
}

.author-full-list__name-box h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26.1px;
  color: #2e2e2e;
}

.author-full-list__profile {
  font-size: 16px;
  line-height: 24px;
}

.author-full-list__meta {
  width: 100%;
  display: flex;
  padding-left: 16px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-left: 2px solid #d6d6d6;
}

.author-full-list__meta-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-full-list__head {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #2e2e2e;
}

.author-full-list__qualification {
  font-size: 16px;
  line-height: 24px;
  color: #2e2e2e;
}

.author-full-list__hp-link {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: #2e2e2e;
}

.author-full-list__link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  align-self: flex-end;
  color: #2e2e2e;
}

.author-full-list__link-text::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/media/common/images/icon_arrow_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .author-full-list {
    padding: 24px 24px 32px;
    gap: 24px;
  }

  .author-full-list__thumb {
    width: 80px;
    height: 80px;
  }

  .author-full-list__name-box h3 {
    font-size: 16px;
  }

  .author-full-list__profile {
    font-size: 14px;
    line-height: 21px;
  }

  .author-full-list__qualification {
    font-size: 14px;
    line-height: 21px;
  }

  .author-full-list__link-text::after {
    width: 20px;
    height: 20px;
    background-image: url("/media/common/images/icon_arrow_s.svg");
  }
}

/* =========================================================
 監修者リスト-省略版
========================================================= */
.author-short-list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  min-height: 140px;
  width: 100%;
  border-radius: 16px;
  border: 2px solid #d6d6d6;
  background: #ffffff;
  box-sizing: border-box;
}

.author-short-list__thumb {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
}

.author-short-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-short-list__body {
  width: 100%;
  height: 100%;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  color: #2e2e2e;
}

.author-short-list__meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-short-list__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.author-short-list__qualification {
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.author-short-list__link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 7.5%;
  text-underline-offset: 25%;
  align-self: flex-end;
  color: #2e2e2e;
}

.author-short-list__link-text::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/media/common/images/icon_arrow_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .author-short-list__thumb {
    width: 80px;
    height: 80px;
  }

  .author-short-list__name {
    font-size: 18px;
    line-height: 25.2px;
  }

  .author-short-list__qualification {
    font-size: 14px;
    line-height: 21px;
  }

  .author-short-list__link-text::after {
    width: 20px;
    height: 20px;
    background-image: url("/media/common/images/icon_arrow_s.svg");
  }
}

/* =========================================================
 記事タイル
========================================================= */
.columntile {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  color: #2e2e2e;
}

.columntile.is-hidden {
  display: none;
}

.columntile__thumbnail-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border-width: 4px;
  border-style: solid;
}

.columntile__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columntile__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  overflow-wrap: anywhere;
}

.columntile__category {
  align-self: flex-end;
  height: 24px;
  padding: 0 16px;
  font-size: 12px;
  line-height: 22px;
  border-radius: 20px;
  background: #ffff54;
}

.columntile__tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.columntile__update {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
  align-self: flex-end;
}

@media screen and (max-width: 768px) {
  .columntile__title {
    font-size: 14px;
    line-height: 20px;
  }
}

/* =========================================================
 記事リスト
========================================================= */
.columnlist {
  border-radius: 16px;
  border: 2px solid #d6d6d6;
  background: #ffffff;
  display: inline-flex;
  width: 100%;
  align-items: center;
  align-self: stretch;
  padding: 16px;
  gap: 16px;
  text-decoration: none;
  color: #2e2e2e;
}

.columnlist__thumbnail-box {
  width: 120px;
  height: 67px;
  min-width: 120px;
  min-height: 67px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-width: 2px;
  border-style: solid;
}

.columnlist__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columnlist__index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.columnlist__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  overflow-wrap: anywhere;
}

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

.columnlist__update {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.24px;
}

@media screen and (max-width: 768px) {
  .columnlist__thumbnail-box {
    width: 90px;
    height: 50.6px;
    min-width: 90px;
    min-height: 50.6px;
  }

  .columnlist__title {
    font-size: 14px;
    line-height: 19.6px;
  }
}

/* =========================================================
 記事一覧
========================================================= */
.all-column-body-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .all-column-body-area {
    gap: 40px;
  }
}

.tag-button-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 40px 72px 48px;
}

@media screen and (max-width: 768px) {
  .tag-button-area {
    padding: 32px 16px 40px;
    gap: 24px;
  }
}

.tag-button-area__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

@media screen and (max-width: 768px) {
  .tag-button-area__title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 768px) {
  .tag-button-area__more-tag-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
}

.tag-button-area__item {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .tag-button-area__item.is-sp-hidden {
    display: none;
  }

  .tag-button-area__item.is-sp-hidden.is-visible {
    display: inline-block;
  }

  .tag-button-area__item.is-sp-hidden:has(.is-active) {
    display: inline-block;
  }
}

.tag-button-area__more-button-area.is-sp-visible-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .tag-button-area__more-button-area.is-sp-visible-only {
    display: block;
    text-align: center;
  }
}

#show-all-tags-button img {
  transition: all 0.3s;
}

#show-all-tags-button.is-open img {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  #show-all-tags-button:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  #show-all-tags-button {
    border: none;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    display: inline-flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #2e2e2e;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tag-button-area__more-button {
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
 監修者一覧
========================================================= */
.all-author-body-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .all-author-body-area {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}

/* =========================================================
 監修者別記事一覧
========================================================= */
.author-column-body-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .author-column-body-area {
    gap: 48px;
  }
}

.article-and-link-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .article-and-link-area {
    gap: 32px;
  }
}

.other-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: auto;
  color: #2e2e2e;
}

.other-author::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/media/common/images/icon_arrow_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .other-author::after {
    width: 20px;
    height: 20px;
    background-image: url("/media/common/images/icon_arrow_s.svg");
  }
}

/* =========================================================
 カテゴリ別記事一覧
========================================================= */
.inner--category-column-top {
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .inner--category-column-top {
    padding-bottom: 40px;
  }
}

.inner--category-column-bottom {
  padding-top: 80px;
}

.category-column-section-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .category-column-section-box {
    gap: 56px;
  }
}

.category-column-head-text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .category-column-head-text-box {
    gap: 32px;
  }
}

.category-column-head-text-sub-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .category-column-head-text-sub-box {
    padding: 32px 24px 16px;
  }
}

.category-column-category-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 16px;
}

@media screen and (max-width: 768px) {
  .category-column-category-box {
    gap: 8px;
  }
}

.category-column-category-box a {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
  padding: 8px 16px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .category-column-category-box a {
    padding: 16px 8px;
  }
}

.category-column-category-box img {
  width: 32px;
  height: 32px;
}

.category-column-category-box span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .category-column-category-box span {
    font-size: 14px;
    line-height: 19.6px;
  }
}

.category-column-category-box a::after {
  content: "";
  border-right: 2px dotted #d6d6d6;
  height: 100%;
  position: absolute;
  right: 0;
}

.category-column-category-box a:last-child::after {
  content: none;
}

@media screen and (min-width: 1001px) {
  .category-column-category-box a:nth-child(4n + 1) {
    padding-left: 0;
  }

  .category-column-category-box a:nth-child(4n)::after {
    content: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .category-column-category-box {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-column-category-box a:nth-child(3n + 1) {
    padding-left: 0;
  }

  .category-column-category-box a:nth-child(3n)::after {
    content: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .category-column-category-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-column-category-box a:nth-child(2n + 1) {
    padding-left: 0;
  }

  .category-column-category-box a:nth-child(2n)::after {
    content: none;
  }
}

@media screen and (max-width: 480px) {
  .category-column-category-box {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .category-column-category-box a::after {
    border-right: none;
    width: 100%;
  }

  .category-column-category-box a:not(:last-child)::after {
    border-bottom: 2px dotted #bddce2;
  }
}

.category-column-white-bg {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .category-column-white-bg {
    padding: 40px 0;
  }
}

.category-column-white-bg .inner {
  display: flex;
}

/* CTA */
.category-column-white-bg .link--cta {
  height: 500px;
  max-height: 500px;
  margin: auto;
}

.category-column-white-bg .link--cta img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-column-head {
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .category-column-head {
    font-size: 24px;
    line-height: 31.2px;
  }
}

.category-column-sub-head {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .category-column-head {
    font-size: 20px;
    line-height: 26px;
  }
}

.article-list-container.exclude-load-more-column {
  width: 100%;
  padding-bottom: 24px;
}

.article-list-container.exclude-load-more-column .simplebar-content {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.article-list-container.exclude-load-more-column .simplebar-content::before {
  display: none;
}

.article-list-container.exclude-load-more-column .columntile {
  width: 290px;
  min-width: 290px;
}

/* =========================================================
 記事詳細
========================================================= */
.inner__column {
  width: 100%;
  display: flex;
  gap: 5%;
  align-items: flex-start;
}

.inner__column--left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-column-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inner__column--right {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: sticky;
  top: 16px;
  transition: all 0.3s;
}

.inner__column--right.is-header-show {
  top: 136px;
}

@media screen and (max-width: 1000px) {
  .inner__column {
    flex-direction: column;
    gap: 40px;
  }

  .inner__column--left {
    width: 100%;
  }

  .inner__column--right {
    width: 100%;
  }
}

.inner__column--left h1 {
  line-height: 50.4px;
  padding-top: 6px;
}

.inner__column--left h2 {
  scroll-margin-top: 136px;
}

.inner__column--left h1 span {
  font-size: 42px;
  font-weight: 700;
  line-height: 50.4px;
  color: #ffffff;
  padding: 0 8px 6px;
  background: #2e2e2e;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .inner__column--left h1 span {
    font-size: 26px;
    line-height: 33.8px;
  }
}

.inner__column--left .date {
  display: flex;
  width: 100%;
  gap: 8px;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
}

@media screen and (max-width: 768px) {
  .inner__column--left .tag {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }
}

/* サムネイル */
.columndetail__thumbnail-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border-width: 12px;
  border-style: solid;
}

@media screen and (max-width: 768px) {
  .columndetail__thumbnail-box {
    border-width: 6px;
  }
}

.columndetail__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

/* 本文 */
.inner__column--body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .inner__column--body {
    font-size: 14px;
    line-height: 21px;
  }
}

/* CTA */
.inner__column--body .link--cta {
  height: 500px;
  max-height: 500px;
  margin: auto;
}

.inner__column--body .link--cta img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 目次 */
.inner__column--body .table-of-contents {
  width: calc(100% - 80px);
  flex-direction: column;
  display: flex;
  padding: 16px 40px;
  gap: 16px;
  border-radius: 16px;
  background: #ffffff;
  margin: 24px 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .inner__column--body .table-of-contents {
    width: calc(100% - 32px);
    font-size: 14px;
    line-height: 21px;
    padding: 16px;
    margin: 24px 16px;
  }
}

.inner__column--body .table-of-contents .head {
  padding: 0 16px 8px;
  border-bottom: 2px solid #9e9e9e;
}

.inner__column--body .table-of-contents .link {
  margin: 0 16px;
  color: #2e2e2e;
}

/* 見出し */
.inner__column--body > h2 {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 49.4px;
  border-radius: 16px;
  border: 2px solid #2e2e2e;
  background: #ffff98;
  padding: 16px;
  color: #2e2e2e;
}

.inner__column--body > h3 {
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  position: relative;
  padding-left: 16px;
  color: #2e2e2e;
}

.inner__column--body > h3::before {
  content: "";
  width: 8px;
  height: 31px;
  border-radius: 16px;
  background: #ff45e2;
  position: absolute;
  left: 0;
  top: 4px;
}

.inner__column--body > h4 {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: #2e2e2e;
}

.inner__column--body > h2:not(:first-of-type) {
  margin-top: 40px;
}

.inner__column--body > h3,
.inner__column--body > h4 {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .inner__column--body > h2 {
    font-size: 24px;
    line-height: 31.2px;
  }

  .inner__column--body > h3 {
    font-size: 22px;
    line-height: 28.6px;
  }

  .inner__column--body > h3::before {
    top: 0;
  }

  .inner__column--body > h4 {
    font-size: 20px;
    line-height: 26px;
  }
}

/* 備考 */
.inner__column--body .notes {
  width: 100%;
  display: flex;
  gap: 8px;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
}

.inner__column--body .notes__head {
  flex-shrink: 0;
}

.inner__column--body .notes__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* 補足 */
.inner__column--body .supplement {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #e7e7e7;
  border-radius: 16px;
}

.inner__column--body .supplement__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26.1px;
}

.inner__column--body .supplement__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .inner__column--body .supplement__title {
    font-size: 16px;
    line-height: 21.6px;
  }

  .inner__column--body .supplement__text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* 本文内画像 */
.inner__column--body img {
  width: 100%;
  height: auto;
}

.inner__column--body p img {
  width: revert;
  max-width: 100%;
  height: revert-layer;
}

/* 単品画像 */
.inner__column--body .image-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.inner__column--body .image-box img {
  width: 100%;
  height: 100%;
}

/* 本文内リンク画像 */
.inner__column--body a:not([class]) img {
  width: revert;
}

/* 関連記事 */
.inner__column--body .related-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inner__column--body .related-column__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
}

.inner__column--body .related-column__head::before {
  content: "";
  width: 14px;
  border-top: 3px dashed #d6d6d6;
}

.inner__column--body .related-column__head::after {
  content: "";
  flex-grow: 1;
  border-top: 3px dashed #d6d6d6;
}

@media screen and (max-width: 768px) {
  .inner__column--body .related-column__head {
    font-size: 14px;
    line-height: 21px;
  }

  .inner__column--body .related-column__head::before,
  .inner__column--body .related-column__head::after {
    border-width: 2px;
  }
}

/* 関連リンク */
.inner__column--body .related-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inner__column--body .related-link a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 7.5%;
  text-underline-offset: 25%;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-right: auto;
  word-break: break-all;
  color: #2e2e2e;
}

@media (any-hover: hover) {
  .inner__column--body .related-link a:hover,
  .inner__column--body .related-link a:active {
    opacity: 0.7;
    text-decoration: none;
  }
}

.inner__column--body .related-link a::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/media/common/images/icon_arrow_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .inner__column--body .related-link a::after {
    width: 20px;
    height: 20px;
    background-image: url("/media/common/images/icon_arrow_s.svg");
  }
}

/* リスト */
.inner__column--body ul,
.inner__column--body ol {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inner__column--body ul li {
  width: 100%;
  position: relative;
  padding-left: 18px;
}

.inner__column--body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.inner__column--body ul.list-marker li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ff45e2;
  border-radius: 50%;
  line-height: 24px;
  margin: 7px 0;
}

.inner__column--body ol {
  counter-reset: list-count;
}

.inner__column--body ol li {
  width: 100%;
  position: relative;
  padding-left: 30px;
}

.inner__column--body ol li::before {
  counter-increment: list-count;
  content: counter(list-count, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff45e2;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  position: absolute;
  left: 0;
  margin: 2px 0;
}

.inner__column--body li img {
  display: block;
  max-width: 100%;
  width: revert-layer;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .inner__column--body ul.list-marker li::before {
    margin: 6px 0;
  }

  .inner__column--body ol li::before {
    margin: 0;
  }
}

/* 本文内リンク */
.inner__column--body a:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a) {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid #2e2e2e;
  word-break: break-all;
  color: #2e2e2e;
}

.inner__column--body a:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a):hover,
.inner__column--body a:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a):active {
  opacity: 0.7;
  text-decoration: none;
}

.inner__column--body a[target="_blank"]:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/media/common/images/blank_column.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  padding: 3px 0;
  margin: 0 4px;
}

/* 本文内リンク画像 */
.inner__column--body a:not([class]):has(img):not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a) {
  border: none;
}

.inner__column--body a[target="_blank"]:not([class]):has(img):not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a)::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .inner__column--body a:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a) {
    font-size: 14px;
    line-height: 21px;
  }

  .inner__column--body a[target="_blank"]:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a)::after {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }
}

.inner__column--body .notes__text a:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a) {
  font-size: 12px;
  line-height: 18px;
}

.inner__column--body .notes .notes__text a[target="_blank"]:not(a.link--cta):not(.table-of-contents a):not(.related-column a):not(.related-link a)::after {
  width: 12px;
  height: 12px;
}

/* 太字 */
.inner__column--body strong {
  font-weight: 700;
}

/* 上付き文字 */
.inner__column--body sup {
  vertical-align: text-bottom;
  font-size: smaller;
}

/* マーカー */
.inner__column--body .marker {
  background: linear-gradient(transparent 50%, #ffff54 50%);
}

/* 文字色 */
.inner__column--body .text-red {
  color: #ce0023;
}

.inner__column--body .text-blue {
  color: #60979f;
}

/* テーブル */
.inner__column--body table {
  width: 100% !important;
  border-radius: 16px;
  overflow: hidden;
  table-layout: auto;
  min-width: 896px;
  border-collapse: initial !important;
}

.supplement__text .inner__column--body table {
  min-width: 864px;
}

.inner__column--body .table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 24px;
}

.inner__column--body th,
.inner__column--body td {
  color: #2e2e2e;
  padding: 8px;
  font-size: 16px;
  line-height: 22.4px;
  vertical-align: middle;
}

.inner__column--body th img,
.inner__column--body td img {
  display: block;
  max-width: 100%;
  width: revert-layer;
  height: auto;
  margin: auto;
}

.inner__column--body th {
  background: #d6d6d6;
  text-align: left;
  font-weight: 700;
}

.inner__column--body thead td {
  background: #6a6a6a;
  color: #ffffff;
  text-align: left;
  font-weight: 700;
}

.inner__column--body tbody td {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .inner__column--body th,
  .inner__column--body td {
    font-size: 14px;
    line-height: 19.6px;
  }
}

.detail-column-head {
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .detail-column-head {
    font-size: 24px;
    line-height: 31.2px;
  }
}

.detail-column-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-column-sub-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-column-company {
  width: 100%;
  display: flex;
  gap: 32px;
}

.detail-column-company__logo {
  width: 100%;
  max-width: 320px;
  height: 180px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 16px;
}

.detail-column-company__logo h3 {
  width: 100%;
  height: 100%;
  display: flex;
}

.detail-column-company__logo img {
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 64px;
}

@media screen and (max-width: 768px) {
  .detail-column-company__logo {
    max-width: 100%;
  }

  .detail-column-company__logo img {
    width: 100%;
    max-width: 311px;
  }
}

.detail-column-company__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: solid 4px #d6d6d6;
  padding: 16px 0;
  gap: 16px;
}

.detail-column-company__detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-column-company__copy {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 26.1px;
  color: #2e2e2e;
}

.detail-column-company__detail a {
  margin-right: auto;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #2e2e2e;
}

.detail-column-company__description {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .detail-column-company {
    flex-direction: column;
    gap: 16px;
  }

  .detail-column-company__copy {
    font-size: 16px;
    line-height: 21.6px;
  }

  .detail-column-company__description {
    font-size: 14px;
    line-height: 21px;
  }
}

.detail-column-share {
  width: 100%;
  display: flex;
  gap: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.detail-column-share .columnlist {
  border: none;
}

.detail-column-share__share-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  margin: auto;
  gap: 24px;
}

.detail-column-share__share-text {
  display: flex;
  gap: 24px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #2e2e2e;
}

.detail-column-share__share-text::before,
.detail-column-share__share-text::after {
  content: "";
  width: 32px;
  border-bottom: 3px dashed #9e9e9e;
}

.detail-column-share__share-text::before {
  transform-origin: right bottom;
  transform: rotate(60deg);
}

.detail-column-share__share-text::after {
  transform-origin: left bottom;
  transform: rotate(-60deg);
}

.detail-column-share__share-icon {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column;
}

.detail-column-share__share-icon__link-box {
  display: flex;
  gap: 24px;
  align-items: center;
}

.detail-column-share__share-icon__link-box .link {
  width: 48px;
  height: 48px;
}

@media screen and (max-width: 768px) {
  .detail-column-share {
    flex-direction: column;
  }

  .detail-column-share__share-text {
    gap: 20px;
    font-size: 18px;
    line-height: 26.1px;
  }

  .detail-column-share__share-text::before,
  .detail-column-share__share-text::after {
    content: "";
    width: 26px;
    border-bottom: 1px dashed #9e9e9e;
  }

  .detail-column-share__share-icon {
    flex-direction: column;
    justify-content: center;
  }
}

.detail-column-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-column-side__head {
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #d6d6d6;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: #2e2e2e;
}

.detail-column-side__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-column-side__column-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-column-side__column-box.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .detail-column-side__wrapper {
    gap: 8px;
  }

  .detail-column-side__column-box.pc {
    display: none;
  }

  .detail-column-side__column-box.sp {
    display: flex;
    gap: 8px;
  }
}

.detail-column-side-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-column-side-category-box {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.detail-column-side-category-box a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 76px;
  cursor: pointer;
  padding: 16px 8px;
  gap: 8px;
  border-bottom: 4px solid #d6d6d6;
  color: #2e2e2e;
}

.detail-column-side-category-box img {
  width: 32px;
  height: 32px;
}

.detail-column-side-category-box span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .detail-column-side-category-box span {
    font-size: 14px;
    line-height: 19.6px;
  }
}

/* =========================================================
 TOP
========================================================= */
.section-kv,
.section-recommend,
.section-category,
.section-bottom {
  position: relative;
  width: 100%;
}

.kv-box {
  height: 520px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.kv-box h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 354px;
  text-wrap-mode: nowrap;
}

.kv-box span {
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  height: 59px;
  color: #2e2e2e;
}

.kv-box img {
  margin-top: 88px;
  max-width: 100%;
  height: auto;
  width: calc(100% - 354px);
}

.kv-bg {
  background-color: #474747;
  position: absolute;
  width: 100%;
  height: 640px;
  top: -120px;
  left: 0;
  z-index: -1;
}

.recommend-media {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 40px;
  padding-bottom: 120px;
  max-width: 1280px;
}

.recommend-media__box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recommend-media__wrapper h2,
.category-media h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  color: #2e2e2e;
}

.recommend-media__contents {
  display: flex;
  gap: 40px;
  width: 100%;
  padding-bottom: 24px;
}

.recommend-media__contents .columntile {
  width: 290px;
  min-width: 290px;
}

.recommend-bg {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.recommend-bg img {
  width: 300px;
  height: 480px;
}

.category-media {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  height: 100%;
}

.category-media__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  padding: 8px 0;
}

.category-media__head img {
  width: 48px;
  height: 48px;
}

.category-media__box {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.category-media__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-media__contents,
.bottom-media__author {
  display: grid;
  grid-template-columns: repeat(2, calc(100% / 2 - 12px));
  gap: 24px;
}

.category-media__others,
.bottom-media__others {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-left: auto;
  color: #2e2e2e;
}

.category-media__others::after,
.bottom-media__others::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/media/common/images/icon_arrow_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .category-media__others::after,
  .bottom-media__others::after {
    width: 20px;
    height: 20px;
    background-image: url("/media/common/images/icon_arrow_s.svg");
  }
}

.category-bg {
  background-color: #e7e7e7;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.bottom-media {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
}

.bottom-media__title {
  padding: 40px 0 16px 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  color: #2e2e2e;
}

.bottom-media-box {
  display: flex;
  flex-wrap: wrap;
}

.bottom-media__tags-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bottom-media__tags-box a {
  display: flex;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 16px;
  color: #2e2e2e;
}

.bottom-media__others {
  margin-top: 24px;
}

.bottom-corporate {
  display: flex;
  gap: 40px;
}

.bottom-corporate__area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 620px;
}

.bottom-corporate .share-text {
  justify-content: center;
  font-size: 30px;
}

.bottom-corporate__box {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 40px 20px;
}

.bottom-corporate__box > a > img {
  width: 140px;
  max-width: 100%;
}

.bottom-corporate__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.bottom-corporate__list img {
  max-width: 100%;
  height: 40px;
}

.bottom-sns__box {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.sns-button {
  display: flex;
  gap: 24px;
}

.sns-button img {
  width: 48px;
  height: 48px;
}

.bottom-bg {
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .kv-box {
    flex-direction: column;
    height: 380px;
    padding-top: 16px;
  }

  .kv-box h1 {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: center;
  }

  .kv-box span:first-of-type {
    padding-right: 0;
  }

  .kv-box span:last-of-type {
    padding-left: 0;
  }

  .kv-box img {
    margin-top: 0;
    max-width: 100%;
    width: 600px;
  }

  .kv-bg {
    height: 500px;
    top: -120px;
  }

  .bottom-corporate {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}

@media screen and (max-width: 768px) {
  .kv-box {
    flex-direction: column;
    height: 365px;
    padding-top: 16px;
  }

  .kv-box h1 {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: center;
  }

  .kv-box span {
    font-size: 24px;
    line-height: 31.2px;
    height: 41px;
  }

  .kv-box span:first-of-type {
    padding-right: 0;
  }

  .kv-box span:last-of-type {
    padding-left: 0;
  }

  .kv-box img {
    margin-top: 0;
    width: auto;
    max-height: 300px;
  }

  .kv-bg {
    height: 390px;
    top: -84px;
  }

  .section-recommend .inner {
    overflow-x: auto;
  }

  .recommend-media {
    padding-top: 0;
    padding-bottom: 80px;
    gap: 24px;
    width: auto;
  }

  .recommend-media__box {
    gap: 0;
  }

  .recommend-media__wrapper h2,
  .category-media h2 {
    margin: 32px 0;
    font-size: 24px;
    line-height: 31.2px;
  }

  .category-media {
    padding: 64px 0;
    display: block;
    height: auto;
  }

  .category-media__box {
    gap: 56px;
  }

  .category-media__head {
    font-size: 22px;
    line-height: 28.6px;
    margin-bottom: 16px;
    padding: 0;
  }

  .category-media__head img {
    width: 38px;
    height: 38px;
  }

  .category-media__item {
    gap: 0;
  }

  .category-media__contents {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .bottom-media {
    padding: 80px 0;
  }

  .bottom-media__title {
    padding: 32px 0;
    font-size: 24px;
    line-height: 31.2px;
  }

  .bottom-media__author {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .bottom-corporate {
    flex-direction: column;
    gap: 48px;
  }

  .bottom-corporate .share-text {
    font-size: 20px;
    line-height: 26px;
  }

  .bottom-corporate__area {
    width: auto;
    gap: 0;
  }

  .bottom-corporate__box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
  }

  .bottom-corporate__box > a > img {
    width: 128px;
  }

  .bottom-sns__box {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 0 0 0;
  }
}