@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

body {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ========== 共通の2カラムレイアウト（サイドバー + メインコンテンツ） ========== */
.l-content-with-sidebar {
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
       -webkit-column-gap: 5rem;
               column-gap: 5rem;
  display: grid;
  grid-template-columns: 15.5rem 1fr;
}

.l-content-with-sidebar__sidebar {
  position: sticky;
  top: 80px;
  top: 5rem;
}

/* ========== 目次（TOC）共通スタイル ========== */
.l-toc__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 0.625rem 0.625rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.l-toc__header-text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.l-toc__body {
  border: 1px solid #495AFF;
  border: 0.0625rem solid #495AFF;
  border-radius: 0 0 0.625rem 0.625rem;
  border-top: none;
  padding: 24px;
  padding: 1.5rem;
}

.l-toc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.l-toc__item + .l-toc__item {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 16px;
  padding-top: 1rem;
}

.l-toc__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}

.l-toc__link-text {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.l-toc__link-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}

.l-drawer {
  display: none;
}

.l-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  margin-top: 0;
}

.l-header {
  height: 62px;
  height: 3.875rem;
  left: 50%;
  max-width: 1340px;
  max-width: 83.75rem;
  position: fixed;
  top: 50px;
  top: 3.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: top 0.3s ease-out, opacity 0.2s ease-out;
  transition: top 0.3s ease-out, opacity 0.2s ease-out;
  width: calc(100% - 6.25rem);
  z-index: 1000;
}

.l-header.is-scrolled {
  top: 10px;
  top: 0.625rem;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1282px;
  max-width: 80.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}

