@charset "UTF-8";
/* font-weight */
/* --------------------------------------------------------------------- */
/* フォントサイズ一括指定（font-size,line-height,letter-spacing）  */
/* ※フォントサイズ小さくなりすぎ対応 14px未満は、font-sizeのpx指定を確認する  */
/* --------------------------------------------------------------------- */
body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #2F2931;
  background-color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    letter-spacing: 0.4px;
  }
}

main {
  min-height: 100vh;
  /* 画面の高さを最低限確保 */
}

html {
  scroll-padding-top: 50px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 140px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :root:has(:target):not(:has(:focus-visible)) {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9756097561vw;
  }
}
@media (min-width: 1640px) {
  html {
    font-size: 100%;
  }
}

/* =============================================
// PCでは電話番号のクリックを無効にする
============================================= */
a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a,
button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}
/* マウス・タップ時は表示しない */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* キーボード操作時のみ表示 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: auto 1px -webkit-focus-ring-color;
  outline-offset: 2px;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

textarea {
  resize: vertical;
}

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

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1640px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* utility */
.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-t12 {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .u-t12 {
    font-size: 14px;
  }
}

/* component */
/* =============================================
ハンバーガー🍔メニュー
============================================= */
.c-hamburger {
  position: fixed;
  z-index: 9000;
  top: 17px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__line {
  background-color: #2F2931;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  height: 1px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/* ===========================
初期位置（必須）
=========================== */
.c-hamburger__line:nth-of-type(1) {
  top: 0;
}

.c-hamburger__line:nth-of-type(2) {
  top: 10px;
}

.c-hamburger__line:nth-of-type(3) {
  top: 20px;
}

/* ===========================
開くアニメ（上に吸い寄せ → X）
=========================== */
.c-hamburger.-active .c-hamburger__line:nth-of-type(1) {
  -webkit-animation: hb-active-bar01 0.45s forwards;
          animation: hb-active-bar01 0.45s forwards;
}

@-webkit-keyframes hb-active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  /* ← 位置そのまま！ */
}

@keyframes hb-active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  /* ← 位置そのまま！ */
}
.c-hamburger.-active .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.-active .c-hamburger__line:nth-of-type(3) {
  -webkit-animation: hb-active-bar03 0.45s forwards;
          animation: hb-active-bar03 0.45s forwards;
}

@-webkit-keyframes hb-active-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  /* ← 上に吸い寄せる！ */
  100% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
}

@keyframes hb-active-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  /* ← 上に吸い寄せる！ */
  100% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
}
/* アクティブ時の線の色 */
.c-hamburger.-active .c-hamburger__line {
  background-color: #fff;
}

/* =============================================
閉じるアニメ（-active解除時にだけ動く）
→ 通常状態には animation を書かない！！
============================================= */
.c-hamburger.close .c-hamburger__line:nth-of-type(1) {
  -webkit-animation: hb-bar01 0.35s forwards;
          animation: hb-bar01 0.35s forwards;
}

@-webkit-keyframes hb-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes hb-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
.c-hamburger.close .c-hamburger__line:nth-of-type(2) {
  opacity: 1;
}

.c-hamburger.close .c-hamburger__line:nth-of-type(3) {
  -webkit-animation: hb-bar03 0.35s forwards;
          animation: hb-bar03 0.35s forwards;
}

@-webkit-keyframes hb-bar03 {
  0% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes hb-bar03 {
  0% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
/* =============================================
pc用ハンバーガーボタン
============================================= */
/* ========== PC専用（SPと完全に別物） ========== */
.c-hamburger--pc {
  display: none;
  position: fixed;
  z-index: 7000;
  top: 55px;
  right: 2.0625rem;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-hamburger--pc {
    display: block;
  }
}

/* PC用の3本線（SPとは完全別） */
.c-hamburger__pcLine {
  background-color: #2F2931;
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* 初期位置（3本線） */
.c-hamburger__pcLine:nth-of-type(1) {
  top: 0;
}

.c-hamburger__pcLine:nth-of-type(2) {
  top: 10px;
}

.c-hamburger__pcLine:nth-of-type(3) {
  top: 20px;
}

/* ========== 初期：バツ ========== */
.c-hamburger--pc.c-pc-init .c-hamburger__pcLine:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.c-hamburger--pc.c-pc-init .c-hamburger__pcLine:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger--pc.c-pc-init .c-hamburger__pcLine:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

/* ========== メニュー閉じる（ハンバーガーに戻る） ========== */
.c-hamburger--pc.-active .c-hamburger__pcLine:nth-of-type(1) {
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
}

.c-hamburger--pc.-active .c-hamburger__pcLine:nth-of-type(2) {
  opacity: 1;
}

.c-hamburger--pc.-active .c-hamburger__pcLine:nth-of-type(3) {
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
}

/* PCナビの表示制御 */
@media (min-width: 768px) {
  #pcMegaMenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  }
  /* 非表示にする時（-active） */
  #pcMegaMenu.-active {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    /* ← 上にふわっと戻って消える */
  }
}
/* PC専用ハンバーガー：初期はバツ */
.c-hamburger--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-hamburger--pc {
    display: block;
  }
}

/* =============================================
ドロワーメニュー
============================================= */
.p-drawer-menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.3s ease;
  transition: visibility 0s, opacity 0.3s ease;
  top: 0;
  right: 0;
  width: 75%;
  height: 100vh;
  z-index: 5000;
  background-color: #2F2931;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.3s ease;
  transition: transform 0.35s ease, opacity 0.3s ease, -webkit-transform 0.35s ease;
}

/* ドロワーメニューアクティブ時 */
.p-drawer-menu.-active {
  visibility: visible;
  opacity: 1;
  /* スライドイン */
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer-menu__inner {
  padding: 62px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-drawer-menu__list {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-drawer-menu__item {
  padding: 10px 0;
}
.p-drawer-menu__item:not(:first-child) {
  border-top: 1px solid #fff;
}

.p-drawer-menu__link {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.c-navList__link-en,
.p-header__link-en {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-navList__link-en,
  .p-header__link-en {
    letter-spacing: 0.05em;
    font-size: 16px;
  }
}

.c-navList__link-ja,
.p-header__link-ja {
  font-size: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.c-navList__subList {
  margin-top: 14px;
  margin-bottom: 20px;
}
.c-navList__subList li {
  padding-left: 10px;
  border-left: 1px solid #E0774B;
}
.c-navList__subList li:not(:first-child) {
  margin-top: 14px;
}
.c-navList__subList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-navList__subList .c-navList__link-ja {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}
.c-navList__subList .c-navList__link-en {
  text-transform: none;
}

.c-jigyou-title {
  font-size: 12px;
  color: #2F2931;
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-jigyou-title {
    font-size: 18px;
  }
}

.c-jigyou-title.c-jigyou-title--white {
  color: #fff;
}

.c-jigyou-title::before {
  content: "";
  display: block;
  font-size: 2.25rem;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.3888888889;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-jigyou-title::before {
    font-size: 4.5rem;
    letter-spacing: -0.07em;
  }
}

/* =============================================
英語文字を変える
============================================= */
.c-works-card__01.c-jigyou-title::before,
.p-promotion__title.c-jigyou-title::before {
  content: "Promotion";
}

.c-works-card__02.c-jigyou-title::before,
.p-finance__title.c-jigyou-title::before {
  content: "Finance";
}

.c-works-card__03.c-jigyou-title::before,
.p-ai__title.c-jigyou-title::before {
  content: "AI ";
}

.c-works-card__04.c-jigyou-title::before,
.p-education__title.c-jigyou-title::before {
  letter-spacing: -0.06em;
  content: "Education Program";
}
@media screen and (min-width: 768px) {
  .c-works-card__04.c-jigyou-title::before,
  .p-education__title.c-jigyou-title::before {
    font-size: 4.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-education__title::before {
    font-size: 4.125rem;
    color: #2F2931;
  }
}

/* =============================================
ページタイトル
============================================= */
.c-page-title {
  text-align: center;
}

.c-page-title span {
  font-size: clamp(0.625rem, 0.027rem + 2.551vi, 1.25rem);
  color: #2F2931;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-page-title span {
    font-size: 14px;
  }
}

.c-page-title::before {
  display: block;
  color: #2F2931;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  font-size: clamp(1.25rem, 0.054rem + 5.102vi, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-page-title::before {
    font-size: 32px;
  }
}

/* =============================================
ページごとに英語文字を変える
============================================= */
.p-topics__title.c-page-title::before {
  content: "TOPICS";
}

.p-about__title.c-page-title::before {
  content: "ABOUT";
}

.p-privacy-policy__title.c-page-title::before {
  content: "PRIVACY POLICY";
}

.p-contact__title.c-page-title::before {
  content: "CONTACT";
}

.p-woks__title.c-page-title::before,
.p-top-works__title.c-page-title::before,
.c-works__title.c-page-title::before {
  content: "WORKS";
}

.p-creatives__title.c-page-title::before,
.p-top-creatives__title.c-page-title::before {
  content: "CREATIVES";
}

@media screen and (min-width: 768px) {
  .sub .c-page-title span {
    font-size: 20px;
  }
}
.sub .c-page-title::before {
  font-size: clamp(1.25rem, 0.473rem + 3.316vi, 2.063rem);
}
@media screen and (min-width: 768px) {
  .sub .c-page-title::before {
    font-size: 4.5rem;
    line-height: 1.4583333333;
    letter-spacing: 0.08em;
  }
}
.sub .c-jigyou-title {
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sub .c-jigyou-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .sub .c-jigyou-title span {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.sub .c-jigyou-title::before {
  color: #2F2931;
}
@media screen and (min-width: 768px) {
  .sub .c-jigyou-title::before {
    font-size: 4.125rem;
    letter-spacing: -0.06em;
  }
}
.sub .c-jigyou-title span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #E0774B;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .sub .c-jigyou-title span::after {
    height: 4px;
  }
}
@media screen and (min-width: 959px) {
  .sub .c-jigyou-title span::after {
    width: 29.375rem;
    height: 4px;
  }
}
@media screen and (min-width: 1800px) {
  .sub .c-jigyou-title span::after {
    width: 31.25rem;
  }
}

/* =============================================
投稿詳細ページ:ページ送り
============================================= */
.c-page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-page-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125rem;
  }
}

.c-page-nav__next-wrap {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-page-nav__next-wrap {
    max-width: 20.9375rem;
    width: 100%;
    padding-right: 0.9375rem;
  }
}

.c-page-nav__prev-wrap {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-page-nav__prev-wrap {
    max-width: 20.9375rem;
    width: 100%;
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-left: 0.9375rem;
  }
}

.c-page-nav__prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 次の記事へのリンクの矢印を左側に配置 */
.c-page-nav__next::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  /* 矢印の向きを左に変更 */
  border-width: 5.5px 11px 5.5px 0;
  border-color: transparent #333 transparent transparent;
  margin-right: 5px;
  /* テキストの右側に矢印を配置 */
}

/* 前の記事へのリンクの矢印を右側に配置 */
.c-page-nav__prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  /* 矢印の向きを右に変更 */
  border-width: 5.5px 0 5.5px 11px;
  border-color: transparent transparent transparent #333;
  margin-left: 5px;
  /* テキストの左側に矢印を配置 */
}

