/**
 * ================================================================================
 * 基本
 * 
 * ================================================================================
 */

:root {
  --main-bg: #efeeea;
  --black: #000;
  --red: #ff3838;
  --black-op: rgba(0, 0, 0, 0.5);
  --border-color: rgba(0, 0, 0, 0.1);
  --svg-black: brightness(0) saturate(100%);
  --svg-white: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);

  --font_style--jp: "Zen Kaku Gothic New", sans-serif;
  --font_style--en: "Poppins", sans-serif;
}

html {
  /* font-size: 62.5%; */
  font-size: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
body {
  color: var(--black);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  transform: none;
  background-color: var(--main-bg);
  /* padding-top: 125px; */
}
a {
  color: var(--black);
}
.font_style--jp {
  font-family: var(--font_style--jp);
}
.font_style--en {
  font-family: var(--font_style--en);
}
.font_size--sm {
  font-size: 12px;
}
/**
 * フェードアップ
 * -------------------------------
 */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/**
   * section
   * -------------------------------
*/
/* 
.only--pc{
  display: block;
}
.only--tb{
  display: none;
}
.only--sp{
  display: none;
}

@media screen and (max-width: 840px) {
  .only--pc{
    display: none;
  }
  .only--tb{
    display: block;
  }
  .only--sp{
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .only--sp{
    display: block;
  }
} */
/**
   * main
   * -------------------------------
*/
main {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
/**
   * section
   * -------------------------------
*/
.section {
  padding: 96px 0;
}
.section__wrap {
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.section__wrap--sm {
  max-width: 900px;
}
/* .section__wrap--gap {
  display: flex;
  flex-direction: column;
  gap: 96px;
} */
/* .section__wrap--gap.gap--96 {
  gap: 96px;
} */
.section__header {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section__ttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
}
.section__side .section__ttl {
  font-size: 18px;
}
.section__ttl--data::before {
  content: attr(data-section);
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-family: var(--font_style--en);
  color: var(--black-op);
}

.section__body {
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section__comment {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 840px) {
  .section {
    padding: 48px 0;
  }
  .section__wrap {
    padding: 0 40px;
    font-size: 14px;
	  gap: 40px;
  }
  .section__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .section {
    padding: 48px 0;
  }
  .section__wrap {
    padding: 0 30px;
  }
  .section__ttl {
    font-size: 18px;
  }
}

[class^="gap--"],
[class*=" gap--"] {
  display: flex;
  flex-direction: column;
}
.gap--96 {
  gap: 96px;
}
.gap--48 {
  gap: 48px;
}
.gap--24 {
  gap: 24px;
}

@media screen and (max-width: 540px) {
}

/**
 * ================================================================================
 * header
 * 
 * ================================================================================
 */
#header,
#header_sub {
  display: flex;
  flex-direction: column;
  padding: 12px 40px;
  width: 100%;
  z-index: 20;
  transition: background-color 0.3s ease;
  background-color: transparent;
  transform: translateZ(0);
  background-color: #fff;
}
.header__contact--pc {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 24px;
  margin-bottom: 16px;
}
.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
}
body.admin-bar #header {
  top: 32px;
}

@media screen and (max-width: 840px) {
  #header,
  #header_sub {
    padding: 12px 24px;
    flex-wrap: wrap;
  }
  body.open #header {
    height: 100%;
    bottom: 0;
    align-items: flex-start;
  }
}
/**
   * logo
   * -------------------------------
   */
.header-logo {
  display: block;
  height: 41px;
}
.header-logo img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 540px) {
  .header-logo {
    height: 30px;
  }
}

/**
   * menu nav
   * -------------------------------
   */
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .menu__list {
  gap: 32px;
}
.menu__item {
  position: relative;
  width: 100%;
}
.menu__item > .menu__link {
  display: block;
  white-space: nowrap;
  color: var(--black);
  font-family: var(--font_style--en);
  cursor: pointer;
  position: relative;
  line-height: 2;
  font-weight: 600;
}