.l-top-showcase {
  background-color: #fff;
  border-radius: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1800px;
  max-width: 112.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.l-top-showcase::before {
  background-image: url(../images/top/bg_showcase.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
}

/* =============================================================================
 * 1. ベース + デフォルトサイズ（通常）
 * ============================================================================= */
.c-button {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  --bg-color: #fff;
  --text-color: #000;
  --circle-w: 48px;
  --circle-w: 3rem;
  --arrow-size: 36px;
  --arrow-size: 2.25rem;
  --gap: 36px;
  --gap: 2.25rem;
  --text-w: 205px;
  --text-w: 12.8125rem;
  --font-size: 14px;
  --font-size: 0.875rem;
  --total-w: calc(var(--gap) + var(--text-w));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-filter: url(#goo-item);
          filter: url(#goo-item);
  padding: 0;
  position: relative;
  text-decoration: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

/* =============================================================================
 * 2. サイズバリエーション
 * ============================================================================= */
/* --- サイズ: cta --- */
.c-button[data-base-color~=cta] {
  --circle-w: 96px;
  --circle-w: 6rem;
  --arrow-size: 72px;
  --arrow-size: 4.5rem;
  --gap: 70px;
  --gap: 4.375rem;
  --text-w: 412px;
  --text-w: 25.75rem;
  --font-size: 24px;
  --font-size: 1.5rem;
}

.c-button[data-base-color~=cta] .c-button__arrow-left img,
.c-button[data-base-color~=cta] .c-button__arrow-right img {
  aspect-ratio: 16/18;
  height: 18px;
  height: 1.125rem;
  width: 16px;
  width: 1rem;
}

/* --- サイズ: form --- */
.c-button[data-base-color~=form] {
  --circle-w: 72px;
  --circle-w: 4.5rem;
  --arrow-size: 56px;
  --arrow-size: 3.5rem;
  --gap: 45px;
  --gap: 2.8125rem;
  --text-w: 350px;
  --text-w: 21.875rem;
  --font-size: 24px;
  --font-size: 1.5rem;
}

.c-button[data-base-color~=form] .c-button__arrow-left img,
.c-button[data-base-color~=form] .c-button__arrow-right img {
  aspect-ratio: 16/18;
  height: 18px;
  height: 1.125rem;
  width: 16px;
  width: 1rem;
}

/* --- サイズ: header --- */
.c-button[data-base-color~=header] {
  --circle-w: 42px;
  --circle-w: 2.625rem;
  --arrow-size: 34px;
  --arrow-size: 2.125rem;
  --gap: 33px;
  --gap: 2.0625rem;
  --text-w: 158px;
  --text-w: 9.875rem;
  --font-size: 14px;
  --font-size: 0.875rem;
  --btn-h: 42px;
  --btn-h: 2.625rem;
}

.c-button[data-base-color~=header] .c-button__text {
  border-radius: calc(var(--btn-h) / 2);
  min-height: var(--btn-h);
}

.c-button[data-base-color~=header] .c-button__text span {
  line-height: 1;
}

.c-button:not([data-base-color~=header]) .c-button__text:has(br) span {
  line-height: 1.25;
}

/* --- サイズ: footer（PCは header と同等 / SPで通常サイズに戻す） --- */
.c-button[data-base-color~=footer] {
  --circle-w: 42px;
  --circle-w: 2.625rem;
  --arrow-size: 34px;
  --arrow-size: 2.125rem;
  --gap: 33px;
  --gap: 2.0625rem;
  --text-w: 158px;
  --text-w: 9.875rem;
  --font-size: 14px;
  --font-size: 0.875rem;
  --btn-h: 42px;
  --btn-h: 2.625rem;
}

.c-button[data-base-color~=footer] .c-button__text {
  border-radius: calc(var(--btn-h) / 2);
  min-height: var(--btn-h);
}

.c-button[data-base-color~=footer] .c-button__text span {
  line-height: 1;
}

/* =============================================================================
 * 3. スタイルバリエーション: linear（グラデーション）
 * ============================================================================= */
.c-button[data-base-color~=linear] {
  --text-color: #fff;
}

.c-button[data-base-color~=linear] .c-button__circle-left {
  background: -webkit-gradient(linear, left top, right top, from(#68e0cf), color-stop(50%, #495aff), to(#68e0cf));
  background: linear-gradient(90deg, #68e0cf 0%, #495aff 50%, #68e0cf 100%);
  background-position: 0 0;
  background-size: calc(var(--total-w) * 2) 100%;
}

.c-button[data-base-color~=linear] .c-button__text {
  background: -webkit-gradient(linear, left top, right top, from(#68e0cf), color-stop(50%, #495aff), to(#68e0cf));
  background: linear-gradient(90deg, #68e0cf 0%, #495aff 50%, #68e0cf 100%);
  background-position: calc(var(--gap) * -1) 0;
  background-size: calc(var(--total-w) * 2) 100%;
}

.c-button[data-base-color~=linear] .c-button__circle-right {
  background: -webkit-gradient(linear, left top, right top, from(#68e0cf), color-stop(50%, #495aff), to(#68e0cf));
  background: linear-gradient(90deg, #68e0cf 0%, #495aff 50%, #68e0cf 100%);
  background-position: calc((var(--total-w) - var(--circle-w)) * -1) 0;
  background-size: calc(var(--total-w) * 2) 100%;
}

.c-button[data-base-color~=linear] .c-button__arrow-left,
.c-button[data-base-color~=linear] .c-button__arrow-right {
  background: #fff;
}

.c-button[data-base-color~=linear] .c-button__arrow-left img,
.c-button[data-base-color~=linear] .c-button__arrow-right img {
  -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(94%) saturate(7498%) hue-rotate(232deg) brightness(68%) contrast(104%);
          filter: brightness(0) saturate(100%) invert(14%) sepia(94%) saturate(7498%) hue-rotate(232deg) brightness(68%) contrast(104%);
}

.c-button[data-base-color~=linear] .c-button__text span {
  line-height: 1.4;
}

/* =============================================================================
 * 4. パーツ定義（共通構造）
 * ============================================================================= */
.c-button__circle-left {
  background: var(--bg-color);
  border-radius: 50%;
  bottom: 0;
  height: var(--circle-w);
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  width: var(--circle-w);
  z-index: 1;
}

.c-button__arrow-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--arrow-size);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  width: var(--arrow-size);
  z-index: 1;
}

.c-button__arrow-left img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  height: 12px;
  height: 0.75rem;
     object-fit: contain;
  width: 12px;
  width: 0.75rem;
}

.c-button__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--bg-color);
  border-radius: calc(var(--circle-w) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: var(--gap);
  min-height: var(--circle-w);
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  width: var(--text-w);
}

.c-button__text span {
  color: var(--text-color);
  display: block;
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.13em;
  text-align: center;
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  word-break: keep-all;
  z-index: 1;
}

/* --- アイコン: download --- */
.c-button--icon-download .c-button__arrow-left img,
.c-button--icon-download .c-button__arrow-right img {
  aspect-ratio: 1/1;
  height: 13px;
  height: 0.8125rem;
  width: 13px;
  width: 0.8125rem;
}

/* =============================================================================
 * 4-b. 右側アイコン配置（c-button--right）
 * ============================================================================= */
.c-button--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-button--right .c-button__text {
  margin-left: 0;
  margin-right: var(--gap);
}

.c-button__circle-right {
  background: var(--bg-color);
  border-radius: 50%;
  bottom: 0;
  height: var(--circle-w);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  width: var(--circle-w);
  z-index: 1;
}

.c-button__arrow-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--arrow-size);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  transition: 0.4s cubic-bezier(0.6, 0, 0.16, 1);
  width: var(--arrow-size);
  z-index: 1;
}

.c-button__arrow-right img {
  -o-object-fit: contain;
  aspect-ratio: 9/8;
  height: 8px;
  height: 0.5rem;
     object-fit: contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 9px;
  width: 0.5625rem;
}

/* =============================================================================
 * 5. インタラクション（focus-visible / hover）
 * ============================================================================= */
/* --- 共通: focus-visible --- */
.c-button:focus-visible {
  opacity: 1;
}

.c-button:not(.c-button--right):focus-visible .c-button__circle-left {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.c-button--right:focus-visible .c-button__circle-right {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

/* --- linear + focus-visible: グラデーション反転 --- */
.c-button[data-base-color~=linear]:not(.c-button--right):focus-visible .c-button__text {
  background-position: calc(var(--total-w) * -1) 0;
}

.c-button[data-base-color~=linear]:focus-visible .c-button__circle-right {
  background-position: calc((var(--total-w) - var(--circle-w)) * -1 - var(--total-w)) 0;
}

/* --- 共通: hover --- */
/* =============================================================================
 * 6. SP レスポンシブ（header 以外すべて通常サイズに統一）
 * ============================================================================= */

/* グラデーションの内側に白い円 */

/* 真ん中のライン（13px） */

/* 上下のライン共通 */

/* 上ライン（8px、7px上） */

/* 下ライン（18px、7px下） */

/* ── 開いている状態（× 表示） ────────────────── */
/* 白い内側円を非表示にしてグラデーション全面に */

/* 真ん中ラインを非表示にして中央基準に切り替え */

/* ×ラインを白で表示 */

.c-section-heading__en {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.c-section-heading__ja {
  color: #000;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-transform: uppercase;
}

.c-section-heading[data-variant=sub-heading] .c-section-heading__en {
  font-size: 16px;
  font-size: 1rem;
}
.c-section-heading[data-variant=sub-heading] .c-section-heading__ja {
  font-size: 36px;
  font-size: 2.25rem;
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.c-section-title__label {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.c-section-title__heading {
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.c-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: justify;
}

.p-404 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 180px;
  padding-top: 11.25rem;
}

.p-404__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.p-404__logo {
  color: #142fc6;
  font-family: "Poppins", sans-serif;
  font-size: max(200px, 10px);
  font-size: max(12.5rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-404__title {
  font-family: "Poppins", sans-serif;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
}

.p-404__description {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-404__button {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-about-company {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-about-company__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.p-about-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-about-company__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-about-company__label {
  color: #666666;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-right: 24px;
  padding-right: 1.5rem;
  width: 29.6460176991%;
}

.p-about-company__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-about-company__value--list {
  list-style: decimal;
  margin: 0;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-about-company__value--list li {
  margin-top: 0;
}

.p-about-company__value--list li + li {
  margin-top: 0;
}

.p-about-company__value--link {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #333333;
  text-decoration: underline;
}

.p-about-company__value--link:hover {
  opacity: 0.7;
}

.p-about-company__separator {
  background-color: #d9d9d9;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
}

.p-about-member {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-about-member__list {
  grid-gap: 3.875rem 2.5rem;
  display: grid;
  gap: 62px 40px;
  gap: 3.875rem 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  margin-top: 4rem;
}

.p-about-member__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.p-about-member__card {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
  text-align: left;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.p-about-member__card-image {
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-about-member__card-image img {
  -o-object-fit: cover;
  clip-path: url(#member-frame-clip);
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about-member__card-info {
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 0.625rem;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2.5rem);
}

.p-about-member__card-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about-member__card-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-about-member__card-position {
  color: #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-about-member__card-name-jp {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-about-member__card-name-en {
  color: #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-about-member__card-icon {
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.p-about-member__card-icon svg {
  height: 100%;
  width: 100%;
}

.p-about-message {
  scroll-margin-top: 2.5rem;
}

.p-about-message__content {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.p-about-message__image-wrapper {
  position: relative;
  width: 47.7876106195%;
}

.p-about-message__image {
  aspect-ratio: 1/1;
  border-radius: 0.3125rem;
  height: auto;
  overflow: hidden;
  width: 100%;
}

.p-about-message__image img {
  -o-object-fit: cover;
  border-radius: 0.3125rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about-message__quote {
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  left: calc(100% + 5.0625rem);
  letter-spacing: 0.02em;
  line-height: 1.6;
  position: absolute;
  top: -1px;
  top: -0.0625rem;
  white-space: nowrap;
}

.p-about-message__signature {
  bottom: 32px;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  position: absolute;
  right: -53.5%;
}

.p-about-message__signature-name-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.p-about-message__signature-name-en-line {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0;
}

.p-about-message__signature-company {
  color: #666666;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.02em;
  line-height: 1.857;
  margin: 0;
}

.p-about-message__description {
  color: #0a0a0a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  gap: 40px;
  gap: 2.5rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 64px;
  margin-top: 4rem;
}

.p-about-message__description-column {
  width: 432px;
  width: 27rem;
}

.p-about-message__description-column p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about-message__description-column p:first-child {
  margin-top: 0;
}

.p-about-vision {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-about-vision__contents {
  background: url("../images/about/vision-bg.png") no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  padding-left: 7.0796460177%;
  padding-right: 7.0796460177%;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-about-vision__slogan {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-about-vision__section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-about-vision__section-label {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-about-vision__section-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-about-vision__section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about-vision__logos {
  grid-gap: 2.5rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-about-vision__logo {
  border-radius: 0.3125rem;
  overflow: hidden;
}

.p-about-vision__logo img {
  aspect-ratio: 368/120;
  height: auto;
  width: 100%;
}

.p-about-vision__section-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-about-vision__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  gap: 0.5625rem;
}

.p-about-vision__visual img {
  aspect-ratio: 776/223;
  display: block;
  height: auto;
  width: 100%;
}

.p-about-vision__visual-copyright {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-about__content {
  margin-bottom: 168px;
  margin-bottom: 10.5rem;
  margin-top: 122px;
  margin-top: 7.625rem;
}

/* ========== サイドバー: 目次 ========== */
.p-aside {
  position: sticky;
  top: 80px;
  top: 5rem;
}

.p-aside__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 0.625rem 0.625rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-aside__header-text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-aside__body {
  border: 1px solid #495aff;
  border: 0.0625rem solid #495aff;
  border-radius: 0 0 0.625rem 0.625rem;
  border-top: none;
  padding: 24px;
  padding: 1.5rem;
}

.p-aside__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-aside__item + .p-aside__item {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 16px;
  padding-top: 1rem;
}

.p-aside__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-aside__link-text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-aside__link::after {
  background-image: url("../images/common/icon_arrow_circle_bottom.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}

.p-breadcrumb {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow-x: clip;
}

.p-breadcrumb a {
  color: #142fc6;
}

.p-breadcrumb__wrapper {
  -ms-overflow-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}

.p-breadcrumb__wrapper::-webkit-scrollbar {
  display: none;
}

.p-breadcrumb span[property=itemListElement]:nth-child(n+2) {
  -moz-column-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
       -webkit-column-gap: 1rem;
               column-gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-breadcrumb span[property=itemListElement]:nth-child(n+2)::before {
  background-color: #d9d9d9;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  width: 32px;
  width: 2rem;
}

.p-breadcrumb span[property=itemListElement]:last-child span {
  padding-right: 16px;
  padding-right: 1rem;
}

.p-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-card__image {
  border-radius: 0.3125rem;
  overflow: hidden;
}

.p-card__image img {
  -o-object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
  height: auto;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 100%;
}

.p-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-card__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #000;
  display: -webkit-box;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
  overflow: hidden;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.p-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-card__tag-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-card__tag-label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e7eaf9;
  border-radius: 3.125rem;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  white-space: nowrap;
  width: 28.5%;
}

.p-card__tag-value {
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.p-cards {
  grid-gap: 2.5rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.p-contact {
  padding-bottom: 160px;
  padding-bottom: 10rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-contact__description {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-align: center;
}

.p-contact__require {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}
.p-contact__require::before {
  background-color: #142fc6;
  border-radius: 50%;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 5px;
  height: 0.3125rem;
  width: 5px;
  width: 0.3125rem;
}

.p-contact__content {
  background-image: url(../images/form/bg_contact.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 120px;
  padding: 7.5rem;
}

.p-contact__container shn-form-viewer {
  border: none;
  display: block;
}

.p-contact__note {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact__note-text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-align: center;
}

.p-contact__note-text a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  color: #142fc6;
  text-decoration: underline;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  text-underline-offset: 0.125rem;
}

.p-contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact__privacy {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-contact__privacy-heading {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-contact__privacy-box {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
  max-height: 195px;
  max-height: 12.1875rem;
  overflow-y: auto;
  padding: 24px;
  padding: 1.5rem;
}

.p-contact__privacy-list {
  list-style: decimal;
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 1.5em;
}

.p-contact__privacy-item + .p-contact__privacy-item {
  margin-top: 16px;
  margin-top: 1rem;
}

/* （the_content()で出力したものへのスタイル） */
.p-content :where(.wp-block-image,
.wp-block-gallery,
.wp-block-columns,
.wp-block-table,
.wp-block-media-text,
.wp-block-embed,
blockquote,
ul,
ol,
.wp-block-group.is-layout-flex):not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-content h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  scroll-margin-top: 3.125rem;
}

.p-content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-content h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-content p {
  color: #0a0a0a;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-content p strong {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}

.p-content p a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #142fc6;
  letter-spacing: 0.1em;
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-underline-offset: 0.125rem;
}

.p-content p a[target=_blank] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.p-content p a[target=_blank]::after {
  background: url("../images/common/icon-target_blank.svg") no-repeat center center/contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 15px;
  height: 0.9375rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 16px;
  width: 1rem;
}

.p-content mark {
  letter-spacing: 0.1em;
  line-height: 2;
}

.p-content blockquote {
  background-color: #E7EAF9;
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding: 40px;
  padding: 2.5rem;
}

.p-content blockquote > p {
  color: #000;
}

.p-content blockquote cite {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-content li {
  color: #111111;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-content ul,
.p-content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
}

.wp-block-list + .wp-block-list {
  margin-top: 32px !important;
  margin-top: 2rem !important;
}

.p-content ul > li {
  padding-left: 14px;
  padding-left: 0.875rem;
  position: relative;
}

.p-content ul > li::before {
  background-color: #142fc6;
  border-radius: 50%;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 0;
  position: absolute;
  top: 0.9em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  width: 0.375rem;
}

.p-content ol {
  counter-reset: p-content-ol 0;
}

.p-content ol > li {
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}

.p-content ol > li::before {
  color: #142fc6;
  content: counter(p-content-ol) ". ";
  counter-increment: p-content-ol 1;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  left: 0;
  letter-spacing: 0;
  line-height: 1.6;
  position: absolute;
  top: 0;
}

.p-privacy .p-content ol > li::before {
  color: #000;
}

.p-content ol > li > ol {
  counter-reset: p-content-ol-nested 0;
  margin-left: -5px;
  margin-left: -0.3125rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-content ol > li > ol > li {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-content ol > li > ol > li::before {
  color: #142fc6;
  content: counter(p-content-ol-nested, lower-alpha) ". ";
  counter-increment: p-content-ol-nested 1;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-content ul ul,
.p-content ul ol,
.p-content ol ul,
.p-content ol ol {
  margin-left: 10px;
  margin-left: 0.625rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-content .wp-block-group.is-layout-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  gap: 2.5rem;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image {
  margin-top: 0 !important;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image {
  width: 50%;
}

.p-content figcaption {
  color: #0a0a0a;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content .wp-block-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-content a.c-button {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-content .wp-block-table {
  color: #0a0a0a;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-content .wp-block-table a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  color: #142fc6;
  text-decoration: underline;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  text-underline-offset: 0.125rem;
}

.p-cta {
  background-image: url(../images/common/bg_cta_contact.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem 1.875rem 0 0;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
}

.p-cta::before {
  background-image: url(../images/common/bg_cta_contact_mask.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem 1.875rem 0 0;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
}

.p-cta__inner {
  max-width: 1078px;
  max-width: 67.375rem;
  position: relative;
}

.p-cta__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
  gap: 3.625rem;
  position: relative;
  z-index: 1;
}

.p-cta .c-section-heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.p-cta .c-section-heading__ja {
  color: #fff;
}

.p-cta__buttons {
  grid-gap: 3.625rem;
  display: grid;
  gap: 58px;
  gap: 3.625rem;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.p-cta__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}

.p-cta__button-text {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* 投稿ブロックカスタムパターン */
/* 画像１枚(サイズ固定)パターン */
.p-custom__gallery1.wp-block-image {
  width: 100%;
}
.p-custom__gallery1.wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 904/603;
  height: auto;
     object-fit: cover;
  width: 100%;
}

/* 【縦長】画像２枚ギャラリーパターン */
.p-custom__gallery2-tall.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-custom__gallery2-tall.wp-block-gallery.wp-block-gallery-is-layout-flex {
  gap: 40px;
  gap: 2.5rem;
}

.p-custom__gallery2-tall.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.p-custom__gallery2-tall.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.p-custom__gallery2-tall figure.wp-block-image {
  width: 50%;
}
.p-custom__gallery2-tall figure.wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 1080/1350;
  height: auto;
     object-fit: cover;
  width: 100%;
}

/* 【横長】画像２枚ギャラリーパターン */
.p-custom__gallery2-wide.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-custom__gallery2-wide.wp-block-gallery.wp-block-gallery-is-layout-flex {
  gap: 40px;
  gap: 2.5rem;
}

.p-custom__gallery2-wide.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.p-custom__gallery2-wide.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.p-custom__gallery2-wide figure.wp-block-image {
  width: 50%;
}
.p-custom__gallery2-wide figure.wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 432/288;
  height: auto;
     object-fit: cover;
  width: 100%;
}

/* 【正方形】画像３枚ギャラリーパターン */
.p-custom__gallery3-square.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-custom__gallery3-square.wp-block-gallery.wp-block-gallery-is-layout-flex {
  gap: 28px;
  gap: 1.75rem;
}

.p-custom__gallery3-square.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
.p-custom__gallery3-square figure.wp-block-image:nth-child(1) img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}
.p-custom__gallery3-square figure.wp-block-image:nth-child(2) img,
.p-custom__gallery3-square figure.wp-block-image:nth-child(3) img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

/* 【縦長】画像３枚ギャラリーパターン */
.p-custom__gallery3-tall.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-custom__gallery3-tall.wp-block-gallery.wp-block-gallery-is-layout-flex {
  gap: 24px;
  gap: 1.5rem;
}

.p-custom__gallery3-tall.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.p-custom__gallery3-tall figure.wp-block-image:nth-child(1) {
  grid-column: auto;
  max-width: 100%;
}
.p-custom__gallery3-tall figure.wp-block-image:nth-child(1) img {
  -o-object-fit: cover;
  aspect-ratio: 1080/1350;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-custom__gallery3-tall figure.wp-block-image:nth-child(2),
.p-custom__gallery3-tall figure.wp-block-image:nth-child(3) {
  grid-column: auto;
}
.p-custom__gallery3-tall figure.wp-block-image:nth-child(2) img,
.p-custom__gallery3-tall figure.wp-block-image:nth-child(3) img {
  -o-object-fit: cover;
  aspect-ratio: 1080/1350;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-drawer {
  padding: 27px 20px 30px;
  padding: 1.6875rem 1.25rem 1.875rem;
}

.l-header.is-scrolled + .p-drawer {
  padding: 10px 20px 30px;
  padding: 0.625rem 1.25rem 1.875rem;
}

.p-drawer__panel {
  backdrop-filter: blur(4px);
  backdrop-filter: blur(0.25rem);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.9375rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0.3125rem 0.3125rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
  padding: 12px 30px 32px;
  padding: 0.75rem 1.875rem 2rem;
  padding: 6px 30px 32px;
  padding: 0.375rem 1.875rem 2rem;
}

.p-drawer__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-drawer__logo-link {
  display: block;
  width: max(100px, min(11.5972222222vw, 167px));
  width: max(6.25rem, min(11.5972222222vw, 10.4375rem));
}

.p-drawer__logo-link img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-drawer__close-button {
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 48px;
  height: 3rem;
  position: relative;
  -webkit-transform: translateX(1.3125rem);
          transform: translateX(1.3125rem);
  width: 48px;
  width: 3rem;
}

.p-drawer__close-button::before,
.p-drawer__close-button::after {
  background-color: #fff;
  border-radius: 0.0625rem;
  content: "";
  height: 2px;
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 16px;
  width: 1rem;
}

.p-drawer__close-button::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer__close-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer__wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.p-drawer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  gap: 1.3125rem;
}

.p-drawer__nav-item a {
  color: #000;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-drawer__cta-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-drawer__nav-item:focus-visible {
  opacity: 0.7;
}
.p-features-strengths {
  padding-bottom: 168px;
  padding-bottom: 10.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-features-strengths__wrapper {
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
       -webkit-column-gap: 5rem;
               column-gap: 5rem;
  display: grid;
  grid-template-columns: 15.5rem 1fr;
}

.p-features-strengths__heading-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  gap: 2.0625rem;
}

.p-features-strengths__heading-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-features-strengths__heading-label {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-features-strengths__heading {
  color: #000;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.p-features-strengths__heading-text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-features-strengths__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-features-strengths__item {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  gap: 4rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-features-strengths__item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 420px;
  width: 26.25rem;
}

.p-features-strengths__item-image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-features-strengths__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}

.p-features-strengths__item-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.p-features-strengths__item-number {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 8px;
  gap: 0.5rem;
}

.p-features-strengths__item-number-label {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.p-features-strengths__item-number-value {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(64px, 10px);
  font-size: max(4rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-features-strengths__item-title {
  color: #000;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-features-strengths__item-text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 420px;
  max-width: 26.25rem;
}

.p-footer {
  background-color: #000;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
  z-index: 1;
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
  gap: 3.5625rem;
}

.p-footer__top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__logo-link {
  display: block;
  width: min(139px, 100%);
  width: min(8.6875rem, 100%);
}

.p-footer__logo-link img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-footer__nav-area {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  gap: 1.6875rem;
}

.p-footer__nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
}

.p-footer__nav-item a {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.p-footer__cta-buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.p-footer__bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__company-name {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-footer__company-address {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-footer__copyright {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  text-align: center;
}

.p-footer__copyright small {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-footer__privacy a {
  color: #fff;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.p-header {
  backdrop-filter: blur(4px);
  backdrop-filter: blur(0.25rem);
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 3.75rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0.3125rem 0.3125rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
}

.p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-left: max(15px, min(2.0833333333vw, 30px));
  padding-left: max(0.9375rem, min(2.0833333333vw, 1.875rem));
  padding-right: 10px;
  padding-right: 0.625rem;
}

.p-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-header__logo-link {
  display: block;
  width: max(100px, min(11.5972222222vw, 167px));
  width: max(6.25rem, min(11.5972222222vw, 10.4375rem));
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 139/25;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-header__menu-button {
  display: none;
  z-index: 101;
}

.p-header__right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  gap: max(10px, min(2.2222222222vw, 32px));
  gap: max(0.625rem, min(2.2222222222vw, 2rem));
}

.p-header__pc-nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: max(10px, min(2.2222222222vw, 32px));
  gap: max(0.625rem, min(2.2222222222vw, 2rem));
}

.p-header__pc-nav-item a {
  color: #000;
  font-size: max(10px, min(0.9722222222vw, 14px));
  font-size: max(10px, min(0.9722222222vw, 0.875rem));
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-header__cta-buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: max(5px, min(0.5555555556vw, 8px));
  gap: max(0.3125rem, min(0.5555555556vw, 0.5rem));
}

.p-interview-archive-list {
  margin-bottom: 168px;
  margin-bottom: 10.5rem;
  margin-top: 125px;
  margin-top: 7.8125rem;
}

.p-interview-archive-list__container {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
}

.p-interview-archive-list__container::before {
  background: url("../images/service/service-archive-bg.png") no-repeat center center/cover;
  border-radius: 1.875rem;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 220px;
  top: 13.75rem;
  width: 100%;
  z-index: -1;
}

.p-interview-archive-list__items {
  grid-gap: 3.05rem 2.5rem;
  display: grid;
  gap: 48.8px 40px;
  gap: 3.05rem 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.p-interview-archive-list__item .p-card__tag-label {
  background-color: #fff;
}

.p-interview-archive-list__pagenavi {
  margin-top: 88px;
  margin-top: 5.5rem;
}

.p-interview-archive-list__no-post {
  padding: 60px 0;
  padding: 3.75rem 0;
  text-align: center;
}

.p-interview-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 38px;
  margin-top: 2.375rem;
}

.p-interview-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16.8px;
  gap: 1.05rem;
}

.p-interview-info__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}

.p-interview-info__label {
  color: #666666;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  width: 26.3274336283%;
}

.p-interview-info__value {
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.p-interview-info__divider {
  background-color: #d9d9d9;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
}

.p-interview-single__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}

.p-interview-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}

.p-interview-single__image {
  aspect-ratio: 16/9;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

.p-interview-single__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-interview-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-interview-single__category {
  background-color: #e7eaf9;
  border-radius: 3.125rem;
  color: #000;
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-interview-single__title {
  color: #000;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-interview-single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}

/* ========== ブロックパターン用スタイル ========== */
.p-interview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}

.p-interview-content__lead {
  color: #000;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-interview-content__heading {
  color: #000;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-interview-content__text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-interview-quote {
  background-color: #f3f5fc;
  border-left: 4px solid #142fc6;
  border-left: 0.25rem solid #142fc6;
  border-radius: 0.625rem;
  padding: 32px;
  padding: 2rem;
}

.p-interview-quote p {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-interview-image-text {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}

.p-interview-image-text__image {
  border-radius: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 432px;
  width: 27rem;
}

.p-interview-image-text__image img {
  display: block;
  height: auto;
  width: 100%;
}

.p-interview-image-text__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-interview-image-text__heading {
  color: #000;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-interview-image-text__text {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* ========== 前後記事ナビゲーション ========== */
.p-interview-single__nav {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-interview-single__nav-items {
  grid-gap: 2.5rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-interview-single__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-interview-single__nav-item--prev {
  text-align: left;
}

.p-interview-single__nav-item--next {
  text-align: right;
}

.p-interview-single__nav-link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
}

.p-interview-single__nav-label {
  color: #666666;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-interview-single__nav-title {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-interview-single__nav-link:hover .p-interview-single__nav-title {
  color: #142fc6;
}

.p-member-modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  opacity: 0;
  padding: 20px;
  padding: 1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 9999;
}

.p-member-modal[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.p-member-modal__overlay {
  background-color: rgba(43, 43, 43, 0.8);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-member-modal__content {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 74.1vh;
  max-width: 904px;
  max-width: 56.5rem;
  overflow: hidden;
  position: relative;
  width: auto;
}

.p-member-modal__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  height: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10.5px;
  right: 0.65625rem;
  top: 10px;
  top: 0.625rem;
  width: 40px;
  width: 2.5rem;
  z-index: 10;
}

.p-member-modal__close svg {
  height: 21.5px;
  height: 1.34375rem;
  width: 21.5px;
  width: 1.34375rem;
}

.p-member-modal__inner {
  aspect-ratio: 100/52;
  display: grid;
  grid-template-columns: 52% 1fr;
  max-height: 74.1vh;
  overflow: hidden;
  position: relative;
}

.p-member-modal__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-member-modal__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-member-modal__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  min-height: 0;
  overflow-y: auto;
  padding: 60px 60px 40px 40px;
  padding: 3.75rem 3.75rem 2.5rem 2.5rem;
}

.p-member-modal__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-member-modal__section-title {
  color: #142fc6;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-member-modal__section-separator {
  background-color: #d9d9d9;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
}

.p-member-modal__section-content {
  color: #0a0a0a;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-member-modal__footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 0.625rem;
  bottom: 20px;
  bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 50%;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 75.6944444444%;
}

.p-member-modal__footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 8px;
  gap: 0.5rem;
}

.p-member-modal__footer-separator {
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 49px;
  height: 3.0625rem;
  opacity: 0.5;
  width: 1px;
  width: 0.0625rem;
}

.p-member-modal__footer-position {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.p-member-modal__footer-name {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-member-modal__footer-name-en {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-member-modal__footer-sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
  gap: 1rem 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 10%;
}

.p-member-modal__sns-link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 18px;
  height: 1.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-member-modal__sns-link:hover {
  opacity: 0.7;
}

.p-member-modal__sns-link svg {
  height: 100%;
  width: auto;
}

.p-news-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-news-article__item {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
}

.p-news-article__item:last-child {
  border-bottom: 1px solid #d9d9d9;
  border-bottom: 0.0625rem solid #d9d9d9;
}

.p-news-article__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-top: 32px;
  padding-top: 2rem;
}

.p-news-article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  min-width: 0;
}

.p-news-article__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-news-article__date {
  color: #666666;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-news-article__category {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e7eaf9;
  border-radius: 3.125rem;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
}

.p-news-article__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000;
  display: -webkit-box;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-news-article__arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 24px;
  width: 1.5rem;
}

.p-news-article__arrow img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: contain;
}

.p-news-article[data-page=news] .p-news-article__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  gap: 1.5rem;
}

.p-news-article[data-page=news] .p-news-article__link {
  gap: 32px;
  gap: 2rem;
}

.p-news-article[data-page=news] .p-news-article__meta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 24px;
  gap: 1.5rem;
}

.p-news-article[data-page=news] .p-news-article__title {
  min-width: 0;
}

.p-news-article__link:focus-visible {
  opacity: 1;
}

.p-news-article__link:focus-visible .p-news-article__title {
  color: #142fc6;
}

.p-news-article__link:focus-visible .p-news-article__arrow {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-news__container {
  margin-bottom: 168px;
  margin-bottom: 10.5rem;
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-news__sidebar-aside .p-aside__item:not(:first-child) .p-aside__link.is-active span {
  color: #142fc6;
}

.p-news-list__pagenavi {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenavi .first,
.p-pagenavi .last,
.p-pagenavi .current,
.p-pagenavi .extend,
.p-pagenavi .page {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #142fc6;
  color: #142fc6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 25px;
  height: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 25px;
  min-width: 1.5625rem;
  padding-left: 6px;
  padding-left: 0.375rem;
  padding-right: 6px;
  padding-right: 0.375rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-pagenavi .first:hover,
.p-pagenavi .last:hover,
.p-pagenavi .page:hover {
  background-color: #142fc6;
  color: #fff;
}

.p-pagenavi .current {
  background-color: #142fc6;
  color: #fff;
}

.p-pagenavi .extend {
  border: none;
  cursor: default;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #142fc6;
  color: #142fc6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 10px;
  gap: 0.625rem;
  height: 25px;
  height: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-left: 9.4px;
  padding-left: 0.5875rem;
  padding-right: 9.4px;
  padding-right: 0.5875rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-pagenavi .previouspostslink:hover,
.p-pagenavi .nextpostslink:hover {
  background-color: #142fc6;
  color: #fff;
}

.p-pagenavi .previouspostslink.disabled,
.p-pagenavi .nextpostslink.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.p-pagenavi .previouspostslink::before {
  -webkit-mask-image: url("../images/common/icon-nav-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #142fc6;
  content: "";
  display: block;
  height: 8px;
  height: 0.5rem;
  mask-image: url("../images/common/icon-nav-arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 4px;
  width: 0.25rem;
}

.p-pagenavi .nextpostslink::after {
  -webkit-mask-image: url("../images/common/icon-nav-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #142fc6;
  content: "";
  display: block;
  height: 8px;
  height: 0.5rem;
  mask-image: url("../images/common/icon-nav-arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transform: scaleY(-1) rotate(180deg);
          transform: scaleY(-1) rotate(180deg);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 4px;
  width: 0.25rem;
}

.p-pagenavi .previouspostslink:hover::before,
.p-pagenavi .nextpostslink:hover::after {
  background-color: #fff;
}

.p-panel {
  position: relative;
}

.p-panel__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-panel:nth-child(even) .p-panel__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-panel__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}

.p-panel__image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-panel__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 40px;
  gap: 2.5rem;
  padding: 0 60px 0 max(50px, min(7.2222222222vw, 104px));
  padding: 0 3.75rem 0 max(3.125rem, min(7.2222222222vw, 6.5rem));
  width: 50%;
}

.p-panel:nth-child(even) .p-panel__content {
  padding: 0 max(50px, min(7.2222222222vw, 104px)) 0 60px;
  padding: 0 max(3.125rem, min(7.2222222222vw, 6.5rem)) 0 3.75rem;
}

.p-panel__heading-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  gap: 2.125rem;
}

.p-panel__description {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-panel__button-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 1.875rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 241px;
  min-width: 15.0625rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 48px;
  padding-right: 3rem;
  position: relative;
}

.p-panel__button-link::after {
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M3 1L7 5L3 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  height: 36px;
  height: 2.25rem;
  position: absolute;
  right: 6px;
  right: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  width: 2.25rem;
}

.p-service-archive-filter {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-service-archive-filter__group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(20, 47, 198, 0.05);
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  padding: 2rem;
}

.p-service-archive-filter__group + .p-service-archive-filter__group {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-service-archive-filter__label {
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  width: 22.2%;
}

.p-service-archive-filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.p-service-archive-filter__button {
  background-color: rgba(20, 47, 198, 0.1);
  border: none;
  border-radius: 3.125rem;
  color: #142fc6;
  cursor: pointer;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-service-archive-filter__button:hover {
  background-color: rgba(20, 47, 198, 0.2);
}

.p-service-archive-filter__button.is-active {
  background-color: #142fc6;
  color: #fff;
}

.p-service-archive-filter__button.is-disabled {
  cursor: default;
  opacity: 0.3;
  pointer-events: none;
}

.p-service-archive-list {
  margin-bottom: 168px;
  margin-bottom: 10.5rem;
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-service-archive-list__container {
  padding-bottom: 117px;
  padding-bottom: 7.3125rem;
  position: relative;
}

.p-service-archive-list__container::before {
  background: url("../images/service/service-archive-bg.png") no-repeat center center/cover;
  border-radius: 1.875rem;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 199px;
  top: 12.4375rem;
  width: 100%;
  z-index: -1;
}

.p-service-archive-list__items {
  grid-gap: 3.875rem 2.5rem;
  display: grid;
  gap: 62px 40px;
  gap: 3.875rem 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  scroll-margin-top: 2.5rem;
}

.p-service-archive-list__item {
  display: none;
}

.p-service-archive-list__item.is-visible {
  display: block;
}

.p-service-archive-list__card {
  background-color: #fff;
  border: 1px solid #142fc6;
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 32px;
  padding: 2rem;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.p-service-archive-list__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  row-gap: 24.5px;
  row-gap: 1.53125rem;
}

.p-service-archive-list__card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.p-service-archive-list__card-description {
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-service-archive-list__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.p-service-archive-list__card-tag {
  border: 1px solid #142fc6;
  border-radius: 3.125rem;
  color: #142fc6;
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 7.2px 24px;
  padding: 0.45rem 1.5rem;
}

.p-service-archive-list__card-tag-item {
  color: #142fc6;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}
.p-service-archive-list__pagenavi {
  margin-top: 88px;
  margin-top: 5.5rem;
}

.p-service-archive-list__no-post {
  padding: 60px 0;
  padding: 3.75rem 0;
  text-align: center;
}

.p-service-archive-list__no-result {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  padding: 60px 0;
  padding: 3.75rem 0;
  text-align: center;
}

.p-service-single .p-single__main {
  margin-top: -10px;
  margin-top: -0.625rem;
}

.p-service-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.p-service-single__title {
  color: #000;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-service-single__description {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-service-single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}

/* ========== ブロックパターン用スタイル ========== */
.p-service-single__content p {
  color: #000;
}

/* サービス詳細ページ共通のセクションタイトル */
.p-service-single__section-title {
  color: #000;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
  position: relative;
  scroll-margin-top: 3.125rem;
}

/* セクションの順番に応じて下線の青部分が伸びていくデザイン */
.p-service-single__section-title::before {
  background-color: #142fc6;
  bottom: 0;
  content: "";
  height: 2px;
  height: 0.125rem;
  left: 0;
  position: absolute;
}

.p-service-single__section-title::after {
  background-color: #f3f5fc;
  bottom: 0;
  content: "";
  height: 2px;
  height: 0.125rem;
  position: absolute;
}

.p-service-block:nth-of-type(1) .p-service-single__section-title::before {
  width: 15.1917035398%;
}

.p-service-block:nth-of-type(1) .p-service-single__section-title::after {
  left: 15.1917035398%;
  width: 84.8082964602%;
}

.p-service-block:nth-of-type(2) .p-service-single__section-title::before {
  width: 33.296460177%;
}

.p-service-block:nth-of-type(2) .p-service-single__section-title::after {
  left: 33.296460177%;
  width: 66.703539823%;
}

.p-service-block:nth-of-type(3) .p-service-single__section-title::before {
  width: 50%;
}

.p-service-block:nth-of-type(3) .p-service-single__section-title::after {
  left: 50%;
  width: 50%;
}

.p-service-block:nth-of-type(4) .p-service-single__section-title::before {
  width: 66.703539823%;
}

.p-service-block:nth-of-type(4) .p-service-single__section-title::after {
  left: 66.703539823%;
  width: 33.296460177%;
}

.p-service-block:nth-of-type(5) .p-service-single__section-title::before {
  width: 83.407079646%;
}

.p-service-block:nth-of-type(5) .p-service-single__section-title::after {
  left: 83.407079646%;
  width: 16.592920354%;
}

.p-service-block:nth-of-type(6) .p-service-single__section-title::before {
  width: 100%;
}

.p-service-points {
  background-color: #f3f5fc;
  border-radius: 0.625rem;
  padding: 34px 40px 40px;
  padding: 2.125rem 2.5rem 2.5rem;
}

.p-service-points__title::after {
  background-color: #fff;
}

.p-content ol.p-service-points__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  list-style: none;
}

.p-content ol > li.p-service-points__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  gap: 24px;
  gap: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding: 0;
}

.p-content ol > li.p-service-points__item::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 3.125rem;
  color: #fff;
  content: counter(p-content-ol, decimal-leading-zero);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  height: 45px;
  height: 2.8125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 10px;
  padding: 0.625rem;
  position: static;
  width: 45px;
  width: 2.8125rem;
}

.p-service-points__text {
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-service-overview {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 74px;
  padding-top: 4.625rem;
}

.p-service-overview__description {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-challenges {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 74px;
  padding-top: 4.625rem;
}

.p-service-challenges__items {
  gap: 32px !important;
  gap: 2rem !important;
}

.p-service-challenges__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-challenges__item.wp-block-group.is-layout-flex {
  margin: 0 !important;
}

.p-service-challenges__item.wp-block-group.is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-content h3.p-service-challenges__question {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  gap: 16px;
  gap: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-content h3.p-service-challenges__question::before {
  background: url(../images/common/icon-speech-bubble.png) no-repeat center center/contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.p-service-challenges__answer {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-service-cases {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 74px;
  padding-top: 4.625rem;
}

.p-service-cases__description {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-cases__items {
  display: grid !important;
}

.p-service-cases__items {
  grid-gap: 2.5rem;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-cases__item {
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-service-cases__item:hover a {
  opacity: 1;
}
.p-service-cases__item:hover .p-service-cases__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-service-cases__image {
  aspect-ratio: 300/200;
  border-radius: 0.3125rem;
  overflow: hidden;
  width: 100%;
}

.p-service-cases__image > a {
  height: 100%;
  width: 100%;
}
.p-service-cases__image > a::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.p-service-cases__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
}

.p-content h3.p-service-cases__item-title {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-service-cases__item-meta {
  gap: 8px !important;
  gap: 0.5rem !important;
  margin-top: 15px !important;
  margin-top: 0.9375rem !important;
}

.p-service-cases__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-cases__meta-row.wp-block-group.is-layout-flex {
  margin: 0 !important;
}

.p-service-cases__meta-row.wp-block-group.is-layout-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
  width: 100%;
}

.p-content p.p-service-cases__meta-label {
  background-color: #e7eaf9;
  border-radius: 3.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  text-align: center;
  width: 26%;
}

.p-content p.p-service-cases__meta-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.p-service-faq {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 71px;
  padding-top: 4.4375rem;
}

.p-service-faq__description {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-faq__items {
  gap: 33px !important;
  gap: 2.0625rem !important;
}

.p-service-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-faq__item {
  gap: 16px !important;
  gap: 1rem !important;
  margin: 0 !important;
}

.p-service-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-service-faq__item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-content h3.p-service-faq__question-label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  gap: 16px;
  gap: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-content h3.p-service-faq__question-label::before {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  content: "Q.";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-content p.p-service-faq__answer {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-service-flow {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  padding-top: 74px;
  padding-top: 4.625rem;
}

.p-service-flow__description {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-flow__items {
  gap: 0 !important;
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.p-service-flow__items {
  counter-reset: service-flow-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-flow__item {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 32px !important;
  gap: 2rem !important;
  margin: 0 !important;
}

.p-service-flow__item {
  counter-increment: service-flow-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

.p-service-flow__item:not(:first-child) {
  padding-top: 32px !important;
  padding-top: 2rem !important;
}

.p-service-flow__item:not(:last-child) {
  padding-bottom: 32px !important;
  padding-bottom: 2rem !important;
}

.p-service-flow__item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.p-service-flow__item:nth-child(3) {
  padding-bottom: 51px !important;
  padding-bottom: 3.1875rem !important;
}

.p-service-flow__item:nth-child(4) {
  padding-top: 51px !important;
  padding-top: 3.1875rem !important;
}

.p-service-flow__number {
  margin-right: 16px !important;
  margin-right: 1rem !important;
  width: 45px !important;
  width: 2.8125rem !important;
}

.p-service-flow__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.p-service-flow__number img {
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
}

.p-service-flow__number::before {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  content: counter(service-flow-counter, decimal-leading-zero);
  font-family: "Poppins", sans-serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.02em;
  line-height: 1.6;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-service-flow__content {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 16px !important;
  gap: 1rem !important;
  margin: 0 !important;
}

.p-service-flow__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 39.4911504425%;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  width: 3.125rem;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon.w42 {
  width: 42px;
  width: 2.625rem;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon.w45 {
  width: 45px;
  width: 2.8125rem;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon.w58 {
  width: 58px;
  width: 3.625rem;
}

.p-content .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon img {
  display: block;
  height: auto;
  width: 100%;
}

.p-content h3.p-service-flow__item-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-content h3.p-service-flow__item-title small {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.p-service-flow__item-description {
  gap: 0 !important;
  margin: 0 !important;
}

.p-service-flow__item-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-flow__item-description > p {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-service-flow__item-description > p.sub-ttl strong {
  letter-spacing: 0.02em;
}

.p-service-flow__item-description p + p {
  margin-top: 33px !important;
  margin-top: 2.0625rem !important;
}

.p-content ul.p-service-flow__item-list {
  margin-top: 14px !important;
  margin-top: 0.875rem !important;
}

.p-content ul.p-service-flow__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-content ul.p-service-flow__item-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-content ul.p-service-flow__item-list li::before {
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 50%;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 5px;
  height: 0.3125rem;
  width: 5px;
  width: 0.3125rem;
}

.p-content p.p-service-flow__contract {
  margin: 0 !important;
}

.p-content p.p-service-flow__contract {
  background-color: #e7eaf9;
  border-radius: 0.625rem;
  bottom: -15%;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.p-single-content h2 {
  background-color: #142fc6;
  border-radius: 0.625rem;
  color: #fff;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
}

.p-single-content h2:not(:first-child) {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-single-content h3 {
  border-bottom: 2px solid #142fc6;
  color: #333333;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-single-content h3:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-single-content h4 {
  color: #333333;
}

.p-single-content h4:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single-content p:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-single-content h3 + p,
.p-single-content h4 + p {
  margin-top: 24px !important;
  margin-top: 1.5rem !important;
}

.p-single__heading {
  background: url("../images/common/heading-bg.png") no-repeat center center/cover;
  height: 200px;
  height: 12.5rem;
  width: 100%;
}

.p-single__heading + .p-breadcrumb {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single__container {
  margin-bottom: 168px;
  margin-bottom: 10.5rem;
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}

.p-single__head--news {
  gap: 37px;
  gap: 2.3125rem;
}

.p-single__date {
  color: #666666;
  font-family: "Poppins", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-single__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.p-single__tags {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.p-single__tags-label {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-single__tags-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-single__tags-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e7eaf9;
  border-radius: 3.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
}

.p-single__thumbnail img {
  border-radius: 0.3125rem;
  height: auto;
}

.p-single__content {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-single__button {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-single__button .c-button--right {
  margin-left: auto;
  margin-right: auto;
}

.p-sub-hero {
  padding: 30px;
  padding: 1.875rem;
}

.p-sub-hero__inner {
  max-width: 1380px;
  max-width: 86.25rem;
  min-height: 400px;
  min-height: 25rem;
  padding-left: 74px;
  padding-left: 4.625rem;
  padding-right: 74px;
  padding-right: 4.625rem;
  position: relative;
}

.p-sub-hero__bg {
  border-radius: 0.625rem;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.p-sub-hero__bg img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-sub-hero__wrapper {
  -moz-column-gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
       -webkit-column-gap: 2.5rem;
               column-gap: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 155px 0 87px;
  padding: 9.6875rem 0 5.4375rem;
  position: relative;
}

.p-sub-hero__title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 24px;
  gap: 1.5rem;
}

.p-sub-hero__label {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-sub-hero__heading {
  color: #fff;
  font-size: max(40px, 10px);
  font-size: max(2.5rem, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.p-sub-hero__description {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 73.37%;
  padding-top: 42px;
  padding-top: 2.625rem;
}

.p-top-hero {
  padding-top: 30px;
  padding-top: 1.875rem;
  position: relative;
}

.p-top-hero__inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  width: min(1440px, 100%);
  width: min(90rem, 100%);
}

.p-top-hero__bg {
  background: linear-gradient(150deg, #c8daf0 0%, #d0e4e8 40%, #d8ebe0 70%, #e5f0d8 100%);
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

.p-top-hero__bg-circle {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.p-top-hero__bg-circle--01 {
  background-color: #8791e4;
}

.p-top-hero__bg-circle--02 {
  background-color: #d6e6c0;
}

@-webkit-keyframes bgCircleDrift01 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(20%, -18%) scale(1.15);
            transform: translate(20%, -18%) scale(1.15);
  }
  50% {
    -webkit-transform: translate(-10%, 22%) scale(0.9);
            transform: translate(-10%, 22%) scale(0.9);
  }
  75% {
    -webkit-transform: translate(18%, 10%) scale(1.1);
            transform: translate(18%, 10%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-20%, -15%) scale(0.95);
            transform: translate(-20%, -15%) scale(0.95);
  }
}

@keyframes bgCircleDrift01 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(20%, -18%) scale(1.15);
            transform: translate(20%, -18%) scale(1.15);
  }
  50% {
    -webkit-transform: translate(-10%, 22%) scale(0.9);
            transform: translate(-10%, 22%) scale(0.9);
  }
  75% {
    -webkit-transform: translate(18%, 10%) scale(1.1);
            transform: translate(18%, 10%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-20%, -15%) scale(0.95);
            transform: translate(-20%, -15%) scale(0.95);
  }
}
@-webkit-keyframes bgCircleDrift02 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(-22%, 20%) scale(0.88);
            transform: translate(-22%, 20%) scale(0.88);
  }
  50% {
    -webkit-transform: translate(18%, -15%) scale(1.12);
            transform: translate(18%, -15%) scale(1.12);
  }
  75% {
    -webkit-transform: translate(-15%, -22%) scale(1.05);
            transform: translate(-15%, -22%) scale(1.05);
  }
  100% {
    -webkit-transform: translate(20%, 18%) scale(0.92);
            transform: translate(20%, 18%) scale(0.92);
  }
}
@keyframes bgCircleDrift02 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  25% {
    -webkit-transform: translate(-22%, 20%) scale(0.88);
            transform: translate(-22%, 20%) scale(0.88);
  }
  50% {
    -webkit-transform: translate(18%, -15%) scale(1.12);
            transform: translate(18%, -15%) scale(1.12);
  }
  75% {
    -webkit-transform: translate(-15%, -22%) scale(1.05);
            transform: translate(-15%, -22%) scale(1.05);
  }
  100% {
    -webkit-transform: translate(20%, 18%) scale(0.92);
            transform: translate(20%, 18%) scale(0.92);
  }
}
.p-top-hero__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: -145px;
  margin-top: -9.0625rem;
  padding: 23px;
  padding: 1.4375rem;
  position: relative;
}

.p-top-hero__badge-icon {
  width: max(150px, min(17.4305555556vw, 251px));
  width: max(9.375rem, min(17.4305555556vw, 15.6875rem));
}

.p-top-hero__badge-icon img {
  -o-object-fit: cover;
  aspect-ratio: 251/91;
  height: auto;
     object-fit: cover;
}

.p-top-hero__badge-text {
  word-wrap: anywhere;
  color: #000;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 23px;
  margin-top: 1.4375rem;
  text-align: center;
  word-break: keep-all;
}

.p-top-hero__wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  gap: 3.4375rem;
  gap: max(20px, min(3.8194444444vw, 55px));
  gap: max(1.25rem, min(3.8194444444vw, 3.4375rem));
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 93px;
  padding-bottom: 5.8125rem;
  padding-top: 164px;
  padding-top: 10.25rem;
  position: relative;
  width: min(1140px, 100%);
  width: min(71.25rem, 100%);
}

.p-top-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 43px;
  margin-top: 2.6875rem;
  max-width: 490px;
  max-width: 30.625rem;
}

.p-top-hero__heading {
  width: min(358px, 100%);
  width: min(22.375rem, 100%);
}

.p-top-hero__heading img {
  -o-object-fit: contain;
  aspect-ratio: 184/108;
  height: auto;
     object-fit: contain;
}

.p-top-hero__description {
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-top-hero__button-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 1.875rem;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 241px;
  min-width: 15.0625rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 48px;
  padding-right: 3rem;
  position: relative;
}

.p-top-hero__button-link::after {
  background-color: #495aff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M3 1L7 5L3 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  height: 36px;
  height: 2.25rem;
  position: absolute;
  right: 6px;
  right: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  width: 2.25rem;
}

.p-top-hero__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 540px;
  height: 33.75rem;
  position: relative;
  width: 540px;
  width: 33.75rem;
}

.p-top-hero__visual-main {
  height: 356.4px;
  height: 22.275rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 356.4px;
  width: 22.275rem;
}

.p-top-hero__visual-part--01 {
  height: 353.1px;
  height: 22.06875rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 353.1px;
  width: 22.06875rem;
}

.p-top-hero__visual-part--02 {
  bottom: 0;
  height: 349.5px;
  height: 21.84375rem;
  left: 0;
  position: absolute;
  width: 349.5px;
  width: 21.84375rem;
}

.p-top-hero__visual-left {
  height: 356.4px;
  height: 22.275rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 176.4px;
  width: 11.025rem;
}

.p-top-hero__visual-part--03 {
  height: 172.8px;
  height: 10.8rem;
  left: 0;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  width: 176.39px;
  width: 11.024375rem;
}

.p-top-hero__visual-part--04 {
  bottom: 0;
  height: 172.8px;
  height: 10.8rem;
  left: 0;
  position: absolute;
  width: 176.4px;
  width: 11.025rem;
}

.p-top-hero__visual-bottom {
  bottom: 0;
  height: 176.4px;
  height: 11.025rem;
  left: 0;
  position: absolute;
  width: 536.4px;
  width: 33.525rem;
}

.p-top-hero__visual-part--05 {
  height: 174.9px;
  height: 10.93125rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 174.9px;
  width: 10.93125rem;
}

.p-top-hero__visual-part--06 {
  height: 171.3px;
  height: 10.70625rem;
  left: 9.5px;
  left: 0.59375rem;
  position: absolute;
  top: 0;
  width: 342.62px;
  width: 21.41375rem;
}

.p-top-hero__visual-part--07 {
  height: 176.4px;
  height: 11.025rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 351.3px;
  width: 21.95625rem;
}

.p-top-hero__visual {
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

.p-top-hero__visual-part {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  opacity: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.p-top-interview {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 118px;
  padding-top: 7.375rem;
}

.p-top-interview__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}

.p-top-interview__heading-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  gap: 2.125rem;
}

.p-top-interview__heading-area .c-section-heading__ja {
  letter-spacing: 0;
}

.p-top-interview__description {
  color: #000;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.p-top-news {
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
  padding-top: 119px;
  padding-top: 7.4375rem;
}

.p-top-news__inner {
  --arrow-x: 0px;
  --arrow-y: 0px;
  --arrow-opacity: 0;
  max-width: 1282px;
  max-width: 80.125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  position: relative;
}

.p-top-news__inner::before {
  -webkit-mask-image: url(../images/top/icon_arrow_big.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: rgba(20, 47, 198, 0.8);
  content: "";
  height: 750px;
  height: 46.875rem;
  left: -310px;
  left: -19.375rem;
          mask-image: url(../images/top/icon_arrow_big.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: cover;
  position: absolute;
  top: 0;
  -webkit-transform: translate(var(--arrow-x), var(--arrow-y));
          transform: translate(var(--arrow-x), var(--arrow-y));
  -webkit-transition: none;
  transition: none;
  width: 750px;
  width: 46.875rem;
}

.p-top-news__wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  gap: 4rem;
  position: relative;
}

.p-top-news__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 74px;
  gap: 4.625rem;
  width: min(455px, 100%);
  width: min(28.4375rem, 100%);
}

.p-top-news__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-top-news__button-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
  background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
  border-radius: 1.875rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 241px;
  min-width: 15.0625rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 48px;
  padding-right: 3rem;
  position: relative;
}

.p-top-news__button-link::after {
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M3 1L7 5L3 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  height: 36px;
  height: 2.25rem;
  position: absolute;
  right: 6px;
  right: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  width: 2.25rem;
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* デフォルトは下 → 上 */
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 上から */
.js-fade-in--up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

/* 右から */
.js-fade-in--right {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

/* 左から */
.js-fade-in--left {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.u-gooey-svg {
  display: none;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-treat {
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  position: fixed;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: 0;
}

.u-treat[data-treat=big] {
  -webkit-animation: treat-fall-big 8s linear infinite;
          animation: treat-fall-big 8s linear infinite;
  height: 206px;
  height: 12.875rem;
  left: calc(50% + 25rem);
  top: 0;
  width: 327px;
  width: 20.4375rem;
}

.u-treat[data-treat=small] {
  -webkit-animation: treat-fall-small 7s 2s linear infinite;
          animation: treat-fall-small 7s 2s linear infinite;
  height: 50px;
  height: 3.125rem;
  left: calc(50% + 28.125rem);
  top: 0;
  width: 35px;
  width: 2.1875rem;
}

@-webkit-keyframes treat-fall-big {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(110vh) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
            transform: translateY(110vh) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-120%) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
            transform: translateY(-120%) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
  }
}

@keyframes treat-fall-big {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(110vh) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
            transform: translateY(110vh) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-120%) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
            transform: translateY(-120%) rotateX(15deg) rotateY(180deg) rotateZ(90deg);
  }
}
@-webkit-keyframes treat-fall-small {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(110vh) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
            transform: translateY(110vh) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
  }
  76% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-120%) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
            transform: translateY(-120%) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
  }
}
@keyframes treat-fall-small {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translateY(-120%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(110vh) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
            transform: translateY(110vh) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
  }
  76% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-120%) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
            transform: translateY(-120%) rotateX(-20deg) rotateY(-120deg) rotateZ(-60deg);
  }
}
@media (max-width: 1282px){
  html {
    font-size: 1.248049922vw;
  }
}
@media screen and (max-width: 767px){
  html {
    font-size: 4.0712468193vw;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  .l-content-with-sidebar {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .l-content-with-sidebar__sidebar {
    margin-top: 90px;
    margin-top: 5.625rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    position: static;
  }
  .l-content-with-sidebar__main {
    display: contents;
  }
  .l-inner {
    max-width: 585px;
    max-width: 36.5625rem;
    padding-left: 22.5px;
    padding-left: 1.40625rem;
    padding-right: 22.5px;
    padding-right: 1.40625rem;
  }
  .l-top-showcase {
    border-radius: 0.9375rem;
    overflow: visible;
    padding-bottom: 91px;
    padding-bottom: 5.6875rem;
    padding-top: 86px;
    padding-top: 5.375rem;
  }
  .l-top-showcase::before {
    border-radius: 0.9375rem;
  }
  .c-button__arrow-left img {
    height: 9px;
    height: 0.5625rem;
    width: 9px;
    width: 0.5625rem;
  }
  .c-button:not([data-base-color~=header]) {
    --font-size: 14px;
    --font-size: 0.875rem;
    width: min(348px, 100%);
    width: min(21.75rem, 100%);
  }
  /* footer はSPでは通常サイズへ（ドロワー以外のボタン統一） */
  .c-button[data-base-color~=footer] {
    --circle-w: 48px;
    --circle-w: 3rem;
    --arrow-size: 36px;
    --arrow-size: 2.25rem;
    --gap: 30px;
    --gap: 1.875rem;
    --text-w: 284px;
    --text-w: 17.75rem;
    --btn-h: unset;
  }
  .c-button[data-base-color~=cta],
  .c-button[data-base-color~=form] {
    --circle-w: 48px;
    --circle-w: 3rem;
    --arrow-size: 36px;
    --arrow-size: 2.25rem;
    --gap: 30px;
    --gap: 1.875rem;
    --text-w: 284px;
    --text-w: 17.75rem;
  }
  .c-button:not([data-base-color~=header]) .c-button__text {
    border-radius: calc(var(--circle-w) / 2);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: var(--circle-w);
    width: auto;
  }
  .c-button:not([data-base-color~=header]) .c-button__text span {
    line-height: 1;
  }
  /* 右側アイコン: SP */
  .c-button--right:not([data-base-color~=header]) .c-button__text {
    margin-left: 0;
    margin-right: var(--gap);
    padding-left: 0;
    padding-right: 0;
  }
  .c-section-heading__en {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-section-heading__ja {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-section-heading[data-variant=sub-heading] .c-section-heading__ja {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: -0.005em;
  }
  .c-section-title__label {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .c-section-title__heading {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .c-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    letter-spacing: 0.03em;
    line-height: 1.875;
  }
  .p-404 {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-404__logo {
    font-size: max(120px, 10px);
    font-size: max(7.5rem, 10px);
  }
  .p-404__title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .p-404__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-404__button {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-about-company {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-about-company__table {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-about-company__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    gap: 1rem;
  }
  .p-about-company__label {
    width: 100%;
  }
  .p-about-company__value {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-about-member {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-about-member__list {
    gap: 32.2px;
    gap: 2.0125rem;
    grid-template-columns: 1fr;
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-about-member__item {
    margin-bottom: 45px;
    margin-bottom: 2.8125rem;
  }
  .p-about-member__card-info {
    bottom: -46px;
    bottom: -2.875rem;
    width: calc(100% - 3.125rem);
  }
  .p-about-member__card-name-jp {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
  .p-about-message {
    scroll-margin-top: 1.875rem;
  }
  .p-about-message__content {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-about-message__image-wrapper {
    width: 100%;
  }
  .p-about-message__quote {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 88px;
    margin-top: 5.5rem;
    position: static;
    white-space: normal;
  }
  .p-about-message__signature {
    bottom: 18.5%;
    gap: 6px;
    gap: 0.375rem;
    position: absolute;
    right: 1%;
    z-index: 1;
  }
  .p-about-message__signature-name-en-line {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-about-message__signature-company {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    letter-spacing: 0;
  }
  .p-about-message__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    gap: 29px;
    gap: 1.8125rem;
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-about-message__description-column {
    width: 100%;
  }
  .p-about-message__description-column p {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-about-vision {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-about-vision__contents {
    background: url("../images/about/vision-bg_sp.png") no-repeat center center/cover;
    gap: 40px;
    gap: 2.5rem;
    padding-bottom: 52px;
    padding-bottom: 3.25rem;
    padding-left: 7.0804597701%;
    padding-right: 7.0804597701%;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-about-vision__slogan {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .p-about-vision__section-label {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
  }
  .p-about-vision__section-title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-about-vision__section-content {
    gap: 24px;
    gap: 1.5rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-about-vision__logos {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .p-about-vision__logo img {
    aspect-ratio: 298.73/100;
  }
  .p-about-vision__section-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-about-vision__visual img {
    aspect-ratio: 298.73/223;
  }
  .p-about-vision__visual-copyright {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-about__content {
    margin-bottom: 120px;
    margin-bottom: 7.5rem;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-about-content__sidebar.l-content-with-sidebar__sidebar {
    margin-bottom: 90px;
    margin-bottom: 5.625rem;
    margin-top: 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-aside {
    position: static;
  }
  .p-card__tag-label {
    width: 31.32%;
  }
  .p-cards {
    gap: 64px;
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  .p-contact {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-contact__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
  .p-contact__require {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-contact__content {
    background-image: url(../images/form/bg_contact_sp.jpg);
    margin-top: 32px;
    margin-top: 2rem;
    padding: 90px 20px;
    padding: 5.625rem 1.25rem;
  }
  .p-contact__note {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact__note-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    text-align: left;
  }
  .p-contact__submit {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-contact__privacy {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact__privacy-heading {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact__privacy-box {
    max-height: 276px;
    max-height: 17.25rem;
    padding: 16px;
    padding: 1rem;
  }
  .p-content h2 {
    font-size: 24px;
    font-size: 1.5rem;
    scroll-margin-top: 1.875rem;
  }
  .p-content h3 {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content h4 {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content p {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-content p a {
    -webkit-text-decoration: underline;
    -webkit-text-decoration: underline;
    color: #142fc6;
    text-decoration: underline;
  }
  .p-content blockquote {
    gap: 37px;
    gap: 2.3125rem;
    padding: 16px;
    padding: 1rem;
  }
  .p-content blockquote cite {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-content li {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-content ul {
    gap: 24px;
    gap: 1.5rem;
  }
  .wp-block-list + .wp-block-list {
    margin-top: 43px !important;
    margin-top: 2.6875rem !important;
  }
  .p-content ul > li {
    padding-left: 14px;
    padding-left: 0.875rem;
  }
  .p-content ol {
    gap: 16px;
    gap: 1rem;
  }
  .p-content ol > li::before {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content ol > li > ol {
    margin-left: -24px;
    margin-left: -1.5rem;
    margin-top: 18px;
    margin-top: 1.125rem;
  }
  .p-content ol > li > ol > li::before {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content ul ul,
  .p-content ul ol,
  .p-content ol ul,
  .p-content ol ol {
    margin-left: -4px;
    margin-left: -0.25rem;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
  .p-content .wp-block-group.is-layout-flex {
    gap: 20px;
    gap: 1.25rem;
  }
  .p-content figcaption {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-content .wp-block-buttons {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-content a.c-button {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-content .wp-block-table {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-cta {
    background-image: url(../images/common/bg_cta_contact_sp.jpg);
    border-radius: 0.9375rem 0.9375rem 0 0;
    padding-bottom: 89px;
    padding-bottom: 5.5625rem;
    padding-top: 86px;
    padding-top: 5.375rem;
  }
  .p-cta::before {
    border-radius: 0.9375rem 0.9375rem 0 0;
  }
  .p-cta__wrapper {
    gap: 65px;
    gap: 4.0625rem;
  }
  .p-cta .c-section-heading__ja {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    line-height: 1.5;
    margin-top: 19px;
    margin-top: 1.1875rem;
  }
  .p-cta__buttons {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
  .p-cta__button-group {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-cta__button-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-custom__gallery1.wp-block-image img {
    aspect-ratio: 348/232;
  }
  .p-custom__gallery2-tall.is-layout-flex {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-custom__gallery2-tall.wp-block-gallery.wp-block-gallery-is-layout-flex {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-custom__gallery2-wide.is-layout-flex {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-custom__gallery2-wide figure.wp-block-image img {
    aspect-ratio: 154/103;
  }
  .p-custom__gallery3-square.is-layout-flex {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-custom__gallery3-square.wp-block-gallery.wp-block-gallery-is-layout-flex {
    gap: 16px;
    gap: 1rem;
  }
  .p-custom__gallery3-square figure.wp-block-image:nth-child(1) {
    grid-column: span 4;
  }
  .p-custom__gallery3-square figure.wp-block-image:nth-child(2),
  .p-custom__gallery3-square figure.wp-block-image:nth-child(3) {
    grid-column: span 2;
  }
  .p-custom__gallery3-tall.is-layout-flex {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-custom__gallery3-tall.wp-block-gallery.wp-block-gallery-is-layout-flex {
    gap: 16px;
    gap: 1rem;
  }
  .p-custom__gallery3-tall figure.wp-block-image:nth-child(1) {
    grid-column: span 4;
  }
  .p-custom__gallery3-tall figure.wp-block-image:nth-child(2),
  .p-custom__gallery3-tall figure.wp-block-image:nth-child(3) {
    grid-column: span 2;
  }
  .p-drawer__logo-link {
    width: 139px;
    width: 8.6875rem;
  }
  .p-drawer__wrap {
    display: contents;
    margin-top: 0;
  }
  .p-drawer__nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 57px;
    margin-top: 3.5625rem;
  }
  .p-drawer__cta-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 27px;
    margin-top: 1.6875rem;
  }
  .p-features-strengths {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 91px;
    padding-top: 5.6875rem;
  }
  .p-features-strengths__wrapper {
    gap: 86px;
    gap: 5.375rem;
    grid-template-columns: 1fr;
  }
  .p-features-strengths__heading-area {
    gap: 29px;
    gap: 1.8125rem;
  }
  .p-features-strengths__heading-label {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-features-strengths__heading {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .p-features-strengths__heading-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-features-strengths__items {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-features-strengths__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    gap: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-features-strengths__item-image {
    width: 100%;
  }
  .p-features-strengths__item-content {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-features-strengths__item-title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-features-strengths__item-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    max-width: none;
  }
  .p-footer {
    padding-bottom: 94px;
    padding-bottom: 5.875rem;
    padding-top: 94px;
    padding-top: 5.875rem;
  }
  .p-footer__wrapper {
    gap: 0;
  }
  .p-footer__top {
    display: contents;
  }
  .p-footer__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-footer__nav-area {
    display: contents;
    gap: 32px;
    gap: 2rem;
  }
  .p-footer__nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-footer__nav-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 18px 32px;
    gap: 1.125rem 2rem;
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
  .p-footer__cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    margin-top: 29px;
    margin-top: 1.8125rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
  }
  .p-footer__bottom {
    display: contents;
  }
  .p-footer__company {
    margin-top: 63px;
    margin-top: 3.9375rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-footer__copyright {
    margin-top: 72px;
    margin-top: 4.5rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
  }
  .p-footer__privacy {
    margin-top: 40px;
    margin-top: 2.5rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .p-footer__privacy a {
    text-align: center;
  }
  .p-header__logo-link {
    width: 139px;
    width: 8.6875rem;
  }
  .p-header__pc-nav-items {
    gap: 32px;
    gap: 2rem;
  }
  .p-header__pc-nav-item a {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-header__cta-buttons {
    gap: 8px;
    gap: 0.5rem;
  }
  .p-interview-archive-list {
    margin-bottom: 120px;
    margin-bottom: 7.5rem;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-interview-archive-list__container {
    padding-bottom: 90px;
    padding-bottom: 5.625rem;
  }
  .p-interview-archive-list__container::before {
    background: url("../images/service/service-archive-bg_sp.png") no-repeat center center/cover;
    top: 116px;
    top: 7.25rem;
  }
  .p-interview-archive-list__items {
    gap: 64px;
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  .p-interview-archive-list__pagenavi {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-interview-archive-list__no-post {
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-interview-info {
    gap: 23.5px;
    gap: 1.46875rem;
    margin-top: 58px;
    margin-top: 3.625rem;
  }
  .p-interview-info__item {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-interview-info__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    gap: 1rem;
  }
  .p-interview-info__label {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    width: auto;
  }
  .p-interview-info__value {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-interview-single__container {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-interview-single__header {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-interview-single__image {
    border-radius: 0.5rem;
  }
  .p-interview-single__meta {
    gap: 16px;
    gap: 1rem;
  }
  .p-interview-single__category {
    font-size: max(11px, 10px);
    font-size: max(0.6875rem, 10px);
    padding: 5px 14px;
    padding: 0.3125rem 0.875rem;
  }
  .p-interview-single__title {
    font-size: max(28px, 10px);
    font-size: max(1.75rem, 10px);
  }
  .p-interview-single__content {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-interview-content {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-interview-content__lead {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-interview-content__heading {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .p-interview-content__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-interview-quote {
    padding: 24px;
    padding: 1.5rem;
  }
  .p-interview-quote p {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-interview-image-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
  }
  .p-interview-image-text__image {
    border-radius: 0.5rem;
    width: 100%;
  }
  .p-interview-image-text__content {
    gap: 12px;
    gap: 0.75rem;
  }
  .p-interview-image-text__heading {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
  .p-interview-image-text__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-interview-single__nav {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-interview-single__nav-items {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .p-interview-single__nav-item--next {
    text-align: left;
  }
  .p-interview-single__nav-link {
    gap: 6px;
    gap: 0.375rem;
  }
  .p-interview-single__nav-label {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
  }
  .p-interview-single__nav-title {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-member-modal {
    padding: 20px;
    padding: 1.25rem;
  }
  .p-member-modal__content {
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
  }
  .p-member-modal__close {
    height: 32px;
    height: 2rem;
    right: 10px;
    right: 0.625rem;
    top: 10px;
    top: 0.625rem;
    width: 32px;
    width: 2rem;
  }
  .p-member-modal__close svg {
    height: 20px;
    height: 1.25rem;
    width: 20px;
    width: 1.25rem;
  }
  .p-member-modal__inner {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
  .p-member-modal__image {
    aspect-ratio: 1/1;
  }
  .p-member-modal__info {
    gap: 24px;
    gap: 1.5rem;
    min-height: auto;
    overflow-y: visible;
    padding: 24px;
    padding: 1.5rem;
  }
  .p-member-modal__section-title {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-member-modal__section-content {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-member-modal__footer {
    border-radius: 0;
    bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    gap: 1rem;
    padding: 20px;
    padding: 1.25rem;
    width: 100%;
  }
  .p-member-modal__footer-separator {
    height: 40px;
    height: 2.5rem;
  }
  .p-member-modal__footer-position {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .p-member-modal__footer-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-member-modal__footer-name-en {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .p-member-modal__footer-sns {
    gap: 12px;
    gap: 0.75rem;
    min-width: 20%;
  }
  .p-member-modal__sns-link {
    height: 16px;
    height: 1rem;
  }
  .p-news-article__link {
    gap: 16px;
    gap: 1rem;
    padding-bottom: 30.4px;
    padding-bottom: 1.9rem;
    padding-top: 32px;
    padding-top: 2rem;
  }
  .p-news-article__content {
    gap: 17px;
    gap: 1.0625rem;
  }
  .p-news-article__date {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-news-article__title {
    -webkit-line-clamp: 4;
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-news-article[data-page=news] .p-news-article__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    gap: 0.5rem;
  }
  .p-news-article[data-page=news] .p-news-article__link {
    gap: 16px;
    gap: 1rem;
  }
  .p-news-article[data-page=news] .p-news-article__meta {
    gap: 16px;
    gap: 1rem;
  }
  .p-news__container {
    margin-bottom: 120px;
    margin-bottom: 7.5rem;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-news__sidebar.l-content-with-sidebar__sidebar {
    margin-top: 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-news__list {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-news-list__pagenavi {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-panel {
    padding-left: 23px;
    padding-left: 1.4375rem;
    padding-right: 23px;
    padding-right: 1.4375rem;
  }
  .p-panel:not(:first-child) {
    margin-top: 85px;
    margin-top: 5.3125rem;
  }
  .p-panel__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    gap: 4rem;
  }
  .p-panel:nth-child(even) .p-panel__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-panel__image {
    width: 100%;
  }
  .p-panel__content {
    gap: 30px;
    gap: 1.875rem;
    padding: 0;
    width: 100%;
  }
  .p-panel:nth-child(even) .p-panel__content {
    padding: 0;
  }
  .p-panel__heading-area {
    gap: 31px;
    gap: 1.9375rem;
  }
  .p-panel__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-panel__button-link {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    height: 48px;
    height: 3rem;
    min-width: auto;
    width: 100%;
  }
  .p-panel__button-link::after {
    height: 32px;
    height: 2rem;
    width: 32px;
    width: 2rem;
  }
  .p-service-archive-filter {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-service-archive-filter__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    padding: 1.25rem;
    row-gap: 24px;
    row-gap: 1.5rem;
  }
  .p-service-archive-filter__group + .p-service-archive-filter__group {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-archive-filter__label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    width: 100%;
  }
  .p-service-archive-filter__button {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    padding: 6px 18px;
    padding: 0.375rem 1.125rem;
  }
  .p-service-archive-list {
    margin-bottom: 120px;
    margin-bottom: 7.5rem;
    margin-top: 89px;
    margin-top: 5.5625rem;
  }
  .p-service-archive-list__container {
    padding-bottom: 90px;
    padding-bottom: 5.625rem;
  }
  .p-service-archive-list__container::before {
    background: url("../images/service/service-archive-bg_sp.png") no-repeat center center/cover;
    top: 179px;
    top: 11.1875rem;
  }
  .p-service-archive-list__items {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    scroll-margin-top: 1.875rem;
  }
  .p-service-archive-list__card {
    padding: 30.5px 32px;
    padding: 1.90625rem 2rem;
  }
  .p-service-archive-list__card-link {
    row-gap: 24px;
    row-gap: 1.5rem;
  }
  .p-service-archive-list__card-title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-service-archive-list__card-description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-archive-list__card-tag {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    padding: 5.2px 18px;
    padding: 0.325rem 1.125rem;
  }
  .p-service-archive-list__card-tag-item {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-archive-list__pagenavi {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-service-archive-list__no-post {
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-service-archive-list__no-result {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-service-single .l-content-with-sidebar {
    gap: 80px;
    gap: 5rem;
  }
  .p-service-single .l-content-with-sidebar__sidebar {
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-service-single .l-content-with-sidebar__main {
    display: block;
  }
  .p-service-single .p-single__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-service-single .p-single__title {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-service-single .p-single__main {
    margin-top: 0;
  }
  .p-service-single__header {
    gap: 24px;
    gap: 1.5rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }
  .p-service-single__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-service-single__description {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-service-single__content {
    gap: 60px;
    gap: 3.75rem;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-service-single__section-title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    scroll-margin-top: 1.875rem;
  }
  .p-service-block:nth-of-type(1) .p-service-single__section-title::before {
    width: 14.367816092%;
  }
  .p-service-block:nth-of-type(1) .p-service-single__section-title::after {
    left: 14.367816092%;
    width: 85.632183908%;
  }
  .p-service-block:nth-of-type(2) .p-service-single__section-title::before {
    width: 33.3333333333%;
  }
  .p-service-block:nth-of-type(2) .p-service-single__section-title::after {
    left: 33.3333333333%;
    width: 66.6666666667%;
  }
  .p-service-block:nth-of-type(3) .p-service-single__section-title::before {
    width: 50%;
  }
  .p-service-block:nth-of-type(3) .p-service-single__section-title::after {
    left: 50%;
    width: 50%;
  }
  .p-service-block:nth-of-type(4) .p-service-single__section-title::before {
    width: 66.6666666667%;
  }
  .p-service-block:nth-of-type(4) .p-service-single__section-title::after {
    left: 66.6666666667%;
    width: 33.3333333333%;
  }
  .p-service-block:nth-of-type(5) .p-service-single__section-title::before {
    width: 83.3333333333%;
  }
  .p-service-block:nth-of-type(5) .p-service-single__section-title::after {
    left: 83.3333333333%;
    width: 16.6666666667%;
  }
  .p-service-points {
    padding: 18px 24px 26px;
    padding: 1.125rem 1.5rem 1.625rem;
  }
  .p-content ol.p-service-points__items {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-content ol > li.p-service-points__item {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-service-points__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-service-overview {
    padding-top: 53px;
    padding-top: 3.3125rem;
  }
  .p-service-overview__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-challenges {
    padding-top: 53px;
    padding-top: 3.3125rem;
  }
  .p-service-challenges__items {
    gap: 32px !important;
    gap: 2rem !important;
    margin-top: 24px !important;
    margin-top: 1.5rem !important;
  }
  .p-content h3.p-service-challenges__question {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-service-challenges__answer {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-cases {
    padding-top: 53px;
    padding-top: 3.3125rem;
  }
  .p-service-cases__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-cases__items {
    margin-top: 24px !important;
    margin-top: 1.5rem !important;
  }
  .p-service-cases__items {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
  .p-service-cases__image {
    aspect-ratio: 348/232;
  }
  .p-content h3.p-service-cases__item-title {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-service-cases__item-meta {
    gap: 8px !important;
    gap: 0.5rem !important;
  }
  .p-service-cases__meta-row.wp-block-group.is-layout-flex {
    gap: 12px;
    gap: 0.75rem;
  }
  .p-content p.p-service-cases__meta-label {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
    width: 32%;
  }
  .p-content p.p-service-cases__meta-value {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-faq {
    padding-top: 53px;
    padding-top: 3.3125rem;
  }
  .p-service-faq__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-faq__items {
    gap: 31px !important;
    gap: 1.9375rem !important;
  }
  .p-service-faq__item {
    gap: 16px !important;
    gap: 1rem !important;
  }
  .p-content h3.p-service-faq__question-label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content h3.p-service-faq__question-label::before {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-content p.p-service-faq__answer {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-flow {
    padding-top: 55px;
    padding-top: 3.4375rem;
  }
  .p-service-flow__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-flow__items {
    gap: 0 !important;
    margin-top: 24px !important;
    margin-top: 1.5rem !important;
  }
  .p-service-flow__item {
    gap: 24px !important;
    gap: 1.5rem !important;
  }
  .p-service-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-service-flow__item:not(:first-child) {
    padding-top: 30.8px !important;
    padding-top: 1.925rem !important;
  }
  .p-service-flow__item:not(:last-child) {
    padding-bottom: 31.2px !important;
    padding-bottom: 1.95rem !important;
  }
  .p-service-flow__item:nth-child(3) {
    padding-bottom: 51px !important;
    padding-bottom: 3.1875rem !important;
  }
  .p-service-flow__item:nth-child(4) {
    padding-top: 49px !important;
    padding-top: 3.0625rem !important;
  }
  .p-service-flow__number {
    margin-right: 8px !important;
    margin-right: 0.5rem !important;
  }
  .p-service-flow__content {
    gap: 16px !important;
    gap: 1rem !important;
  }
  .p-service-flow__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
  .p-service-flow__item:nth-child(4) .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon,
  .p-service-flow__item:nth-child(5) .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon,
  .p-service-flow__item:nth-child(6) .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon,
  .p-service-flow__item:nth-child(7) .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon,
  .p-service-flow__item:nth-child(8) .wp-block-group.is-layout-flex .wp-block-image.p-service-flow__icon {
    width: 42px;
    width: 2.625rem;
  }
  .p-content h3.p-service-flow__item-title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content h3.p-service-flow__item-title:has(small) {
    line-height: 1.3;
  }
  .p-service-flow__item-description {
    gap: 0 !important;
  }
  .p-service-flow__item-description {
    margin-top: 24px;
    margin-top: 1.5rem;
    width: 100%;
  }
  .p-service-flow__item-description > p {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-service-flow__item-description > p.sub-ttl strong {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-service-flow__item-description p + p {
    margin-top: 24px !important;
    margin-top: 1.5rem !important;
  }
  .p-content ul.p-service-flow__item-list {
    margin-top: 16px !important;
    margin-top: 1rem !important;
  }
  .p-content ul.p-service-flow__item-list {
    gap: 8px;
    gap: 0.5rem;
  }
  .p-content ul.p-service-flow__item-list li {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-content p.p-service-flow__contract {
    margin: 0 !important;
  }
  .p-content p.p-service-flow__contract {
    bottom: -8%;
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    padding: 12px 12px;
    padding: 0.75rem 0.75rem;
  }
  .p-single-content h2 {
    padding: 16px;
    padding: 1rem;
  }
  .p-single-content h2:not(:first-child) {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-single__heading {
    background: url("../images/common/heading-bg_sp.png") no-repeat center center/cover;
    height: 140px;
    height: 8.75rem;
  }
  .p-single__heading + .p-breadcrumb {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-single__container {
    margin-bottom: 120px;
    margin-bottom: 7.5rem;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-single__head {
    display: contents;
  }
  .p-single__head--news {
    gap: 25px;
    gap: 1.5625rem;
  }
  .p-single__date {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-single__title {
    font-size: 32px;
    font-size: 2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-single__meta {
    margin-bottom: 32px;
    margin-bottom: 2rem;
    margin-top: 32px;
    margin-top: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-single__tags {
    margin-bottom: 32px;
    margin-bottom: 2rem;
    margin-top: 32px;
    margin-top: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-single__thumbnail {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-single__interview-info {
    margin-top: 90px;
    margin-top: 5.625rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .p-single__tags-label {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-single__tags-list {
    gap: 12px 16px;
    gap: 0.75rem 1rem;
  }
  .p-single__tags-item {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
  }
  .p-single__content {
    margin-top: 90px;
    margin-top: 5.625rem;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .p-single__button {
    margin-top: 40px;
    margin-top: 2.5rem;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .p-sub-hero {
    padding: 15px;
    padding: 0.9375rem;
  }
  .p-sub-hero__inner {
    min-height: 486px;
    min-height: 30.375rem;
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
  }
  .p-sub-hero__bg {
    border-radius: 0.625rem;
  }
  .p-sub-hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    gap: 2rem;
    padding: 139px 0 33px;
    padding: 8.6875rem 0 2.0625rem;
  }
  .p-sub-hero__label {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-sub-hero__heading {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
  }
  .p-sub-hero__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    max-width: 100%;
    padding-top: 0;
  }
  .p-sub-hero + .p-breadcrumb {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .p-top-hero {
    padding-top: 10px;
    padding-top: 0.625rem;
  }
  .p-top-hero__inner {
    padding-left: 6px;
    padding-left: 0.375rem;
    padding-right: 6px;
    padding-right: 0.375rem;
  }
  .p-top-hero__badge {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-hero__badge-icon {
    width: min(251px, 100%);
    width: min(15.6875rem, 100%);
  }
  .p-top-hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 23px;
    gap: 1.4375rem;
    padding-bottom: 0px;
    padding-bottom: 0rem;
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    padding-top: 95px;
    padding-top: 5.9375rem;
  }
  .p-top-hero__content {
    gap: 32px;
    gap: 2rem;
    margin-top: 0;
    max-width: none;
  }
  .p-top-hero__heading {
    width: min(184px, 100%);
    width: min(11.5rem, 100%);
  }
  .p-top-hero__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-top-hero__button-link {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    height: 48px;
    height: 3rem;
    min-width: auto;
    width: 100%;
  }
  .p-top-hero__button-link::after {
    height: 32px;
    height: 2rem;
    width: 32px;
    width: 2rem;
  }
  .p-top-hero__visual {
    height: 333px;
    height: 20.8125rem;
    margin-left: auto;
    margin-right: auto;
    width: 333px;
    width: 20.8125rem;
  }
  .p-top-hero__visual-main {
    height: 220px;
    height: 13.75rem;
    width: 220px;
    width: 13.75rem;
  }
  .p-top-hero__visual-part--01 {
    height: 217.75px;
    height: 13.609375rem;
    width: 217.75px;
    width: 13.609375rem;
  }
  .p-top-hero__visual-part--02 {
    height: 215.53px;
    height: 13.470625rem;
    width: 215.53px;
    width: 13.470625rem;
  }
  .p-top-hero__visual-left {
    height: 220px;
    height: 13.75rem;
    width: 109px;
    width: 6.8125rem;
  }
  .p-top-hero__visual-part--03 {
    height: 106.56px;
    height: 6.66rem;
    top: 2.5px;
    top: 0.15625rem;
    width: 106.56px;
    width: 6.66rem;
  }
  .p-top-hero__visual-part--04 {
    height: 106.56px;
    height: 6.66rem;
    width: 108.78px;
    width: 6.79875rem;
  }
  .p-top-hero__visual-bottom {
    height: 109px;
    height: 6.8125rem;
    width: 331px;
    width: 20.6875rem;
  }
  .p-top-hero__visual-part--05 {
    height: 107.86px;
    height: 6.74125rem;
    width: 107.86px;
    width: 6.74125rem;
  }
  .p-top-hero__visual-part--06 {
    height: 105.64px;
    height: 6.6025rem;
    left: 5.35px;
    left: 0.334375rem;
    width: 211.28px;
    width: 13.205rem;
  }
  .p-top-hero__visual-part--07 {
    height: 108.78px;
    height: 6.79875rem;
    width: 216.64px;
    width: 13.54rem;
  }
  .p-top-interview {
    padding-bottom: 90px;
    padding-bottom: 5.625rem;
    padding-top: 86px;
    padding-top: 5.375rem;
  }
  .p-top-interview__wrapper {
    gap: 61px;
    gap: 3.8125rem;
  }
  .p-top-interview__heading-area {
    gap: 32px;
    gap: 2rem;
  }
  .p-top-interview__description {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-top-news {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 86px;
    padding-top: 5.375rem;
  }
  .p-top-news__inner {
    padding-bottom: 0;
    padding-top: 0;
  }
  .p-top-news__inner::before {
    height: 375px;
    height: 23.4375rem;
    left: -48px;
    left: -3rem;
    width: 375px;
    width: 23.4375rem;
  }
  .p-top-news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-top-news__left {
    display: contents;
  }
  .p-top-news__button {
    margin-top: 30px;
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .p-top-news__right {
    margin-top: 57.5px;
    margin-top: 3.59375rem;
    width: 100%;
  }
  .p-top-news__button-link {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    height: 48px;
    height: 3rem;
    min-width: auto;
    width: 100%;
  }
  .p-top-news__button-link::after {
    height: 32px;
    height: 2rem;
    width: 32px;
    width: 2rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-treat {
    display: none;
  }
}
@media (hover: hover){
  a:hover {
    opacity: 0.7;
  }
}
@media (hover: none){
  a:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 975px){
  .l-drawer {
    background-color: rgba(255, 255, 255, 0.5);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    visibility: hidden;
    z-index: 100;
  }
  .l-header {
    height: 60px;
    height: 3.75rem;
    top: 27px;
    top: 1.6875rem;
    width: calc(100% - 2.5rem);
  }
  .is-drawerActive .l-header {
    opacity: 0;
    pointer-events: none;
  }
  .c-menu-button {
    background: -webkit-gradient(linear, left top, right top, from(#495aff), to(#68e0cf));
    background: linear-gradient(90deg, #495aff 0%, #68e0cf 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 48px;
    height: 3rem;
    position: relative;
    width: 48px;
    width: 3rem;
  }
  .c-menu-button::before {
    background: #fff;
    border-radius: 50%;
    bottom: 3px;
    bottom: 0.1875rem;
    content: "";
    left: 3px;
    left: 0.1875rem;
    position: absolute;
    right: 3px;
    right: 0.1875rem;
    top: 3px;
    top: 0.1875rem;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .c-menu-button span {
    background-color: #142fc6;
    border-radius: 0.0625rem;
    display: block;
    height: 2px;
    height: 0.125rem;
    /* 左揃え: アイコン領域(24x24)はボタン内でセンタリング。x=3 の位置 = 50% - 9px */
    left: calc(50% - 0.5625rem);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 13px;
    width: 0.8125rem;
    z-index: 1;
  }
  .c-menu-button span::before,
  .c-menu-button span::after {
    background-color: #142fc6;
    border-radius: 0.0625rem;
    content: "";
    display: block;
    height: 2px;
    height: 0.125rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .c-menu-button span::before {
    -webkit-transform: translateY(-0.4375rem);
            transform: translateY(-0.4375rem);
    width: 8px;
    width: 0.5rem;
  }
  .c-menu-button span::after {
    -webkit-transform: translateY(0.4375rem);
            transform: translateY(0.4375rem);
    width: 18px;
    width: 1.125rem;
  }
  .c-menu-button[aria-expanded=true]::before {
    opacity: 0;
  }
  .c-menu-button[aria-expanded=true] span {
    background-color: transparent;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 16px;
    width: 1rem;
  }
  .c-menu-button[aria-expanded=true] span::before {
    background-color: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    width: 16px;
    width: 1rem;
  }
  .c-menu-button[aria-expanded=true] span::after {
    background-color: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    width: 16px;
    width: 1rem;
  }
  .p-header {
    border-radius: 3.75rem;
  }
  .p-header__inner {
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 10px;
    padding-right: 0.625rem;
  }
  .p-header__menu-button {
    display: block;
    margin-left: auto;
  }
  .p-header__right {
    display: none;
  }
}
@media (any-hover: hover){
  .c-button:hover {
    opacity: 1;
  }
  /* 左側アイコン: hover */
  .c-button:not(.c-button--right):hover .c-button__circle-left {
    -webkit-transform: translateX(calc(var(--gap) * 0.3));
            transform: translateX(calc(var(--gap) * 0.3));
  }
  .c-button:not(.c-button--right):hover .c-button__arrow-left {
    -webkit-transform: translate(-50%, -50%) scale(1.03);
            transform: translate(-50%, -50%) scale(1.03);
  }
  .c-button:not(.c-button--right):hover .c-button__text {
    margin-left: calc(var(--circle-w) * 0.15);
    padding-left: calc(var(--gap) - var(--circle-w) * 0.15);
    width: calc(var(--total-w) - var(--circle-w) * 0.15);
  }
  /* 右側アイコン: hover */
  .c-button--right:hover .c-button__circle-right {
    -webkit-transform: translateX(calc(var(--gap) * -0.3));
            transform: translateX(calc(var(--gap) * -0.3));
  }
  .c-button--right:hover .c-button__arrow-right {
    -webkit-transform: translate(-50%, -50%) scale(1.03);
            transform: translate(-50%, -50%) scale(1.03);
  }
  .c-button--right:hover .c-button__text {
    margin-right: calc(var(--circle-w) * 0.15);
    padding-right: calc(var(--gap) - var(--circle-w) * 0.15);
    width: calc(var(--total-w) - var(--circle-w) * 0.15);
  }
  /* --- linear + hover: グラデーション反転（左側アイコン） --- */
  .c-button[data-base-color~=linear]:not(.c-button--right):hover .c-button__circle-left {
    background-position: calc(var(--total-w) * -1) 0;
  }
  .c-button[data-base-color~=linear]:not(.c-button--right):hover .c-button__text {
    background-position: calc(var(--circle-w) * -0.15 - var(--total-w)) 0;
    margin-left: calc(var(--circle-w) * 0.15);
    padding-left: calc(var(--gap) - var(--circle-w) * 0.15);
    width: calc(var(--total-w) - var(--circle-w) * 0.15);
  }
  /* --- linear + hover: グラデーション反転（右側アイコン） --- */
  .c-button[data-base-color~=linear].c-button--right:hover .c-button__circle-right {
    background-position: calc((var(--total-w) - var(--circle-w)) * -1 - var(--total-w)) 0;
  }
  .c-button[data-base-color~=linear].c-button--right:hover .c-button__text {
    background-position: calc(var(--circle-w) * -0.15 - var(--total-w)) 0;
    margin-right: calc(var(--circle-w) * 0.15);
    padding-right: calc(var(--gap) - var(--circle-w) * 0.15);
    width: calc(var(--total-w) - var(--circle-w) * 0.15);
  }
  .p-about-member__card:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .p-card__link:hover {
    opacity: 1;
  }
  .p-card__link:hover .p-card__title,
  .p-card__link:hover .p-card__tag-value {
    color: #142fc6;
  }
  .p-card__link:hover .p-card__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-drawer__nav-item:hover {
    opacity: 0.7;
  }
  .p-news-article__link:hover {
    opacity: 1;
  }
  .p-news-article__link:hover .p-news-article__title {
    color: #142fc6;
  }
  .p-news-article__link:hover .p-news-article__arrow {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-service-archive-list__card:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .p-service-archive-list__card:hover .p-service-archive-list__card-link {
    opacity: 1;
  }
  .p-service-archive-list__card:hover .p-service-archive-list__card-title {
    color: #142fc6;
  }
}
/*# sourceMappingURL=style.css.map */
