@charset "UTF-8";
/* 共通パーツ用
--------------------------------------------- */
/* 共通カラー管理 */
:root {
  --text-color: #001432;
  --cl-grad: 90deg, #9566ee 0%, #00b4ff 100%;
  --cl-ppl-contrast: #5b49ae; /* 紫：コントラスト確保 */
  --cl-ppl-txt: #775fd9; /* 紫：文字など */
  --cl-ppl-logo: #9566ee; /* 紫：ロゴの色そのまま */
  --cl-sky-logo: #00b4ff; /* 水色：ロゴの色そのまま */
  --cl-ppl-bg: #f2eefe; /* 紫：背景 */
}

/* 基本・全体CSS */
* {
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  * {
    font-size: 14px;
  }
}

body,
button {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 1120px) {
  main {
    padding-top: 60px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ------------------------------ */
/* 汎用CSS */
/* ------------------------------ */
/* 改行コントロール */
.sp-br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-br {
    display: block;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* コンテナ */
.container-wrap {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container-wrap {
    padding: 0 4%;
  }
}

.container-inner {
  max-width: 1120px;
  margin: auto;
  padding: 80px 0 100px;
}
@media screen and (max-width: 1120px) {
  .container-inner {
    margin: auto 4%;
  }
}
@media screen and (max-width: 768px) {
  .container-inner {
    margin: auto;
    padding: 40px 0 80px;
  }
}

/* 汎用flex */
.flex-wrap {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* 基本フォントサイズ */
.font_xxl {
  font-size: 42px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .font_xxl {
    font-size: 26px;
  }
}

.font_xl {
  font-size: 34px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .font_xl {
    font-size: 22px;
  }
}

.font_l {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .font_l {
    font-size: 20px;
  }
}

.font_sl {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .font_sl {
    font-size: 18px;
  }
}

/* ------------------------------ */
/* パーツ・コンポーネント置き場 */
/* ------------------------------ */
/* CTAボタン */
button.btn_trial,
button.btn_download,
a.btn_download {
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
}
button.btn_trial:hover,
button.btn_download:hover,
a.btn_download:hover {
  transition: all 0.2s ease-out;
  opacity: 0.8;
}

a.btn_download {
  background: transparent linear-gradient(var(--cl-grad)) 0% no-repeat;
  color: #ffffff;
  text-decoration: none;
  margin: auto;
  display: block;
  text-align: center;
  max-width: fit-content;
}

button.btn_trial {
  border: 2px solid #ffffff; /*transparent(透明)でもいいかも*/
  color: #ffffff;
  background: transparent linear-gradient(var(--cl-grad)) 0% no-repeat;
  background-size: 200% auto;
}
button.btn_trial span {
  color: #ffffff;
}
button.btn_trial:hover {
  background-position: 100%;
}

button.btn_download {
  background: #ffffff;
  color: var(--cl-ppl-contrast);
  border: solid 2px var(--cl-ppl-contrast);
}
button.btn_download span {
  color: var(--cl-ppl-contrast);
}
button.btn_download:hover {
  background: var(--cl-ppl-bg);
}

.common_link-line {
  text-decoration: none;
  font-weight: 700;
  padding: 5px;
  border-bottom: solid 2px;
  margin: auto;
  display: block;
  text-align: center;
  width: fit-content;
}

/* 汎用CTAエリア */
.common_cta {
  padding: 50px 0;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgba(67, 64, 154, 0.2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common_cta {
    padding: 40px 4%;
  }
}
.common_cta p.font_sl {
  color: var(--cl-ppl-txt);
  margin-bottom: 15px;
}
.common_cta button {
  padding: 20px;
  margin: 10px;
}
.common_cta button i {
  margin-left: 10px;
}
.common_cta button.btn_trial span,
.common_cta button.btn_trial i {
  color: #ffffff;
}
.common_cta button.btn_download span,
.common_cta button.btn_download i {
  color: var(--cl-ppl-contrast);
}
@media screen and (min-width: 769px) {
  .common_cta button {
    width: 45%;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .common_cta button {
    width: 45%;
    margin: 5px auto;
  }
}
@media screen and (max-width: 480px) {
  .common_cta button {
    width: 80%;
    margin: 5px auto;
    padding: 15px;
  }
}

.common_post-list ul {
  width: 100%;
  padding: 0;
}
.common_post-list ul li {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(67, 64, 154, 0.2);
  border-radius: 5px;
  list-style: none;
  margin: 0 0 10px;
}
.common_post-list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-decoration: none;
}
.common_post-list ul li a p {
  font-weight: 700;
  display: block;
}
.common_post-list ul li a .common_category-name {
  background: var(--cl-sky-logo);
  color: #ffffff;
  display: inline-block;
  font-size: 80%;
  padding: 0 5px;
  margin-left: 5px;
}

.common_post-card ul {
  width: 100%;
  padding: 0;
}
.common_post-card ul li {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(67, 64, 154, 0.2);
  border-radius: 5px;
  list-style: none;
  margin: 0 0 5px;
}
.common_post-card ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-decoration: none;
}
.common_post-card ul li a span {
  display: block;
}
.common_post-card ul li a.card {
  padding: 0;
}

.ttl_center {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .ttl_center {
    margin-bottom: 40px;
  }
}
.ttl_center span {
  display: block;
  margin: auto;
  color: var(--cl-ppl-txt);
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

.ttl_marker span {
  color: var(--cl-ppl-txt);
}

.txt_marker {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #fff59b;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.txt_center {
  text-align: center;
  margin-bottom: 10px;
}

.ttl_pick {
  padding-left: 40px;
  background: url(./img/icon_here_01.svg) no-repeat left center/contain;
}
@media screen and (max-width: 768px) {
  .ttl_pick {
    padding-left: 30px;
  }
}

.ttl_underline {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.ttl_underline:before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 50px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--cl-ppl-logo);
  border-radius: 2px;
}

/* ------------------------------ */
/* headerここから */
/* ------------------------------ */
/* ------------------------------ */
/* トップスクロールボタンここから */
/* ------------------------------ */
/*リンクの形状*/
#page-top {
  /*リンクを右下に固定*/
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent linear-gradient(var(--cl-grad)) 0% no-repeat;
  background-size: 200% auto;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background-position: 100%;
}
#page-top a i.fa-solid {
  font-size: 2rem;
  color: #ffffff;
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

/*　上に上がる動き　*/
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* ------------------------------ */
/* トップスクロールボタンここまで */
/* ------------------------------ */
/* ------------------------------ */
/* WP固定ページ出力class ここから / CSSの内容はwp-singleと一緒*/
/* ------------------------------ */
.wp-post_body.container-inner {
  word-wrap: break-word;
  word-break: break-all;
}
.wp-post_body.container-inner > * {
  margin-bottom: 2em;
}
.wp-post_body.container-inner h1 {
  border-bottom: 4px solid var(--cl-ppl-bg);
  position: relative;
  padding-bottom: 15px;
}
.wp-post_body.container-inner h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 26.6666666667%;
  height: 4px;
  background-color: var(--cl-ppl-txt);
}
.wp-post_body.container-inner h2 {
  margin-bottom: 0.7em;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  background-color: var(--cl-ppl-bg);
  padding: 0.5em 15px;
  border-width: 1px 1px 1px 4px;
  border-style: solid;
  border-color: var(--cl-ppl-bg) var(--cl-ppl-bg) var(--cl-ppl-bg) var(--cl-ppl-txt);
}
.wp-post_body.container-inner h3 {
  margin-bottom: 0.7em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--cl-ppl-txt);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.wp-post_body.container-inner h4 {
  margin-bottom: 1.5em;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 1px solid var(--cl-ppl-bg);
}
.wp-post_body.container-inner h5 {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.wp-post_body.container-inner > p {
  margin-bottom: 3em;
}
.wp-post_body.container-inner p {
  line-height: 1.6;
}
.wp-post_body.container-inner p a {
  text-decoration: underline;
}
.wp-post_body.container-inner p a:link {
  color: #0028fa;
}
.wp-post_body.container-inner p a:visited {
  color: purple;
}
.wp-post_body.container-inner p a:active {
  color: yellow;
}
.wp-post_body.container-inner p a:hover {
  color: red;
  text-decoration: none;
}
.wp-post_body.container-inner p strong {
  color: var(--cl-ppl-txt);
}
.wp-post_body.container-inner figure {
  margin-bottom: 2em;
  padding: 0 20px;
}
.wp-post_body.container-inner > ol {
  margin-bottom: 2em;
  counter-reset: number;
  font-size: 16px;
}
.wp-post_body.container-inner > ol > li {
  position: relative;
  padding-left: 40px;
}
.wp-post_body.container-inner > ol > li::before {
  counter-increment: number;
  content: counter(number) ". ";
  position: absolute;
  top: 0px;
  left: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-indent: 0.08em;
  color: var(--cl-ppl-logo);
}
.wp-post_body.container-inner ol {
  list-style-type: none !important;
  padding: 0;
}
.wp-post_body.container-inner ul {
  margin-bottom: 3em;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  list-style: none;
  padding: 0;
}
.wp-post_body.container-inner ul li {
  padding-left: 20px;
  margin-bottom: 0.5em;
  position: relative;
}
.wp-post_body.container-inner ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--cl-ppl-txt);
  border-radius: 50%;
  box-sizing: border-box;
}
.wp-post_body.container-inner .wp-embedded-content {
  margin-bottom: 1em;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wp-post_body.container-inner > * {
    margin-bottom: 20px;
  }
  .wp-post_body.container-inner h2 {
    font-size: 20px;
    padding: 0.5em 15px;
  }
  .wp-post_body.container-inner h3 {
    font-size: 18px;
  }
  .wp-post_body.container-inner h4,
  .wp-post_body.container-inner h5 {
    font-size: 16px;
  }
  .wp-post_body.container-inner figure {
    padding: 0;
  }
  .wp-post_body.container-inner .wp-embedded-content {
    width: 100%;
  }
}

/* ------------------------------ */
/* WP固定ページ出力class ここまで / CSSの内容はwp-singleと一緒*/
/* ------------------------------ */
/* ------------------------------ */
/* サブページパーツここから */
/* ------------------------------ */
.single_tag-list .tag-icon {
  color: var(--cl-ppl-contrast);
  margin: 0 0.5em 0.6em 0;
}
.single_tag-list .tag-icon i {
  color: var(--cl-ppl-contrast);
}
.single_tag-list a {
  display: inline-block;
  margin: 0 0.2em 0.6em 0;
  padding: 0.6em;
  line-height: 1;
  text-decoration: none;
  color: var(--cl-ppl-txt);
  background-color: #fff;
  border: 1px solid var(--cl-ppl-txt);
  font-size: 14px;
}
.single_tag-list a::before {
  content: "#";
}
.single_tag-list a:hover {
  background: var(--cl-ppl-bg);
  transition: 0.5;
}

.blog-under {
  border-top: solid 1px #ccc;
}
.blog-under .container-inner {
  max-width: 900px;
  padding: 80px 0 0;
}
@media screen and (max-width: 480px) {
  .blog-under .container-inner {
    padding: 80px 0 100px;
  }
}
.blog-under .blog_under_txt {
  margin-bottom: 40px;
}

.tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip i {
  margin: 0;
  padding: 0;
}

.tooltip_fukidashi {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 250px;
}

.tooltip_fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-top: 15px solid #000;
  border-right: 15px solid transparent;
  margin-left: -15px;
}