#header .menu__link::before,
#header_sub .menu__link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.2s ease;
}
#header .menu__dropdown .menu__link::before,
#header_sub .menu__dropdown .menu__link::before {
  display: none;
}

/* ホバー時のスタイル */

@media screen and (min-width: 1241px) {
  #header .menu__link:hover::before,
  #header_sub .menu__link:hover::before {
    transform-origin: left top;
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1240px) {
  #header .menu__link:hover,
  #header_sub .menu__link:hover {
    opacity: 0.5;
  }
}
/**
   * ドロップダウンメニュー
   * -------------------------------
**/
.menu__item > .menu__link.menu__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu__toggle::after {
  background-image: url(../img/icon-arrow_down.svg);
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-size: cover;
  filter: var(--svg-black);
}
#header .menu__dropdown .toggle__link {
  display: flex;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  align-items: center;
  font-weight: 500;
  position: relative;
  padding-right: 32px;
}
/* #header .menu__dropdown .toggle__link::after {
  content: "";
  background-image: url(../img/icon-arrow_right.svg);
  width: 16px;
  aspect-ratio: 1/1;
  display: block;
  background-size: cover;
  background-position: center;
  filter: var(--svg-white);
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
} */
.menu__item > .menu__link.menu__link--blank {
  display: flex;
  gap: 8px;
  font-weight: 500;
  position: relative;
  align-items: center;
}
.menu__item > .menu__link.menu__link--blank::after {
  transform: rotate(-45deg);
  content: "";
  background-image: url(../img/icon-arrow_right.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
  aspect-ratio: 1/1;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
  right: inherit;
  transition: transform 0.3s ease;
}
#header .toggle__link.menu__link--blank::after {
  filter: var(--svg-white);
}
/* #header .menu__dropdown .toggle__link:hover::after {
  transform: translateX(8px);
} */
@media screen and (min-width: 1241px) {
  #header .menu__dropdown {
    position: absolute;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transform-origin: top center;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
    z-index: 10;
    left: 0;
    top: 100%;
  }
  #header .menu__dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--black);
    border-radius: 8px;
  }
  #header .menu__item:hover .menu__dropdown {
    width: auto;
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #header .menu__link::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.2s ease;
  }
  #header .menu__toggle::before {
    display: none;
  }

  /* ホバー時のスタイル */
  #header .menu__link:hover::before {
    transform-origin: left top;
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1240px) {
  #header .menu__dropdown {
    display: none;
    border-bottom: 1px solid #dadad2;
  }
  #header .menu__dropdown.active {
    display: block;
    padding: 24px;
  }
  #header .menu__dropdown .menu__item {
    margin-bottom: 0;
  }

  #header .menu__dropdown .toggle__link {
    color: var(--black);
    padding: 16px 0;
  }
  #header .menu__dropdown .toggle__link:hover {
    opacity: 0.5;
  }
  #header .menu__item > .menu__link.menu__toggle {
    justify-content: space-between;
  }

  #header .menu__dropdown .toggle__link::after,
  #header .menu__link--blank::after {
    filter: var(--svg-black);
  }
  #header .btn--inquiry {
    max-width: 460px;
    width: 100%;
  }
}

/* .menu__link::before {
  display: none;
} */
/**
   * スクロール時
   * -------------------------------
   */
#header.scrolled {
}

/**
   * ハンバーガーメニュー OPEN制御
   * -------------------------------
*/

