@layer global, reset, wordpress, base, layout, vendor, components, site, page, legacy, javascript, utility;

@layer global{

:root {
  --color-back: #fff;
  --color-text: #323232;
  --color-primary: #ff7220;
  --color-secondary: #ffd61d;
  --color-error: #8b055b;
  --color-form: var(--color-primary);

  --color-service-consulting: #ff7220;
  --color-service-management: #ffd61d;
  --color-service-governance: #68dabd;
  --color-service-bi: #3c8bf6;
  --color-service-utilization: #b051ab;
  --color-service-seminar: #f82350;
  --color-service-cleansing: #be9358;

  --color-gradient-heading: linear-gradient(to right, #000000, #7c7963);

  --fontFamily-default:
    "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  --fontFamily-noto:
    "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;

  --fontFamily-en: "Instrument Sans", sans-serif;

  --height-header: 80;
  --scroll-padding-top: var(--height-header);
  --line-clamp: 2;

  --width-inner-lg: 1440;
  --width-inner: 1230;
  --width-inner-sm: 1040;

  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;

  --leading-trim: calc((1em - 1lh) / 2);
  --size-check: 24px;

  --color-border: #ccc;
  --color-placeholder: #ccc;

  --gutter: 23px;
  --gutter-inner: 23px;

  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);

  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width: 1024px) {
  :root {
    --height-header: 52;
  }
}
/* @font-face {
  font-family: "xxxxxxxx";
  src: url(../fonts/xxxxxxxx.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
} */
}

@layer reset{

/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
    counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}
}

@layer base{

/* base style */

html {
  scroll-padding-top: calc(var(--scroll-padding-top) * 1px);
  scrollbar-gutter: stable;
}

body {
  background: var(--color-back);
  color: var(--color-text);
  font-family: var(--fontFamily-default);
  overflow-wrap: break-word;
  /* word-break: break-all; */
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
:where(figure) {
  margin: 0;
}

a:where(:not(.wp-element-button)) {
  text-decoration: none;
}

/* セマンティック要素の復元 (all: unset による消失を補完) */
strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub {
  vertical-align: sub;
  font-size: 75%;
}

sup {
  vertical-align: super;
  font-size: 75%;
}

mark {
  background-color: #ff0;
  color: #000;
}

del,
s {
  text-decoration: line-through;
}

ins,
u {
  text-decoration: underline;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border, #ccc);
}

code,
pre {
  font-family: "Courier New", Consolas, monospace;
  white-space: pre-wrap;
}

img,
picture > img,
picture > source,
figure {
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: auto;
  display: block;
}

picture {
  display: contents;
}

iframe {
  border: 0;
  max-width: 100%;
}
:where(figure) {
  margin: 0 0 1em;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  touch-action: manipulation;
  font-size: 1rem;
}

:where(
  :any-link,
  button,
  [type="button"],
  [type="reset"],
  [type="submit"],
  label[for],
  select,
  summary,
  [role="tab"],
  [role="button"]
) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

:where(a, button, summary, [role="button"], [role="tab"]):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   フォーム要素
   ================================================================ */

/* label: iOS対応のためにポインター指定 */
label {
  cursor: pointer;
}

/* プレースホルダー色調整 */
::placeholder {
  color: var(--color-placeholder, #ccc);
}

optgroup {
  font-size: 1rem;
}

/* テキスト系入力・テキストエリア・セレクトボックス共通 */
input:not(
  [type="radio"],
  [type="checkbox"],
  [type="range"],
  [type="file"],
  [type="hidden"],
  [type="button"],
  [type="reset"],
  [type="submit"],
  [type="image"],
  [type="color"]
),
textarea,
select {
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
  min-width: 0;
  padding: 0.5em 0.75em;
  width: 100%;
  accent-color: var(--color-form);
}

/* フォーカス */
input:not(
    [type="radio"],
    [type="checkbox"],
    [type="range"],
    [type="file"],
    [type="hidden"],
    [type="button"],
    [type="reset"],
    [type="submit"],
    [type="image"],
    [type="color"]
  ):focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

textarea {
  resize: vertical;
}

/* スピンボタン非表示 (Chrome / Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
  margin: 0;
}

/* スピンボタン非表示 (Firefox) */
input[type="number"] {
  appearance: textfield;
}

/* 日付系入力のクリアボタン非表示 */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
  appearance: none;
}

/* セレクトボックス */
select {
  appearance: none;
}

.c-select {
  display: block;
  position: relative;
}

.c-select select {
  padding-right: 2.5em;
}

.c-select::after {
  border-bottom: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  content: "";
  display: block;
  height: 8px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  transform: rotate(45deg) translateY(-25%);
  width: 8px;
}

option:disabled {
  color: #ccc;
  opacity: 1;
}

/* スライダー (type="range") */
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #ddd;
  margin: 0.5em 0;
  accent-color: var(--color-form);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ddd;
}

/* ラジオボタン・チェックボックス共通
   --size-check (variables.css) を変更すると全体のサイズが連動します */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  padding-left: calc(var(--size-check) + 0.75em);
  position: relative;
}

input[type="radio"]:focus-visible + span,
input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ラジオボタン */
input[type="radio"] + span::before {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="radio"] + span::after {
  content: "";
  display: none;
}

input[type="radio"]:checked + span::after {
  background: var(--color-primary);
  border-radius: 50%;
  display: block;
  height: calc(var(--size-check) * 0.5);
  left: calc(var(--size-check) * 0.25);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.25);
  width: calc(var(--size-check) * 0.5);
}

/* チェックボックス */
input[type="checkbox"] + span::before {
  background: #fff;
  border: 2px solid var(--color-primary);
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="checkbox"] + span::after {
  content: "";
  display: none;
}

input[type="checkbox"]:checked + span::after {
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  content: "";
  display: block;
  height: calc(var(--size-check) * 0.6);
  left: calc(var(--size-check) * 0.35);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.13);
  transform: rotate(45deg);
  width: calc(var(--size-check) * 0.35);
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
}

@layer layout{

.l-main {
  /* margin-top: calc(var(--height-header) * 1px); */
}

.l-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.l-inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-sm {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-lg {
  max-width: calc(var(--width-inner-lg) * 1px);
  margin-left: auto;
  margin-right: auto;
}
}

@layer vendor{
/* プラグイン等のベンダースタイル上書き用 */
}

@layer vendor{

/* Writer Support プラグイン用スタイル
   プラグインのCSSはテーマ側で dequeue しているため、
   必要なスタイルをここで管理する */

/* カラーマーカー */
#wp-postbody .marker-y {
  background-image: linear-gradient(
    1.6deg,
    #f8eba9,
    #f8eba9 36%,
    transparent 30.1%,
    transparent
  );
}

#wp-postbody .marker-p {
  background-image: linear-gradient(
    1.6deg,
    #ffc7f6,
    #ffc7f6 36%,
    transparent 30.1%,
    transparent
  );
}

#wp-postbody .marker-w {
  background-image: linear-gradient(
    1.6deg,
    #abeffe,
    #abeffe 36%,
    transparent 30.1%,
    transparent
  );
}

#wp-postbody .marker-g {
  background-image: linear-gradient(
    1.6deg,
    #afffb1,
    #afffb1 36%,
    transparent 30.1%,
    transparent
  );
}

/* アンダーラインマーカー */
#wp-postbody .f-marker-y {
  background-image: linear-gradient(transparent 80%, #f8eba9 80%);
}

#wp-postbody .f-marker-p {
  background-image: linear-gradient(transparent 80%, #ffc7f6 80%);
}

#wp-postbody .f-marker-w {
  background-image: linear-gradient(transparent 80%, #abeffe 80%);
}

#wp-postbody .f-marker-g {
  background-image: linear-gradient(transparent 80%, #afffb1 80%);
}

/* ボタンA（link-button-green）/ ボタンB（link-button-orange）
   src/css/legacy/child-style.css の .entry-content 版を #wp-postbody 用に適用 */
#wp-postbody .link-button-green,
#wp-postbody .link-button-orange {
  margin-bottom: 35px !important;
  text-align: center;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  #wp-postbody .link-button-green,
  #wp-postbody .link-button-orange {
    margin-bottom: 44px !important;
  }
}

#wp-postbody .link-button-green a,
#wp-postbody .link-button-orange a {
  display: inline-block;
  padding: 8px 32px 9px;
  color: #fff !important;
  font-weight: bold;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  #wp-postbody .link-button-green a,
  #wp-postbody .link-button-orange a {
    max-width: 305px;
    width: 100%;
    padding: 16px 32px;
  }
}

#wp-postbody .link-button-green .svg-inline--fa,
#wp-postbody .link-button-orange .svg-inline--fa {
  display: none !important;
}

#wp-postbody .link-button-green:hover a,
#wp-postbody .link-button-orange:hover a {
  opacity: 0.8;
  text-decoration: none !important;
}

#wp-postbody .link-button-green a {
  background: #1349c8;
}

#wp-postbody .link-button-orange a {
  background: #067c51;
}
}

@layer vendor{
/* ブロックエディタ用のスタイル（フロントエンド投稿本文） */
#wp-postbody {
  display: flow-root;
  overflow: clip;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#wp-postbody :where(.wp-block-pullquote) {
  font-size: 1em;
}

#wp-postbody > *,
#wp-postbody
  :where(
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ul,
    ol,
    dl,
    blockquote,
    pre,
    figure,
    table,
    details,
    hr
  ) {
  margin-top: 1em;
  margin-bottom: 1em;
}

#wp-postbody > :first-child,
#wp-postbody
  :where(
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ul,
    ol,
    dl,
    blockquote,
    pre,
    figure,
    table,
    details,
    hr
  ):first-child {
  margin-top: 0;
}

#wp-postbody > :last-child,
#wp-postbody
  :where(
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ul,
    ol,
    dl,
    blockquote,
    pre,
    figure,
    table,
    details,
    hr
  ):last-child {
  margin-bottom: 0;
}

#wp-postbody :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  line-height: 1.4;
}

#wp-postbody h1 {
  font-size: 2em;
}

#wp-postbody h2 {
  margin: 60px 0 23px;
  padding: 15px 32px;
  background: #363840;
  color: #fff;
  font-size: 24px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  #wp-postbody h2 {
    font-size: 20px;
    line-height: 1.7;
    padding: 16px;
  }
}

#wp-postbody h3 {
  margin: 52px 0 15px;
  padding: 11px 20px;
  border-top: 1px solid #ceced1;
  border-left: 3px solid #363840;
  border-bottom: 1px solid #363840;
  font-size: 22px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #wp-postbody h3 {
    font-size: 18px;
    line-height: 1.55;
    padding: 14px 10px;
  }
}

#wp-postbody h4 {
  margin: 50px 0 8px;
  padding-left: 21px;
  font-size: 18px;
  line-height: 1.33;
  position: relative;
}

#wp-postbody h4::before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

#wp-postbody h5 {
  font-size: 1.1em;
}

#wp-postbody h6 {
  font-size: 1em;
}

#wp-postbody :is(th, td) {
  padding: 0.5em;
}

#wp-postbody blockquote {
  border: 1px solid #808080;
  padding: 1.5em;
}

#wp-postbody .wp-block-pullquote {
  font-size: 1em !important;
  line-height: unset !important;
  margin: 1em 0 !important;
  padding: unset !important;
}

#wp-postbody figure {
  max-width: 100%;
}

#wp-postbody figure.wp-block-table {
  overflow: visible;
}

#wp-postbody figcaption {
  text-align: center;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

#wp-postbody figure.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

#wp-postbody img {
  max-width: 100%;
}

#wp-postbody
  :is(img.alignnone, img.alignleft, img.alignright, img.aligncenter) {
  display: block;
  height: auto;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

#wp-postbody img.alignnone {
  margin-left: 0;
}

#wp-postbody img.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody img.alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody ul > li {
  margin-top: 1em;
  padding-left: 1em;
  position: relative;
}

#wp-postbody ul > li::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.25em;
  position: absolute;
  top: 1.1em;
  width: 0.4em;
  translate: -50% -50%;
}

#wp-postbody ol {
  counter-reset: li;
}

#wp-postbody ol > li {
  list-style: none;
  margin-top: 1em;
  padding-left: 1.8em;
  position: relative;
}

#wp-postbody ol > li::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

#wp-postbody a[href] {
  transition: opacity 0.2s;
}

#wp-postbody a[href]:hover {
  opacity: 0.8;
}

#wp-postbody table {
  width: 100%;
}

#wp-postbody table th {
  font-weight: 700;
}

#wp-postbody dt {
  font-weight: 700;
}

#wp-postbody dd {
  margin-bottom: 1.25em;
}

#wp-postbody dd + dt {
  margin-top: 1.25em;
}

#wp-postbody pre,
#wp-postbody code {
  white-space: pre-wrap;
}

#wp-postbody .aligncenter {
  display: block;
}

#wp-postbody .alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody .alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody .wp-caption,
#wp-postbody [class*="wp-image"] {
  display: block;
  max-width: 100%;
  object-fit: contain;
  text-align: center;
}

#wp-postbody .wp-caption-text {
  margin-bottom: 0;
  margin-top: 0;
}

#wp-postbody summary::before {
  content: "▽";
  margin-right: 0.2em;
  display: inline-block;
}

#wp-postbody details[open] > summary::before {
  content: "▼";
}

#wp-postbody details > * {
  margin-top: 1em;
}

#wp-postbody details > *:first-child {
  margin-top: 0;
}

#wp-postbody .wp-element-button {
  background-color: var(--color-primary);
  color: #fff;
}

#wp-postbody a[href].wp-element-button {
  text-decoration: none;
}

/* ルビ */
#wp-postbody rt {
  font-size: 0.5em;
}

/* パスワードフォーム */
#wp-postbody .post-password-form p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}

#wp-postbody .post-password-form label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex: 1;
  min-width: 0;
}

#wp-postbody .post-password-form input[type="password"] {
  width: auto;
  flex: 1;
}

#wp-postbody .post-password-form input[type="submit"] {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 4px;
}

#wp-postbody .link-button-orange a {
  display: inline-block;
}
#wp-postbody .link-button-green a {
  display: inline-block;
}

#wp-postbody .wp-embedded-content{
  width: 100%;
}

/* Legacy entry-content styles */
#wp-postbody {
  font-size: 16px;
  line-height: 32px;
}

#wp-postbody p {
  margin-bottom: 2em;
}

#wp-postbody h2 {
  margin: 60px -40px 23px -40px;
  padding: 15px 32px;
  border-bottom: 0;
  background: #363840;
  font-size: 24px;
  line-height: 42px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #wp-postbody h2 {
    margin: 60px -16px 23px -16px;
  }
}

@media screen and (max-width: 767px) {
  #wp-postbody h2 {
    margin: 60px -16px 17px -16px;
    font-size: 20px;
    line-height: 34px;
    padding: 16px;
  }
}

#wp-postbody h3 {
  margin: 52px 0 15px;
  padding: 11px 20px;
  border-top: 1px solid #ceced1;
  border-left: 3px solid #363840;
  border-bottom: 1px solid #363840;
  position: relative;
  font-size: 22px;
  line-height: 33px;
}

@media screen and (max-width: 550px) {
  #wp-postbody h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 52px 0 15px;
    padding: 14px 10px;
  }
}

#wp-postbody h4 {
  margin: 50px 0 8px;
  padding-left: 21px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  position: relative;
}

#wp-postbody h4:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #363840;
}

@media screen and (max-width: 767px) {
  #wp-postbody h4 {
    font-size: 16px;
    line-height: 20px;
    margin: 50px 0 13px;
  }
}

#wp-postbody h5 {
  margin: 0 0 12px;
  font-size: 18px;
  position: relative;
}

@media screen and (max-width: 550px) {
  #wp-postbody h5 {
    font-size: 16px;
  }
}

#wp-postbody h6 {
  margin: 0 0 8px;
}

@media screen and (max-width: 550px) {
  #wp-postbody h6 {
    font-size: 14px;
  }
}

#wp-postbody ul {
  margin-bottom: 2em;
}

#wp-postbody ul li ul {
  margin-bottom: 0;
}

#wp-postbody ol {
  margin-bottom: 2em;
  padding-left: 32px;
}

#wp-postbody dl {
  margin-bottom: 2em;
  font-size: 16px;
}

#wp-postbody dl dt {
  display: inline-block;
  margin: 0 0 12px;
  padding: 11px 15px;
  border: 1px solid #ffffff;
  background: #f8f8f9;
  line-height: 26px;
}

@media screen and (max-width: 550px) {
  #wp-postbody dl dt {
    margin-bottom: 21px;
  }
}

#wp-postbody dl dd {
  margin: 0;
  line-height: 28px;
}

@media screen and (max-width: 550px) {
  #wp-postbody dl dd {
    line-height: 32px;
  }
}

