@charset "UTF-8";
/* 基本ボックスモデル */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* デフォルトの余白を削除 */
ul,
ol {
  padding: 0;
}

/* デフォルトのマージンを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストマーカーを削除 */
ul,
ol {
  list-style: none;
}

/* class未指定のa要素は下線描画 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* 画像の基本挙動 */
img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* article配下の要素間余白 */
article > * + * {
  margin-top: 1em;
}

/* フォーム要素にフォントを継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* alt未設定画像の検知用スタイル */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

/* リキッドレイアウト対応 */
/* 余白 */
/* レイヤー */
/* レイアウト寸法 */
/* ルートフォントの可変上限幅（inner + 両側padding） */
/* フォント */
/* カラー */
/* 意味名ブレークポイント */
/* 旧キー（利用禁止） */
/* min-width 指定 */
/* max-width 指定（境界重複を防ぐため -1px） */
/* from 以上 to 未満 */
/* 旧API（利用禁止） */
/* タイポグラフィの共通指定 */
/* ナビゲーションのhover指定 */
html {
  font-size: 16px;
}

/* 電話リンクのクリック制御 */
a[href^="tel:"] {
  pointer-events: none;
}

/* リンクの基本スタイル */
a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

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

body {
  word-wrap: anywhere;
  background-color: #000;
  color: #00343A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

.lenis.lenis-smooth iframe {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.l-drawer {
  background: black;
  bottom: 0;
  display: none;
  left: 0;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  position: fixed;
  right: 0;
  top: 60px;
  top: 3.75rem;
  z-index: 1000;
}
.l-drawer {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out, pointer-events 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, pointer-events 0.3s ease-out;
  visibility: hidden;
}
.l-drawer[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.l-drawer__container {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 530px;
  min-height: 33.125rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
.l-drawer__nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-drawer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}
.l-drawer__nav-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  width: 100%;
}
.l-drawer__nav-link::after {
  background: url("../images/common/icons/arrow-right-drawer.svg") no-repeat center/contain;
  content: "";
  display: block;
  height: 14px;
  height: 0.875rem;
  width: 20px;
  width: 1.25rem;
}
.l-drawer__nav-btn {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  width: 15.625rem;
}
.l-drawer__nav-item:has(.l-drawer__nav-link) + .l-drawer__nav-item:has(.l-drawer__nav-btn) {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.l-drawer__nav-item:has(.l-drawer__nav-btn) + .l-drawer__nav-item:has(.l-drawer__nav-btn) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.l-drawer__nav-maintext {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.l-drawer__nav-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.l-footer {
  background-color: #000;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  width: 100%;
}
.l-footer__logo-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 88px;
  margin-bottom: 5.5rem;
  overflow: hidden;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  position: relative;
}
.l-footer__logo-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 800px;
  width: 50rem;
}
.l-footer__logo-image {
  position: relative;
  width: 100%;
}
.l-footer__logo-image picture,
.l-footer__logo-image img {
  display: block;
  height: auto;
  width: 100%;
}
.l-footer__glitch-channel {
  bottom: 0;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  will-change: transform, opacity;
}
.l-footer__glitch-channel--cyan {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
  z-index: 1;
}
.l-footer__glitch-channel--red {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
  z-index: 3;
}
.l-footer__glitch-channel img {
  display: block;
  height: auto;
  width: 100%;
}
.l-footer__glitch-slice {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: transform, clip-path, opacity;
  z-index: 4;
}
.l-footer__glitch-slice img {
  display: block;
  height: auto;
  width: 100%;
}
.l-footer__glitch-canvas {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}
.l-footer__glitch-flash {
  background: #fff;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
}
.l-footer__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  max-width: 78.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
.l-footer__nav-items {
  -moz-column-gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
       -webkit-column-gap: 3.75rem;
               column-gap: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 120px;
  height: 7.5rem;
  row-gap: 16px;
  row-gap: 1rem;
}
.l-footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer__nav-link {
  color: #fff;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.l-footer__nav-sub-items {
  margin-top: 0;
}
.l-footer__nav-sub-link {
  color: #fff;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.l-footer__right {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer__back-to-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  gap: 0.625rem;
  padding: 0;
}
.l-footer__back-to-top-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  white-space: nowrap;
}
.l-footer__back-to-top-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 15px;
  height: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  width: 15px;
  width: 0.9375rem;
}
.l-footer__back-to-top-icon img {
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem;
}
.l-footer__copyright {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  white-space: nowrap;
}
@-webkit-keyframes footer-arrow-loop {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes footer-arrow-loop {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-header {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.05);
  bottom: auto;
  height: 100px;
  height: 6.25rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  width: 100%;
  z-index: 100;
}
body.is-drawerActive .l-header {
  background-color: rgb(0, 0, 0);
}
.l-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
.l-header__logo-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  height: 1.875rem;
  width: auto;
}
.l-header__logo-image {
  height: 100%;
  width: 100%;
}
.l-header__logo-image img {
  -o-object-fit: contain;
  aspect-ratio: 366/30;
  height: 100%;
     object-fit: contain;
  width: auto;
}
.l-header__menu-button {
  display: none;
  z-index: 101;
}
.l-header__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.l-header__nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  gap: 1.5625rem;
}
.l-header__nav-item {
  height: 100%;
}
.l-header__nav-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-left: 4px;
  padding-left: 0.25rem;
  padding-right: 4px;
  padding-right: 0.25rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  position: relative;
}
.l-header__nav-link::after {
  background-color: #fff;
  bottom: 4px;
  bottom: 0.25rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  width: 100%;
}
.l-header__nav-subtext {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

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

.l-main {
  background-color: #000;
  position: relative;
}
.l-main > :not(.l-main__bg-layers) {
  z-index: 1;
}
.l-main__bg-layers {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 0;
}
.l-main__bg-layer {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  will-change: opacity;
}
.l-main__bg-layer .l-main__bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(#111111), to(#111111));
  background: linear-gradient(180deg, #000000, #111111, #111111);
  background: linear-gradient(var(--main-bg-gradient-angle, 180deg), var(--main-bg-gradient-from, #000000), var(--main-bg-gradient-via, var(--main-bg-gradient-to, #111111)), var(--main-bg-gradient-to, #111111));
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.l-main__bg-layer picture,
.l-main__bg-layer img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.c-glitch-canvas {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-menu-button {
  height: 24px;
  height: 1.5rem;
  padding: 0;
  position: relative;
  width: 32px;
  width: 2rem;
}

.c-menu-button span {
  background-color: #fff;
  height: 2px;
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  width: 100%;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  height: 0.125rem;
  left: 0;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  width: 100%;
}

.c-menu-button span:before {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}

.c-menu-button span::after {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-mouse-stalker {
  background-color: rgba(29, 168, 170, 0.6);
  border-radius: 50%;
  height: 20px;
  height: 1.25rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 20px;
  width: 1.25rem;
  will-change: transform, opacity;
  z-index: 999;
}
.c-page-top {
  cursor: pointer;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-page-top__btn {
  -webkit-animation: circle 10s linear infinite;
          animation: circle 10s linear infinite;
  height: 173px;
  height: 10.8125rem;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 173px;
  width: 10.8125rem;
}

.c-page-top__btn svg {
  color: #FFD8D8;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  width: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-page-top.is-overlapping-footer .c-page-top__btn svg {
  color: #fff;
}
.c-section-btn {
  --c-section-btn-text-color: #fff;
  --c-section-btn-border-color: #fff;
  --c-section-btn-fill-color: #fff;
  --c-section-btn-hover-text-color: #00343A;
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border: 2px solid var(--c-section-btn-border-color);
  border-radius: 5rem;
  color: #fff;
  color: var(--c-section-btn-text-color);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
  gap: 0.625rem;
  isolation: isolate;
  letter-spacing: 0.05em;
  line-height: normal;
  overflow: hidden;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, background-color 0.5s ease;
  transition: color 0.3s ease, background-color 0.5s ease;
}
.c-section-btn::before {
  background: var(--c-section-btn-fill-color);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -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;
  z-index: -1;
}
.c-section-btn__text, .c-section-btn__icon {
  position: relative;
  z-index: 1;
}
.c-section-btn__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 10.5px;
  height: 0.65625rem;
  position: relative;
  width: 15px;
  width: 0.9375rem;
}
.c-section-btn__icon::before {
  border-top: 2px solid currentColor;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.c-section-btn__icon::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 7px;
  height: 0.4375rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 7px;
  width: 0.4375rem;
}

.c-section-btn--arrow .c-section-btn__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-section-btn--sm {
  line-height: 1.5;
  padding: 5px 24px;
  padding: 0.3125rem 1.5rem;
}

.c-section-btn--xs {
  line-height: 1.5;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}

.c-section-btn--light {
  border-width: 1px;
  font-weight: 400;
}

.c-section-btn--black {
  --c-section-btn-text-color: #00343A;
  --c-section-btn-border-color: #00343A;
  --c-section-btn-fill-color: #000;
  --c-section-btn-hover-text-color: #fff;
}

.c-section-title {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  position: relative;
}
.c-section-title__deco {
  background: -webkit-gradient(linear, left top, right top, from(#1da8aa), to(#1b7095));
  background: linear-gradient(to right, #1da8aa, #1b7095);
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
  z-index: 1;
}
.c-section-title__title {
  color: #fff;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
}
.c-section-title--sm .c-section-title__title {
  font-size: 64px;
  font-size: 4rem;
}

.p-404 {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}
.p-404__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about-bg {
  isolation: isolate;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
}
.p-about-bg::before, .p-about-bg::after {
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.p-about-bg::before {
  background: #000;
  z-index: -2;
}
.p-about-bg::after {
  background-image: url(../images/common/site-main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.65;
  z-index: -1;
}

.p-about-company {
  background-color: #000;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}
.p-about-company__heading {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-about-company__table {
  border-top: 1px solid #cccccc;
  width: 100%;
}
.p-about-company__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
.p-about-company__label {
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  width: 160px;
  width: 10rem;
}
.p-about-company__value {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-about-company__clients-caption {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.p-about-company__clients-list {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.p-about-company__email-link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.p-about-member {
  margin-top: 120px;
  margin-top: 7.5rem;
}
.p-about-member__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-member__title {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.p-about-member__list {
  grid-gap: 3.75rem 4.6875rem;
  display: grid;
  gap: 60px 75px;
  gap: 3.75rem 4.6875rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  margin-top: 5rem;
}
.p-about-member__list--single {
  grid-template-columns: 1fr;
}
.p-about-member__list--single .p-about-member__item {
  grid-gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: grid;
  gap: 60px;
  gap: 3.75rem;
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
}
.p-about-member__list--single .p-about-member__img-wrap {
  margin-bottom: 0;
}
.p-about-member__list--two {
  grid-template-columns: repeat(2, minmax(0, 25rem));
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.p-about-member__img-wrap {
  aspect-ratio: 4/3;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-about-member__img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-about-member__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
.p-about-member__name {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-about-member__position {
  margin-right: 20px;
  margin-right: 1.25rem;
}
.p-about-member__bio {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-about-member__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
.p-about-member__sns-x {
  height: 30px;
  height: 1.875rem;
  width: 29px;
  width: 1.8125rem;
}
.p-about-member__sns-instagram {
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
}
.p-about-member__sns-facebook {
  height: 34px;
  height: 2.125rem;
  width: 34px;
  width: 2.125rem;
}
.p-about-member__sns-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: auto;
}
.p-about-member__sns-link img {
  display: block;
  height: 100%;
  width: auto;
}

.p-about-message__bg {
  background: #000;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-about-message__bg picture,
.p-about-message__bg img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  opacity: 0.65;
  width: 100%;
}
.p-about-message__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.p-about-message__content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-about-message__ceo-image-wrap {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: calc(50vh - 15.625rem);
}
.p-about-message__ceo-image {
  height: 500px;
  height: 31.25rem;
  width: 400px;
  width: 25rem;
}
.p-about-message__ceo-image picture,
.p-about-message__ceo-image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-about-message__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  gap: 2.25rem;
}
.p-about-message__ceo-name {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-about-message__ceo-position {
  margin-right: 24px;
  margin-right: 1.5rem;
}
.p-about-message__bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  gap: 1.75rem;
}
.p-about-message__bio-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-about-message__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
.p-about-message__sns-x {
  height: 30px;
  height: 1.875rem;
  width: 29px;
  width: 1.8125rem;
}
.p-about-message__sns-instagram {
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
}
.p-about-message__sns-facebook {
  height: 34px;
  height: 2.125rem;
  width: 34px;
  width: 2.125rem;
}
.p-about-message__sns-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: auto;
}
.p-about-message__sns-link img {
  display: block;
  height: 100%;
  width: auto;
}

.p-about-philosophy {
  background-color: #000;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
}
.p-about-philosophy__list {
  list-style: none;
}
.p-about-philosophy__item {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}
.p-about-philosophy__heading {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#1da8aa), to(#1b7095));
  background: linear-gradient(to right, #1da8aa, #1b7095);
  background-clip: text;
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.p-about-philosophy__subheading {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-about-philosophy__subheading[lang=en] {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-size: 3.5rem;
}
.p-about-philosophy__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-about-philosophy__text:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-breadcrumb {
  color: #464343;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
.p-breadcrumb .home, .p-breadcrumb a {
  color: #fff;
}
.p-breadcrumb__inner {
  max-width: 1050px;
  max-width: 65.625rem;
}
.p-breadcrumb span[property=itemListElement]:nth-child(n+2) {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
.p-breadcrumb span[property=itemListElement]:nth-child(n+2)::before {
  content: "/";
  margin-right: 15px;
  margin-right: 0.9375rem;
}

.p-common-clients {
  background-color: #000;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
  z-index: 2;
}
.p-common-clients__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
}
.p-common-clients__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-common-clients__title {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.p-common-clients__ticker {
  margin-top: 80px;
  margin-top: 5rem;
  overflow: hidden;
}
.p-common-clients__track {
  overflow: hidden;
}
.p-common-clients__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-common-clients__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
  margin-right: 2.5rem;
  width: auto;
}
.p-common-clients__card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 150px;
  height: 9.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
  padding: 2.5rem;
  width: 250px;
  width: 15.625rem;
}
.p-common-clients__logo {
  -o-object-fit: contain;
  max-height: 100%;
  max-width: 100%;
     object-fit: contain;
}
.p-common-clients__note-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-common-clients__note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
}

/* （the_content()で出力したものへのスタイル） */
.p-common-content {
  color: #fff;
}

.p-common-content > *:first-child {
  margin-top: 0;
}

.p-common-content h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.35;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
  scroll-margin-top: 7.75rem;
}

.p-common-content h2::after {
  background: -webkit-gradient(linear, left top, right top, from(#12c6ca), to(#0a8a8d));
  background: linear-gradient(to right, #12c6ca, #0a8a8d);
  bottom: -1px;
  bottom: -0.0625rem;
  content: "";
  height: 3px;
  height: 0.1875rem;
  left: 0;
  position: absolute;
  width: 120px;
  width: 7.5rem;
}

.p-common-content h2:not(:first-child) {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-common-content h3 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 18px;
  padding-left: 1.125rem;
  position: relative;
  scroll-margin-top: 7.75rem;
}

.p-common-content h3::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#12c6ca), to(#0a8a8d));
  background: linear-gradient(to bottom, #12c6ca, #0a8a8d);
  bottom: 0.15em;
  content: "";
  left: 0;
  position: absolute;
  top: 0.15em;
  width: 4px;
  width: 0.25rem;
}

.p-common-content h3:not(:first-child) {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-common-content h4 {
  -moz-column-gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
       -webkit-column-gap: 0.625rem;
               column-gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-common-content h4:not(:first-child) {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-common-content h4::before {
  background: linear-gradient(135deg, #12c6ca, #0a8a8d);
  border-radius: 50%;
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 10px;
  height: 0.625rem;
  width: 10px;
  width: 0.625rem;
}

.p-common-content h5,
.p-common-content h6 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-common-content h5:not(:first-child),
.p-common-content h6:not(:first-child) {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-common-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.9;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-common-content h2 + p,
.p-common-content h3 + p {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-common-content h4 + p,
.p-common-content h5 + p,
.p-common-content h6 + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-common-content a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #12c6ca;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.p-common-content figure + p {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-common-content figure.wp-block-image {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-common-content figure.wp-block-image.aligncenter {
  text-align: center;
}

.p-common-content figure.wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}

.p-common-content figure.wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

.p-common-content figcaption {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

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

.p-common-content ul:not(:first-child),
.p-common-content ol:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-common-content ul {
  list-style: disc;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-common-content ol {
  list-style: decimal;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-common-content ul li,
.p-common-content ol li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-left: 4px;
  padding-left: 0.25rem;
}

.p-common-content ul li::marker,
.p-common-content ol li::marker {
  color: #0a8a8d;
  font-weight: 700;
}

.p-common-content li ul,
.p-common-content li ol {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-common-content blockquote {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #0a8a8d;
  border-left: 0.25rem solid #0a8a8d;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 24px 28px;
  padding: 1.5rem 1.75rem;
}

.p-common-content blockquote p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
}

.p-common-content blockquote p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-common-content .wp-block-table:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-common-content .wp-block-table {
  overflow-x: auto;
  width: 100%;
}

.p-common-content table {
  border: 0;
  border-collapse: collapse;
  min-width: 640px;
  min-width: 40rem;
  width: 100%;
}

.p-common-content th,
.p-common-content td {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  padding: 18px 20px;
  padding: 1.125rem 1.25rem;
  text-align: left;
}

.p-common-content tr:last-child > th,
.p-common-content tr:last-child > td {
  border-bottom: 0;
}

.p-common-content tr > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.p-common-content th {
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  width: 28%;
}

.p-common-content td {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
}

.p-common-content .wp-block-columns:not(:first-child),
.p-common-content .wp-block-group:not(:first-child),
.p-common-content .wp-block-media-text:not(:first-child),
.p-common-content .wp-block-buttons:not(:first-child) {
  margin-bottom: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-common-content .wp-block-button__link {
  --c-section-btn-text-color: #fff;
  --c-section-btn-border-color: #fff;
  --c-section-btn-fill-color: #fff;
  --c-section-btn-hover-text-color: #00343A;
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  border: 2px solid #fff;
  border: 2px solid var(--c-section-btn-border-color);
  border-radius: 5rem;
  color: #fff;
  color: var(--c-section-btn-text-color);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
  gap: 0.625rem;
  isolation: isolate;
  letter-spacing: 0.05em;
  line-height: normal;
  overflow: hidden;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, background-color 0.5s ease;
  transition: color 0.3s ease, background-color 0.5s ease;
}

.p-common-content .wp-block-button__link::before {
  background: var(--c-section-btn-fill-color);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -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;
  z-index: -1;
}
.p-common-content .wp-block-separator {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 48px;
  margin-bottom: 3rem;
  margin-top: 48px;
  margin-top: 3rem;
}

.p-common-cta {
  background-color: #000;
  position: relative;
  width: 100%;
  z-index: 1;
}
.p-common-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}
.p-common-cta__panel {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(115.788deg, #8ba5a6 2.516%, #667d7d 29.854%, #313c3d 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 50px 32px;
  padding: 3.125rem 2rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-common-cta__panel::before {
  background: url(../images/common/cta-bg.png) no-repeat center/cover;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.p-common-cta__panel > * {
  position: relative;
  z-index: 1;
}
.p-common-cta__title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
.p-common-cta__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.p-common-cta__btn {
  pointer-events: none;
}

.p-common-form {
  background-color: #505f60;
  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;
  gap: 24px;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 60px;
  padding: 3.75rem;
  width: 100%;
}

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

.p-common-form__label-wrap,
.p-common-form__label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.p-common-form__label {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-common-form__required,
.p-common-form__tag {
  color: #ff3b30;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-common-form__tag--optional {
  display: none;
}

.p-common-form__input,
.p-common-form__textarea {
  background-color: #000;
  border: 1px solid transparent;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 16px;
  padding: 1rem;
  width: 100%;
}

.p-common-form__input::-moz-placeholder, .p-common-form__textarea::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}

.p-common-form__input::-webkit-input-placeholder, .p-common-form__textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.p-common-form__input:-ms-input-placeholder, .p-common-form__textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.p-common-form__input::-ms-input-placeholder, .p-common-form__textarea::-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.p-common-form__input::placeholder,
.p-common-form__textarea::placeholder {
  color: #fff;
  opacity: 0.5;
}

.p-common-form__input:focus,
.p-common-form__textarea:focus,
.p-common-form__zip-button:focus,
.p-common-form__button:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.p-common-form__textarea {
  min-height: 250px;
  min-height: 15.625rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  resize: vertical;
}

.p-common-form__zip-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.p-common-form__zip-row .wpcf7-form-control-wrap {
  max-width: 100%;
  width: 230px;
  width: 14.375rem;
}

.p-common-form__group--zip .p-common-form__input {
  max-width: 100%;
  width: 230px;
  width: 14.375rem;
}

.p-common-form__zip-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  height: 59px;
  height: 3.6875rem;
  line-height: 1.8;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.p-common-form__zip-button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.p-common-form__checkboxes {
  background-color: #000;
  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;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  gap: 8px;
  gap: 0.5rem;
  line-height: 1.8;
  max-width: 100%;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  width: 300px;
  width: 18.75rem;
}

.p-common-form__agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-common-form__agree .wpcf7-list-item-label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  gap: 8px;
  gap: 0.5rem;
  line-height: 1.7;
}

.p-common-form__agree a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}

.p-common-form__turnstile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-common-form__turnstile .cf-turnstile,
.p-common-form__turnstile iframe {
  max-width: 100%;
}

.p-common-form__submit {
  --c-section-btn-text-color: #fff;
  --c-section-btn-border-color: #fff;
  --c-section-btn-fill-color: #fff;
  --c-section-btn-hover-text-color: #00343A;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border: 2px solid var(--c-section-btn-border-color);
  border-radius: 5rem;
  color: #fff;
  color: var(--c-section-btn-text-color);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  gap: 0.625rem;
  isolation: isolate;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px auto 0;
  margin: 1rem auto 0;
  max-width: 100%;
  min-width: 152px;
  min-width: 9.5rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-transition: color 0.3s ease, background-color 0.5s ease;
  transition: color 0.3s ease, background-color 0.5s ease;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-common-form__submit::before {
  background: var(--c-section-btn-fill-color);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -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;
  z-index: -1;
}

.p-common-form__submit::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2715%27%20height%3D%2711%27%20viewBox%3D%270%200%2015%2011%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M0%205.5H13%27%20stroke%3D%27black%27%20stroke-width%3D%272%27/%3E%3Cpath%20d%3D%27M9%201L14%205.5L9%2010%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27square%27/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: currentColor;
  content: "";
  display: block;
  height: 10.5px;
  height: 0.65625rem;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2715%27%20height%3D%2711%27%20viewBox%3D%270%200%2015%2011%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M0%205.5H13%27%20stroke%3D%27black%27%20stroke-width%3D%272%27/%3E%3Cpath%20d%3D%27M9%201L14%205.5L9%2010%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27square%27/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20width%3D%2715%27%20height%3D%2711%27%20viewBox%3D%270%200%2015%2011%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M0%205.5H13%27%20stroke%3D%27black%27%20stroke-width%3D%272%27/%3E%3Cpath%20d%3D%27M9%201L14%205.5L9%2010%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27square%27/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  width: 0.9375rem;
}

.wpcf7 form.is-loading .p-common-form__submit::after {
  -webkit-mask: none;
  -webkit-animation: nextai-contact-submit-spin 0.8s linear infinite;
          animation: nextai-contact-submit-spin 0.8s linear infinite;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  height: 16px;
  height: 1rem;
  -webkit-mask: none;
          mask: none;
  width: 16px;
  width: 1rem;
}

.p-common-form__submit:has(.p-common-form__button:disabled) {
  cursor: not-allowed;
  opacity: 0.5;
}

.p-common-form__button {
  background-color: transparent;
  border: 0;
  border-radius: inherit;
  color: inherit;
  cursor: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  min-height: 0;
  min-width: 152px;
  min-width: 9.5rem;
  padding: 10px 55px 10px 30px;
  padding: 0.625rem 3.4375rem 0.625rem 1.875rem;
  text-align: center;
  width: 100%;
}

.p-common-form__button:disabled {
  cursor: inherit;
}
.wpcf7-list-item {
  margin: 0;
}

.p-common-form input[type=radio],
.p-common-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.p-common-form__checkboxes .wpcf7-list-item label,
.p-common-form__agree .wpcf7-list-item label {
  cursor: pointer;
}

.p-common-form__checkboxes .wpcf7-list-item-label,
.p-common-form__agree .wpcf7-list-item-label {
  padding-left: 28px;
  padding-left: 1.75rem;
  position: relative;
}

.p-common-form__checkboxes .wpcf7-list-item-label::before,
.p-common-form__agree .wpcf7-list-item-label::before {
  background-color: transparent;
  border: 1px solid #fff;
  content: "";
  height: 20px;
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  width: 20px;
  width: 1.25rem;
}

.p-common-form__checkboxes .wpcf7-list-item-label::before {
  border-radius: 50%;
}

.p-common-form__checkboxes .wpcf7-list-item-label::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: none;
  height: 8px;
  height: 0.5rem;
  left: 6px;
  left: 0.375rem;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  width: 8px;
  width: 0.5rem;
}

.p-common-form__agree .wpcf7-list-item-label::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: none;
  height: 11px;
  height: 0.6875rem;
  left: 7px;
  left: 0.4375rem;
  position: absolute;
  top: 7px;
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
}

.p-common-form__checkboxes input[type=radio]:checked + .wpcf7-list-item-label::after,
.p-common-form__agree input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
}

.p-common-form__checkboxes input[type=radio]:focus + .wpcf7-list-item-label::before,
.p-common-form__agree input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.p-common-form .wpcf7-not-valid-tip {
  color: #ffb4ae;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.wpcf7 form.wpcf7-form.sent .wpcf7-response-output,
.wpcf7 form.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7 form.wpcf7-form.spam .wpcf7-response-output,
.wpcf7 form.wpcf7-form.failed .wpcf7-response-output {
  background-color: #101717;
  border: 0;
  color: #ffdedb;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 16px auto 0;
  margin: 1rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 16px 20px 16px 52px;
  padding: 1rem 1.25rem 1rem 3.25rem;
  position: relative;
  width: 100%;
}

.wpcf7 form.wpcf7-form.spam .wpcf7-response-output::before,
.wpcf7 form.wpcf7-form.failed .wpcf7-response-output::before {
  border: 1px solid #ffb4ae;
  border-radius: 50%;
  content: "";
  height: 16px;
  height: 1rem;
  left: 20px;
  left: 1.25rem;
  position: absolute;
  top: 18px;
  top: 1.125rem;
  width: 16px;
  width: 1rem;
}

.wpcf7 form.wpcf7-form.spam .wpcf7-response-output::after,
.wpcf7 form.wpcf7-form.failed .wpcf7-response-output::after {
  background-color: #ffb4ae;
  -webkit-box-shadow: 0 0.5rem 0 #ffb4ae;
          box-shadow: 0 0.5rem 0 #ffb4ae;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 27px;
  left: 1.6875rem;
  position: absolute;
  top: 23px;
  top: 1.4375rem;
  width: 2px;
  width: 0.125rem;
}

.wpcf7-spinner {
  display: none;
}

@-webkit-keyframes nextai-contact-submit-spin {
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes nextai-contact-submit-spin {
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}
.p-contact {
  background-color: #000;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-contact__container {
  background-color: #505f60;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 60px;
  padding: 3.75rem;
}

.p-lower-mv {
  margin-top: 100px;
  margin-top: 6.25rem;
  overflow: hidden;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
  width: 100%;
}
.p-lower-mv__inner {
  margin-left: auto;
  margin-right: auto;
}
.p-lower-mv__title-wrap {
  position: relative;
}
.p-lower-mv__title {
  word-wrap: normal;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  visibility: hidden;
  width: 100%;
  word-break: normal;
}
.p-lower-mv__glitch-layer {
  word-wrap: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-size: 6rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  word-break: normal;
}
.p-lower-mv__title-wrap.is-glitch-ready .p-lower-mv__title {
  opacity: 0;
}
.p-lower-mv__title-wrap.is-glitch-ready .p-lower-mv__glitch-layer {
  opacity: 1;
}
.p-lower-mv__glitch-source, .p-lower-mv__glitch-channel, .p-lower-mv__glitch-slice {
  word-wrap: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  letter-spacing: inherit;
  line-height: inherit;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-transform: inherit;
  top: 0;
  white-space: normal;
  word-break: normal;
}
.p-lower-mv__glitch-source {
  will-change: filter, opacity, transform;
  z-index: 0;
}
.p-lower-mv__glitch-channel {
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}
.p-lower-mv__glitch-channel--cyan {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
  z-index: 1;
}
.p-lower-mv__glitch-channel--red {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
  z-index: 3;
}
.p-lower-mv__glitch-slice {
  opacity: 0;
  will-change: transform, clip-path, opacity;
  z-index: 4;
}
.p-lower-mv__glitch-canvas {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}
.p-lower-mv__glitch-flash {
  background: #fff;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
}

.p-news-list {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 80px;
  padding-top: 5rem;
}
.p-news-list__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
.p-news-list__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;
  width: 100%;
}
.p-news-list__item {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  min-height: 130px;
  min-height: 8.125rem;
  overflow: hidden;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  position: relative;
  text-decoration: none;
}
.p-news-list__item::before {
  background: #505f60;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center;
          transform-origin: 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;
  z-index: 0;
}
.p-news-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 8px;
  gap: 0.5rem;
  position: relative;
  width: 172px;
  width: 10.75rem;
  z-index: 1;
}
.p-news-list__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-news-list__category {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-news-list__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-news-list__more {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-news-list__more.is-loading .p-news-list__loader {
  display: inline-block;
}
.p-news-list__more[hidden] {
  display: none;
}
.p-news-list__load-more {
  background-color: transparent;
}
.p-news-list__load-more:disabled {
  cursor: wait;
  opacity: 0.6;
}
.p-news-list__loader {
  -webkit-animation: news-list-loader 0.7s linear infinite;
          animation: news-list-loader 0.7s linear infinite;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  display: none;
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem;
}
.p-news-list__empty {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

@-webkit-keyframes news-list-loader {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes news-list-loader {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-page {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}

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

.p-pagenavi .first,
.p-pagenavi .last,
.p-pagenavi .current,
.p-pagenavi .extend,
.p-pagenavi .page {
  color: #AAAAAA;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.p-pagenavi .page {
  padding: 10px;
  padding: 0.625rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-pagenavi .extend:first-of-type {
  padding-left: 8px;
  padding-left: 0.5rem;
}

.p-pagenavi .extend:last-of-type {
  padding-right: 8px;
  padding-right: 0.5rem;
}

.p-pagenavi .current {
  background-color: #111111;
  border-radius: 0.875rem;
  min-width: 40px;
  min-width: 2.5rem;
  padding: 11px 10px;
  padding: 0.6875rem 0.625rem;
  text-align: center;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}

.p-pagenavi .previouspostslink {
  margin-right: 26px;
  margin-right: 1.625rem;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-pagenavi .nextpostslink {
  margin-left: 26px;
  margin-left: 1.625rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-pagenavi .previouspostslink span,
.p-pagenavi .nextpostslink span {
  aspect-ratio: 1/1;
  background: url(../images/common/icon-arrow-left2.svg) no-repeat center/contain;
  display: block;
  height: auto;
  -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;
  width: 16px;
  width: 1rem;
}

.p-pagenavi .nextpostslink span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-service-head {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}
.p-service-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
.p-service-head__lead {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-service-head__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-service-head__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  -ms-flex: 0 0 calc(100% / var(--p-service-head-cols, 4));
      flex: 0 0 calc(100% / var(--p-service-head-cols, 4));
  max-width: calc(100% / 4);
  max-width: calc(100% / var(--p-service-head-cols, 4));
}
.p-service-head__card {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: #fff;
  display: block;
  height: 300px;
  height: 18.75rem;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.p-service-head__card-bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-service-head__card-bg::after {
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-service-head__card-bg picture,
.p-service-head__card-bg img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
}
.p-service-head__card-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.p-service-head__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}
.p-service-head__card-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border-radius: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 10px;
  gap: 0.625rem;
  letter-spacing: 0.05em;
  line-height: normal;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}
.p-service-head__card-btn-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 10.5px;
  height: 0.65625rem;
  position: relative;
  width: 15px;
  width: 0.9375rem;
}
.p-service-head__card-btn-icon::before {
  border-top: 2px solid currentColor;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.p-service-head__card-btn-icon::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 7px;
  height: 0.4375rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 7px;
  width: 0.4375rem;
}

.p-service-section {
  --service-number-color-start: #12c6ca;
  --service-number-color-end: #0a8a8d;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
}
.p-service-section--last {
  padding-bottom: 240px;
  padding-bottom: 15rem;
}
.p-service-section__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
}
.p-service-section__number {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, var(--service-number-color-start), var(--service-number-color-end));
  background-clip: text;
  font-family: "Roboto", sans-serif;
  font-size: 128px;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}
.p-service-section__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}
.p-service-section__desc {
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
  -ms-flex: 0 0 35rem;
      flex: 0 0 35rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-service-section__img {
  aspect-ratio: 600/338;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
  -ms-flex: 0 0 37.5rem;
      flex: 0 0 37.5rem;
  overflow: hidden;
}
.p-service-section__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-service-section__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}
.p-service-section__service-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  position: relative;
}
.p-service-section__service-title::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#12c6ca), to(#0a8a8d));
  background: linear-gradient(to bottom, #12c6ca, #0a8a8d);
  bottom: 15%;
  content: "";
  left: 0;
  position: absolute;
  top: 15%;
  width: 10px;
  width: 0.625rem;
}
.p-service-section__service-desc {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-service-section__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 24px;
  margin: 0 0 1.5rem;
  padding: 0;
}
.p-service-section__tag {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2.5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
}
.p-service-section__works-list {
  grid-gap: 0.75rem;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 40px 0 0;
  margin: 2.5rem 0 0;
  padding: 0;
}
.p-service-section__works-card--empty {
  pointer-events: none;
}
.p-service-section__works-link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.p-service-section__works-link::before {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.p-service-section__works-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-service-section__works-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-service-section__works-label {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 24px 16px 12px;
  padding: 1.5rem 1rem 0.75rem;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.p-service-section__works-title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #fff;
  display: -webkit-box;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  overflow: hidden;
}
.p-service-section__works-client {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
  margin-top: 0.125rem;
  overflow: hidden;
}

.p-single-article {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  overflow: hidden;
  padding-top: 80px;
  padding-top: 5rem;
  width: 100%;
}
.p-single-article__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}

.p-single-contents {
  margin-top: 80px;
  margin-top: 5rem;
}
.p-single-contents__content {
  border-top: 1px solid #fff;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-single-mv__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: 24px;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.p-single-mv__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
  gap: 0.75rem 1.25rem;
}
.p-single-mv__date {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-single-mv__categories {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}
.p-single-mv__category {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}
.p-single-mv__category-link {
  white-space: nowrap;
}
.p-single-mv__title {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}
.p-single-mv__details {
  grid-gap: 2.5rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  margin: 0;
  padding: 32px 0 0;
  padding: 2rem 0 0;
}
.p-single-mv__details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  margin: 0;
  min-width: 0;
}
.p-single-mv__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  min-width: 0;
}
.p-single-mv__detail-label {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}
.p-single-mv__detail-value {
  word-wrap: anywhere;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  min-width: 0;
}
.p-single-mv__overview {
  min-width: 0;
}
.p-single-mv__overview-text {
  word-wrap: anywhere;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 8px 0 0;
  margin: 0.5rem 0 0;
}
.p-single-mv__detail-link {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-single-mv__thumbnail {
  margin-top: 48px;
  margin-top: 3rem;
}
.p-single-mv__thumbnail-image {
  -o-object-fit: cover;
  aspect-ratio: 1000/560;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-top-about {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
}
.p-top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.p-top-about__heading {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}
.p-top-about__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  max-width: 1000px;
  max-width: 62.5rem;
  width: 100%;
}
.p-top-about__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.p-top-fv {
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-top-fv__scanline {
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0, 0, 0, 0.18) 2px, rgba(0, 0, 0, 0.18) 3px);
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 80;
}
.p-top-fv__glitch-canvas {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 70;
}
.p-top-fv__flash {
  background: #01afb3;
  bottom: 0;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 90;
}
.p-top-fv__wipe {
  background: rgba(100, 210, 255, 0.06);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}
.p-top-fv__slide {
  bottom: 0;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.p-top-fv__slide--1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  padding-left: max(20px, 40vw - 440px);
  padding-right: max(20px, 40vw - 440px);
  width: 90%;
}
.p-top-fv__slide--2, .p-top-fv__slide--3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  opacity: 0;
}
.p-top-fv__slide1-line {
  display: block;
  line-height: 1;
  overflow: visible;
}
.p-top-fv__slide1-line--upper {
  opacity: 0;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
}
.p-top-fv__slide1-line--lower {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 6px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  white-space: nowrap;
}
.p-top-fv__slide1-text {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 110px;
  font-size: 6.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  opacity: 0;
  will-change: transform, opacity;
}
.p-top-fv__slide1-text--upper {
  -webkit-text-stroke: max(1px, min(0.2vw, 2px)) #fff;
  color: transparent;
  -webkit-transform: translateX(250px) translateY(-60px) scale(4) rotate(-8deg);
          transform: translateX(250px) translateY(-60px) scale(4) rotate(-8deg);
}
.p-top-fv__slide1-text--lower {
  color: #fff;
  -webkit-transform: translateX(-250px) translateY(60px) scale(4) rotate(8deg);
          transform: translateX(-250px) translateY(60px) scale(4) rotate(8deg);
}
.p-top-fv__slide1-accent {
  color: rgba(1, 175, 179, 0.9);
  font-style: italic;
}
.p-top-fv__slide1-divider {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: -webkit-gradient(linear, left top, right top, from(rgba(1, 175, 179, 0.9)), to(transparent));
  background: linear-gradient(to right, rgba(1, 175, 179, 0.9), transparent);
  height: 2px;
  margin: 6px 0;
  opacity: 0;
  width: 0;
}
.p-top-fv__slide2-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.18em;
  overflow: visible;
}
.p-top-fv__slide2-word {
  color: #fff;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  opacity: 0;
  text-transform: uppercase;
  -webkit-transform: translateX(100px) translateY(-80%) scale(5) rotate(-10deg);
          transform: translateX(100px) translateY(-80%) scale(5) rotate(-10deg);
}
.p-top-fv__slide2-word--thin {
  color: rgba(1, 175, 179, 0.85);
  font-size: 80px;
  font-size: 5rem;
  font-weight: 300;
  margin-left: 0.18em;
  margin-right: 0.18em;
}
.p-top-fv__slide2-word--italic {
  font-style: italic;
}
.p-top-fv__slide2-word--teal {
  color: rgba(1, 175, 179, 0.9);
}
.p-top-fv__slide2-accent {
  -webkit-text-stroke: max(0.8px, min(0.15vw, 1.5px)) #fff;
  color: transparent;
  font-style: italic;
}
.p-top-fv__slide3-inner {
  text-align: center;
}
.p-top-fv__slide3-text {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  opacity: 0;
}
.p-top-fv__slide3-text--upper {
  -webkit-text-stroke: max(0.8px, min(0.15vw, 1.5px)) rgba(1, 175, 179, 0.85);
  color: transparent;
  -webkit-transform: scale(4) translateX(150px) translateY(80px) rotate(-7deg);
          transform: scale(4) translateX(150px) translateY(80px) rotate(-7deg);
}
.p-top-fv__slide3-text--lower {
  color: #fff;
  -webkit-transform: scale(4) translateX(-150px) translateY(-80px) rotate(7deg);
          transform: scale(4) translateX(-150px) translateY(-80px) rotate(7deg);
}
.p-top-fv__slide3-dot {
  color: rgba(1, 175, 179, 0.9);
}

.p-top-message {
  --message-overlay-opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 200px;
  margin-bottom: 12.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 200px;
  padding-top: 12.5rem;
  position: relative;
  z-index: 1;
}
.p-top-message::after {
  background: #000;
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--message-overlay-opacity);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.p-top-message__wrapper {
  bottom: 0;
  clip-path: inset(20% 20% 20% 20%);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-top-message__bg {
  background: #000;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-top-message__bg picture,
.p-top-message__bg img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  opacity: 0.65;
  width: 100%;
}
.p-top-message__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.p-top-message__content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-message__ceo-image-wrap {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: calc(50vh - 15.625rem);
}
.p-top-message__ceo-image {
  height: 500px;
  height: 31.25rem;
  width: 400px;
  width: 25rem;
}
.p-top-message__ceo-image picture,
.p-top-message__ceo-image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-top-message__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  gap: 3.75rem;
}
.p-top-message__ceo-name {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-top-message__ceo-position {
  margin-right: 24px;
  margin-right: 1.5rem;
}
.p-top-message__bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  gap: 1.75rem;
}
.p-top-message__bio-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-top-message__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
.p-top-message__sns-x {
  height: 30px;
  height: 1.875rem;
  width: 29px;
  width: 1.8125rem;
}
.p-top-message__sns-instagram {
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
}
.p-top-message__sns-facebook {
  height: 34px;
  height: 2.125rem;
  width: 34px;
  width: 2.125rem;
}
.p-top-message__sns-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: auto;
}
.p-top-message__sns-link img {
  display: block;
  height: 100%;
  width: auto;
}

.p-top-news {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
  position: relative;
  z-index: 1;
}
.p-top-news__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  width: 100%;
}
.p-top-news__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
.p-top-news__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;
  width: 100%;
}
.p-top-news__item {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  min-height: 130px;
  min-height: 8.125rem;
  overflow: hidden;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  position: relative;
  text-decoration: none;
}
.p-top-news__item::before {
  background: #505f60;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center;
          transform-origin: 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;
  z-index: 0;
}
.p-top-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 8px;
  gap: 0.5rem;
  position: relative;
  width: 172px;
  width: 10.75rem;
  z-index: 1;
}
.p-top-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-top-news__category {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.p-top-news__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-top-news__btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 40px;
  margin-top: 2.5rem;
}

html.is-opening-active,
body.is-opening-active {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}

.p-top-opening {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2000;
}
.p-top-opening__logo-wrap {
  --logo-stroke: url(#logoGradient);
  opacity: 0;
  position: relative;
  scale: 1.8;
  scale: var(--logo-scale, 1.8);
  width: 100%;
  z-index: 2001;
}
.p-top-opening__logo-base {
  position: relative;
  z-index: 2;
}
.p-top-opening__logo-wrap svg, .p-top-opening__logo-wrap img {
  display: block;
  height: auto;
  width: 100%;
}
.p-top-opening #logoMain path {
  stroke: var(--logo-stroke);
}
.p-top-opening__logo-channel {
  bottom: 0;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  will-change: transform, opacity;
}
.p-top-opening__logo-channel--cyan {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(120deg) saturate(3.2);
  z-index: 1;
}
.p-top-opening__logo-channel--red {
  -webkit-filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
          filter: brightness(1.1) contrast(1.1) sepia(1) hue-rotate(-55deg) saturate(3.4);
  z-index: 3;
}
.p-top-opening__flash {
  background: #fff;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2006;
}
.p-top-opening__mask {
  background: transparent;
  height: 4%;
  left: 30%;
  pointer-events: none;
  position: absolute;
  right: 30%;
  top: 48%;
  z-index: 5;
}

.glitch-slice {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: transform, clip-path, opacity;
  z-index: 4;
}
.glitch-slice img {
  display: block;
  height: auto;
  width: 100%;
}

.mask-slice {
  will-change: transform;
}
.mask-slice::after {
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.p-top-orb {
  background: url(../images/top/orb-circle-bg.png) no-repeat center/cover;
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  height: 700px;
  height: 43.75rem;
  left: calc(70% - 21.875rem);
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  top: calc(50% - 21.875rem);
  width: 700px;
  width: 43.75rem;
  will-change: transform, opacity;
  z-index: 0;
}

.p-top-service {
  --service-stack-start-sp: 0px;
  --service-stack-start-sp: 0rem;
  --service-stack-step-sp: 10px;
  --service-stack-step-sp: 0.625rem;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
}
.p-top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  position: relative;
}
.p-top-service__head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}
.p-top-service__lead-wrap {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
.p-top-service__lead {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
}
.p-top-service__list-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  max-width: 78.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
.p-top-service__list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  -webkit-perspective: 187.5rem;
          perspective: 187.5rem;
  width: 98%;
}
.p-top-service__item {
  -webkit-transform: rotateX(-10deg) translateZ(-5px);
          transform: rotateX(-10deg) translateZ(-5px);
}
.p-top-service__item:nth-child(n+3) {
  margin-top: -230px;
  margin-top: -14.375rem;
}
.p-top-service__pin {
  height: 100%;
  left: 0;
  width: 100%;
}
.p-top-service__item-wrapper {
  --service-overlay-opacity: 0;
  --service-dark-overlay-opacity: 0;
  --service-border-opacity: 0.8;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, var(--service-border-opacity));
  border-top: 0.0625rem solid rgba(255, 255, 255, var(--service-border-opacity));
  height: 100%;
  position: relative;
  -webkit-transition: border-color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: border-color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, border-color 0.3s ease-out;
  transition: transform 0.3s ease-out, border-color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  width: 100%;
  z-index: 1;
}
.p-top-service__item-wrapper::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#12c6ca), to(#0a8a8d));
  background: linear-gradient(to bottom, #12c6ca, #0a8a8d);
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--service-overlay-opacity);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  z-index: -1;
}
.p-top-service__item-wrapper::after {
  background: #000;
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--service-dark-overlay-opacity);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  will-change: opacity;
  z-index: 2;
}
.p-top-service__item-wrapper.is-active {
  --service-overlay-opacity: 1;
  --service-border-opacity: 0;
}
.p-top-service__item-wrapper.is-active .p-top-service__item-title,
.p-top-service__item-wrapper.is-active .p-top-service__item-num,
.p-top-service__item-wrapper.is-active .p-top-service__item-text {
  color: #00343A;
}
.p-top-service__item-wrapper.is-active .p-top-service__item-btn {
  border-color: #00343A;
  color: #00343A;
}
.p-top-service__item-wrapper.is-shifted {
  -webkit-transform: translateY(-14.375rem);
          transform: translateY(-14.375rem);
}
.p-top-service__item-wrapper--dummy {
  --service-overlay-opacity: 0.8;
  background: url(../images/top/service-card-bg.jpg) no-repeat center/cover;
}
.p-top-service__item-wrapper--dummy::before {
  background: #000;
  pointer-events: none;
  z-index: 0;
}
.p-top-service__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  height: 360px;
  height: 22.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  padding: 2.5rem;
  width: 100%;
}
.p-top-service__item-inner--dummy {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 420px;
  height: 26.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.p-top-service__item-inner--dummy .p-top-service__lead-wrap {
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
}
.p-top-service__item-body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  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-positive: 1;
          flex-grow: 1;
  gap: 30px;
  gap: 1.875rem;
}
.p-top-service__item-head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.2;
  width: 100%;
}
.p-top-service__item-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.p-top-service__item-num {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  white-space: nowrap;
}
.p-top-service__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  overflow: hidden;
  width: 400px;
  width: 25rem;
}
.p-top-service__item-img picture,
.p-top-service__item-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-top-service__item-content {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.p-top-service__item-content.is-content-hidden {
  opacity: 0;
  pointer-events: none;
}
.p-top-service__item-content.is-content-visible {
  opacity: 1;
  pointer-events: auto;
}
.p-top-service__item-text {
  -webkit-box-orient: vertical;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  color: #fff;
  display: -webkit-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  overflow: hidden;
}
.p-top-service__item-text.is-line-ready {
  -webkit-box-orient: initial;
  line-clamp: initial;
  -webkit-line-clamp: initial;
  display: block;
}
.p-top-service__item-line-clip {
  display: block;
}
.p-top-service__item-line {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}
.p-top-service__item-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-color: #fff;
  color: #fff;
}

.p-top-works {
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  width: 100%;
}
.p-top-works__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}
.p-top-works__desc {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  width: 100%;
}
.p-top-works__slider {
  cursor: none;
  height: 550px;
  height: 34.375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 1500px;
  max-width: 93.75rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-top-works__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
}
.p-top-works__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  width: 550px;
  width: 34.375rem;
}
.p-top-works__slide-link {
  display: block;
  height: 100%;
  padding-bottom: 105px;
  padding-bottom: 6.5625rem;
  padding-top: 105px;
  padding-top: 6.5625rem;
  position: relative;
  width: 100%;
}
.p-top-works__slide-img {
  aspect-ratio: 500/280;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 500px;
  width: 31.25rem;
}
.p-top-works__slide-img picture,
.p-top-works__slide-img img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  width: 100%;
}
.p-top-works__slide-content {
  backdrop-filter: blur(4px);
  background-color: rgba(26, 32, 32, 0.5);
  border: 2px solid #fff;
  bottom: 105px;
  bottom: 6.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 150px;
  min-height: 9.375rem;
  padding: 10px 24px;
  padding: 0.625rem 1.5rem;
  position: absolute;
  right: 0;
  width: 350px;
  width: 21.875rem;
  z-index: 1;
}
.p-top-works__slide-title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  display: -webkit-box;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
}
.p-top-works__slide-client {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #fff;
  display: -webkit-box;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
}
.p-top-works__glitch-canvas {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.p-top-works__cursor {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  display: none;
  height: 150px;
  height: 9.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 150px;
  width: 9.375rem;
  will-change: transform;
  z-index: 10;
}
.p-top-works__cursor.--view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-works__cursor-bg {
  border-radius: 50%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.p-top-works__cursor-bg picture,
.p-top-works__cursor-bg img {
  -o-object-fit: cover;
  bottom: 0;
  height: 100%;
  left: 0;
     object-fit: cover;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.p-top-works__cursor-state {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
.p-top-works__cursor-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-top-works__cursor-arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 22px;
  height: 1.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  width: 2.25rem;
}
.p-top-works__cursor-arrow--prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-top-works__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-top-works__sp-nav {
  display: none;
}
.p-top-works__sp-nav-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../images/top/work-slider-nav-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 40px;
  height: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;
  width: 40px;
  width: 2.5rem;
}
.p-top-works__sp-nav-btn svg {
  display: block;
  height: 16px;
  height: 1rem;
  width: 22px;
  width: 1.375rem;
}
.p-top-works__sp-nav-btn--prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-works-head {
  padding-top: 40px;
  padding-top: 2.5rem;
}
.p-works-head__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-works-head__item {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-works-head__item.is-active {
  opacity: 1;
}

.p-works-list {
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  padding-top: 80px;
  padding-top: 5rem;
  position: relative;
}
.p-works-list__grid {
  grid-gap: 0.75rem;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-works-list__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.p-works-list__link::before {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.p-works-list__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-works-list__img picture,
.p-works-list__img img {
  display: block;
  height: 100%;
  width: 100%;
}
.p-works-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-works-list__label {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 24px 16px 12px;
  padding: 1.5rem 1rem 0.75rem;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.p-works-list__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #fff;
  display: -webkit-box;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  overflow: hidden;
}
.p-works-list__client {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
  margin-top: 0.125rem;
  overflow: hidden;
}
.p-works-list__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-works-list__more.is-loading .p-works-list__loader {
  display: inline-block;
}
.p-works-list__more[hidden] {
  display: none;
}
.p-works-list__load-more {
  background-color: transparent;
}
.p-works-list__load-more:disabled {
  cursor: wait;
  opacity: 0.6;
}
.p-works-list__loader {
  -webkit-animation: works-list-loader 0.7s linear infinite;
          animation: works-list-loader 0.7s linear infinite;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  display: none;
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem;
}
.p-works-list__outro {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 80px;
  margin-top: 5rem;
  text-align: center;
}
.p-works-list__more:not([hidden]) ~ .p-works-list__outro {
  display: none;
}
.p-works-list__empty {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

@-webkit-keyframes works-list-loader {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes works-list-loader {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* アニメーション初期状態 */
.js-fadeInBlur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}

.js-fadeInY {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  visibility: hidden;
}

.u-hidden {
  overflow: hidden;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-text-block {
  display: inline-block;
}

.u-z-index10 {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) and (max-width: 1250px){
  html {
    font-size: 1.28vw;
  }
}

@media screen and (min-width: 376px) and (max-width: 767px){
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 767px){
  a[href^="tel:"] {
    pointer-events: initial;
  }
  html {
    scroll-padding-top: 3.75rem;
  }
  .l-drawer {
    display: block;
  }
  .l-footer {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .l-footer__logo-area {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }
  .l-footer__logo-link {
    width: 100%;
  }
  .l-footer__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    gap: 2.5rem;
    max-width: 540px;
    max-width: 33.75rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
  .l-footer__nav-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    gap: 1rem;
    height: auto;
  }
  .l-footer__nav-sub-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    gap: 0.25rem;
    margin-left: 8px;
    margin-left: 0.5rem;
    margin-top: 6px;
    margin-top: 0.375rem;
  }
  .l-footer__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    gap: 1rem;
  }
  .l-header {
    height: 60px;
    height: 3.75rem;
  }
  .l-header__inner {
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
  .l-header__logo-link {
    height: 20px;
    height: 1.25rem;
  }
  .l-header__menu-button {
    display: block;
    margin-left: auto;
  }
  .l-header__nav {
    display: none;
  }
  .l-inner {
    max-width: 540px;
    max-width: 33.75rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
  .c-page-top__btn {
    height: 87px;
    height: 5.4375rem;
    width: 87px;
    width: 5.4375rem;
  }
  .c-section-btn {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 8px 20px;
    padding: 0.5rem 1.25rem;
  }
  .c-section-btn--xs {
    padding: 4px 16px;
    padding: 0.25rem 1rem;
  }
  .c-section-title__title {
    font-size: 48px;
    font-size: 3rem;
  }
  .c-section-title--sm .c-section-title__title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-404 {
    margin-bottom: 80px;
    margin-bottom: 5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-404__btn {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-about-bg {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-about-company {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-about-company__heading {
    font-size: 48px;
    font-size: 3rem;
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
  .p-about-company__row {
    display: block;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-top: 16px;
    padding-top: 1rem;
  }
  .p-about-company__label {
    margin-bottom: 6px;
    margin-bottom: 0.375rem;
    width: auto;
  }
  .p-about-company__value {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-about-member {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-about-member__list {
    gap: 80px;
    gap: 5rem;
    grid-template-columns: 1fr;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-about-member__list--single .p-about-member__item {
    display: block;
  }
  .p-about-member__list--single .p-about-member__img-wrap {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }
  .p-about-member__img-wrap {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }
  .p-about-member__body {
    gap: 16px;
    gap: 1rem;
  }
  .p-about-member__position {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .p-about-member__bio {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-about-message__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    gap: 3rem;
  }
  .p-about-message__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-about-message__content {
    display: contents;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-about-message__ceo-image-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    top: auto;
  }
  .p-about-message__ceo-image {
    aspect-ratio: 4/3;
    height: auto;
    width: 100%;
  }
  .p-about-message__text-area {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .p-about-message__ceo-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-about-message__ceo-position {
    margin-right: 20px;
    margin-right: 1.25rem;
  }
  .p-about-message__bio {
    gap: 20px;
    gap: 1.25rem;
  }
  .p-about-message__bio-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-about-philosophy {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-about-philosophy__item {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-about-philosophy__heading {
    font-size: 40px;
    font-size: 2.5rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
  }
  .p-about-philosophy__subheading {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
  }
  .p-about-philosophy__subheading[lang=en] {
    font-size: 34px;
    font-size: 2.125rem;
  }
  .p-about-philosophy__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-about-philosophy__text:not(:last-child) {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }
  .p-breadcrumb {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .p-breadcrumb__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }
  .p-breadcrumb__wrapper {
    overflow-x: auto;
    padding-bottom: 7px;
    padding-bottom: 0.4375rem;
    white-space: nowrap;
  }
  .p-breadcrumb__wrapper::-webkit-scrollbar {
    height: 5px;
    height: 0.3125rem;
  }
  .p-breadcrumb__wrapper::-webkit-scrollbar-thumb {
    background-color: #c7c7c7;
    border-radius: 100vmax;
  }
  .p-common-clients {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-common-clients__ticker {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-common-clients__item {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .p-common-clients__card {
    height: 80px;
    height: 5rem;
    padding: 20px;
    padding: 1.25rem;
    width: 140px;
    width: 8.75rem;
  }
  .p-common-clients__note {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .p-common-content h2 {
    font-size: 22px;
    font-size: 1.375rem;
    padding-bottom: 14px;
    padding-bottom: 0.875rem;
    scroll-margin-top: 5.25rem;
  }
  .p-common-content h2::after {
    width: 80px;
    width: 5rem;
  }
  .p-common-content h2:not(:first-child) {
    margin-top: 44px;
    margin-top: 2.75rem;
  }
  .p-common-content h3 {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 14px;
    padding-left: 0.875rem;
    scroll-margin-top: 5.25rem;
  }
  .p-common-content h3:not(:first-child) {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  .p-common-content h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-common-content h4:not(:first-child) {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-common-content h5,
  .p-common-content h6 {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-common-content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .p-common-content h2 + p,
  .p-common-content h3 + p {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-common-content figure + p {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-common-content figure:not(:first-child) {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-common-content ul li,
  .p-common-content ol li {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-common-content blockquote {
    padding: 20px;
    padding: 1.25rem;
  }
  .p-common-content th,
  .p-common-content td {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 14px 16px;
    padding: 0.875rem 1rem;
  }
  .p-common-content .wp-block-columns:not(:first-child),
  .p-common-content .wp-block-group:not(:first-child),
  .p-common-content .wp-block-media-text:not(:first-child),
  .p-common-content .wp-block-buttons:not(:first-child) {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-common-content .wp-block-button__link {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 8px 20px;
    padding: 0.5rem 1.25rem;
  }
  .p-common-content .wp-block-separator {
    margin-bottom: 36px;
    margin-bottom: 2.25rem;
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  .p-common-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    gap: 0.75rem;
  }
  .p-common-cta__panel {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    gap: 12px;
    gap: 0.75rem;
    min-height: 200px;
    min-height: 12.5rem;
    padding: 24px 16px;
    padding: 1.5rem 1rem;
  }
  .p-common-cta__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-common-cta__text {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-common-form {
    padding: 20px 12px 40px;
    padding: 1.25rem 0.75rem 2.5rem;
  }
  .p-common-form__label {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-common-form__required,
  .p-common-form__tag {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-common-form__input,
  .p-common-form__textarea {
    padding: 14px 10px;
    padding: 0.875rem 0.625rem;
  }
  .p-common-form__textarea {
    min-height: 200px;
    min-height: 12.5rem;
  }
  .p-common-form__zip-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    gap: 0.75rem;
  }
  .p-common-form__zip-row .wpcf7-form-control-wrap {
    width: 100%;
  }
  .p-common-form__group--zip .p-common-form__input {
    width: 100%;
  }
  .p-common-form__zip-button {
    height: 52px;
    height: 3.25rem;
    padding-bottom: 11px;
    padding-bottom: 0.6875rem;
    padding-top: 11px;
    padding-top: 0.6875rem;
  }
  .p-common-form__checkboxes {
    width: 100%;
  }
  .p-common-form__submit::after {
    right: 20px;
    right: 1.25rem;
  }
  .p-common-form__button {
    padding: 8px 45px 8px 20px;
    padding: 0.5rem 2.8125rem 0.5rem 1.25rem;
  }
  .wpcf7 form.wpcf7-form.spam .wpcf7-response-output,
  .wpcf7 form.wpcf7-form.failed .wpcf7-response-output {
    padding: 14px 16px 14px 44px;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
  }
  .wpcf7 form.wpcf7-form.spam .wpcf7-response-output::before,
  .wpcf7 form.wpcf7-form.failed .wpcf7-response-output::before {
    left: 16px;
    left: 1rem;
    top: 16px;
    top: 1rem;
  }
  .wpcf7 form.wpcf7-form.spam .wpcf7-response-output::after,
  .wpcf7 form.wpcf7-form.failed .wpcf7-response-output::after {
    left: 23px;
    left: 1.4375rem;
    top: 21px;
    top: 1.3125rem;
  }
  .p-contact {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-contact__container {
    padding: 24px 20px;
    padding: 1.5rem 1.25rem;
  }
  .p-lower-mv {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-lower-mv__title {
    font-size: 48px;
    font-size: 3rem;
  }
  .p-lower-mv__glitch-layer {
    font-size: 48px;
    font-size: 3rem;
  }
  .p-news-list {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-news-list__list-wrapper {
    max-width: none;
    padding: 0;
  }
  .p-news-list__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    gap: 0.75rem;
    min-height: auto;
    padding: 24px 12px;
    padding: 1.5rem 0.75rem;
  }
  .p-news-list__meta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    gap: 0.75rem;
    width: auto;
  }
  .p-news-list__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-news-list__category {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-news-list__title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .p-news-list__empty {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-page {
    margin-bottom: 80px;
    margin-bottom: 5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-pagenavi .previouspostslink {
    margin-right: 20px;
    margin-right: 1.25rem;
  }
  .p-pagenavi .nextpostslink {
    margin-left: 20px;
    margin-left: 1.25rem;
  }
  .p-service-head {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-service-head__lead {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .p-service-head__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    width: 50%;
  }
  .p-service-head__card {
    height: 140px;
    height: 8.75rem;
  }
  .p-service-head__card-body {
    gap: 12px;
    gap: 0.75rem;
    padding: 16px;
    padding: 1rem;
  }
  .p-service-head__card-title {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  .p-service-head__card-btn {
    font-size: 12px;
    font-size: 0.75rem;
    gap: 8px;
    gap: 0.5rem;
    padding: 6px 16px;
    padding: 0.375rem 1rem;
  }
  .p-service-section {
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-service-section--last {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }
  .p-service-section__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8px;
    gap: 0.5rem;
  }
  .p-service-section__number {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-service-section__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
    gap: 1.5rem;
  }
  .p-service-section__desc {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
  }
  .p-service-section__img {
    aspect-ratio: 16/9;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .p-service-section__services {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-service-section__service-title::before {
    bottom: 10%;
    top: 10%;
    width: 4px;
    width: 0.25rem;
  }
  .p-service-section__service-title {
    font-size: 24px;
    font-size: 1.5rem;
    padding-left: 12px;
    padding-left: 0.75rem;
  }
  .p-service-section__service-desc {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-service-section__tags {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
  .p-service-section__tag {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-service-section__works-list {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-service-section__works-label {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(50%, rgba(0, 0, 0, 0.5)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 1;
  }
  .p-single-article {
    margin-bottom: 80px;
    margin-bottom: 5rem;
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-single-article__back {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-single-contents {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-single-mv__head {
    gap: 18px;
    gap: 1.125rem;
  }
  .p-single-mv__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-single-mv__category {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-single-mv__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .p-single-mv__details {
    gap: 32px;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-top: 1.5rem;
  }
  .p-single-mv__details-list {
    gap: 18px;
    gap: 1.125rem;
  }
  .p-single-mv__detail-label {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-single-mv__detail-value {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-single-mv__overview-text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .p-single-mv__thumbnail {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-top-about {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-top-about__inner {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-top-about__heading {
    word-wrap: break-word;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .p-top-about__body {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-top-about__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-top-fv__slide--1 {
    max-width: 420px;
    max-width: 26.25rem;
  }
  .p-top-fv__slide1-text {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .p-top-fv__slide2-word {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .p-top-fv__slide2-word--thin {
    margin-left: 0.1em;
    margin-right: 0.1em;
  }
  .p-top-fv__slide3-text {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-top-message {
    margin-bottom: 0;
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-top-message__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    gap: 3rem;
  }
  .p-top-message__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-top-message__content {
    display: contents;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-top-message__ceo-image-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    top: auto;
  }
  .p-top-message__ceo-image {
    aspect-ratio: 4/3;
    height: auto;
    width: 100%;
  }
  .p-top-message__text-area {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .p-top-message__ceo-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-top-message__ceo-position {
    margin-right: 20px;
    margin-right: 1.25rem;
  }
  .p-top-message__bio {
    gap: 20px;
    gap: 1.25rem;
  }
  .p-top-message__bio-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-top-news {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-top-news__inner {
    gap: 20px;
    gap: 1.25rem;
  }
  .p-top-news__list-wrapper {
    max-width: none;
    padding: 0;
  }
  .p-top-news__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    gap: 0.75rem;
    min-height: auto;
    padding: 24px 4px;
    padding: 1.5rem 0.25rem;
  }
  .p-top-news__meta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    gap: 0.75rem;
    width: auto;
  }
  .p-top-news__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-top-news__category {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-top-news__title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .p-top-orb {
    height: 460px;
    height: 28.75rem;
    left: calc(70% - 14.375rem);
    top: calc(50% - 14.375rem);
    width: 460px;
    width: 28.75rem;
  }
  .p-top-service {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-top-service__inner {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-top-service__head {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-top-service__lead-wrap.u-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    gap: 1.5rem;
  }
  .p-top-service__lead {
    font-size: 13px;
    font-size: 0.8125rem;
    text-align: left;
  }
  .p-top-service__list-wrapper {
    display: contents;
  }
  .p-top-service__list {
    margin-top: 24px;
    margin-top: 1.5rem;
    -webkit-perspective: none;
            perspective: none;
    width: 100%;
  }
  .p-top-service__item {
    -webkit-transform: none;
            transform: none;
  }
  .p-top-service__item + .p-top-service__item {
    margin-top: 0;
  }
  .p-top-service__item-wrapper {
    border-top: none;
    height: auto;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-service__item-wrapper--dummy::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .p-top-service__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    gap: 1rem;
    height: auto;
    padding: 24px;
    padding: 1.5rem;
  }
  .p-top-service__item-inner--dummy {
    height: auto;
  }
  .p-top-service__item-inner--dummy .p-top-service__lead-wrap {
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 24px;
    padding-left: 1.5rem;
    padding-right: 24px;
    padding-right: 1.5rem;
    width: auto;
  }
  .p-top-service__item-inner--dummy .p-top-service__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-top-service__item-body {
    display: contents;
  }
  .p-top-service__item-head {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-top-service__item-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-top-service__item-num {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-top-service__item-img {
    height: 180px;
    height: 11.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .p-top-service__item-content {
    gap: 16px;
    gap: 1rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-top-service__item-text {
    line-clamp: 10;
    -webkit-line-clamp: 10;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-top-works {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-top-works__inner {
    gap: 48px;
    gap: 3rem;
  }
  .p-top-works__desc {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-top-works__slider {
    aspect-ratio: auto;
    cursor: auto;
    height: auto;
  }
  .p-top-works__slide {
    height: auto;
    margin-left: 40px;
    margin-left: 2.5rem;
    margin-right: 40px;
    margin-right: 2.5rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    width: 375px;
    width: 23.4375rem;
  }
  .p-top-works__slide-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 0;
  }
  .p-top-works__slide-img {
    width: 350px;
    width: 21.875rem;
  }
  .p-top-works__slide-content {
    bottom: 0;
    gap: 8px;
    gap: 0.5rem;
    height: 100px;
    height: 6.25rem;
    min-height: auto;
    padding: 8px 20px;
    padding: 0.5rem 1.25rem;
    right: -20px;
    right: -1.25rem;
    width: 280px;
    width: 17.5rem;
  }
  .p-top-works__slide-title {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-top-works__slide-client {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-top-works__sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 50%;
    max-width: 480px;
    max-width: 30rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
    pointer-events: none;
    position: absolute;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
  }
  .p-works-head__list {
    gap: 12px;
    gap: 0.75rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-works-list {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-works-list__grid {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .p-works-list__label {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(50%, rgba(0, 0, 0, 0.5)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 1;
  }
  .p-works-list__outro {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-works-list__empty {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.8;
  }
  .l-footer__back-to-top:hover .l-footer__back-to-top-icon img {
    -webkit-animation: footer-arrow-loop 0.5s ease-out;
            animation: footer-arrow-loop 0.5s ease-out;
  }
  .l-header__nav-link:hover {
    opacity: 1;
  }
  .l-header__nav-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-section-btn:hover {
    background-color: var(--c-section-btn-fill-color);
    color: var(--c-section-btn-hover-text-color);
    opacity: 1;
  }
  .c-section-btn:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-about-company__email-link:hover {
    opacity: 0.7;
  }
  .p-common-content a:hover {
    opacity: 0.7;
  }
  .p-common-content .wp-block-button__link:hover {
    background-color: var(--c-section-btn-fill-color);
    color: var(--c-section-btn-hover-text-color);
    opacity: 1;
  }
  .p-common-content .wp-block-button__link:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-common-cta__panel:hover {
    opacity: 1;
  }
  .p-common-cta__panel:hover::before {
    opacity: 1;
  }
  .p-common-cta__panel--disabled:hover::before {
    opacity: 0;
  }
  .p-common-form__zip-button:not(:disabled):hover {
    background-color: #fff;
    color: #00343A;
  }
  .p-common-form__submit:has(.p-common-form__button:not(:disabled)):hover {
    background-color: var(--c-section-btn-fill-color);
    color: var(--c-section-btn-hover-text-color);
    opacity: 1;
  }
  .p-common-form__submit:has(.p-common-form__button:not(:disabled)):hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-news-list__item:hover {
    opacity: 1;
  }
  .p-news-list__item:hover::before {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .p-service-head__card:hover {
    opacity: 1;
  }
  .p-service-head__card:hover .p-service-head__card-bg::after {
    background: rgba(0, 0, 0, 0.6);
  }
  .p-service-head__card:hover .p-service-head__card-bg picture,
  .p-service-head__card:hover .p-service-head__card-bg img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  .p-service-section__works-link:hover {
    opacity: 1;
  }
  .p-service-section__works-link:hover .p-service-section__works-label {
    opacity: 1;
  }
  .p-service-section__works-link:hover::before {
    opacity: 1;
  }
  .p-single-mv__detail-link:hover {
    opacity: 0.7;
  }
  .p-top-news__item:hover {
    opacity: 1;
  }
  .p-top-news__item:hover::before {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .p-top-service__item-wrapper .p-top-service__item-btn:hover {
    border-color: #000;
    color: #fff;
  }
  .p-top-works__slide-link:hover {
    opacity: 1;
  }
  .p-top-works__slide-link:hover .p-top-works__slide-img picture,
  .p-top-works__slide-link:hover .p-top-works__slide-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-top-works__sp-nav-btn:hover {
    opacity: 0.8;
  }
  .p-works-head__item:hover {
    opacity: 1;
  }
  .p-works-list__link:hover {
    opacity: 1;
  }
  .p-works-list__link:hover .p-works-list__label {
    opacity: 1;
  }
  .p-works-list__link:hover::before {
    opacity: 1;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce){
  .l-footer__glitch-channel, .l-footer__glitch-slice, .l-footer__glitch-canvas, .l-footer__glitch-flash {
    display: none !important;
  }
  .p-lower-mv__glitch-source, .p-lower-mv__glitch-channel, .p-lower-mv__glitch-slice, .p-lower-mv__glitch-canvas, .p-lower-mv__glitch-flash {
    display: none !important;
  }
  .p-news-list__loader {
    -webkit-animation: none;
            animation: none;
  }
  .p-works-list__loader {
    -webkit-animation: none;
            animation: none;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce){
  .c-mouse-stalker {
    display: none;
  }
}

@media (any-hover: hover){
  .c-page-top:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-page-top:hover .c-page-top__btn svg {
    color: #5a92ca;
  }
  .p-pagenavi .page:hover {
    color: #111111;
    opacity: 1;
  }
  .p-pagenavi .previouspostslink:hover span {
    -webkit-transform: scale(1.2) translateX(-8px);
            transform: scale(1.2) translateX(-8px);
  }
  .p-pagenavi .nextpostslink:hover span {
    -webkit-transform: rotate(180deg) scale(1.2) translateX(-8px);
            transform: rotate(180deg) scale(1.2) translateX(-8px);
  }
}

@media screen and (max-width: 599px){
  .p-top-orb {
    height: 200px;
    height: 12.5rem;
    left: calc(70% - 6.25rem);
    top: calc(50% - 6.25rem);
    width: 200px;
    width: 12.5rem;
  }
  .p-top-works__slide {
    width: 360px;
    width: 22.5rem;
  }
}

@media screen and (max-width: 374px){
  .p-top-works__slide-content {
    right: -10px;
    right: -0.625rem;
  }
}
/*# sourceMappingURL=style.css.map */