.c-page-nav__next-box,
.c-page-nav__prev-box {
  margin-top: 0.625rem;
  background-color: #fff;
  padding: 1rem 1.5625rem;
  cursor: pointer;
  position: relative;
}

.c-page-nav__title {
  font-size: 14px;
  margin-top: 0.3125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.c-page-nav__prev-box .c-news-meta {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-page-nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* project */
/* =============================================
共通
============================================= */
.fixed-logo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../images/bg_01.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  z-index: 0;
  height: clamp(37.063rem, 0.963rem + 154.026vi, 74.125rem);
}
@media screen and (min-width: 600px) {
  .fixed-logo-bg {
    top: -15%;
  }
}
@media screen and (min-width: 768px) {
  .fixed-logo-bg {
    top: 0;
    left: -22%;
    z-index: -1;
    width: 89.625rem;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    background-position: center;
  }
}
@media screen and (min-width: 959px) {
  .fixed-logo-bg {
    height: 100vh;
    left: -30%;
  }
}
@media screen and (min-width: 1024px) {
  .fixed-logo-bg {
    left: -25%;
  }
}
@media screen and (min-width: 1400px) {
  .fixed-logo-bg {
    left: -17%;
  }
}

.overlay {
  position: relative;
}

.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2;
  /* ロゴより上、内容より下にする */
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .overlay::after {
    content: none;
  }
}