#wp-postbody table {
  width: 100% !important;
  margin-bottom: 2em;
}

#wp-postbody table th {
  background: #363840;
  color: #fff;
}

#wp-postbody table tr:nth-child(odd) td {
  background: #fff;
}

#wp-postbody blockquote {
  margin-bottom: 39px;
  padding: 32px 32px 32px 68px;
  background: #828489;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #wp-postbody blockquote {
    padding: 39px 32px 33px;
    line-height: 32px;
  }
}

#wp-postbody blockquote:before {
  top: 23px;
  left: 25px;
  font-size: 20px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #wp-postbody blockquote:before {
    top: 18px;
    left: 18px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  #wp-postbody blockquote:after {
    bottom: 7px;
    right: 17px;
    font-family: FontAwesome;
    position: absolute;
    font-size: 18px;
    content: '\f10e';
  }
}

#wp-postbody .attention {
  padding: 32px 40px;
  margin-bottom: 40px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  #wp-postbody .attention {
    padding: 22px 32px 29px;
    line-height: 32px;
    margin-bottom: 60px;
  }
}

#wp-postbody .a-1 {
  background-color: #f8f8f9;
}

#wp-postbody .a-2 {
  border: 1px solid #ceced1;
}

#wp-postbody .a-3 {
  border: 1px solid #ceced1;
  padding-top: 0;
}

#wp-postbody .a-3 .attention-title {
  color: #fff;
  background: #363840;
  font-size: 18px;
  font-weight: bold;
  line-height: 27.99px;
  padding: 17px 0 16px;
  margin: 0 -40px 20px -40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #wp-postbody .a-3 .attention-title {
    margin: 0 -32px 14px -32px;
  }
}

#wp-postbody .attention ul:last-child,
#wp-postbody .attention p:last-child,
#wp-postbody blockquote ul:last-child,
#wp-postbody blockquote p:last-child {
  margin-bottom: 0;
}

#wp-postbody .link-button-green,
#wp-postbody .link-button-orange {
  margin-bottom: 35px !important;
  text-align: center;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  #wp-postbody .link-button-green,
  #wp-postbody .link-button-orange {
    margin-bottom: 44px !important;
  }
}

#wp-postbody .link-button-green a,
#wp-postbody .link-button-orange a {
  display: inline-block;
  padding: 8px 32px 9px;
  color: #fff !important;
  font-weight: bold;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  #wp-postbody .link-button-green a,
  #wp-postbody .link-button-orange a {
    max-width: 305px;
    width: 100%;
    padding: 16px 32px;
  }
}

#wp-postbody .link-button-green a i,
#wp-postbody .link-button-orange a i {
  margin-right: 10px;
}

#wp-postbody .link-button-green:hover a,
#wp-postbody .link-button-orange:hover a {
  opacity: 0.8;
  text-decoration: none !important;
}

#wp-postbody .link-button-green a {
  background: #1349c8;
}

#wp-postbody .link-button-orange a {
  background: #067c51;
}

#wp-postbody .dvl-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

#wp-postbody .dvl-btn[class][class] {
  display: block;
  border: 1px solid #1349c8;
  border-radius: 50em;
  width: 100%;
  max-width: 320px;
  padding: 1em;
  text-align: center;
  transition: .3s;
  text-decoration: none;
}

#wp-postbody .dvl-btn span {
  position: relative;
  padding-left: 36px;
}

#wp-postbody .dvl-btn span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  transition: .3s;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
}

#wp-postbody .dvl-btn--dl {
  background-color: #fff;
  color: #1349c8;
}

#wp-postbody .dvl-btn--dl span::before {
  background-color: #1349c8;
  -webkit-mask-image: url(../images/legacy/icon_note.svg);
  mask-image: url(../images/legacy/icon_note.svg);
}

#wp-postbody .dvl-btn--estimate {
  background-color: #1349c8;
  color: #fff;
}

#wp-postbody .dvl-btn--estimate span::before {
  background-color: #fff;
  -webkit-mask-image: url(../images/legacy/icon_mtg.svg);
  mask-image: url(../images/legacy/icon_mtg.svg);
}

#wp-postbody .dvl-btn--achievement {
  background-color: #fff;
  color: #1349c8;
}

#wp-postbody .dvl-btn--achievement span::before {
  background-color: #1349c8;
  -webkit-mask-image: url(../images/legacy/icon_pc.svg);
  mask-image: url(../images/legacy/icon_pc.svg);
}

@media (hover:hover) {
  #wp-postbody .dvl-btn:hover {
    text-decoration: none !important;
  }

  #wp-postbody .dvl-btn--dl:hover,
  #wp-postbody .dvl-btn--achievement:hover {
    background-color: #1349c8;
    color: #fff;
  }

  #wp-postbody .dvl-btn--dl:hover span::before,
  #wp-postbody .dvl-btn--achievement:hover span::before {
    background-color: #fff;
  }

  #wp-postbody .dvl-btn--estimate:hover {
    background-color: #000;
    border-color: #000;
  }
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Form Styles
 * 旧テーマ inquiry.css / analysis.css から移行（一時的）
 * 対象: temp-inquiry, temp-inquiry2, temp-analysis
 * ========================================================================== */

.entry-title {
  text-align: center;
  margin-bottom: 74px;
  padding: 20px 10px 23px;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
}

.entry-title:before {
  content: "";
  background: #1a1714;
  width: 6px;
  height: 6px;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
}

.entry-title:after {
  content: "CONTACT";
  color: #1a1714;
  position: absolute;
  top: 61px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 12px;
}

.entry-content {
  padding-top: 0;
}

.container {
  max-width: 100%;
}

.btn01,
.actions {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background-color: #494c53;
  margin-top: 0;
  text-align: center;
  position: relative;
}

.btn01:before,
.actions:before {
  top: 50%;
  right: 0;
  width: calc(50% - 122px);
  z-index: 2;
}

.btn01:after,
.actions:after {
  top: calc(50% - 2px);
  right: calc(50% - 127px);
  z-index: 2;
}

.btn01 .ani02,
.actions {
  background: #494c53;
  position: relative;
}

.btn01 .ani02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 0.3s;
}

/* Scoped: bare element selector */
.btn01 button,
.actions button {
  background: transparent;
  font-weight: bold;
  width: 100%;
  border: 0;
  font-size: 18px;
  line-height: 36px;
  padding: 47px;
}

.btn01 .ajax-loader {
  position: absolute;
  top: 0;
  left: calc(50% + 103px);
  bottom: 0;
  margin: auto;
}

.btn01 input,
.actions input {
  font-weight: bold;
  background: none;
  width: 100%;
  border: 0;
  font-size: 18px;
  line-height: 36px;
  padding: 47px;
  position: relative;
  z-index: 5;
}

.btn01:hover:after {
  right: 0;
}

.btn01:hover .ani02:before {
  width: 100%;
  background: #8a8a90;
}

.entry-content dl dt {
  float: left;
  width: 280px;
  text-align: right;
  padding: 10px 16px 0 0;
  display: inherit;
  margin: 0 0;
  border: 0;
  background: #fff;
  font-size: 14px;
  font-weight: bold;
}

.entry-content dl {
  margin: 0 auto 2em;
  font-size: 16px;
  max-width: 880px;
}

dl dd span.your-service,
dl dd span.your-time {
  position: relative;
}

dl dd span.your-service:before,
dl dd span.your-time:before,
.hbspt-form .input input:before,
.hbspt-form select:before {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 26px;
  position: absolute;
  top: -4px;
  right: 16px;
  color: #000;
}

dl dd input {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  width: 100%;
  padding: 8px;
  color: #444;
  max-width: 360px;
}

dl dd select {
  background: #fff;
  color: #1a1714;
  padding: 8px 15px;
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  font-size: 14px;
}

/* Scoped: bare element selector */
.entry-content select {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #1a1714;
  padding: 8px 15px;
  cursor: pointer;
  width: 360px;
  font-size: 14px;
}

dl dd select option {
  color: #1a1714;
}

dl dd textarea {
  resize: none;
  max-width: 500px;
  border-radius: 0;
  min-height: 308px;
  width: 100%;
  color: #444;
  font-size: 15px;
}

dl:nth-child(5) dd select {
  max-width: 220px;
}

.pagetop {
  bottom: 84px !important;
}

.btn01 input[type="submit"]:hover {
  background: transparent;
}

@media screen and (max-width: 1199px) {
  .container {
    margin: 0;
  }
}

@media screen and (max-width: 891px) {
  dl dd textarea {
    max-width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .entry-content dl dt {
    text-align: left;
  }

  dl dd input,
  dl dd select,
  dl dd textarea {
    max-width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .entry-content {
    padding: 0 24px;
  }

  .btn01 input {
    font-size: 16px;
    padding: 27px 0;
  }

  .btn01 {
    margin-top: 0;
  }
}

.hbspt-form {
  max-width: 880px;
  margin: auto;
}

.hs_lastname,
.hs_firstname,
.hs_email,
.hs_company,
.hs_fd_,
.hs_fd____f,
.hs_f_d {
  display: flex;
  margin-bottom: 2em;
}

.hbspt-form label {
  width: 260px;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  padding-right: 16px;
  line-height: 1.6;
  align-items: center;
}

.hbspt-form .input input,
.hbspt-form select {
  width: 360px;
  position: relative;
}

.hbspt-form textarea {
  width: 500px;
  min-height: 300px;
}

.notice {
  text-align: center;
  font-size: 15px;
  padding-bottom: 24px;
}

@media screen and (max-width: 840px) {
  .hbspt-form textarea {
    width: 360px;
    min-height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .hs_lastname,
  .hs_firstname,
  .hs_email,
  .hs_company,
  .hs_fd_,
  .hs_fd____f,
  .hs_f_d {
    display: initial;
  }

  .hbspt-form textarea,
  .hbspt-form .input input,
  .hbspt-form select {
    width: 100%;
  }

  .hbspt-form label {
    font-size: 12px;
  }
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Company Styles
 * 旧テーマ company.css から移行（一時的）
 * 対象: temp-company.php
 * ========================================================================== */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .wrap {
    margin: 0 24px;
  }
}

@media screen and (max-width: 991px) {
  .wrap {
    margin: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .wrap {
    margin: 0 16px;
  }
}

#sec01,
#sec02,
#sec03,
#sec04,
#sec05 {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  padding: 80px 0 80px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #sec01,
  #sec02,
  #sec03,
  #sec04,
  #sec05 {
    padding: 55px 0 70px;
  }
}

@media screen and (max-width: 550px) {
  #sec01,
  #sec02,
  #sec03,
  #sec04,
  #sec05 {
    padding: 55px 0 60px;
  }
}

#sec01 h2,
#sec02 h2,
#sec03 h2,
#sec04 h2,
#sec05 h2 {
  margin-bottom: 65px;
  padding: 20px 10px 23px;
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
}

@media screen and (max-width: 768px) {
  #sec01 h2,
  #sec02 h2,
  #sec03 h2,
  #sec04 h2,
  #sec05 h2 {
    font-size: 25px;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 550px) {
  #sec01 h2,
  #sec02 h2,
  #sec03 h2,
  #sec04 h2,
  #sec05 h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

#sec01 h2:before,
#sec02 h2:before,
#sec03 h2:before,
#sec04 h2:before,
#sec05 h2:before {
  background: #494c53;
  width: 6px;
  height: 6px;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
}

#sec01 h2:after,
#sec02 h2:after,
#sec03 h2:after,
#sec04 h2:after,
#sec05 h2:after {
  position: absolute;
  top: 61px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 12px;
}

@media screen and (max-width: 550px) {
  #sec01 h2:after,
  #sec02 h2:after,
  #sec03 h2:after,
  #sec04 h2:after,
  #sec05 h2:after {
    top: 55px;
  }
}

#sec01 {
  background: url("../../static/legacy/img/keyvisual-bg01.png") no-repeat center
    center;
  background-size: cover;
  padding: 80px 0 150px;
}

@media screen and (max-width: 550px) {
  #sec01 {
    background: url("../../static/legacy/img/keyvisual-bg01.png")
      no-repeat -160px -171px;
    padding: 77px 0 72px;
  }
}

@media screen and (max-width: 375px) {
  #sec01 {
    background: url("../../static/legacy/img/keyvisual-bg01.png")
      no-repeat -270px -171px;
  }
}

#sec01 .wrap {
  max-width: 1380px;
}

@media screen and (max-width: 1400px) {
  #sec01 .wrap {
    margin: 0 24px;
  }
}

@media screen and (max-width: 768px) {
  #sec01 .wrap {
    margin: 0 24px;
  }
}

#sec01 h2 {
  padding: 0;
  text-align: center;
  margin-bottom: 80px;
}

#sec01 h2:before,
#sec01 h2:after {
  display: none;
}

@media screen and (max-width: 550px) {
  #sec01 h2 {
    margin-bottom: 40px;
  }
}

#sec01 p.txt01 {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 1.7px;
  text-align: center;
}

@media screen and (max-width: 550px) {
  #sec01 p.txt01 {
    font-size: 14px;
    line-height: 28px;
  }

  #sec01 p.txt01 br {
    display: none;
  }
}

#sec02 {
  background-color: #eeeef0;
}

#sec02 h2 {
  margin-bottom: 79px;
}

@media screen and (max-width: 550px) {
  #sec02 h2 {
    margin-bottom: 59px;
  }
}

#sec02 .row-df .box-df {
  float: left;
  width: 50%;
}

@media screen and (max-width: 550px) {
  #sec02 .row-df .box-df {
    float: inherit;
    width: 100%;
    height: auto !important;
  }
}

#sec02 .row-df .box-df .box-inner {
  padding: 63px 60px 63px;
}

@media screen and (max-width: 991px) {
  #sec02 .row-df .box-df .box-inner {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  #sec02 .row-df .box-df .box-inner {
    padding: 32px;
  }
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df .box-inner {
    padding: 32px 24px;
  }
}

#sec02 .row-df .box-df .box-inner p.ttl01 {
  text-align: center;
  font-size: 14px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 7px;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df .box-inner p.ttl01 {
    margin-bottom: 12px;
  }
}

#sec02 .row-df .box-df .box-inner p.ttl02 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  margin-bottom: 11px;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df .box-inner p.ttl02 {
    font-size: 18px;
    line-height: 28px;
  }
}

#sec02 .row-df .box-df .box-inner p.ttl03 {
  text-align: center;
  font-size: 12px;
  margin-bottom: 37px;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df .box-inner p.ttl03 {
    margin-bottom: 20px;
  }
}

#sec02 .row-df .box-df .box-inner p.txt01 {
  font-size: 16px;
  line-height: 30px;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df .box-inner p.txt01 {
    font-size: 15px;
    line-height: 28px;
  }
}

#sec02 .row-df .box-df:nth-child(1) {
  background-color: #363840;
  color: #fff;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df:nth-child(2) {
    background-color: #eeeef0;
    color: #1a1714;
  }
}

#sec02 .row-df .box-df:nth-child(3) .style02 {
  display: none;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df:nth-child(3) {
    background-color: #363840;
    color: #fff;
  }

  #sec02 .row-df .box-df:nth-child(3) .style01 {
    display: none;
  }

  #sec02 .row-df .box-df:nth-child(3) .style02 {
    display: block;
  }
}

#sec02 .row-df .box-df:nth-child(4),
#sec02 .row-df .box-df:nth-child(5) {
  background-color: #363840;
  color: #fff;
}

@media screen and (max-width: 400px) {
  #sec02 .row-df .box-df:nth-child(4) {
    background-color: #eeeef0;
    color: #1a1714;
  }
}

#sec03 {
  background-color: #e7e7eb;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
}

#sec03 .list-dl {
  max-width: 807px;
  margin: 0 auto;
  padding: 0 40px 30px;
}

@media screen and (max-width: 550px) {
  #sec03 .list-dl {
    padding: 25px 20px;
  }
}

#sec03 .list-dl dl {
  padding: 16px 0;
  color: #1a1714;
  border-bottom: 1px solid #dededf;
  display: flex;
  column-gap: 16px;
  line-height: 2;
}

#sec03 .list-dl dl:last-child {
  border: 0;
}

#sec03 .list-dl dl dt {
  font-weight: bold;
  font-size: 16px;
  float: left;
  width: 222px;
  padding: 0 0 0 21px;
}

@media screen and (max-width: 768px) {
  #sec03 .list-dl dl dt {
    padding: 0;
    width: 130px;
  }
}

@media screen and (max-width: 550px) {
  #sec03 .list-dl dl dt {
    padding: 0;
    width: 90px;
  }
}

#sec03 .list-dl dl dd {
  font-size: 14px;
  float: left;
  width: calc(100% - 222px);
}

@media screen and (max-width: 768px) {
  #sec03 .list-dl dl dd {
    width: calc(100% - 130px);
  }
}

