@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* ---------- 共通設定 ---------- */
body {
  color: #343436;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  background: #DAEFF8;
}

.inner {
  width: 1071px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 18.5px;
}

.pc-only {
  display: block !important;
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

.card {
  display: block;
  height: 100%;
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 5px 30px rgba(20, 43, 78, 0.2), 0 0 30px rgba(0, 0, 0, 0.03);
  transition: opacity 0.3s ease;
}
.card--large {
  padding: 28px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .card--large {
    padding: 16px;
    border-radius: 12px;
  }
}
.card--large .card__imgWrap img {
  aspect-ratio: 540/304;
}
@media (max-width: 767px) {
  .card--large .card__imgWrap img {
    aspect-ratio: 270/158;
  }
}
.card--large .card__date {
  margin-top: 17px;
  margin-left: 8px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .card--large .card__date {
    margin-top: 12px;
    margin-left: 0;
    font-size: 12px;
  }
}
.card--large .card__title {
  margin-left: 8px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .card--large .card__title {
    margin-left: 0;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.card--large .card__category {
  margin-left: 8px;
  border-radius: 6px;
  font-size: 18px;
  padding: 6px 19px 7px;
}
@media (max-width: 767px) {
  .card--large .card__category {
    margin-left: 0;
    border-radius: 4px;
    font-size: 13px;
    padding: 8px 16px 6px;
  }
}
.card--large .card__tagList {
  margin-top: 17px;
  gap: 16px;
}
@media (max-width: 767px) {
  .card--large .card__tagList {
    margin-top: 12px;
    gap: 8px;
  }
}
.card--large .card__tag {
  font-size: 14px;
  padding: 5px 10px 4px 8px;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .card--large .card__tag {
    font-size: 12px;
    padding: 7px 12px 7px 12px;
  }
}
@media (any-hover: hover) {
  .card:hover {
    opacity: 0.8;
  }
}

.card__imgWrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 270/158;
  border-radius: 12px;
}

.card__date {
  display: block;
  margin-top: 12px;
  font-weight: 400;
  font-size: 12px;
  color: #676E87;
}

.card__title {
  margin-top: 11px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.card__category {
  display: inline-block;
  margin-top: 7px;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 15px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
}
.card__category--all {
  border-color: #629DE2;
  color: #629DE2;
}
.card__category--new {
  border-color: #135097;
  color: #135097;
}
.card__category--tips {
  border-color: #42A0AD;
  color: #42A0AD;
}
.card__category--interview {
  border-color: #9C8CFF;
  color: #9C8CFF;
}
.card__category--news {
  border-color: #C88DEC;
  color: #C88DEC;
}

.card__tagList {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.card__tag {
  font-weight: 500;
  font-size: 12px;
  background-color: #DAEFF8;
  padding: 4px 12px 7px 8px;
  border-radius: 24px;
  white-space: nowrap;
}

.section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
  padding-left: 84px;
  position: relative;
}
.section-title--blue {
  color: #135097;
}
.section-title--blue::before {
  background: transparent url(../imgs/section-title_logo.svg) no-repeat center center/contain;
}
.section-title--white {
  color: #fff;
}
.section-title--white::before {
  background: transparent url(../imgs/section-title_logo-white.svg) no-repeat center center/contain;
}
.section-title--center {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .section-title--center {
    margin-inline: 0;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    padding-left: 54px;
  }
}
@media screen and (max-width: 374px) {
  .section-title {
    font-size: clamp(1.188rem, -0.631rem + 9.09vw, 1.5rem);
  }
}
.section-title::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 38px;
  top: -3px;
  left: 0;
}
@media (max-width: 767px) {
  .section-title::before {
    width: 42px;
    height: 22px;
    top: 1px;
  }
}
.section-title--relatedPost {
  padding-left: 64px;
}
.section-title--relatedPost::before {
  width: 52px;
  height: 28px;
  top: 4px;
}

.button {
  display: inline-block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
  border: 2px solid #135097;
  border-radius: 20px 20px 0 20px;
  padding-block: 14px;
  padding-inline: 28px 20px;
  background-color: #135097;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .button {
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .button:hover {
    color: #135097;
    background-color: #fff;
  }
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  background-color: #daeff8;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.header__logo {
  margin-block: 34px 0;
  margin-left: 48px;
}
@media (max-width: 767px) {
  .header__logo {
    margin-left: 20px;
  }
}
.header__logo.is-scroll {
  margin-block: 12px;
  margin-left: 24px;
}

.header__logo a {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}

.header-logo-default {
  display: block;
}
.header-logo-default.js-hide {
  display: none;
}

.header-logo-default img {
  aspect-ratio: 260/100;
}
@media (max-width: 767px) {
  .header-logo-default img {
    display: block;
    width: 260px;
  }
}
@media screen and (max-width: 374px) {
  .header-logo-default img {
    width: 175px;
  }
}

.header-logo-scroll {
  display: none;
}
.header-logo-scroll.js-show {
  display: inline-block;
}
@media screen and (max-width: 432px) {
  .header-logo-scroll img {
    width: 150px;
  }
}
@media screen and (max-width: 335px) {
  .header-logo-scroll img {
    width: 130px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 49px;
  padding-block: 24px;
  padding-inline: 64px;
  background-color: #135097;
  border-radius: 0 0 0 32px;
}
@media screen and (max-width: 1320px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__list-item a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__list-item a:hover {
    opacity: 0.7;
  }
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__btn {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.header__btn--consultation {
  width: 152px;
}
.header__btn--consultation .header__btn--upper {
  color: #fff;
  background-color: #135097;
}
.header__btn--consultation .header__btn--lower {
  background-color: #fff;
  color: #135097;
}
.header__btn--refer {
  width: 144px;
}
.header__btn--refer .header__btn--upper {
  color: #135097;
  background-color: #fff;
}
.header__btn--refer .header__btn--lower {
  background-color: #135097;
  color: #fff;
}
@media (any-hover: hover) {
  .header__btn:hover {
    opacity: 0.8;
    translate: 0 4px;
  }
}

.header__btn span {
  display: block;
  width: 100%;
}

.header__btn--upper {
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  padding-block: 6px 4px;
}

.header__btn--lower {
  border-radius: 0 0 8px 8px;
  padding-block: 5px 7px;
}

.header__search {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__search:hover {
    opacity: 0.7;
  }
}

/* ---------- ドロワーメニュー ---------- */
/* アイコン */
.drawer__icon-items {
  position: fixed;
  z-index: 102;
  top: 28px;
  right: 24px;
  text-align: center;
}

.drawer__icon {
  width: 36px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
}
@media (any-hover: hover) {
  .drawer__icon:hover {
    cursor: pointer;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

.drawer__icon-search {
  display: block;
  margin-top: 32px;
}
.drawer__icon-search.js-hide {
  display: none;
}

/* メニューが開いている時 */
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 32deg;
  translate: 0 10.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -32deg;
  translate: 0 -10.5px;
}

/* ドロワーメニュー */
.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 84px;
  height: 140px;
  background: #135097;
  border-radius: 0 0 0 24px;
  transition: width 0.5s ease, height 0.5s ease;
  display: none;
}
@media screen and (max-width: 1320px) {
  .drawer {
    display: block;
  }
}

.drawer.js-show,
.drawer.is-scroll.js-show {
  width: 240px;
  height: 442px;
}

.drawer__body {
  width: 100%;
  height: 0;
  transition: height 0.5s ease;
}

.drawer.js-show .drawer__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 80px 32px;
}

.drawer__nav {
  opacity: 0;
  visibility: hidden;
  translate: 101%;
  text-align: center;
}

.drawer.js-show .drawer__nav {
  -webkit-animation: 0.5s 0.5s ease forwards fadeInNav;
          animation: 0.5s 0.5s ease forwards fadeInNav;
  opacity: 0;
  visibility: hidden;
  translate: 0;
}
@-webkit-keyframes fadeInNav {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInNav {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  text-align: center;
}
.drawer__list li a {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.drawer__search {
  display: inline-block;
  margin-top: 32px;
}

.drawer.is-scroll {
  width: 184px;
  height: 68px;
}
@media screen and (max-width: 432px) {
  .drawer.is-scroll {
    width: 155px;
    height: 56px;
  }
}

.drawer.is-scroll .drawer__icon-items {
  display: flex;
  flex-direction: row-reverse;
  gap: 48px;
  top: 20px;
  right: 32px;
}
@media screen and (max-width: 432px) {
  .drawer.is-scroll .drawer__icon-items {
    gap: 32px;
    top: 16px;
    right: 28px;
  }
}

.drawer.is-scroll .drawer__icon-search {
  margin-top: 0;
}

/* ---------- fv ---------- */
main {
  padding-top: 138px;
}

/* ---------- fv-swiper ---------- */
.fv__slider {
  /* 位置のreset */
  /* =============================
    ナビゲーションボタン
  ============================= */
  /* デフォルトのボタンを初期化 */
  /* 各ボタンのカスタマイズ */
}
.fv__slider .swiper-button-prev,
.fv__slider .swiper-button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}
.fv__slider .swiper {
  width: 100%;
  height: auto;
  padding-top: 66px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .fv__slider .swiper {
    padding-top: 92px;
  }
}
.fv__slider .swiper-slide-active {
  margin-top: -40px;
  transition: 0.3s;
}
.fv__slider .swiper-button-prev::after,
.fv__slider .swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}
.fv__slider .swiper-button-prev,
.fv__slider .swiper-button-next {
  top: calc(50% - 33px);
  translate: 0 -50%;
  width: 36px;
  height: 36px;
}
@media (max-width: 767px) {
  .fv__slider .swiper-button-prev,
.fv__slider .swiper-button-next {
    top: calc(50% - 54px);
  }
}
.fv__slider .swiper-button-prev img,
.fv__slider .swiper-button-next img {
  width: 100%;
  height: 100%;
}
.fv__slider .swiper-button-prev {
  left: 24%;
}
@media (max-width: 767px) {
  .fv__slider .swiper-button-prev {
    left: 2%;
  }
}
.fv__slider .swiper-button-next {
  right: 24%;
}
@media (max-width: 767px) {
  .fv__slider .swiper-button-next {
    right: 2%;
  }
}

/* ---------- 新着記事 ---------- */
.newPost {
  margin-top: 54px;
  padding-bottom: 39px;
}
@media (max-width: 767px) {
  .newPost {
    margin-top: 5px;
  }
}

.newPost__inner {
  width: min(1074px, 100%);
  margin-inline: auto;
  padding-inline: 44px;
}

.newPost__card-list {
  margin-top: 51px;
}
@media (max-width: 767px) {
  .newPost__card-list {
    margin-top: 37px;
  }
}

.card-list--newPost {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1033px) {
  .card-list--newPost {
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    margin-inline: auto;
  }
}
.card-list--newPost .card-list__item {
  width: 31%;
}
@media (max-width: 1033px) {
  .card-list--newPost .card-list__item {
    width: 100%;
  }
}

.newPost__button-wrap {
  margin-top: 49px;
  text-align: center;
}
@media (max-width: 767px) {
  .newPost__button-wrap {
    margin-top: 32px;
    text-align: right;
    max-width: 450px;
    margin-inline: auto;
  }
}

/* ---------- よく読まれている記事 ---------- */
.popularPost {
  padding-block: 66px 77px;
  background: transparent url(../imgs/bg-img.png) no-repeat center center/cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .popularPost {
    padding-block: 42px 52px;
  }
}

.popularPost__inner {
  width: min(1126px, 100%);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 767px) {
  .popularPost__inner {
    padding-inline: 32px 38px;
  }
}

@media (max-width: 767px) {
  .popularPost .section-title {
    letter-spacing: 0.1em;
  }
}

/* =============================
  スライダー
============================= */
.slider-wraper {
  margin-top: 49px;
  position: relative;
  /* 位置のreset */
  /* =============================
    スクロールバー
  ============================= */
  /* =============================
    ナビゲーションボタン
  ============================= */
  /* デフォルトのボタンを初期化 */
  /* 各ボタンのカスタマイズ */
}
@media (max-width: 767px) {
  .slider-wraper {
    margin-top: 98px;
  }
}
.slider-wraper .swiper-button-prev,
.slider-wraper .swiper-button-next,
.slider-wraper .swiper-scrollbar {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}
.slider-wraper .swiper-slide {
  height: auto;
}
.slider-wraper .swiper-scrollbar {
  width: 100%;
  height: 8px;
  background: #DDE1F0;
  top: calc(100% + 15px);
  left: 0;
}
@media (max-width: 767px) {
  .slider-wraper .swiper-scrollbar {
    top: calc(100% + 4px);
  }
}
.slider-wraper .swiper-scrollbar.--relatedPost {
  top: calc(100% + 37px);
}
.slider-wraper .swiper-scrollbar-drag {
  background: #135097;
}
.slider-wraper .swiper-button-prev::after,
.slider-wraper .swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}
.slider-wraper .swiper-button-prev,
.slider-wraper .swiper-button-next {
  top: -84px;
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .slider-wraper .swiper-button-prev,
.slider-wraper .swiper-button-next {
    top: -72px;
  }
}
@media (any-hover: hover) {
  .slider-wraper .swiper-button-prev--white:hover svg circle,
.slider-wraper .swiper-button-next--white:hover svg circle {
    fill: #fff;
  }
  .slider-wraper .swiper-button-prev--white:hover svg path,
.slider-wraper .swiper-button-next--white:hover svg path {
    fill: #629DE2;
  }
}
@media (any-hover: hover) {
  .slider-wraper .swiper-button-prev--blue:hover svg circle,
.slider-wraper .swiper-button-next--blue:hover svg circle {
    fill: #135097;
  }
  .slider-wraper .swiper-button-prev--blue:hover svg path,
.slider-wraper .swiper-button-next--blue:hover svg path {
    fill: #fff;
  }
}
.slider-wraper .swiper-button-prev svg circle, .slider-wraper .swiper-button-prev svg path,
.slider-wraper .swiper-button-next svg circle,
.slider-wraper .swiper-button-next svg path {
  transition: all 0.3s ease 0s;
}
.slider-wraper .swiper-button-prev {
  right: 87px;
}
@media (max-width: 767px) {
  .slider-wraper .swiper-button-prev {
    right: 64px;
  }
}
.slider-wraper .swiper-button-next {
  right: 23px;
}
@media (max-width: 767px) {
  .slider-wraper .swiper-button-next {
    right: 0;
  }
}
.slider-wraper .swiper {
  overflow: visible;
}

/* ---------- すべての記事 ---------- */
.postList {
  margin-top: 67px;
}
@media (max-width: 767px) {
  .postList {
    margin-top: 51px;
  }
}

.postList-tabs {
  margin-top: 51px;
}
@media (max-width: 767px) {
  .postList-tabs {
    margin-top: 16px;
  }
}

.postList-tabs__tabWrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  position: relative;
}
@media (max-width: 767px) {
  .postList-tabs__tabWrap {
    justify-content: end;
  }
}

.postList-tabs__tabList {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .postList-tabs__tabList {
    top: 32px;
    right: 1px;
    left: unset;
    flex-direction: column;
    gap: 6px;
  }
}

.postList-tabs__item {
  font-weight: 500;
  font-size: 16px;
  padding: 9px 20px 6px;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .postList-tabs__item {
    padding: 12px 8px 12px 3px;
    border-radius: 0 12px 12px 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.postList-tabs__item[aria-selected=true] {
  color: #fff;
  pointer-events: none;
}
.postList-tabs__item[aria-selected=false] {
  transition: all 0.3s ease 0s;
}
.postList-tabs__item[aria-selected=false]:hover {
  color: #fff;
}
.postList-tabs__item--all {
  border: 1px solid #629DE2;
  color: #629DE2;
}
.postList-tabs__item--all[aria-selected=true] {
  background-color: #629DE2;
}
.postList-tabs__item--all[aria-selected=false]:hover {
  background-color: #629DE2;
}
.postList-tabs__item--new {
  border: 1px solid #135097;
  color: #135097;
}
.postList-tabs__item--new[aria-selected=true] {
  background-color: #135097;
}
.postList-tabs__item--new[aria-selected=false]:hover {
  background-color: #135097;
}
.postList-tabs__item--tips {
  border: 1px solid #42A0AD;
  color: #42A0AD;
}
.postList-tabs__item--tips[aria-selected=true] {
  background-color: #42A0AD;
}
.postList-tabs__item--tips[aria-selected=false]:hover {
  background-color: #42A0AD;
}
.postList-tabs__item--interview {
  border: 1px solid #9C8CFF;
  color: #9C8CFF;
}
.postList-tabs__item--interview[aria-selected=true] {
  background-color: #9C8CFF;
}
.postList-tabs__item--interview[aria-selected=false]:hover {
  background-color: #9C8CFF;
}
.postList-tabs__item--news {
  border: 1px solid #C88DEC;
  color: #C88DEC;
}
.postList-tabs__item--news[aria-selected=true] {
  background-color: #C88DEC;
}
.postList-tabs__item--news[aria-selected=false]:hover {
  background-color: #C88DEC;
}

.postList-tabs__order-buttons {
  display: flex;
  position: absolute;
  top: 7px;
  right: 34px;
}
@media (max-width: 767px) {
  .postList-tabs__order-buttons {
    right: 8px;
  }
}

.postList-tabs__order-button {
  color: #676E87;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 767px) {
  .postList-tabs__order-button {
    font-size: 14px;
  }
}
.postList-tabs__order-button:nth-child(1) {
  margin-right: 12px;
  position: relative;
}
.postList-tabs__order-button:nth-child(1)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -12px;
  translate: 0 -50%;
  width: 1px;
  height: 20px;
  background-color: #676e87;
}
@media (max-width: 767px) {
  .postList-tabs__order-button:nth-child(1)::after {
    height: 16px;
  }
}
.postList-tabs__order-button:nth-child(2) {
  margin-left: 12px;
}
.postList-tabs__order-button[aria-checked=true] {
  color: #135097;
  pointer-events: none;
}
.postList-tabs__order-button[aria-checked=false] {
  transition: all 0.3s ease 0s;
}
.postList-tabs__order-button[aria-checked=false]:hover {
  opacity: 0.7;
}

.postList-tabs__contents {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .postList-tabs__contents {
    width: calc(100% - 28px);
  }
}

.postList-tabs__content {
  display: none;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease 0s;
}
.postList-tabs__content.js-postList-show {
  display: block;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.postList-tabs-content {
  padding: 32px;
  border-radius: 0 16px 16px 16px;
}
@media (max-width: 767px) {
  .postList-tabs-content {
    padding: 12px;
    border-radius: 16px 0 16px 16px;
  }
}
.postList-tabs-content--all {
  background-color: #629DE2;
}
.postList-tabs-content--new {
  background-color: #135097;
}
.postList-tabs-content--tips {
  background-color: #42A0AD;
}
.postList-tabs-content--interview {
  background-color: #9C8CFF;
}
.postList-tabs-content--news {
  background-color: #C88DEC;
}

.card-list--postList,
.card-list--archive,
.card-list--search {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
}
@media (max-width: 767px) {
  .card-list--postList,
.card-list--archive,
.card-list--search {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 12px;
  }
}
.card-list--postList .card-list__item,
.card-list--archive .card-list__item,
.card-list--search .card-list__item {
  width: calc(33.3333% - 1.4rem);
}
@media (max-width: 767px) {
  .card-list--postList .card-list__item,
.card-list--archive .card-list__item,
.card-list--search .card-list__item {
    width: 100%;
  }
}

.postList-order {
  display: none;
}
.postList-order.js-postList-show {
  display: flex;
}

.postList__button-wrap {
  margin-top: 32px;
  text-align: right;
}
@media (max-width: 767px) {
  .postList__button-wrap {
    margin-top: 24px;
    text-align: center;
    margin-left: 25px;
  }
}

/* ---------- キーワードで絞り込む ---------- */
.top-tagList {
  margin-top: 48px;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .top-tagList {
    margin-top: 63px;
    margin-bottom: 48px;
  }
}

.top-tagList__inner {
  width: min(867px, 100%);
  padding-inline: 25.5px;
  margin-inline: auto;
}

.tagList__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #fff;
  padding: 14px 42px 10px 23px;
  background-color: #629DE2;
  border-radius: 16px 16px 0 0;
  display: flex;
  gap: 11px;
  align-items: center;
}
@media (max-width: 767px) {
  .tagList__title {
    font-size: 15px;
    padding: 11px 27px 10px 16px;
    gap: 7px;
  }
}
.tagList__title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: transparent url(../imgs/icon-search.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .tagList__title::before {
    width: 18px;
    height: 18px;
  }
}

.tagList__contentWrap {
  background-color: #fff;
  border: 1px solid #629DE2;
  border-radius: 0 20px 20px 20px;
  padding: 36px 90px 36px;
}
@media (max-width: 767px) {
  .tagList__contentWrap {
    padding: 20px 14px 24px;
  }
}

.tagList__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .tagList__content {
    gap: 9px;
  }
}

.tagList__tagGroup {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid #DDE1F0;
}
@media (max-width: 767px) {
  .tagList__tagGroup {
    flex-direction: column;
    padding-bottom: 9px;
  }
}

.tagList__tagGroup-head {
  margin-top: 7px;
  min-width: 65px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #629DE2;
  flex-shrink: 1;
}

.tagList__tagGroup-tagList {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tagList__tagGroup-tagList {
    margin-top: 8px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

.tagList__tagGroup-tagList a {
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  background-color: #DAEFF8;
  border-radius: 16px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .tagList__tagGroup-tagList a {
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .tagList__tagGroup-tagList a:hover {
    background-color: #343436;
    color: #DAEFF8;
  }
}
.tagList__tagGroup-tagList a::before {
  content: "#";
}

/* ---------- CTA ---------- */
.cta {
  padding-block: 74px 76px;
  background: transparent url(../imgs/bg-img-cta.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .cta {
    padding-block: 50px 49px;
  }
}

.cta__inner {
  width: min(910px, 100%);
  margin-inline: auto;
  padding-inline: 40px;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: flex-start;
}
@media (max-width: 1033px) {
  .cta__buttons {
    flex-direction: column;
    gap: 22px;
  }
}

.cta__button a {
  display: block;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
@media (any-hover: hover) {
  .cta__button a:hover {
    opacity: 0.8;
    translate: 0 8px;
  }
}

.cta__button-upper {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  padding: 9px 14px;
  border-radius: 8px 8px 8px 0;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .cta__button-upper {
    font-size: 14px;
    padding: 7px 14px;
  }
}

.cta__button-lower {
  margin-top: -10px;
  display: inline-block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  padding-block: 16px;
  border-radius: 12px;
  border: 2px solid #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .cta__button-lower {
    font-size: 18px;
    padding-block: 9px;
    gap: 8px;
  }
}

.cta__button-lower::after {
  width: 24px;
  height: 24px;
  content: "";
}

.cta__button--consultation .cta__button-upper {
  color: #fff;
  background-color: #2A84BF;
}
.cta__button--consultation .cta__button-lower {
  color: #135097;
  background-color: #fff;
  letter-spacing: 0.02em;
  padding-inline: 32px 19.5px;
}
@media (max-width: 767px) {
  .cta__button--consultation .cta__button-lower {
    padding-inline: 18px 8.5px;
  }
}
.cta__button--consultation .cta__button-lower::after {
  background: transparent url(../imgs/cta-icon-right-blue.svg) no-repeat top center/contain;
}
.cta__button--refer .cta__button-upper {
  color: #135097;
  background-color: #fff;
}
.cta__button--refer .cta__button-lower {
  color: #fff;
  letter-spacing: 0.08em;
  padding-inline: 32px 22px;
}
@media (max-width: 767px) {
  .cta__button--refer .cta__button-lower {
    padding-inline: 22px 5px;
  }
}
.cta__button--refer .cta__button-lower::after {
  background: transparent url(../imgs/cta-icon-right-white.svg) no-repeat top center/contain;
}

/* ---------- footer ---------- */
.footer {
  padding-block: 48px 28px;
  background-color: #241919;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 42px 20px;
  }
}

.footer__inner {
  width: min(1091px, 100%);
  margin-inline: auto;
  padding-inline: 17.5px;
}

.footer__upper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__upper {
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 233px;
    height: 48px;
  }
}
@media (any-hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}

.footer__nav {
  margin-top: 18px;
  display: flex;
  gap: 64px;
}
@media (max-width: 767px) {
  .footer__nav {
    margin-top: 35px;
    gap: 40px;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media (max-width: 767px) {
  .footer__list {
    gap: 35px;
  }
}

.footer__list-item a {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__list-item a:hover {
    opacity: 0.7;
  }
}

.footer__lower {
  margin-top: 43px;
  color: #E6EDF3;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__lower {
    margin-top: 39px;
  }
}

.footer__copy {
  font-weight: 300;
  font-size: 16px;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .footer__copy {
    padding-left: 0;
  }
}

.footer__text {
  margin-top: 26px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .footer__text {
    margin-top: 40px;
    text-align: left;
  }
}

/* ---------- アーカイブページ ---------- */
.archive {
  margin-top: 43px;
}

.archive__postList-tabs {
  margin-top: 44px;
}

.archive-postList-tabs__item {
  font-weight: 500;
  font-size: 16px;
  padding: 9px 20px 6px;
  border-radius: 12px 12px 0 0;
  color: #fff;
}
@media (max-width: 767px) {
  .archive-postList-tabs__item {
    padding: 12px 8px 12px 3px;
    border-radius: 0 12px 12px 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.archive-postList-tabs__item--all {
  border: 1px solid #629DE2;
  background-color: #629DE2;
}
.archive-postList-tabs__item--new {
  border: 1px solid #135097;
  background-color: #135097;
}
.archive-postList-tabs__item--tips {
  border: 1px solid #42A0AD;
  background-color: #42A0AD;
}
.archive-postList-tabs__item--interview {
  border: 1px solid #9C8CFF;
  background-color: #9C8CFF;
}
.archive-postList-tabs__item--news {
  border: 1px solid #C88DEC;
  background-color: #C88DEC;
}

.archive-tagList {
  margin-top: 95px;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .archive-tagList {
    margin-top: 63px;
    margin-bottom: 48px;
  }
}

.archive-tagList__inner {
  width: min(867px, 100%);
  padding-inline: 25.5px;
  margin-inline: auto;
}

.pagination--archive {
  margin-top: 59px;
}

/* ---------- ページネーション ---------- */
.wp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 32px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #676E87;
  background: transparent;
  border-radius: 4px;
  margin-inline: 5px;
  transition: all 0.3s ease 0s;
}
.page-numbers:first-child {
  margin-left: 16px;
}
.page-numbers:last-child {
  margin-right: 16px;
}
@media (any-hover: hover) {
  .page-numbers:hover {
    color: #fff;
    background: #629DE2;
  }
}

.next.page-numbers,
.prev.page-numbers {
  width: 36px;
  height: 36px;
}
@media (any-hover: hover) {
  .next.page-numbers:hover,
.prev.page-numbers:hover {
    background: transparent;
    opacity: 0.7;
  }
}

.pagination__prev {
  width: 100%;
  height: 100%;
  background: transparent url(../imgs/pagination-prev.svg) no-repeat center center/contain;
}

.pagination__next {
  width: 100%;
  height: 100%;
  background: transparent url(../imgs/pagination-next.svg) no-repeat center center/contain;
}

.current {
  color: #fff;
  background: #629DE2;
}

/* ---------- 関連記事 ---------- */
.relatedPost {
  padding-block: 131px 110px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .relatedPost {
    padding-block: 40px 71px;
  }
}

.relatedPost__inner {
  width: min(1126px, 100%);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 767px) {
  .relatedPost__inner {
    padding-inline: 32px 38px;
  }
}

/* ---------- 検索結果 ---------- */
.search {
  margin-top: 41px;
}

.search__inner {
  width: min(1050px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}

.search-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #629de2;
  border-radius: 16px 16px 0 0;
  padding: 19px 40px 15px 24px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.15em;
}

.search-title span {
  margin-left: 32px;
}

.search-content {
  padding: 32px;
  border-radius: 0 16px 16px 16px;
  border: 1px solid #629de2;
  background-color: #fff;
}

.pagination--search {
  margin-top: 67px;
}

/* ---------- 記事詳細 ---------- */
.post {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .post {
    margin-top: 19px;
  }
}

.post__inner {
  width: min(1016px, 100%);
  margin-inline: auto;
}

.post__contents {
  background-color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 54px 88px 48px;
}
@media (max-width: 767px) {
  .post__contents {
    border-radius: 0;
    padding: 25px 20px;
  }
}

.post__date {
  color: #676E87;
  font-size: 16px;
}
@media (max-width: 767px) {
  .post__date {
    font-size: 14px;
  }
}
.post__date time {
  margin-left: 1em;
}

.post__category {
  margin-top: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  padding: 7px 20px;
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
}
@media (max-width: 767px) {
  .post__category {
    margin-top: 14px;
    font-size: 13px;
    padding: 7px 16px;
  }
}
.post__category--all {
  border-color: #629DE2;
  color: #629DE2;
}
.post__category--new {
  border-color: #135097;
  color: #135097;
}
.post__category--tips {
  border-color: #42A0AD;
  color: #42A0AD;
}
.post__category--interview {
  border-color: #9C8CFF;
  color: #9C8CFF;
}
.post__category--news {
  border-color: #C88DEC;
  color: #C88DEC;
}

.post__title {
  margin-top: 7px;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #343436;
}
@media (max-width: 767px) {
  .post__title {
    margin-top: 9px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.post__thumbnail {
  margin-top: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .post__thumbnail {
    margin-bottom: 18px;
  }
}
.post__thumbnail img {
  width: 100%;
  border-radius: 12px;
}

.post__main h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding-bottom: 15px;
  border-bottom: 2px solid #629DE2;
}
@media (max-width: 767px) {
  .post__main h2 {
    font-size: 18px;
  }
}
.post__main h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  padding-left: 14px;
  border-left: 2px solid #629DE2;
}
.post__main p {
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
}
.post__main p:first-of-type {
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .post__main p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.post__main .wp-block-table thead,
.post__main .wp-block-table td,
.post__main .wp-block-table th {
  border-bottom: none;
}
.post__main .wp-block-table table {
  display: table;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-collapse: collapse;
  border: 4px solid #629DE2;
}
.post__main .wp-block-table table th,
.post__main .wp-block-table table td {
  width: 242px;
  padding-block: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  border-top: 1px solid #629DE2;
}
@media (max-width: 767px) {
  .post__main .wp-block-table table th,
.post__main .wp-block-table table td {
    font-size: 13px;
    padding-block: 10px;
  }
}
.post__main .wp-block-table table th:not(:last-child),
.post__main .wp-block-table table td:not(:last-child) {
  border-right: 1px solid #629DE2;
}
@media (max-width: 767px) {
  .post__main .wp-block-table table th {
    padding-block: 3px;
  }
}
@media (max-width: 767px) {
  .post__main .wp-block-table table td {
    padding-block: 10px;
  }
}
.post__main .wp-block-table table th:first-child,
.post__main .wp-block-table table td:first-child {
  width: 200px;
  background-color: #E6EDF3;
  border-right: 2px solid #629DE2;
}
@media (max-width: 767px) {
  .post__main .wp-block-table table th:first-child,
.post__main .wp-block-table table td:first-child {
    width: 27.8%;
    line-height: 1.4;
  }
}
.post__main .wp-block-table table th:nth-child(2),
.post__main .wp-block-table table td:nth-child(2) {
  font-weight: 700;
}
@media (max-width: 767px) {
  .post__main .wp-block-table table th:nth-child(2),
.post__main .wp-block-table table td:nth-child(2) {
    width: 39.9%;
    line-height: 1.4;
  }
}
.post__main .wp-block-table table th:nth-child(2) {
  background-color: #629DE2;
  color: #fff;
}
@media (max-width: 767px) {
  .post__main .wp-block-table table th:nth-child(3),
.post__main .wp-block-table table td:nth-child(3) {
    width: 32.3%;
    line-height: 1.3;
  }
}
.post__main h2 {
  margin-bottom: 20px;
}
.post__main h3,
.post__main h4 {
  margin-bottom: 20px;
}
.post__main p + p {
  margin-top: 20px;
}
.post__main figure {
  margin-block: 40px;
}
.post__main table {
  margin-block: 20px;
}
.post__main p + ul,
.post__main p + ol,
.post__main ul + p,
.post__main ol + p,
.post__main ul + ol,
.post__main ol + ul {
  margin-top: 20px;
}
.post__main p + h2,
.post__main ul + h2,
.post__main ol + h2,
.post__main figure + h2,
.post__main table + h2 {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .post__main p + h2,
.post__main ul + h2,
.post__main ol + h2,
.post__main figure + h2,
.post__main table + h2 {
    margin-top: 40px;
  }
}
.post__main p + h3,
.post__main ul + h3,
.post__main ol + h3,
.post__main figure + h3,
.post__main table + h3 {
  margin-top: 33px;
}
@media (max-width: 767px) {
  .post__main p + h3,
.post__main ul + h3,
.post__main ol + h3,
.post__main figure + h3,
.post__main table + h3 {
    margin-top: 20px;
  }
}
.post__main p + h4,
.post__main ul + h4,
.post__main ol + h4,
.post__main figure + h4,
.post__main table + h4 {
  margin-top: 20px;
}
.post__main table + table {
  margin-top: 20px;
}
.post__main #toc_container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #DAEFF8;
  margin-top: 32px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .post__main #toc_container {
    margin-top: 20px;
    margin-bottom: 37px;
  }
}
.post__main #toc_container .toc_title {
  font-size: 20px;
  font-weight: 500;
  padding: 6px 16px;
  background-color: #DAEFF8;
}
@media (max-width: 767px) {
  .post__main #toc_container .toc_title {
    font-size: 16px;
  }
}
.post__main #toc_container .toc_list {
  padding: 12px 27px 16px 23px;
}
@media (max-width: 767px) {
  .post__main #toc_container .toc_list {
    padding: 11px 4px 18px 16px;
  }
}
.post__main #toc_container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post__main #toc_container ul a {
  color: #135097;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-decoration: underline;
}
.post__main #toc_container > ul > li {
  counter-increment: toc;
  margin-bottom: 8px;
}
.post__main #toc_container > ul > li:last-child {
  margin-bottom: 0;
}
.post__main #toc_container > ul > li > a {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-size: 16px;
}
@media (max-width: 767px) {
  .post__main #toc_container > ul > li > a {
    letter-spacing: 0.06em;
    font-size: 15px;
  }
}
.post__main #toc_container > ul > li > ul {
  padding-left: 16px;
}
@media (max-width: 767px) {
  .post__main #toc_container > ul > li > ul {
    padding-left: 14px;
  }
}
.post__main #toc_container > ul > li > ul > li {
  margin-top: 8px;
}
.post__main #toc_container > ul > li > ul > li::before {
  content: none;
}
.post__main #toc_container > ul > li > ul > li > a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .post__main #toc_container > ul > li > ul > li > a {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

