@charset "UTF-8";
/*
	Theme Name: ICT Solution ㈱ 専用テーマ（リニューアル）
	Version: 1.0.0
	Author: WEB企画パートナーズ
*/
/* 「全ページ共通クラス用Scssファイル」
===================================================
**「ファイル概要」
	全ページに共通して登場するクラスへの割り当て、CSS設計などを行います。
	※ヘッダー、フッター、フッターメニューなども含みます。※
**
====================================================== */
/* 『ブレイクポイント』
===================================================
	**
	ブレイクポイントは以下の通り３段階とする。
	・パソコン：1040px～
	・タブレット：769px～1039px
	・スマホ：0～768px
	※ブレイクポイント記述方法は、
		@media screen and (max-width: 1039px) {}
		@media screen and (max-width: 768px) {}
	とする。
	**
==================================================== */
.bp-sp_i, .bp-sp_ib, .bp-sp_b {
  display: none;
}

@media screen and (max-width: 767px) {
  .bp-pc {
    display: none;
  }
  .bp-sp_i {
    display: inline;
  }
  .bp-sp_ib {
    display: inline-block;
  }
  .bp-sp_b {
    display: block;
  }
}
/* 『基本要素のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	”ブラウザ毎のデフォルト設定をリセット”。
	余白関係：0にする
	リストスタイルの余白無し、接頭マーク無し
	画像ファイル：親要素の幅を超えない幅
	画像の下の空白を埋めるようにする
	**
==================================================== */
/* マージン初期化&ボックスサイジング */
body, h1, h2, h3, h4, h5, h6,
p, div, figure, ul, ol, li,
dl, dt, dd,
article, a, nav, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストスタイルのリセット */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* 画像ファイル：幅を大きく */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンクテキスト */
a {
  text-decoration: none;
  color: inherit;
}

a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 1259px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
/* 『フォーム部品のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	ブラウザ毎のデフォルト設定をリセット。
	・文字色とフォント：body要素を引き継ぐようにする
	・余白関係：0にする
	・枠線：無しにする
	・背景色：無しにする
	**
==================================================== */
/* 初期形状のリセット */
input:not([type=radio]), select, button, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none;
}

/* マウスオンでカーソル表示 */
input[type=submit],
input[type=button],
button {
  cursor: pointer;
}

/* 連絡先タグの文字スタイル */
address {
  font-style: normal;
}

/* テーブルタグのスタイル */
table {
  border-collapse: collapse;
  width: 100%;
}

/* フィールドセットタグのスタイル */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

/* ===================================================
	※※本サイトの採用フォントについて※※
	デフォルトはWEBフォントGoogleFontsのゴシック体の「NotoSansJP」

	《GoogleFonts》
	NotoSansJP(light:300 ~ black:900)
==================================================== */
/* ===================================================
	基本要素のCSS設定
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font: 500 1.6rem/1.875 "Noto Sans JP", sans-serif;
  color: #000;
  overflow-x: hidden;
}
body.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}
body.no-loaded {
  opacity: 0;
}

@media screen and (max-width: 1259px) {
  body {
    font-size: 1.4rem;
  }
}
/* 『フォーム部品CSS』
==================================================== */
/* テキスト */
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password],
textarea {
  padding: 0.5em 0.8em;
  width: 100%;
  background-color: #fff;
  border-radius: 0.4rem;
  border: none;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: inherit;
  color: inherit;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
}

select {
  border-radius: 0.4rem;
  padding: 0.5em 0.8em;
  width: 100%;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: inherit;
  color: inherit;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fff right 1.5rem center / 1.1rem 1.1rem url(./assets/img/icon-arrow07.png) no-repeat;
}

/* 送信ボタン */
input[type=submit],
button {
  height: 6rem;
  border-radius: 9999px;
  line-height: 6rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-family: inherit;
  padding: 0 5.6rem 0 3.6rem;
  background: #0096dc right 2rem center/2rem 2rem url(./assets/img/icon-arrow04.png) no-repeat;
  transition: opacity 300ms;
  font-size: 1.8rem;
}

input[type=submit]:hover {
  opacity: 0.7;
}

input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 60%;
  height: 32%;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}

input[type=checkbox]:checked {
  background-color: #0096dc;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

@media screen and (max-width: 1259px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  /* 送信ボタン */
  input[type=submit] {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.6rem;
  }
  input[type=submit]:hover {
    opacity: 1;
  }
}
/* 選択不可状態の付与クラス
	※非公開ページがある場合、メニューに当クラスを付与する
------------------------------------------------------ */
.noevents {
  opacity: 0.5;
  pointer-events: none;
}

/* ===================================================
	ページコンテンツ
====================================================== */
.contents-wrapper {
  display: flex;
  gap: 40px;
}

/* ===================================================
	ヘッダー header
====================================================== */
.global-header {
  position: sticky;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.global-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  height: 105px;
}
.global-header-top-text {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.global-header-logo-wrapper {
  display: flex;
  flex-direction: column;
}
.global-header-logo {
  margin-top: 4px;
  transition: opacity 300ms;
}
.global-header-logo:hover {
  opacity: 0.7;
}
.global-header-logo .logo {
  width: 214px;
}
.global-header-main-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  gap: 0 2em;
}
.global-header-main-menu-link {
  transition: opacity 300ms;
}
.global-header-main-menu-link:hover {
  opacity: 0.7;
}
.global-header-sub-menu-list {
  display: flex;
  gap: 0 2em;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.global-header-sub-menu-link {
  display: flex;
  align-items: center;
  gap: 0 0.4em;
  transition: opacity 300ms;
}
.global-header-sub-menu-link:hover {
  opacity: 0.7;
}
.global-header-sub-menu-link .arrow {
  width: 15px;
}
.global-header-tel {
  margin-left: 0.6em;
  font-weight: 700;
  font-size: 3.1rem;
  color: #0096dc;
  line-height: 1;
}
.global-header-tel-link {
  gap: 0 2px;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
}
.global-header-opentime {
  margin-left: 0.5em;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.global-header-opentime .small {
  font-size: 75%;
}
.global-header-sub-menu-wrapper {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.global-header-global-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 0 2.4em;
}
.global-header-other-link-wrapper {
  display: flex;
}
.global-header-other-link-guide {
  width: 180px;
}
.global-header-other-link-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em 0;
  width: 105px;
  height: 105px;
  background-color: #0096dc;
}
.global-header-other-link-contact .icon {
  width: 43px;
}
.global-header-other-link-contact-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
}
.global-header-other-link-guide, .global-header-other-link-contact {
  transition: opacity 300ms;
}
.global-header-other-link-guide:hover, .global-header-other-link-contact:hover {
  opacity: 0.7;
}
.global-header-hamburger-menu-block {
  display: none;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  background-color: #0096dc;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  cursor: pointer;
}
.global-header-hamburger-menu-wrap {
  width: 64px;
}
.global-header-hamburger-menu-wrap .icon {
  width: 100%;
}
.global-header-hamburger-menu-block:hover {
  opacity: 0.7;
}
.global-header-spmenu-wrapper {
  display: none;
  z-index: -10000;
  opacity: 0;
}
@keyframes openSpMenu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes closeSpMenu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.global-header-spmenu-wrapper.opened {
  opacity: 1;
  z-index: 10000;
  animation: openSpMenu 300ms;
}
.global-header-spmenu-wrapper.close-transition {
  animation: closeSpMenu 300ms;
}

@media screen and (max-width: 1259px) {
  .global-header-inner {
    height: 87.5px;
  }
  .global-header-top-text {
    font-size: 0.9rem;
  }
  .global-header-logo .logo {
    width: 180px;
  }
  .global-header-global-menu-wrapper {
    gap: 0 1.2em;
  }
  .global-header-main-menu-list {
    gap: 0 1em;
    font-size: 1.3rem;
  }
  .global-header-sub-menu-list {
    gap: 0 1em;
  }
  .global-header-other-link-guide {
    width: 150px;
  }
  .global-header-other-link-contact {
    width: 87.5px;
    height: 87.5px;
  }
  .global-header-other-link-contact .icon {
    width: 36px;
  }
  .global-header-other-link-contact-text {
    font-size: 1.1rem;
  }
  .global-header-tel {
    font-size: 2.5rem;
  }
  .global-header-opentime {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1020px) {
  .global-header-global-menu-wrapper {
    display: none;
  }
  .global-header-hamburger-menu-block {
    display: flex;
    width: 75px;
    height: 75px;
  }
  .global-header-hamburger-menu-wrap {
    width: 40px;
  }
  .global-header-spmenu-wrapper {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 20, 50, 0.94);
    color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    max-height: 100%;
  }
  .global-header-spmenu-head {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .global-header-spmenu-hamburger-block {
    position: fixed;
    right: 0;
    top: 0;
    width: 75px;
    height: 75px;
    background-color: #1e3250;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global-header-spmenu-hamburger-wrap {
    width: 40px;
  }
  .global-header-spmenu-hamburger-wrap .icon {
    width: 100%;
  }
  .global-header-spmenu-main-wrap {
    margin-top: 1rem;
    max-height: 100%;
    overflow: auto;
  }
  .global-header-spmenu-tel-wrap {
    padding: 2rem 1rem 1rem 1.5rem;
  }
  .global-header-spmenu-tel-wrap {
    display: flex;
    flex-direction: column;
  }
  .global-header-spmenu-tel {
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
    font: 700 4.2rem/1 "Roboto", sans-serif;
  }
  .global-header-spmenu-tel .icon {
    width: 2.8rem;
  }
  .global-header-spmenu-opentime {
    padding-left: 3.5rem;
    font-size: 1.4rem;
    line-height: 1;
  }
  .global-header-spmenu-opentime .time {
    font-size: 120%;
  }
  .global-header-spmenu-opentime .holiday {
    font-size: 90%;
  }
  .global-header-spmenu-other-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }
  .global-header-spmenu-other-block {
    width: -moz-max-content;
    width: max-content;
    height: 12rem;
  }
  .global-header-spmenu-other-block .image {
    width: auto;
    height: 100%;
  }
  .global-header-spmenu-list {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .global-header-spmenu-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .global-header-spmenu-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .global-header-spmenu-link {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.6rem;
  }
  .global-header-spmenu-sns-list {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    gap: 0 3rem;
  }
  .global-header-spmenu-sns-item {
    width: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .global-header-inner {
    height: 80px;
  }
  .global-header-global-menu-wrapper {
    display: none;
  }
  .global-header-spmenu-wrapper {
    width: 100%;
  }
  .global-header-spmenu-other-wrap {
    justify-content: center;
  }
  .global-header-spmenu-other-block {
    width: auto;
    height: auto;
  }
  .global-header-spmenu-other-block .image {
    height: auto;
  }
  .global-header-spmenu-other-block.pmguide {
    max-width: 21.5rem;
  }
  .global-header-spmenu-other-block.contact {
    max-width: 13.5rem;
  }
  .global-header-spmenu-list {
    font-size: 1.5rem;
  }
  .global-header-spmenu-link {
    height: 4.5rem;
  }
  .global-header-spmenu-item .arrow {
    width: 1.5rem;
  }
  .global-header-hamburger-menu-block {
    width: 65px;
    height: 65px;
  }
  .global-header-hamburger-menu-wrap {
    width: 30px;
  }
  .global-header-spmenu-head {
    height: 80px;
  }
  .global-header-spmenu-hamburger-block {
    width: 65px;
    height: 65px;
  }
  .global-header-spmenu-hamburger-wrap {
    width: 40px;
  }
  .global-header-spmenu-opentime {
    padding-left: 2.6rem;
    font-size: 1rem;
  }
  .global-header-spmenu-tel-wrap {
    padding: 0 0 0 1.5rem;
  }
  .global-header-spmenu-tel {
    font-size: 3.1rem;
  }
  .global-header-spmenu-tel .icon {
    width: 2.3rem;
  }
  .global-header-spmenu-sns-list {
    padding: 2rem 0;
  }
}
/* ===================================================
	フッター footer
====================================================== */
.global-footer {
  padding: 3.8rem 0;
  background-color: #001432;
  color: #fff;
}
.global-footer-logo-wrapper {
  text-align: center;
}
.global-footer-logo .logo {
  width: 214px;
  transition: opacity 300ms;
}
.global-footer-logo .logo:hover {
  opacity: 0.7;
}
.global-footer-address {
  margin-top: 0.8em;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.global-footer-hr {
  margin: 3.8rem 0;
  height: 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #142846;
}
.global-footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.global-footer-menu-item {
  width: 16.6666666667%;
}
.global-footer-menu-link {
  display: flex;
  align-items: center;
  gap: 0 0.4em;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 300ms;
}
.global-footer-menu-link:hover {
  opacity: 0.7;
}
.global-footer-menu-link .arrow {
  width: 15px;
}
.global-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global-footer-sns-list {
  display: flex;
  align-items: center;
  gap: 0 2.8rem;
}
.global-footer-sns-item {
  transition: opacity 300ms;
  border-radius: 50%;
  overflow: hidden;
}
.global-footer-sns-item:hover {
  opacity: 0.7;
}
.global-footer-sns-item .icon {
  width: 50px;
}
.global-footer-copyrights {
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1259px) {
  .global-footer-menu-item {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .global-footer-hr {
    display: none;
  }
  .global-footer-menu-list {
    margin: 1.5rem -15px;
    flex-direction: column;
    gap: 0;
    line-height: 1;
  }
  .global-footer-menu-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
  }
  .global-footer-menu-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .global-footer-menu-link {
    padding: 0 15px;
    width: auto;
    height: 4.5rem;
    transition: opacity 300ms;
    justify-content: space-between;
  }
  .global-footer-menu-link .text {
    order: -1;
  }
  .global-footer-menu-link:hover {
    opacity: 1;
  }
  .global-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
/* ===================================================
	フッター　コンバージョンエリア
====================================================== */
.footer-conversion-section {
  display: flex;
}
.footer-conversion-left {
  width: 58.75%;
}
.footer-conversion-right {
  width: 41.25%;
}
.footer-conversion-left, .footer-conversion-right {
  display: flex;
  flex-direction: column;
}
.footer-conversion-block {
  padding: 4.6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  flex-grow: 1;
  color: #fff;
  text-align: center;
}
.footer-conversion-block[href] {
  transition: opacity 300ms;
}
.footer-conversion-block[href]:hover {
  opacity: 0.8;
}
.footer-conversion-block .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.footer-conversion-block-entitle {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  line-height: 1;
}
.footer-conversion-block-title {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.375em;
}
.footer-conversion-block-description {
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1.8666666667em;
  position: relative;
}
.footer-conversion-block-description::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.75rem;
  width: 6rem;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%);
}
.footer-conversion-block-tel-wrapper {
  margin-top: 1.2rem;
}
.footer-conversion-block-tel {
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}
.footer-conversion-block-tel .link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0 0.2em;
  font-family: "Roboto", sans-serif;
  width: -moz-max-content;
  width: max-content;
}
.footer-conversion-block-tel .icon {
  width: 22px;
}
.footer-conversion-block-opentime {
  font-weight: 400;
  font-size: 1.2rem;
}
.footer-conversion-block-button-wrapper {
  margin-top: 2rem;
}
.footer-conversion-block-button {
  border: 1px solid #fff;
  border-radius: 9999px;
  margin: 0 auto;
  padding: 0.85em 6rem;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5em;
  font-size: 1.8rem;
  line-height: 1.5;
  transition: background-color 300ms;
}
.footer-conversion-block-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.footer-conversion-block .arrow {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 4rem;
}
.footer-conversion-block .book {
  position: absolute;
  left: 2rem;
  bottom: 0;
  width: 12.8rem;
}

@media screen and (max-width: 1259px) {
  .footer-conversion-section {
    display: block;
  }
  .footer-conversion-left {
    width: auto;
  }
  .footer-conversion-right {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer-conversion-block {
    padding: 3rem 0;
  }
  .footer-conversion-block-entitle {
    font-size: 3.9rem;
  }
  .footer-conversion-block-title {
    font-size: 1.4rem;
  }
  .footer-conversion-block-description {
    font-size: 1.3rem;
  }
  .footer-conversion-block .arrow {
    right: 1rem;
    bottom: 1rem;
  }
  .footer-conversion-block .book {
    left: 1rem;
    width: 19.2%;
  }
  .footer-conversion-block[href] {
    transition: none;
  }
  .footer-conversion-block[href]:hover {
    opacity: 1;
  }
  .footer-conversion-block-button {
    padding: 0.75em 6rem;
    gap: 0 0.5em;
    font-size: 1.6rem;
  }
  .footer-conversion-block-button:hover {
    background-color: white;
  }
}
/* ===================================================
	コンテナ⇒800px、1100px:large
====================================================== */
.container {
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (max-width: 1259px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
/* ===================================================
	セクションタイトル
====================================================== */
.section-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4.1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.25;
}
.section-title::before {
  content: "";
  width: 2rem;
  height: 0.3rem;
  background-color: #0096dc;
}
.section-title .ja {
  font-family: revert-layer;
  font-size: 39.0243902439%;
  transform: translateY(20%);
}
.section-title.white {
  color: #fff;
}
.section-title.white::before {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .section-title {
    padding-left: 2.7rem;
    flex-direction: column;
    align-items: flex-start;
    font-size: 3.1rem;
    gap: 0;
    line-height: 1.25;
    position: relative;
  }
  .section-title::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 2rem;
    height: 0.3rem;
  }
  .section-title .ja {
    font-size: 1.4rem;
    transform: none;
  }
}
/* ===================================================
	下層ページトップビジュアル
====================================================== */
.subpage-top-section {
  position: relative;
  height: 290px;
  display: flex;
  flex-direction: column;
}
.subpage-top-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
.subpage-top-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  width: 100%;
  line-height: 1;
}
.subpage-top-entitle {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #0096dc;
}
.subpage-top-title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
}
.subpage-top-breadcrumb-wrapper {
  flex-shrink: 0;
}

@media screen and (max-width: 1259px) {
  .subpage-top-section {
    height: 260px;
  }
  .subpage-top-entitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .subpage-top-section {
    height: 180px;
  }
  .subpage-top-entitle {
    font-size: 1.5rem;
  }
  .subpage-top-title {
    font-size: 2rem;
  }
}
/* ===================================================
	パンくずリスト
====================================================== */
.breadcrumb-list {
  padding: 1.2em 1.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.5;
  background-color: rgba(0, 20, 60, 0.3);
  color: #fff;
  gap: 0.5em 1.5em;
}
.breadcrumb-list-item a:hover {
  text-decoration: underline;
}
.breadcrumb-list-item:last-of-type a {
  pointer-events: none;
}
.breadcrumb-list-item:not(:first-of-type) {
  position: relative;
}
.breadcrumb-list-item:not(:first-of-type)::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -0.85em;
}