@media screen and (max-width: 550px) {
  #sec03 .list-dl dl dd {
    width: calc(100% - 90px);
  }
}

#sec03 .access {
  max-width: 800px;
  height: 300px;
  margin: 0 auto;
  padding: 0 70px;
  border-bottom: 1px solid #dededf;
}

#sec03 .access iframe {
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  #sec03 .access {
    max-width: 100%;
    height: 250px;
    padding: 0;
  }

  #sec03 .access iframe {
    width: 100%;
    height: 250px;
  }
}

@media screen and (max-width: 550px) {
  #sec03 .access {
    height: 200px;
  }

  #sec03 .access iframe {
    height: 200px;
  }
}

#sec04 {
  background-color: #d9d9df;
}

#sec04 .box {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

#sec04 .box .profile {
  background-color: #d4d4da;
  display: block;
  margin: 10px 15px;
  width: calc(33.3% - 30px);
}

#sec04 .box .profile .top {
  display: flex;
  justify-content: center;
  margin: 30px;
  margin-bottom: 25px;
}

#sec04 .box .profile .top img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
}

#sec04 .box .profile .top picture {
  flex-shrink: 0;
}

#sec04 .box .profile .top .right {
  width: 100%;
  margin: auto;
  margin-left: 25px;
}

#sec04 .box .profile .top .right .name-jp {
  font-size: 18px;
  font-weight: bold;
}

#sec04 .box .profile .top .right .name-en {
  font-size: 12px;
}

#sec04 .box .profile .top .right .position {
  margin: 15px 0;
  font-size: 14px;
}

#sec04 .box .profile .top .right img {
  margin-right: 5px;
  width: 23px;
  height: 23px;
  opacity: 0.8;
  display: inline;
}

#sec04 .box .profile .bottom {
  border-top: 1px solid #bdbdc2;
  margin: 20px;
  padding-top: 25px;
}

#sec04 .box .profile .bottom p {
  margin: 0 10px;
  font-size: 13px;
  line-height: 1.8em;
  word-break: break-word;
}

@media screen and (max-width: 1050px) {
  #sec04 .box .profile .top img {
    width: 100px;
    height: 100px;
  }

  #sec04 .box .profile .top .right .name-jp {
    font-size: 16px;
  }

  #sec04 .box .profile .top .right .name-en {
    font-size: 11px;
  }

  #sec04 .box .profile .top .right .position {
    margin: 10px 0;
    font-size: 12px;
  }

  #sec04 .box .profile .top .right img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 930px) {
  #sec04 .box .profile .top {
    margin: 15px;
    margin-bottom: 20px;
  }

  #sec04 .box .profile .top .right {
    margin-left: 10px;
  }

  #sec04 .box .profile .top .right .name-jp {
    font-size: 14px;
  }

  #sec04 .box .profile .top .right .name-en {
    font-size: 10px;
  }

  #sec04 .box .profile .top .right .position {
    margin: 5px 0;
    font-size: 11px;
  }

  #sec04 .box .profile .top img {
    width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 768px) {
  #sec04 .box {
    flex-direction: column;
    justify-content: center;
  }

  #sec04 .box .profile {
    margin: 10px auto;
    width: 85%;
  }

  #sec04 .box .profile .top {
    margin: 30px;
    margin-bottom: 25px;
  }

  #sec04 .box .profile .top img {
    width: 130px;
    height: 130px;
  }

  #sec04 .box .profile .top .right {
    margin-left: 25px;
  }

  #sec04 .box .profile .top .right .name-jp {
    font-size: 18px;
  }

  #sec04 .box .profile .top .right .name-en {
    font-size: 12px;
  }

  #sec04 .box .profile .top .right .position {
    margin: 15px 0;
    font-size: 14px;
  }

  #sec04 .box .profile .top .right img {
    width: 23px;
    height: 23px;
  }
}

@media screen and (max-width: 550px) {
  #sec04 .box .profile {
    margin: 10px auto;
    width: 100%;
  }

  #sec04 .box .profile .top {
    margin: 30px;
    margin-bottom: 25px;
  }

  #sec04 .box .profile .top img {
    width: 130px;
    height: 130px;
  }

  #sec04 .box .profile .top .right {
    margin-left: 25px;
  }

  #sec04 .box .profile .top .right .name-jp {
    font-size: 18px;
  }

  #sec04 .box .profile .top .right .name-en {
    font-size: 12px;
  }

  #sec04 .box .profile .top .right .position {
    margin: 15px 0;
    font-size: 14px;
  }

  #sec04 .box .profile .top .right img {
    width: 23px;
    height: 23px;
  }

  #sec04 .box .profile .bottom p {
    font-size: 12px;
    line-height: 1.6em;
  }
}

#sec05 {
  background: url("../../static/legacy/img/common-cta-img01.jpg") no-repeat
    center;
  background-size: cover;
  color: #fff;
  padding: 0;
}

#sec05 .box {
  background-repeat: repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-image:
    radial-gradient(#000000 2%, transparent 22%),
    radial-gradient(#000000 2%, transparent 22%);
  background-position:
    0 0,
    2px 2px;
  background-size: 4px 4px;
}

#sec05 h2 {
  padding-top: 80px;
  color: #fff;
}

@media screen and (max-width: 550px) {
  #sec05 h2 {
    margin-bottom: 26px;
  }
}

#sec05 .cta {
  text-align: center;
  padding-bottom: 80px;
}

#sec05 .cta .button01 {
  display: block;
  margin: auto;
  width: 270px;
  padding: 12px;
  font-size: 20px;
  color: #1a1714;
  background-color: #d3d3d3;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

#sec05 .cta .text01 {
  display: block;
  margin: auto;
  padding-top: 30px;
  font-size: 15px;
  color: #fff;
}

#sec05 .cta .text01 .decoration {
  border-bottom: solid 1px;
}

#sec05 .cta .button01:hover {
  cursor: pointer;
  text-decoration: none;
}

#sec05 .cta .button01 span {
  display: inline-block;
  text-decoration: none;
  transition: transform ease 0.3s;
}

#sec05 .cta .button01:hover span {
  cursor: pointer;
  text-decoration: none;
  transform: translateX(8px);
}

@media screen and (max-width: 768px) {
  #sec05 .cta .button01 {
    width: 220px;
    font-size: 17px;
  }
}

@media screen and (max-width: 550px) {
  #sec05 .cta .button01 {
    width: 200px;
    font-size: 16px;
  }
}

/* プロフ追加 */
.prof02 {
  padding-top: 50px;
}

#sec04 h2 {
  margin-bottom: 40px;
  padding: 0 10px;
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
}

#sec02 .row-df .box-df:nth-child(6) {
  text-align: center;
}

#sec02 .row-df .box-df:nth-child(6) img {
  max-height: 280px;
}

/* 会社案内改修 */
#sec04 {
  padding: 110px 0 70px;
}

#sec04 .prof02 .box .profile {
  margin: 10px 40px;
}

.wrap.prof02 {
  max-width: 1120px;
}

@media screen and (max-width: 768px) {
  #sec04 {
    padding: 55px 0 60px;
  }
}

@media screen and (max-width: 550px) {
  #sec04 .prof02 .box .profile {
    margin: 10px auto;
  }
}

/* フィロソフィー */
.philosophy_box {
  background: #fff;
  padding: 70px 60px;
}

.philosophy_box:first-of-type {
  margin: 0 0 40px;
}

.philosophy_box .sub_text {
  font-weight: 700;
  color: #cbc8c6;
  font-size: 16px;
}

.philosophy_box h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0 32px;
}

.philosophy_box h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}

.philosophy_box p {
  font-size: 16px;
  line-height: 1.875;
}

.philosophy_box p.border {
  border-bottom: 1px solid #fff;
  border-color: rgba(26, 23, 20, 0.1);
  margin: 0 0 40px;
}

.philosophy_box h3 br {
  display: none;
}

@media screen and (max-width: 767px) {
  .philosophy_box {
    padding: 40px 20px 32px;
  }

  .philosophy_box p.border {
    padding: 0 0 8px;
  }
}

@media screen and (max-width: 550px) {
  .philosophy_box h3 br {
    display: block;
  }

  #sec01 h2 img {
    display: none;
  }
}

#sec03 .list-dl dl.address {
  border-bottom: none;
}

.entry-footer {
  display: none;
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Download Page Styles
 * 旧テーマ dl-page.css から移行（一時的）
 * 対象: temp-ebook-*, temp-dx-compass-*, temp-challenges-and-solutions,
 *       temp-datamanagement, temp-interview*, temp-ebook-download
 * ========================================================================== */

#sec01 .logo {
  width: 148px;
}

.logo img {
  width: 148px;
}

#sec01 {
  max-width: 1200px;
  border: 1px solid #eeeef0;
  padding: 64px;
  margin: 60px auto 120px;
}

#sec01 p.label {
  background: #363840;
  color: #fff;
  font-size: 20px;
  padding: 10px 24px;
  width: 170px;
  text-align: center;
  font-weight: bold;
}

#sec01 h1 {
  padding: 32px 0 70px;
  font-size: 36px;
  line-height: 52px;
}

#sec01 p {
  font-size: 18px;
  line-height: 34px;
  padding: 0 0 32px 0;
}

#sec01 .ebook_flex {
  display: flex;
  justify-content: space-between;
}

#sec01 .ebook_img {
  max-width: 270px;
}

#sec01 .dl_form {
  background: #363840;
  color: #fff;
  padding: 40px 24px 20px;
  font-size: 14px;
  width: 320px;
}

#sec01 .dl_form input {
  height: 40px;
  width: 100%;
  margin: 2px 0 24px;
  color: #444;
}

#sec01 label {
  font-size: 14px;
}

#sec01 p.policy {
  font-size: 10px;
  text-align: center;
  padding: 0;
}

#sec01 .form_btn {
  text-align: center;
}

#sec01 button.btn,
#sec01.company input.btn {
  background: #6a88d0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  width: 100%;
  height: 53px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 4px solid #385599;
  margin: 10px 0 0;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);
}

#sec01 button.btn:hover,
#sec01.company input.btn:hover {
  opacity: 0.9;
}

#sec01 .markerobo-form-errormsg {
  color: #ff0036;
}

.policy a,
.policy a:hover {
  color: #fff;
}

#sec01 div.precautions ul {
  padding: 0 0 0 16px;
}

#sec01 div.precautions ul li {
  font-size: 10px;
  line-height: 18px;
  padding-top: 16px;
}

#sec01 .float_right {
  float: right;
  padding: 0 0 32px 16px;
  margin: auto;
}

.company h1 {
  padding: 0 0 70px;
  font-size: 36px;
  line-height: 52px;
}

#sec01 .dl_form select {
  height: 40px;
  width: 100%;
  margin: 2px 0 24px;
  color: #444;
  background-color: #fff;
  padding-left: 10px;
  position: relative;
  border-radius: 3px;
}

#sec01 .dl_form select:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

#sec01 .dl_form textarea {
  height: 160px;
  width: 100%;
  color: #444;
}

#sec01 .dl_form input[type="submit"],
#sec01 button.btn {
  background: #6a88d0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  width: 100%;
  height: 53px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 4px solid #385599;
  margin: 10px 0 0;
  text-shadow: 0px 2px 0px rgb(0 0 0 / 30%);
}

#sec01 .ebook_left {
  max-width: 720px;
  margin-right: 24px;
}

#sec01 .ebook_left ul {
  background: #f8f8f9;
  padding: 40px 40px 6px 60px;
  margin: 20px 0 40px;
  clear: both;
}

#sec01 .ebook_left ul li {
  list-style: none;
  font-weight: bold;
  font-size: 20px;
  padding: 0 0 24px 0;
  text-indent: -2em;
}

#sec01 .ebook_left ul li:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 16px;
  background: url("../../static/legacy/img/ebook-check.png") no-repeat;
  background-size: contain;
  margin-right: 22px;
  margin-left: 20px;
}

.company .float_left {
  padding-right: 40px;
}

.company .dl_form span {
  font-size: 13px;
  padding: 0 0 24px;
  display: inline-block;
  width: 100%;
}

.company .dl_form span.your-search {
  width: 100%;
  font-size: 13px;
  padding: 0 0 24px;
  display: inline-block;
  position: relative;
}

.company .dl_form span.your-search:before {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 26px;
  position: absolute;
  top: 2px;
  right: 16px;
  color: #000;
  z-index: 1;
}

.company .gray {
  font-size: 13px;
  line-height: 20px;
  padding: 24px 0;
  letter-spacing: 0.5px;
  color: #bebebe;
}

.blue_font {
  color: #4473c6;
  padding: 0 0 50px;
  font-weight: bold;
}

#tweet h2 {
  background: #1da0f2;
  color: #fff;
  font-size: 18px;
  padding: 24px 0 24px 35px;
  width: 100%;
  text-align: left;
}

#tweet p {
  padding: 0 0 32px 35px;
  font-size: 14px;
}

#tweet .wrap {
  border: 1px solid #1da0f2;
  margin: 98px 0 0;
}

#tweet .tweet {
  padding: 32px 32px 4px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  max-height: 1200px;
}
/*
.twitter-tweet {
  max-width: 460px !important;
  margin: auto;
}

@media screen and (max-width: 1280px) {
  .twitter-tweet {
    max-width: 400px !important;
  }
}

@media screen and (max-width: 1090px) {
  .twitter-tweet {
    max-width: 320px !important;
  }
} */

@media screen and (max-width: 991px) {
  #sec01 h1 {
    font-size: 32px;
  }

  #sec01 .ebook_flex {
    flex-direction: column;
  }

  #sec01 .ebook_left {
    margin: 0 auto;
  }

  #sec01 .ebook_right {
    margin: 40px auto 0;
  }

  #sec01 .ebook_left ul li {
    text-indent: -3.2em;
  }

  .company .float_left {
    padding: 0 0 32px 0;
  }
}
/*
@media screen and (max-width: 1090px) {
  .twitter-tweet {
    max-width: 280px !important;
  }
} */

@media screen and (max-width: 840px) {
  #tweet .tweet {
    display: inherit;
    max-height: 1200vh;
  }
/* 
  .twitter-tweet {
    max-width: 500px !important;
  } */
}

@media screen and (max-width: 550px) {
  #sec01 {
    padding: 0;
    border: 0;
    margin-top: 24px;
  }

  #sec01 .float_right {
    float: none;
    text-align: center;
    padding: 0 0 32px;
  }

  #sec01 h1 {
    font-size: 26px;
    padding: 16px 0 24px;
    line-height: 1.5;
  }

  #sec01 p {
    font-size: 16px;
    line-height: 26px;
  }

  #tweet p {
    font-size: 14px;
  }

  #sec01 .dl_form {
    width: 100%;
    max-width: 100%;
  }

  #sec01 .ebook_right {
    margin-top: 0;
  }

  #sec01 p.label {
    font-size: 16px;
    width: 100%;
  }

  #sec01 .ebook_left ul {
    padding: 30px 16px 3px 55px;
  }

  #sec01 .ebook_left ul li {
    font-size: 18px;
    text-indent: -3.5em;
    padding: 0 0 16px 0;
  }
}

.hs-form,
.hs-form-33397c82-f99c-470f-87c9-bf36d39ea559_73748165-90c8-45b5-906e-cdd6380e71fd
  .hs-form-field
  label:not(.hs-error-msg) {
  color: #fff;
}

.hs-form-33397c82-f99c-470f-87c9-bf36d39ea559_fc62aeb3-c0df-457d-a01a-5d0ae7378d7a
  .hs-button {
  width: 100%;
}

.hs-form-required {
  color: #ff5152;
}

#sec01 label.hs-error-msg {
  font-size: 12px;
  margin-top: -20px;
}

.page-template-temp-ebook-company2 .company .dl_form span {
  display: initial;
}

.grecaptcha-badge {
  height: 0 !important;
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Interview Styles
 * 旧テーマ interview.css から移行（一時的）
 * 対象: temp-interview.php, temp-interview2.php
 * ========================================================================== */

.logo {
  width: 82px;
  padding-bottom: 18px;
}

#sec01 {
  max-width: 1200px;
  border: 1px solid #eeeef0;
  padding: 64px;
  margin: 120px auto 120px;
}

#sec01 h2 {
  color: #000;
  font-size: 36px;
  padding-bottom: 70px;
}

#sec01 p {
  padding-bottom: 24px;
}

#sec01 .interview_flex {
  display: flex;
  justify-content: space-between;
}

#sec01 .interview_left {
  font-size: 18px;
  line-height: 34px;
  margin-right: 35px;
}

#sec01 .interview_right {
  max-width: 320px;
}

#sec01 .dl_form {
  background: #363840;
  color: #fff;
  padding: 40px 24px 20px;
  font-size: 14px;
  width: 320px;
}