.fixed-logo p {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .fixed-logo p {
    font-size: 50px;
  }
}
@media screen and (min-width: 959px) {
  .fixed-logo p {
    font-size: 6.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .fixed-logo p {
    font-size: 7.5rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
}

.fixed-logo {
  position: fixed;
  top: 50px;
  z-index: -1;
  left: 15px;
  /* ロゴは最下層 */
}
@media screen and (min-width: 768px) {
  .fixed-logo {
    top: 138px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    /* ← これが重要！ */
    z-index: 2000;
    left: -0.75rem;
  }
}

.page-main {
  position: relative;
  z-index: 100;
  padding-top: 170px;
}
@media screen and (min-width: 768px) {
  .page-main {
    z-index: auto;
    padding-top: 140px;
  }
}

.c-bg-wh {
  z-index: 2500;
  position: relative;
  background-color: #fff;
}

.sub-page .fixed-logo {
  position: fixed;
  top: 50px;
  z-index: -1;
  left: 15px;
  /* ロゴなし */
}
@media screen and (min-width: 768px) {
  .sub-page .fixed-logo {
    display: none;
  }
}
.sub-page .fixed-logo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../images/bg_01.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  z-index: 0;
  height: clamp(37.063rem, 0.963rem + 154.026vi, 74.125rem);
}
@media screen and (min-width: 600px) {
  .sub-page .fixed-logo-bg {
    top: -15%;
  }
}
@media screen and (min-width: 768px) {
  .sub-page .fixed-logo-bg {
    background-image: url("../images/bg_02.png");
    top: 0;
    left: -22%;
    z-index: -1;
    width: 89.625rem;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    background-position: center;
  }
}
@media screen and (min-width: 959px) {
  .sub-page .fixed-logo-bg {
    height: 100vh;
    left: -30%;
  }
}
@media screen and (min-width: 1024px) {
  .sub-page .fixed-logo-bg {
    left: -25%;
  }
}
@media screen and (min-width: 1400px) {
  .sub-page .fixed-logo-bg {
    left: -17%;
  }
}

.sub {
  position: relative;
  z-index: 100;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .sub {
    z-index: auto;
    padding-top: 140px;
  }
}
.sub .c-page-title {
  text-align: left;
}

@media screen and (min-width: 768px) {
  body.blog .fixed-logo-bg,
  body.single .fixed-logo-bg {
    display: none;
  }
}

.c-inner {
  padding: 0 5.5%;
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (min-width: 1400px) {
  .c-inner {
    padding: 0 1.5625rem;
  }
}

/* =============================================
下層4ページ事業領域c-works
============================================= */
@media screen and (min-width: 768px) {
  .sub .p-education .c-inner.c-works__inner {
    margin-bottom: 11.875rem;
  }
}

.c-works .c-inner.c-works__inner {
  padding: 0 5.5%;
  max-width: 1080px;
  padding-bottom: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .c-works .c-inner.c-works__inner {
    background: #fff;
    padding-top: 0;
    padding-bottom: 3.125rem;
    margin-bottom: 8.75rem;
  }
}
@media screen and (min-width: 1400px) {
  .c-works .c-inner.c-works__inner {
    padding-right: 3.4375rem;
    padding-left: 1.5625rem;
  }
}
.c-works .c-works__visual {
  margin-top: 3.125rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.c-works .c-works__visual picture {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-works .c-works__visual {
    margin-top: -40px;
    width: auto;
    margin-left: 0;
    width: 50%;
    max-width: 54rem;
    position: absolute;
    right: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-works .c-works__visual {
    margin-top: 10px;
  }
}
.c-works .c-works__visual img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-works .c-works__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-works .c-works__content {
    margin-top: 11.5625rem;
    padding-left: 1.875rem;
  }
}
.c-works .c-works__content .c-works__content__head {
  font-size: clamp(0.75rem, 0.272rem + 2.041vi, 1.25rem);
  color: #2F2931;
  line-height: 2;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-works .c-works__content .c-works__content__head {
    font-size: 16px;
    margin-top: 2.5rem;
    max-width: 480px;
    line-height: 1.5;
  }
}

.c-works__animationBox {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-works__animationBox {
    margin-top: 5.75rem;
    padding-left: 2.8125rem;
  }
}
.c-works__animationBox p {
  font-size: clamp(0.731rem, 0.718rem + 0.067vi, 0.75rem);
  letter-spacing: 0;
  color: #fff;
  background-color: #2F2931;
  padding: 0.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  z-index: 2;
}
@media screen and (min-width: 430px) {
  .c-works__animationBox p {
    font-size: clamp(0.75rem, 0.272rem + 2.041vi, 1.25rem);
  }
}
@media screen and (min-width: 768px) {
  .c-works__animationBox p {
    font-size: 18px;
    padding: 6px 0.9375rem;
    letter-spacing: 0.24em;
  }
}
@media screen and (min-width: 1024px) {
  .c-works__animationBox p {
    font-size: 24px;
  }
}
.c-works__animationBox p::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2F2931;
  z-index: 1;
  clip-path: inset(0 0 0 0);
}
.c-works__animationBox p.is-animated {
  -webkit-animation: clip-text 0.5s ease-in-out forwards;
          animation: clip-text 0.5s ease-in-out forwards;
}
.c-works__animationBox p.is-animated::before {
  -webkit-animation: clip-over 0.5s ease-in-out forwards;
          animation: clip-over 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-works__animationBox p:not(:first-child) {
  margin-top: 0.9375rem;
}

@-webkit-keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes clip-over {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes clip-over {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
/* =============================================
ai事業/promotion事業共通
============================================= */
.c-solution {
  position: relative;
}

.c-solution li {
  padding: 50px 5.5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-solution li {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .c-solution li:not(:first-child) {
    margin-top: 10rem;
  }
}

.c-solution__item {
  background: rgba(255, 255, 255, 0.95);
  padding: 22px 15px 25px 15px;
}

@media screen and (min-width: 768px) {
  .c-solution li:nth-child(odd) .c-solution__item {
    padding: 0;
    width: 100%;
    color: #fff;
    background-color: #2F2931;
    width: 51.875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.c-solution li:nth-child(odd) .c-solution__itemInner {
  display: contents;
}
@media screen and (min-width: 768px) {
  .c-solution li:nth-child(odd) .c-solution__itemInner {
    display: block;
    padding: 4.375rem 3.4375rem 3.125rem 3.4375rem;
  }
}
@media screen and (min-width: 959px) {
  .c-solution li:nth-child(odd) .c-solution__itemInner {
    padding: 4.375rem 3.4375rem 3.125rem 11.25rem;
    max-width: 49.6875rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-solution li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-solution li:nth-child(even) .c-solution__item {
    padding: 0;
    width: 100%;
    width: 58.75rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.c-solution li:nth-child(even) .c-solution__itemInner {
  display: contents;
}
@media screen and (min-width: 768px) {
  .c-solution li:nth-child(even) .c-solution__itemInner {
    display: block;
    padding: 4.375rem 4.0625rem 3.125rem 3.125rem;
  }
}
@media screen and (min-width: 959px) {
  .c-solution li:nth-child(even) .c-solution__itemInner {
    max-width: 49.6875rem;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-solution__visual {
    width: 50%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1400px) {
  .c-solution__visual {
    width: auto;
  }
}
.c-solution__visual img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-solution__numberBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-solution__numberBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.c-solution__number {
  font-size: clamp(1.875rem, 0.081rem + 7.653vi, 3.75rem);
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  font-family: YakuHanJP, "Jost", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-solution__number {
    font-size: 8.125rem;
  }
}

.c-solution__itemTitle {
  font-size: clamp(1.25rem, 0.054rem + 5.102vi, 2.5rem);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-solution__itemTitle {
    font-size: 2.75rem;
  }
}

.c-solution__itemText {
  margin-top: 11px;
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-solution__itemText {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 3.375rem;
  }
}

/*----------------------------------
各セクションふわっと表示させる
-----------------------------------*/
/* セクション共通クラスJS用 */
/* 共通クラスのスタイル */
.c-sections {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, transform 0.7s;
  transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

.c-sections.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-sub-fade {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-animation: subFadeLeft 0.7s ease forwards;
          animation: subFadeLeft 0.7s ease forwards;
}

@-webkit-keyframes subFadeLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes subFadeLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* =============================================
header
============================================= */
.p-header {
  -webkit-box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 6000;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    -webkit-box-shadow: none;
            box-shadow: none;
    height: 140px;
    background-color: transparent;
  }
}

.p-header__inner {
  padding: 0.8125rem 1.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 20px 5.5rem 20px 6.25rem;
  }
}

.p-header__nav {
  height: inherit;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    margin-left: auto;
    display: block;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__list {
    padding-right: 10px;
  }
}

.p-header__item {
  height: inherit;
}

@media screen and (min-width: 768px) {
  .p-header__item:not(:first-child) {
    margin-left: 1.6875rem;
  }
}

.p-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ホバー時下線スタイル */
.p-logo a:hover {
  opacity: 1;
}

.p-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-logo img {
    width: 12.8125rem;
    height: auto;
    padding-top: 0.9375rem;
  }
}

/* -------------------------------------------------------
   PCヘッダー WORKS メガメニュー
------------------------------------------------------- */
/* 親を基準点にする */
.p-hasMega {
  position: relative;
}

/* メガメニュー */
.p-megaMenu {
  display: none;
  position: absolute;
  top: 63%;
  left: 0;
  z-index: 3000;
  width: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* WORKS にホバーしたら表示 */
.p-hasMega:hover .p-megaMenu {
  display: block;
}

/* キーボード操作（Tab）でも開く */
.p-hasMega:focus-within .p-megaMenu {
  display: block;
}

.p-megaMenu .c-navList__subList {
  margin: 0;
}
.p-megaMenu .c-navList__subList li {
  padding-left: 0;
  border-left: none;
  border-bottom: 1px solid #2F2931;
  padding-bottom: 5px;
  margin-top: 0;
  padding-top: 5px;
}

/* =============================================
top-news
============================================= */
.p-top-news {
  padding-top: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 9.375rem;
  }
}

.p-top-news__inner.l-inner {
  max-width: 61.875rem;
  width: 100%;
}

.p-top-news__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 1.25rem;
}
@media screen and (min-width: 959px) {
  .p-top-news__title {
    text-align: center;
    padding-left: 0;
  }
}

.p-top-news__title.c-section-title::after {
  content: "news";
  text-align: right;
}
@media screen and (min-width: 959px) {
  .p-top-news__title.c-section-title::after {
    text-align: center;
  }
}

.p-top-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 959px) {
  .p-top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-news__list {
  max-width: 700px;
  width: 100%;
}

.p-top-news__btn {
  margin-top: 1.75rem;
}
@media screen and (min-width: 959px) {
  .p-top-news__btn {
    margin-top: 1.25rem;
  }
}

/* =============================================
topページ
============================================= */
/*=====================================
  p-mv（ファーストビュー）
=====================================*/
.p-mv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/8.5;
}
@media screen and (min-width: 768px) {
  .p-mv {
    width: 78%;
    margin-left: auto;
    height: 59.375rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-mv {
    width: 80%;
  }
}

.p-mv__inner {
  position: relative;
  padding: 24px 30px;
  width: 100%;
  height: 100%;
}

.p-mv__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv__lead {
    gap: 20px;
    position: relative;
    left: -10.3125rem;
  }
}
.p-mv__lead span {
  font-size: clamp(1.5rem, 0.25rem + 5.333vi, 2.25rem);
  line-height: 1.4583333333;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-mv__lead span {
    padding: 0 3.9375rem 0 1.5625rem;
    min-height: 7.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #2F2931;
    background: #fff;
    font-size: 6.25rem;
    line-height: 1;
  }
}

.p-mv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: clamp(0.75rem, 0.333rem + 1.778vi, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2F2931;
}
@media screen and (min-width: 768px) {
  .p-mv__heading {
    gap: 20px;
    font-size: 24px;
    line-height: 1.4583333333;
    position: relative;
    left: -6.875rem;
  }
}
.p-mv__heading span {
  padding: 6px 10px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mv__heading span {
    padding: 6px 17px;
  }
}

.p-mv__set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__set {
    z-index: 1;
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    gap: 4.1875rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-mv__set {
    top: 64%;
  }
}

/*=====================================
  c-videoBg（動画背景コンポーネント）
=====================================*/
.c-videoBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* =============================================
事例紹介swiper
============================================= */
.c-bg-wh {
  background: #fff;
  background-color: #fff;
}

.p-top-wh {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-top-wh {
    padding-top: 4.375rem;
  }
}

.p-topics {
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-topics {
    padding-bottom: 12.5rem;
  }
}

.p-topics__inner,
.p-top-creatives__inner {
  max-width: 894px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topics__inner,
  .p-top-creatives__inner {
    padding: 0 20px;
  }
}

.p-caseSwiper {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper {
    margin-top: 54px;
  }
}

@media screen and (min-width: 768px) {
  .p-caseSwiper__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}

.p-caseSwiper__imgWrapper {
  aspect-ratio: 300/175;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper__imgWrapper {
    aspect-ratio: 278/164;
  }
}

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

.p-caseSwiper__title {
  font-size: 15px;
  line-height: 1.4666666667;
  margin-top: 10px;
  font-weight: 700;
}

.p-caseSwiper__date {
  display: block;
  font-size: 12px;
  color: #999999;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper__date {
    margin-top: 5px;
  }
}

.p-caseSwiper__slide {
  width: 82%;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper__slide {
    width: 100%;
  }
}

.p-caseSwiper .swiper-scrollbar {
  position: relative;
  height: 2px;
  /* 背景バーの色 */
  border-radius: 2px;
  margin-top: 25px;
  overflow: hidden;
  background-color: #dadada;
  width: 80%;
  margin-inline: auto;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper .swiper-scrollbar {
    display: none;
  }
}

.p-caseSwiper .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
}

/* 中を動くバー部分 */
.swiper-scrollbar-drag {
  background-color: #999999;
  height: 100%;
  border-radius: 2px;
  height: 2px;
}

/* トピックスの方ではpcの時4つ目以降は表示しない */
@media screen and (min-width: 768px) {
  .swiper.swiper-3col {
    /* PCでは4件目以降を非表示にする */
  }
  .swiper.swiper-3col .p-caseSwiper__slide:nth-child(n+4) {
    display: none;
  }
}

.p-caseSwiper__empty,
.p-creatives__empty {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-caseSwiper__empty,
  .p-creatives__empty {
    font-size: 16px;
  }
}

/*----------------------------------
事業紹介
-----------------------------------*/
.p-top-works__list {
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .p-top-works__list {
    margin-top: 70px;
  }
}

.p-top-works__list li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-works__list li {
    max-width: 93.75rem;
  }
}
.p-top-works__list li:not(:first-child) {
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .p-top-works__list li:not(:first-child) {
    margin-top: 166px;
  }
}

@media screen and (min-width: 768px) {
  .p-top-works__list li:nth-child(odd) {
    margin-left: auto;
  }
}

.p-top-works__list li:nth-child(odd) .p-top-works__img {
  margin-left: auto;
  padding-left: 13%;
}
@media screen and (min-width: 768px) {
  .p-top-works__list li:nth-child(odd) .p-top-works__img {
    padding-left: 0;
  }
}

.p-top-works__list li:nth-child(even) .p-top-works__img {
  margin-right: auto;
  padding-right: 13%;
}
@media screen and (min-width: 768px) {
  .p-top-works__list li:nth-child(even) .p-top-works__img {
    padding-right: 0;
  }
}

.p-top-works__list li:nth-child(even) .p-top-works__body {
  right: 0;
}

.p-top-works__list li:nth-child(odd) .p-top-works__body {
  left: 1.5625rem;
}
@media screen and (min-width: 959px) {
  .p-top-works__list li:nth-child(odd) .p-top-works__body {
    left: 0;
  }
}

.p-top-works__body {
  position: absolute;
  padding: 20px 25px;
  background-color: #2F2931;
  color: #fff;
  min-width: 270px;
  max-width: 540px;
  z-index: 10;
  top: -50px;
}
@media screen and (min-width: 768px) {
  .p-top-works__body {
    padding: 2.5rem 3.125rem 3.75rem 3.125rem;
    top: -25px;
    min-width: 33.75rem;
  }
}

.p-top-works__img {
  max-width: 650px;
}
@media screen and (min-width: 768px) {
  .p-top-works__img {
    max-width: 79.625rem;
  }
}

.p-top-works__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works__link-text {
  font-size: 15px;
  font-family: YakuHanJP, "Oswald", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-works__link-text {
    font-size: 26px;
  }
}

.p-top-works__view {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  opacity: 1;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-works__view {
    margin-top: 5.625rem;
    gap: 3.75rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff;
  }
}

/* 矢印のスタイル */
.c-linkArrow {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 1px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-linkArrow {
    width: 26px;
    height: 2px;
  }
}
.c-linkArrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-linkArrow::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* ホバーで右にスライド */
a.c-hoverRun:hover .c-linkArrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* ホバー時に矢印だけ右に動く */
a.c-hoverRun:hover .c-linkArrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* =============================================
事例紹介
============================================= */
.p-top-creatives {
  margin-top: -1px;
  padding-top: 5.25rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-creatives {
    padding-top: 12.5rem;
    padding-bottom: 11.4375rem;
    background: #fff;
    position: relative;
    z-index: 2500;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-creatives {
    z-index: 100;
  }
}

/* ===========================
ボタン2border
===========================*/
.c-parts-button2 {
  margin-top: 22px;
  text-align: center;
  width: 100%;
  background: #2F2931;
  color: #fff;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-parts-button2 {
    margin-top: 35px;
  }
}

/* aタグ本体 */
.c-parts-button2 a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding: 11px 66px 11px 52px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-parts-button2 a {
    padding: 16px 127px 16px 103px;
    font-size: 16px;
  }
}

.c-parts-button2 a:before,
.c-parts-button2 a:after {
  position: absolute;
  top: 56%;
  right: 20px;
  height: 1px;
  stroke-width: 1px;
  background-color: #fff;
  content: "";
  margin-left: 3px;
}
@media screen and (min-width: 768px) {
  .c-parts-button2 a:before,
  .c-parts-button2 a:after {
    right: 65px;
  }
}

.c-parts-button2 a:before {
  width: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-parts-button2 a:before {
    width: 36px;
  }
}

/* 斜め線 */
.c-parts-button2 a:after {
  width: 7px;
  -webkit-transform: translateY(-50%) rotate(37deg);
          transform: translateY(-50%) rotate(37deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
/* ホバー時：矢印だけ右に動かす */
.c-parts-button2 a:hover::before {
  -webkit-transform: translateY(-50%) translateX(3px);
          transform: translateY(-50%) translateX(3px);
}

.c-parts-button2 a:hover::after {
  -webkit-transform: translateY(-50%) translateX(3px) rotate(25deg);
          transform: translateY(-50%) translateX(3px) rotate(25deg);
}

@media screen and (min-width: 768px) {
  .p-top-creatives .p-caseSwiper__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    row-gap: 1.875rem;
  }
}

/* =============================================
私たちについて
============================================= */
.p-about {
  margin-top: -1px;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    background: #fff;
    position: relative;
    z-index: 2500;
    margin-bottom: 13.5rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1400px) {
  .p-about {
    z-index: 100;
  }
}
.p-about p {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about p {
    font-size: 16px;
  }
}
.p-about P + P {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about P + P {
    margin-top: 3.75rem;
  }
}
.p-about .p-about__catch {
  font-size: 18px;
  margin-top: 1.625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-about .p-about__catch {
    font-size: 2.125rem;
    margin-top: 3.125rem;
  }
}
.p-about .p-about__inner {
  padding: 0 20px;
  margin-inline: auto;
}

.p-about__logo {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__logo {
    margin-top: 3.75rem;
  }
}
.p-about__logo img {
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about__logo img {
    max-width: 205px;
  }
}

.p-company {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    margin-top: 11.875rem;
  }
}

.p-company__inner {
  padding: 0 25px;
  margin-inline: auto;
  max-width: 914px;
}

.p-company__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-company__title {
    font-size: 24px;
  }
}

.p-company__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__list {
    margin-top: 2.6875rem;
  }
}

.p-company__item {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 0.875rem;
}
.p-company__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-company__item {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 1.875rem;
  }
}

.p-company__item dt,
.p-company__item dd {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-company__item dt,
  .p-company__item dd {
    font-size: 16px;
    line-height: 1.8125;
  }
}
.p-company__item dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-company__item dt {
    width: 40%;
  }
}
.p-company__item dd {
  font-weight: 400;
}
.p-company__item:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-company__item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company__item.p-company__owner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-company__item.p-company__owner-item .p-company__owner {
  min-width: 50%;
}
@media screen and (min-width: 768px) {
  .p-company__item.p-company__owner-item .p-company__owner:not(:first-of-type) {
    margin-left: calc(40% + 10px);
  }
}

.p-ceo {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-ceo {
    margin-top: 6.125rem;
    padding-bottom: 4.125rem;
  }
}
.p-ceo figure img {
  height: auto;
  max-width: 225px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-ceo figure img {
    max-width: 260px;
  }
}
.p-ceo p {
  text-align: left;
  font-weight: 500;
  line-height: 1.7;
}
.p-ceo p + p {
  margin-top: 0;
}

.p-ceo__list {
  padding: 0 25px;
  max-width: 914px;
  margin-inline: auto;
}
.p-ceo__list li:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-ceo__list li:not(:first-child) {
    margin-top: 7.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-ceo__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
}

.p-ceo__body {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .p-ceo__body {
    margin-top: 0;
  }
}

.p-ceo .p-ceo__title {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-ceo .p-ceo__title {
    font-size: 20px;
  }
}
.p-ceo .p-ceo__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #E0774B;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-ceo .p-ceo__title::before {
    width: 6px;
    height: 32px;
    margin-right: 18px;
  }
}

