@charset "UTF-8";
/*******************************
// 共通：下層ページ用インナー幅ラッパ
// .p-subpage__inner ... 通常コンテンツ幅 (PC max 1360px)
// .p-subpage__fv    ... 下層ページ FV エリア専用ラッパ (PC max 1500px)
********************************/
.p-subpage__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 90px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .p-subpage__inner {
    max-width: 1360px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-subpage__inner {
    padding-top: 45px;
    padding-right: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
  }
}

.p-subpage__fv {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-subpage__fv {
    max-width: 1440px;
  }
}
@media screen and (min-width: 768px) {
  .p-subpage__fv--wide {
    max-width: 1600px;
  }
}

/*******************************
// 共通コンポーネント：パンくず（c-breadcrumb）
// 対応関数: inc/component/custom_breadcrumb.php
********************************/
.c-breadcrumb {
  width: 100%;
  margin-top: 0;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    max-width: 1360px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    gap: 5px;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 11px;
    line-height: 22px;
    font-weight: 400;
  }
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 10px;
  background-color: #0065B8;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:first-child)::before {
    width: 20px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:first-child)::before {
    width: 11px;
    height: 1px;
    margin-right: 5px;
  }
}
.c-breadcrumb__link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb__link:hover {
  color: #0065B8;
}
.c-breadcrumb__home {
  display: block;
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__home {
    width: 26px;
    height: 26px;
  }
}
.c-breadcrumb__current {
  color: #333333;
}

/*******************************
// 下層ページ FV エリア（第2階層 / 記事一覧）
// 第2階層テンプレート（template-level2.php）と
// 記事一覧テンプレート（home.php = /blog/）で同一 CSS を使用
// ※第3階層は .template-level3__fv-* で別管理（後段に独立定義）
********************************/
.template-level2__fv {
  position: relative;
  overflow: hidden;
  background-color: #eef7ff;
  border-radius: 20px;
  padding-top: 40px;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .template-level2__fv {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding-top: 40px;
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .template-level2__fv {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 70px;
    border-radius: 0;
  }
}

.template-level2__fv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .template-level2__fv-inner {
    max-width: 1360px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .template-level2__fv-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.template-level2__fv-inner .c-breadcrumb {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  text-align: left;
}

.template-level2__fv-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .template-level2__fv-title {
    font-size: 48px;
    margin-bottom: 25px;
  }
}

.template-level2__fv-lead {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .template-level2__fv-lead {
    font-size: 16px;
  }
}

.template-level2__fv-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 200px;
  background-image: url("../img/base/temp2_fv.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .template-level2__fv-deco {
    width: 580px;
    height: 365px;
  }
}
@media screen and (max-width: 767px) {
  .template-level2__fv-deco {
    width: 160px;
    height: 100px;
  }
}
.template-level2__fv-deco--left {
  right: auto;
  left: 0;
  width: 404px;
  height: 300px;
  background-image: url("../img/base/temp3_fv.png");
  background-position: left bottom;
}
@media screen and (max-width: 767px) {
  .template-level2__fv-deco--left {
    width: 92px;
    height: 65px;
  }
}

/*******************************
// 第3階層 メイン背景
// 第3階層全体に薄ブルー(#EEF7FF)の背景を敷く
********************************/
.template-level3 {
  background-color: #EEF7FF;
}