#sec01 .dl_form input {
  height: 40px;
  width: 100%;
  margin: 2px 0 24px;
  color: #444;
}

#sec01 label {
  font-size: 14px;
}

#sec01 .policy {
  font-size: 10px;
  text-align: center;
  padding-top: 16px;
}

#sec01 .form_btn {
  text-align: center;
}

#sec01 button.btn {
  background: #6a88d0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  width: 100%;
  height: 53px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 4px solid #385599;
  margin: 10px 0 0;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);
}

#sec01 button.btn:hover {
  opacity: 0.9;
}

#sec01 .markerobo-form-errormsg {
  color: #ff0036;
}

.policy a,
.policy a:hover {
  color: #fff;
}

.interview_img {
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  #sec01 .interview_flex {
    display: inherit;
  }

  #sec01 .interview_left {
    margin-right: 0;
  }

  #sec01 .interview_right {
    margin: 40px auto 0;
  }

  #sec01 h2 {
    font-size: 32px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 550px) {
  #sec01 {
    padding: 0;
    border: 0;
    margin-top: 24px;
  }

  #sec01 h2 {
    font-size: 6vw;
    padding-bottom: 24px;
  }

  #sec01 .interview_left {
    font-size: 16px;
    line-height: 26px;
  }

  .interview_img {
    padding-top: 8px;
  }

  #sec01 .dl_form {
    width: 100%;
    max-width: 100%;
  }
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Recruit Styles
 * 旧テーマ recruit.css から移行（一時的）
 * 対象: temp-recruit.php
 * ========================================================================== */

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.title_bg {
  text-align: center;
  background: url("../../static/legacy/img/recruit/bg.png") no-repeat top center;
  background-size: contain;
  color: #fff;
  margin: 0;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  position: relative;
  height: 303.5px;
}

/* Scoped: bare element selector */
.title_bg h1 {
  font-size: 40px;
}

.label {
  font-size: 25px;
  font-weight: 700;
}

.text_desc {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding: 72px 20px 48px;
  line-height: 1.7;
}

.blockLinks {
  display: flex;
  flex-wrap: wrap;
}

.blockLinks_el {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 28px 28px;
  margin-left: 20px;
  margin-top: 20px;
  flex-shrink: 1;
  width: calc(33% - 20px);
  min-width: 210px;
  border: 1px solid #ddd;
  transition: background 0.2s 0s ease;
}

a.blockLinks_el {
  color: #1a1714;
}

a.blockLinks_el:hover {
  background: #eee;
  opacity: 1;
}

.blockLinks_heading {
  font-weight: 700;
  font-size: 1.125rem;
}

.blockLinks_description {
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 500;
}

.blockLinks_more {
  font-size: 1rem;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  font-weight: 500;
  text-align: right;
  position: relative;
}

.blockLinks_more:before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  right: 100px;
  top: 20px;
}

#sec02 {
  clear: both;
  padding: 64px 0 60px;
  background-color: #c9c7c5;
  margin: 80px -100vw 0;
}

#sec02 h2 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 37px;
}

.bannerBlockInner {
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.bannerBlockList {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bannerBlockItem {
  width: calc(25% - 20px);
  margin: 0 10px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s ease-in-out;
}

.bannerBlockLink {
  display: block;
  width: 100%;
  min-height: 100%;
  font-weight: 700;
}

a.bannerBlockLink {
  color: #363431;
}

a.bannerBlockLink:hover {
  opacity: 0.8;
}

.bannerBlockBg {
  display: block;
  width: 100%;
  height: 142px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.bg01 {
  background-image: url("../../static/legacy/img/recruit/01.png");
}

.bg02 {
  background-image: url("../../static/legacy/img/recruit/02.png");
}

.bg03 {
  background-image: url("../../static/legacy/img/recruit/03.png");
}

.bg04 {
  background-image: url("../../static/legacy/img/recruit/04.png");
}

.bannerBlockContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px 55px;
  box-sizing: border-box;
  border-top: 1px solid #d9d9d9;
  position: relative;
}

.bannerBlockContent:after {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  right: 0;
  left: 50%;
  bottom: 20px;
  margin: auto;
}

.bannerBlockTitle {
  font-size: 18px;
  text-align: center;
}

/* Scoped: bare element selector - recruit template only */
.blockLinks ul {
  list-style: none;
}

.entry-content ul {
  list-style: disc;
}

@media screen and (min-width: 1920px) {
  .title_bg {
    background-size: 50%;
  }
}

@media screen and (max-width: 1200px) {
  #sec02 {
    margin: 80px auto 0;
  }
}

@media screen and (max-width: 991px) {
  .bannerBlockItem {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .blockLinks_el {
    width: calc(50% - 20px);
    padding: 16px;
  }

  .bannerBlockInner {
    padding: 0 16px;
  }
}

@media screen and (max-width: 550px) {
  .blockLinks_el {
    width: calc(100% - 32px);
    margin: 0 auto 16px;
  }

  .blockLinks_heading {
    font-size: 16px;
  }

  .blockLinks_description {
    font-size: 14px;
  }

  .blockLinks_more {
    font-size: 14px;
    padding-top: 12px;
  }

  .blockLinks_more:before {
    top: 12px;
    right: 80px;
  }

  .title_bg {
    background: url("../../static/legacy/img/recruit/bg-sp.png") no-repeat top center;
    background-size: cover;
    color: #fff;
    margin: 0 auto;
    padding: 0;
    height: 172px;
  }

  /* Scoped: bare element selector */
  .title_bg h1 {
    font-size: 25px;
  }

  .label {
    font-size: 15px;
  }

  .text_desc {
    font-size: 16px;
    padding: 40px 20px 20px;
  }

  #sec02 {
    margin-top: 64px;
    padding-bottom: 48px;
  }

  #sec02 h2 {
    font-size: 20px;
  }

  .bannerBlockList {
    margin: 0;
  }

  .bannerBlockTitle {
    font-size: 14px;
  }

  .bannerBlockBg {
    height: 97px;
  }

  .bannerBlockContent {
    padding: 16px 16px 36px;
  }

  .bannerBlockItem {
    width: calc(50% - 10px);
    margin: 0 15px 20px 0;
  }

  .bannerBlockItem:nth-child(2n) {
    margin-right: 0;
  }

  .bannerBlockContent:after {
    top: 55px;
  }
}

.title_bg video {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  top: 0;
  object-fit: cover;
}

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

  .title_bg {
    height: auto;
  }

  .title_bg img {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .title_bg img {
    height: auto;
  }
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}
}

@layer legacy{

/* ==========================================================================
 * Legacy Recruit Form Styles
 * 旧テーマ recruit-form.css から移行（一時的）
 * 対象: temp-recruit-inquiry.php
 * ========================================================================== */

.entry-title {
  text-align: center;
  margin-bottom: 74px;
  padding: 20px 10px 23px;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
}

.entry-title:before {
  content: "";
  background: #1a1714;
  width: 6px;
  height: 6px;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
}

.entry-title:after {
  content: "ENTRY";
  color: #1a1714;
  position: absolute;
  top: 61px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 12px;
}

.entry-title br {
  display: none;
}

.entry-content {
  padding-top: 0;
  padding-bottom: 80px;
}

.entry-content p {
  text-align: center;
  padding: 0 16px;
}

.entry-header {
  padding-bottom: 0;
}

.container {
  max-width: 100%;
}

.entry-content p a:hover {
  text-decoration: underline;
}

.btn01,
.actions {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background-color: #494c53;
  margin-top: 0;
  text-align: center;
  position: relative;
}

.btn01:before {
  top: 50%;
  right: 0;
  width: calc(50% - 122px);
  z-index: 2;
}

.btn01:after {
  top: calc(50% - 2px);
  right: calc(50% - 127px);
  z-index: 2;
}

.btn01 .ani02,
.actions {
  background: #494c53;
  position: relative;
}

.btn01 .ani02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 0.3s;
}

/* Scoped: bare element selector */
.btn01 button,
.actions button {
  background: transparent;
  font-weight: bold;
  width: 100%;
  border: 0;
  font-size: 18px;
  line-height: 36px;
  padding: 47px;
}

.btn01 .ajax-loader {
  position: absolute;
  top: 0;
  left: calc(50% + 103px);
  bottom: 0;
  margin: auto;
}

.btn01 input,
.actions input {
  font-weight: bold;
  background: none;
  width: 100%;
  border: 0;
  font-size: 18px;
  line-height: 36px;
  padding: 47px;
  position: relative;
  z-index: 5;
}

.btn01:hover:after {
  right: 0;
}

.btn01:hover .ani02:before {
  width: 100%;
  background: #8a8a90;
}

.entry-content dl dt {
  float: left;
  width: 280px;
  text-align: right;
  padding: 10px 16px 0 0;
  display: inherit;
  margin: 0 0;
  border: 0;
  background: #fff;
  font-size: 14px;
  font-weight: bold;
}

.entry-content dl {
  margin: 0 auto 2em;
  font-size: 16px;
  max-width: 880px;
}

.wpcf7-form dl dd span.your-service,
.wpcf7-form dl dd span.menu-349 {
  position: relative;
}

.wpcf7-form dl dd span.your-service:before,
.wpcf7-form dl dd span.menu-349:before {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 26px;
  position: absolute;
  top: -4px;
  right: 16px;
  color: #000;
}

.wpcf7-form dl dd input {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  width: 100%;
  padding: 8px;
  color: #444;
  max-width: 360px;
}

.wpcf7-form dl dd select {
  background: #fff;
  color: #1a1714;
  padding: 8px 15px;
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  font-size: 14px;
}

.wpcf7-form select {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #1a1714;
  padding: 8px 15px;
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  font-size: 14px;
}

.wpcf7-form dl dd select option {
  color: #1a1714;
}

.wpcf7-form dl dd textarea {
  resize: none;
  max-width: 500px;
  border-radius: 0;
  min-height: 308px;
  width: 100%;
  color: #444;
  font-size: 15px;
}

dl:nth-child(5) dd select {
  max-width: 220px;
}

.pagetop {
  bottom: 84px !important;
}

.btn01 input[type="submit"]:hover {
  background: transparent;
}

@media screen and (max-width: 1199px) {
  .container {
    margin: 0;
  }
}