.p-ceo__text {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-ceo__text {
    margin-top: 24px;
  }
}
.p-ceo__text P + P {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-ceo__text P + P {
    margin-top: 1.25rem;
  }
}

/* =============================================
事業領域/Finance
============================================= */
.p-finance__service {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-finance__service {
    margin-top: 5.9375rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-finance__service {
    padding-left: 1.5625rem;
  }
}

.p-serviceTitle {
  font-size: clamp(1.25rem, 0.054rem + 5.102vi, 2.5rem);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-serviceTitle {
    font-size: 26px;
  }
}

.p-serviceSentence {
  margin-top: 25px;
  font-weight: 500;
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-serviceSentence {
    font-size: 14px;
    margin-top: 20px;
  }
}

.p-finance__cards {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-finance__cards {
    margin-top: 4.375rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.25rem 1fr 2.25rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    padding-bottom: 50px;
  }
}

.p-finance__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-finance__card:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-finance__card:not(:first-child) {
    margin-top: 0;
    position: relative;
  }
}

.p-finance__label {
  padding: 3px 17px;
  background-color: #2F2931;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100vmax;
  font-size: clamp(0.875rem, 0.038rem + 3.571vi, 1.75rem);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-finance__label {
    padding: 6px 23px;
    font-size: 14px;
  }
}

