:root {
  --color-main: #00A26A;
  --color-black: #333;
  --color-grey: #eee;
  --color-white: #fff;

  --base-font-family: 'Noto Sans JP', sans-serif;
  --second-font-family: "Arial", sans-serif;
}
html{
  scroll-padding-top: 13.3rem;
}
@media (max-width: 1280px) and (min-width: 993px) {
  html {
    font-size: 50%;
    scroll-padding-top: 114px;
  }
}
@media (max-width: 992px) {
  html {
    scroll-padding-top: 15rem;
  }
}
body{
  background-color: #FAFAFA;
  color: var(--color-black);
  font-family: var(--base-font-family);
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border: none;
  letter-spacing: 0;
}
h3::before,
h3::after{
  content: none;
}
ol, ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
li{
  margin: 0;
}
p{
  margin: 0;
}
a, li a, p a{
  text-decoration: none;
}
a{
  transition: all 0.3s ease-out;
}
a:hover{
  opacity: 0.8;
}


/* ---------------- */
/* 既存ブロックのスタイル */
/* ---------------- */
.wp-block-list li{
  padding-left: 1em;
  text-indent: -1em;
}
.wp-block-list li::before{
  content: "・";
}


/* ------- */
/* ブロック用アンカー */
/* ------- */
.w-400{
  max-width: 40rem;
}
.w-800{
  max-width: 80rem;
  margin-inline: auto;
}
.ml-auto{
  margin-left: auto;
}
.color-main,
.color-main a{
  color: var(--color-main);
}
.fw-bold{
  font-weight: bold;
}
.fz-16{
  font-size: 1.6rem;
}
.fz-24{
  font-size: 2.4rem;
}
.fz-40{
  font-size: 4.0rem;
}
.txt-decoration {
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
@media (max-width: 768px) {
  .w-400{
    max-width: none;
  }
  .ml-auto{
    margin-left: 0 !important;
  }
  .fz-24{
    font-size: 2.0rem;
  }
  .fz-40{
    font-size: 3.0rem;
  }
}


/* --------- */
/* 共通パーツ */
/* --------- */

/* インナー */
.inner{
  width: 100%;
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}

/* 共通ボタン */
.common-btn{
  display: inline-block;
  background-color: var(--color-main);
  padding: 1.6rem;
  border-radius: 5rem;
  color: var(--color-white);
  font-weight: bold;
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: 1;
}
.common-btn:hover{
  color: var(--color-white);
}

/* ヘッダー */
.header-botttom{
  margin-top: 13.2rem;
  padding: 3.2rem 2rem 3.2rem 2rem;
  position: relative;
}
.header-bottom__upper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bottom__logo {
  display: inline-block;
  width: 29rem;
  flex-shrink: 0;
}
.header-bottom__fn {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.header-bottom__fn--sp{
  display: none;
}
.header-bottom__for-ad{
  display: inline-block;
  font-size: 1.3rem;
  font-family: var(--second-font-family);
}
.header-bottom__search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-bottom__search input{
  padding: 0.5em;
  margin: 0;
  border: none;
  background: var(--color-white);
}
.header-bottom__search input::placeholder{
  color: #aeaeae;
}
.header-bottom__search button{
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
.header-bottom__search img{
  width: 2.4rem;
}
.gtranslate_wrapper>a{
  display: flex;
  align-items: center;
}
.gtranslate_wrapper>a::before{
  content: "Language";
  font-family: var(--second-font-family);
  font-size: 1.6rem;
}
.gtranslate_wrapper>a::after{
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../images/icon_translate.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.4rem;
}
.gtranslate_wrapper>a img,
.gtranslate_wrapper>a span{
  display: none !important;
}
.gt_white_content {
  max-width: 100%;
  height: 375px;
  margin: -187.5px 0 0 0 !important;
  transform: translateX(-50%);
}
.gt_white_content .gt_languages {
  max-height: 100rem !important;
}
.header-bottom__language-label {
  font-family: var(--second-font-family);
  font-size: 1.6rem;
}
.header-bottom__language img{
  width: 2.4rem;
}
.header-bottom__nav {
  margin-top: 1.9rem;
}
.header-bottom__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-bottom__nav-item {
  border-right: 1px solid #ccc;
  display: block;
  text-indent: unset;
  border-bottom: none;
  padding: 0;
}
.header-bottom__nav-item:first-child {
  border-left: 1px solid #ccc;
  margin: 0;
}
.header-bottom__nav-item a{
  display: inline-block;
  padding: 0.3rem 2.4rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(18/16);
  color: var(--color-black);
}
.header-bottom__burger{
  display: none;
}
@media (min-width: 820px) {
  .header-bottom__for-ad br {
    display: none;
  }
}
@media (max-width: 992px) {
  .header-botttom {
    margin-top: 14.7rem;
  }
}
@media (max-width: 768px) {
  .header-botttom {
    padding: 2.3rem 1.9rem 4.3rem;
  }
  .header-bottom__logo {
    width: 21.9rem;
  }
  .header-bottom__nav-wrap {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 9rem;
    background-color: #FAFAFA;
    transition: all 0.3s ease-out;
  }
  .header-bottom__nav-wrap.open{
    opacity: 1;
    visibility: visible;
  }
  .header-bottom__fn--pc{
    display: none;
  }
  .header-bottom__fn--sp{
    display: flex;
  }
  .header-bottom__fn {
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 4.8rem;
  }
  .gt_white_content .gt_languages {
    max-height: 230rem !important;
  }
  .header-bottom__nav {
    margin-top: 0;
  }
  .header-bottom__nav-list {
    align-items: center;
    flex-direction: column;
    gap: 2.4rem;
  }
  .header-bottom__nav-item {
    border-right: none;
  }
  .header-bottom__nav-item:first-child {
    border-left: none;
  }
  .header-bottom__nav-item a{
    width: 100%;
    padding: 0;
  }
  .header-bottom__nav-close{
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background-color: var(--color-black);
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    transform: rotate(45deg);
  }
  .header-bottom__nav-close::before{
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 0.2rem;
    background-color: var(--color-black);
    top: 0;
    left: 0;
    transform: rotate(90deg);
  }
  .header-bottom__burger{
    display: block;
    width: 2.4rem;
    height: 1.4rem;
    padding: 0;
    background: transparent;
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    display: grid;
    place-content: center;
    z-index: 1;
    transition: all .3s ease-out;
  }
  .header-bottom__burger-bar {
    width: 2.4rem;
    height: 0.2rem;
    background-color: var(--color-black);
    position: relative;
    padding: 0;
    margin-inline: auto;
    display: block;
    transition: all .3s ease-out;
  }
  .header-bottom__burger-bar::before,
  .header-bottom__burger-bar::after{
    content: "";
    position: absolute;
    width: 100%;
    display: block;
    height: 0.2rem;
    background-color: var(--color-black);
    transition: all .3s ease-out;
  }
  .header-bottom__burger-bar::before {
    top: -0.5rem;
  }
  .header-bottom__burger-bar::after {
    bottom: -0.5rem;
  }
}

/* フッター */
.footer-top{
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  border-top: 1px solid #ccc;
  background-color: #FAFAFA;
}
.footer-top__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top__item {
  border-right: 1px solid #ccc;
  display: block;
  text-indent: unset;
  border-bottom: none;
  padding: 0;
}
.footer-top__item:first-child {
  border-left: 1px solid #ccc;
  margin: 0;
}
.footer-top__item a{
  display: inline-block;
  padding: 0.3rem 2.4rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(18/16);
  color: var(--color-black);
}
.footer-top__sublist{
  margin-top: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.footer-top__subitem{
  display: block;
  text-indent: unset;
  border-bottom: none;
  padding: 0;
  margin: 0 !important;
}
.footer-top__subitem a{
  display: inline-block;
  font-family: var(--second-font-family);
  font-size: 1.3rem;
  line-height: calc(15/13);
  color: var(--color-black);
}
@media (max-width: 992px) {
  .footer-top{
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }
  .footer-top__list {
    flex-direction: column;
    gap: 2.4rem;
  }
  .footer-top__item {
    border-right: none;
  }
  .footer-top__item:first-child {
    border-left: none;
  }
  .footer-top__item a{
    width: 100%;
    padding: 0;
  }
  .footer-top__sublist{
    margin-top: 4rem;
    flex-direction: column;
    gap: 1.6rem;
  }
  .footer-top__subitem a{
    width: 100%;
    font-size: 1.3rem;
  }
}

/* コラムカード */
.column-card__link {
  display: inline-block;
  width: 100%;
}
.column-card__image{
  text-align: center;
}
.column-card__image img{
  width: 100%;
  aspect-ratio: 382/215;
  object-fit: contain;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.column-card__title {
  margin-top: 1.6rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(32/16);
}
.column-card__info {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column-card__date {
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: calc(32/16);
}
.column-card__category {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.8rem;
  background-color: var(--color-grey);
  border-radius: 3rem;
  font-family: var(--second-font-family);
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1;
}

/* フォーム */
.contact__row:nth-child(n+2){
  margin-top: 0.8rem;
}
.contact__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.contact__badge {
  display: inline-block;
  background-color: #B71C1C;
  border-radius: 0.4rem;
  padding: 0.6rem;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--color-white);
  line-height: 1;
}
.contact__badge--optional {
  background-color: #0D47A1;
}
.contact__labelText {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(32/16);
}
input.contact__input,
textarea.contact__textarea{
  border: 1px solid #ccc;
  background-color: var(--color-white) !important;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  font-size: 1.6rem;
  padding: 0.8rem;
}
.contact__example {
  font-size: 1.6rem;
  line-height: calc(32/16);
  color: #999;
}
.contact__row--privacy{
  margin-top: 2.8rem;
}
.contact__privacy{
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.contact__privacy .wpcf7-form-control,
.contact__privacy .wpcf7-list-item{
  display: block;
  margin: 0;
}
.contact__privacy label{
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.contact__privacy input{
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #ccc;
  border-radius: 0;
  margin: 0;
  /* appearance: none; */
  background-color: var(--color-white);
}
.wpcf7-list-item-label{
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(32/16);
}
.contact__acceptLabel{
  display: block;
  margin-top: 0.8rem;
}
.contact__acceptLabel a{
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(32/16);
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
.contact__actions{
  margin-top: 4rem;
}
.contact__actions input{
  width: 100%;
  background-color: var(--color-main);
  border-radius: 5rem;
  padding: 2.4rem;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-white);
}
.contact__actions input:not(:disabled):hover {
  cursor: pointer;
  background-color: var(--color-main);
  opacity: 0.8;
}

/* ----------- */
/* トップページ */
/* ----------- */
.mv{
  background-color: #f1f1f1;
  background-image: url(../images/bg_cards.png);
  background-position: top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding-bottom: 6.8rem;
}
.mv__slider .swiper-wrapper{
  padding-top: 4.8rem;
  padding-bottom: 3.4rem;
  align-items: center;
}
.mv__slide{
  padding: 4.6rem 2rem 5.5rem 4.8rem;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  max-width: 80rem;
}
.mv__slider .swiper-pagination{
  bottom: 0;
}
.mv__slider .swiper-pagination-bullet{
  background: #ddd;
  opacity: 1;
  margin: 0 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
}
.mv__slider .swiper-pagination-bullet-active{
  background: var(--color-main);
}
.mv__slider .swiper-button-next:after,
.mv__slider .swiper-button-prev:after {
  color: #999;
}
.mv__slider .swiper-button-next,
.mv__slider .swiper-rtl .swiper-button-prev {
  right: calc(50% - 43.5rem);
}
.mv__slider .swiper-button-prev,
.mv__slider .swiper-rtl .swiper-button-next {
  left: calc(50% - 43.5rem);
}
.mv__body{
  width: 50%;
  max-width: 30rem;
  flex-shrink: 0;
}
.mv__label{
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.1rem;
  padding: 0.1rem 0.8rem 0;
  display: inline-block;
  min-width: 15rem;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  border-radius: 0.5rem;
  text-align: center;
  background-color: #fff3ba;
}
.mv__title{
  margin-top: 1.4rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(28/24);
}
.mv__text{
  margin-top: 2.2rem;
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: calc(32/16);
}
.mv__text a{
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
.mv__button{
  margin-top: 3rem;
}
@media (max-width: 992px){
  .mv{
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .mv__slider .swiper-wrapper{
    padding-top: 0;
    /* align-items: flex-start; */
  }
  .mv__slide{
    padding: 3.6rem 2.6rem 3.9rem;
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    max-width: 40rem;
  }
  .mv__slider .swiper-button-next,
  .mv__slider .swiper-rtl .swiper-button-prev {
    right: calc(50% - 24.5rem);
  }
  .mv__slider .swiper-button-prev,
  .mv__slider .swiper-rtl .swiper-button-next {
    left: calc(50% - 24.5rem);
  }
  .mv__body{
    display: contents;
  }
  .mv__title{
    order: 1;
  }
  .mv__text{
    order: 3;
    margin-top: 3.3rem;
  }
  .mv__button{
    order: 4;
    margin-top: 2.3rem;
  }
  .mv__image{
    order: 2;
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px){
  .mv__slide{
    max-width: none;
  }
  .mv__slider .swiper-button-next,
  .mv__slider .swiper-rtl .swiper-button-prev {
    right: 0;
  }
  .mv__slider .swiper-button-prev,
  .mv__slider .swiper-rtl .swiper-button-next {
    left: 0;
  }
  .mv__slider .swiper-button-next:after,
  .mv__slider .swiper-button-prev:after {
    font-size: 3rem;
  }
}
/* 下層導線 */
.top-contents {
  margin-top: 9.8rem;
}
.top-contents__item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-contents__item + .top-contents__item {
  margin-top: 8rem;
}
.top-contents__item:nth-child(even){
  flex-direction: row-reverse;
}
.top-contents__body {
  width: 50%;
  max-width: 40rem;
}
.top-contents__subtitle {
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color-main);
}
.top-contents__title {
  margin-top: 1.4rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(28/24);
}
.top-contents__text {
  margin-top: 2.4rem;
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: calc(32/16);
}
.top-contents__text a{
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
.top-contents__categories {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.top-contents__category a{
  display: inline-block;
  padding: 0.8rem;
  background-color: var(--color-grey);
  border-radius: 3rem;
  font-family: var(--second-font-family);
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1;
}
.top-contents__button {
  margin-top: 3.2rem;
}
.top-contents__image {
  width: calc(50% - 4.2rem);
  margin-left: 4.2rem;
}
.top-contents__item:nth-child(even) .top-contents__image {
  margin-left: 0;
  margin-right: 4.2rem;
}
@media (max-width: 768px){
  .top-contents {
    margin-top: 2.4rem;
  }
  .top-contents__item {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .top-contents__item + .top-contents__item {
    margin-top: 4.8rem;
  }
  .top-contents__item:nth-child(even){
    flex-direction: column;
  }
  .top-contents__body {
    display: contents;
  }
  .top-contents__subtitle {
    order: 1;
  }
  .top-contents__title {
    order: 2;
  }
  .top-contents__text {
    order: 4;
    margin-top: 2.5rem;
  }
  .top-contents__categories {
    order: 5;
  }
  .top-contents__button {
    order: 6;
    margin-top: 2.4rem;
  }
  .top-contents__image {
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-top: 2.5rem;
  }
  .top-contents__item:nth-child(even) .top-contents__image {
    margin-right: 0;
  }
}
/* コラム */
.top-column {
  padding-top: 8rem;
  padding-bottom: 12rem;
}
.top-column__title {
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(28/24);
  text-align: center;
}
.top-column__list {
  margin-top: 4.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}
.top-column__button {
  margin-top: 4.8rem;
  text-align: center;
}
@media (max-width: 768px){
  .top-column {
    padding-top: 8rem;
    padding-bottom: 10.6rem;
  }
  .top-column__list {
    margin-top: 3.4rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.4rem;
  }
  .top-column__button {
    margin-top: 3.7rem;
  }
}


/* --------------- */
/* カード一覧ページ */
/* --------------- */
.cards {
}
.cards__fv {
  padding-top: 3.6rem;
  padding-bottom: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cards__fv--search{
  padding-bottom: 4.5rem;
  max-width: 80rem;
  margin-inline: auto;
}
.cards__fv-texts {
  width: 45%;
}
.cards__fv-subtitle {
  font-size: 1.6rem;
  color: var(--color-main);
  font-weight: bold;
  font-family: var(--second-font-family);
}
.cards__fv-title {
  margin-top: 1.4rem;
  font-size: 4rem;
  font-weight: bold;
  font-family: var(--second-font-family);
  line-height: calc(46/40);
}
.cards__fv-categories {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.cards__fv-category {
  border: 1px solid var(--color-main);
}
.cards__fv-category a{
  display: inline-block;
  padding: 1.5rem 4.5rem 1.5rem 1.5rem;
  color: var(--color-main);
  line-height: 1;
  font-weight: normal;
  font-family: var(--second-font-family);
  position: relative;
}
.cards__fv-category a::before{
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.7rem;
  transform: translateY(-50%);
}
.cards__fv-image {
  width: 46.547%;
  max-width: 55.857rem;
}
.cards__fv-keywords {
  margin-top: 1.7rem;
  font-size: 1.6rem;
  line-height: calc(32/16);
  color: #999;
  font-weight: bold;
}
.cards__fv-keywords span{
  font-weight: 400;
  color: var(--color-black);
}
.cards__fv-keywords span + span::before {
  content: '、';
  color: var(--color-black);
}
.cards__contents {
  padding-top: 6.6rem;
  padding-bottom: 21.1rem;
  position: relative;
}
.cards__contents::before {
  content: '';
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url("../images/bg_cards.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.cards__group {
  max-width: 80rem;
  margin-inline: auto;
  position: relative;
}
.cards__group + .cards__group {
  margin-top: 8.1rem;
}
.cards__group-category {
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
}
.cards__list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.cards__item {
  background-color: var(--color-white);
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 2.4rem 2.4rem 2.8rem;
}
.cards__item-image {
  width: 15.957%;
  flex-shrink: 0;
}
.cards__item-logo {
  width: 100%;
  max-width: 12rem;
  object-fit: contain;
}
.cards__item-stars {
  text-align: center;
}
.cards__item-additional-image{
  margin-top: 1.6rem;
}
.cards__item-body {
  margin-left: 1.6rem;
  width: calc(84.03% - 1.6rem);
}
.cards__item-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.cards__item-label {
  padding: 0.8rem;
  background-color: var(--color-grey);
  color: var(--color-main);
  font-size: 1.6rem;
  line-height: 1;
}
.cards__item-title {
  margin-top: 1.3rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: calc(32/18);
}
.cards__item-price {
  margin-top: 1.2rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: calc(32/18);
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.cards__item-price span {
  color: #B71C1C;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
.cards__item-summary {
  margin-top: 1.8rem;
  font-size: 1.4rem;
  line-height: calc(28/14);
}
.cards__item-summary a{
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
.cards__item-campaign {
  margin-top: 2.6rem;
  border-top: 0.4rem solid var(--color-main);
  padding-top: 0.4rem;
  font-weight: bold;
  color: var(--color-main);
  font-size: 1.8rem;
  line-height: calc(32/18);
}
.cards__item-campaign-text {
  margin-top: 0.3rem;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: calc(28/14);
}
.cards__item-campaign-text a{
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}
.cards__item-button {
  text-align: right;
  margin-top: 2rem;
}
.cards__item-button a {
  display: inline-block;
  background-color: var(--color-main);
  padding: 1.6rem 5.6rem 1.6rem 2.3rem;
  border-radius: 5rem;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
}
.cards__item-button a::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../images/icon_other-tab.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2.1rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cards__fv {
    flex-direction: column;
    align-items: center;
    padding-top: 3.2rem;
    padding-bottom: 2.8rem;
  }
  .cards__fv-texts {
    width: 100%;
  }
  .cards__fv-title {
    margin-top: 1rem;
    font-size: 3.2rem;
  }
  .cards__fv-categories {
    margin-top: 1.2rem;
  }
  .cards__fv-category a {
    padding: 1.2rem 3.6rem 1.2rem 1.2rem;
  }
  .cards__fv-category a::before {
    width: 1.2rem;
    height: 1.2rem;
    right: 1.2rem;
  }
  .cards__fv-image {
    width: 100%;
    max-width: none;
    margin-top: 2.4rem;
  }
  .cards__contents {
    padding-top: 4rem;
    padding-bottom: 16rem;
  }
  .cards__contents::before {
    background-size: 150% auto;
  }
  .cards__group + .cards__group {
    margin-top: 6rem;
  }
  .cards__group-category {
    font-size: 2rem;
  }
  .cards__list {
    margin-top: 3rem;
    gap: 3.2rem;
  }
  .cards__item {
    flex-direction: column;
    padding: 2rem;
  }
  .cards__item-image {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .cards__item-logo {
    object-fit: contain;
    width: calc(50% - 0.8rem);
    max-width: none;
  }
  .cards__item-stars {
    text-align: center;
  }
  .cards__item-additional-image{
    margin-top: 0;
    width: calc(50% - 0.8rem);
  }
  .cards__item-body {
    margin-top: 1.6rem;
    margin-left: 0;
    width: 100%;
  }
  .cards__item-title {
    font-size: 1.6rem;
  }
  .cards__item-price {
    margin-top: 1rem;
  }
  .cards__item-summary {
    margin-top: 1rem;
  }
  .cards__item-campaign {
    margin-top: 2rem;
  }
  .cards__item-button a {
    padding: 1.2rem 4.2rem 1.2rem 1.8rem;
    border-radius: 5rem;
    font-size: 1.4rem;
  }
  .cards__item-button a::before {
    width: 2rem;
    height: 2rem;
    right: 1.6rem;
  }
}


/* -------------- */
/* コラム一覧ページ */
/* -------------- */
.column{
  margin-top: 8.1rem;
  margin-bottom: 15.8rem;
}
.column__title{
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 4rem;
  line-height: calc(46/40);
}
.column__categoryList {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.column__categoryItem {
  border: 1px solid var(--color-main);
}
.column__categoryItem a{
  display: inline-block;
  padding: 1.5rem 4.5rem 1.5rem 1.5rem;
  color: var(--color-main);
  line-height: 1;
  font-weight: normal;
  font-family: var(--second-font-family);
  position: relative;
}
.column__categoryItem a::before{
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.7rem;
  transform: translateY(-50%);
}
.column__container{
  margin-top: 12.0rem;
}
.column__listGroup + .column__listGroup{
  margin-top: 15.0rem;
}
.column__listTitle{
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.column__listTitle span{
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
}
.column__listTitle::before,
.column__listTitle::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e3e3e3;
  flex: 1;
}
.column__list{
  margin-top: 4.0rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.6rem;
  row-gap: 4.6rem;
}
.column__moreBtn{
  margin-top: 4.0rem;
  text-align: center;
}
.column__pagination{
  margin-top: 7.2rem;
}
.pagination-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.pagination{
  margin-top: 0;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.page-numbers {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--second-font-family);
  color: var(--color-main);
  width: 3.3rem;
  height: 3.4rem;
  line-height: 3.4rem;
  padding: 0;
  border: 1px solid var(--color-main);
  position: relative;
  text-align: center;
  transition: all .3s ease-out;
}
.page-numbers.current{
  background-color: #eee;
  color: #999;
  border-color: transparent;
}

@media (max-width: 768px) {
  .column{
    margin-top: 5rem;
    margin-bottom: 10rem;
  }
  .column__categoryList {
    margin-top: 1.2rem;
  }
  .column__categoryItem a{
    padding: 1.2rem 3.6rem 1.2rem 1.2rem;
  }
  .column__categoryItem a::before{
    width: 1.2rem;
    height: 1.2rem;
    right: 1.2rem;
  }
  .column__title{
    font-size: 3rem;
  }
  .column__list{
    grid-template-columns: repeat(1, 1fr);
    gap: 3.4rem;
  }
}


/* -------------- */
/* コラム一詳細記事 */
/* -------------- */
.single .entry-header h1.entry-title {
  font-size: 4.0rem;
  margin: 0;
  text-align: left;
  padding-bottom: 0;
  font-family: var(--second-font-family);
}
.entry-metaWrap{
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry-metaDate{
  display: inline-block;
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: 2;
}
.entry-metaCategory{
  display: inline-block;
  font-family: var(--second-font-family);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-main);
  padding: 0.8rem;
  background-color: #eee;
  border-radius: 3rem;
}
/* ブロック */
.entry-body > h2.wp-block-heading{
  font-family: var(--second-font-family);
  font-size: 3.6rem;
  line-height: calc(65/36);
  padding-top: 1.2rem;
  border-top: 0.4rem solid var(--color-main);
  margin-bottom: 1.3rem;
}
.entry-body > h3.wp-block-heading{
  font-family: var(--second-font-family);
  font-size: 3.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 2.0rem;
}
.entry-body > h3.wp-block-heading::before{
  content: "";
  display: block;
  width: 32%;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.entry-body > h4.wp-block-heading{
  font-family: var(--second-font-family);
  font-size: 2.8rem;
  line-height: calc(65/28);
  text-align-last: left;
  color: var(--color-black);
  padding: 0.2rem 1.6rem 0.3rem;
  background-color: #eee;
  margin-bottom: 2.5rem;
}
.entry-body > h5.wp-block-heading{
  font-family: var(--second-font-family);
  font-size: 2.4rem;
  line-height: calc(45/24);
  border-bottom: 1px solid #ccc;
  margin-bottom: 2.1rem;
}
.entry-body > h6.wp-block-heading{
  font-family: var(--second-font-family);
  font-size: 2rem;
  line-height: calc(45/20);
  color: var(--color-black);
  background: none;
}
.entry p{
  margin-bottom: 1em;
}
.entry p a{
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
  font-weight: bold;
}
.entry p strong{
  font-weight: bold;
}
.entry-body ul.wp-block-list,
.entry-body ol.wp-block-list{
  margin-bottom: 1em;
}
.entry-body ul.wp-block-list li,
.entry-body ol.wp-block-list li{
  padding-left: 2.5rem;
  text-indent: -2.5rem;
}
.entry-body ul.wp-block-list li+li,
.entry-body ol.wp-block-list li+li{
  margin-top: 1.6rem;
}
.entry-body ul.wp-block-list li::before{
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  margin-inline: 1rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-main);
}
.entry-body ol.wp-block-list{
  counter-reset: li;
}
.entry-body ol.wp-block-list li{
  counter-increment: li;
}
.entry-body ol.wp-block-list li::before{
  content: counter(li);
  display: inline-block;
  width: 2rem;
  margin-left: 0.5rem;
  font-family: var(--base-font-family);
  font-weight: bold;
  color: var(--color-main);
  text-indent: initial;
}
.entry-body .wp-block-table table thead{
  border: none;
}
.entry-body .wp-block-table table th,
.entry-body .wp-block-table table td{
  border-color: #ccc;
  font-size: 1.6rem;
  font-family: var(--second-font-family);
  line-height: 2;
  padding: 2rem 1.6rem;
}
/* 前後記事 */
.entry-prevAfter{
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry-prevAfter__link{
  display: inline-block;
  border: 1px solid var(--color-main);
  padding: 0.8rem 1.4rem;
  font-family: var(--second-font-family);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: calc(18/16);
  color: var(--color-main);
}
.entry-prevAfter__prev{
  margin-right: auto;
}
.entry-prevAfter__after{
  margin-left: auto;
}
/* 関連記事 */
.related-post{
  margin-top: 8.9rem;
}
.related-post__title{
  padding-top: 1.2rem;
  border-top: 0.4rem solid var(--color-main);
  font-family: var(--second-font-family);
  font-size: 3.6rem;
  line-height: calc(65/36);
}
.related-post__list{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}
.related-post__item .column-card__title{
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: calc(22/14);
}
.related-post__item .column-card__info{
  margin-top: 1.8rem;
}
.related-post__item .column-card__date{
  font-size: 1.4rem;
}
.related-post__item .column-card__category{
  font-size: 1.2rem;
  padding: 0.3rem 0.75rem;
}
.site-body{
  padding-bottom: 12.6rem;
}
@media (max-width: 768px) {
  .related-post__list{
    grid-template-columns: repeat(1, 1fr);
    gap: 3.4rem;
  }
}
.vk-mobile-nav-menu-btn{
  display: none;
}


/* ----------- */
/* よくある質問 */
/* ----------- */
.vk_faq {
  padding: 0px 0px 1.6rem;
  margin: 0 auto 1.6rem auto;
}
.vk_faq .vk_faq_title {
  padding: 1.28rem 1.28rem 1.28rem 4.8rem;
}
.vk_faq .vk_faq_title:before {
  top: 1.12rem;
  width: 3.36rem;
  height: 3.36rem;
  line-height: 3.36rem;
  background-color: var(--color-main);
}
.vk_faq .vk_faq_content {
  padding: 1.28rem 1.28rem 1.28rem 4.8rem;
}
.vk_faq .vk_faq_content:before {
  top: 1.12rem;
  width: 3.36rem;
  height: 3.36rem;
  line-height: 3.36rem;
  background-color: #eee;
  color: var(--color-main) !important;
}
.vk_faq-body a{
  font-weight: bold;
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: var(--color-main);
}


/* -------------- */
/* マウスストーカー */
/* -------------- */
.mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: 17.6rem;
  left: 22.7rem;
  width: 2.3rem;
  height: 2.3rem;
  background: rgb(168,30,46);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 9999;
}
.mouse-stalker.pop {
  animation: stalker-pop 1s ease-out;
}
@media (max-width: 1280px) and (min-width: 993px) {
  .mouse-stalker {
    top: 17.9rem;
  }
}
@media (max-width: 992px) {
  .mouse-stalker {
    top: 19.1rem;
  }
}
@media (max-width: 768px) {
  .mouse-stalker {
    display: none;
  }
}
@keyframes stalker-pop {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -50%) scale(4); }
  100% { transform: translate(-50%, -50%) scale(1); }
}


/* プリセット変数を 16px 基準に合わせ直す */
:root {
  --vk-margin-xxs: 0.6rem;   /* 6px */
  --vk-margin-xs: 1.2rem;    /* 12px */
  --vk-margin-sm: 2.4rem;    /* 24px */
  --vk-margin-md: 3.84rem;   /* 38.4px ≒ 38px */
  --vk-margin-lg: 6.4rem;    /* 64px */
  --vk-margin-xl: 9.6rem;    /* 96px */
  --vk-margin-xxl: 14.4rem;  /* 144px */

  --vk-margin-elem: 3.2rem;  /* 32px */
  --vk-width-base-padding: 2.24rem; /* 22.4px ≒ 22px */
  --vk-margin-meta: 0.8rem;  /* 8px */
  --vk-margin-element-bottom: 2.4rem; /* 24px */
  --vk-margin-block-bottom: 3.2rem;   /* 32px */
  --vk-margin-section-bottom: 4.8rem; /* 48px */

  --vk-size-text-meta: 1.2rem;  /* 12px */
  --vk-size-text-lg: 2.4rem;    /* 24px */
  --vk-size-text-sm: 1.4rem;    /* 14px */
  --vk-size-text-xs: 1.2rem;    /* 12px */

  --vk-size-text-lg: 2.1rem;    /* 21px */
  --vk-size-text-sm: 1.4rem;    /* 14px */
  --vk-size-text-xs: 1.2rem;    /* 12px */
  --vk-margin-meta: 0.8rem;     /* 8px */
  --vk-margin-block-bottom: 3.2rem; /* 32px */
}
@media (min-width: 1200px) {
  :root {
    --vk-width-base-padding-side: 3.2rem;
  }
}
@media (min-width: 992px) {
  :root {
    --vk-width-base-padding: 3.84rem;
    --vk-width-base-padding-side: 2.72rem;
  }
}
@media (min-width: 768px) {
  :root {
    --vk-width-base-padding: 3.2rem;
  }
}
@media (min-width: 576px) {
  :root {
    --vk-width-base-padding: 2.72rem;
  }
}

:root {
  --wp--preset--font-size--small: 1.4rem;    /* 14px */
  --wp--preset--font-size--medium: 2rem;     /* 20px */
  --wp--preset--font-size--large: 2.4rem;    /* 24px */
  --wp--preset--font-size--x-large: 4.2rem;  /* 42px */
  --wp--preset--font-size--regular: 1.6rem;  /* 16px */
  --wp--preset--font-size--huge: 3.6rem;     /* 36px */

  --wp--preset--spacing--20: 0.704rem;
  --wp--preset--spacing--30: var(--vk-margin-xs, 1.2rem);
  --wp--preset--spacing--40: var(--vk-margin-sm, 2.4rem);
  --wp--preset--spacing--50: var(--vk-margin-md, 3.84rem);
  --wp--preset--spacing--60: var(--vk-margin-lg, 6.4rem);
  --wp--preset--spacing--70: var(--vk-margin-xl, 9.6rem);
  --wp--preset--spacing--80: 8.096rem;
}

/* ----------- */
/* 記事CTAの調整 */
/* ----------- */
.wp-container-core-columns-is-layout-e6d5380d {
	padding: 1.8rem 2.4rem !important;
}
.wp-container-core-columns-is-layout-e6d5380d .wp-block-column:first-child{
	align-self: center;
	flex-basis: 20% !important;
}
.wp-container-core-columns-is-layout-e6d5380d h3{
	font-size: 2.4rem !important;
	margin-bottom: 1.2rem !important;
}
.wp-container-core-columns-is-layout-e6d5380d h3 strong{
	font-weight: 500;
}
.wp-container-core-columns-is-layout-e6d5380d p{
	font-size: 1.6rem !important;
	margin-bottom: 1.6rem !important;
}
.wp-container-core-columns-is-layout-e6d5380d .vk_button a{
	width: 100%;
    font-size: 1.8rem !important;
	position: relative;
	padding-right: 3.2rem !important;
}
.wp-container-core-columns-is-layout-e6d5380d .vk_button a strong{
	font-weight: 500;
}
.wp-container-core-columns-is-layout-e6d5380d .vk_button a::before{
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	border-top: 0.3rem solid #fff;
	border-right: 0.3rem solid #fff;
	position: absolute;
	top: 50%;
	right: 2.0rem;
	transform: translatey(-50%) rotate(45deg);
}
@media (max-width: 781px) {
	.wp-container-core-columns-is-layout-e6d5380d {
		padding: 2rem !important;
		gap: 1rem;
	}
	.wp-container-core-columns-is-layout-e6d5380d .wp-block-column:first-child{
		max-width: 8rem;
		margin-inline: auto;
	}
	.wp-container-core-columns-is-layout-e6d5380d h3{
		font-size: 1.8rem !important;
		margin-bottom: 0.6rem !important;
	}
	.wp-container-core-columns-is-layout-e6d5380d p{
		font-size: 1.3rem !important;
		margin-bottom: 1.8rem !important;
	}
	.wp-container-core-columns-is-layout-e6d5380d .vk_button a{
		font-size: 1.6rem !important;
		padding-block: 1.2rem !important;
	}
}