@media screen and (max-width: 891px) {
  dl dd textarea {
    max-width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .entry-content dl dt {
    text-align: left;
  }

  dl dd input,
  dl dd select,
  dl dd textarea {
    max-width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .entry-content {
    padding: 0 16px 40px;
  }

  .entry-title br {
    display: block;
  }

  .entry-title span {
    font-size: 18px;
  }

  .entry-title:after {
    top: 90px;
  }

  .btn01 input {
    font-size: 16px;
    padding: 27px 0;
  }

  .btn01 {
    margin-top: 0;
  }
}

/* HubSpot form styles */
.hbspt-form {
  max-width: 880px;
  margin: auto;
}

.hs_lastname,
.hs_firstname,
.hs_email,
.hs_company,
.hs_fd_,
.hs_fd____f,
.hs_f_d,
.hs_f_,
.hs_fd_f,
.hs_fd____ {
  display: flex;
  margin-bottom: 2em;
}

.hbspt-form label {
  width: 260px;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  padding-right: 16px;
  line-height: 1.6;
  align-items: center;
}

.hbspt-form .input input,
.hbspt-form select {
  width: 360px;
  position: relative;
}

.hbspt-form textarea {
  width: 500px;
  min-height: 300px;
}

.hbspt-form select {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #1a1714;
  padding: 8px 15px;
  cursor: pointer;
  width: 360px;
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .hbspt-form textarea {
    width: 360px;
    min-height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .hbspt-form {
    text-align: left;
  }

  .hs_lastname,
  .hs_firstname,
  .hs_email,
  .hs_company,
  .hs_fd_,
  .hs_fd____f,
  .hs_f_d,
  .hs_f_,
  .hs_fd_f,
  .hs_fd____ {
    display: initial;
  }

  .hbspt-form textarea,
  .hbspt-form .input input,
  .hbspt-form select {
    width: 100%;
  }

  .hbspt-form label {
    font-size: 12px;
  }
}
}

@layer legacy{

/* ==========================================================================
 * サイドバー無しテンプレート用
 * 対象: temp-page-nosidebar.php
 * ========================================================================== */

.p-single-layout--nosidebar .p-single-layout__inner {
  max-width: 900px;
}
}

@layer components{

.c-hamburger {
  --width: 23px;
  --height: 24px;
  --line-weight: 1px;
  --gap: 8px;
  --color: #030303;
  --active-color: #030303;

  cursor: pointer;
  height: var(--height);
  position: relative;
  width: var(--width);
}

.c-hamburger__line {
  background: var(--color);
  display: inline-block;
  height: var(--line-weight);
  left: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.c-hamburger__line:nth-of-type(1) {
  top: calc(50% - var(--gap) / 2 - var(--line-weight));
}

.c-hamburger__line:nth-of-type(2) {
  top: calc(50% + var(--gap) / 2);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background: var(--active-color);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(1) {
  transform: translateY(calc(var(--gap) / 2 + var(--line-weight) / 2))
    rotate(45deg);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(2) {
  transform: translateY(calc((var(--gap) / 2 + var(--line-weight) / 2) * -1))
    rotate(-45deg);
}
}

@layer components{

.c-heading-main {
  text-align: left;
}

.c-heading-main__ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.c-heading-main__en {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  background: var(--color-gradient-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  font-family: var(--fontFamily-en);
}

@media screen and (max-width: 768px) {
  .c-heading-main__en {
    font-size: 42px;
  }
}
}

@layer components{
.c-button-simple {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: calc(11 / 16 * 1em) calc(40 / 16 * 1em);
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  filter: drop-shadow(0 5px 10px color-mix(in srgb, black 35%, transparent));
  border-radius: 90px;
  font-weight: 700;
  display: block;
  width: fit-content;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button-simple {
    padding: calc(12 / 15 * 1em) calc(36 / 15 * 1em);
    font-size: 15px;
  }
}

.c-button-simple._white {
  background-image:
    linear-gradient(white, white), linear-gradient(to right, black, #424242);
}

.c-button-simple._black {
  color: white;
  background-image:
    linear-gradient(to right, black, #434343),
    linear-gradient(to right, black, #434343);
}

.c-button-simple:hover {
  opacity: 0.7;
}
}

@layer components{

.c-heading-bar {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .c-heading-bar {
    font-size: 24px;
  }
}
.c-heading-bar__icon {
  width: 5px;
  height: 33px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(to top, #0b0b09, #77755f);
  flex-shrink: 0;
}
}

@layer components{

.c-button-arrow {
  display: flex;
  width: fit-content;
  align-items: center;
  column-gap: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  transition: opacity 0.3s;
}

.c-button-arrow__text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  text-decoration-color: #484848;
  margin-bottom: 3px;
  white-space: nowrap;
}

.c-button-arrow__icon {
  width: 49px;
  height: 25px;
  flex-shrink: 0;
}

.c-button-arrow:hover {
  opacity: 0.7;
}
}

@layer components{

.c-card-blog__link {
  display: block;
  transition: opacity 0.3s;
}

.c-card-blog__link:hover {
  opacity: 0.7;
}

.c-card-blog__thumbnail {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 416 / 282;
}

@media screen and (max-width: 768px) {
  .c-card-blog__thumbnail {
    aspect-ratio: 329/223;
  }
}

.c-card-blog__thumbnail .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-blog__body {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .c-card-blog__body {
    margin-top: 16px;
  }
}

.c-card-blog__meta {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.c-card-blog__category {
  line-height: 1;
}

.c-card-blog__date {
  font-size: 14px;
  font-family: var(--fontFamily-en);
}

.c-card-blog__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .c-card-blog__title {
    font-size: 18px;
    margin-top: 12px;
  }
}

.c-card-blog__excerpt {
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .c-card-blog__excerpt {
    margin-top: 4px;
    font-size: 14px;
  }
}
}

@layer components{

.c-row-news__link {
  display: grid;
  grid-template-areas:
    "date  date"
    "title icon";
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s;
  padding-top: 8px;
  padding-bottom: 32px;
  padding-left: 8px;
  padding-right: 8px;
  row-gap: 8px;
}

@media screen and (max-width: 768px) {
  .c-row-news__link {
    row-gap: 16px;
    padding-bottom: 24px;
  }
}

.c-row-news__link:hover {
  opacity: 0.7;
}

.c-row-news__date {
  grid-area: date;
  font-size: 14px;
  color: #666666;
}

.c-row-news__title {
  grid-area: title;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .c-row-news__title {
    font-size: 18px;
  }
}

.c-row-news__icon {
  grid-area: icon;
  width: 55px;
  height: 31px;
}

@media screen and (max-width: 768px) {
  .c-row-news__link {
    grid-template-areas:
      "date"
      "title"
      "icon";
    grid-template-columns: 1fr;
  }
}
}

@layer components{

.c-card-pickup {
  background-color: white;
  filter: drop-shadow(0 3px 12px color-mix(in srgb, black 15%, transparent));
  border-radius: 8px;
}

.c-card-pickup__link {
  display: block;
  transition: opacity 0.3s;
}

.c-card-pickup__link:hover {
  opacity: 0.7;
}

.c-card-pickup__thumbnail {
  overflow: hidden;
  aspect-ratio: 420 / 285;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media screen and (max-width: 1024px) {
  .c-card-pickup__thumbnail {
    aspect-ratio: 280 / 190;
  }
}

.c-card-pickup__thumbnail .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-pickup__body {
  padding: 24px 16px 28px;
}

@media screen and (max-width: 1024px) {
  .c-card-pickup__body {
    padding-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
}

.c-card-pickup__meta {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

@media screen and (max-width: 1024px) {
  .c-card-pickup__meta {
    column-gap: 10px;
  }
}

.c-card-pickup__date {
  font-size: 14px;
  font-family: var(--fontFamily-en);
}

@media screen and (max-width: 1024px) {
  .c-card-pickup__date {
    font-size: 10px;
  }
}

.c-card-pickup__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

@media screen and (max-width: 1024px) {
  .c-card-pickup__title {
    font-size: 16px;
  }
}
}

@layer components{

.c-heading-archive {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

@media screen and (max-width: 768px) {
  .c-heading-archive {
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
  }
}

.c-heading-archive__en {
  font-family: var(--fontFamily-en);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1
  ;
  background: linear-gradient(to right, #000000, #7c7963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .c-heading-archive__en {
    font-size: 36px;
  }
}
.c-heading-archive__ja {
  font-size: 16px;
  font-weight: 700;
  color: #7d7c76;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
}

@layer components{

.c-card-youtube__link {
  display: block;
  transition: opacity 0.3s;
}

.c-card-youtube__link:hover {
  opacity: 0.7;
}

.c-card-youtube__thumbnail {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 280 / 158;
}

.c-card-youtube__thumbnail .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-youtube__body {
  margin-top: 12px;
}

.c-card-youtube__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
}

@layer components{

.c-mini-blog__link {
  column-gap: 12px;
  transition: opacity 0.3s;
  display: grid;
  grid-template-columns: 109fr 150fr;
}

.c-mini-blog__link:hover {
  opacity: 0.7;
}

.c-mini-blog__thumbnail {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 109 / 74;
  width: 100%;
}

.c-mini-blog__thumbnail .-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mini-blog__body {
  display: flex;
  flex-direction: column;
}

.c-mini-blog__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.c-mini-blog__date {
  font-size: 12px;
  line-height: 1;
}
}

@layer components{

@property --icon-rect-fill {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}

.c-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.c-pagination__prev {
  justify-self: end;
  margin-right: 40px;
}

.c-pagination__next {
  justify-self: start;
  margin-left: 40px;
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .c-pagination__list {
    column-gap: 30px;
    row-gap: 16px;
  }
}

.c-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: opacity 0.3s;
  font-family: var(--fontFamily-en);
}

.c-pagination__item .page-numbers:hover {
  opacity: 0.7;
}

.c-pagination__item .page-numbers.current {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.c-pagination__item .page-numbers.dots {
  pointer-events: none;
}

.c-pagination__icon {
  width: 55px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .c-pagination__icon {
    width: 59px;
    height: 28px;
  }
}

.c-pagination__prev .page-numbers,
.c-pagination__next .page-numbers {
  transition: color 0.3s, --icon-rect-fill 0.3s;
}

.c-pagination__prev .page-numbers:hover,
.c-pagination__next .page-numbers:hover {
  color: white;
  --icon-rect-fill: #484848;
}
}

@layer components{

.c-chip-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: calc(5 / 16 * 1em) calc(16 / 16 * 1em);
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  transition: opacity 0.3s;
  background-image: linear-gradient(to bottom, white, #eaeaea);
  text-align: center;
}

.c-chip-tag:hover {
  opacity: 0.7;
}
}

@layer components{

.c-chip-category {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-primary);
  padding: calc(6 / 14 * 1em) calc(12 / 14 * 1em);
  border-radius: 50px;
  border: 1px solid;
  display: block;
  width: fit-content;
  transition: opacity 0.3s;
}

a.c-chip-category:hover {
  opacity: 0.7;
}
}

@layer components{
.c-logo-header {
  display: block;
}
.c-logo-header__img {
  display: block;
}
}

@layer site{

.s-header {
  height: calc(var(--height-header) * 1px);
  padding-left: calc(49 / 1440 * 100%);
  padding-right: calc(49 / 1440 * 100%);
}

@media screen and (max-width: 768px) {
  .s-header {
    padding-left: calc(16 / 375 * 100%);
    padding-right: calc(16 / 375 * 100%);
  }
}

.s-header._fixed {
  left: 0;
  position: fixed;
  top: 24px;
  transition: top 0.3s;
  width: 100%;
  z-index: var(--zIndex-header);
}

@media screen and (max-width: 1024px) {
  .s-header._fixed {
    top: 16px;
  }
}
.s-header__inner {
  background-color: #fff;
  backdrop-filter: blur(8px);
  filter: drop-shadow(0 4px 8px color-mix(in srgb, black 8%, transparent));
  align-items: center;
  display: flex;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 10px;
  position: relative;
  transition:
    background-color 0.3s,
    backdrop-filter 0.3s,
    filter 0.3s,
    padding-left 0.3s,
    padding-right 0.3s;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .s-header__inner {
    filter: drop-shadow(0 3px 6px color-mix(in srgb, black 5%, transparent));
    padding: 18px 23px;
  }
}

.s-header__logo {
  color: var(--color-text);
  transition: color 0.3s;
}

@media screen and (max-width: 1024px) {
  .s-header__logo {
    width: 153px;
  }
}
.s-header__nav {
  margin-left: auto;
  margin-right: 32px;
}

.s-header__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s-header__buttons .c-button-simple {
  font-size: 16px;
  min-width: auto;
  line-height: 1.5;
  filter: none;
  letter-spacing: 0.02em;
  padding: calc(10 / 16 * 1em) calc(40 / 16 * 1em);
}

.s-header__spmenu {
  height: 100vh;
  height: 100svh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100vw;
  z-index: 1;
}

.s-header__toggle {
  display: none;
  position: relative;
  z-index: var(--zIndex-toggle);
}

@media screen and (max-width: 1200px) {
  .s-header__nav {
    margin-right: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .s-header__nav {
    display: none;
  }

  .s-header__buttons {
    display: none;
  }

  .s-header__toggle {
    display: block;
    margin-left: auto;
  }
}

/* _type-b: 透明ヘッダー（トップ・サービスページ用） */
@media screen and (min-width: 1025px) {
  .s-header._type-b._fixed {
    position: absolute;
  }
}
.s-header._type-b {
  top: 16px;
}
.s-header._type-b .s-header__inner {
  background-color: transparent;
  backdrop-filter: none;
  filter: none;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 768px) {
  .s-header._type-b .s-header__inner {
    padding-left: calc(7 / 375 * 100%);
    padding-right: calc(7 / 375 * 100%);
  }
}
.s-header._type-b .s-header__logo {
  color: #fff;
}

.s-header._type-b .s-header-nav a {
  color: #fff;
}

.s-header._type-b .c-hamburger[aria-expanded="false"] {
  --color: #fff;
}
}

@layer site{

.s-header-nav__list {
  align-items: center;
  display: flex;
  height: 100%;
  column-gap: 28px;
}

@media screen and (max-width: 1200px) {
  .s-header-nav__list {
    column-gap: 16px;
  }
}

.s-header-nav__list .menu-item > a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition:
    opacity 0.3s,
    color 0.3s;
}

.s-header-nav__list .menu-item > a:hover {
  opacity: 0.5;
}
}

@layer site{

.s-spmenu {
  background-color: #f9f9f9;
  height: 100lvh;
  opacity: 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.3s;
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: calc(var(--height-header) * 1px + 16px + 16px);
}

.s-spmenu:not([inert]) {
  opacity: 1;
  pointer-events: auto;
}

.s-spmenu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

/* ナビゲーション */
.s-spmenu-nav {
  width: 100%;
}

.s-spmenu-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.s-spmenu__nav {
  width: 100%;
}

.s-spmenu-nav__list > .menu-item {
  border-bottom: 1px solid #e0e0e0;
}

.s-spmenu-nav__list > .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
  padding-top: 24px;
  padding-bottom: 24px;
}

.s-spmenu-nav__list > .menu-item > a:hover {
  opacity: 0.7;
}

.s-spmenu-nav__arrow {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

/* ボタンエリア */
.s-spmenu__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  width: 100%;
  flex-wrap: wrap;
}
.s-spmenu__buttons .c-button-simple {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .s-spmenu__buttons {
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .s-spmenu__buttons {
    flex-direction: column;
  }
  .s-spmenu__buttons .c-button-simple {
    width: 100%;
  }
}
}

@layer site{
.s-footer {
  padding-top: 80px;
  padding-bottom: 48px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .s-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}

.s-footer__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-footer__layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .s-footer__layout {
    flex-direction: column;
    row-gap: 48px;
  }
}

@media screen and (max-width: 768px) {
  .s-footer__logo {
    width: 174px;
  }
}
.s-footer__left {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .s-footer__left {
    padding-top: 0;
  }
}

.s-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .s-footer__right {
    align-items: flex-start;
    width: 100%;
  }
}

.s-footer__buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .s-footer__buttons {
    margin-top: 24px;
    column-gap: 14px;
  }
}

.s-footer__copyright {
  margin-top: 72px;
  font-size: 12px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .s-footer__copyright {
    margin-top: 56px;
    text-align: right;
    justify-self: flex-end;
    width: 100%;
  }
}
}

@layer site{
.s-footer-nav__list {
  align-items: center;
  display: flex;
  height: 100%;
  column-gap: 32px;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .s-footer-nav__list {
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 16px;
  }
}

.s-footer-nav__list .menu-item {
  flex-grow: 1;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .s-footer-nav__list .menu-item {
    flex-grow: 0;
  }
}

.s-footer-nav__list .menu-item > a {
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.3s;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.s-footer-nav__list .menu-item > a:hover {
  opacity: 0.5;
}
}

@layer site{
.s-section-cta {
  position: relative;
  padding-top: 80px;
  padding-bottom: 88px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .s-section-cta {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

.s-section-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.s-section-cta__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-section-cta__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-cta__upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .s-section-cta__upper {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.s-section-cta__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, white 80%, transparent);
}
@media screen and (max-width: 768px) {
  .s-section-cta__heading {
    font-size: 24px;
    text-align: center;
  }
}

.s-section-cta__lead {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, white 80%, transparent);
}
@media screen and (max-width: 768px) {
  .s-section-cta__lead {
    text-align: center;
    font-size: 15px;
  }
}

.s-section-cta__lower {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 36px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .s-section-cta__lower {
    grid-template-columns: 1fr;
    row-gap: 18px;
    margin-top: 40px;
  }
}

.s-section-cta-button {
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  transition:
    opacity 0.3s,
    filter 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 14px 34px color-mix(in srgb, black 45%, transparent));
}
@media screen and (max-width: 768px) {
  .s-section-cta-button {
    padding: 20px 16px;
  }
}

.s-section-cta-button:hover {
  opacity: 0.9;
  filter: drop-shadow(0 5px 24px color-mix(in srgb, white 25%, transparent));
}
.s-section-cta-button:hover .s-section-cta-button__icon {
  opacity: 0.8;
}

/* 資料請求（白背景） */
.s-section-cta__button:first-child .s-section-cta-button {
  background-image: linear-gradient(to right, #e1e1e1, white);
}

/* お問い合わせ（枠線） */
.s-section-cta__button:last-child .s-section-cta-button {
  background-image: linear-gradient(to right, #242424, #4d4d4d);
}
.s-section-cta__button:last-child .s-section-cta-button:hover {
  filter: drop-shadow(
    0 5px 24px color-mix(in srgb, #c6c6c640 25%, transparent)
  );
}

.s-section-cta__button:last-child .s-section-cta-button__heading,
.s-section-cta__button:last-child .s-section-cta-button__lead {
  color: #fff;
}

.s-section-cta-button__heading {
  font-size: 32px;
  margin-top: 48px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .s-section-cta-button__heading {
    font-size: 22px;
    margin-top: 20px;
  }
}

.s-section-cta-button__lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #484848;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .s-section-cta-button__lead {
    font-size: 14px;
    margin-top: 12px;
  }
}

.s-section-cta-button__icon {
  margin-top: auto;
  padding-top: 28px;
  align-self: flex-end;
  width: 74px;
  height: auto;
  transition:
    opacity 0.3s,
    filter 0.3s;
}
@media screen and (max-width: 768px) {
  .s-section-cta-button__icon {
    width: 56px;
    padding-top: 24px;
  }

  .s-section-cta__button:nth-of-type(1) .s-section-cta-button__icon {
    padding-top: 8px;
  }
}
}

@layer site{

.s-pageheader-main {
  position: relative;
  padding-top: 180px;
  padding-bottom: 88px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main {
    padding-top: 138px;
    padding-bottom: 64px;
  }
}

.s-pageheader-main__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.s-pageheader-main__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-pageheader-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-pageheader-main__sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__sub {
    font-size: 16px;
  }
}

.s-pageheader-main__main {
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--fontFamily-en);
  color: #fff;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__main {
    font-size: 50px;
  }
}
.s-pageheader-main__intro {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__intro {
    font-size: 14px;
  }
}
}

@layer site{

.s-sticky-cta {
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 300px;
  z-index: 10;
}

.s-sticky-cta__fukidashi {
  position: relative;
  z-index: 1;
  margin-bottom: -26px;
  padding-left: 16px;
}

.s-sticky-cta__fukidashi img.-close {
  display: block;
}

.s-sticky-cta__button {
  display: flex;
  justify-content: flex-end;
  transition: transform 0.3s;
}

.s-sticky-cta__toggle {
  transition: opacity 0.3s;
}

.s-sticky-cta__toggle:hover {
  opacity: 0.7;
}

.s-sticky-cta__close {
  position: absolute;
  top: -16px;
  right: 16px;
  transition: opacity 0.3s;
}

.s-sticky-cta__close:hover {
  opacity: 0.7;
}

.s-sticky-cta__body {
  background: #f9f9f9;
  border-radius: 10px 0 0 10px;
  max-height: min(70lvh,500px);
  overflow-y: scroll;
}

.s-sticky-cta__panel {
  display: none;
  transform: translateX(100%);
  transition: transform 0.3s;
}

/* Fixed variant: viewport-anchored sticky CTA for service/case pages */
.s-sticky-cta--fixed {
  position: fixed;
  right: 0;
  bottom: 32px;
  z-index: 30;
}

@media screen and (max-width: 768px) {
  .s-sticky-cta--fixed {
    bottom: 16px;
  }
}
}

@layer page{
/* セクション全体 */
.p-page404-body {
  padding-top: 228px;
  padding-bottom: 178px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-page404-body {
    padding-top: 126px;
    padding-bottom: 104px;
  }
}

/* 内部コンテナ（中央揃え・最大幅制限） */
.p-page404-body__inner {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

/* 404番号 */
.p-page404-body__num {
  font-size: 80px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-family: var(--fontFamily-en);
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-page404-body__num {
    font-size: 56px;
  }
}

/* 見出し */
.p-page404-body__heading {
  margin-top: 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-page404-body__heading {
    margin-top: 24px;
    font-size: 22px;
  }
}

.p-page404-body__heading .-ib {
  display: inline-block;
}

/* 説明テキスト */
.p-page404-body__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-page404-body__text {
    font-size: 14px;
  }
}

/* ボタン */
.p-page404-body__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-page404-body__button {
    margin-top: 32px;
  }
}
}

@layer page{

.p-top-service {
  background-color: #f9f9f9;
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-service {
    padding-top: 64px;
    padding-bottom: 32px;
  }
}
.p-top-service__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-inline: auto;
}

.p-top-service__intro {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-top-service__intro {
    margin-top: 16px;
    font-size: 15px;
  }
}

.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  row-gap: 48px;
  column-gap: 96px;
}

@media screen and (max-width: 768px) {
  .p-top-service__list {
    grid-template-columns: 1fr;
    row-gap: unset;
    margin-top: 24px;
  }
}

.p-top-service__item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-top-service__item:not(:last-of-type) {
    border-bottom: 1px solid #dddddd;
  }
}

.p-top-service__item:nth-of-type(1)::after {
  content: "";
  background-color: #dddddd;
  height: 1px;
  width: calc(100% - 12px - 10px + 48px);
  position: absolute;
  bottom: -24px;
  left: 12px;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(1)::after {
    display: none;
  }
}

.p-top-service__item:nth-of-type(1)::before,
.p-top-service__item:nth-of-type(4)::before {
  content: "";
  background-color: #dddddd;
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 0px;
  right: -48px;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(1)::before,
  .p-top-service__item:nth-of-type(4)::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(1)::before,
  .p-top-service__item:nth-of-type(4)::before {
    display: none;
  }
}
.p-top-service__item:nth-of-type(2)::after {
  content: "";
  background-color: #dddddd;
  height: 1px;
  width: calc(100% + 60px + 12px);
  position: absolute;
  bottom: -24px;
  left: -36px;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(2)::after {
    display: none;
  }
}

.p-top-service__item:nth-of-type(2)::before,
.p-top-service__item:nth-of-type(5)::before {
  content: "";
  background-color: #dddddd;
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 0px;
  right: -48px;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(2)::before,
  .p-top-service__item:nth-of-type(5)::before {
    display: none;
  }
}
.p-top-service__item:nth-of-type(3)::after {
  content: "";
  background-color: #dddddd;
  height: 1px;
  width: calc(100% - 10px + 48px);
  position: absolute;
  bottom: -24px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .p-top-service__item:nth-of-type(3)::after {
    display: none;
  }
}
}

@layer page{

.p-top-service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  color: var(--color-text);
  height: 100%;
  transition: opacity 0.3s;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-top-service-item {
    grid-template-columns: 1fr;
    padding-left: unset;
    padding-right: unset;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-left: 6px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-service-item {
    grid-template-columns: 1fr auto;
  }
}
.p-top-service-item:hover {
  opacity: 0.7;
}

.p-top-service-item__logo {
  grid-area: 1 / 2 / 2 / 3;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .p-top-service-item__logo {
    grid-area: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-service-item {
    grid-area: 1 / 2 / 2 / 3;
  }
}
.p-top-service-item__heading {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .p-top-service-item__heading {
    grid-area: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-service-item__heading {
    grid-area: 1 / 1 / 2 / 2;
    font-size: 22px;
  }
}

.p-top-service-item__description {
  grid-area: 2 / 1 / 3 / 3;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .p-top-service-item__description {
    grid-area: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-service-item__description {
    grid-area: 2 / 1 / 3 / 3;
    font-size: 15px;
    margin-top: 20px;
  }
  .p-top-service-item__description br {
    display: none;
  }
}

.p-top-service-item__arrow {
  grid-area: 3 / 1 / 4 / 3;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .p-top-service-item__arrow {
    grid-area: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-service-item__arrow {
    grid-area: 3 / 1 / 4 / 3;
  }
}
}

@layer page{
.p-top-clients {
  padding-top: 24px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: clip;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .p-top-clients {
    padding-top: 24px;
    padding-bottom: 64px;
  }
}

.p-top-clients__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-clients__heading {
  display: flex;
  align-items: center;
  column-gap: 32px;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  max-width: 574px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 24%,
    #000000 24%,
    #908d79,
    76%,
    transparent 76%,
    transparent 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--fontFamily-en);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-top-clients__heading {
    font-size: 30px;
  }
}

.p-top-clients__heading::before,
.p-top-clients__heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    color-mix(in srgb, #d0d0d0 0%, transparent),
    #333
  );
}

.p-top-clients__heading::after {
  background: linear-gradient(
    to left,
    color-mix(in srgb, #d0d0d0 0%, transparent),
    #333
  );
}

.p-top-clients__intro {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-top-clients__slider {
  margin-top: 56px;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-top-clients__slider {
    margin-top: 32px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

.p-top-clients__slider .swiper-slide {
  width: 220px !important;
}

@media screen and (max-width: 768px) {
  .p-top-clients__slider .swiper-slide {
    width: 116px !important;
  }
}
.p-top-clients__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
}

@layer page{
.p-top-books {
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .p-top-books {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.p-top-books__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-books__intro {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-top-books__intro {
    margin-top: 16px;
    font-size: 15px;
  }
}
.p-top-books__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .p-top-books__list {
    grid-template-columns: 1fr;
    margin-top: 48px;
    row-gap: 40px;
  }
}

.p-top-books-item {
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}

@media screen and (max-width: 768px) {
  .p-top-books-item {
    row-gap: 20px;
  }
}

.p-top-books-item:hover {
  opacity: 0.7;
}

.p-top-books-item__thumbnail {
  filter: drop-shadow(0 4px 20px color-mix(in srgb, black 25%, transparent));
}

@media screen and (max-width: 768px) {
  .p-top-books-item__thumbnail .-img {
    width: 160px;
  }
}

.p-top-books-item__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-top-books-item__name {
    font-size: 18px;
  }
}
}

@layer page{
.p-top-blog {
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-top-blog {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.p-top-blog__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-top-blog__intro {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-top-blog__intro {
    margin-top: 16px;
    font-size: 15px;
  }
}

.p-top-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .p-top-blog__list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
}

.p-top-blog__action {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-top-blog__action {
    margin-top: 48px;
    justify-content: flex-start;
  }
}
}

@layer page{
.p-top-news {
  padding-top: 104px;
  padding-bottom: 88px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.p-top-news__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-news__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12%;
  align-items: start;
}

@media screen and (max-width: 768px) {
  .p-top-news__layout {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
}

.p-top-news__action {
  margin-top: 104px;
}

@media screen and (max-width: 768px) {
  .p-top-news__action {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
  }
}

.p-top-news__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

@media screen and (max-width: 768px) {
  .p-top-news__list {
    row-gap: 16px;
  }
}
}

@layer page{

.p-top-paper {
  padding-bottom: 88px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
  .p-top-paper {
    padding-bottom: 64px;
  }
}
.p-top-paper__inner {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.p-top-paper__box {
  position: relative;
  border-radius: 10px;
  overflow: clip;
}

.p-top-paper__bg {
  position: absolute;
  inset: 0;
}

.p-top-paper__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-paper__layout {
  padding-top: 80px;
  padding-left: 76px;
  padding-right: 76px;
  padding-bottom: 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-top-paper__layout {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-top-paper__contents {
  max-width: 50%;
}

@media screen and (max-width: 768px) {
  .p-top-paper__contents {
    max-width: unset;
  }
}
.p-top-paper__heading-ja {
  color: color-mix(in srgb, black 80%, transparent);
  line-height: 1.5;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-top-paper__heading-ja {
    font-size: 18px;
  }
}
.p-top-paper__heading-en {
  margin-top: 8px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--fontFamily-en);
  background: linear-gradient(to right, #000000, #9ba0aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-top-paper__heading-en {
    font-size: 40px;
  }
}

.p-top-paper__intro {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-top-paper__intro {
    font-size: 15px;
    margin-top: 20px;
  }
}
.p-top-paper__action {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .p-top-paper__action {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-paper__book {
    margin-right: -8%;
    margin-top: 20px;
  }
  .p-top-paper__book .-img {
    width: 100%;
  }
}
}

@layer page{

.p-top-mv {
  position: relative;
  max-height: 723px;
  height: 100lvh;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow-x: clip;
}

@media screen and (max-width: 768px) {
  .p-top-mv {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    max-height: 644px;
  }
}

.p-top-mv__bg {
  position: absolute;
  max-height: 723px;
  inset: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-top-mv__bg {
    max-height: unset;
  }
}

.p-top-mv__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-mv__inner {
  position: relative;
  height: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-top-mv__inner {
    padding-top: unset;
    padding-bottom: 32px;
  }
}

.p-top-mv__contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top-mv__heading {
  font-size: clamp(72px, calc(72 / 1440 * 100vw), calc(72px * 1.5));
  line-height: 1.3;
  font-weight: 700;
  color: white;
  font-size: 72px;
}

@media screen and (max-width: 768px) {
  .p-top-mv__heading {
    font-size: 40px;
    white-space: nowrap;
    line-height: 1.4;
  }
}

.p-top-mv__intro {
  color: white;
  font-size: clamp(24px, calc(24 / 1440 * 100vw), calc(24px * 1.5));
  line-height: 1.5;
  font-size: 24px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-top-mv__intro {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 24px;
  }
}
}

@layer page{
/* Consulting */
.p-service-wrap._consulting {
  --_service-color: var(--color-service-consulting);
  --_service-bg: #fdf5f0;
  --_service-gradient-start: #ff7220;
  --_service-gradient-end: #ff9c58;
}

/* Management */
.p-service-wrap._management {
  --_service-color: var(--color-service-management);
  --_service-bg: #fcfaf0;
  --_service-gradient-start: #ffcf00;
  --_service-gradient-end: #fee56f;
}

/* Governance */
.p-service-wrap._governance {
  --_service-color: var(--color-service-governance);
  --_service-bg: #f6faf9;
  --_service-gradient-start: #00cc98;
  --_service-gradient-end: #72e8c5;
}

/* BI */
.p-service-wrap._bi {
  --_service-color: var(--color-service-bi);
  --_service-bg: #f2f6fa;
  --_service-gradient-start: #006bff;
  --_service-gradient-end: #72affb;
}

/* Utilization */
.p-service-wrap._utilization {
  --_service-color: var(--color-service-utilization);
  --_service-bg: #fcf5fa;
  --_service-gradient-start: #a349a3;
  --_service-gradient-end: #e99bda;
}

/* Seminar */
.p-service-wrap._seminar {
  --_service-color: var(--color-service-seminar);
  --_service-bg: #fdf2f3;
  --_service-gradient-start: #f92852;
  --_service-gradient-end: #ff7d89;
}

/* Cleansing */
.p-service-wrap._cleansing {
  --_service-color: var(--color-service-cleansing);
  --_service-bg: #fbf8f3;
  --_service-gradient-start: #a56814;
  --_service-gradient-end: #decbb0;
}
}

@layer page{
.p-service-head {
  background: #f9f9f9;
  padding-top: 178px;
  padding-bottom: 74px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-service-head {
    padding-top: 140px;
    padding-bottom: 48px;
  }
}

.p-service-head__inner {
  max-width: 1012px;
  margin-left: auto;
  margin-right: auto;
}
.p-service-head._management .p-service-head__inner {
  max-width: 1152px;
}
.p-service-head._governance .p-service-head__inner {
  max-width: 1140px;
}
.p-service-head._bi .p-service-head__inner {
  max-width: 1136px;
}
.p-service-head._utilization .p-service-head__inner {
  max-width: 952px;
}
.p-service-head._cleansing .p-service-head__inner {
  max-width: 1080px;
}

.p-service-head__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  column-gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-service-head__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
    row-gap: 24px;
  }
}

.p-service-head__logo {
  grid-area: 1 / 2 / 4 / 3;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .p-service-head__logo {
    grid-area: auto;
    justify-self: start;
  }
  .p-service-head._consulting .p-service-head__logo > img {
    max-width: 146px;
    height: auto;
  }
  .p-service-head._management .p-service-head__logo > img {
    max-width: 140px;
    height: auto;
  }
  .p-service-head._governance .p-service-head__logo > img {
    max-width: 143px;
    height: auto;
  }
  .p-service-head._bi .p-service-head__logo > img {
    max-width: 100px;
    height: auto;
  }
  .p-service-head._utilization .p-service-head__logo > img {
    max-width: 108px;
    height: auto;
  }
  .p-service-head._seminar .p-service-head__logo > img {
    max-width: 130px;
    height: auto;
  }
  .p-service-head._cleansing .p-service-head__logo > img {
    max-width: 105px;
    height: auto;
  }
}

.p-service-head__heading {
  grid-area: 1 / 1 / 2 / 2;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-service-head__heading {
    grid-area: auto;
    font-size: 28px;
  }
}

.p-service-head__intro {
  grid-area: 2 / 1 / 3 / 2;
  letter-spacing: 0.04em;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-service-head__intro {
    grid-area: auto;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }
  .p-service-head__intro br {
    display: none;
  }
}

.p-service-head__buttons {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
  display: flex;
  column-gap: 16px;
  margin-top: 64px;
  row-gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-service-head__buttons {
    grid-area: auto;
    margin-top: 16px;
    row-gap: 16px;
  }
}

.p-service-head__buttons .c-button-simple {
  min-width: 200px;
  padding-left: 2em;
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  .p-service-head__buttons .c-button-simple {
    flex-basis: 200px;
  }
}
}

@layer page{

.p-service-problem {
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-service-problem {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-service-problem__triangle {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 77%;
}

@media screen and (max-width: 768px) {
  .p-service-problem__triangle {
    translate: -50% 57%;
  }
}

.p-service-problem__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .p-service-problem__list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}

.p-service-problem-item {
  background: var(--_service-bg);
  border-radius: 10px;
  padding: 34px 32px 40px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-service-problem-item {
    padding-top: 24px;
    padding-left: 24px;
    padding-left: 24px;
    padding-bottom: 32px;
  }
}

.p-service-problem-item__icon-svg {
  width: 32px;
  height: 28px;
  color: var(--_service-color);
  fill: var(--_service-color);
}

.p-service-problem-item__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-service-problem-item__heading {
    margin-top: 8px;
    font-size: 20px;
  }
  .p-service-problem-item__heading br {
    display: none;
  }
}

.p-service-problem-item__description {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-problem-item__description {
    font-size: 15px;
    margin-top: 12px;
  }
}
}

@layer page{
.p-service-possible {
  position: relative;
  padding-top: 104px;
  padding-bottom: 138px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service-possible {
    padding-top: 80px;
    padding-bottom: 64px;
  }
}

.p-service-possible__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-service-possible__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-service-possible__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-possible__heading {
  display: flex;
  align-items: center;
  column-gap: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-service-possible__heading {
    font-size: 26px;
    column-gap: 20px;
  }
}

.p-service-possible__heading::before,
.p-service-possible__heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    color-mix(in srgb, #dddddd 0%, transparent),
    #fff
  );
}

.p-service-possible__heading::after {
  background: linear-gradient(
    to left,
    color-mix(in srgb, #dddddd 0%, transparent),
    #fff
  );
}

.p-service-possible__intro {
  margin-top: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service-possible__intro {
    font-size: 15px;
  }
  .p-service-possible__intro br {
    display: none;
  }
}

.p-service-possible__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-service-possible__list {
    row-gap: 32px;
    margin-top: 48px;
  }
}

.p-service-possible-item {
  border-radius: 10px;
  padding: 32px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto 1fr;
  column-gap: 24px;
  background-image: linear-gradient(to right, white, #e4e4e4);
}
@media screen and (max-width: 768px) {
  .p-service-possible-item {
    padding: 24px 24px 32px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 0;
  }
}

.p-service-possible-item__thumbnail {
  grid-area: 1 / 2 / 4 / 3;
  align-self: center;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service-possible-item__thumbnail {
    grid-area: auto;
    order: 2;
    margin-top: 24px;
  }
}

.p-service-possible-item__thumbnail > .-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.p-service-possible-item__point {
  margin-top: 16px;
  grid-area: 1 / 1 / 2 / 2;
  display: block;
  width: fit-content;
  border-radius: 5px;
  padding: calc(4 / 16 * 1em) calc(24 / 16 * 1em);
  background: var(--color-service-consulting);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  background-image: linear-gradient(to right, #060605, #8b8975);
  font-family: var(--fontFamily-en);
}
@media screen and (max-width: 768px) {
  .p-service-possible-item__point {
    grid-area: auto;
    margin-top: 0;
  }
}

.p-service-possible-item__heading {
  grid-area: 2 / 1 / 3 / 2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 24px;
  background: linear-gradient(to right, #323232, #878571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-service-possible-item__heading {
    grid-area: auto;
    font-size: 20px;
    margin-top: 16px;
  }
}

.p-service-possible-item__description {
  grid-area: 3 / 1 / 4 / 2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-service-possible-item__description {
    grid-area: auto;
    font-size: 15px;
    margin-top: 8px;
  }

  .p-service-possible-item__description br {
    display: none;
  }
}
}

@layer page{
.p-service-support {
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .p-service-support {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.p-service-support__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-support__intro {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-support__intro {
    font-size: 15px;
    line-height: 1.5;
  }
}

.p-service-support__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .p-service-support__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    row-gap: 40px;
  }
}

.p-service-support-item__thumbnail {
  border-radius: 10px;
  overflow: hidden;
}

.p-service-support-item__thumbnail .-img {
  width: 100%;
  height: auto;
}

.p-service-support-item__heading {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-service-support-item__heading {
    font-size: 20px;
  }
}

.p-service-support-item__heading::before {
  content: "";
  margin-top: 15px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--_service-color);
}
@media screen and (max-width: 768px) {
  .p-service-support-item__heading::before {
    margin-top: 12px;
  }
}

.p-service-support-item__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-service-support-item__description {
    margin-top: 12px;
    font-size: 15px;
  }
}
}

@layer page{
.p-service-process {
  padding-top: 104px;
  padding-bottom: 64px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-service-process {
    padding-top: 64px;
    padding-bottom: 32px;
  }
}

.p-service-process__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-process__intro {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-process__intro {
    font-size: 15px;
    line-height: 1.5;
  }
}

.p-service-process__list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .p-service-process__list {
    margin-top: 40px;
  }
}

.p-service-process__item {
  position: relative;
}

/* 各アイテム間をつなぐ縦線 */
.p-service-process__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 37.5px;
  top: 76px;
  bottom: -16px;
  width: 5px;
  background: var(--_service-bg);
}

@media screen and (max-width: 768px) {
  .p-service-process__item:not(:last-child)::after {
    left: 22.5px;
    top: 46px;
    bottom: -8px;
  }
}
.p-service-process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .p-service-process-item {
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    padding-bottom: 44px;
  }
}
.p-service-process__item:last-child .p-service-process-item {
  padding-bottom: unset;
}

.p-service-process-item__number {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  font-family: var(--fontFamily-en);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--_service-gradient-start),
    var(--_service-gradient-end)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .p-service-process-item__number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.p-service-process-item__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-service-process-item__heading {
    font-size: 20px;
  }
}

.p-service-process-item__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-process-item__description {
    margin-top: 10px;
    font-size: 15px;
  }
}
}

@layer page{
.p-service-cases {
  padding-top: 64px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-service-cases {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.p-service-cases__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-cases__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service-cases__head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
  }
}

.p-service-cases__intro {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 768px) {
  .p-service-cases__intro {
    font-size: 14px;
    font-size: 15px;
    line-height: 1.5;
  }
}

.p-service-cases__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-service-cases__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 40px;
  }
}

.p-service-cases__right {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-service-cases__right {
    padding-left: 15px;
  }
}
.p-service-cases-item {
  border-radius: 10px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff,
    color-mix(in srgb, #e3e3e3 30%, transparent),
    color-mix(in srgb, #fefefe 10%, transparent),
    #fefefe
  );
}
@media screen and (max-width: 768px) {
  .p-service-cases-item {
    padding: 40px 24px;
    background: linear-gradient(
      to bottom,
      #ffffff,
      color-mix(in srgb, #e3e3e3 30%, transparent),
      color-mix(in srgb, #fefefe 10%, transparent),
      #fefefe
    );
  }
}

.p-service-cases-item::before,
.p-service-cases-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.4;
  background: linear-gradient(
    to right,
    rgba(50, 50, 50, 0) 0%,
    rgba(50, 50, 50, 0.8) 17%,
    rgba(50, 50, 50, 1) 50%,
    rgba(50, 50, 50, 0.8) 86%,
    rgba(50, 50, 50, 0) 100%
  );
}

.p-service-cases-item::before {
  top: 0;
}

.p-service-cases-item::after {
  bottom: 0;
}

.p-service-cases-item__tag {
  display: inline-block;
  width: fit-content;
  padding: calc(6 / 16 * 1em) calc(16 / 16 * 1em);
  border-radius: 90px;
  background-image: linear-gradient(to right, #060605, #73715c);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__tag {
    font-size: 14px;
  }
}

.p-service-cases-item__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__heading {
    font-size: 20px;
  }
}

.p-service-cases-item__section {
  margin-top: 32px;
}
.p-service-cases-item__section:not(:first-of-type) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__section {
    margin-top: 24px;
  }
}

.p-service-cases-item__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(to right, #10100d, #6c6a57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__label {
    font-size: 16px;
  }
}

.p-service-cases-item__description {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__description {
    font-size: 15px;
    margin-top: 4px;
  }
}

.p-service-cases-item__action {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-service-cases-item__action {
    margin-top: 32px;
  }
}
}

@layer page{

.p-service-archive {
  padding-top: 104px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f3f3f4;
}

@media screen and (max-width: 768px) {
  .p-service-archive {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.p-service-archive__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-service-archive__list {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.p-service-archive-item {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
}

.p-service-archive-item__bar {
  height: 12px;
  background: linear-gradient(to right, #0b0b09, #77755f);
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__bar {
    height: 8px;
  }
}

.p-service-archive-item__body {
  padding: 40px 40px 48px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__body {
    padding-left: 24px;
    padding-bottom: 40px;
    padding-right: 24px;
    padding-top: 36px;
  }
}

.p-service-archive-item__en {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--fontFamily-en);
  background: linear-gradient(to right, #060605, #7a7761);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__en {
    font-size: 14px;
  }
}

.p-service-archive-item__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__title {
    font-size: 22px;
  }
}
.p-service-archive-item__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__description {
    margin-top: 12px;
    font-size: 15px;
  }
  .p-service-archive-item__description br {
    display: none;
  }
}

.p-service-archive-item__links {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

@media screen and (max-width: 768px) {
  .p-service-archive-item__links {
    margin-top: 40px;
  }
}
}

@layer page{

.p-archive-head {
  padding-top: 157px;
  padding-bottom: 64px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
  .p-archive-head {
    padding-top: 116px;
    padding-bottom: 48px;
  }
}
.p-archive-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-archive-head__layout {
  display: grid;
  grid-template-columns: 297px 1fr;
  align-items: center;
  column-gap: 82px;
}

.p-archive-head__logo {
  grid-area: 1 / 1 / 3 / 2;
}

.p-archive-head__heading {
  grid-area: 1 / 2 / 2 / 3;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  align-self: end;
  background: linear-gradient(to right, #050504, #7d7963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-archive-head__heading {
    font-size: 22px;
    margin-top: 40px;
  }
}

.p-archive-head__intro {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  align-self: start;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .p-archive-head__intro {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-archive-head__layout {
    grid-template-columns: 1fr;
  }
  .p-archive-head__logo,
  .p-archive-head__heading,
  .p-archive-head__intro {
    grid-area: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-archive-head__logo {
    width: 200px;
  }
}
}

@layer page{

.p-archive-pickup {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-archive-pickup {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-archive-pickup__inner {
  max-width: 1360px;
  margin-left: auto;
  overflow: clip;
  margin-right: auto;
}

.p-archive-pickup__pagination {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .p-archive-pickup__pagination {
    gap: 8px;
    margin-top: 36px;
  }
}

.p-archive-pickup__pagination .swiper-pagination-bullet {
  width: 34px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background: #d7d7d7 !important;
  opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 0;
}
@media screen and (max-width: 768px) {
  .p-archive-pickup__pagination .swiper-pagination-bullet {
    height: 3px !important;
    width: 23px !important;
  }
}

.p-archive-pickup__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(to right, #000, #4d4c35) !important;
}

@media screen and (max-width: 1024px) {
  .p-archive-pickup {
    overflow: clip;
  }

  .p-archive-pickup__inner {
    overflow: visible;
  }

  .p-archive-pickup__slider.js-swiper-archive-pickup {
    overflow: visible;
  }

  .p-archive-pickup__slider .swiper-slide {
    width: 280px !important;
  }
}
}

@layer page{

.p-archive-layout {
  padding-top: 72px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #f3f3f4;
}

@media screen and (max-width: 768px) {
  .p-archive-layout {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.p-archive-layout:not(.--type-post) {
  padding-top: 178px;
}

.p-archive-layout:not(.--type-post) .p-archive-layout__upper {
  display: none;
}

@media screen and (max-width: 1024px) {
  .p-archive-layout:not(.--type-post) {
    padding-top: 108px;
  }
}

.p-archive-layout__inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.p-archive-layout__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  column-gap: 80px;
}

@media screen and (max-width: 1024px) {
  .p-archive-layout__layout {
    grid-template-columns: 1fr 240px;
    column-gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-archive-layout__layout {
    grid-template-columns: 1fr;
  }
}
.p-archive-layout__upper {
  grid-column: 1 / -1;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .p-archive-layout__upper {
    margin-bottom: 40px;
  }
}

.p-archive-layout__layout.--nosidebar {
  grid-template-columns: 1fr;
}

.p-archive-layout__body {
  min-width: 0;
}

.p-archive-layout__aside {
  min-width: 0;
}

@media screen and (max-width: 768px) {
  .p-archive-layout__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .p-archive-layout__aside {
    margin-top: 80px;
  }
}
}

@layer page{

.p-archive-upper {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d0d0d0;
}

@media screen and (max-width: 768px) {
  .p-archive-upper {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.p-archive-upper__label {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-archive-upper__label {
    font-size: 18px;
    margin-top: unset;
  }
}

.p-archive-upper__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
}

@media screen and (max-width: 768px) {
  .p-archive-upper__list {
    column-gap: 10px;
    row-gap: 10px;
  }
}

.p-archive-upper__link {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: calc(6 / 14 * 1em) calc(32 / 14 * 1em);
  border-radius: 50px;
  border: 1px solid #717171;
  background-color: white;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .p-archive-upper__link {
    padding: calc(5 / 16 * 1em) calc(17 / 16 * 1em);
    font-size: 16px;
  }
}

.p-archive-upper__link:hover {
  opacity: 0.7;
}

.p-archive-upper__link.-active {
  background: #323232;
  color: #fff;
  border-color: #323232;
}
}

@layer page{

.p-archive-youtube {
  padding-bottom: 104px;
}

@media screen and (max-width: 768px) {
  .p-archive-youtube {
    padding-bottom: 64px;
  }
}

.p-archive-youtube__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-archive-youtube__button {
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.p-archive-youtube__button:hover {
  opacity: 0.7;
}

.p-archive-youtube__button .-img {
  width: 74px;
  height: 32px;
}

@media screen and (max-width: 768px) {
  .p-archive-youtube__button .-img {
    width: 64px;
    height: 28px;
  }
}
.p-archive-youtube__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .p-archive-youtube__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-archive-youtube__list {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
}
}

@layer page{

.p-archive-topics__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.p-archive-topics__search {
  position: relative;
  flex-basis: 320px;
}

@media screen and (max-width: 768px) {
  .p-archive-topics__search {
    width: 100%;
    flex-basis: unset;
  }
}

.p-archive-topics__search-input {
  width: min(320px, 100%);
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 3em;
  border-radius: 10px;
  transition: border-color 0.3s;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-color: white;
  border: unset;
}

@media screen and (max-width: 768px) {
  .p-archive-topics__search-input {
    width: 100%;
  }
}

.p-archive-topics__search-input:focus {
  border-color: #888;
}

.p-archive-topics__search-button {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.p-archive-topics__search-icon {
  width: 24px;
  height: 24px;
  fill: #888;
}

.p-archive-topics__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 56px;
  row-gap: 64px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-archive-topics__list {
    row-gap: 40px;
    grid-template-columns: 1fr;
  }
}

.p-archive-topics__pagination {
  margin-top: 74px;
}

@media screen and (max-width: 768px) {
  .p-archive-topics__pagination {
    margin-top: 60px;
  }
}

.p-archive-topics__empty {
  margin-top: 40px;
  text-align: center;
}
}

@layer page{

.p-archive-aside {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.p-archive-aside__box {
  background-color: white;
  padding: 40px 24px 48px;
  border-radius: 10px;
}

.p-archive-aside .c-heading-bar {
  font-size: 22px;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .p-archive-aside .c-heading-bar {
    column-gap: 8px;
  }
}

.p-archive-aside .c-heading-bar__icon {
  height: 22px;
}

.p-archive-aside__profile {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .p-archive-aside__profile {
    font-size: 15px;
  }
}

.p-archive-aside__logo {
  display: grid;
  place-items: center;
  margin-top: 32px;
}

.p-archive-aside__logo .-img {
  width: min(176px, 100%);
  display: block;
}

.p-archive-aside__category {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 24px;
}

.p-archive-aside-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s;
}

.p-archive-aside-category:hover {
  opacity: 0.7;
}

.p-archive-aside-category__arrow {
  width: 45px;
  height: 23px;
  flex-shrink: 0;
}

.p-archive-aside__tag {
  column-gap: 8px;
  row-gap: 12px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-archive-aside__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 24px;
}

.p-archive-aside__banner {
  display: block;
  transition: opacity 0.3s;
}

.p-archive-aside__banner:hover {
  opacity: 0.7;
}

.p-archive-aside__banner-img .-img {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(
    2px 4px 11px color-mix(in srgb, #929fb6 30%, transparent)
  );
}
}

@layer page{

/* ================================================================
   Glossary Archive - p-glossary
   ================================================================ */

/* --- Anchor Navigation --- */

.p-glossary-nav {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d0d0d0;
}

.p-glossary-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-glossary-nav__list {
    gap: 10px;
  }
}

.p-glossary-nav__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: calc(6 / 16 * 1em) calc(16 / 16 * 1em);
  border-radius: 50px;
  border: 1px solid #717171;
  background-color: white;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

@media screen and (max-width: 768px) {
  .p-glossary-nav__link {
    font-size: 14px;
    padding: calc(5 / 14 * 1em) calc(17 / 14 * 1em);
  }
}

.p-glossary-nav__link:hover {
  background-color: #323232;
  color: #fff;
  border-color: #323232;
}

.p-glossary-nav__link.--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

/* --- Term Sections --- */

.p-glossary-body {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .p-glossary-body {
    margin-top: 40px;
  }
}

.p-glossary-section + .p-glossary-section {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .p-glossary-section + .p-glossary-section {
    margin-top: 40px;
  }
}

.p-glossary-section__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 2px solid #323232;
}

@media screen and (max-width: 768px) {
  .p-glossary-section__heading {
    font-size: 20px;
    padding-bottom: 12px;
  }
}

/* --- Term List --- */

.p-glossary-section__list {
  margin-top: 8px;
}

.p-glossary-section__list > li {
  border-bottom: 1px solid #e0e0e0;
}

.p-glossary-section__link {
  display: block;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}

.p-glossary-section__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .p-glossary-section__link {
    padding: 14px 8px;
  }
}
}

@layer page{

.p-single-layout {
  padding-top: 178px;
  padding-bottom: 104px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 1024px) {
  .p-single-layout {
    padding-top: calc(16px + 32px + var(--height-header) * 1px);
    padding-bottom: 80px;
  }
}

.p-single-layout__inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.p-single-layout__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  column-gap: 80px;
}

@media screen and (max-width: 1024px) {
  .p-single-layout__layout {
    grid-template-columns: 1fr 240px;
    column-gap: 32px;
  }
}

@media screen and (max-width: 768px) {
  .p-single-layout__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-single-layout__layout.--nosidebar {
  grid-template-columns: 1fr;
}

.p-single-layout__body {
  min-width: 0;
}

.p-single-layout__aside {
  min-width: 0;
}

.p-single-layout__aside > * {
  position: sticky;
  top: 112px;
}

@media screen and (max-width: 768px) {
  .p-single-layout__aside {
    margin-top: 80px;
  }
}
}

@layer page{

/* ── Single Post / Page : 本文エリア調整 ──────── */

.p-single-post #wp-postbody,
.p-page-post #wp-postbody {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .p-single-post #wp-postbody,
  .p-page-post #wp-postbody {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* H2 全幅ブリード（パディング分のネガティブマージン） */
.p-single-post #wp-postbody h2,
.p-page-post #wp-postbody h2 {
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .p-single-post #wp-postbody h2,
  .p-page-post #wp-postbody h2 {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── TOC Container（プラグイン生成） ──────────── */

#wp-postbody #toc_container {
  margin: 0 0 60px 0;
  padding: 54px 60px;
  width: 100% !important;
  background: #f8f8f9;
  border: none;
  list-style: revert;
}

@media screen and (max-width: 768px) {
  #wp-postbody #toc_container {
    padding: 36px 18px;
  }
}

#wp-postbody #toc_container p.toc_title {
  font-size: 16px;
  color: #1a1714;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
}

#wp-postbody #toc_container p.toc_title .toc_toggle {
  color: #1349c8;
}

#wp-postbody #toc_container ul ul {
  padding-left: 1.5em;
}

#wp-postbody #toc_container span.toc_toggle {
  font-weight: 400;
  font-size: 90%;
}

#wp-postbody #toc_container .toc_list {
  margin-top: 0 !important;
}

#wp-postbody #toc_container .toc_list li {
  margin: 0;
  padding-left: 0;
}

#wp-postbody #toc_container .toc_list li::before {
  display: none;
}

#wp-postbody #toc_container .toc_list li a {
  display: block;
  color: #1349c8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.78;
  border-bottom: 1px solid #ebebed;
  padding-bottom: 3px;
  margin-bottom: 10px;
  text-decoration: none;
}

#wp-postbody #toc_container .toc_list li ul li a {
  font-size: 16px;
  line-height: 2.06;
  font-weight: 400;
  border: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #wp-postbody #toc_container .toc_list li a {
    font-size: 16px;
    line-height: 1.875;
  }
}
}