.p-finance__symbol {
  margin-top: 13px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2F2931;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-finance__symbol {
    width: 110px;
    height: 110px;
  }
}
.p-finance__symbol span {
  font-size: 50px;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-finance__symbol span {
    font-size: 60px;
  }
}

.p-finance__category {
  margin-top: 8px;
  font-size: clamp(1.125rem, 0.049rem + 4.592vi, 2.25rem);
  font-family: YakuHanJP, "Roboto Condensed", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-finance__category {
    font-size: 24px;
  }
}

.p-finance__box {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-finance__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-finance__boxBody {
  padding: 10px;
  border: 1px solid #707070;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-finance__boxBody {
    padding: 1.5625rem 1.4375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-finance__boxTitle {
  font-size: clamp(1.125rem, 0.049rem + 4.592vi, 2.25rem);
  color: #fff;
  background-color: #2F2931;
  padding: 6px 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-finance__boxTitle {
    font-size: 20px;
    padding: 6px 0.625rem;
  }
}

.p-finance__boxText {
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-finance__boxText {
    font-size: 16px;
  }
}

.p-finance__detail {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-finance__detail {
    margin-top: 18px;
  }
}

.p-finance__detail li {
  position: relative;
  padding-left: 0.7em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-finance__detail li {
    padding-left: 1em;
  }
}
.p-finance__detail li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background-color: currentColor;
  border-radius: 50%;
}
.p-finance__detail li:not(:first-child) {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-finance__detail li:not(:first-child) {
    margin-top: 16px;
  }
}

.p-finance__note {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-finance__note {
    font-size: 12px;
    line-height: 2;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    display: block;
    white-space: nowrap;
  }
}
.p-finance__note .u-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-finance__note .u-br {
    display: block;
  }
}
@media screen and (min-width: 959px) {
  .p-finance__note .u-br {
    display: none;
  }
}

.p-finance__serviceImg {
  margin-top: 70px;
}
.p-finance__serviceImg picture,
.p-finance__serviceImg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-effort {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-effort {
    margin-top: 5.9375rem;
  }
}

.p-effort__grid {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-effort__grid {
    margin-top: 30px;
  }
}

.p-grid {
  color: #fff;
  overflow-x: auto;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35px (150px)[5];
  grid-template-columns: 35px repeat(5, 150px);
      grid-template-areas: "label-speed head-sustain head-product head-empathy head-ecology head-digital" "label-purpose body-sustain body-product body-empathy body-ecology body-digital" "label-action act-sustain act-product act-empathy act-ecology act-digital";
  grid-auto-rows: auto;
}
@media screen and (min-width: 768px) {
  .p-grid {
    -ms-grid-columns: 70px (180px)[5];
    grid-template-columns: 70px repeat(5, 180px);
  }
}

.p-grid__cell {
  font-weight: 400;
  padding: 0.9375rem 0.375rem;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-grid__cell {
    font-size: 14px;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-grid__cell {
    padding: 1.25rem 0.9375rem;
  }
}
.p-grid__cell.is-label-speed {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: label-speed;
  background-color: #B7B7B7;
}
.p-grid__cell.is-label-purpose {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: label-purpose;
  background-color: #C6C6C6;
}
.p-grid__cell.is-label-action {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: label-action;
  background-color: #D2D2D2;
}
.p-grid__cell.is-head.is-sustain {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: head-sustain;
  background-color: #316D7A;
}
.p-grid__cell.is-head.is-product {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: head-product;
  background-color: #285361;
}
.p-grid__cell.is-head.is-empathy {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: head-empathy;
  background-color: #234451;
}
.p-grid__cell.is-head.is-ecology {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: head-ecology;
  background-color: #1F3A47;
}
.p-grid__cell.is-head.is-digital {
  -ms-grid-row: 1;
  -ms-grid-column: 6;
  grid-area: head-digital;
  background-color: #182F3C;
}
.p-grid__cell.is-body.is-sustain {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body-sustain;
  background-color: #467C88;
}
.p-grid__cell.is-body.is-product {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: body-product;
  background-color: #3C7481;
}
.p-grid__cell.is-body.is-empathy {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
  grid-area: body-empathy;
  background-color: #335C68;
}
.p-grid__cell.is-body.is-ecology {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
  grid-area: body-ecology;
  background-color: #2F4E5A;
}
.p-grid__cell.is-body.is-digital {
  -ms-grid-row: 2;
  -ms-grid-column: 6;
  grid-area: body-digital;
  background-color: #2A4451;
}
.p-grid__cell.is-act.is-sustain {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: act-sustain;
  background-color: #598995;
}
.p-grid__cell.is-act.is-product {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: act-product;
  background-color: #50838D;
}
.p-grid__cell.is-act.is-empathy {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  grid-area: act-empathy;
  background-color: #467C88;
}
.p-grid__cell.is-act.is-ecology {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: act-ecology;
  background-color: #3E6570;
}
.p-grid__cell.is-act.is-digital {
  -ms-grid-row: 3;
  -ms-grid-column: 6;
  grid-area: act-digital;
  background-color: #3B5863;
}

.p-grid__cell.is-label {
  color: #2F2931;
  padding: 12px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 2つ目のブロックを上揃えに */
}
.p-grid__cell.is-label span {
  display: inline;
}
.p-grid__cell.is-body, .p-grid__cell.is-act {
  padding: 5px 7px 14px 7px;
}
@media screen and (min-width: 768px) {
  .p-grid__cell.is-body, .p-grid__cell.is-act {
    padding: 10px 15px;
  }
}

.p-grid__icon {
  margin-top: 5px;
  width: 90px;
  height: 90px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: #fff;
  border-radius: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-grid__icon {
    width: 110px;
    height: 110px;
    margin-top: 12px;
  }
}
.p-grid__icon img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-grid__icon img {
    width: 65px;
    height: 65px;
  }
}

.p-grid__title {
  font-size: 18px;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-grid__title {
    font-size: 24px;
  }
}

.p-grid__catch {
  margin-top: 10px;
  text-align: center;
}