@media screen and (max-width: 767px) {
  .breadcrumb-list {
    padding: 0.6em 1em;
    font-size: 1.2rem;
  }
}
/* ===================================================
	ページ全体
====================================================== */
.main-contents {
  overflow: hidden;
}
.page-top .main-contents {
  background-color: #f2f6fa;
}

/* ===================================================
	ページネーション(WPテンプレタグを使用)
====================================================== */
.pagination-section {
  margin: 4rem 0;
}
.pagination-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3rem;
}
.pagination-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1.2em;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 0 2rem;
  height: 5rem;
  color: #0096dc;
  transition: opacity 300ms;
  border: 1px solid #0096dc;
  border-radius: 9999px;
}
.pagination-button.prev {
  padding-right: 4rem;
}
.pagination-button.next {
  padding-left: 4rem;
}
.pagination-button:hover {
  opacity: 0.5;
}
.pagination-button:not([href]) {
  pointer-events: none;
  opacity: 0;
}
.pagination-content .nav-links {
  display: flex;
  justify-content: center;
  gap: 0 1rem;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  line-height: 1;
}
.pagination-content .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 5rem;
  box-sizing: border-box;
  font-size: 2.2rem;
  background-color: #c8dcec;
  line-height: 1;
  border-radius: 9999px;
  transition: opacity 300ms;
}
.pagination-content .page-numbers:hover {
  opacity: 0.7;
}
.pagination-content .current {
  background-color: #0096dc;
  color: #fff;
  pointer-events: none;
}
.pagination-content .dots {
  width: auto;
  height: auto;
  background-color: transparent;
  color: #0096dc;
  font-size: 4rem;
  pointer-events: none;
}
.pagination-link-button {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .pagination-content {
    justify-content: space-between;
    gap: 0 1rem;
  }
  .pagination-content .page-numbers {
    width: 4rem;
    height: 3.5rem;
    font-size: 1.6rem;
    transition: none;
  }
  .pagination-content .page-numbers:hover {
    opacity: 1;
  }
  .pagination-button {
    padding: 0 1rem !important;
    height: 4.2rem;
    transition: none;
  }
  .pagination-button:hover {
    opacity: 1;
  }
}
/* ===================================================
	リンクボタン
====================================================== */
.link-button {
  display: inline-block;
  border: 1px solid #0096dc;
  background-color: #0096dc;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: calc(6rem - 2px);
  height: 6rem;
  border-radius: 9999px;
  padding: 0 1em;
  min-width: 340px;
  transition: opacity 300ms;
  background: #0096dc center right 2rem/2rem 2rem url(./assets/img/icon-arrow04.png) no-repeat;
}
.link-button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .link-button {
    font-size: 1.5rem;
    line-height: calc(5rem - 2px);
    height: 5rem;
    min-width: 290px;
    background-position: right 1rem top 50%;
  }
}
/* ===================================================

====================================================== */
/* ===================================================
****
トップページ用CSS
****
====================================================== */
/* ===================================================
    メインビジュアル
====================================================== */
.mv-section {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.mv-inner {
  height: calc(100vh - 105px);
  position: relative;
}
.mv-text-wrap {
  margin: 0 auto;
  padding: 0 5rem;
  max-width: 154rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.79);
}
.mv-title {
  font: 700 9.9rem/1 "Roboto", sans-serif;
  color: #0096dc;
}
.mv-subtitle {
  font: 700 7.1rem/1 "Roboto", sans-serif;
}
.mv-description {
  margin-top: 1rem;
  font-size: 3.2rem;
  line-height: 1.4375em;
}
.mv-emblem-wrap {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}
.mv-bg-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 90px);
}
.mv-bg-frame {
  margin-left: auto;
  width: calc(75% - 50px + 12.5%);
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(250px 100%, 0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(250px 100%, 0% 0%, 100% 0%, 100% 100%);
}
.mv-bg-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.mv-scroll-down-wrap {
  position: absolute;
  left: 1.8rem;
  bottom: 1.8rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem 0;
}
.mv-scroll-down-wrap .text {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}
.mv-scroll-down-wrap .arrow-wrap {
  align-self: flex-end;
  display: inline-block;
  height: 9rem;
}
@keyframes mv_sd_arrow {
  0% {
    height: 0;
    opacity: 1;
  }
  60% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
.mv-scroll-down-wrap .arrow {
  display: block;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform-origin: left bottom;
  transform: translateX(-1px) skewY(-45deg);
  width: 0.75rem;
  animation: mv_sd_arrow 1600ms infinite;
}

@media screen and (max-width: 1259px) {
  .mv-inner {
    height: calc(100vh - 90px);
  }
  .mv-title {
    font-size: 7rem;
  }
  .mv-subtitle {
    font-size: 5rem;
  }
  .mv-description {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-inner {
    height: 265px;
  }
  .mv-bg-wrap {
    height: calc(100% + 45px);
  }
  .mv-bg-frame {
    margin-left: auto;
    width: calc(100% - 10px);
    -webkit-clip-path: polygon(32% 100%, 0% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(32% 100%, 0% 0%, 100% 0%, 100% 100%);
  }
  .mv-bg-frame img {
    -o-object-position: left center;
       object-position: left center;
  }
  .mv-text-wrap {
    padding: 0 2.5rem;
  }
  .mv-title {
    font-size: 3.5rem;
  }
  .mv-subtitle {
    font-size: 3.2rem;
  }
  .mv-description {
    font-size: 1.7rem;
  }
  .mv-scroll-down-wrap {
    left: 0.4rem;
    bottom: -0.5rem;
    gap: 1rem 0;
  }
  .mv-emblem-wrap {
    width: 10rem;
    right: 1.5rem;
    bottom: -0.5rem;
  }
}
/* ===================================================
	企業ロゴ一覧セクション
====================================================== */
.front-company-logo-section {
  margin: 4rem 0;
  background-color: #f2f6fa;
}
.front-company-logo-section:not(:has(.front-company-logo-content)) {
  margin: 15rem 0;
}
.front-company-logo-inner {
  position: relative;
  z-index: 2;
}
.front-company-logo-list {
  transition-timing-function: linear;
}
.front-company-logo-item {
  width: 22rem;
  height: 9rem;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.front-company-logo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 767px) {
  .front-company-logo-section {
    margin: 2rem 0;
  }
  .front-company-logo-section:not(:has(.front-company-logo-content)) {
    margin: 8rem 0;
  }
  .front-company-logo-item {
    width: 11rem;
    height: 4.5rem;
  }
}
/* ===================================================
	トップページ：Service記事一覧
====================================================== */
.front-service-section {
  margin: 4rem 0 8rem;
}
.front-service-content {
  margin-top: 2rem;
}
.front-service-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.front-service-articles-item {
  width: calc((100% - 6rem) / 4);
  height: auto;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  transition: opacity 300ms;
}
.front-service-articles-item:hover {
  opacity: 0.7;
}
.front-service-articles-item-text {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-image: linear-gradient(0deg, rgba(0, 20, 50, 0.6) 0%, transparent 100%);
}
.front-service-articles-item-head {
  aspect-ratio: 245/170;
}
.front-service-articles-item-title {
  display: flex;
  gap: 0.5rem;
  font-size: 1.7rem;
  line-height: 1.2;
}
.front-service-articles-item-title .arrow {
  width: 2rem;
}
.front-service-articles-item-excerpt {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.6923076923em;
}
@media screen and (max-width: 1259px) {
  .front-service-articles-item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .front-service-articles-list {
    flex-wrap: initial;
    gap: 0;
  }
  .front-service-articles-item {
    width: 25rem;
  }
  .front-service-articles-item-text {
    padding: 1.5rem;
  }
  .front-service-articles-item-title {
    gap: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .front-service-articles-item-title .arrow {
    width: 2rem;
  }
  .front-service-articles-item-excerpt {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.6923076923em;
  }
}
/* ===================================================
	トップページ：私たちが選ばれる理由
====================================================== */
.front-strengths-section {
  margin: 8rem 0;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}
.front-strengths-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-strengths-inner {
  color: #fff;
}
.front-strengths-entitle {
  font: 700 6.2rem/1 "Roboto", sans-serif;
  text-align: center;
}
.front-strengths-title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
}
.front-strengths-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  width: 6rem;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%);
}
.front-strengths-content {
  margin-top: 4rem;
}
.front-strengths-block {
  display: flex;
  gap: 4rem;
}
.front-strengths-block-text {
  width: 610px;
  flex-shrink: 0;
}
.front-strengths-block-title {
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
  line-height: 1.5em;
}
.front-strengths-block-description {
  font-size: 1.5rem;
  line-height: 1.8666666667em;
}
.front-strengths-block-description:not(:last-child) {
  margin-bottom: 1em;
}
.front-strengths-block-image {
  flex-grow: 1;
  margin-right: calc((100vw - 100%) / 2 * -1);
}
.front-strengths-block-image .image {
  width: 100%;
}
.front-strengths-button-wrap {
  margin-top: 4rem;
  text-align: center;
}
.front-strengths-button-wrap .link-button {
  background-color: transparent;
  border-color: #fff;
  position: relative;
}
.front-strengths-button-wrap .link-button:hover {
  opacity: 1;
}
.front-strengths-button-wrap .link-button::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 300ms;
}
.front-strengths-button-wrap .link-button:hover::after {
  opacity: 1;
}

@media screen and (max-width: 1259px) {
  .front-strengths-block {
    gap: 2rem;
    flex-direction: column;
  }
  .front-strengths-block-text {
    width: auto;
  }
  .front-strengths-block-image {
    margin-right: 0;
    width: auto;
    order: -1;
  }
}
@media screen and (max-width: 767px) {
  .front-strengths-section {
    margin: 4rem 0;
    padding: 5rem 0;
  }
  .front-strengths-entitle {
    font-size: 3.1rem;
  }
  .front-strengths-title {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .front-strengths-title::after {
    width: 4rem;
    height: 2px;
  }
  .front-strengths-block-title {
    margin-bottom: 1.6rem;
    font-size: 2.3rem;
    line-height: 1.3913043478em;
  }
  .front-strengths-block-description {
    font-size: 1.3rem;
    line-height: 1.6153846154em;
  }
}
/* ===================================================
	トップページ：Assignment
====================================================== */
.front-assignment-section {
  margin: 8rem 0;
}
.front-assignment-content {
  margin-top: 2rem;
}
.front-assignment-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.front-assignment-articles-list .service-purpose-archive-articles-item {
  width: calc((100% - 8rem) / 5);
}

@media screen and (max-width: 1259px) {
  .front-assignment-articles-list .service-purpose-archive-articles-item {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .front-assignment-section {
    margin: 3rem 0 4rem;
  }
  .front-assignment-articles-list {
    gap: 1.5rem;
  }
  .front-assignment-articles-list .service-purpose-archive-articles-item {
    width: calc(50% - 0.75rem);
  }
}
/* ===================================================
	トップページ：Case Study
====================================================== */
.front-case-section {
  padding: 7rem 0 8rem;
  background-color: #fff;
}
.front-case-content {
  margin-top: 3rem;
}
.front-case-articles-item {
  border-top: 1px solid #dae2e8;
  padding: 4rem 0;
}
.front-case-articles-item:last-child {
  border-bottom: 1px solid #dae2e8;
}
.front-case-articles-item-body {
  display: flex;
  gap: 4rem;
}
.front-case-articles-item-image {
  width: 580px;
  flex-shrink: 0;
  position: relative;
}
.front-case-articles-item-image {
  width: 580px;
  flex-shrink: 0;
  position: relative;
}
.front-case-articles-item-image:not(:has(img)) {
  background-color: #999;
  aspect-ratio: 440/320;
}
.front-case-articles-item-image img {
  width: 100%;
}
.front-case-articles-item-text {
  flex-grow: 1;
}
.front-case-articles-item-category {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0096dc;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.93em 1.2em;
  line-height: 1;
  border-radius: 0 0 1.2rem 0;
}
.front-case-articles-item-text-head {
  padding-left: 1.6rem;
  border-left: 3px solid #0096dc;
}
.front-case-articles-item-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
}
.front-case-articles-item-company {
  font-size: 1.3rem;
  line-height: 1.54;
}
.front-case-articles-item-table-wrap {
  margin-top: 2rem;
}
.front-case-articles-item-table {
  width: 100%;
}
.front-case-articles-item-table th, .front-case-articles-item-table td {
  border: 1px solid #dae2e8;
  padding: 0.65em 1em;
  line-height: 1.5;
}
.front-case-articles-item-table th {
  width: 18rem;
  text-align: left;
  background-color: #f2faff;
  font-size: 1.4rem;
  box-sizing: border-box;
}
.front-case-articles-item-table td {
  font-size: 1.3rem;
}
.front-case-articles-item-content {
  margin-top: 2rem;
}
.front-case-articles-item-content-heading {
  font-size: 1.5rem;
  color: #0096dc;
  line-height: 1.5;
}
.front-case-articles-item-content-list {
  font-size: 1.3rem;
}
.front-case-articles-item-content-item {
  padding-left: 1.5rem;
  position: relative;
}
.front-case-articles-item-content-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.8rem;
  height: 0.8rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #0096dc;
}
.front-case-articles-item-link-wrap {
  margin-top: 2rem;
  padding: 1rem 0;
  background-color: #f2faff;
  text-align: center;
}
.front-case-articles-item-link-wrap .link-button {
  background-color: transparent;
  color: #0096dc;
  background-image: url(./assets/img/icon-arrow01.png);
  height: 5rem;
  line-height: calc(5rem - 2px);
  font-size: revert-layer;
}
.front-case-button-wrap {
  margin-top: 4rem;
  text-align: center;
}

@media screen and (max-width: 1259px) {
  .front-case-articles-item-body {
    gap: 2rem;
    flex-direction: column;
  }
  .front-case-articles-item-image {
    width: auto;
  }
  .front-case-articles-item-image:not(:has(img)) {
    aspect-ratio: 690/480;
  }
  .front-case-articles-item-text {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .front-case-section {
    padding: 3.5rem 0 4rem;
  }
  .front-case-content {
    margin-top: 2rem;
  }
  .front-case-articles-item {
    padding: 2rem 0;
  }
  .front-case-articles-item-title {
    font-size: 1.9rem;
  }
  .front-case-articles-item-company {
    font-size: 1.2rem;
  }
  .front-case-articles-item-table th {
    width: 9rem;
  }
  .front-case-articles-item-content-list {
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
  }
  .front-case-articles-item-content-item::before {
    top: 0.3em;
  }
  .front-case-articles-item-link-wrap .link-button {
    height: 4rem;
    line-height: calc(4rem - 2px);
    font-size: 1.4rem;
  }
}
/* ===================================================
	トップページ：Consultant
====================================================== */
.front-consultant-section {
  padding: 7rem 0 20rem;
  position: relative;
  z-index: 1;
}
.front-consultant-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-consultant-content {
  margin-top: 2rem;
}
.front-consultant-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.front-consultant-articles-item {
  width: calc((100% - 6rem) / 4);
  position: relative;
}
.front-consultant-articles-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 300ms;
}
.front-consultant-articles-item:hover::after {
  opacity: 1;
}
.front-consultant-articles-item-image {
  aspect-ratio: 285/330;
  overflow: hidden;
}
.front-consultant-articles-item-image:not(:has(img)) {
  background-color: #999;
}
.front-consultant-articles-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-consultant-articles-item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  min-width: 22rem;
  padding: 0.55em 1em;
  font-size: 1.7rem;
  background: #fff center right 1rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
}
.front-consultant-button-wrap {
  margin-top: 4rem;
  text-align: center;
}
.front-consultant-button-wrap .link-button {
  position: relative;
}
.front-consultant-button-wrap .link-button:hover {
  opacity: 1;
}
.front-consultant-button-wrap .link-button::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 300ms;
  border-radius: 9999px;
}
.front-consultant-button-wrap .link-button:hover::after {
  opacity: 1;
}