@layer page{

.p-single-author {
}

.p-single-author__inner {
  border: 1px solid #ceced1;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  padding: 40px 32px;
  border-radius: 10px;
}

.p-single-author__layout {
  display: flex;
  column-gap: 24px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .p-single-author__layout {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}

.p-single-author__avatar {
  flex-shrink: 0;
}

.p-single-author__avatar .-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.p-single-author__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: #363840;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 3px;
}

.p-single-author__name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.4;
}

.p-single-author__description {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 12px;
}

.p-single-author__more {
  margin-top: 16px;
  text-align: right;
}

.p-single-author__link {
  font-size: 15px;
  transition: opacity 0.3s;
  text-decoration: underline;
}

.p-single-author__link:hover {
  opacity: 0.7;
}

.p-single-author__label.--supervisor {
  background: #1349c8;
}

.p-single-author + .p-single-author {
  margin-top: 24px;
}
}

@layer page{

.p-single-cta {
  margin-top: 48px;
}

.p-single-cta__link {
  display: block;
  transition: opacity 0.3s;
}

.p-single-cta__link:hover {
  opacity: 0.8;
}

.p-single-cta__link .-img {
  width: 100%;
  border-radius: 10px;
}
}

@layer page{

.p-single-post__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-single-post__heading {
    font-size: 24px;
  }
}