.menu_btn-wrap {
  display: none;
}
#header .header__contact--tablet,
#header .header__contact--sp {
  display: none;
}
/* @media screen and (max-width: 840px) { */
@media screen and (max-width: 1240px) {
  .header__contact--pc {
    display: none;
  }
  #header .header__contact--tablet {
    display: flex;
  }
  #header.open {
    height: 100%;
    bottom: 0;
    position: fixed;
    flex-wrap: wrap;
    align-items: flex-start;
    background: var(--main-bg);
  }
  .header__main {
    gap: 24px;
    flex-wrap: wrap;
    height: 100%;
    z-index: 1;
  }

  .header__contact--tablet {
    display: flex;
    flex-grow: 1;
    justify-content: end;
    gap: 24px;
  }
  .header__menu {
    display: none;
    order: 3;
    width: 100%;
  }
  .header__menu::after {
    content: "";
  }

  #overlay.open .menu__list {
    flex-direction: column;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
  }
  #overlay.open .menu__list li {
    display: block;
    width: 100%;
  }
  /*  */

  #header .menu__link,
  #header .menu__toggle {
    border-bottom: 1px solid #dadad2;
  }

  #header .menu__item {
    width: 100%;
  }
  #header .menu__link {
    padding: 16px 0;
  }
  #header .menu__item::after {
    background: #ccc;
    height: 1px;
  }

  /**/
  body.open {
    overflow: hidden;
  }
  /**/
  #overlay {
    opacity: 0;
    z-index: -5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #overlay.open {
    opacity: 1;
/*     height: 100%; */
    height: calc(100% - 80px);
	  overflow: scroll;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    order: 3;
    gap: 0;
  }

  /**/
  .menu_btn-wrap {
    display: block;
  }

  #overlay-button {
    position: relative;
    z-index: 5;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    /* gap: 40px; */
    height: 44px;
    width: 44px;
    align-items: center;
  }

  #overlay-button span {
    display: block;
    height: 2px;
    width: 24px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  #overlay-button span::before,
  #overlay-button span::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 24px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    transform-origin: center;
  }

  #overlay-button span::before {
    transform: translateY(-8px);
  }

  #overlay-button span::after {
    transform: translateY(8px);
  }
  #header input[type="checkbox"] {
    display: none;
  }

  /* ホバー時カラー変更 */
  #overlay-button:hover span,
  #overlay-button:hover span::before,
  #overlay-button:hover span::after {
    background-color: var(--black);
  }

  /* チェック時：クロス表示 */
  #header input[type="checkbox"]:checked ~ #overlay-button span {
    background: transparent;
  }

  #header input[type="checkbox"]:checked ~ #overlay-button span::before {
    transform: rotate(45deg);
  }

  #header input[type="checkbox"]:checked ~ #overlay-button span::after {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 840px) {
  #header .header__contact--tablet {
    display: none !important;
  }
  #header .header__contact--sp {
    max-width: 460px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  #header .header__contact--sp {
    margin-top: 40px;
  }
}
@media screen and (max-width: 540px) {
  #header .header__contact--tablet {
    display: none !important;
  }
}

/**
 * ================================================================================
 * inquiry | footer
 * footer.php
 * ================================================================================
 */

/**
 * inquiry
 * -------------------------------
 */
#inquiry {
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-size: 125%;
  display: grid;
  margin-top: 96px;
}
.bg--white + #inquiry {
  margin-top: 0;
}
.single #inquiry {
  margin-top: 0;
}
#inquiry .section__wrap {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.inquiry__container {
  display: flex;
  gap: 80px;
  flex-direction: column;
  width: 100%;
}
.inquiry__container:first-child {
  padding-right: 80px;
  border-right: 1px solid var(--black);
}

#inquiry .section__ttl {
  margin-bottom: 16px;
}
#inquiry .section__header p {
  font-size: 12px;
}
.inquiry__btn-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

/* ボタン */
#inquiry .btn {
  /* padding: 16px;
  font-size: 1rem; */
}
#inquiry .btn--contact {
  background: #fff;
}
/* SNSアイコン */
.inquiry__sns-group {
  display: flex;
  gap: 96px;
  justify-content: center;
}
.inquiry__sns-icon {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  filter: var(--svg-black);
}
.inquiry__sns-icon img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.inquiry__sns-icon:hover {
  opacity: 0.7;
}

@media screen and (max-width: 840px) {
  #inquiry .section__wrap {
    flex-direction: column;
    gap: 0;
  }
  .inquiry__container:first-child {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }
  .inquiry__container {
    flex-direction: column;
    gap: 40px;
  }
  /* ボタン */
  .inquiry__btn-group {
    gap: 40px;
  }
}
/**
 * footer
 * -------------------------------
 */
