@charset "UTF-8";
.layouts {
  max-width: 1300px;
  width: 94%;
  margin: 0 auto;
  padding-bottom: 80px;
  border-image-source: linear-gradient(#fbfbfb, #fbfbfb);
  border-image-slice: 0 fill;
  border-image-width: 1;
  border-image-outset: 0 100vw;
  border-image-repeat: stretch;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 969px) {
  .layouts {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 968px) {
  .layouts {
    max-width: 93.6%;
    padding-bottom: 0;
  }
}
.layouts--single {
  padding-top: 40px;
}
.layouts__main {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 969px) {
  .layouts__main {
    max-width: 990px;
  }
}
@media screen and (max-width: 968px) {
  .layouts__main {
    gap: 60px;
  }
}
@media screen and (min-width: 969px) {
  .layouts__sidebar {
    flex: 0 0 280px;
    height: -moz-fit-content;
    height: fit-content; /* コンテンツに応じた高さ */
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
    position: sticky;
    top: 100px; /* 上から100pxで固定 */
  }
}
@media screen and (max-width: 968px) {
  .layouts__sidebar {
    margin-top: 50px;
    margin-left: -3.2%;
    margin-right: -3.2%;
    background: #fff;
  }
}
.layouts__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 969px) {
  .layouts__container {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 968px) {
  .layouts__container {
    gap: 30px;
  }
}
.layouts__wrap {
  flex: 0 0 auto;
}
.layouts__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px 1.8181818182%;
}
@media screen and (max-width: 968px) {
  .layouts__list {
    gap: 20px;
  }
}
.layouts__list .card {
  flex: 0 0 32.1212121212%;
}
@media screen and (max-width: 968px) {
  .layouts__list .card {
    flex: 1 1 100%;
  }
}
.layouts__list--col1 .card {
  flex: 1 1 100%;
}
@media screen and (max-width: 968px) {
  .layouts__list--sp3row .card:nth-child(4), .layouts__list--sp3row .card:nth-child(5), .layouts__list--sp3row .card:nth-child(6) {
    display: none;
  }
}
.layouts__relativeLink {
  text-align: right;
}
@media screen and (max-width: 968px) {
  .layouts__relativeLink {
    margin-top: -20px;
  }
}
.layouts__tags {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.layouts__tagData {
  flex: 0 0 auto;
}
.layouts-breadcrumb {
  padding-bottom: 20px;
}

.sidebar {
  padding: 32px 16px;
}
.sidebar__wrap {
  margin-bottom: 32px;
}
.sidebar__wrap:last-child {
  margin-bottom: 0;
}
.sidebar__cate {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar__cateWrap {
  padding-bottom: 8px;
  border-bottom: 1px dashed #bbb;
}
.sidebar__cateWrap .text-link {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 968px) {
  .sidebar__cateWrap .text-link {
    font-size: 12px;
  }
}
.sidebar__tag {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar__tag--more {
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  animation: slideUp 0.1s ease forwards;
}
.sidebar__tag--more.is-active {
  animation: slideDown 1s ease forwards;
}
.sidebar__tagWrap {
  flex: 0 0 auto;
}
.sidebar__more {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar__moreBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
.sidebar__moreBtn::after {
  width: 12px;
  height: 8px;
  display: block;
  background: url(../../img/common/icon_arr_down_01.svg) center center/12px auto no-repeat;
  transition: transform 0.35s ease;
  content: "";
}
.sidebar__moreBtn.is-active::after {
  transform: rotate(180deg);
}

@keyframes slideDown {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 600px;
  }
}
@keyframes slideUp {
  0% {
    max-height: 600px;
  }
  100% {
    max-height: 0;
  }
}
.title {
  margin-bottom: 40px;
  background: url(../../img/common/icon_logo.svg) left center/26px auto no-repeat;
  padding-left: 34px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 968px) {
  .title {
    margin-bottom: 20px;
    padding-left: 28px;
    font-size: 16px;
    background-size: 21px auto;
  }
}
.title--small {
  margin-bottom: 16px;
  font-size: 16px;
}
.title--type-center {
  padding: 0;
  text-align: center;
  background: none;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 4px;
}
@media screen and (max-width: 968px) {
  .title--type-center {
    font-size: 16px;
  }
}
.title--type-center .title__str {
  display: inline-block;
}
.title--type-center .title__str::after {
  width: 120px;
  height: 2px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: #FC0;
  content: "";
}
@media screen and (max-width: 968px) {
  .title--type-center .title__str::after {
    width: 60px;
    margin-top: 8px;
  }
}

.text-link {
  display: inline-block;
  padding-right: 26px;
  background: url(../../img/common/icon_arr_right_02.svg) right center/14px auto no-repeat;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  transition: color 0.35s ease;
}
@media screen and (min-width: 969px) {
  .text-link:hover {
    color: #FC0;
  }
}
@media screen and (max-width: 968px) {
  .text-link {
    font-size: 14px;
  }
}

.card {
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease;
}
@media screen and (min-width: 969px) {
  .card:hover {
    transform: scale(1.05);
  }
}
.card--art {
  padding-bottom: 16px;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px dashed #bbb;
}
@media screen and (min-width: 969px) {
  .card--art:hover {
    transform: scale(1.025);
  }
}
.card--low {
  margin-bottom: 12px;
  padding-bottom: 12px;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px dashed #bbb;
}
@media screen and (min-width: 969px) {
  .card--low:hover {
    transform: scale(1.025);
  }
}
.card--low:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.card__container {
  padding: 24px 14px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 18px 0;
  grid-auto-flow: row;
  grid-template-areas: "card__postData" "card__thumbnail" "card__header" "card__footer";
}
@media screen and (max-width: 968px) {
  .card__container {
    padding: 20px 14px;
    gap: 12px 0;
  }
}
.card__container--art {
  padding: 0;
  grid-template-columns: 25.8585858586% 71.7171717172%;
  grid-template-rows: auto;
  gap: 12px 2.4242424242%;
  grid-auto-flow: row;
  grid-template-areas: "card__thumbnail card__postData" "card__thumbnail card__header" "card__thumbnail card__footer";
}
@media screen and (max-width: 968px) {
  .card__container--art {
    grid-template-columns: 36.4672364672% 60.113960114%;
    grid-template-areas: "card__thumbnail card__postData" "card__thumbnail card__header" "card__footer card__footer";
  }
}
.card__container--low {
  padding: 0;
  display: block;
}
.card__col {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3.2258064516%;
}
.card__col .card__thumbnail {
  max-width: 38.7096774194%;
  flex: 0 0 38.7096774194%;
  order: 1;
}
.card__col .card__header {
  max-width: 58.064516129%;
  flex: 0 0 58.064516129%;
  order: 2;
}
.card__header {
  grid-area: card__header;
}
.card__title {
  min-height: 68px;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media screen and (max-width: 968px) {
  .card__title {
    min-height: auto;
    font-size: 12px;
  }
}
.card__title--art {
  min-height: 46px;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 968px) {
  .card__title--art {
    -webkit-line-clamp: 3;
  }
}
.card__title--low {
  min-height: 54px;
  font-size: 12px;
}
.card__postData {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-area: card__postData;
}
.card__category {
  flex: 0 0 120px;
}
@media screen and (max-width: 968px) {
  .card__category .categoryButton--headLine {
    min-height: 28px;
  }
}
.card__category--postHead {
  max-width: 160px;
  flex: 0 0 160px;
}
@media screen and (max-width: 968px) {
  .card__category--postHead {
    min-width: 108px;
    flex: 0 0 108px;
  }
}
.card__date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  color: #999;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 968px) {
  .card__date {
    font-size: 10px;
    flex-direction: column;
    gap: 4px;
  }
}
.card__date--small {
  font-size: 10px;
}
@media screen and (max-width: 968px) {
  .card__date--small {
    flex-direction: row;
  }
}
.card__date--ver {
  gap: 8px;
  flex-direction: column;
}
@media screen and (max-width: 968px) {
  .card__date--ver {
    gap: 4px;
  }
}
.card__publish, .card__update {
  height: 12px;
  display: inline-block;
  padding-left: 20px;
}
.card__publish {
  background: url(../../img/common/icon_time.svg) left center/12px auto no-repeat;
}
.card__update {
  background: url(../../img/common/icon_update.svg) left center/12px auto no-repeat;
}
.card__thumbnail {
  grid-area: card__thumbnail;
}
.card__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
}
.card__footer {
  grid-area: card__footer;
}
.card__tags {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4px;
}
.card__tags .tag {
  flex: 0 0 auto;
}

.tabs {
  width: 100%;
}
.tabs-head {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.2121212121%;
}
@media screen and (max-width: 968px) {
  .tabs-head {
    margin-bottom: 16px;
    gap: 3.1339031339%;
  }
}
.tabs-head__wrap {
  flex: 1 1 calc(50% - 5px);
}
@media screen and (max-width: 968px) {
  .tabs-head__wrap {
    flex: 1 1 46.8660968661%;
  }
}
.tabs-head__button {
  width: 100%;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bbb;
  background: #FFF;
  color: #aaa;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease;
}
@media screen and (max-width: 968px) {
  .tabs-head__button {
    padding: 11px 10px;
    font-size: 14px;
  }
}
@media screen and (min-width: 968px) {
  .tabs-head__button:hover {
    border-color: #FC0;
    color: #000;
  }
}
.tabs-head__button.is-active {
  background: #FC0;
  border-color: #FC0;
  color: #000;
}
.tabs-content {
  width: 100%;
}
.tabs-content__container {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px 1.2121212121%;
  flex-wrap: wrap;
}
@media screen and (max-width: 968px) {
  .tabs-content__container {
    gap: 7px 2.9914529915%;
  }
}
.tabs-content__container:not(.is-active) {
  height: 0;
}
.tabs-content__container:not(.is-active) .categoryButton {
  transform: translateY(10%);
  opacity: 0;
}
.tabs-content__container.is-active {
  height: auto;
}
.tabs-content__container.is-active .tabs-content__wrap .categoryButton {
  transition: transform 0.175s ease, opacity 0.175s ease;
  transform: translateY(0%);
  opacity: 1;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(1) .categoryButton {
  transition-delay: 0.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(2) .categoryButton {
  transition-delay: 0.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(3) .categoryButton {
  transition-delay: 0.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(4) .categoryButton {
  transition-delay: 0.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(5) .categoryButton {
  transition-delay: 0.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(6) .categoryButton {
  transition-delay: 0.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(7) .categoryButton {
  transition-delay: 0.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(8) .categoryButton {
  transition-delay: 0.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(9) .categoryButton {
  transition-delay: 0.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(10) .categoryButton {
  transition-delay: 0.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(11) .categoryButton {
  transition-delay: 0.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(12) .categoryButton {
  transition-delay: 0.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(13) .categoryButton {
  transition-delay: 0.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(14) .categoryButton {
  transition-delay: 0.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(15) .categoryButton {
  transition-delay: 0.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(16) .categoryButton {
  transition-delay: 0.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(17) .categoryButton {
  transition-delay: 0.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(18) .categoryButton {
  transition-delay: 0.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(19) .categoryButton {
  transition-delay: 0.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(20) .categoryButton {
  transition-delay: 1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(21) .categoryButton {
  transition-delay: 1.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(22) .categoryButton {
  transition-delay: 1.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(23) .categoryButton {
  transition-delay: 1.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(24) .categoryButton {
  transition-delay: 1.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(25) .categoryButton {
  transition-delay: 1.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(26) .categoryButton {
  transition-delay: 1.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(27) .categoryButton {
  transition-delay: 1.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(28) .categoryButton {
  transition-delay: 1.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(29) .categoryButton {
  transition-delay: 1.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(30) .categoryButton {
  transition-delay: 1.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(31) .categoryButton {
  transition-delay: 1.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(32) .categoryButton {
  transition-delay: 1.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(33) .categoryButton {
  transition-delay: 1.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(34) .categoryButton {
  transition-delay: 1.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(35) .categoryButton {
  transition-delay: 1.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(36) .categoryButton {
  transition-delay: 1.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(37) .categoryButton {
  transition-delay: 1.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(38) .categoryButton {
  transition-delay: 1.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(39) .categoryButton {
  transition-delay: 1.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(40) .categoryButton {
  transition-delay: 2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(41) .categoryButton {
  transition-delay: 2.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(42) .categoryButton {
  transition-delay: 2.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(43) .categoryButton {
  transition-delay: 2.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(44) .categoryButton {
  transition-delay: 2.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(45) .categoryButton {
  transition-delay: 2.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(46) .categoryButton {
  transition-delay: 2.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(47) .categoryButton {
  transition-delay: 2.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(48) .categoryButton {
  transition-delay: 2.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(49) .categoryButton {
  transition-delay: 2.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(50) .categoryButton {
  transition-delay: 2.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(51) .categoryButton {
  transition-delay: 2.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(52) .categoryButton {
  transition-delay: 2.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(53) .categoryButton {
  transition-delay: 2.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(54) .categoryButton {
  transition-delay: 2.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(55) .categoryButton {
  transition-delay: 2.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(56) .categoryButton {
  transition-delay: 2.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(57) .categoryButton {
  transition-delay: 2.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(58) .categoryButton {
  transition-delay: 2.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(59) .categoryButton {
  transition-delay: 2.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(60) .categoryButton {
  transition-delay: 3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(61) .categoryButton {
  transition-delay: 3.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(62) .categoryButton {
  transition-delay: 3.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(63) .categoryButton {
  transition-delay: 3.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(64) .categoryButton {
  transition-delay: 3.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(65) .categoryButton {
  transition-delay: 3.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(66) .categoryButton {
  transition-delay: 3.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(67) .categoryButton {
  transition-delay: 3.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(68) .categoryButton {
  transition-delay: 3.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(69) .categoryButton {
  transition-delay: 3.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(70) .categoryButton {
  transition-delay: 3.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(71) .categoryButton {
  transition-delay: 3.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(72) .categoryButton {
  transition-delay: 3.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(73) .categoryButton {
  transition-delay: 3.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(74) .categoryButton {
  transition-delay: 3.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(75) .categoryButton {
  transition-delay: 3.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(76) .categoryButton {
  transition-delay: 3.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(77) .categoryButton {
  transition-delay: 3.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(78) .categoryButton {
  transition-delay: 3.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(79) .categoryButton {
  transition-delay: 3.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(80) .categoryButton {
  transition-delay: 4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(81) .categoryButton {
  transition-delay: 4.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(82) .categoryButton {
  transition-delay: 4.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(83) .categoryButton {
  transition-delay: 4.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(84) .categoryButton {
  transition-delay: 4.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(85) .categoryButton {
  transition-delay: 4.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(86) .categoryButton {
  transition-delay: 4.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(87) .categoryButton {
  transition-delay: 4.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(88) .categoryButton {
  transition-delay: 4.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(89) .categoryButton {
  transition-delay: 4.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(90) .categoryButton {
  transition-delay: 4.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(91) .categoryButton {
  transition-delay: 4.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(92) .categoryButton {
  transition-delay: 4.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(93) .categoryButton {
  transition-delay: 4.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(94) .categoryButton {
  transition-delay: 4.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(95) .categoryButton {
  transition-delay: 4.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(96) .categoryButton {
  transition-delay: 4.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(97) .categoryButton {
  transition-delay: 4.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(98) .categoryButton {
  transition-delay: 4.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(99) .categoryButton {
  transition-delay: 4.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(100) .categoryButton {
  transition-delay: 5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(101) .categoryButton {
  transition-delay: 5.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(102) .categoryButton {
  transition-delay: 5.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(103) .categoryButton {
  transition-delay: 5.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(104) .categoryButton {
  transition-delay: 5.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(105) .categoryButton {
  transition-delay: 5.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(106) .categoryButton {
  transition-delay: 5.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(107) .categoryButton {
  transition-delay: 5.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(108) .categoryButton {
  transition-delay: 5.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(109) .categoryButton {
  transition-delay: 5.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(110) .categoryButton {
  transition-delay: 5.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(111) .categoryButton {
  transition-delay: 5.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(112) .categoryButton {
  transition-delay: 5.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(113) .categoryButton {
  transition-delay: 5.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(114) .categoryButton {
  transition-delay: 5.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(115) .categoryButton {
  transition-delay: 5.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(116) .categoryButton {
  transition-delay: 5.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(117) .categoryButton {
  transition-delay: 5.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(118) .categoryButton {
  transition-delay: 5.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(119) .categoryButton {
  transition-delay: 5.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(120) .categoryButton {
  transition-delay: 6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(121) .categoryButton {
  transition-delay: 6.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(122) .categoryButton {
  transition-delay: 6.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(123) .categoryButton {
  transition-delay: 6.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(124) .categoryButton {
  transition-delay: 6.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(125) .categoryButton {
  transition-delay: 6.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(126) .categoryButton {
  transition-delay: 6.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(127) .categoryButton {
  transition-delay: 6.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(128) .categoryButton {
  transition-delay: 6.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(129) .categoryButton {
  transition-delay: 6.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(130) .categoryButton {
  transition-delay: 6.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(131) .categoryButton {
  transition-delay: 6.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(132) .categoryButton {
  transition-delay: 6.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(133) .categoryButton {
  transition-delay: 6.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(134) .categoryButton {
  transition-delay: 6.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(135) .categoryButton {
  transition-delay: 6.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(136) .categoryButton {
  transition-delay: 6.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(137) .categoryButton {
  transition-delay: 6.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(138) .categoryButton {
  transition-delay: 6.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(139) .categoryButton {
  transition-delay: 6.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(140) .categoryButton {
  transition-delay: 7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(141) .categoryButton {
  transition-delay: 7.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(142) .categoryButton {
  transition-delay: 7.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(143) .categoryButton {
  transition-delay: 7.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(144) .categoryButton {
  transition-delay: 7.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(145) .categoryButton {
  transition-delay: 7.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(146) .categoryButton {
  transition-delay: 7.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(147) .categoryButton {
  transition-delay: 7.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(148) .categoryButton {
  transition-delay: 7.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(149) .categoryButton {
  transition-delay: 7.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(150) .categoryButton {
  transition-delay: 7.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(151) .categoryButton {
  transition-delay: 7.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(152) .categoryButton {
  transition-delay: 7.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(153) .categoryButton {
  transition-delay: 7.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(154) .categoryButton {
  transition-delay: 7.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(155) .categoryButton {
  transition-delay: 7.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(156) .categoryButton {
  transition-delay: 7.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(157) .categoryButton {
  transition-delay: 7.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(158) .categoryButton {
  transition-delay: 7.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(159) .categoryButton {
  transition-delay: 7.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(160) .categoryButton {
  transition-delay: 8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(161) .categoryButton {
  transition-delay: 8.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(162) .categoryButton {
  transition-delay: 8.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(163) .categoryButton {
  transition-delay: 8.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(164) .categoryButton {
  transition-delay: 8.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(165) .categoryButton {
  transition-delay: 8.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(166) .categoryButton {
  transition-delay: 8.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(167) .categoryButton {
  transition-delay: 8.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(168) .categoryButton {
  transition-delay: 8.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(169) .categoryButton {
  transition-delay: 8.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(170) .categoryButton {
  transition-delay: 8.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(171) .categoryButton {
  transition-delay: 8.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(172) .categoryButton {
  transition-delay: 8.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(173) .categoryButton {
  transition-delay: 8.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(174) .categoryButton {
  transition-delay: 8.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(175) .categoryButton {
  transition-delay: 8.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(176) .categoryButton {
  transition-delay: 8.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(177) .categoryButton {
  transition-delay: 8.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(178) .categoryButton {
  transition-delay: 8.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(179) .categoryButton {
  transition-delay: 8.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(180) .categoryButton {
  transition-delay: 9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(181) .categoryButton {
  transition-delay: 9.05s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(182) .categoryButton {
  transition-delay: 9.1s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(183) .categoryButton {
  transition-delay: 9.15s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(184) .categoryButton {
  transition-delay: 9.2s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(185) .categoryButton {
  transition-delay: 9.25s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(186) .categoryButton {
  transition-delay: 9.3s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(187) .categoryButton {
  transition-delay: 9.35s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(188) .categoryButton {
  transition-delay: 9.4s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(189) .categoryButton {
  transition-delay: 9.45s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(190) .categoryButton {
  transition-delay: 9.5s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(191) .categoryButton {
  transition-delay: 9.55s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(192) .categoryButton {
  transition-delay: 9.6s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(193) .categoryButton {
  transition-delay: 9.65s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(194) .categoryButton {
  transition-delay: 9.7s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(195) .categoryButton {
  transition-delay: 9.75s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(196) .categoryButton {
  transition-delay: 9.8s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(197) .categoryButton {
  transition-delay: 9.85s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(198) .categoryButton {
  transition-delay: 9.9s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(199) .categoryButton {
  transition-delay: 9.95s;
}
.tabs-content__container.is-active .tabs-content__wrap:nth-child(200) .categoryButton {
  transition-delay: 10s;
}
.tabs-content__wrap {
  flex: 0 0 15.6565656566%;
}
@media screen and (max-width: 968px) {
  .tabs-content__wrap {
    flex: 0 0 31.339031339%;
  }
}

.result {
  font-size: 16px;
  color: #000;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.8px;
}
.result em {
  font-size: 20px;
}

.tagButton {
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FC0;
  border-radius: 30px;
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.categoryButton {
  width: 100%;
  min-height: 46px;
  height: 100%;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FC0;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.8px;
  cursor: pointer;
}
@media screen and (max-width: 968px) {
  .categoryButton {
    min-height: 32px;
    font-size: 11px;
  }
}
.categoryButton:link, .categoryButton:visited {
  color: #000;
}
.categoryButton--headLine {
  min-height: 38px;
  font-size: 10px;
}
@media screen and (max-width: 968px) {
  .categoryButton--headLine {
    min-height: 32px;
  }
}

.pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 968px) {
  .pagination {
    margin-top: 40px;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.page-numbers {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E2E2E2;
  border-radius: 50%;
}
@media screen and (max-width: 968px) {
  .page-numbers {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
.page-numbers:link, .page-numbers:visited {
  color: #000;
}
.page-numbers.dots {
  display: none;
}
.page-numbers.current {
  width: 57px;
  height: 57px;
  background: #FC0;
  border-color: #FC0;
}
@media screen and (max-width: 968px) {
  .page-numbers.current {
    width: 36px;
    height: 36px;
  }
}
.page-numbers.next, .page-numbers.prev {
  text-indent: -9999px;
  overflow: auto;
  position: relative;
}
.page-numbers.next::after, .page-numbers.prev::after {
  text-indent: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-numbers.prev::after {
  content: "<";
}
.page-numbers.next::after {
  content: ">";
}

.page-2 .page-numbers:nth-child(2) {
  display: none;
}

.page-3 .page-numbers:nth-child(2) {
  display: none;
}
.page-3 .page-numbers:nth-child(3) {
  display: none;
}

.page-4 .page-numbers:nth-child(2) {
  display: none;
}
.page-4 .page-numbers:nth-child(3) {
  display: none;
}
.page-4 .page-numbers:nth-child(4) {
  display: none;
}

.page-5 .page-numbers:nth-child(2) {
  display: none;
}
.page-5 .page-numbers:nth-child(3) {
  display: none;
}
.page-5 .page-numbers:nth-child(4) {
  display: none;
}
.page-5 .page-numbers:nth-child(5) {
  display: none;
}

.page-6 .page-numbers:nth-child(2) {
  display: none;
}
.page-6 .page-numbers:nth-child(3) {
  display: none;
}
.page-6 .page-numbers:nth-child(4) {
  display: none;
}
.page-6 .page-numbers:nth-child(5) {
  display: none;
}
.page-6 .page-numbers:nth-child(6) {
  display: none;
}

.page-over .page-numbers:nth-child(2) {
  display: none;
}
.page-over .page-numbers:nth-child(3) {
  display: none;
}
.page-over .page-numbers:nth-child(4) {
  display: none;
}
.page-over .page-numbers:nth-child(5) {
  display: none;
}
.page-over .page-numbers:nth-child(6) {
  display: none;
}
.page-over .page-numbers:nth-child(7) {
  display: none;
}

.share__ttl {
  margin-bottom: 16px;
  text-align: center;
  color: #000;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.8px;
}
.share__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.share__wrap {
  max-width: 45px;
  flex: 0 0 45px;
}

.postData h2:last-child, .postData h3:last-child, .postData h4:last-child, .postData h5:last-child, .postData h6:last-child, .postData p:last-child, .postData figure:last-child, .postData img:last-child, .postData ul:last-child, .postData ol:last-child, .postData table:last-child, .postData iframe:last-child {
  margin-bottom: 0;
}
.postData h2 {
  margin-bottom: 24px;
  background: url(../../img/common/icon_logo.svg) left top 10px/30px auto no-repeat;
  padding-left: 36px;
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 968px) {
  .postData h2 {
    margin-bottom: 16px;
    padding-left: 32px;
    background-size: 24px auto;
    background-position: left top 2px;
    font-size: 18px;
  }
}
.postData h3 {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid #000;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 968px) {
  .postData h3 {
    margin-bottom: 16px;
    padding-left: 8px;
    font-size: 16px;
  }
}
.postData h4, .postData h5, .postData h6 {
  margin-bottom: 12px;
  padding-left: 24px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
}
@media screen and (max-width: 968px) {
  .postData h4, .postData h5, .postData h6 {
    margin-bottom: 16px;
    padding-left: 20px;
    font-size: 15px;
  }
}
.postData h4::before, .postData h5::before, .postData h6::before {
  width: 16px;
  height: 16px;
  display: block;
  background: #000;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (max-width: 968px) {
  .postData h4::before, .postData h5::before, .postData h6::before {
    width: 12px;
    height: 12px;
    top: 6px;
  }
}
.postData p {
  margin-bottom: 24px;
  line-height: 2;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 968px) {
  .postData p {
    margin-bottom: 16px;
    font-size: 13px;
  }
}
.postData strong {
  font-weight: 600;
}
.postData em {
  font-style: italic;
}
.postData .wp-block-embed__wrapper {
  width: 100%;
  line-height: 1.5;
}
.postData .wp-embedded-content {
  font-size: 16px;
}
@media screen and (max-width: 968px) {
  .postData .wp-embedded-content {
    font-size: 13px;
  }
}
.postData .wp-block-image {
  margin-bottom: 24px;
}
@media screen and (max-width: 968px) {
  .postData .wp-block-image {
    margin-bottom: 16px;
  }
}
.postData .wp-block-image img {
  max-width: 100%;
  line-height: 1;
}
.postData .has-background {
  padding: 20px;
}
.postData a {
  color: #000;
  transition: color 0.35s ease;
}
.postData a:link, .postData a:visited {
  color: #000;
  text-decoration: underline;
}
.postData a:hover {
  color: #FC0;
}
.postData .wp-block-columns,
.postData .wp-block-buttons {
  margin-bottom: 24px;
}
@media screen and (max-width: 968px) {
  .postData .wp-block-columns,
  .postData .wp-block-buttons {
    margin-bottom: 16px;
  }
}
.postData .wp-block-button__link {
  max-width: 100%;
  min-width: 240px;
  min-height: 54px;
  padding: 4px 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FC0 url("../../img/common/icon_arr_right_01.svg") center right 18px/16px auto no-repeat;
  border-radius: 10px 0 10px 0;
  color: #000;
  font-weight: 700;
  letter-spacing: 0;
  transition: box-shadow 0.35s ease;
  position: relative;
}
@media screen and (max-width: 968px) {
  .postData .wp-block-button__link {
    min-height: 48px;
    padding: 4px 36px;
    background: #FC0 url("../../img/common/icon_arr_right_01.svg") center right 12px/14px auto no-repeat;
    font-size: 13px;
  }
}
.postData .wp-block-button__link:link, .postData .wp-block-button__link:visited {
  color: #000;
  text-decoration: none;
  opacity: 1;
}
.postData .wp-block-button__link:hover {
  color: #000;
  text-decoration: none;
  opacity: 1;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
}
.postData .wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.postData .wp-block-embed.aligncenter, .postData .wp-block-embed.alignleft, .postData .wp-block-embed.alignright {
  max-width: none;
  width: 100%;
}
.postData .wp-block-embed.aligncenter iframe, .postData .wp-block-embed.alignleft iframe, .postData .wp-block-embed.alignright iframe {
  width: auto;
  width: revert-layer;
}
.postData .wp-block-embed.aligncenter {
  text-align: center;
}
.postData .wp-block-embed.alignleft {
  text-align: left;
}
.postData .wp-block-embed.alignright {
  text-align: right;
}
.postData .wp-element-caption {
  color: #666;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 968px) {
  .postData .wp-element-caption {
    margin-bottom: 16px;
    font-size: 11px;
  }
}
.postData figure {
  margin-bottom: 24px;
}
@media screen and (max-width: 968px) {
  .postData figure {
    margin-bottom: 16px;
  }
}
.postData table th, .postData table td {
  padding: 10px 16px;
  line-height: 1.5;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 968px) {
  .postData table th, .postData table td {
    padding: 6px 8px;
    font-size: 13px;
  }
}
.postData table a {
  color: #000;
  transition: color 0.35s ease;
}
.postData table a:link, .postData table a:visited {
  color: #000;
  text-decoration: underline;
}
.postData table a:hover {
  color: #FC0;
}
.postData ul, .postData ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 968px) {
  .postData ul, .postData ol {
    margin-bottom: 16px;
    padding-left: 20px;
  }
}
.postData ul.wp-block-list li, .postData ol.wp-block-list li {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 968px) {
  .postData ul.wp-block-list li, .postData ol.wp-block-list li {
    font-size: 13px;
  }
}
.postData ul.wp-block-list {
  list-style: disc;
}
.postData ol.wp-block-list {
  list-style: decimal;
}
.postData-mb-none {
  margin-bottom: 0 !important;
}
.postData-headings {
  padding: 40px;
  background: #F2F2F2;
  border-radius: 16px;
  list-style: none;
}
@media screen and (max-width: 968px) {
  .postData-headings {
    padding: 24px 16px;
    border-radius: 8px;
  }
}
.postData-headings__wrap:last-child {
  margin-bottom: 0;
}
.postData-headings__wrap + .heading-level-2 {
  margin-top: 16px;
}
.postData-headings__wrap + .heading-level-3 {
  margin-top: 8px;
}
.postData-headings__wrap.heading-level-2 .postData-headings__link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 968px) {
  .postData-headings__wrap.heading-level-2 .postData-headings__link {
    gap: 12px;
  }
}
.postData-headings__wrap.heading-level-2 .postData-headings__link::before {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FC0;
  border-radius: 10px 0 10px 0;
  content: attr(data-heading-num);
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 968px) {
  .postData-headings__wrap.heading-level-2 .postData-headings__link::before {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: 12px;
    border-radius: 6px 0 6px 0;
  }
}
.postData-headings__wrap.heading-level-3 {
  padding-left: 48px;
}
@media screen and (max-width: 968px) {
  .postData-headings__wrap.heading-level-3 {
    padding-left: 32px;
  }
}
.postData-headings__wrap.heading-level-3 .postData-headings__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 968px) {
  .postData-headings__wrap.heading-level-3 .postData-headings__link {
    gap: 6px;
  }
}
.postData-headings__wrap.heading-level-3 .postData-headings__link::before {
  width: 6px;
  height: 6px;
  margin-top: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #000;
  content: "";
}
@media screen and (max-width: 968px) {
  .postData-headings__wrap.heading-level-3 .postData-headings__link::before {
    margin-top: 7px;
  }
}
.postData-headings__link {
  line-height: 1.5;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}
@media screen and (max-width: 968px) {
  .postData-headings__link {
    font-size: 14px;
  }
}
.postData-headings__text {
  padding-top: 2px;
}
@media screen and (max-width: 968px) {
  .postData-headings__text {
    padding-top: 0;
  }
}
.postData__fv img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.postData__desc {
  line-height: 1.5;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 968px) {
  .postData__desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 968px) {
  .postData .has-small-font-size {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 968px) {
  .postData .has-medium-font-size {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 968px) {
  .postData .has-large-font-size {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 968px) {
  .postData .has-x-large-font-size {
    font-size: 18px !important;
  }
}

.fv__ttl {
  font-size: 3.5rem;
  line-height: 1.4em;
  font-weight: 600;
}
@media screen and (max-width: 968px) {
  .fv__ttl {
    font-size: 5vw;
    line-height: 1.4em;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=media.css.map */