.tooltip:hover .tooltip_fukidashi {
  display: inline-block;
  top: -70px;
  left: 0;
}

/*
	Theme Name: プロテーナム用テーマ（リニューアル版）
	Theme URI: https://proteinum.co.jp/
	Description: プロテーナム コーポレートサイトのリニューアル版テーマ2023年8月より開始。
	Version: 1.0.0
	Author: WEB企画パートナーズ
	Author URI: https://wk-partners.co.jp/homepage/
*/
/* 『scssファイル概要』
===================================================
**
	【コンパイル趣旨】
	scssにてcssファイルをコンパイル出力します。
	scssファイルはそれぞれページごとに作成し、コンパイル出力は1つのstyle.cssファイルにまとめて出力します。
	style.scssを基軸とし、その他のscssファイルはすべてパーシャルファイルとします。

	【スタイルシート構成・目次】
	style.scss			=> サイト全体に影響する共通性を持ったクラスを定義します。ヘッダー・フッター・セクションタイトル・下層ページトップetc。またリセットcssとデフォルトcssの再定義も行います。
	_front-page.scss	=> トップページに登場するクラスを定義します。

**
====================================================== */
/* 『ブレイクポイント』
===================================================
	**
	本サイトのコンテンツ基本幅は1200pxであることから
	ブレイクポイントは以下の通り３段階とする。
	・PC：1241px～
	・タブレット：768px～1240px
	・スマホ：376～767px
	・スマホ2：0～375px
	※ブレイクポイントの設置記述は、
		@media screen and (max-width: 1240px) {}
		@media screen and (max-width: 767px) {}
		@media screen and (max-width: 375px) {}
	とする。
	**
==================================================== */
.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設定
==================================================== */
/* ===================================================
	セクションタイトル
====================================================== */
.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.3684210526;
  letter-spacing: 0.16em;
}
.section-title .emphasis {
  color: var(--cl-ppl-txt);
}