/* =============================================
事業領域/AI
============================================= */
.p-ai__service {
  margin-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-ai__service {
    margin-top: 15rem;
    background-color: #E6E6E6;
    padding-bottom: 12.5rem;
  }
}

.sub .c-works__inner.p-ai__inner {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sub .c-works__inner.p-ai__inner {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.p-ai .c-solution::before {
  font-size: clamp(2.25rem, 0.098rem + 9.184vi, 4.5rem);
  content: "Solution";
  letter-spacing: -0.05em;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  position: absolute;
  top: -1%;
  left: 5.5%;
  z-index: 1;
  line-height: 0.7;
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution::before {
    left: 10.4%;
    top: auto;
    bottom: 100%;
    font-size: 7.875rem;
  }
}
.p-ai .c-solution li:first-child {
  background-image: url(../images/ai01_sp.png);
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution li:first-child {
    background-image: none;
  }
}
.p-ai .c-solution li:nth-child(2) {
  background-image: url(../images/ai02_sp.png);
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution li:nth-child(2) {
    background-image: none;
  }
}
.p-ai .c-solution li:nth-child(3) {
  background-image: url(../images/ai03_sp.png);
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution li:nth-child(3) {
    background-image: none;
  }
}
.p-ai .c-solution li:nth-child(4) {
  background-image: url(../images/ai04_sp.png);
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution li:nth-child(4) {
    background-image: none;
  }
}
.p-ai .c-solution li:nth-child(5) {
  background-image: url(../images/ai05_sp.png);
}
@media screen and (min-width: 768px) {
  .p-ai .c-solution li:nth-child(5) {
    background-image: none;
  }
}

.p-price {
  margin-top: 63px;
}
@media screen and (min-width: 768px) {
  .p-price {
    margin-top: 9.375rem;
  }
}

.p-price__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 0 20px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__head {
    padding-bottom: 20px;
    gap: 50px;
    margin: 0 13.3125rem;
  }
}

.p-price__head::after {
  display: block;
  position: absolute;
  content: "";
  height: 2.5px;
  background-color: #2F2931;
  width: 100%;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-price__head::after {
    max-width: 41.4375rem;
    height: 5px;
  }
}

.p-price__title {
  font-size: clamp(2.25rem, 0.098rem + 9.184vi, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  font-family: YakuHanJP, "Roboto Condensed", serif;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-price__title {
    font-size: 7.875rem;
  }
}

.p-price__subtitle {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: clamp(1.25rem, 0.054rem + 5.102vi, 2.5rem);
  font-weight: 700;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: block;
  letter-spacing: 0.015em;
  line-height: 1;
  margin-top: 2.5%;
}
@media screen and (min-width: 768px) {
  .p-price__subtitle {
    font-size: 2.75rem;
  }
}

.p-price__bg {
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(../images/ai_price_sp.png);
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-price__bg {
    background-image: url(../images/ai_price.png);
  }
}

.p-price__inner {
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    padding: 3.75rem 13.3125rem;
  }
}

.p-price__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  color: #fff;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-price__row {
    gap: 50px;
  }
}
.p-price__row:not(:first-child) {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .p-price__row:not(:first-child) {
    margin-top: 13px;
  }
}

.p-price__row dt {
  position: relative;
  background-color: #2F2931;
  padding: 4px 13px;
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-price__row dt {
    font-size: 2.75rem;
    padding: 1.4375rem 3.125rem 1.4375rem 1.875rem;
  }
}

.p-price__row dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 99.5%;
  width: 10px;
  height: 100%;
  background-color: #2F2931;
  clip-path: polygon(0 0, 100% 0, 14% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .p-price__row dt::after {
    width: 30px;
  }
}

.p-price__row dd {
  position: relative;
  padding: 4px 10px;
  background-color: #2F2931;
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-price__row dd {
    padding: 1.4375rem 3.125rem 1.4375rem 1.875rem;
    font-size: 2.75rem;
  }
}

.p-price__row dd::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 99.5%;
  width: 10px;
  height: 100%;
  background-color: #2F2931;
  clip-path: polygon(86% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-price__row dd::before {
    width: 30px;
  }
}

.p-price__note {
  font-size: 12px;
  margin-top: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-price__note {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-top: 0;
  }
}

.p-price__list--second {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-price__list--second {
    margin-top: 10px;
  }
}

/* =============================================
事業領域/AI
============================================= */
.p-promotion__service {
  margin-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-promotion__service {
    margin-top: 15rem;
    background-color: #fff;
    padding-bottom: 12.5rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-promotion__service::after {
    position: absolute;
    content: "";
    width: 43.75rem;
    inset: 0;
    height: 100%;
    background-color: #E6E6E6;
    z-index: 1;
  }
}

.sub .c-works__inner.p-promotion__inner {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sub .c-works__inner.p-promotion__inner {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-promotion .c-solution {
    z-index: 10;
  }
}
.p-promotion .c-solution li:first-child {
  background-image: url(../images/promotion01_sp.png);
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:first-child {
    background-image: none;
  }
}
.p-promotion .c-solution li:nth-child(2) {
  background-image: url(../images/promotion02_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(2) {
    background-image: none;
  }
}
.p-promotion .c-solution li:nth-child(3) {
  background-image: url(../images/promotion03_sp.webp);
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(3) {
    background-image: none;
  }
}
.p-promotion .c-solution li:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(odd) .c-solution__item {
    width: 58.75rem;
  }
}
.p-promotion .c-solution li:nth-child(odd) .c-solution__itemInner {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(odd) .c-solution__itemInner {
    display: block;
    padding: 4.375rem 4.0625rem 2.5rem 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-promotion .c-solution li:nth-child(odd) .c-solution__itemInner {
    max-width: 49.6875rem;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(even) .c-solution__item {
    width: 51.875rem;
  }
}
.p-promotion .c-solution li:nth-child(even) .c-solution__itemInner {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(even) .c-solution__itemInner {
    display: block;
    padding: 4.375rem 3.4375rem 2.5rem 3.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-promotion .c-solution li:nth-child(even) .c-solution__itemInner {
    padding: 4.375rem 3.4375rem 2.5rem 11.25rem;
    max-width: 49.6875rem;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-promotion .c-solution li:nth-child(even) .c-solution__promotion-list-head {
    color: #fff;
    background: #2F2931;
  }
}

.c-solution__sentence {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-solution__sentence {
    font-size: 16px;
    line-height: 1.875;
  }
}

.c-solution__promotion-list {
  margin-top: 20px;
}

.c-solution__promotion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-solution__promotion-item {
    gap: 7px;
  }
}
.c-solution__promotion-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-solution__promotion-item:not(:first-child) {
    margin-top: 10px;
  }
}

.c-solution__promotion-list-head {
  color: #fff;
  padding: 3px 7px;
  background-color: #2F2931;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
}
@media screen and (min-width: 768px) {
  .c-solution__promotion-list-head {
    color: #2F2931;
    background: #fff;
    font-size: 16px;
  }
}

.c-solution__promotion-list-detail {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
}
@media screen and (min-width: 768px) {
  .c-solution__promotion-list-detail {
    font-size: 16px;
  }
}

/* =============================================
事例紹介
============================================= */
.p-creatives {
  padding-bottom: 12.5rem;
}

.p-creatives__list {
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-creatives__list {
    margin-top: 4.0625rem;
    margin-inline: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    row-gap: 1.875rem;
    max-width: 845px;
  }
}
.p-creatives__list li:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-creatives__list li:not(:first-child) {
    margin-top: 0;
  }
}

.c-cardList__title {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 700;
}

.c-cardList__img {
  aspect-ratio: 335/197;
}
@media screen and (min-width: 768px) {
  .c-cardList__img {
    aspect-ratio: 278/164;
  }
}
.c-cardList__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.p-creatives__date {
  margin-top: 10px;
  font-weight: 700;
  font-size: 12px;
  color: #999999;
}

/* =============================================
footer
============================================= */
.p-footer {
  position: relative;
  z-index: 9000;
  background-color: #2F2931;
}
.p-footer .p-logo img {
  padding-top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-footer .p-footer__subList {
    display: none;
  }
}

.p-footer__inner {
  padding: 3.375rem 1.25rem 1rem;
  max-width: 1114px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 3.375rem 1.25rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer__nav-flex {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-flex {
    margin-top: 0;
  }
}

.c-navList__link-en,
.p-header__link-en {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .c-navList__link-en,
  .p-header__link-en {
    letter-spacing: 0.05em;
    font-size: 16px;
  }
}

.p-footer__nav {
  color: #fff;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav .p-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav .p-footer__list li:not(:first-child) {
    margin-top: 0;
  }
}
.p-footer__nav .c-navList__link-ja {
  color: rgba(255, 255, 255, 0.49);
}
@media screen and (min-width: 768px) {
  .p-footer__nav .c-navList__link-ja {
    display: none;
  }
}
.p-footer__nav .c-navList__link-en {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav .c-navList__link-en {
    font-size: 16px;
  }
}
.p-footer__nav .c-navList__link-ja {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-footer__nav .c-navList__subList {
  margin-top: 0;
  margin-bottom: 0;
}
.p-footer__nav .c-navList__subList li {
  padding-left: 0;
  border-left: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4px 0;
}
.p-footer__nav .c-navList__subList li:not(:first-child) {
  margin-top: 0;
}
.p-footer__nav .c-navList__subList .c-navList__link-en {
  font-size: 10px;
}

.p-footer__list li:not(:first-child) {
  margin-top: 15px;
}

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

@media screen and (min-width: 768px) {
  .p-footer__info-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 7.8125rem;
  }
}

.p-footer__ai {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}
.p-footer__ai img {
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__ai img {
    width: 111px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -30px;
  }
}

.p-footerCompany {
  margin-top: 2.75rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footerCompany {
    margin-top: 3.625rem;
  }
}

.p-footerCompany__name {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__name {
    font-size: 13px;
  }
}

.p-footerCompany__block {
  font-size: 13px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block {
    max-width: 490px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.p-footerCompany__block .p-footerCompany__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block .p-footerCompany__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
  }
}
.p-footerCompany__block .p-footerCompany__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block .p-footerCompany__item:not(:first-child) {
    margin-top: 0;
    border-top: none;
  }
}
.p-footerCompany__block .p-footerCompany__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block .p-footerCompany__item:not(:last-child) {
    border-bottom: none;
  }
}
.p-footerCompany__block .p-footerCompany__item:last-child {
  padding-bottom: 0;
}
.p-footerCompany__block address {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block address {
    line-height: 2;
  }
}
.p-footerCompany__block address a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.p-footerCompany__block .p-footerCompany__title {
  width: 17%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-footerCompany__block .p-footerCompany__title {
    width: 100%;
  }
}

/* PC のときだけ、奇数（1,3,5...＝左列）に padding-right をつける */
@media screen and (min-width: 768px) {
  .p-footerCompany__item:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  /* 偶数番（右列）は余白なし & 線なし */
  .p-footerCompany__item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
}
.p-footerPolicy {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-footerPolicy {
    margin-top: 30px;
  }
}
.p-footerPolicy a {
  position: relative;
  text-decoration: none;
}
.p-footerPolicy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  /* 下線の色だけ半透明に */
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .p-footerPolicy a::after {
    background-color: #fff;
  }
}
.p-footerPolicy .p-footerPolicy__copy {
  margin-top: 15px;
}