.post__main-inner {
  max-width: 815px;
}

.post__register-btn {
  margin-top: 33px;
}
@media (max-width: 767px) {
  .post__register-btn {
    margin-top: 20px;
  }
}

.post__register-btn a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #629DE2;
  border-radius: 16px;
  padding: 14px 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .post__register-btn a {
    max-width: 243px;
    font-size: 14px;
    padding: 14px 31px;
    gap: 20px;
    margin-inline: auto;
  }
}
.post__register-btn a::after {
  width: 24px;
  height: 24px;
  content: "";
  background: transparent url(../imgs/icon-btn-arrow.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .post__register-btn a:hover {
    opacity: 0.7;
  }
}

.post__qa {
  margin-top: 52px;
}
@media (max-width: 767px) {
  .post__qa {
    margin-top: 30px;
  }
}

.post__qa-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding-bottom: 15px;
  border-bottom: 2px solid #629DE2;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .post__qa-title {
    font-size: 18px;
  }
}

.post__qa-text {
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .post__qa-text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}

.qa-list {
  max-width: 821px;
  margin-top: 20px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .qa-list {
    padding-left: 0;
  }
}

.qa-list__q,
.qa-list__a {
  display: flex;
  align-items: flex-start;
}

.qa-list__a {
  margin-top: 20px;
}