.section-title-en {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.12em;
  color: var(--cl-ppl-txt);
}

.section-description {
  margin-top: 16px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.625;
}
.section-subtitle .emphasis {
  color: var(--cl-ppl-txt);
}

@media screen and (max-width: 1240px) {
  .section-title {
    font-size: 34px;
  }
  .section-subtitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 26px;
    line-height: 1.3076923077;
  }
  .section-subtitle {
    font-size: 24px;
  }
  .section-title-en {
    font-size: 14px;
  }
  .section-description {
    margin-top: 4px;
    text-align: left;
  }
}
@media screen and (max-width: 320px) {
  .section-title {
    font-size: 24px;
  }
}
/* ===================================================
	小セクションタイトル
====================================================== */
.other-section-title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3684210526;
}
.other-section-title .emphasis {
  color: var(--cl-ppl-txt);
}

@media screen and (max-width: 767px) {
  .other-section-title {
    font-size: 24px;
    line-height: 1.3076923077;
  }
}
/* ===================================================
	パンくずリスト
====================================================== */
.breadcrumb-section.bg-white {
  background-color: #fff;
}

.breadcrumb__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 50px;
  list-style: none;
}
.breadcrumb__content li:not(:first-child) {
  position: relative;
}
.breadcrumb__content li:not(:first-child)::before {
  content: ">";
  position: absolute;
  left: -14px;
}
.breadcrumb__content li a {
  transition: opacity 300ms;
}
.breadcrumb__content li a:hover {
  opacity: 0.7;
}
.breadcrumb__content li:last-child {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .breadcrumb__content {
    padding: 6px 20px;
  }
}
/* ===================================================
	ボタン
====================================================== */
.linkbutton {
  display: inline-block;
  width: min(300px, 100%);
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  background-color: #001432;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 300ms;
}
.linkbutton .icon {
  position: absolute;
  width: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.linkbutton .prev {
  left: 20px;
}
.linkbutton .next {
  right: 20px;
}
.linkbutton:hover {
  opacity: 0.7;
}

/* ===================================================
	下層ページMV
====================================================== */
.subpage-mv-section {
  padding: 20px 0 0;
  background-color: #f2f8fa;
}

.subpage-mv-inner {
  display: flex;
}

.subpage-mv-copyright-wrap {
  flex: 50px 0 0;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 9px;
}

.subpage-mv-visual-wrap {
  flex: auto 1 1;
  position: relative;
  overflow: hidden;
  border-radius: 48px 0 0 48px;
  height: 340px;
}
.subpage-mv-visual-wrap .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.subpage-mv-text-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 20, 50, 0.4);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px 0 0;
}

.subpage-mv-title-en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.subpage-mv-title {
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

@media screen and (max-width: 1240px) {
  .subpage-mv-visual-wrap {
    border-radius: 36px 0 0 36px;
    height: 260px;
  }
  .subpage-mv-title-en {
    font-size: 16px;
  }
  .subpage-mv-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .subpage-mv-section {
    padding: 10px 0 0;
  }
  .subpage-mv-copyright-wrap {
    flex: 20px 0 0;
  }
  .subpage-mv-copyright {
    display: none;
  }
  .subpage-mv-visual-wrap {
    border-radius: 24px 0 0 24px;
    height: 180px;
  }
  .subpage-mv-text-wrap {
    padding: 0 15px 0 0;
  }
  .subpage-mv-title {
    font-size: 28px;
  }
}
/* ===================================================
	通常記事一覧
====================================================== */
.entry__time {
  font-weight: 700;
  display: block;
  margin: 10px auto;
}

.common_category-name {
  background: var(--cl-sky-logo);
  color: #ffffff;
  display: inline-block;
  font-size: 80%;
  padding: 0 5px;
  margin-left: 5px;
}

.standard-archive-articles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 30px;
  justify-content: flex-start;
}
.standard-archive-articles .entry {
  width: calc(33.3333333333% - 20px);
}
.standard-archive-articles .entry__inner img {
  height: auto;
}
.standard-archive-articles .entry__time {
  font-weight: 700;
  display: block;
  margin: 10px auto;
}
.standard-archive-articles .common_category-name {
  background: var(--cl-sky-logo);
  color: #ffffff;
  display: inline-block;
  font-size: 80%;
  padding: 0 5px;
  margin-left: 5px;
}
.standard-archive-articles .read_more {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .standard-archive-articles .entry {
    width: 100%;
  }
}