/* =============================================
WP-PageNaviのコンテナスタイル
============================================= */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 33px;
  margin-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    gap: 20px;
  }
}

/* WP-PageNaviのリンクスタイル */
.wp-pagenavi a {
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* WP-PageNaviの現在のページスタイルcurrent */
.wp-pagenavi .current {
  background-color: #DADADA;
  color: #999999;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* WP-PageNaviの非アクティブアイテムスタイル */
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
  background-color: #BCBCBC;
  color: #fff;
}

span.extend {
  color: #999999;
}

/* 共通スタイル */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.prev,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.next,
.wp-pagenavi a.first,
.wp-pagenavi a.last {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-color: #BCBCBC;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  position: relative;
}

/* '前へ' ＜ボタンのスタイル */
.wp-pagenavi a.previouspostslink:before,
.wp-pagenavi a.prev:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 2px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* '次へ' ＞ボタンのスタイル */
.wp-pagenavi a.nextpostslink:before,
.wp-pagenavi a.next:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 8px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 'トップへ戻る'|<矢印のスタイル */
.wp-pagenavi a.first:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  top: calc(50% - 4px);
  left: calc(50% + 1px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.wp-pagenavi a.first:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #fff;
  top: calc(50% - 7px);
  left: calc(50% - 2px);
}

/* '最後へ' >|矢印のスタイル */
.wp-pagenavi a.last:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 10px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.wp-pagenavi a.last:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #fff;
  top: calc(50% - 6px);
  left: calc(50% + 2px);
}

/* =============================================
パンくず
============================================= */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb span:not(.current-item) a {
  text-decoration: underline;
}

.breadcrumb__between {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-image: url("../images/common/breadcrumb.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 7px;
}

.breadcrumb span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #999;
  line-height: 1.7;
}

/* =============================================
事例詳細ページ
============================================= */
.p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.p-single__head p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-single__head p {
    font-size: 20px;
  }
}
.p-single__head h1 {
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-single__head h1 {
    font-size: 2.25rem;
  }
}

.p-single__article {
  font-size: clamp(0.75rem, 0.033rem + 3.061vi, 1.5rem);
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-single__article {
    font-size: 16px;
  }
}
.p-single__article h2 {
  margin-top: 30px;
  width: 100%;
  font-size: clamp(1.125rem, 0.049rem + 4.592vi, 2.25rem);
  padding-bottom: 7px;
  border-bottom: 2px solid #E0774B;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-single__article h2 {
    font-size: 22px;
    margin-top: 3.125rem;
    margin-bottom: 20px;
  }
}
.p-single__article h3,
.p-single__article h4,
.p-single__article h5,
.p-single__article h6 {
  font-size: clamp(0.938rem, 0.041rem + 3.827vi, 1.875rem);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-single__article h3,
  .p-single__article h4,
  .p-single__article h5,
  .p-single__article h6 {
    font-size: 18px;
  }
}

article > * + * {
  margin-top: 1.25rem;
}