/*******************************
// 第3階層 article（白カード）
// 本文 + related を内包する白背景のセンタリング枠
********************************/
.template-level3__article {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  background-color: #FFFFFF;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .template-level3__article {
    max-width: 1550px;
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1610px) {
  .template-level3__article {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .template-level3__article {
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 10px;
  }
}

/*******************************
// 第3階層 本文レイアウト
// PC: 本文(左 max 865px) + TOC(右 312px) の2カラムグリッド
// related は本文・TOCの下に全幅で配置
// SP: 通常ブロック積み（TOC は非表示）
********************************/
@media screen and (min-width: 768px) {
  .template-level3__body {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "body toc"
      "related related";
    column-gap: 30px;
  }
}

.template-level3__body-inner {
  max-width: 865px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .template-level3__body-inner {
    grid-area: body;
  }
  .template-level3__related {
    grid-area: related;
  }
}

/* body-inner 内のみのデザイン上書き（FV/related には影響しない） */
.template-level3__body-inner .l3-mt-40 {
  margin-top: 40px;
}
.template-level3__body-inner .l3-h1 {
  padding-bottom: 15px;
  background-image: linear-gradient(to right, #0065B8 0%, #00ACFF 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media screen and (min-width: 768px) {
  .template-level3__body-inner .l3-h1 {
    padding-bottom: 20px;
  }
}
.template-level3__body-inner .l3-h3 {
  padding-left: 12px;
  border-left: 4px solid #0065B8;
}
@media screen and (min-width: 768px) {
  .template-level3__body-inner .l3-h3 {
    padding-left: 15px;
  }
}
.template-level3__body-inner img[src*="office_signage_oneproof.jpg"] {
  width: 400px !important;
  max-width: 100%;
}
.template-level3__body-inner img[src*="client_store_belleza.jpg"] {
  width: 400px !important;
  max-width: 100%;
}
.template-level3__body-inner img[src*="communication01.jpg"] {
  width: 500px !important;
  max-width: 100%;
}
.template-level3__body-inner img[src*="ovice.png"] {
  width: 500px !important;
  max-width: 100%;
}
.template-level3__body-inner img[src*="rakutenss.jpg"] {
  width: auto !important;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .template-level3__body-inner .l3-mt-40 {
    margin-top: 20px;
  }
  .template-level3__body-inner .l3-lead {
    margin-bottom: 25px;
  }
  .template-level3__body-inner .l3-h1 {
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
  .template-level3__body-inner .l3-h2 {
    margin-bottom: 10px;
  }
  .template-level3__body-inner .l3-h3 {
    margin-bottom: 10px;
    padding-left: 8px;
  }
  .template-level3__body-inner .l3-h4 {
    margin-bottom: 8px;
  }
  .template-level3__body-inner .l3-h5 {
    margin-bottom: 5px;
  }
  .template-level3__body-inner .l3-list-plain {
    margin-top: 8px;
    margin-bottom: 13px;
    padding-left: 13px;
  }
  .template-level3__body-inner .l3-list-bullet {
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .template-level3__body-inner .l3-list-bullet li {
    margin-bottom: 4px;
    padding-left: 11px;
  }
  .template-level3__body-inner .l3-list-numdesc {
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .template-level3__body-inner .l3-list-numdesc li {
    margin-bottom: 10px;
    padding-left: 13px;
  }
  .template-level3__body-inner .l3-list-dot {
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .template-level3__body-inner .l3-list-dot li {
    margin-bottom: 8px;
    padding-left: 13px;
  }
  .template-level3__body-inner .l3-list-num {
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .template-level3__body-inner .l3-list-num li {
    margin-bottom: 8px;
    padding-left: 15px;
  }
  .template-level3__body-inner .l3-list-step {
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .template-level3__body-inner .l3-list-step li {
    margin-bottom: 10px;
    padding-left: 15px;
  }
  .template-level3__body-inner .l3-figure {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .template-level3__body-inner .l3-figure__caption {
    margin-top: 5px;
  }
  .template-level3__body-inner .l3-cols {
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 25px;
  }
  .template-level3__body-inner .l3-cta-wrap {
    margin-top: 20px;
  }
  .template-level3__body-inner .l3-cta-wrap--start {
    margin-top: 10px;
  }
}

/*******************************
// 第3階層 TOC（目次／右カラム）
// 中身は subpage.js が DOMContentLoaded 時に自動生成する
********************************/
@media screen and (max-width: 767px) {
  .template-level3__toc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .template-level3__toc {
    grid-area: toc;
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 25px;
    padding-left: 25px;
    width: 315px;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .template-level3__toc.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.template-level3__toc-title {
  margin-top: 0;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}

.template-level3__toc-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.template-level3__toc-item {
  margin-top: 0;
  margin-bottom: 15px;
}
.template-level3__toc-item:last-child {
  margin-bottom: 0;
}

.template-level3__toc-link {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.template-level3__toc-link:hover {
  color: #0065B8;
}
.template-level3__toc-link.is-active {
  color: #0065B8;
  font-weight: 500;
}
.template-level3__toc-link.is-active::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  background-image: url("../img/home/section-label_img.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/*******************************
// 第3階層 FV エリア
// テンプレート（page-templates/template-level3.php）専用。
// 第2階層と見た目はほぼ同じだが、クラスは独立管理（共有しない）。
// 装飾画像は第2階層と同じ temp2_fv.png を使用。
********************************/
.template-level3__fv {
  position: relative;
  overflow: hidden;
  background-color: #eef7ff;
  border-radius: 20px;
  padding-top: 40px;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .template-level3__fv {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding-top: 40px;
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .template-level3__fv {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 70px;
  }
}

.template-level3__fv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .template-level3__fv-inner {
    max-width: 1360px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .template-level3__fv-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.template-level3__fv-inner .c-breadcrumb {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.template-level3__fv-parent {
  display: block;
  max-width: max-content;
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 8px;
  padding-right: 18px;
  padding-bottom: 8px;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #333333;
  background-color: #FFFFFF;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .template-level3__fv-parent {
    margin-bottom: 7px;
    padding-top: 4px;
    padding-right: 12px;
    padding-bottom: 4px;
    padding-left: 12px;
    font-size: 12px;
  }
}

.template-level3__fv-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .template-level3__fv-title {
    font-size: 48px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .template-level3__fv-title {
    margin-bottom: 0;
    font-size: 23px;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}

.template-level3__fv-lead {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .template-level3__fv-lead {
    font-size: 16px;
  }
}

.template-level3__fv-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 200px;
  background-image: url("../img/base/temp2_fv.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .template-level3__fv-deco {
    width: 580px;
    height: 365px;
  }
}
@media screen and (max-width: 767px) {
  .template-level3__fv-deco {
    width: 160px;
    height: 100px;
    background-image: url("../img/base/temp3_fv_sp.png");
  }
}

/*******************************
// 第3階層 本文（固定ページに貼り付けられる HTML）用 共通ブロック
// 編集者は cstm-wp/第3階層デザイン.html を雛形として固定ページへ貼り付け、
// このセクションで定義された汎用クラス（c-* / l3-*）を使ってページを構成する。
// 個別ページ用にクラスを増やさない（共通ここに集約する）方針。
********************************/
/* チェックアイコン付き箇条書き */
.c-list-check {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.c-list-check li {
  position: relative;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-list-check li {
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.c-list-check li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #0065B8;
  border-radius: 50%;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;
}
@media screen and (min-width: 768px) {
  .c-list-check li::before {
    top: 10px;
  }
}

/* リスト（青ドット 10×10px マーカー、l3-list-numdesc と同等のマーカー） */
.c-list-num {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.c-list-num li {
  position: relative;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-list-num li {
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.c-list-num li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0065B8;
  border-radius: 50%;
}

/* 定義表 Pattern A：左タイトル列（#eef7ff）+ 右テキスト列（#fff） */
.c-table-list {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  border-collapse: collapse;
  border-top: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-table-list {
    font-size: 16px;
  }
}
.c-table-list th,
.c-table-list td {
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px solid #ACACAC;
}
@media screen and (min-width: 768px) {
  .c-table-list th,
  .c-table-list td {
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
  }
}
.c-table-list tr:last-child > th,
.c-table-list tr:last-child > td {
  border-bottom: none;
}
.c-table-list th {
  width: 35%;
  font-weight: 700;
  background-color: #eef7ff;
}
@media screen and (max-width: 767px) {
  .c-table-list th {
    width: 30%;
  }
}
.c-table-list td {
  background-color: #ffffff;
}

/* 定義表 Pattern B：1行目 header（青） + 本文行（白）
   - .c-table-head__row          … 通常行（白背景）
   - .c-table-head__row--head    … header 行（#eef7ff 背景） */
.c-table-head {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  border-collapse: collapse;
  border-top: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-table-head {
    font-size: 16px;
  }
}
.c-table-head th,
.c-table-head td {
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px solid #ACACAC;
}
@media screen and (min-width: 768px) {
  .c-table-head th,
  .c-table-head td {
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
  }
}
.c-table-head tbody tr:last-child > th,
.c-table-head tbody tr:last-child > td {
  border-bottom: none;
}
.c-table-head__row > * {
  background-color: #ffffff;
}
.c-table-head__row--head > * {
  background-color: #eef7ff;
  font-weight: 700;
}
.c-table-head tbody th {
  width: 35%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-table-head tbody th {
    width: 30%;
  }
}

/* インフォボックス */
.c-info-box {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  background-color: #eef7ff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-info-box {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-info-box {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
}
.c-info-box p {
  margin-top: 0;
  margin-bottom: 0;
}

/* メンバーコメント（縦積み・avatar はカード外の左） */
.c-comments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-comments {
    gap: 30px;
  }
}
.c-comments__card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .c-comments__card {
    column-gap: 30px;
  }
}
.c-comments__avatar {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-comments__avatar {
    width: 90px;
    height: 90px;
  }
}
.c-comments__body {
  position: relative;
  min-width: 0;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
  background-color: #eef7ff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-comments__body {
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
  }
}
.c-comments__body::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #eef7ff;
}
@media screen and (min-width: 768px) {
  .c-comments__body::before {
    top: 35px;
  }
}
.c-comments__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 15px;
  margin-top: 0;
  margin-bottom: 12px;
}
.c-comments__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #333333;
}
.c-comments__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #849CB0;
}
.c-comments__role {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #333333;
}
.c-comments__text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-comments__text {
    font-size: 16px;
  }
}

/* FAQ */
.c-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .c-faq {
    gap: 20px;
  }
}
.c-faq__item {
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  background-color: #eef7ff;
  border-radius: 10px;
}
.c-faq__q {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 35px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-faq__q {
    padding-left: 45px;
  }
}
.c-faq__q::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-image: url("../img/base/template-level3__q.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-faq__q::before {
    width: 30px;
    height: 30px;
  }
}
.c-faq__a {
  position: relative;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-faq__a {
    padding-left: 45px;
  }
}
.c-faq__a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-image: url("../img/base/template-level3__a.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-faq__a::before {
    width: 30px;
    height: 30px;
  }
}

/*******************************
// 第2階層 / 第3階層 共通：c-section-label の SP 余白調整
********************************/
@media screen and (max-width: 767px) {
  .page-template-template-level2 .c-section-label,
  .page-template-template-level3 .c-section-label {
    margin-bottom: 5px;
  }
}

/*******************************
// 第2階層：c-breadcrumb の SP 余白上書き
********************************/
@media screen and (max-width: 767px) {
  .page-template-template-level2 .c-breadcrumb {
    margin-bottom: 15px;
  }
}

/*******************************
// 数字でみるワンプルーフ（page-id-371）固有：先頭 l3-figure の縦余白解除
// numbers_charts.png は PC のみ左に-30px寄せて配置（コンテンツ幅より若干広く見せる）
********************************/
.page-id-371 .template-level3__body-inner .l3-figure {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-id-371 .template-level3__body-inner .l3-figure {
    margin-left: -30px;
  }
}

/*******************************
// 第3階層テンプレート（page-templates/template-level3.php）固有
// 親body 自動付与クラス: .page-template-template-level3 配下のみ適用
// related = フッター上の「親(第2階層)の子ページ並び」セクション
// 本文ブロック（l3-*）は固定ページHTMLから使用
********************************/
/* 本文ブロック ------------------------------------ */
.page-template-template-level3 .l3-section {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-section {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-section {
    margin-top: 25px;
  }
}
.page-template-template-level3 .l3-section:first-of-type {
  margin-top: 0;
}
.page-template-template-level3 .l3-lead {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-lead {
    margin-bottom: 50px;
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-h1 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-h1 {
    margin-bottom: 35px;
    font-size: 28px;
  }
}
.page-template-template-level3 .l3-h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-h2 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.page-template-template-level3 .l3-h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-h3 {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.page-template-template-level3 .l3-h3--center {
  text-align: center;
}
.page-template-template-level3 .l3-h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-h4 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-h4 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.page-template-template-level3 .l3-h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-h5 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.page-template-template-level3 .l3-link {
  color: #0065B8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-template-template-level3 .l3-link:hover {
  opacity: 0.7;
}
.page-template-template-level3 .l3-link--file {
  padding-right: 22px;
  background-image: url("../img/base/linkimg.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px auto;
}
.page-template-template-level3 .l3-link--external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-template-template-level3 .l3-link--external::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-image: url("../img/base/footerlinkarrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-template-template-level3 .l3-list-plain {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-plain {
    padding-left: 25px;
  }
}
.page-template-template-level3 .l3-list-plain li {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-plain li {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-bullet {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.page-template-template-level3 .l3-list-bullet li {
  position: relative;
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-bullet li {
    padding-left: 22px;
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-bullet li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 6px;
  height: 6px;
  background-color: #333333;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-bullet li::before {
    top: 14px;
  }
}
.page-template-template-level3 .l3-list-numdesc {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.page-template-template-level3 .l3-list-numdesc li {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-numdesc li {
    padding-left: 25px;
  }
}
.page-template-template-level3 .l3-list-numdesc li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0065B8;
  border-radius: 50%;
}
.page-template-template-level3 .l3-list-numdesc__title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-numdesc__title {
    font-size: 18px;
  }
}
.page-template-template-level3 .l3-list-numdesc__body {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-numdesc__body {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-dot {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.page-template-template-level3 .l3-list-dot li {
  position: relative;
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-dot li {
    padding-left: 25px;
  }
}
.page-template-template-level3 .l3-list-dot li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0065B8;
  border-radius: 50%;
}
.page-template-template-level3 .l3-list-dot__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-dot__title {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-num {
  list-style: none;
  counter-reset: l3-list-num;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.page-template-template-level3 .l3-list-num li {
  counter-increment: l3-list-num;
  position: relative;
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 25px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-num li {
    padding-left: 30px;
  }
}
.page-template-template-level3 .l3-list-num li::before {
  content: counter(l3-list-num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #0065B8;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-num li::before {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-num__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-num__title {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-list-step {
  list-style: none;
  counter-reset: l3-list-step;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.page-template-template-level3 .l3-list-step li {
  counter-increment: l3-list-step;
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 25px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-step li {
    padding-left: 30px;
  }
}
.page-template-template-level3 .l3-list-step li::before {
  content: counter(l3-list-step) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #0065B8;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-step li::before {
    font-size: 18px;
  }
}
.page-template-template-level3 .l3-list-step__title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-step__title {
    font-size: 18px;
  }
}
.page-template-template-level3 .l3-list-step__body {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-list-step__body {
    font-size: 16px;
  }
}
.page-template-template-level3 .l3-text {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-text {
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
}
.page-template-template-level3 .l3-figure {
  margin-top: 30px;
  margin-right: 0;
  margin-bottom: 30px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-figure {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.page-template-template-level3 .l3-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-figure img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-figure img {
    border-radius: 10px;
  }
}
.page-template-template-level3 .l3-figure__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #849CB0;
  text-align: center;
}
.page-template-template-level3 .l3-figure--no-radius img {
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-figure--no-radius img {
    border-radius: 0;
  }
}
.page-template-template-level3 .l3-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-cols {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.page-template-template-level3 .l3-cols__figure {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.page-template-template-level3 .l3-cols__figure img {
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .l3-cols__figure img {
    border-radius: 5px;
  }
}
.page-template-template-level3 .l3-cols__body {
  min-width: 0;
}
.page-template-template-level3 .l3-cta-wrap {
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-cta-wrap {
    margin-top: 40px;
  }
}
.page-template-template-level3 .l3-cta-wrap--start {
  text-align: left;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .l3-cta-wrap--start {
    margin-top: 20px;
  }
}
.page-template-template-level3 .l3-map {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.page-template-template-level3 .template-level3__related {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 60px;
  border-top: 1px solid #ACACAC;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .template-level3__related {
    margin-top: 100px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-level3 .template-level3__related {
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 0;
  }
}
.page-template-template-level3 .template-level3__related-heading {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .template-level3__related-heading {
    margin-bottom: 50px;
    font-size: 32px;
  }
}
.page-template-template-level3 .template-level3__related-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .template-level3__related-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 25px;
  }
}
.page-template-template-level3 .template-level3__related-item {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.page-template-template-level3 .template-level3__related-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.page-template-template-level3 .template-level3__related-link,
.page-template-template-level3 .template-level3__related-link:visited,
.page-template-template-level3 .template-level3__related-link:active,
.page-template-template-level3 .template-level3__related-link:focus {
  color: inherit;
}
.page-template-template-level3 .template-level3__related-link:hover {
  opacity: 0.85;
}
.page-template-template-level3 .template-level3__related-thumb {
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 15px;
  margin-left: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .template-level3__related-thumb {
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
.page-template-template-level3 .template-level3__related-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.page-template-template-level3 .template-level3__related-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #333333;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-template-template-level3 .template-level3__related-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.page-template-template-level3 .template-level3__related-link:hover .template-level3__related-title {
  color: #0065B8;
}
.page-template-template-level3 .template-level3__related-desc {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  transition: color 0.3s ease;
}
.page-template-template-level3 .template-level3__related-link:hover .template-level3__related-desc {
  color: #0065B8;
}

/*******************************
// 第2階層テンプレート（page-templates/template-level2.php）固有
// 親body 自動付与クラス: .page-template-template-level2 配下のみ適用
********************************/
.page-template-template-level2 .template-level2__body {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-template-template-level2 .template-level2__body {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.page-template-template-level2 .template-level2__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .page-template-template-level2 .template-level2__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 25px;
  }
}
.page-template-template-level2 .template-level2__item {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.page-template-template-level2 .template-level2__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.page-template-template-level2 .template-level2__link,
.page-template-template-level2 .template-level2__link:visited,
.page-template-template-level2 .template-level2__link:active,
.page-template-template-level2 .template-level2__link:focus {
  color: inherit;
}
.page-template-template-level2 .template-level2__link:hover {
  opacity: 0.85;
}
.page-template-template-level2 .template-level2__thumb {
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 15px;
  margin-left: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .page-template-template-level2 .template-level2__thumb {
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
.page-template-template-level2 .template-level2__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.page-template-template-level2 .template-level2__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #333333;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-template-template-level2 .template-level2__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.page-template-template-level2 .template-level2__link:hover .template-level2__title {
  color: #0065B8;
}
.page-template-template-level2 .template-level2__desc {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  transition: color 0.3s ease;
}
.page-template-template-level2 .template-level2__link:hover .template-level2__desc {
  color: #0065B8;
}

/*******************************
// 記事一覧テンプレート（home.php = /blog/）固有
// 親body 自動付与クラス: .blog 配下のみ適用
// Figma: cA9EMCx8RJRo1lfK4kaIGB / node 549:6227
// カード(416x473): サムネ(416x268, 角丸) → カテゴリ → タイトル(3行) → 区切り線 → タグ
********************************/
.blog .p-page-blog__body,
.tag .p-page-blog__body {
  padding-top: 30px;
  padding-bottom: 60px;
}
.blog .p-page-blog__list,
.tag .p-page-blog__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .blog .p-page-blog__list,
  .tag .p-page-blog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 25px;
  }
}
.blog .p-page-blog__item,
.tag .p-page-blog__item {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.blog .p-page-blog__link,
.tag .p-page-blog__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.blog .p-page-blog__link,,
.tag .p-page-blog__link,
.blog .p-page-blog__link:visited,,
.tag .p-page-blog__link:visited,
.blog .p-page-blog__link:active,,
.tag .p-page-blog__link:active,
.blog .p-page-blog__link:focus,
.tag .p-page-blog__link:focus {
  color: inherit;
}
.blog .p-page-blog__link:hover,
.tag .p-page-blog__link:hover {
  opacity: 0.85;
}
.blog .p-page-blog__thumb,
.tag .p-page-blog__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 416/268;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 20px;
  margin-left: 0;
  border-radius: 15px;
  background-color: #eef7ff;
}
@media screen and (min-width: 768px) {
  .blog .p-page-blog__thumb,
  .tag .p-page-blog__thumb {
    border-radius: 20px;
  }
}
.blog .p-page-blog__thumb img,
.tag .p-page-blog__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .p-page-blog__noimg-category,
.tag .p-page-blog__noimg-category {
  position: absolute;
  top: 20px;
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #ffffff;
  background-color: #16223A;
}
.blog .p-page-blog__noimg-title,
.tag .p-page-blog__noimg-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  margin-top: 0;
  margin-bottom: 0;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.blog .p-page-blog__noimg-tag,
.tag .p-page-blog__noimg-tag {
  position: absolute;
  left: 50%;
  bottom: 15px;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  white-space: nowrap;
}
.blog .p-page-blog__category,
.tag .p-page-blog__category {
  display: inline-flex;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 5px;
  padding-left: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #0065B8;
  background-color: #E9F5FF;
  border-radius: 3px;
  opacity: 1;
}
.blog .p-page-blog__title,
.tag .p-page-blog__title {
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  transition: color 0.3s ease;
}
.blog .p-page-blog__link:hover .p-page-blog__title,
.tag .p-page-blog__link:hover .p-page-blog__title {
  color: #0065B8;
}
.blog .p-page-blog__tag-line,
.tag .p-page-blog__tag-line {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.blog .p-page-blog__tag,
.tag .p-page-blog__tag {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #849CB0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog .p-page-blog__tag:hover, .blog .p-page-blog__tag:focus,
.tag .p-page-blog__tag:hover, .tag .p-page-blog__tag:focus {
  color: #0065B8;
  text-decoration: underline;
}
.blog .p-page-blog__topbar,
.tag .p-page-blog__topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .blog .p-page-blog__topbar,
  .tag .p-page-blog__topbar {
    margin-bottom: 50px;
  }
}
.blog .p-page-blog__count,
.tag .p-page-blog__count {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .blog .p-page-blog__count,
  .tag .p-page-blog__count {
    font-size: 20px;
  }
}
.blog .p-page-blog__count-label,
.tag .p-page-blog__count-label {
  margin-left: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .blog .p-page-blog__count-label,
  .tag .p-page-blog__count-label {
    font-size: 14px;
  }
}
.blog .p-page-blog__nav ul.page-numbers,
.tag .p-page-blog__nav ul.page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.blog .p-page-blog__nav li,
.tag .p-page-blog__nav li {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.blog .p-page-blog__nav li > .page-numbers,
.tag .p-page-blog__nav li > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px;
  font-weight: 500;
  color: #0065B8;
  background-color: #ffffff;
  border-top: 1px solid #0065B8;
  border-right: 1px solid #0065B8;
  border-bottom: 1px solid #0065B8;
  border-left: 1px solid #0065B8;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .blog .p-page-blog__nav li > .page-numbers,
  .tag .p-page-blog__nav li > .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
.blog .p-page-blog__nav li > .page-numbers.current,
.tag .p-page-blog__nav li > .page-numbers.current {
  color: #ffffff;
  background-color: #0065B8;
}
.blog .p-page-blog__nav li > a.page-numbers:hover,
.tag .p-page-blog__nav li > a.page-numbers:hover {
  color: #ffffff;
  background-color: #0065B8;
}
.blog .p-page-blog__nav li > a.page-numbers:hover .p-page-blog__nav-arrow,
.tag .p-page-blog__nav li > a.page-numbers:hover .p-page-blog__nav-arrow {
  background-image: url("../img/base/common_cta_arrw_hover.svg");
}
.blog .p-page-blog__nav li > span.page-numbers.dots,
.tag .p-page-blog__nav li > span.page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
  color: #333333;
}
.blog .p-page-blog__nav-arrow,
.tag .p-page-blog__nav-arrow {
  display: inline-block;
  width: 13px;
  height: 6px;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}
.blog .p-page-blog__nav-arrow--prev,
.tag .p-page-blog__nav-arrow--prev {
  transform: rotate(180deg);
}
.blog .p-page-blog__nav--bottom,
.tag .p-page-blog__nav--bottom {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .blog .p-page-blog__nav--bottom,
  .tag .p-page-blog__nav--bottom {
    margin-top: 50px;
  }
}


/*******************************
// 社員インタビュー記事用：FV画像 / Q&Aブロック / 回答者カード
********************************/
.c-interview-fv {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 30px;
  margin-left: 0;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-interview-fv {
    margin-bottom: 60px;
    border-radius: 15px;
  }
}
.c-interview-fv img {
  display: block;
  width: 100%;
  height: auto;
}