.standard-archive-block {
  width: calc(33.3333333333% - 20px);
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: opacity 300ms;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  height: auto !important;
  flex-shrink: 1;
  background-color: #fff;
}
.standard-archive-block:hover {
  opacity: 0.7;
}

.standard-archive-thumbnails {
  aspect-ratio: auto 380/220;
  flex: auto 0 0;
  overflow: hidden;
}
.standard-archive-thumbnails img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.standard-archive-excerpt {
  border-radius: 0 0 8px 8px;
  padding: 10px 54px 10px 24px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: transparent var(--cl-ppl-bg) var(--cl-ppl-bg);
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.standard-archive-excerpt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 12px;
  height: 16px;
  background: url(./img/icon-arrow05.png) center center/contain no-repeat;
}

.standard-archive-title {
  margin-bottom: auto;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.standard-archive-description {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6923076923;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3.3846153846em;
}

.standard-archive-categories {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 4px;
}

.standard-archive-category {
  font-size: 11px;
  color: #aab4be;
}

@media screen and (max-width: 1240px) {
  .standard-archive-block {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .standard-archive-articles {
    -moz-column-gap: initial;
    column-gap: initial;
    row-gap: 20px;
  }
  .standard-archive-block {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
  }
  .standard-archive-thumbnails {
    aspect-ratio: 550/340;
  }
  .standard-archive-excerpt {
    padding: 10px 23px 10px 14px;
    flex-basis: 117px;
  }
  .standard-archive-excerpt::after {
    top: auto;
    bottom: 10px;
    right: 10px;
    transform: none;
  }
}
/* ===================================================
	通常個別記事ページ
====================================================== */
.standard-single-section {
  padding: 0 0 100px;
}

.standard-single-inner {
  display: flex;
  justify-content: space-between;
}

.standard-single-main {
  width: 780px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.standard-single-sub {
  width: 240px;
}

.standard-single-company {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--cl-ppl-txt);
}

.standard-single-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
}

.standard-single-categories-wrap {
  margin-bottom: 10px;
}

.standard-single-categories-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 9px;
  column-gap: 9px;
  row-gap: 4px;
}

.standard-single-category {
  border: 1px solid var(--cl-ppl-txt);
  color: var(--cl-ppl-txt);
  border-radius: 4px;
  padding: 0 10px;
  height: 30px;
  font-size: 12px;
  line-height: 28px;
}

.standard-single-header {
  border-bottom: 4px solid var(--cl-ppl-bg);
  position: relative;
}
.standard-single-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 26.6666666667%;
  height: 4px;
  background-color: var(--cl-ppl-txt);
}

.standard-single-body {
  padding: 10px 0;
}

.standard-single-thumbnails {
  margin-bottom: 60px;
  border-radius: 5px;
  overflow: hidden;
}
.standard-single-thumbnails img {
  width: 100%;
  height: auto;
}

.standard-single-footer {
  margin-top: 50px;
}