.p-single__article > .alignleft {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

.p-single__article > .alignright {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  margin-left: 1em;
  margin-right: 0;
}

.p-single__article > .aligncenter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.p-single__article {
  margin-top: 50px;
}
.p-single__article table {
  background: #fff;
  margin: 1em 0;
  max-width: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  border: 0.1rem solid #2F2931;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  overflow: hidden;
}
.p-single__article tr:first-child td {
  background-color: #fff;
  color: #fff;
}
.p-single__article td {
  font-weight: normal;
  white-space: nowrap;
}
.p-single__article th {
  font-weight: normal;
  white-space: nowrap;
}
.p-single__article th,
.p-single__article td {
  margin: 0;
  padding: 0.5em;
  line-height: 1.4;
  border: 0.1rem solid #333;
  overflow: visible;
}

.p-single__article thead {
  vertical-align: bottom;
  white-space: nowrap;
}

.p-single__article code {
  font-family: monospace;
}

.p-single__article abbr {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.p-single__article dfn,
.p-single__article cite,
.p-single__article em,
.p-single__article i {
  font-style: italic;
}

.p-single__thumb {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single__thumb {
    padding-bottom: 4.375rem;
  }
}

.p-single__article figure {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin: 15px 0;
}
@media screen and (min-width: 430px) {
  .p-single__article figure {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-single__article figure {
    max-width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-single__article figure img,
.wp-block-image img {
  margin: 20px 0;
  max-width: 100%;
  width: initial;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single__article figure img,
  .wp-block-image img {
    max-width: 100%;
    width: initial;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-single__article figcaption {
  text-align: center;
  margin-top: 0.625rem;
  font-size: 14px;
}

.p-single__article ul ul,
.p-single__article ul ol,
.p-single__article ol ul,
.p-single__article ol ol {
  margin-top: 0;
}

.p-single__article ul li,
.p-single__article ol li {
  margin-left: 1em;
}

.p-single__article ul li:not(:first-child),
.p-single__article ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.p-single__article blockquote {
  border: none;
  margin-bottom: 0;
  margin-top: 1.875rem;
  padding: 2.625rem 1.75rem 1.25rem 3.5rem;
  background-color: #999;
  font-size: 1rem;
  color: #2F2931;
  position: relative;
}

.p-single__article blockquote::before {
  content: "“";
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1.875rem;
  color: #333;
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single__article blockquote > p {
  margin-top: 0;
}

.p-single__article cite {
  font-style: italic;
  margin-top: 0.625rem;
  display: block;
  font-size: 1rem;
}

.p-single__article iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__article input {
  border: 1px solid #666;
  border-radius: 3px;
}

.p-single__article pre {
  white-space: pre-wrap;
  /* 改行と空白を保持しつつ、必要に応じて改行 */
  word-wrap: break-word;
  /* 言葉を適切に折り返す */
}

.p-single__article ul li {
  list-style: disc;
}

/* figure 自体を親幅に収める */
.p-single__article {
  /* 中の画像も必ず親に収める */
}
.p-single__article a {
  text-decoration: underline;
  color: #E0774B;
}
.p-single__article .wp-caption {
  max-width: 100% !important;
  width: auto !important;
}
.p-single__article .wp-caption img {
  max-width: 100%;
  height: auto;
}
.p-single__article .wp-caption-text {
  font-size: 16px;
}

/* キャプションも横溢れ防止 */
.wp-caption-text {
  max-width: 100%;
}

.p-single__article ol li {
  list-style-type: decimal;
}

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

.p-single__page-nav {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__page-nav {
    margin-top: 3.125rem;
  }
}

.p-single__sns {
  margin-top: 3.75rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single__sns {
    margin-top: 5rem;
    padding-bottom: 12.5rem;
  }
}

.p-single__sns-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single__sns-title {
    gap: 1.25rem;
  }
}

.p-single__sns-title-text {
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-single__sns-title-text {
    font-size: 18px;
  }
}

.p-single__sns-title-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #2F2931;
}

.p-single__sns-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.75rem 1fr 0.75rem 1fr 0.75rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 12px;
}

.p-single__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-single__sns-link {
    height: 50px;
  }
}
@media (any-hover: hover) {
  .p-single__sns-link:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) {
  .p-single__sns-item img {
    width: 30px;
    height: 30px;
  }
}

.p-single__sns-link--facebook {
  background-color: #435894;
}

.p-single__sns-link--x {
  background-color: #000000;
}

.p-single__sns-link--line {
  background-color: #58C038;
}

.p-single__sns-link--copy {
  background-color: #727475;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.copy-toast {
  width: 200px;
  text-align: center;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .copy-toast {
    bottom: 3.125rem;
  }
}

.copy-toast.show {
  opacity: 1;
}

/* =============================================
お問い合わせ
============================================= */
@media screen and (min-width: 768px) {
  .c-inner.p-contact__inner {
    background: #fff;
    padding-bottom: 6.25rem;
    margin-bottom: 8.75rem;
  }
}

/* =============================================
フォーム部分
============================================= */
.p-contact__area {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 1400px) {
  .p-contact__area {
    max-width: 56.6875rem;
    margin-left: 2.5rem;
  }
}

/* dl/項目名と回答部分 */
.p-contact__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-contact__input:not(:first-child) {
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__input:not(:first-child) {
    margin-top: 40px;
  }
}

.p-contact__input:last-child {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__input:last-child {
    margin-top: 22px;
  }
}

/* 項目名 */
.p-contact__input dt {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__input dt {
    text-align: center;
    width: 50%;
    font-size: 16px;
  }
}

/* 入力部分 */
.p-contact__input dd {
  background: #fff;
  padding: 0.8125rem 0.3125rem;
  border: 2px solid #DADADA;
  width: 100%;
}
.p-contact__input dd input {
  width: 100%;
  font-size: 16px;
}

.p-contact__text-area {
  margin-top: 33px;
  width: 100%;
}

.p-contact__text-area .p-contact__input dt {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.p-contact__text-area dd {
  width: 100%;
}

/* 縦方向のリサイズを禁止 */
textarea {
  resize: vertical;
  width: 100%;
  padding: 5px;
  height: 16.4375rem;
}
@media screen and (min-width: 768px) {
  textarea {
    height: 16.5625rem;
  }
}

/*----------------------------------
送信ボタン
-----------------------------------*/
/*----------------------------------
  フォーム送信ボタン
-----------------------------------*/
/* ボタン「上」余白調整 */
.p-contact__submit {
  margin-top: 2.1875rem;
  text-align: center;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    text-align: left;
    margin-top: 5.625rem;
    margin-left: 38%;
    padding-bottom: 0;
  }
}

.c-form-submit {
  width: 200px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 0.625rem 1.875rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  background-color: #2F2931;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form-submit {
    font-size: 16px;
    width: 260px;
    padding: 1rem 1.875rem;
  }
}
.c-form-submit:hover {
  opacity: 0.7;
}

.c-form-submit::-moz-focus-inner {
  padding: 0;
  border: none;
}

.p-contact__submit .wpcf7-spinner {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

/* reCAPTCHA v3　表示位置の移動 */
.grecaptcha-badge {
  margin-bottom: 60px;
}

/* checkbox（カスタムUI）も同じ思想で */
input[type=checkbox]:focus-visible + span::before {
  outline: auto 1px -webkit-focus-ring-color;
  outline-offset: 2px;
}

/* =============================================
404エラー
============================================= */
.p-container-404 {
  width: 100%;
  margin: 0 auto;
  padding: 150px 30px 200px;
}
@media screen and (min-width: 768px) {
  .p-container-404 {
    padding: 12.5rem 30px 12.5rem;
  }
}

.p-container-404 .section-title__header {
  margin-top: 50px;
  font-size: 50px;
}

.p-container-404__inner {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: auto;
}

.p-container-404__body {
  text-align: center;
}

.p-container-404 .section-title__header {
  font-size: 80px;
}

.p-container-404 .p-container-404__sub-title {
  color: #2F2931;
  display: block;
  margin-top: 20px;
  font-size: 40px;
}
@media screen and (min-width: 430px) {
  .p-container-404 .p-container-404__sub-title {
    font-size: 25px;
  }
}

.p-container-404__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-container-404__text {
    line-height: 2.1428571429;
  }
}

.p-container-404__btnBox {
  text-align: center;
  margin-top: 60px;
  margin-inline: auto;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .p-container-404__btnBox {
    width: 160px;
  }
}

.p-container-404__btn {
  width: 200px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 0.625rem 1.875rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  background-color: #2F2931;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-container-404__btn {
    font-size: 16px;
    width: 260px;
    padding: 1rem 1.875rem;
  }
}
.p-container-404__btn:hover {
  opacity: 0.7;
}

/* =============================================
プライバシーポリシー
============================================= */
.p-privacy-policy {
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy {
    margin-bottom: 8.75rem;
  }
}

.c-inner.p-privacy-policy__inner {
  padding: 0 3%;
  max-width: 1080px;
}
@media screen and (min-width: 768px) {
  .c-inner.p-privacy-policy__inner {
    background: #fff;
    padding-top: 2rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sub .c-privacy-policy {
  font-weight: 500;
  margin-top: 4.25rem;
  padding-bottom: 3.125rem;
  padding-top: 1.5625rem;
  padding-left: 1.5625rem;
  padding-right: 1.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy {
    margin-top: 5.625rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3.75rem;
  }
}
.sub .c-privacy-policy .c-privacy-policy__info P {
  line-height: normal;
}
.sub .c-privacy-policy p {
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.sub .c-privacy-policy .c-privacy-policy__info {
  text-align: right;
}
.sub .c-privacy-policy .c-privacy-policy__info p {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy .c-privacy-policy__info p {
    font-size: 16px;
  }
}
.sub .c-privacy-policy .wp-block-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy .wp-block-heading {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.sub .c-privacy-policy .c-privacy-policy-item:not(:first-child) {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy .c-privacy-policy-item:not(:first-child) {
    margin-top: 60px;
  }
}
.sub .c-privacy-policy .p-privacy-policy__sub-head {
  margin-top: 20px;
  line-height: 1.4166666667;
  padding-left: 8px;
  border-left: 2px solid #2F2931;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy .p-privacy-policy__sub-head {
    margin-top: 30px;
    font-size: 20px;
    border-left: 6px solid #2F2931;
  }
}
.sub .c-privacy-policy ol {
  counter-reset: num;
  padding-left: 0;
}
.sub .c-privacy-policy ol li {
  list-style: none;
  counter-increment: num;
  position: relative;
  padding-left: 40px;
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy ol li {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 5px;
  }
}
.sub .c-privacy-policy ol li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  width: 20px;
}
@media screen and (min-width: 768px) {
  .sub .c-privacy-policy ol li::before {
    width: 30px;
    text-align: right;
  }
}
.sub .c-privacy-policy .p-privacy-policy__contact-link {
  display: block;
  margin-top: 10px;
  text-underline-offset: 2.5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #2F2931;
}
/*# sourceMappingURL=styles.css.map */