@media screen and (max-width: 1259px) {
  .front-consultant-articles-item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .front-consultant-section {
    padding: 3rem 0 14rem;
  }
  .front-consultant-articles-list {
    flex-wrap: initial;
    gap: 0;
  }
  .front-consultant-articles-item {
    width: 25rem;
  }
}
/* ===================================================
	トップページ：Seminar
====================================================== */
.front-seminar-section {
  margin: -14rem 0 7rem;
  position: relative;
  z-index: 1;
}
.front-seminar-block {
  display: flex;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.front-seminar-block-image, .front-seminar-block-text {
  width: 50%;
}
.front-seminar-block-image {
  overflow: hidden;
}
.front-seminar-block-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-seminar-block-text {
  display: flex;
  flex-direction: column;
  padding: 4rem 4.5rem 5rem;
}
.front-seminar-block-title {
  margin-bottom: 1.4rem;
  border-left: 3px solid #0096dc;
  padding-left: 1rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}
.front-seminar-block-description {
  font-size: 1.5rem;
  line-height: 1.8666666667em;
  margin-bottom: 1em;
}
.front-seminar-block-button-wrap {
  margin-top: auto;
}
.front-seminar-block-button-wrap .link-button {
  background-color: transparent;
  color: #0096dc;
  background-image: url(./assets/img/icon-arrow01.png);
  font-size: revert-layer;
  height: 5rem;
  line-height: calc(5rem - 2px);
}

@media screen and (max-width: 1259px) {
  .front-seminar-block {
    flex-direction: column;
  }
  .front-seminar-block-image, .front-seminar-block-text {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .front-seminar-section {
    margin: -10rem 0 3.5rem;
  }
  .front-seminar-block-text {
    padding: 2rem 2rem 3rem;
  }
  .front-seminar-block-title {
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .front-seminar-block-description {
    font-size: 1.3rem;
    line-height: 1.6153846154em;
    margin-bottom: 1em;
  }
  .front-seminar-block-button-wrap {
    margin-top: 1.4rem;
    text-align: center;
  }
  .front-seminar-block-button-wrap .link-button {
    height: 4rem;
    line-height: calc(4rem - 2px);
    font-size: 1.4rem;
  }
}
/* ===================================================
	トップページ：Column
====================================================== */
.front-column-section {
  margin: 7rem 0 8rem;
}
.front-column-content {
  margin-top: 2rem;
}
.front-column-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.front-column-articles-item {
  width: calc((100% - 6rem) / 3);
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 300ms;
  display: flex;
  flex-direction: column;
}
.front-column-articles-item:hover {
  opacity: 0.7;
}
.front-column-articles-item-image {
  aspect-ratio: 380/250;
  overflow: hidden;
  flex-shrink: 0;
}
.front-column-articles-item-image:not(:has(img)) {
  background-color: #999;
}
.front-column-articles-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-column-articles-item-text {
  padding: 1.6rem 2.4rem 2.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.front-column-articles-item-categories {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #0096dc;
}
.front-column-articles-item-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.333;
}
.front-column-articles-item-date {
  margin-top: auto;
  font-size: 1.3rem;
  line-height: 1.5;
}
.front-column-button-wrap {
  margin-top: 4rem;
  text-align: center;
}

@media screen and (max-width: 1259px) {
  .front-column-articles-list {
    gap: 2rem;
  }
  .front-column-articles-item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .front-column-section {
    margin: 3.5rem 0 4rem;
  }
  .front-column-articles-list {
    gap: 1rem;
  }
  .front-column-articles-item {
    width: calc(50% - 0.5rem);
    transition: none;
  }
  .front-column-articles-item:hover {
    opacity: 1;
  }
  .front-column-articles-item-text {
    padding: 1rem 1.5rem 1.2rem;
  }
  .front-column-articles-item-categories {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  .front-column-articles-item-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2666666667em;
  }
  .front-column-articles-item-date {
    font-size: 1.1rem;
  }
  .front-column-button-wrap {
    margin-top: 2rem;
  }
}
/* ===================================================
	トップページ：書籍のご紹介
====================================================== */
.front-document-section {
  margin: 8rem 0;
}
.front-document-block {
  display: flex;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.front-document-block-text {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  flex-grow: 1;
}
.front-document-block-title {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.2;
  padding-left: 0.5em;
  border-left: 3px solid #0096dc;
}
.front-document-block-description {
  margin-bottom: 1em;
  font-size: 1.5rem;
  line-height: 1.8666666667em;
}
.front-document-block-button-wrap {
  margin-top: auto;
}
.front-document-block-button-wrap .link-button {
  height: 5rem;
  line-height: calc(5rem - 2px);
  background-color: transparent;
  color: #0096dc;
  font-size: revert-layer;
  background-image: url(./assets/img/icon-arrow01.png);
}
.front-document-block-image {
  width: 320px;
  flex-shrink: 0;
}
@media screen and (max-width: 1259px) {
  .front-document-block {
    flex-direction: column;
  }
  .front-document-block-image {
    width: 100%;
    order: -1;
  }
  .front-document-block-image .image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .front-document-section {
    margin: 4rem 0;
  }
  .front-document-block-text {
    padding: 2rem 2rem 3rem;
  }
  .front-document-block-title {
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .front-document-block-description {
    font-size: 1.3rem;
    line-height: 1.6153846154em;
    margin-bottom: 1em;
  }
  .front-document-block-button-wrap {
    margin-top: 1.4rem;
    text-align: center;
  }
  .front-document-block-button-wrap .link-button {
    background-color: transparent;
    color: #0096dc;
    background-image: url(./assets/img/icon-arrow01.png);
    font-size: revert-layer;
    height: 4rem;
    line-height: calc(4rem - 2px);
    font-size: 1.4rem;
  }
}
/* ===================================================

====================================================== */
/* ===================================================

====================================================== */
/* ===================================================
****
アーカイブ一覧・個別記事用CSS
****
====================================================== */
/* ===================================================
    サービス記事一覧：サービスカテゴリー
====================================================== */
.service-archive-articles-list {
  display: flex;
  flex-wrap: wrap;
  margin: 8rem 0;
  gap: 6rem 2rem;
}
.service-archive-articles-item {
  width: calc((100% - 6rem) / 4);
  display: flex;
  flex-direction: column;
  height: auto;
}
.service-archive-articles-image {
  aspect-ratio: 285/250;
  overflow: hidden;
}
.service-archive-articles-image:not(:has(img)) {
  background-color: #999;
  position: relative;
}
.service-archive-articles-image:not(:has(img))::after {
  content: "サムネ未設定";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.service-archive-articles-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-archive-articles-text {
  padding: 1em 1.25em;
  background-color: #fff;
  flex-grow: 1;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.service-archive-articles-title {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333em;
}
.service-archive-articles-excerpt {
  margin-bottom: 1rem;
}
.service-archive-articles-link {
  margin-top: auto;
  text-align: center;
}
.service-archive-articles-link-button {
  border-radius: 9999px;
  border: 1px solid #0096dc;
  color: #0096dc;
  padding: 1em 6rem 1em 3rem;
  background: #fff center right 2rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
  line-height: 1;
  display: inline-block;
  transition: opacity 300ms;
}
.service-archive-articles-link-button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1259px) {
  .service-archive-articles-list {
    margin: 6rem 0;
    gap: 2rem;
  }
  .service-archive-articles-item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .service-archive-articles-list {
    margin: 4rem 0;
    flex-direction: column;
    gap: 2rem;
  }
  .service-archive-articles-list.swiper-wrapper {
    gap: 0;
    flex-wrap: initial;
  }
  .service-archive-articles-item {
    width: auto;
  }
  .service-archive-articles-item.swiper-slide {
    width: 25rem;
  }
  .service-archive-articles-text {
    padding: 1em;
  }
}
/* ===================================================
    サービス記事一覧：目的・課題別カテゴリー
====================================================== */
.service-purpose-archive-articles-list {
  margin: 3rem 0;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.service-purpose-archive-articles-item {
  position: relative;
  transition: opacity 300ms;
  width: calc((100% - 12rem) / 4);
}
.service-purpose-archive-articles-item:hover {
  opacity: 0.7;
}
.service-purpose-archive-articles-image {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.service-purpose-archive-articles-image:not(:has(img)) {
  width: 100%;
  background-color: #999;
}
.service-purpose-archive-articles-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-purpose-archive-articles-text {
  margin: 0 2rem;
  padding: 0.9em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 4rem);
  min-height: 4.5692307692em;
  border-radius: 1.2rem;
  background-color: #0096dc;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3846153846em;
  text-align: center;
  position: absolute;
}
.service-purpose-archive-articles-text::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  border-style: solid;
  border-width: 0.8rem 0.7rem 0;
  border-color: #0096dc transparent;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .service-purpose-archive-articles-list {
    margin: 3rem 0;
    gap: 2rem;
  }
  .service-purpose-archive-articles-item {
    transition: none;
    width: calc(50% - 1rem);
  }
  .service-purpose-archive-articles-item:hover {
    opacity: 1;
  }
  .service-purpose-archive-articles-text {
    border-radius: 0.9rem;
    font-size: 1rem;
    line-height: 1.3em;
  }
}
/* ===================================================
	ケーススタディ記事一覧
====================================================== */
.case-archive-articles-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.case-archive-articles-item {
  display: flex;
  gap: 0 6rem;
}
.case-archive-articles-text {
  flex: auto 1 1;
}
.case-archive-articles-title {
  font-weight: 700;
  font-size: 2.4rem;
}
.case-archive-articles-excerpt {
  margin-top: 2rem;
}
.case-archive-articles-image {
  flex: 480px 0 0;
}
.case-archive-articles-image-frame:not(:has(img)) {
  background-color: #999;
  position: relative;
  height: 300px;
}
.case-archive-articles-image-frame:not(:has(img))::after {
  content: "サムネ未設定";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.case-archive-articles-image-frame img {
  width: 100%;
}
.case-archive-articles-link-wrapper {
  margin-top: 1em;
}
.case-archive-articles-link {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid #0096dc;
  line-height: 1;
  color: #0096dc;
  padding: 1em 7.2rem 1em 3.2rem;
  background: #fff center right 2rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
  transition: opacity 300ms;
}
.case-archive-articles-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .case-archive-articles-list {
    gap: 6rem;
  }
  .case-archive-articles-item {
    flex-direction: column;
    gap: 1rem;
  }
  .case-archive-articles-text {
    flex: auto 1 1;
  }
  .case-archive-articles-title {
    font-size: 1.9rem;
  }
  .case-archive-articles-image {
    order: -1;
    flex: auto 0 0;
  }
  .case-archive-articles-link-wrapper {
    text-align: center;
  }
}
/* ===================================================
	ケーススタディカテゴリーリスト
====================================================== */
.case-archive-categories-block {
  margin: 6rem 0;
  border: 1px solid #d2e0f0;
  background-color: #f2faff;
  padding: 1rem 3rem 2rem;
}
.case-archive-categories-block-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #0096dc;
  margin-bottom: 1.2rem;
}
.case-archive-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.case-archive-categories-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 0 2rem;
  width: calc((100% - 2rem) / 3);
  height: 5rem;
  transition: opacity 300ms;
  line-height: 1.25;
}
.case-archive-categories-item.current {
  background-color: #0096dc;
  color: #fff;
  pointer-events: none;
}
.case-archive-categories-item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .case-archive-categories-block {
    margin: 4rem 0;
    padding: 1rem 1.5rem 1.5rem;
  }
  .case-archive-categories-block-title {
    font-size: 2rem;
  }
  .case-archive-categories-item {
    padding: 0 1rem;
    gap: 0.5rem;
    width: calc(50% - 1rem);
    transition: none;
  }
}
/* ===================================================
	ケーススタディ記事詳細
====================================================== */
.case-single-categories {
  font-size: 2rem;
}
.case-single-thumbnail {
  margin: 2rem 0 0;
}
.case-single-header {
  margin: 2em 0;
}
/* ===================================================
	用語集カテゴリーリスト
====================================================== */
.dictionary-archive-categories-block {
  margin: 6rem 0;
  border: 1px solid #d2e0f0;
  background-color: #f2faff;
  padding: 1rem 3rem 2rem;
}
.dictionary-archive-categories-block-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #0096dc;
  margin-bottom: 1.2rem;
}
.dictionary-archive-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.dictionary-archive-categories-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 0 1rem 0 1.4rem;
  width: calc((100% - 9rem) / 10);
  height: 5rem;
  line-height: 1.2;
  transition: opacity 300ms;
}
.dictionary-archive-categories-item.current {
  background-color: #0096dc;
  color: #fff;
  pointer-events: none;
}
.dictionary-archive-categories-item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .dictionary-archive-categories-block {
    margin: 4rem 0;
    padding: 1rem 1.5rem 1.5rem;
  }
  .dictionary-archive-categories-block-title {
    font-size: 2rem;
  }
  .dictionary-archive-categories-item {
    padding: 0 1rem 0 1.4rem;
    width: calc((100% - 2rem) / 3);
    height: 5rem;
    transition: none;
  }
  .dictionary-archive-categories-item:hover {
    opacity: 1;
  }
}
/* ===================================================
	用語集記事一覧
====================================================== */
.dictionary-archive-article-section {
  margin: 6rem 0;
}
.dictionary-archive-article-table th, .dictionary-archive-article-table td {
  border: 1px solid #d2e0f0;
  vertical-align: top;
}
.dictionary-archive-article-table tbody th {
  width: 100px;
  background-color: #0096dc;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 1.6rem 2rem;
}
.dictionary-archive-article-table tbody td {
  padding: 0.5rem 1rem 0.5rem 2rem;
  height: 100%;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.dictionary-archive-article-table tbody td a {
  margin: 0 1em;
  font-size: 1.4rem;
  text-decoration: underline;
  position: relative;
}
.dictionary-archive-article-table tbody td a::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 0.75em;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #0096dc;
  pointer-events: none;
}
.dictionary-archive-article-table tbody td a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .dictionary-archive-article-table tbody th {
    width: 80px;
    padding: 1.6rem 1rem;
  }
  .dictionary-archive-article-table tbody td {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
}
/* ===================================================
	コラム記事一覧
====================================================== */
.news-archive-article-list {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
}
.news-archive-article-item {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  padding: 2rem 5rem 2rem 0.8rem;
  transition: opacity 300ms;
  letter-spacing: 0.04em;
  background-color: #fff;
  position: relative;
}
.news-archive-article-item-wrap {
  border-top: 1px solid #dae2e8;
}
.news-archive-article-item-wrap:last-child {
  border-bottom: 1px solid #dae2e8;
}
.news-archive-article-item:hover {
  opacity: 0.7;
}
.news-archive-article-date {
  align-self: flex-start;
  line-height: 1.3;
}
.news-archive-article-date time {
  font-weight: 400;
  font-size: 1.2rem;
}
.news-archive-article-categories {
  padding-top: 0.1em;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}