.standard-single-backbutton-wrap {
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .standard-single-inner {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .standard-single-main {
    width: 520px;
  }
  .standard-single-sub {
    width: 200px;
  }
  .standard-single-title {
    font-size: 30px;
  }
  .standard-single-body {
    padding: 20px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .standard-single-section {
    padding: 0;
  }
  .standard-single-inner {
    -moz-column-gap: initial;
    column-gap: initial;
    row-gap: 40px;
    flex-direction: column;
  }
  .standard-single-main,
  .standard-single-sub {
    width: auto;
  }
  .standard-single-title {
    font-size: 26px;
  }
  .standard-single-body {
    padding: 20px 0 0;
  }
  .standard-single-thumbnails {
    margin-bottom: 40px;
  }
}
/* ===================================================
    通常個別記事ページの出力タグ（見出し・段落・リストなど）
====================================================== */
.content {
  word-wrap: break-word;
  word-break: break-all;
}
.content > * {
  margin-bottom: 2em;
}
.content h2 {
  margin-bottom: 0.7em;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  background-color: var(--cl-ppl-bg);
  padding: 0.5em 15px;
  border-width: 1px 1px 1px 4px;
  border-style: solid;
  border-color: var(--cl-ppl-bg) var(--cl-ppl-bg) var(--cl-ppl-bg) var(--cl-ppl-txt);
}
.content h3 {
  margin-bottom: 0.7em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--cl-ppl-txt);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.content h4 {
  margin-bottom: 1.5em;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 1px solid var(--cl-ppl-bg);
}
.content h5 {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.content > p {
  margin-bottom: 3em;
}
.content p {
  line-height: 1.6;
}
.content p a {
  text-decoration: underline;
}
.content p a:link {
  color: #0028fa;
}
.content p a:visited {
  color: purple;
}
.content p a:active {
  color: yellow;
}
.content p a:hover {
  color: red;
  text-decoration: none;
}
.content p strong {
  color: var(--cl-ppl-txt);
}
.content figure {
  margin-bottom: 2em;
  padding: 0 20px;
}
.content > ol {
  margin-bottom: 2em;
  counter-reset: number;
  font-size: 16px;
}
.content > ol > li {
  position: relative;
  padding-left: 40px;
}
.content > ol > li::before {
  counter-increment: number;
  content: counter(number) ". ";
  position: absolute;
  top: 0px;
  left: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-indent: 0.08em;
  color: var(--cl-ppl-logo);
}
.content ol {
  list-style-type: none !important;
  padding: 0;
}
.content ul {
  margin-bottom: 3em;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  list-style: none;
  padding: 0;
}
.content ul li {
  padding-left: 20px;
  margin-bottom: 0.5em;
  position: relative;
}
.content ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--cl-ppl-txt);
  border-radius: 50%;
  box-sizing: border-box;
}
.content .wp-embedded-content {
  margin-bottom: 1em;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .content > * {
    margin-bottom: 20px;
  }
  .content h2 {
    font-size: 20px;
    padding: 0.5em 15px;
  }
  .content h3 {
    font-size: 18px;
  }
  .content h4,
  .content h5 {
    font-size: 16px;
  }
  .content figure {
    padding: 0;
  }
  .content .wp-embedded-content {
    width: 100%;
  }
}
/* ===================================================
    通常個別記事ページの目次リスト
====================================================== */
#toc_container {
  margin-bottom: 3em;
  padding: 30px 40px 35px;
  width: 100% !important;
}
#toc_container p.toc_title {
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--cl-ppl-txt);
}
#toc_container span.toc_toggle {
  font-size: 75%;
}
#toc_container a {
  color: rgba(17, 17, 17, 0.6);
}
#toc_container a:hover {
  text-decoration: none;
}
#toc_container .toc_toggle a {
  color: inherit;
}
#toc_container ul {
  font-weight: inherit;
}
#toc_container .toc_list li {
  font-size: 16px;
}
#toc_container .toc_list li::before {
  content: none;
}
#toc_container .toc_list > li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(185, 185, 185, 0.6);
}
#toc_container .toc_list > li ul li {
  margin-top: 10px;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  #toc_container {
    padding: 20px 20px 30px;
  }
  #toc_container ul ul {
    margin-left: 1em;
  }
  #toc_container .toc_list li {
    font-size: 18px;
  }
  #toc_container .toc_list > li + li {
    margin-top: 12px;
    padding-top: 12px;
  }
  #toc_container .toc_list > li ul li {
    font-size: 16px;
  }
}
/* ===================================================
	サイドバーのブロック
====================================================== */
.sidebar-categories-wrap {
  overflow: hidden;
}
.sidebar-categories-wrap:not(:last-child) {
  margin-bottom: 40px;
}

.sidebar-categories-title {
  background-color: var(--cl-ppl-contrast);
  height: 50px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 50px;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

.sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sidebar-categories-list li {
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}
.sidebar-categories-list li a {
  display: inline-block;
  text-decoration: none;
  padding: 20px;
  width: 100%;
}
.sidebar-categories-list li a i {
  color: var(--cl-ppl-logo);
  margin-right: 10px;
}
.sidebar-categories-list li a:hover {
  background: var(--cl-ppl-bg);
  transition: 0.5;
}

.sidebar-categories-item:not(:first-child) {
  border-top: 1px solid #aab4be;
}
.sidebar-categories-item a {
  display: flex;
  align-items: center;
  height: 50px;
  line-height: 1.2;
  padding: 0 28px 0 14px;
  position: relative;
  transition: opacity 300ms;
}
.sidebar-categories-item a:hover {
  opacity: 0.7;
}
.sidebar-categories-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 12px;
  background: url(./img/icon-arrow05.png) center center/cover no-repeat;
  transform: translateY(-50%);
}

/* ===================================================
	ページネーション(WPテンプレタグを使用)
====================================================== */
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.pagination .nav-links > * {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 50px;
  text-indent: 0.12em;
}
.pagination .nav-links > a {
  background-color: #eaf2fa;
  transition: opacity 300ms;
}
.pagination .nav-links > a:hover {
  opacity: 0.5;
}
.pagination .nav-links > .current {
  background-color: var(--cl-ppl-txt);
  color: #fff;
}
.pagination .nav-links > .prev,
.pagination .nav-links > .next {
  border: 1px solid #001432;
  background-color: transparent;
  position: relative;
}
.pagination .nav-links > .prev {
  margin-right: 10px;
}
.pagination .nav-links > .next {
  margin-left: 10px;
}
.pagination .nav-links > .prev .arrow,
.pagination .nav-links > .next .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .pagination .nav-links {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
  .pagination .nav-links > * {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
  .pagination .nav-links > a:hover {
    opacity: 1;
  }
  .pagination .nav-links > .prev {
    margin-right: 8px;
  }
  .pagination .nav-links > .next {
    margin-left: 8px;
  }
}
/* ===================================================
	個別記事ページ下部のライター
====================================================== */
.writer-container {
  margin: 100px 0 60px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 23px 23px 23px 150px;
  position: relative;
}

.writer-img {
  position: absolute;
  width: 105px;
  top: 23px;
  left: 23px;
}

.writer-name {
  font-size: 17px;
  font-weight: bold;
}
.writer-name span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.5);
  display: block;
  margin-bottom: 5px;
}
.writer-name p {
  font-size: 14px;
  opacity: 0.6;
  display: inline-block;
  margin: 0 0 0 15px;
  font-weight: 500;
}