footer {
  background-color: #fff;
  padding-top: 64px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
footer .footer__top,
footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.footer_company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .footer__top .footer__menu {
  display: flex;
  gap: 40px;
  flex-grow: 1;
  justify-content: end;
}
.footer__top .menu__list {
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
}
.footer__top .toggle__link {
  display: block;
}
.footer__top .menu__toggle::after,
.footer__top .toggle__link::after {
  display: none;
}
.footer__top .toggle__link {
  color: var(--black);
}
.footer__top .menu__toggle {
  margin-bottom: 24px;
}
.footer__top .menu__dropdown {
  list-style: outside disc;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 1.5em;
}
.footer__top .menu__dropdown-inner {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 1.5em;
}
footer .toggle__link:hover,
footer .menu__link:hover {
  opacity: 0.5;
}
footer .menu__link.menu__toggle {
  cursor: default;
}
footer .menu__link.menu__toggle:hover {
  opacity: 1;
}
footer .header__contact--sp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__top .btn {
  width: 100%;
}
.footer__bottom {
  font-size: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}
.footer__bottom .footer__menu {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.footer__bottom .footer__menu a {
  color: var(--black-op);
}
small {
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  footer .footer__top .footer__menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer__top .menu__list,
  .footer__top .header__contact--sp {
    width: calc((100% - 40px * 3) / 4);
  }
}
@media screen and (max-width: 840px) {
  .footer__top .menu__list,
  .footer__top .header__contact--sp {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 540px) {
  footer .footer__top .footer__menu {
    gap: 24px;
  }
  .footer__top .menu__list,
  .footer__top .header__contact--sp {
    width: 100%;
  }
  .footer__bottom .footer__menu {
    flex-direction: column;
  }
  #footer .menu__dropdown {
    display: none;
    border-bottom: 1px solid #dadad2;
  }
  #footer .menu__dropdown.active {
    display: block;
    padding: 0 24px;
    border: none;
  }
  #footer .menu__dropdown .menu__item {
    margin-bottom: 0;
  }

  #footer .menu__dropdown .toggle__link {
    color: var(--black);
    padding: 16px 0;
  }
  #footer .menu__dropdown .toggle__link:hover {
    opacity: 0.5;
  }
  #footer .menu__item > .menu__link.menu__toggle {
    justify-content: space-between;
    margin-bottom: 0;
  }

  #footer .menu__dropdown .toggle__link::after {
    filter: var(--svg-black);
  }
  #footer .btn--inquiry {
    max-width: 460px;
    width: 100%;
  }
}

/**
 * ================================================================================
 * btn | ボタン
 * 
 * ================================================================================
 */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid var(--black);
  font-family: var(--font_style--en);
  font-size: 12px;
  transition: transform 0.3s ease;
  text-decoration: none;
	font-weight:600;
}

.btn:hover {
  background-color: var(--black) !important;
  color: #fff;
}
.btn.current,
.btn--download {
  background: var(--black);
  color: #fff;
}
.btn--download:hover {
  background: #fff !important;
  color: var(--black);
}

.btn--arrow-45deg {
  position: relative;
}
.btn--arrow-45deg::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-arrow_right.svg);
  background-size: cover;
  transform: rotate(-45deg);
  filter: var(--svg-black);
  transition: transform 0.3s ease;
}
.btn--arrow-45deg:hover::after {
  filter: var(--svg-white);
  transform: translateX(8px);
}
.btn--arrow-90deg::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-arrow_right.svg);
  background-size: cover;
  filter: var(--svg-black);
  transition: transform 0.3s ease;
}
.btn--arrow-90deg:hover::after {
  filter: var(--svg-white);
  transform: translateX(8px);
}
.btn--download::after,
.btn--contact::after {
  content: "👋";
  transition: transform 0.3s ease;
}
.btn--home::after {
  content: "🏠";
}
.btn--download:hover::after,
.btn--contact:hover::after {
  transform: rotate(50deg);
}