.p-single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .p-single-post__meta {
    flex-wrap: wrap;
    margin-top: 16px;
  }
}

.p-single-post__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.p-single-post__date {
  font-size: 14px;
  font-family: var(--fontFamily-en);
  margin-left: auto;
  flex-shrink: 0;
}

.p-single-post__thumbnail {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-single-post__thumbnail {
    margin-top: 24px;
  }
}

.p-single-post__thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.p-single-post__body {
  padding-top: 56px;
  padding-bottom: 56px;
}
}

@layer page{

.p-page-post__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-page-post__heading {
    font-size: 22px;
  }
}

.p-page-post__thumbnail {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-page-post__thumbnail {
    margin-top: 24px;
  }
}

.p-page-post__thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.p-page-post__body {
  padding-top: 56px;
  padding-bottom: 56px;
}
}

@layer page{
.p-ebook-layout {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 104px;
  padding-top: 178px;
}
@media screen and (max-width: 1024px) {
  .p-ebook-layout {
    padding-top: 108px;
    padding-bottom: 54px;
  }
}
.p-ebook-layout__inner {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-ebook-layout__logo {
  display: block;
  width: 148px;
}

.p-ebook-layout__label {
  background: #363840;
  color: #fff;
  font-size: 20px;
  padding: 10px 24px;
  width: fit-content;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__label {
    font-size: 16px;
  }
}

.p-ebook-layout__heading {
  font-size: 32px;
  margin-top: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__heading {
    font-size: 22px;
    margin-top: 16px;
  }
}

.p-ebook-layout__thumbnail {
  margin-bottom: 16px;
  float: right;
  width: 270px;
  padding-left: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__thumbnail {
    margin-bottom: 12px;
    float: unset;
    padding-left: unset;
    padding-bottom: unset;
    width: unset;
  }
}
.p-ebook-layout__flex {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .p-ebook-layout__flex {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 16px;
  }
}

.p-ebook-layout__body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-ebook-layout__body .blue_font {
  padding-bottom: unset !important;
}

.p-ebook-layout__body p + p {
  margin-top: 2em;
}

.p-ebook-layout__image {
  margin-top: 24px;
}

.p-ebook-layout__body ul {
  background: #f8f8f9;
  padding: 40px 40px 6px 60px;
  margin: 20px 0 40px;
  clear: both;
}

.p-ebook-layout__body ul li {
  list-style: none;
  font-weight: bold;
  font-size: 20px;
  padding: 0 0 24px 0;
  text-indent: -2em;
}

.p-ebook-layout__body ul li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 16px;
  background: url("../../static/legacy/img/ebook-check.png") no-repeat;
  background-size: contain;
  margin-right: 22px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__body ul {
    padding: 30px 16px 3px 55px;
  }

  .p-ebook-layout__body ul li {
    font-size: 18px;
    text-indent: -3.5em;
    padding: 0 0 16px 0;
  }
}

.p-ebook-layout__form {
  background: #363840;
  color: #fff;
  padding: 40px 24px 20px;
  font-size: 14px;
  width: 320px;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__form {
    width: 100%;
  }
}

.p-ebook-layout__form-label {
  font-size: 14px;
  line-height: 1.5;
  padding: 0 0 24px;
  letter-spacing: 0.04px;
  color: #bebebe;
  display: inline-block;
  width: 100%;
}

.p-ebook-layout__form input {
  height: 40px;
  width: 100%;
  margin: 2px 0 24px;
  color: #444;
}

.p-ebook-layout__form label {
  font-size: 14px;
}

.p-ebook-layout__form select {
  height: 40px;
  width: 100%;
  margin: 2px 0 24px;
  color: #444;
  background-color: #fff;
  padding-left: 10px;
  border-radius: 3px;
}

.p-ebook-layout__form textarea {
  height: 160px;
  width: 100%;
  color: #444;
}

.p-ebook-layout__form button.btn,
.p-ebook-layout__form input[type="submit"] {
  background: #6a88d0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  width: 100%;
  height: 53px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 4px solid #385599;
  margin: 10px 0 0;
  text-shadow: 0 2px 0 rgb(0 0 0 / 30%);
}

.p-ebook-layout__form button.btn:hover,
.p-ebook-layout__form input[type="submit"]:hover {
  opacity: 0.9;
}

/* HubSpot form overrides */

.p-ebook-layout__form .hs-form .hs-form-field label:not(.hs-error-msg) {
  color: #fff;
}

.p-ebook-layout__form .hs-button {
  width: 100%;
}

.p-ebook-layout__form .hs-form-required {
  color: #ff5152;
}

.p-ebook-layout__form label.hs-error-msg {
  font-size: 12px;
  margin-top: -20px;
}

/* Precautions & Policy
 * ========================================================================== */

.p-ebook-layout__precautions ul {
  padding: 0 0 0 16px;
}

.p-ebook-layout__precautions ul li {
  font-size: 10px;
  line-height: 18px;
  padding-top: 16px;
  list-style: disc;
}

.p-ebook-layout__policy {
  font-size: 10px;
  text-align: center;
  padding: 0;
}

.p-ebook-layout__policy a,
.p-ebook-layout__policy a:hover {
  color: #fff;
}

.p-ebook-layout__policy {
  margin-top: 12px;
}

/* Lead text (blue highlight)
 * ========================================================================== */

.p-ebook-layout__lead {
  color: #4473c6;
  font-weight: bold;
}

/* Checklist
 * ========================================================================== */

.p-ebook-layout__checklist {
  background: #f8f8f9;
  padding: 40px 40px 6px 60px;
  margin: 20px 0 40px;
}

.p-ebook-layout__checklist li {
  list-style: none;
  font-weight: bold;
  font-size: 20px;
  padding: 0 0 24px 0;
  text-indent: -2em;
}

.p-ebook-layout__checklist li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 16px;
  background: url("../../static/legacy/img/ebook-check.png") no-repeat;
  background-size: contain;
  margin-right: 22px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__checklist {
    padding: 30px 16px 3px 55px;
  }

  .p-ebook-layout__checklist li {
    font-size: 18px;
    text-indent: -3.5em;
    padding: 0 0 16px 0;
  }
}