.writer-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .writer-conttainer-container {
    margin: 70px 0 40px;
    padding: 15px;
    position: relative;
  }
  .writer-conttainer-flex {
    display: flex;
    gap: 20px;
  }
  .writer-conttainer-img {
    position: static;
    width: 80px;
  }
  .writer-conttainer-name {
    width: calc(100% - 100px);
    font-size: 16px;
    font-weight: bold;
  }
  .writer-conttainer-name span {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .writer-conttainer-name p {
    font-size: 12px;
    display: block !important;
    margin: 5px 0 0;
    line-height: 1.5;
  }
  .writer-conttainer-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ===================================================
	個別記事ページ下部の送信フォーム
====================================================== */
.blog-form-section p {
  font-size: 18px;
}
.blog-form-section .caution {
  font-size: 15px;
}
.blog-form-section .essential {
  display: inline-block;
  color: #db1f1f;
  font-size: 11px;
  width: 13px;
  vertical-align: top;
}
.blog-form-section .regular th,
.blog-form-section .regular td {
  padding: 25px 20px;
  font-size: 16px;
}
.blog-form-section .regular th {
  text-align: left;
  width: 220px;
  border-top: 1px solid #999;
  position: relative;
}
.blog-form-section .regular th .essential {
  position: absolute;
  left: 8px;
  vertical-align: top;
}
.blog-form-section .regular td {
  width: calc(100% - 220px);
  border-top: 1px solid #c1c1c1;
}
.blog-form-section .regular tr:last-child th {
  border-bottom: 1px solid #999;
}
.blog-form-section .regular tr:last-child td {
  border-bottom: 1px solid #c1c1c1;
}
.blog-form-section .regular input[type=text], .blog-form-section .regular input[type=tel], .blog-form-section .regular input[type=email], .blog-form-section .regular input[type=url] {
  font-size: 16px;
  padding: 10px;
  border-radius: 3px;
  outline: 0;
  border: 1px solid #ccc;
  width: 100%;
  color: #111;
}
.blog-form-section .regular textarea {
  font-size: 16px;
  padding: 10px;
  border-radius: 3px;
  outline: 0;
  border: 1px solid #ccc;
  width: 100%;
  color: #111;
}
.blog-form-section .privacy {
  margin-top: 50px;
  text-align: center;
}
.blog-form-section .privacy input[type=checkbox] {
  border-radius: 2px;
  border: 1px solid rgb(118, 118, 118);
  width: 14px;
  height: 14px;
  position: relative;
}
.blog-form-section .privacy input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  width: 3px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(35deg);
}
.blog-form-section .privacy input[type=checkbox]:checked {
  border-color: #1b8eff;
  background-color: #1b8eff;
}
.blog-form-section .privacy input[type=checkbox].wpcf7c-conf {
  border-color: #999;
  background-color: #999;
}
.blog-form-section .form_submit {
  margin-top: 80px;
  text-align: center;
}
.blog-form-section .form_submit p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-form-section .form_submit input[type=submit], .blog-form-section .form_submit input[type=button] {
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  height: 68px;
  border-radius: 34px;
  border-style: solid;
  border-width: 3px;
  width: 100%;
  max-width: 430px;
  color: #fff;
  transition: color 250ms, background-color 250ms, background-image 250ms;
  background: url(./img/icon-arrow01.png) calc(100% - 40px) center/9px 14px no-repeat;
}
.blog-form-section .form_submit input[type=submit] {
  border-color: var(--cl-ppl-txt);
  background-color: var(--cl-ppl-txt);
}
.blog-form-section .form_submit input[type=submit]:hover {
  background-color: #fff;
  background-image: url(./img/icon-arrow07.png);
  color: var(--cl-ppl-txt);
}
.blog-form-section .form_submit input[type=button] {
  border-color: #262626;
  background-color: #262626;
}
.blog-form-section .form_submit input[type=button]:hover {
  background-color: #fff;
  background-image: url(./img/icon-arrow08.png);
  color: #262626;
}

@media screen and (max-width: 1240px) {
  .blog-form-section p {
    font-size: 16px;
  }
  .blog-form-section .regular th {
    width: 150px;
  }
  .blog-form-section .regular td {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 767px) {
  .blog-form-section .regular th,
  .blog-form-section .regular td {
    padding: 14px 0;
  }
  .blog-form-section .regular tr {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
  .blog-form-section .regular th {
    padding-left: 14px;
    padding-bottom: 0;
    width: auto;
  }
  .blog-form-section .regular td {
    border-top: 0;
    width: auto;
  }
  .blog-form-section .regular tr:last-child th {
    border-bottom: 0;
  }
  .blog-form-section .regular th .essential {
    left: 0;
  }
  .blog-form-section .privacy {
    margin-top: 40px;
  }
  .blog-form-section .form_submit + .form_submit {
    margin-top: 20px;
  }
}
/* ===================================================
	各ページ全体の背景
====================================================== */
/* アーカイブページ */
.post-type-archive-service,
.page-service {
  background-color: #eaf2fa;
}

/* 固定ページ */
/* ===================================================
	404ページ
====================================================== */
.notfound-section {
  padding: 120px 0;
}

.notfound-inner {
  text-align: center;
}

.notfound-link-back-wrap {
  margin-top: 40px;
}

@media screen and (max-width: 1240px) {
  .notfound-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .notfound-section {
    padding: 40px 0;
  }
}
/* ===================================================
	サポート実績一覧ページ：企業ロゴ一覧セクション
====================================================== */
.works-support-company-logo-section {
  padding: 10px 0 50px;
  background-color: #f2f8fa;
}

.works-support-company-logo-inner {
  padding: 0 50px;
}

.works-support-company-logo-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
}

.works-support-company-logo-item {
  border-radius: 6px;
  flex: calc(20% - 8px) 0 0;
  background-color: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  aspect-ratio: 212/80;
  overflow: hidden;
}
.works-support-company-logo-item .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 1240px) {
  .works-support-company-logo-inner {
    padding: 0 42px;
  }
  .works-support-company-logo-item {
    flex-basis: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 767px) {
  .works-support-company-logo-inner {
    padding: initial;
  }
  .works-support-company-logo-item {
    border-radius: 4px;
  }
}
/* ===================================================
	サポート実績一覧ページ：記事一覧セクション
====================================================== */
.works-archive-section {
  padding: 60px 0 120px;
}

.works-archive-categories-wrap {
  margin-bottom: 60px;
}

.works-archive-categories-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 8px;
  margin: 0 auto;
  width: 984px;
}
.works-archive-categories-list a {
  border: 1px solid var(--cl-ppl-txt);
  border-radius: 4px;
  width: 240px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  color: var(--cl-ppl-txt);
}
.works-archive-categories-list a:hover {
  border-color: rgba(0, 180, 255, 0.7);
  background-color: rgba(0, 180, 255, 0.7);
  color: #fff;
}
.works-archive-categories-list a.current {
  border-color: var(--cl-ppl-txt);
  background-color: var(--cl-ppl-txt);
  color: #fff;
  pointer-events: none;
}