.news-archive-article-category {
  padding: 0.3em;
  border: 1px solid #0096dc;
  border-radius: 4px;
  background-color: #fff;
  color: #0096dc;
  font-size: 1.2rem;
  line-height: 1;
}
.news-archive-article-title {
  flex-grow: 1;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.news-archive-article-item .arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .news-archive-article-item {
    flex-wrap: wrap;
    padding: 1rem 4rem 1rem 0.8rem;
    transition: none;
  }
  .news-archive-article-item:hover {
    opacity: 1;
  }
  .news-archive-article-title {
    margin-top: 0.5rem;
    width: 100%;
    height: auto;
    display: block;
    -webkit-box-orient: initial;
    -webkit-line-clamp: initial;
  }
}
/* ===================================================
	サイドバーブロック
====================================================== */
.sidebar-block {
  border: 1px solid #d2e0f0;
  background-color: #f2faff;
}
.sidebar-block-title {
  padding: 0.6em 0.7em;
  font-weight: 700;
  font-size: 2.4rem;
  color: #0096dc;
  line-height: 1;
  border-bottom: 3px solid #0096dc;
}
.sidebar-block-list {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.sidebar-block-item {
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.sidebar-block-item-link {
  display: flex;
  transition: opacity 300ms;
}
.sidebar-block-item-link:hover {
  opacity: 0.7;
}
.sidebar-block-item-thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 10rem;
  flex-shrink: 0;
}
.sidebar-block-item-thumbnail:not(:has(img)) {
  background-color: #999;
}
.sidebar-block-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sidebar-block-item-text {
  flex-grow: 1;
  padding: 0.2em 4rem 0.2em 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 5rem;
}
.sidebar-block-item:has(.sidebar-block-item-thumbnail) .sidebar-block-item-text {
  padding: 0.6em 4rem 0.6em 1.4rem;
  min-height: auto;
}
.sidebar-block-item-text .arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}
.sidebar-block-item-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
.sidebar-block-item:has(.sidebar-block-item-thumbnail) .sidebar-block-item-title {
  height: 5.3333333333em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.3333333333em;
}