.btn--white {
  border: 1px solid #fff;
  color: #fff;
}
.btn--white.btn--arrow-90deg::after {
  filter: var(--svg-white);
}
.btn--white:hover {
  border-color: var(--black);
}

.btn--text {
  text-decoration: underline;
}

.btn__group {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.btn__group--column {
  flex-direction: column;
  align-items: center;
}
.btn__group--column .btn {
  max-width: 400px;
  width: 100%;
}

@media screen and (max-width: 840px) {
}
@media screen and (max-width: 540px) {
  .btn__group {
    flex-direction: column;
  }
}

/**
 * ================================================================================
 * icon | アイコン
 * 
 * ================================================================================
 */
.icon__group {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.icon {
  /* content: ""; */
  width: 12px;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.icon--arrow_right {
  background-image: url(../img/icon-arrow_right.svg);
}
.icon--pagination-left {
  background-image: url(../img/icon-arrow_down.svg);
  transform: rotate(90deg);
  filter: var(--svg-black);
}
.icon--pagination-right {
  background-image: url(../img/icon-arrow_down.svg);
  transform: rotate(-90deg);
  filter: var(--svg-black);
}

/**
 * ================================================================================
 * 共通
 * 
 * ================================================================================
 */

/**
 * bg | 背景
 * -------------------------------
 */
.bg--white {
  background: #fff;
}
/**
 * breadcrumbs | パンくずリスト
 * -------------------------------
 */

#breadcrumbs {
  font-size: 12px;
  font-family: var(--font_style--en);
  padding: 1rem 0 0;
  font-weight: 300;
}
#breadcrumbs span {
  gap: 8px;
  display: flex;
}
#breadcrumbs a {
  white-space: nowrap;
}
.breadcrumb_last {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 10px;
  flex-grow: 1;
  display: inline-block !important;
}
@media screen and (max-width: 840px) {
  #breadcrumbs {
    font-size: 12px;
  }
}

/**
 * pagination | ページネーション
 * -------------------------------
 */

ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 16px;
}
ul.page-numbers .page-numbers {
  width: 46px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--black);
  transition: 0.3s;
}
.page-numbers.current {
  background-color: #000;
  color: #fff;
}
ul.page-numbers .page-numbers.dots {
  border: none;
}

ul.page-numbers .page-numbers:hover {
  background-color: var(--black);
  color: #fff;
}
ul.page-numbers .page-numbers:hover .icon--pagination-right {
  filter: var(--svg-white);
}

ul.page-numbers .page-numbers.dots:hover {
  background-color: transparent;
  color: #000;
}

@media screen and (max-width: 840px) {
}

/**
 * table | テーブル
 * -------------------------------
 */

table {
}
table th,
table td {
  padding: 16px 0;
}
table th {
  font-weight: 500;
  color: var(--black-op);
  padding-right: 16px;
  text-align: left;
  width: 180px;
}

@media screen and (max-width: 540px) {
  table th,
  table td {
    display: block;
    padding: 0;
  }
  table td {
    padding: 8px 0 16px;
  }
}

/**
 * 投稿 | post
 * 
 * -------------------------------
 */
.post__list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
.post__item {
  width: calc((100% - 32px * 2) / 3);
}
.post__item:last-child {
  margin-bottom: 0;
}
.post__item .post__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}
.post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post__ttl {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: calc(1em * 1.6 * 2);
}

.post__detail {
  font-size: 12px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: calc(1em * 1.6 * 2);
  font-weight: 500;
}
.post__item .btn--arrow-90deg {
  margin-top: 32px;
  background: #fff;
}

.post__data--seminar_date {
  font-size: 12px;
}
.post__data--seminar_date::before {
  content: "開催日: ";
}
.post__data--place {
  font-size: 12px;
  margin-left: 16px;
}
.post__data--place::before {
  content: "@ ";
}