.works-archive-articles-wrap {
  margin-bottom: 40px;
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
}
.works-archive-articles-wrap li {
  width: 30%;
}

@media screen and (max-width: 1240px) {
  .works-archive-categories-list {
    width: 736px;
  }
}
@media screen and (max-width: 767px) {
  .works-archive-section {
    padding: 40px 0;
  }
  .works-archive-categories-wrap {
    margin-bottom: 40px;
  }
  .works-archive-categories-list {
    width: auto;
  }
  .works-archive-categories-list a {
    border-radius: 4px;
    width: calc(50% - 4px);
    height: 42px;
    font-size: 14px;
  }
}
/* ===================================================
	サポート実績詳細ページ：関連記事一覧
====================================================== */
.works-relation-section {
  background-color: var(--cl-ppl-bg);
  padding: 70px 0 80px;
}

.works-relation-content {
  margin-top: 20px;
}

/* ===================================================
    EC虎の巻：アーカイブページ
====================================================== */
.document-archive-section {
  padding: 70px 0 120px;
}

.document-archive-categories-wrap {
  margin: 30px auto 0;
  max-width: 920px;
}

.document-archive-categories-list {
  display: flex;
  border: 1px solid var(--cl-ppl-bg);
  border-radius: 8px;
  overflow: hidden;
  flex-wrap: wrap;
}

.document-archive-category {
  width: 20%;
  border-bottom: 2px solid var(--cl-ppl-txt);
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 17px 10px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}
.document-archive-category:hover {
  background-color: rgba(0, 180, 255, 0.6);
  color: #fff;
}
.document-archive-category.current {
  color: #fff;
  background-color: var(--cl-ppl-txt);
  pointer-events: none;
}
.document-archive-category:not(:nth-child(5n+5)) {
  border-right: 1px solid var(--cl-ppl-bg);
}

.document-archive-complete-wrap {
  margin: 60px auto 0;
  max-width: 710px;
}

.document-archive-complete-block {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.document-archive-complete-block-thumbnail {
  flex: auto 0 0;
  aspect-ratio: auto 710/360;
}
.document-archive-complete-block-thumbnail .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.document-archive-complete-block-text {
  flex: auto 1 1;
  padding: 10px 20px 30px;
  text-align: center;
  letter-spacing: 0.04em;
  border-width: 0 1px 1px;
  border-color: var(--cl-ppl-bg);
  border-style: solid;
  border-radius: 0 0 8px 8px;
}

.document-archive-complete-block-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
}

.document-archive-complete-block-button-wrap {
  margin-top: 20px;
}

.document-archive-complete-block-button {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin: 0 auto;
  max-width: 340px;
  height: 60px;
  border-radius: 30px;
  background-color: #001432;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 300ms;
}
.document-archive-complete-block-button:hover {
  opacity: 0.7;
}

.document-archive-articles-wrap {
  margin-top: 60px;
  position: relative;
}

.document-archive-articles-list-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.document-archive-articles-list-wrap.current {
  position: static;
  opacity: 1;
  transition: opacity 300ms;
}

.document-archive-articles-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