.qa-list__head {
  flex-shrink: 0;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.2em;
  padding: 4px 11px;
}
@media (max-width: 767px) {
  .qa-list__head {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.qa-list__head--question {
  background-color: #676E87;
}
.qa-list__head--answer {
  background-color: #629DE2;
}

.qa-list__main {
  line-height: 2;
  letter-spacing: 0.15em;
  padding: 3px 10px;
}
@media (max-width: 767px) {
  .qa-list__main {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}
.qa-list__main--question {
  border: 1px solid #676E87;
}
.qa-list__main--answer {
  border: 1px solid #629DE2;
}

.qa-note {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qa-note__item {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-left: 86px;
}
@media (max-width: 767px) {
  .qa-note__item {
    margin-left: 70px;
  }
}

.post__foot-text {
  margin-top: 32px;
  padding-block: 28px 32px;
  border-block: 1px solid #DDE1F0;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .post__foot-text {
    margin-top: 20px;
    padding-block: 28px 20px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}

.post__tag-group {
  margin-top: 22px;
  display: flex;
}
@media (max-width: 767px) {
  .post__tag-group {
    flex-direction: column;
  }
}

.post__tag-head {
  letter-spacing: 0.15em;
}

.post__tag-list {
  margin-left: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .post__tag-list {
    margin-left: 0;
    margin-top: 8px;
  }
}

.post__tag-listItem a {
  display: inline-block;
  font-size: 12px;
  padding: 3px 12px 3px 8px;
  background-color: #DAEFF8;
  border-radius: 24px;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .post__tag-listItem a:hover {
    background-color: #343436;
    color: #DAEFF8;
  }
}