@media screen and (max-width: 840px) {
  .post__item {
    width: calc((100% - 32px * 1) / 2);
  }
}
@media screen and (max-width: 540px) {
  .post__list {
    flex-direction: column;
    gap: 40px;
  }
  .post__item {
    width: 100%;
  }
  .post__item .post__link .post__ttl {
    text-overflow: inherit;
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
    height: auto;
  }
}

/* 初期状態では3件表示（4件目以降は非表示） */
.post__list.post__list--limit-4 li:nth-child(n + 4) {
  display: none;
}
@media screen and (max-width: 840px) {
  .post__list.post__list--limit-4 li:nth-child(n + 4) {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .post__list.post__list--limit-4 li:nth-child(n + 4) {
    display: none;
  }
}

/**
 * news
 * -------------------------------
 */

.post__list--column {
  flex-direction: column;
  gap: 0;
}
.post__list--column .post__item {
  width: 100%;
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}
.post__list--column .post__link {
  display: flex;
  gap: 24px;
  align-items: center;
}
.post__link--div:hover {
  opacity: 0.5;
}
.post__list--column .post__title {
  flex: 1;
  font-size: 14px;
}

.post__list--column .post__category,
.section__ttl-wrap .post__category {
  font-size: 12px;
  padding: 6px;
  border: 1px solid var(--black);
  max-width: 131px;
  width: 100%;
  text-align: center;
  display: inline-block;
  line-height: 1.2;
}
.post__data--update,
.article__date {
  font-size: 12px;
  color: var(--black-op);
}

@media screen and (max-width: 840px) {
  .post__list--column .post__link {
    /* flex-direction: column; */
    /* align-items: flex-start; */
    flex-wrap: wrap;
  }
  .post__list--column .post__category {
    order: 1;
  }
  .post__list--column .post__data {
    order: 2;
  }
  .post__list--column .post__title {
    order: 3;
    width: 100%;
    flex: auto;
  }
}
/**
 * ================================================================================
 * 共通 | 一覧
 * taxonomy,archive
 * ================================================================================
 */
.taxonomy {
  display: grid;
  gap: 12px;
}
.taxonomy__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black-op);
}
.taxonomy__ttl::before {
  content: "";
  background: url(../img/icon-search.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.taxonomy__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.taxonomy__item a.btn {
  font-size: 12px;
  font-weight: 300;
  padding: 8px 24px;
}

@media screen and (max-width: 540px) {
  .taxonomy__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #1e1e1e;
    border-radius: 50px;
    color: var(--black);
    transition: 0.3s;
    cursor: pointer;
  }
  .taxonomy__ttl::before {
    opacity: 1;
  }
  .taxonomy__ttl:hover {
    background-color: var(--black);
    color: #fff;
  }
  .taxonomy__ttl:hover::before {
    filter: var(--svg-white);
  }

  .taxonomy__ttl--news,
  .taxonomy__body {
    display: none;
  }
  .taxonomy__list {
    flex-direction: column;
  }
  .taxonomy {
    display: none;
  }
  .taxonomy__item a.btn {
    padding: 12px 24px;
    justify-content: space-between;
  }
  .taxonomy__item a.btn::after {
    content: "";
    background: url(../img/icon-arrow_down.svg) no-repeat;
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
    background-position: center;
    filter: var(--svg-black);
  }
  .taxonomy__item a.btn.current::after,
  .taxonomy__item a.btn:hover::after {
    filter: var(--svg-white);
  }
}

/**/

/* popup | close */
.popup {
  display: none;
}

/* popup | open */
.popup.popup.is-active {
  display: block;
}
.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black-op);
  z-index: 25;
}
.popup .popup__wrap {
  display: block;
  position: fixed;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  max-width: 500px;
  width: calc(100% - 32px);
  border-radius: 16px;
  height: 90%;
}
.popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 24px;
}
.popup__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup__ttl::before {
  content: "";
  background: url(../img/icon-search.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.popup__close {
  width: 44px;
  height: 44px;
  background: url(../img/icon-close.svg) no-repeat;
  cursor: pointer;
}
.popup__body {
  padding: 24px 24px 60px;
  height: 90%;
  overflow: scroll;
}

.popup__btn--news {
  display: none;
}
@media screen and (max-width: 540px) {
  .popup__btn--news {
    display: flex;
  }
}

/**
 * ================================================================================
 * 共通 | 詳細ページ
 * single
 * ================================================================================
 */
/* .single .section__ttl {
  margin-top: 16px;
} */
.single .section__body > div p {
  margin-bottom: 8px;
}
.single .section__body > div p:last-child {
  margin-bottom: 0;
}
.single .post__category {
  margin-right: 8px;
}
.single .section__body a {
  text-decoration: underline;
  color: var(--black-op);
}
.section__body > .section {
  padding: 0;
}

/**/
.wp-block-button__link {
  text-decoration: none !important;
}
.wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  /* gap: 48px; */
}
.wp-block-column {
  display: flex;
  flex-direction: column;
  /* gap: 48px; */
}
ol.wp-block-list {
  list-style: decimal outside;
  padding-left: 2em;
}
ul.wp-block-list {
  list-style: disc outside;
  padding-left: 2em;
}
.wp-block-list li {
  margin-bottom: 1rem;
}
.wp-block-list .wp-block-list {
  margin-top: 1rem;
}

/**/
.single-white_paper .wp-block-columns-is-layout-flex {
  gap: 48px;
}
.single-white_paper .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fff !important;
}