.document-archive-article {
  border-radius: 8px;
  overflow: hidden;
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.document-archive-article-thumbnail {
  flex: auto 0 0;
  aspect-ratio: auto 455/225;
  overflow: hidden;
}
.document-archive-article-thumbnail .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.document-archive-article-text {
  flex: auto 1 1;
  height: 100%;
  border-radius: 0 0 8px 8px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: var(--cl-ppl-bg);
  padding: 10px 20px 30px;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.document-archive-article-title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}

.document-archive-article-button-wrap {
  margin-top: 20px;
  text-align: center;
}

.document-archive-article-button {
  max-width: 220px;
  width: 100%;
  display: inline-block;
  height: 40px;
  font-weight: 700;
  line-height: 38px;
  font-size: 13px;
  border-radius: 20px;
  border: 1px solid #001432;
}
.document-archive-article-button .icon {
  vertical-align: middle;
}
.document-archive-article-button .hover {
  position: absolute;
  top: -1000px;
  opacity: 0;
}
.document-archive-article-button:hover {
  background-color: #001432;
  color: #fff;
}
.document-archive-article-button:hover .hover {
  position: static;
  opacity: 1;
}
.document-archive-article-button:hover .nohover {
  position: absolute;
  top: -1000px;
  opacity: 0;
}

@media screen and (max-width: 1240px) {
  .document-archive-section {
    padding: 50px 0 60px;
  }
  .document-archive-category {
    font-size: 13px;
    padding: 8px;
  }
  .document-archive-complete-wrap {
    max-width: 580px;
  }
  .document-archive-complete-block-title {
    font-size: 26px;
  }
  .document-archive-article {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .document-archive-section {
    padding: 40px 0;
  }
  .document-archive-categories-list {
    flex-wrap: wrap;
  }
  .document-archive-category {
    font-size: 13px;
    padding: 8px;
    border-bottom: 1px solid var(--cl-ppl-bg);
    width: 50%;
  }
  .document-archive-category:not(:nth-child(5n+5)) {
    border-right: initial;
  }
  .document-archive-category:nth-child(odd) {
    border-right: 1px solid var(--cl-ppl-bg);
  }
  .document-archive-category:nth-child(even):last-child, .document-archive-category:nth-child(odd):nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .document-archive-complete-wrap {
    margin-top: 40px;
    max-width: none;
  }
  .document-archive-complete-block-title {
    font-size: 22px;
  }
  .document-archive-complete-block-button {
    height: 50px;
    border-radius: 25px;
    font-size: 15px;
  }
  .document-archive-articles-list {
    row-gap: 20px;
  }
  .document-archive-article {
    width: 100%;
  }
  .document-archive-article-text {
    padding: 10px 20px 20px;
  }
  .document-archive-article-title {
    font-size: 18px;
  }
}
/* ===================================================
    EC虎の巻：個別記事ページ
====================================================== */
.document-single-section {
  padding: 80px 0;
  overflow: hidden;
}

.document-single-inner {
  display: flex;
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.document-single-main {
  width: 660px;
}

.document-single-sub {
  width: calc(100% - 660px - 60px);
}

.document-single-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  border-bottom: 4px solid var(--cl-ppl-bg);
  position: relative;
  padding-bottom: 14px;
}
.document-single-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 240px;
  height: 4px;
  background-color: var(--cl-ppl-txt);
}

.document-single-thumbnail {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 18px;
}
.document-single-thumbnail img {
  width: 100%;
  height: 100%;
}

.document-single-content {
  margin-top: 60px;
}

.document-single-footer {
  margin-top: 50px;
}
.document-single-footer.tl {
  display: none;
}

@media screen and (max-width: 1240px) {
  .document-single-title {
    font-size: 30px;
  }
  .document-single-inner {
    row-gap: 60px;
    flex-direction: column;
  }
  .document-single-main,
  .document-single-sub {
    width: auto;
    flex: initial;
  }
  .document-single-footer.pc {
    display: none;
  }
  .document-single-footer.tl {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .document-single-section {
    padding: 40px 0;
  }
  .document-single-inner {
    row-gap: 40px;
  }
  .document-single-thumbnail {
    border-radius: 12px;
  }
  .document-single-title {
    font-size: 26px;
  }
  .document-single-content {
    margin-top: 40px;
  }
}
/* ===================================================
    お問い合わせページ：フォームセクション
====================================================== */
.contact-form-section {
  padding: 180px 0;
}

.contact-form-inner {
  margin: 0 auto;
  max-width: 900px;
  font-size: 16px;
}

.contact-form-content {
  margin-top: 40px;
}

.contact-form-content .zcwf_lblLeft {
  margin-top: 20px;
}

.contact-form-content .zcwf_row {
  border-top: 1px solid #c1c1c1;
  display: flex;
}

.contact-form-content .zcwf_row.last {
  border-bottom: 1px solid #999;
}

.contact-form-content .zcwf_col_lab {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  font-weight: 700;
}

.contact-form-content .zcwf_col_lab::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background-color: #999;
}

.contact-form-content .zcwf_col_fld {
  flex-grow: 1;
}

.contact-form-content .zcwf_col_lab,
.contact-form-content .zcwf_col_fld {
  padding: 25px 20px;
}

.contact-form-content input[type=checkbox] {
  width: 18px;
  height: 18px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  position: relative;
  top: 3px;
}

.contact-form-content input[type=submit] {
  max-width: 400px;
  width: 100%;
  height: 68px;
  border-radius: 5px;
  border: 3px solid var(--cl-ppl-txt);
  transition: color 300ms, background-color 300ms;
  background-color: var(--cl-ppl-txt);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.contact-form-content input[type=submit]:hover {
  background-color: #fff;
  color: var(--cl-ppl-txt);
}

.contact-form-content input[type=text],
.contact-form-content textarea {
  width: 100%;
  padding: 11px 15px;
  font-size: 16px;
  border: 1px solid #c0c6cc;
  border-radius: 3px;
}

.contact-form-content textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form-content .zcwf_col_fld_slt {
  padding: 10px;
  width: 60%;
  border: 1px solid #c0c6cc;
  border-radius: 3px;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  font-size: 16px;
}

.contact-form-item-privacy {
  padding: 25px 20px;
}

.contact-form-item-privacy label {
  font-weight: 700;
}

.contact-form-privacy {
  margin-top: 20px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 12px;
}

.contact-form-privacy a {
  text-decoration: underline;
}

.contact-form-privacy a:hover {
  text-decoration: none;
}

.contact-form-item-submit {
  margin-top: 20px;
}

@media screen and (max-width: 1240px) {
  .contact-form-section {
    padding: 120px 0;
  }
  .contact-form-content {
    margin-top: 20px;
  }
  .contact-form-content .zcwf_row {
    display: block;
  }
  .contact-form-content .zcwf_col_lab {
    width: auto;
  }
  .contact-form-content .zcwf_col_lab::before {
    content: none;
  }
  .contact-form-content .zcwf_col_lab,
  .contact-form-content .zcwf_col_fld {
    padding: 0;
  }
  .contact-form-content .zcwf_col_lab {
    padding: 30px 12px 15px;
  }
  .contact-form-content .zcwf_col_fld {
    padding: 0 0 30px;
  }
  .contact-form-content .zcwf_col_lab .required {
    left: 0;
  }
  .contact-form-content input[type=submit] {
    height: 60px;
  }
  .contact-form-content .zcwf_col_fld_slt {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-section {
    padding: 80px 0;
  }
}
/* ------------------------------ */
/* テーマCSS上書きここから */
/* ------------------------------ */
.field.has-addons {
  max-width: 900px;
  margin: auto;
}

h2.wp-block-heading {
  font-weight: bold;
  margin-bottom: 10px;
}/*# sourceMappingURL=plus.css.map */