.p-ebook-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 32px;
  padding-left: 4%;
  padding-right: 4%;
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .p-ebook-layout__grid {
    column-gap: 16px;
    row-gap: 16px;
    padding-left: unset;
    padding-right: unset;
    margin-top: 24px;
  }
}

.p-ebook-layout__pic {
  border: 2px solid #cccccc;
}
}

@layer page{

/* ==========================================================================
 * Ebook Review
 * 記事のレビュー（Twitter埋め込み）セクション
 * ========================================================================== */

.p-ebook-review {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 104px;
}

@media screen and (max-width: 768px) {
  .p-ebook-review {
    padding-bottom: 54px;
  }
}

.p-ebook-review__inner {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #1da0f2;
}

.p-ebook-review__heading {
  background: #1da0f2;
  color: #fff;
  font-size: 18px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}

.p-ebook-review__list {
  padding: 32px 32px 4px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .p-ebook-review__list {
    grid-template-columns: 1fr;
  }
}

.p-ebook-review__note {
  padding: 0 0 32px 35px;
  font-size: 14px;
}
}

@layer page{

/* ==========================================================================
 * Inquiry Head
 * お問い合わせ — 見出しセクション
 * ========================================================================== */

.p-inquiry-head {
  padding-top: 178px;
  padding-bottom: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 1024px) {
  .p-inquiry-head {
    padding-top: 108px;
  }
}

.p-inquiry-head__inner {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-inquiry-head__title {
  text-align: center;
}

.p-inquiry-head__sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.p-inquiry-head__main {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  margin-top: 8px;
  position: relative;
}

.p-inquiry-head__main::before {
  content: "";
  display: block;
  background: #1a1714;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
}

@layer page{

/* ==========================================================================
 * Inquiry Body
 * お問い合わせ — フォーム本体セクション
 * ========================================================================== */

.p-inquiry-body {
  padding-top: 40px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 1024px) {
  .p-inquiry-body {
    padding-bottom: 54px;
  }
}

.p-inquiry-body__inner {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

/* Notice
 * ========================================================================== */

.p-inquiry-body__notice {
  text-align: center;
  font-size: 15px;
  padding-bottom: 24px;
}

.p-inquiry-body__notice a {
  color: inherit;
  text-decoration: underline;
}

/* HubSpot Form
 * ========================================================================== */

.p-inquiry-body__form {
  padding-bottom: 24px;
}

.p-inquiry-body__form .hbspt-form {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.p-inquiry-body__form .hs_lastname,
.p-inquiry-body__form .hs_firstname,
.p-inquiry-body__form .hs_email,
.p-inquiry-body__form .hs_company,
.p-inquiry-body__form .hs_fd_,
.p-inquiry-body__form .hs_fd____f,
.p-inquiry-body__form .hs_f_d {
  display: flex;
  margin-bottom: 2em;
}

.p-inquiry-body__form .hbspt-form label {
  width: 260px;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  padding-right: 16px;
  line-height: 1.6;
  align-items: center;
}

.p-inquiry-body__form .hbspt-form .input input,
.p-inquiry-body__form .hbspt-form select {
  width: 360px;
  position: relative;
}

.p-inquiry-body__form .hbspt-form textarea {
  width: 500px;
  min-height: 300px;
}

/* HubSpot submit button */

.p-inquiry-body__form .hs-button {
  background-color: #494c53;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
  padding: 47px;
  width: 100%;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p-inquiry-body__form .hs-button:hover {
  background-color: #8a8a90;
}

/* Responsive
 * ========================================================================== */

@media screen and (max-width: 840px) {
  .p-inquiry-body__form .hbspt-form textarea {
    width: 360px;
    min-height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .p-inquiry-body__form .hs_lastname,
  .p-inquiry-body__form .hs_firstname,
  .p-inquiry-body__form .hs_email,
  .p-inquiry-body__form .hs_company,
  .p-inquiry-body__form .hs_fd_,
  .p-inquiry-body__form .hs_fd____f,
  .p-inquiry-body__form .hs_f_d {
    display: initial;
  }

  .p-inquiry-body__form .hbspt-form textarea,
  .p-inquiry-body__form .hbspt-form .input input,
  .p-inquiry-body__form .hbspt-form select {
    width: 100%;
  }

  .p-inquiry-body__form .hbspt-form label {
    font-size: 12px;
    text-align: left;
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .p-inquiry-body__form .hs-button {
    font-size: 16px;
    padding: 27px 0;
  }
}
}

@layer page{

/* ==========================================================================
 * Useful Resource - Hero Section
 * ========================================================================== */

.p-useful-hero {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background: url("../../static/legacy/img/useful-rerource-sec01-img01.png")
    no-repeat center center;
  background-size: cover;
  color: #fff;
  margin-top: 128px;
}

@media screen and (max-width: 768px) {
  .p-useful-hero {
    margin-top: 86px;
  }
}

.p-useful-hero__overlay {
  background-repeat: repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-image:
    radial-gradient(#000000 2%, transparent 22%),
    radial-gradient(#000000 2%, transparent 22%);
  background-position:
    0 0,
    2px 2px;
  background-size: 4px 4px;
}

.p-useful-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-useful-hero__inner {
    margin: 0 16px;
    padding: 45px 0;
  }
}

.p-useful-hero__heading {
  margin-bottom: 65px;
  position: relative;
  text-align: center;
  font-size: 40px;
  line-height: 36px;
}

@media screen and (max-width: 768px) {
  .p-useful-hero__heading {
    margin-bottom: 30px;
    font-size: 25px;
  }
}

.p-useful-hero__lead {
  margin: auto;
  padding-bottom: 50px;
  max-width: 850px;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-useful-hero__lead {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
}

@layer page{

/* ==========================================================================
 * Useful Resource - Body Section (Resource List)
 * ========================================================================== */

.p-useful-body {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  padding: 80px 0;
  overflow: hidden;
  background-color: #eeeef0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-useful-body {
    padding: 55px 0 60px;
  }
}

.p-useful-body__inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-useful-body__inner {
    margin: 0 16px;
  }
}

.p-useful-body__title {
  max-width: 850px;
  font-size: 25px;
  margin: 0 auto 20px;
  padding: 5px 10px;
  background: transparent;
  border-left: solid 5px #002f5c;
}

@media screen and (max-width: 768px) {
  .p-useful-body__title {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.p-useful-body__item {
  margin: 0 auto 100px;
  max-width: 900px;
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item {
    max-width: 100%;
    flex-direction: column;
    margin-bottom: 60px;
  }
}

.p-useful-body__item-img {
  margin-left: 50px;
  width: 20%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item-img {
    width: 40%;
    margin: 0 auto;
  }
}

.p-useful-body__item-detail {
  padding-left: 40px;
  width: 620px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item-detail {
    padding: 0 15px;
    width: 100%;
  }
}

.p-useful-body__item-text {
  margin: 10px 0 0 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item-text {
    font-size: 13px;
    margin: 10px 0 30px 0;
  }
}

.p-useful-body__item-button {
  display: inline-block;
  margin: auto;
  margin-right: 10px;
  margin-bottom: 20px;
  padding-top: 1em;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item-button {
    margin: auto;
  }
}

.p-useful-body__item-button a {
  display: block;
  background-color: #002f5c;
  padding: 10px 50px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .p-useful-body__item-button a {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: normal;
  }
}

.p-useful-body__item-button a:hover {
  background-color: #0059accc;
}
}

@layer page{

/* ==========================================================================
 * Useful Resource - CTA Section
 * ========================================================================== */

.p-useful-cta {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background: url("../../static/legacy/img/common-cta-img01.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
}

.p-useful-cta__overlay {
  background-repeat: repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(#000000 2%, transparent 22%),
    radial-gradient(#000000 2%, transparent 22%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

.p-useful-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-useful-cta__inner {
    margin: 0 16px;
  }
}

.p-useful-cta__heading {
  padding-top: 80px;
  margin-bottom: 65px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-useful-cta__heading {
    margin-bottom: 26px;
    font-size: 20px;
  }
}

.p-useful-cta__actions {
  text-align: center;
  padding-bottom: 80px;
}

.p-useful-cta__button {
  display: block;
  margin: auto;
  width: 270px;
  padding: 12px;
  font-size: 20px;
  color: #1a1714;
  background-color: #d3d3d3;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .p-useful-cta__button {
    width: 200px;
    font-size: 16px;
  }
}

.p-useful-cta__button:hover {
  cursor: pointer;
  text-decoration: none;
}

.p-useful-cta__button-icon {
  display: inline-block;
  text-decoration: none;
  transition: transform ease 0.3s;
}

.p-useful-cta__button:hover .p-useful-cta__button-icon {
  cursor: pointer;
  text-decoration: none;
  transform: translateX(8px);
}

.p-useful-cta__link {
  display: block;
  margin: auto;
  padding-top: 30px;
  font-size: 15px;
  color: #fff;
}

.p-useful-cta__link-text {
  border-bottom: solid 1px;
}
}

@layer javascript{
/* JavaScript アニメーション用スタイル */
}

@layer utility{

.u-visually-hidden {
  border: 0 !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}
.u-md-visible {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-visible {
    display: revert;
  }
}
@media screen and (max-width: 1024px) {
  .u-lg-hidden {
    display: none;
  }
}
.u-lg-visible {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-visible {
    display: revert;
  }
}

@media screen and (max-width: 1280px) {
  .u-xl-hidden {
    display: none;
  }
}
.u-xl-visible {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-xl-visible {
    display: revert;
  }
}

.u-ib {
  display: inline-block;
}
}