/* ===================================================
	コンサルタント記事一覧
====================================================== */
.staff-archive-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.staff-archive-articles-item {
  width: calc((100% - 6rem) / 3);
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
}
.staff-archive-articles-item-thumbnail {
  aspect-ratio: 380/250;
  overflow: hidden;
  flex-shrink: 0;
}
.staff-archive-articles-item-thumbnail:not(:has(img)) {
  background-color: #999;
}
.staff-archive-articles-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.staff-archive-articles-item-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 5rem 3rem;
  text-align: center;
}
.staff-archive-articles-item-title {
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: #0096dc;
}
.staff-archive-articles-item-position {
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
  line-height: 1.5714285714em;
}
.staff-archive-articles-item-link-wrap {
  margin-top: auto;
}
.staff-archive-articles-item-link {
  color: #0096dc;
  border-radius: 9999px;
  border: 1px solid #0096dc;
  color: #0096dc;
  padding: 1em 3rem;
  background: #fff center right 2rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
  line-height: 1;
  display: block;
  transition: opacity 300ms;
}
.staff-archive-articles-item-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1259px) {
  .staff-archive-articles-list {
    gap: 2rem;
  }
  .staff-archive-articles-item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .staff-archive-articles-list {
    gap: 2rem;
    flex-direction: column;
    flex-wrap: initial;
  }
  .staff-archive-articles-list.swiper-wrapper {
    gap: 0;
  }
  .staff-archive-articles-item {
    width: auto;
  }
  .staff-archive-articles-item.swiper-slide {
    width: 25rem;
  }
  .staff-archive-articles-item-text {
    padding: 2rem;
  }
}
/* ===================================================
	コンサルタント個別記事
====================================================== */
.staff-single-header {
  display: flex;
  gap: 0 4rem;
}
.staff-single-header-thumbnail {
  width: 40%;
  flex-shrink: 0;
}
.staff-single-header-thumbnail img {
  width: 100%;
}
.staff-single-header-text {
  flex-grow: 1;
}
.staff-single-header-title {
  margin-bottom: 2rem;
}