@media screen and (max-width: 840px) {
  .single-white_paper .wp-block-columns-is-layout-flex {
    flex-direction: column;
  }
}
/**
 * ================================================================================
 * テンプレート | ポリシーページ
 * page-policy
 * ================================================================================
 */
.policy h2 {
  font-size: 18px;
}

/**
 * ================================================================================
 * 個別 | insight詳細ページ
 * single-insight
 * ================================================================================
 */
.section__wrap--insight {
  flex-direction: row;
  gap: 48px;
}

.section__wrap--insight .section__main {
  flex-basis: 70%;
}
.section__wrap--insight .section__side {
  flex-basis: 30%;
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.section__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section__meta {
  display: flex;
  gap: 16px;
}
.section__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section__info .section__date {
  color: var(--black-op);
}
/* 投稿執筆者 */
.section__editor-thumb {
  max-width: 128px;
  width: 100%;
  height: 128px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.section__editor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 840px) {
  .section__editor-thumb {
    max-width: 96px;
    height: 96px;
  }
}
/* 投稿タグ */
.section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.section__tag-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 4px 12px;
  font-weight: 300;
  border: 1px solid var(--black-op);
}
.section__tag-link::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/icon-tag.svg) no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
}
@media screen and (max-width: 540px) {
  .section__tag-link {
    padding: 2px 8px;
  }
}

/* カテゴリー */
.taxonomy__list-insight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.taxonomy__list-insight li {
  width: calc((100% - 24px * 1) / 2);
}
.taxonomy__list-insight a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
/* キーワード・SNSリンク */
.section__sticky {
  position: sticky;
  top: calc(128px + 16px);
  display: flex;
  gap: 32px;
  flex-direction: column;
}
/* キーワードリスト */
.taxonomy__list--insight_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.taxonomy__list--insight_tags .taxonomy__item a.btn {
  padding: 4px 12px;
}
.taxonomy__list--insight_tags .taxonomy__item a.btn::after {
  display: none;
}
.sns {
  display: flex;
  gap: 32px;
}
.sns__link {
  display: flex;
  width: 32px;
  height: 32px;
}
.sns__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 840px) {
  .section__wrap--insight {
    flex-direction: column;
  }

  .taxonomy__list-insight li {
    width: calc((100% - 24px * 2) / 3);
  }
}
@media screen and (max-width: 540px) {
}

/**
 * ================================================================================
 * 個別 | トップページ
 * index.php
 * ================================================================================
 */
/**
 * fv
 * -------------------------------
 */

.home {
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  /* background-size: 125%; */
}