/* ===================================================
	成功ガイド一覧
====================================================== */
.document-archive-articles-block {
  border: 1px solid #d2e0f0;
}
.document-archive-articles-complete-wrap {
  padding: 1.6rem 3rem 3rem;
  background-color: #f2faff;
  border-bottom: 1px solid #d2e0f0;
}
.document-archive-articles-complete-heading, .document-archive-articles-other-heading {
  text-align: center;
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2.4rem;
}
.document-archive-articles-complete-block {
  display: flex;
  background-color: #fff;
}
.document-archive-articles-complete-block-thumbnail {
  flex-shrink: 0;
  width: 340px;
  aspect-ratio: 340/240;
  overflow: hidden;
}
.document-archive-articles-complete-block-thumbnail:not(:has(img)) {
  background-color: #575757;
}
.document-archive-articles-complete-block-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.document-archive-articles-complete-block-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.document-archive-articles-complete-block-title {
  font-weight: 700;
  font-size: 3.2rem;
}
.document-archive-articles-complete-block-link-wrap {
  margin-top: 1.8rem;
}
.document-archive-articles-complete-block-link {
  display: inline-block;
  padding: 1.9rem 4em 1.9rem 3em;
  border-radius: 9999px;
  background-color: #0096dc;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  background: #0096dc center right 2rem/2rem 2rem url(./assets/img/icon-arrow04.png) no-repeat;
  transition: opacity 300ms;
}
.document-archive-articles-complete-block-link:hover {
  opacity: 0.7;
}
.document-archive-articles-other-wrap {
  padding: 1.6rem 3rem 3rem;
  background-color: #f2f6fa;
}
.document-archive-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.document-archive-articles-item {
  width: calc((100% - 6rem) / 3);
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.document-archive-articles-item-thumbnail {
  aspect-ratio: 360/250;
  overflow: hidden;
  flex-shrink: 0;
}
.document-archive-articles-item-thumbnail:not(:has(img)) {
  background-color: #505050;
}
.document-archive-articles-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.document-archive-articles-item-text {
  padding: 1rem 3rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.document-archive-articles-item-title {
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}
.document-archive-articles-item-link-wrap {
  margin-top: auto;
}
.document-archive-articles-item-link {
  display: block;
  border-radius: 9999px;
  border: 1px solid #0096dc;
  background-color: #fff;
  color: #0096dc;
  padding: 1rem 3em 1rem 2em;
  background: #fff center right 2rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
  transition: opacity 300ms;
}
.document-archive-articles-item-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1259px) {
  .document-archive-articles-complete-heading, .document-archive-articles-other-heading {
    font-size: 2rem;
  }
  .document-archive-articles-complete-block-thumbnail {
    width: 260px;
  }
  .document-archive-articles-complete-block-title {
    font-size: 2.8rem;
  }
  .document-archive-articles-complete-block-link {
    padding: 1.9rem 4em 1.9rem 3em;
    font-size: 1.6rem;
  }
  .document-archive-articles-list {
    gap: 2rem;
  }
  .document-archive-articles-item {
    width: calc(50% - 1rem);
  }
  .document-archive-articles-item-title {
    font-size: 2rem;
  }
  .document-archive-articles-item-text {
    padding: 1rem 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .document-archive-articles-complete-heading, .document-archive-articles-other-heading {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .document-archive-articles-complete-wrap {
    padding: 1.6rem 1.5rem 1.5rem;
  }
  .document-archive-articles-other-wrap {
    padding: 1.6rem 1.5rem 1.5rem;
  }
  .document-archive-articles-complete-block {
    flex-direction: column;
  }
  .document-archive-articles-complete-block-thumbnail {
    width: auto;
  }
  .document-archive-articles-complete-block-text {
    padding: 1rem 2rem 2rem;
    width: auto;
  }
  .document-archive-articles-complete-block-title {
    font-size: 1.8rem;
  }
  .document-archive-articles-complete-block-link {
    font-size: 1.4rem;
  }
  .document-archive-articles-item-title {
    font-size: 1.6rem;
  }
  .document-archive-articles-list {
    gap: 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .document-archive-articles-item {
    width: auto;
  }
}
/* ===================================================
	成功ガイド個別記事
====================================================== */
.single-document-container {
  display: flex;
  gap: 4rem;
}
.single-document-main {
  flex-grow: 1;
}
.single-document-sidebar {
  width: 560px;
  flex-shrink: 0;
}
.single-document-title {
  margin-bottom: 2em;
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
}
.single-document-submit-button {
  max-width: 100%;
  padding: 0 9rem !important;
  display: inline-block;
}

@media screen and (max-width: 1259px) {
  .single-document-container {
    flex-wrap: initial;
    flex-direction: column;
  }
  .single-document-main {
    width: auto;
  }
  .single-document-sidebar {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .single-document-submit-button {
    width: 100%;
    padding: 0 4rem !important;
    line-height: 1.25 !important;
    font-size: 1.6rem;
    height: 5rem;
  }
}
/* ===================================================
	成功ガイドお客様フォーム
====================================================== */
.document-form-block {
  border: 1px solid #d2e0f0;
}
.document-form-head {
  background-color: #f2faff;
  padding: 1.6rem 2rem;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #d2e0f0;
}
.document-form-heading {
  font-weight: 700;
  font-size: 2.4rem;
  color: #0096dc;
}
.document-form-attention {
  font-size: 1.5rem;
}
.document-form-body {
  background-color: #f2f6fa;
  font-size: 1.5rem;
}
.document-form-block-item {
  padding: 1rem 1rem 1rem 1.4rem;
  display: flex;
  gap: 0 1rem;
}
.document-form-block-item:not(:last-child) {
  border-bottom: 1px solid #d2e0f0;
}
.document-form-block-item-question {
  padding: 0.7em 0;
  width: 160px;
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.25;
}
.document-form-block-item:has(.wpcf7-checkbox) .document-form-block-item-question {
  padding: 0.5em 0;
}
.recruit .document-form-block-item-question {
  width: 240px;
}
.document-form-block-item label {
  font-weight: 700;
}
.document-form-block-item .required,
.document-form-block-item .any {
  background-color: #f06400;
  color: #fff;
  display: inline-block;
  border-radius: 0.4rem;
  padding: 0.4em 0.7em;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.document-form-block-item .any {
  background-color: #afafaf;
}
.document-form-block-item-answer {
  flex-grow: 1;
}
.document-form-block-item-answer.flexbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.document-form-block-item-answer.flexrow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.document-form-block-item-answer .rowtitle {
  font-size: 1.2rem;
}
.document-form-block-item .radio-wrap {
  padding-top: 0.2em;
  line-height: 2.6;
}
.document-form-block-item .checkbox-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.4em 0;
}
.document-form-block-item .checkbox-wrap .wpcf7-list-item {
  margin-left: 0;
  line-height: 1.25;
}
.document-form-block-item .checkbox-wrap label {
  display: flex;
  gap: 0.5em;
}
.document-form-block-item .checkbox-wrap input[type=checkbox] {
  flex-shrink: 0;
}
.document-form-block-item .small {
  width: 100px;
}
.document-form-block-item .middle {
  width: 200px;
}
.document-form-footer {
  padding: 2rem 0;
  text-align: center;
  position: relative;
}
.document-form-block .document-form-footer {
  padding: 2rem;
}
.document-form-footer .wpcf7-spinner {
  margin: 0;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .document-form-head {
    padding: 1.6rem 1.5rem;
  }
  .document-form-heading {
    font-size: 1.8rem;
  }
  .document-form-block-item {
    flex-direction: column;
    gap: 1rem;
  }
  .document-form-block-item-question {
    width: auto;
  }
  .document-form-block-item .checkbox-wrap {
    padding: 0.4em 0 0.4em 1em;
  }
  .document-form-block-item-question:has(.required) {
    justify-content: initial;
  }
  .document-form-footer {
    padding: 1.6rem 0;
  }
  .document-form-block .document-form-footer {
    padding: 1.6rem;
  }
}
/* ===================================================
	ご相談・お問い合わせ
====================================================== */
.contact-heading {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 3.6rem;
  text-align: center;
}
.contact-message {
  text-align: center;
  font-size: 2rem;
}
.contact-address-block {
  margin: 4rem auto;
  padding: 1em 0;
  max-width: 60rem;
  border: 1px solid #d2e0f0;
  display: flex;
  align-items: center;
}
.contact-address-text, .contact-address-tel-wrap {
  width: 50%;
}
.contact-address-text {
  text-align: center;
}
.contact-address-heading {
  font-size: 2rem;
  line-height: 1.25;
}
.contact-address-opentime {
  font-size: 1.4rem;
}
.contact-address-tel {
  display: flex;
  justify-content: center;
  gap: 0.2em;
  align-items: center;
  font: 700 3.1rem/1 "Roboto", sans-serif;
  color: #0096dc;
}
.contact-address-tel .icon {
  width: 2.3rem;
}
.contact-form-wrap {
  margin: 2rem auto;
  max-width: 800px;
}
.contact-form-block {
  margin-top: 1rem;
  border: 1px solid #d2e0f0;
  background-color: #f2f6fa;
  font-size: 1.5rem;
}
.contact-privacypolicy-block {
  margin: 1em 0;
  border: 1px solid #d2e0f0;
  padding: 1em;
  height: 10em;
  overflow: auto;
}
.contact-privacypolicy-block-title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.contact-privacypolicy-block-description {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .contact-message {
    font-size: 1.6rem;
    text-align: left;
  }
  .contact-address-block {
    padding: 1em;
    flex-direction: column;
    gap: 1rem 0;
  }
  .contact-address-text, .contact-address-tel-wrap {
    width: auto;
  }
}
/* ===================================================
	募集要項：記事一覧
====================================================== */
.recruit-archive-articles-list-wrap {
  margin: 6rem 0;
}
.recruit-archive-articles-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 700px;
  border: 1px solid #dae2e8;
}
.recruit-archive-articles-item {
  display: flex;
  flex-wrap: wrap;
}
.recruit-archive-articles-item:not(:first-child) {
  border-top: 1px solid #dae2e8;
}
.recruit-archive-articles-item-text {
  border-right: 1px solid #dae2e8;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.recruit-archive-articles-item-link {
  padding: 1rem 0;
  width: 320px;
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
}
.recruit-archive-articles-item-link .link-button {
  height: 5rem;
  line-height: calc(5rem - 2px);
  font-size: revert-layer;
  min-width: 260px;
}

@media screen and (max-width: 767px) {
  .recruit-archive-articles-item {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .recruit-archive-articles-item-link {
    padding: 0;
    width: auto;
  }
  .recruit-archive-articles-item-text {
    padding: 0;
    border-right: 0;
    display: block;
    text-align: center;
  }
}
/* ===================================================

====================================================== */
/* ===================================================

====================================================== */
/* ===================================================
	個別記事ページ
====================================================== */
.single-page-title {
  margin: 2em 0 1em;
  font-weight: 700;
  font-size: 3.6rem;
  border-bottom: 1px solid #000;
}

/* ===================================================
	ブロックエディター出力スタイル
====================================================== */
/* ===================================================
****
    個別記事の詳細（全個別記事共通）WP出力タグCSS用
****
====================================================== */
.posts-body-section {
  margin: 8rem 0 12rem;
}
.posts-body-inner p:not([class]) {
  margin-bottom: 2em;
}
.posts-body-inner a:not([class]) {
  text-decoration: underline;
}
.posts-body-inner a:not([class]):link {
  color: blue;
}
.posts-body-inner a:not([class]):visited {
  color: purple;
}
.posts-body-inner a:not([class]):hover {
  color: red;
}
.posts-body-inner a:not([class]):active {
  color: yellow;
}
.posts-body-inner strong {
  color: #0096dc;
}
.posts-body-inner ol:not([class]), .posts-body-inner ul:not([class], [class=toc_list], [class=wp-block-caution-list]) {
  margin: 1.5em 0;
  font-weight: 700;
  font-size: 1.8rem;
}
.posts-body-inner ol:not([class]) {
  counter-reset: order_number 0;
}
.posts-body-inner ol:not([class]) li {
  position: relative;
  padding-left: 2.2em;
}
.posts-body-inner ol:not([class]) li:not(:first-child), .posts-body-inner ul:not([class], [class=toc_list], [class=wp-block-caution-list]) li:not(:first-child) {
  margin-top: 0.2em;
}
.posts-body-inner ol:not([class]) li::before {
  counter-increment: order_number 1;
  content: counter(order_number, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
  color: #fff;
  background-color: #0096dc;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}
.posts-body-inner ul:not([class], [class=toc_list], [class=wp-block-caution-list]) li {
  position: relative;
  padding-left: 1.2em;
}
.posts-body-inner ul:not([class], [class=toc_list], [class=wp-block-caution-list]) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
  background-color: #0096dc;
  width: 1rem;
  height: 1rem;
}
.posts-body-inner iframe {
  max-width: 100%;
}
.posts-body-container {
  display: flex;
  justify-content: space-between;
  gap: 0 8rem;
}
.posts-body-main {
  flex-grow: 1;
}
.posts-body-main > *:first-child {
  margin-top: 0;
}
.posts-body-side {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 280px;
  flex-shrink: 0;
}

.wp-block-toc {
  margin-bottom: 6rem;
  padding: 2rem 3rem;
  border: 1px solid #dae2e8;
  background-color: #f2f6fa;
}
.wp-block-toc ul:not([class=toc_list]) {
  margin: 0;
}
.wp-block-toc .toc_list a {
  color: inherit !important;
  text-decoration: none;
}
.wp-block-toc .toc_list a:hover {
  text-decoration: underline;
}
.wp-block-toc .toc_title {
  padding-left: 1em;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  position: relative;
  margin-bottom: 0.5em;
}
.wp-block-toc .toc_title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 1.4rem;
  height: 0.3rem;
  background-color: #0096dc;
}
.wp-block-toc .toc_list {
  border-top: 1px solid #dae2e8;
  padding-top: 1em;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.8666666667em;
  counter-reset: list_number_heading2 0;
}
.wp-block-toc .toc_list > li {
  padding-left: 1.5em;
  position: relative;
}
.wp-block-toc .toc_list > li::before {
  counter-increment: list_number_heading2 1;
  content: counter(list_number_heading2) ".";
  position: absolute;
  right: calc(100% - 1em);
  top: 0;
  color: #0096dc;
}
.wp-block-toc .toc_list ul {
  font-weight: 500;
  font-size: 1.5rem;
}
.wp-block-toc .toc_list li {
  position: relative;
}
.wp-block-toc .toc_list ul:not([class=toc_list]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0096dc;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  transform: none;
  background-color: revert-layer;
}
.wp-block-toc .toc_list > li {
  padding-left: 1.5em;
}
.wp-block-toc .toc_list > li > ul > li {
  padding-left: 2.2em;
}
.wp-block-toc .toc_list > li > ul {
  counter-reset: list_number_heading3 0;
}
.wp-block-toc .toc_list > li > ul > li::before {
  counter-increment: list_number_heading3 1;
  content: counter(list_number_heading2) "-" counter(list_number_heading3);
}
.wp-block-toc .toc_list > li > ul > li > ul {
  counter-reset: list_number_heading4 0;
}
.wp-block-toc .toc_list > li > ul > li > ul > li {
  padding-left: 3.3em;
}
.wp-block-toc .toc_list > li > ul > li > ul > li::before {
  counter-increment: list_number_heading4 1;
  content: counter(list_number_heading2) "-" counter(list_number_heading3) "-" counter(list_number_heading4);
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul {
  counter-reset: list_number_heading5 0;
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul > li {
  padding-left: 4.3em;
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul > li::before {
  counter-increment: list_number_heading5 1;
  content: counter(list_number_heading2) "-" counter(list_number_heading3) "-" counter(list_number_heading4) "-" counter(list_number_heading5);
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul > li > ul {
  counter-reset: list_number_heading6 0;
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul > li > ul > li {
  padding-left: 5.3em;
}
.wp-block-toc .toc_list > li > ul > li > ul > li > ul > li > ul > li::before {
  counter-increment: list_number_heading6 1;
  content: counter(list_number_heading2) "-" counter(list_number_heading3) "-" counter(list_number_heading4) "-" counter(list_number_heading5) "-" counter(list_number_heading6);
}

.wp-block-heading {
  margin: 2em 0 0.75em;
}

h2.wp-block-heading,
.wp-block-heading2 {
  padding-bottom: 0.1em;
  font-weight: 700;
  font-size: 3.6rem;
  border-bottom: 0.6rem solid #dae2e8;
  position: relative;
}

h2.wp-block-heading::before,
.wp-block-heading2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 28rem;
  height: 0.6rem;
  background-color: #0096dc;
}

h3.wp-block-heading,
.wp-block-heading3 {
  padding-bottom: 0.2em;
  padding-left: 1.4em;
  position: relative;
  border-bottom: 0.2rem solid #0096dc;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}

h3.wp-block-heading::before,
.wp-block-heading3::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 2.8rem;
  height: 0.6rem;
  background-color: #0096dc;
}

h4.wp-block-heading,
.wp-block-heading4 {
  padding-bottom: 0.2em;
  padding-left: 0.6em;
  position: relative;
  border-bottom: 1px solid #0096dc;
  font-weight: 700;
  font-size: 2.6rem;
}

h4.wp-block-heading::before,
.wp-block-heading4::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.4rem;
  height: 3rem;
  background-color: #0096dc;
}

h5.wp-block-heading,
.wp-block-heading5 {
  padding-bottom: 0.2em;
  padding-left: 1em;
  position: relative;
  border-bottom: 1px solid #0096dc;
  font-weight: 700;
  font-size: 2.2rem;
}

h5.wp-block-heading::before,
.wp-block-heading5::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 1.6rem;
  height: 0.3rem;
  background-color: #0096dc;
}

h6.wp-block-heading,
.wp-block-heading6 {
  padding-bottom: 0.2em;
  padding-left: 0.8em;
  position: relative;
  border-bottom: 1px solid #dae2e8;
  font-weight: 700;
  font-size: 2rem;
}

h6.wp-block-heading::before,
.wp-block-heading6::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #0096dc;
}

.wp-block-image {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.wp-block-image figcaption {
  background-color: #f2f6fa;
  margin: 0;
  padding: 0.6em 1em;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.wp-block-quote {
  margin: 4rem 0;
  padding: 2rem 3rem;
  border: 1px solid #dae2e8;
  background-color: #f2f6fa;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.wp-block-quote p {
  margin: 0;
  padding-left: 4rem;
  position: relative;
}
.wp-block-quote p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 2.4rem;
  height: 1.8rem;
  background: center center/contain url(./assets/img/icon-doublequote.png) no-repeat;
}
.wp-block-quote cite {
  font-size: 1.4rem;
  font-style: normal;
}

.wp-block-caution-list {
  margin: 4rem 0;
  padding: 2em 2.8em;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.667;
  background-color: #f2f6fa;
  counter-reset: caution_number 0;
}
.wp-block-caution-list li {
  position: relative;
  padding-left: 2.6em;
}
.wp-block-caution-list li::before {
  counter-increment: caution_number 1;
  content: "※" counter(caution_number);
  position: absolute;
  left: 0;
  top: 0;
}
.wp-block-caution-list li:not(:first-child) {
  margin-top: 0.5em;
}

.wp-block-text-and-image-left,
.wp-block-text-and-image-right {
  margin: 6rem 0;
  gap: 0 6rem;
}
.wp-block-text-and-image-left *:last-child,
.wp-block-text-and-image-right *:last-child {
  margin-bottom: 0;
}
.wp-block-text-and-image-left .wp-block-image,
.wp-block-text-and-image-right .wp-block-image {
  margin: 0;
}
.wp-block-text-and-image-left .wp-block-image img,
.wp-block-text-and-image-right .wp-block-image img {
  width: 100%;
}
.wp-block-text-and-image-left .image-wrapper,
.wp-block-text-and-image-right .image-wrapper {
  flex: 480px 0 0 !important;
}
.wp-block-text-and-image-left .text-wrapper,
.wp-block-text-and-image-right .text-wrapper {
  flex: 100% 1 1 !important;
}

.wp-block-cards {
  margin: 8rem 0;
}
.wp-block-cards-item {
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.wp-block-cards-3column {
  gap: 3rem;
}
.wp-block-cards-3column .wp-block-cards-item {
  flex-basis: calc((100% - 6rem) / 3);
}
.wp-block-cards-3column figure {
  aspect-ratio: 380/250;
}
.wp-block-cards-4column figure {
  aspect-ratio: 285/250;
}
.wp-block-cards figure {
  margin: 0;
  flex-grow: 0;
  flex-shrink: 0;
}
.wp-block-cards figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: none;
}
.wp-block-cards p {
  margin: 0;
}
.wp-block-cards-item-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333em;
}
.wp-block-cards-item-description {
  font-size: 1.4rem;
  line-height: 1.5714285714em;
  margin-bottom: 1em !important;
}
.wp-block-cards-item-title + .wp-block-cards-item-description {
  margin-top: 0.5em;
}
.wp-block-cards-item-button {
  margin-top: auto !important;
}
.wp-block-cards-item-button a {
  border-radius: 9999px;
  padding: 1em 6rem 1em 3rem;
  border: 1px solid #0096dc;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  color: #0096dc !important;
  text-decoration: none !important;
  background: #fff center right 2rem/2rem 2rem url(./assets/img/icon-arrow01.png) no-repeat;
  transition: opacity 300ms;
}
.wp-block-cards-item-button a:hover {
  opacity: 0.7;
}
.wp-block-cards .wp-block-group {
  padding: 1em 1.25em;
  background-color: #fff;
  flex-grow: 1;
}
.wp-block-cards .wp-block-group .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wp-block-group-color {
  margin: 8rem 0;
  padding: 8rem 0;
  position: relative;
}
.wp-block-group-color .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.wp-block-group-color .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}
.wp-block-group-color::before {
  content: "";
  position: absolute;
  left: calc((100vw - 100%) / 2 * -1);
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #f2f6fa;
}

.wp-block-group-bg {
  margin: 6rem 0;
  padding: 6rem 0;
  position: relative;
}
.wp-block-group-bg .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.wp-block-group-bg .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}
.wp-block-group-bg * {
  color: #fff;
}
.wp-block-group-bg a, .wp-block-group-bg a:link, .wp-block-group-bg a:visited, .wp-block-group-bg a:hover, .wp-block-group-bg a:active {
  color: #fff;
}
.wp-block-group-bg a:hover {
  text-decoration: none;
}
.wp-block-group-bg h2.wp-block-heading,
.wp-block-group-bg h2.wp-block-heading,
.wp-block-group-bg h3.wp-block-heading,
.wp-block-group-bg h4.wp-block-heading,
.wp-block-group-bg h5.wp-block-heading,
.wp-block-group-bg h6.wp-block-heading {
  border-bottom-color: #fff;
}
.wp-block-group-bg h2.wp-block-heading::before,
.wp-block-group-bg h2.wp-block-heading::before,
.wp-block-group-bg h3.wp-block-heading::before,
.wp-block-group-bg h4.wp-block-heading::before,
.wp-block-group-bg h5.wp-block-heading::before,
.wp-block-group-bg h6.wp-block-heading::before {
  background-color: #fff;
}
.wp-block-group-bg::before {
  content: "";
  position: absolute;
  left: calc((100vw - 100%) / 2 * -1);
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: center left 20%/cover url(./assets/img/bg-block-group01.jpg) no-repeat;
}

.wp-block-point-description {
  margin: 6rem 0;
  border: 1px solid #d2e0f0;
  padding: 4.5em 2.5em 2em;
  background-color: #f2faff;
  position: relative;
}
.wp-block-point-description::before {
  content: "POINT";
  position: absolute;
  left: 1.25em;
  top: 1em;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0096dc;
  line-height: 1;
}
.wp-block-point-description p {
  margin: 0;
}
.wp-block-point-description p + p {
  margin-top: 1.5em;
}

.wp-block-table,
.wp-block-table-column {
  margin: 3rem 0;
}
.wp-block-table table th, .wp-block-table table td,
.wp-block-table-column table th,
.wp-block-table-column table td {
  border-color: #d2e0f0;
}
.wp-block-table thead,
.wp-block-table-column thead {
  border-bottom: 0;
}
.wp-block-table thead th,
.wp-block-table-column thead th {
  background-color: #0096dc;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 0.6em 2rem;
}
.wp-block-table tbody td,
.wp-block-table-column tbody td {
  padding: 0.75em 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.7692307692em;
}
.wp-block-table.column1 thead th:nth-of-type(1),
.wp-block-table-column.column1 thead th:nth-of-type(1) {
  background-color: #f06400;
}
.wp-block-table.column1 tbody td:nth-of-type(1),
.wp-block-table-column.column1 tbody td:nth-of-type(1) {
  background-color: #fffae6;
}
.wp-block-table.column2 thead th:nth-of-type(2),
.wp-block-table-column.column2 thead th:nth-of-type(2) {
  background-color: #f06400;
}
.wp-block-table.column2 tbody td:nth-of-type(2),
.wp-block-table-column.column2 tbody td:nth-of-type(2) {
  background-color: #fffae6;
}
.wp-block-table.column3 thead th:nth-of-type(3),
.wp-block-table-column.column3 thead th:nth-of-type(3) {
  background-color: #f06400;
}
.wp-block-table.column3 tbody td:nth-of-type(3),
.wp-block-table-column.column3 tbody td:nth-of-type(3) {
  background-color: #fffae6;
}
.wp-block-table.column4 thead th:nth-of-type(4),
.wp-block-table-column.column4 thead th:nth-of-type(4) {
  background-color: #f06400;
}
.wp-block-table.column4 tbody td:nth-of-type(4),
.wp-block-table-column.column4 tbody td:nth-of-type(4) {
  background-color: #fffae6;
}
.wp-block-table.column5 thead th:nth-of-type(5),
.wp-block-table-column.column5 thead th:nth-of-type(5) {
  background-color: #f06400;
}
.wp-block-table.column5 tbody td:nth-of-type(5),
.wp-block-table-column.column5 tbody td:nth-of-type(5) {
  background-color: #fffae6;
}
.wp-block-table.column6 thead th:nth-of-type(6),
.wp-block-table-column.column6 thead th:nth-of-type(6) {
  background-color: #f06400;
}
.wp-block-table.column6 tbody td:nth-of-type(6),
.wp-block-table-column.column6 tbody td:nth-of-type(6) {
  background-color: #fffae6;
}
.wp-block-table.column7 thead th:nth-of-type(7),
.wp-block-table-column.column7 thead th:nth-of-type(7) {
  background-color: #f06400;
}
.wp-block-table.column7 tbody td:nth-of-type(7),
.wp-block-table-column.column7 tbody td:nth-of-type(7) {
  background-color: #fffae6;
}
.wp-block-table.column8 thead th:nth-of-type(8),
.wp-block-table-column.column8 thead th:nth-of-type(8) {
  background-color: #f06400;
}
.wp-block-table.column8 tbody td:nth-of-type(8),
.wp-block-table-column.column8 tbody td:nth-of-type(8) {
  background-color: #fffae6;
}
.wp-block-table.column9 thead th:nth-of-type(9),
.wp-block-table-column.column9 thead th:nth-of-type(9) {
  background-color: #f06400;
}
.wp-block-table.column9 tbody td:nth-of-type(9),
.wp-block-table-column.column9 tbody td:nth-of-type(9) {
  background-color: #fffae6;
}
.wp-block-table.column10 thead th:nth-of-type(10),
.wp-block-table-column.column10 thead th:nth-of-type(10) {
  background-color: #f06400;
}
.wp-block-table.column10 tbody td:nth-of-type(10),
.wp-block-table-column.column10 tbody td:nth-of-type(10) {
  background-color: #fffae6;
}

.wp-block-table-row {
  margin: 3rem 0;
}
.wp-block-table-row table th, .wp-block-table-row table td {
  border-color: #d2e0f0;
  vertical-align: top;
}
.wp-block-table-row tbody td {
  padding: 0.75em 2rem;
  letter-spacing: 0.02em;
  padding: 0.6em 2rem;
  line-height: 1.7692307692em;
}
.wp-block-table-row tbody td:first-child {
  background-color: #0096dc;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 0.6em 2rem;
}
.wp-block-table-row tbody td:not(:first-child) {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.wp-block-table-row.row1 tbody tr:nth-of-type(1) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row1 tbody tr:nth-of-type(1) td {
  background-color: #fffae6;
}
.wp-block-table-row.row2 tbody tr:nth-of-type(2) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row2 tbody tr:nth-of-type(2) td {
  background-color: #fffae6;
}
.wp-block-table-row.row3 tbody tr:nth-of-type(3) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row3 tbody tr:nth-of-type(3) td {
  background-color: #fffae6;
}
.wp-block-table-row.row4 tbody tr:nth-of-type(4) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row4 tbody tr:nth-of-type(4) td {
  background-color: #fffae6;
}
.wp-block-table-row.row5 tbody tr:nth-of-type(5) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row5 tbody tr:nth-of-type(5) td {
  background-color: #fffae6;
}
.wp-block-table-row.row6 tbody tr:nth-of-type(6) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row6 tbody tr:nth-of-type(6) td {
  background-color: #fffae6;
}
.wp-block-table-row.row7 tbody tr:nth-of-type(7) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row7 tbody tr:nth-of-type(7) td {
  background-color: #fffae6;
}
.wp-block-table-row.row8 tbody tr:nth-of-type(8) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row8 tbody tr:nth-of-type(8) td {
  background-color: #fffae6;
}
.wp-block-table-row.row9 tbody tr:nth-of-type(9) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row9 tbody tr:nth-of-type(9) td {
  background-color: #fffae6;
}
.wp-block-table-row.row10 tbody tr:nth-of-type(10) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row10 tbody tr:nth-of-type(10) td {
  background-color: #fffae6;
}
.wp-block-table-row.row11 tbody tr:nth-of-type(11) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row11 tbody tr:nth-of-type(11) td {
  background-color: #fffae6;
}
.wp-block-table-row.row12 tbody tr:nth-of-type(12) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row12 tbody tr:nth-of-type(12) td {
  background-color: #fffae6;
}
.wp-block-table-row.row13 tbody tr:nth-of-type(13) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row13 tbody tr:nth-of-type(13) td {
  background-color: #fffae6;
}
.wp-block-table-row.row14 tbody tr:nth-of-type(14) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row14 tbody tr:nth-of-type(14) td {
  background-color: #fffae6;
}
.wp-block-table-row.row15 tbody tr:nth-of-type(15) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row15 tbody tr:nth-of-type(15) td {
  background-color: #fffae6;
}
.wp-block-table-row.row16 tbody tr:nth-of-type(16) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row16 tbody tr:nth-of-type(16) td {
  background-color: #fffae6;
}
.wp-block-table-row.row17 tbody tr:nth-of-type(17) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row17 tbody tr:nth-of-type(17) td {
  background-color: #fffae6;
}
.wp-block-table-row.row18 tbody tr:nth-of-type(18) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row18 tbody tr:nth-of-type(18) td {
  background-color: #fffae6;
}
.wp-block-table-row.row19 tbody tr:nth-of-type(19) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row19 tbody tr:nth-of-type(19) td {
  background-color: #fffae6;
}
.wp-block-table-row.row20 tbody tr:nth-of-type(20) td:first-child {
  color: #fff;
  background-color: #f06400;
}
.wp-block-table-row.row20 tbody tr:nth-of-type(20) td {
  background-color: #fffae6;
}

.wp-block-frame {
  border: 1px solid #dae2e8;
  margin: 6rem 0;
  padding: 3rem 5rem 4rem;
}
.wp-block-frame h2.wp-block-heading {
  padding-left: 3rem;
  margin-right: -5rem;
  margin-left: -5rem;
}
.wp-block-frame h2.wp-block-heading:first-child {
  margin-top: -3rem;
}
.wp-block-frame .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.wp-block-frame .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}

.wp-block-step-group {
  margin: 8rem 0;
  padding: 8rem 0;
  position: relative;
}
.wp-block-step-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-color: #f2f6fa;
}
.wp-block-step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.wp-block-step-item {
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}
.wp-block-step-item:not(:first-child) {
  position: relative;
}
.wp-block-step-item .arrow {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
}
.wp-block-step-item-text {
  padding: 2.4rem 6rem 2.4rem 2.8rem;
  flex: 100% 1 1 !important;
  display: flex;
  gap: 0 2.8rem;
}
.wp-block-step-item-number {
  margin: 0;
  flex-shrink: 0;
  flex-grow: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #0096dc;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.wp-block-step-item-number .number {
  font-size: 2.45em;
  line-height: 0.8;
}
.wp-block-step-item-content {
  flex: 100% 1 1 !important;
}
.wp-block-step-item-title {
  padding-bottom: 0.75em;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.2;
  border-bottom: 1px solid #0096dc;
}
.wp-block-step-item-description {
  margin-top: 0.8em;
  letter-spacing: 0.04em;
}
.wp-block-step-item-image-frame {
  aspect-ratio: 280/210;
  overflow: hidden;
}
.wp-block-step-item-image-frame .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-block-step-item-image {
  flex: 280px 0 0 !important;
}

.wp-block-qa-group {
  margin: 2rem 0;
  border: 1px solid #d2e0f0;
  background: top 10px right 10px/40px 40px url(./assets/img/icon-plus01.png) no-repeat;
}
.wp-block-qa-question {
  border-bottom: 2px solid #d2e0f0;
  padding: 0.61em 6rem !important;
  font-weight: 700;
  font-size: 2.4rem !important;
  line-height: 1.2;
  position: relative;
  gap: 0 0.4em;
  cursor: pointer;
}
.wp-block-qa-question::before {
  content: "Q." !important;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  color: #0096dc;
  position: absolute;
  left: 0.5em;
  top: 0.35em;
}
.wp-block-qa-question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 28rem;
  height: 3px;
  background-color: #0096dc;
}
.wp-block-qa-answer {
  display: none;
  position: relative;
  padding: 1rem 3.6rem 1.6rem 6rem;
  letter-spacing: 0.04em;
}
.wp-block-qa-answer::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 1.7rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  color: #0096dc;
}
.wp-block-qa-answer .main {
  font-weight: 700;
  font-size: 2rem;
}
.wp-block-qa-group.open {
  background-image: url(./assets/img/icon-minus01.png);
}
.wp-block-qa-group.open .wp-block-qa-question {
  border-bottom-width: 3px;
}
.wp-block-qa-group.open .wp-block-qa-answer {
  display: block;
}

.wp-block-buttons {
  margin: 4rem 0;
  gap: 2rem;
}
.wp-block-button__link {
  padding: 1.15em 12.5rem;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  transition: opacity 300ms;
  background: #0096dc center right 2rem/2rem 2rem url(./assets/img/icon-arrow04.png) no-repeat;
}
.wp-block-button__link:hover {
  opacity: 0.7;
}
.wp-block-button-small .wp-block-button__link {
  border: 1px solid #0096dc;
  color: #0096dc;
  padding: 1em 7.2rem 1em 3.2rem;
  font-size: revert-layer;
  background-color: #fff;
  background-image: url(./assets/img/icon-arrow01.png);
}
.wp-block-button-large .wp-block-button__link {
  padding: 1.3em 8.9rem;
  font-size: 2.2rem;
}

.wp-block-image-bubble-list {
  margin: 3rem 0;
  gap: 4rem;
}
.wp-block-image-bubble-item {
  position: relative;
}
.wp-block-image-bubble-image {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.wp-block-image-bubble-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-block-image-bubble-text {
  margin: 0 2rem;
  padding: 0.9em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 4rem);
  min-height: 4.5692307692em;
  border-radius: 1.2rem;
  background-color: #0096dc;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3846153846em;
  text-align: center;
  position: absolute;
}
.wp-block-image-bubble-text::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  border-style: solid;
  border-width: 0.8rem 0.7rem 0;
  border-color: #0096dc transparent;
  transform: translateX(-50%);
}
.wp-block-writer {
  margin: 8rem 0;
  border: 1px solid #d2e0f0;
  background-color: #f2faff;
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  gap: 0 3rem;
}
.wp-block-writer-image {
  width: 160px;
  flex-shrink: 0;
}
.wp-block-writer-image-frame {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.wp-block-writer-image-frame .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-block-writer-text {
  width: 100%;
  flex-grow: 1;
}
.wp-block-writer-author {
  display: inline-block;
  background-color: #0096dc;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.1;
  padding: 0 0.5em;
}
.wp-block-writer-position {
  font-weight: 700;
  line-height: 2;
}
.wp-block-writer-name {
  font-weight: 700;
  font-size: 3.2rem;
  color: #0096dc;
  line-height: 1;
}
.wp-block-writer-description {
  margin-top: 0.75em;
  line-height: 1.875em;
  letter-spacing: 0.04em;
}

.wp-block-staff-profile-title {
  margin: 0 0 1em;
}

.wp-block-recruit-detail-buttons {
  max-width: 700px;
  border: 1px solid #dae2e8;
  margin: 4rem auto;
  gap: 0 !important;
}
.wp-block-recruit-detail-buttons + .wp-block-recruit-detail-buttons {
  margin-top: -4rem;
  border-top: 0;
}
.wp-block-recruit-detail-left, .wp-block-recruit-detail-right {
  padding: 1rem 2rem;
}
.wp-block-recruit-detail-left {
  display: flex;
  align-items: center;
}
.wp-block-recruit-detail-right {
  border-left: 1px solid #dae2e8;
}
.wp-block-recruit-detail-heading {
  font-weight: 700;
  font-size: 2rem;
}
.wp-block-recruit-detail-button a {
  display: block;
  margin: 0 auto;
  padding: 0 1em;
  max-width: 260px;
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  border-radius: 9999px;
  background: #0096dc right 2rem center/2rem 2rem url(./assets/img/icon-arrow04.png) no-repeat;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  transition: opacity 300ms;
}
.wp-block-recruit-detail-buttons a:hover {
  opacity: 0.7;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.wp-block-embed-youtube iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 781px) {
  .wp-block-recruit-detail-buttons:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .posts-body-section {
    margin: 4rem 0 6rem;
  }
  .posts-body-inner p:not([class]) {
    margin-bottom: 1em;
  }
  .posts-body-inner ol:not([class]), .posts-body-inner ul:not([class=toc_list], [class=wp-block-caution-list]) {
    margin: 1.5em 0;
    font-size: revert-layer;
  }
  .posts-body-inner ol:not([class]) li {
    margin-bottom: 1em;
    padding-left: 2.6em;
  }
  .posts-body-container {
    gap: 4rem;
    flex-direction: column;
  }
  .posts-body-main {
    width: auto;
  }
  .posts-body-side {
    width: auto;
  }
  .wp-block-toc {
    padding: 1.5rem;
  }
  .wp-block-toc .toc_title {
    font-size: 2rem;
  }
  .wp-block-toc .toc_list {
    padding-top: 0.4em;
  }
  .wp-block-toc .toc_list ul:not([class=toc_list]) li::before {
    right: calc(100% - 1.4rem);
    left: auto;
  }
  .wp-block-toc .toc_list > li {
    padding-left: 1.1em;
  }
  .wp-block-toc .toc_list > li > ul > li {
    padding-left: 1.3em;
  }
  .wp-block-toc .toc_list > li > ul > li > ul > li {
    padding-left: 1.1em;
  }
  .wp-block-toc .toc_list > li > ul > li > ul > li > ul > li {
    padding-left: 1.1em;
  }
  .wp-block-toc .toc_list > li > ul > li > ul > li > ul > li > ul > li {
    padding-left: 1.1em;
  }
  .wp-block-toc .toc_list > li > ul > li > ul > li::before,
  .wp-block-toc .toc_list > li > ul > li > ul > li > ul > li::before,
  .wp-block-toc .toc_list > li > ul > li > ul > li > ul > li > ul > li::before {
    right: calc(100% - 1rem) !important;
  }
  h2.wp-block-heading,
  .wp-block-heading2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  h2.wp-block-heading::before,
  .wp-block-heading2::before {
    width: 14rem;
  }
  h3.wp-block-heading,
  .wp-block-heading3 {
    padding-left: 1.4em;
    position: relative;
    font-size: 2.5rem;
    line-height: 1.5;
  }
  h3.wp-block-heading::before,
  .wp-block-heading3::before {
    top: 0.7em;
    width: 2.8rem;
  }
  h4.wp-block-heading,
  .wp-block-heading4 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  h5.wp-block-heading,
  .wp-block-heading5 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  h6.wp-block-heading,
  .wp-block-heading6 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  h6.wp-block-heading::before,
  .wp-block-heading6::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    background-color: #0096dc;
  }
  .wp-block-image figcaption {
    font-size: 1.4rem;
  }
  .wp-block-caution-list {
    padding: 1em 1.5em;
  }
  .wp-block-group-bg {
    margin: 4rem 0;
    padding: 2rem 0;
  }
  .wp-block-text-and-image-left,
  .wp-block-text-and-image-right {
    margin: 4rem 0;
    gap: 4rem;
  }
  .wp-block-text-and-image-left .image-wrapper,
  .wp-block-text-and-image-right .image-wrapper {
    flex: auto !important;
    order: -1;
  }
  .wp-block-text-and-image-left .text-wrapper,
  .wp-block-text-and-image-right .text-wrapper {
    flex: auto !important;
  }
  .wp-block-group-color {
    margin: 4rem 0;
    padding: 4rem 0;
  }
  .wp-block-cards {
    margin: 2em 0;
  }
  .wp-block-point-description {
    margin: 4rem 0;
    padding: 4.5em 1.5em 1.5em;
  }
  .wp-block-point-description::before {
    left: 0.65em;
    top: 0.7em;
    font-size: 3.2rem;
  }
  .wp-block-table,
  .wp-block-table-column {
    overflow: auto;
  }
  .wp-block-table thead th,
  .wp-block-table-column thead th {
    padding: 0.6em 1rem;
  }
  .wp-block-table tbody td,
  .wp-block-table-column tbody td {
    padding: 0.75em 1rem;
  }
  .wp-block-table tbody tr td:first-child,
  .wp-block-table-column tbody tr td:first-child {
    width: 20%;
  }
  .wp-block-quote {
    padding: 2rem 1.5rem;
  }
  .wp-block-quote p {
    padding-left: 3rem;
  }
  .wp-block-quote p::before {
    width: 2rem;
  }
  .wp-block-quote cite {
    font-size: 1.4rem;
    font-style: normal;
  }
  .wp-block-frame {
    padding: 3rem 2rem 2rem;
  }
  .wp-block-frame h2.wp-block-heading {
    padding: 0.5em 1em;
    margin-right: -2rem;
    margin-left: -2rem;
  }
  .wp-block-step-group {
    margin: 4rem 0;
    padding: 4rem 0;
  }
  .wp-block-step-list {
    gap: 2rem 0;
  }
  .wp-block-step-item {
    flex-wrap: wrap;
  }
  .wp-block-step-item-text {
    padding: 2.4rem 2rem 2.4rem 2rem;
    gap: 1rem;
  }
  .wp-block-step-item-number {
    padding-top: 0.4rem;
    font-size: 1.5rem;
  }
  .wp-block-step-item-title {
    font-size: 2.2rem;
  }
  .wp-block-step-item-image {
    padding: 0 2rem 2rem;
    flex: 100% 0 0 !important;
  }
  .wp-block-qa-group {
    background-size: 3rem 3rem;
  }
  .wp-block-qa-question {
    padding: 0.61em 4.8rem !important;
    font-size: 1.8rem !important;
  }
  .wp-block-qa-question::before {
    font-size: 2.6rem;
    left: 0.5em;
    top: 0.35em;
  }
  .wp-block-qa-question::after {
    width: 14rem;
  }
  .wp-block-qa-answer {
    padding: 1rem 2rem 1.6rem 4.8rem;
    letter-spacing: 0.04em;
  }
  .wp-block-qa-answer::before {
    top: 0;
    left: 0.5em;
    font-size: 2.6rem;
  }
  .wp-block-qa-answer .main {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .wp-block-buttons {
    margin: 4rem 0;
    gap: 2rem;
  }
  .wp-block-button__link {
    padding: 1.05em 8rem;
    font-size: 1.6rem;
  }
  .wp-block-button__link:hover {
    opacity: 0.7;
  }
  .wp-block-button-large .wp-block-button__link {
    padding: 1.3em 8rem;
    font-size: 1.8rem;
  }
  .wp-block-writer {
    margin: 4rem 0;
    padding: 2rem;
    gap: 2rem;
    flex-direction: column;
  }
  .wp-block-writer-image {
    margin: 0 auto;
    width: 80%;
  }
  .wp-block-writer-text {
    width: auto;
  }
  .wp-block-writer-name {
    font-size: 2.8rem;
  }
  .wp-block-recruit-detail-buttons {
    margin: 2rem auto;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem !important;
  }
  .wp-block-recruit-detail-buttons + .wp-block-recruit-detail-buttons {
    margin-top: -2rem;
  }
  .wp-block-recruit-detail-left, .wp-block-recruit-detail-right {
    padding: 0;
  }
  .wp-block-recruit-detail-left {
    justify-content: center;
  }
  .wp-block-recruit-detail-right {
    border-left: 0;
  }
  .wp-block-recruit-detail-heading {
    font-size: 1.64rem;
  }
  .wp-block-recruit-detail-button a {
    transition: none;
    font-size: 1.4rem;
  }
  .wp-block-recruit-detail-buttons a:hover {
    opacity: 1;
  }
}