#fv {
  height: calc(100vh - 125px);
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 0;
}
#fv .section__wrap {
  padding-top: 94px;
  padding-bottom: 94px;
  max-width: inherit;
  gap: 0;
}
#fv .section__ttl {
  font-size: 60px;
  font-weight: 600;
  max-width: 1040px;
  width: 100%;
  margin-bottom: 12px;
}
#fv .section__ttl + .font_style--en {
  color: var(--black-op);
}

@media screen and (max-width: 840px) {
  #fv .section__ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  #fv .section__wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/**
 * about
 * -------------------------------
 */

#about .section__wrap {
  gap: 100px;
}
#about .section__header--about {
  gap: 0;
}

#about .section__header--about .section__ttl {
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--black-op);
}
#about .section__header--about .section__ttl::before {
  display: none;
}
#about .section__header--about p {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 840px) {
  #about .section__header--about p {
    font-size: 20px;
    line-height: 50px;
  }
}
@media screen and (max-width: 540px) {
  #about .section__header--about p {
    font-size: 18px;
    line-height: 36px;
  }
}
.section__body--about {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.about__block {
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border-color);
}
.about__block:first-child {
  padding-top: 0;
}
.about__block .section__ttl {
  align-items: self-start;
  flex-direction: row-reverse;
  gap: 6px;
  justify-content: flex-end;
  line-height: 1;
  margin-bottom: 24px;
}

.about__block .section__ttl::before {
  color: var(--black);
}
.font_style--about_key {
  font-size: 48px;
  font-weight: 500;
  line-height: 2;
}
.about__block .font_style--en {
  font-size: 12px;
  color: var(--black-op);
}
.about__item {
  margin-bottom: 24px;
}
.about__item:last-child {
  margin-bottom: 0;
}
.about__item .font_style--en.about__disc {
  border: none;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 48px;
  line-height: 2;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 0;
  margin-bottom: 0;
}
.about__item .font_style--en.about__disc::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
}
.about__item p {
  color: var(--black-op);
}

@media screen and (max-width: 540px) {
  .section__body--about {
    gap: 36px;
  }
  .about__block {
    padding-bottom: 36px;
  }
}

.section__body--solution {
  padding: 94px 80px;
  background-color: #fff;
}
.solution__list {
  display: flex;
  gap: 24px;
}
.solution__item {
/*   width: calc((100% - 24px * 2) / 3); */
  width: calc((100% - 24px * 1) / 2);
}
.solution__ttl {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--black);
}
.solution__text {
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .section__wrap--about {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .section__wrap--about .section__ttl {
    font-size: 20px;
  }
  .font_style--about_key,
  .about__item .font_style--en.about__disc {
    font-size: 32px;
  }
  .section__body--solution {
    padding: 48px 40px;
  }
  .solution__list {
    flex-direction: column;
    gap: 48px;
  }
  .solution__item {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .section__body--solution {
    padding: 48px 30px;
    margin: 0 -30px;
    width: calc(100% + 60px);
  }
  .font_style--about_key,
  .about__item .font_style--en.about__disc {
    gap: 16px;
    font-size: 20px;
    margin-bottom: 0;
  }
  .about__item .font_style--en.about__disc::before {
    width: 16px;
    height: 16px;
  }
  #solution .btn__group {
    padding: 0 30px;
  }
}

/**
 * ================================================================================
 * 個別 | 会社概要・メッセージ
 * company.php
 * ================================================================================
 */

.menber {
  display: flex;
  flex-wrap: wrap;
  gap: 68px;
}
.menber__card {
  width: calc((100% - 68px * 1) / 2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menber__namewrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menber__post {
  font-size: 12px;
  color: var(--black-op);
}
.menber__bio {
  font-size: 12px;
}
.menber__img {
  max-height: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.menber__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 840px) {
  .menber {
    gap: 40px;
  }
  .menber__card {
    width: calc((100% - 40px * 1) / 2);
  }
}

@media screen and (max-width: 540px) {
  .menber {
    flex-direction: column;
  }
  .menber__card {
    width: 100%;
  }
  .menber__img {
    text-align: center;
  }
  .menber__img img {
    width: 80%;
  }
}
