@charset "UTF-8";

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/* 
font-size-rclamp 
*/

html {
  font-size: 16px;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background: #fff;
  transition: background 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

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

body.dark {
  background: #000;
}

.l-content-reverse {
  display: flex;
  flex-direction: column;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  max-width: 1222px;
  margin-inline: auto;
}

.l-header__inner {
  max-width: 1143px;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.l-pager {
  margin-top: 53px;
}

.c-bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 110%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}

.bgLRextend::after {
  animation-name: bgLRextendAnime-2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 110%;
  height: 100%;
  background-color: #fff;
}

@keyframes bgLRextendAnime-2 {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.c-bgextend-trigger,
.c-bgextend-trigger-appear {
  opacity: 0;
}

.c-breadcrumb {
  mix-blend-mode: difference;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.4166666667;
  letter-spacing: 1.2px;
  opacity: 0.6;
  padding-block: 14px;
  padding-top: 68px;
}

.c-btn {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #242424;
  border: 1px solid #242424;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #242424;
  opacity: 1;
  cursor: pointer;
}

.c-btn:hover::after {
  border-top: 1px solid #242424;
  border-right: 1px solid #242424;
  transform: translateX(5px) rotate(45deg);
}

.c-more-btn {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  letter-spacing: 1.95px;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1px 12px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.5px solid #fff;
  transition: letter-spacing 0.3s, border-color 0.2s, color 0.1s;
  margin-inline: auto;
}

.c-more-btn::after {
  content: "";
  justify-self: end;
  background: url(../images/webp/more-btn-arrow.webp) no-repeat center center/cover;
  width: 9px;
  height: 6px;
  transition: background 0.2s;
}

.c-mosaicize {
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.c-mosaicize.is-visible {
  opacity: 1;
}

.c-mosaicize__piece {
  position: absolute;
  background-size: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
  background: #fefefe;
}

.c-mosaicize-fv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.c-mosaicize-fv.is-active {
  opacity: 1;
}

.c-mosaicize-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  -webkit-mask-image: var(--mask-image);
  mask-image: var(--mask-image);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.c-mosaicize-fv.animation-complete::before {
  background-color: transparent;
}

.c-rectangle {
  position: absolute;
  top: -29px;
  left: -8px;
}

.c-rectangle__inner {
  aspect-ratio: 1;
  width: clamp(2.125rem, 1.6847375691rem + 1.8784530387vw, 3.1875rem);
  background: transparent linear-gradient(180deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
  opacity: 0.8;
}

.c-rectangle.is-show {
  animation: rotate 1.5s ease forwards;
}

.c-rectangle.is-show .c-rectangle__inner {
  animation: translate 1.5s ease forwards;
}

@keyframes rotate {
  to {
    transform: rotate(10deg);
  }
}

@keyframes translate {
  to {
    translate: 9px 25px;
    rotate: -10deg;
  }
}

.c-text-bg {
  position: relative;
  overflow: hidden;
  padding: 4px 4px 2px 4px;
  display: inline-block;
  color: #000;
  transition: color 0.3s;
}

.c-text-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #fff;
  translate: -100%;
}

.c-text-bg.is-show::after {
  animation: bg_in 0.6s forwards;
}

@keyframes bg_in {
  0% {
    translate: -100%;
    opacity: 0;
  }

  0.1% {
    opacity: 1;
  }

  100% {
    translate: 0;
    opacity: 1;
  }
}

.c-text {
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.6px;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-company-chart.p-reference-price {
  padding-top: 63px;
  overflow-x: clip;
}

.p-company-chart.p-reference-price .l-inner {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-company-chart.p-reference-price .p-heading .p-heading__hgroup {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.p-company-chart.p-reference-price .p-company-chart__text-wrap {
  padding-inline: 10px;
  margin-top: 24px;
}

.p-company-chart.p-reference-price .p-company-chart__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
}

.p-company-chart.p-reference-price .p-company-chart__contents {
  position: relative;
  margin-top: 43px;
}

.p-company-chart.p-reference-price .p-company-chart__bg-world {
  background: url(../images/p-company-chart_img_001.png) no-repeat center center/contain;
  mix-blend-mode: difference;
  position: absolute;
  z-index: -1;
  aspect-ratio: 375/201;
  width: 100%;
  top: 47.2%;
  translate: 0 -50%;
}

.p-company-chart.p-reference-price .p-company-chart__bg {
  background: url(../images/p-company-chart_img_002.png) no-repeat center 27%/83%;
}

.p-company-chart.p-reference-price .p-company-chart__logo {
  background: url(../images/p-company-chart_img_003.png) no-repeat center center/contain;
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
  aspect-ratio: 76/42;
  width: 76px;
  position: absolute;
  top: 47%;
  left: 50%;
  translate: -50% -50%;
}

.p-company-chart.p-reference-price .p-company-chart__text-container {
  z-index: 1;
  position: relative;
}

.p-company-chart.p-reference-price .p-company-chart__content-text-wrap {
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(23px);
  backdrop-filter: blur(23px);
  margin-inline: auto;
  padding: 4px 22px;
}

.p-company-chart.p-reference-price .p-company-chart__country {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.6px;
  color: #000;
  padding-left: 19px;
  position: relative;
  border-bottom: 0.5px solid #000;
  padding-bottom: 3px;
}

.p-company-chart.p-reference-price .p-company-chart__country::before {
  content: "";
  position: absolute;
  background: url(../images/webp/p-company-chart_img_004.webp) no-repeat center center/cover;
  aspect-ratio: 10/13;
  width: 10px;
  top: 50%;
  left: 4px;
  translate: 0 -50%;
}

.p-company-chart.p-reference-price .p-company-chart__country-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.6875rem, 0.5839088398rem + 0.4419889503vw, 0.9375rem);
  line-height: 1.0909090909;
  letter-spacing: 1.1px;
  opacity: 0.5;
}

.p-company-chart.p-reference-price .p-company-chart__title {
  font-weight: 700;
  font-size: clamp(1rem, 0.8705110497rem + 0.5524861878vw, 1.3125rem);
  line-height: 1.125;
  letter-spacing: 0.8px;
  color: #000;
  margin-top: 8px;
}

.p-company-chart.p-reference-price .p-company-chart__content-text {
  font-weight: 500;
  font-size: clamp(0.625rem, 0.4955110497rem + 0.5524861878vw, 0.9375rem);
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #000;
  margin-top: 8px;
}

.p-company-chart.p-reference-price .p-company-chart__text-top .p-company-chart__content-text-wrap {
  aspect-ratio: 262/127;
  width: 69.866%;
  max-width: 343px;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 129px;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content {
  width: 42.5%;
  height: 159px;
  margin-inline: 0;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content-text-wrap {
  padding: 6px 11px;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__country {
  font-size: clamp(0.75rem, 0.7241022099rem + 0.1104972376vw, 0.8125rem);
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__country-en {
  display: none;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__title {
  font-size: 1rem;
}

.p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content-text {
  font-size: clamp(0.625rem, 0.5473066298rem + 0.3314917127vw, 0.8125rem);
}

.p-company-chart.p-reference-price .p-company-chart__img {
  max-width: 300px;
  max-height: 500px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #fff;
}

.p-company-chart.p-reference-price .p-company-chart__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.p-company-info.p-reference-price {
  padding-top: 29px;
  padding-bottom: 25px;
}

.p-company-info.p-reference-price .p-heading__hgroup {
  gap: 26px;
}

.p-company-info__content {
  margin-top: 23px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-company-info__img {
  aspect-ratio: 335/195;
  width: 100%;
  height: 100%;
  max-width: 442px;
}

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

.p-company-info__list-wrap {
  margin-top: 24px;
}

.p-company-info__list-content {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-company-info__list-content:not(:first-child) {
  margin-top: 13px;
}

.p-company-info__term {
  font-weight: bold;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  padding: 4px 6px;
  background: #fff;
  color: #000;
  min-width: 65px;
  display: grid;
  place-items: center;
}

.p-company-info__desc {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.6px;
  text-wrap: nowrap;
}

.p-company.p-service-desc {
  padding-bottom: 0;
}

.p-company .l-inner {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-company__breadcrumb {
  mix-blend-mode: unset;
  color: #000;
}

.p-company__inner {
  padding-inline: 10px;
  position: relative;
}

.p-company__text-wrap {
  margin-top: 25px;
}

.p-company__text {
  color: #ddd;
}

.dark .p-company__breadcrumb {
  color: #fff;
}

.p-contact-area {
  padding-top: 53px;
  padding-bottom: 80px;
  color: #000;
  transition: color 0.3s;
}

.p-contact-area__inner {
  padding-inline: 10px;
  position: relative;
}

.p-contact-area .p-heading__hgroup {
  color: #fff;
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-contact-area__mosaicize {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-contact-area .c-more-btn {
  border-bottom: 0.5px solid #000;
}

.p-contact-area .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow-black.webp) no-repeat center center/cover;
}

.p-contact-area .c-rectangle {
  mix-blend-mode: difference;
  z-index: -1;
  top: -28px;
  left: -8px;
}

.dark .p-contact-area {
  color: #fff;
}

.dark .p-contact-area .p-contact-area__rectangle-wrap {
  z-index: 0;
}

.dark .p-contact-area .p-contact-area__rectangle-wrap {
  z-index: 0;
}

.dark .p-contact-area .p-heading__hgroup {
  z-index: 0;
}

.dark .c-more-btn {
  border-bottom: 0.5px solid #fff;
}

.p-contact.p-service-desc {
  padding-bottom: 111px;
}

.p-contact__contents {
  margin-top: 52px;
}

.p-contact__wrap {
  padding-inline: 20px;
}

.p-contact__inner {
  position: relative;
  padding-inline: 10px;
}

.p-contact__content:not(:first-child) {
  margin-top: 20px;
}

.p-contact__heading {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-contact__text-wrap {
  margin-top: 21px;
}

.p-contact__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #ddd;
}

.p-contact__head {
  width: 250px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.8px;
  color: #000;
}

.p-contact__head label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.p-contact__item {
  margin-top: 10px;
}

.p-contact__required {
  padding-left: 1em;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 1.2px;
  color: #fff;
  background: #000;
  border-radius: 4px;
  padding: 0 10px;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 31px;
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-email,
.p-contact__item-select {
  height: 40px;
}

.p-contact__item-text,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: #000;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  transition: background 0.3s;
}

.p-contact__item-text:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 276px;
  resize: none;
  overflow: auto;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding: 3px 3em 0 20px;
  background-image: url("../images/webp/p-contact_img_001-black.webp");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 17px top 18px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.8px;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
}

.p-contact__btn input[type=submit] {
  display: inline-block;
  margin: 0;
  padding: 10px 2em;
  -webkit-appearance: button;
  background: #000;
  color: #fff;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  border-radius: 0;
  border: 1px solid #000;
  transition: color 0.3s, background 0.3s;
  width: 100%;
  max-width: 478px;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=submit]:focus {
  outline: none;
  opacity: 1;
  color: #000;
  background: #fff;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-response-output {
  color: #000;
}

.dark .p-contact__head {
  color: #fff;
}

.dark .p-contact__required {
  background: #fff;
  color: #000;
}

.dark .p-contact__item-text,
.dark .p-contact__item-email,
.dark .p-contact__item-textarea,
.dark .p-contact__item-select {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dark .p-contact__btn input[type=submit] {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.dark .wpcf7-response-output {
  color: #fff;
}

.dark .p-contact__item-select {
  color: rgba(255, 255, 255, 0.5);
  background-image: url(../images/webp/p-contact_img_001.webp);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 17px top 18px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow {
  padding-bottom: 64px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step {
  margin-top: 54px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
  padding: 19px 16px 26px 17px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2) {
  margin-top: 55px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3) {
  margin-top: 49px;
}

.p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) {
  margin-top: 58px;
}

.p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production {
  padding-top: 32px;
  padding-bottom: 54px;
}

.p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step {
  margin-top: 36px;
}

.p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(2) {
  margin-top: 59px;
}

.p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(3) {
  margin-top: 59px;
}

.p-flow-virtual-consulting.p-flow {
  padding-bottom: 80px;
}

.p-flow-virtual-consulting.p-flow::before {
  content: unset;
}

.p-flow-virtual-consulting.p-flow .p-heading__hgroup {
  gap: 10px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step {
  margin-top: 37px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
  padding: 19px 16px 28px 17px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2) {
  margin-top: 67px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2)::before,
.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2)::after {
  top: -45px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3) {
  margin-top: 53px;
  gap: 18px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3)::before,
.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3)::after {
  top: -36px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) {
  margin-top: 44px;
  gap: 18px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4)::before,
.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4)::after {
  top: -36px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
  padding: 19px 16px 23px 17px;
}

.p-flow-virtual-consulting.p-flow .p-flow__step-text {
  align-self: center;
  text-wrap: wrap;
}

_::-webkit-full-page-media,
_:future,
:root .p-flow-virtual-consulting.p-flow .p-heading__hgroup {
  gap: 6px;
}

_::-webkit-full-page-media,
_:future,
:root .p-reference-price__list {
  gap: 9px 6px;
}

.p-flow {
  background: #000;
  overflow-x: clip;
  padding-top: 52px;
}

.p-flow .p-heading__heading-jp {
  font-weight: bold;
  font-size: clamp(1rem, 0.6374309392rem + 1.546961326vw, 1.875rem);
  line-height: 1.6875;
  letter-spacing: 1.6px;
}

.p-flow .p-heading__heading-en {
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.1666666667;
  letter-spacing: 1.2px;
}

.p-flow .p-heading__hgroup {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-inline: 10px;
}

.p-flow__inner {
  position: relative;
}

.p-flow__heading {
  z-index: 1;
  position: relative;
}

.p-flow__text-wrap {
  margin-top: 11px;
}

.p-flow__text {
  color: #ddd;
  padding-inline: 10px;
  text-wrap: nowrap;
}

.p-flow__step {
  margin-top: 48px;
}

.p-flow__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  position: relative;
}

.p-flow__step-item::before,
.p-flow__step-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 19px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 0.5px);
}

.p-flow__step-item::before {
  transform: rotate(58deg);
}

.p-flow__step-item::after {
  transform: rotate(-58deg);
}

.p-flow__step-item:nth-child(1)::before,
.p-flow__step-item:nth-child(1)::after {
  content: unset;
}

.p-flow__step-item:nth-child(2) {
  margin-top: 45px;
}

.p-flow__step-item:nth-child(2)::before,
.p-flow__step-item:nth-child(2)::after {
  top: -36px;
  left: calc(50% - 0.5px);
}

.p-flow__step-item:nth-child(3) {
  margin-top: 52px;
}

.p-flow__step-item:nth-child(3)::before,
.p-flow__step-item:nth-child(3)::after {
  top: -42px;
  left: calc(50% - 0.5px);
}

.p-flow__step-arrow {
  position: absolute;
  inset: 0;
}

.p-flow__step-arrow::before,
.p-flow__step-arrow::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 19px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 0.5px);
  top: -32px;
  left: calc(50% - 0.5px);
}

.p-flow__step-arrow::before {
  transform: rotate(58deg);
}

.p-flow__step-arrow::after {
  transform: rotate(-58deg);
}

.p-flow__step-img-wrap {
  width: 100%;
}

.p-flow__step-img {
  aspect-ratio: 1;
  width: 14.029%;
  height: auto;
  max-width: 87px;
  margin-inline: auto;
}

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

.p-flow__step-text-wrap {
  background: #fff;
  padding: 19px 16px 23px 17px;
  width: 100%;
  max-width: 380px;
}

.p-flow__step-title-wrap {
  display: flex;
  align-items: center;
  gap: 19px;
}

.p-flow__step-num {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7241022099rem + 0.1104972376vw, 0.8125rem);
  line-height: 3;
  letter-spacing: 1.2px;
  color: #000;
}

.p-flow__step-title {
  font-weight: 700;
  font-size: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem);
  line-height: 2.25;
  letter-spacing: 0.8px;
  color: #000;
}

.p-flow__step-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.6px;
  color: #000;
  margin-top: 6px;
  text-wrap: nowrap;
}

.p-flow__rectangle-01 {
  z-index: 0;
  top: -47px;
  left: -4px;
}

.p-flow__rectangle-01 .c-rectangle__inner {
  width: 32px;
  height: 32px;
}

.p-flow__rectangle-02 {
  z-index: 0;
  display: none;
}

.p-flow__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-flow__rectangle-03 {
  z-index: 0;
  display: none;
}

.p-flow__rectangle-03.is-show .c-rectangle__inner {
  animation: translate-value-02 1.5s ease forwards;
}

.p-flow__service {
  padding-top: 34px;
  padding-bottom: 75px;
  max-width: 335px;
  margin-inline: auto;
}

.p-flow__service-list {
  width: 87.2%;
  margin-left: auto;
  position: relative;
}

.p-flow__service-list::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 68%;
  border: 1px solid #fff;
  border-right: none;
  top: 18px;
  left: -28px;
}

.p-flow__service-item:first-child {
  margin-left: 2px;
}

.p-flow__service-item:first-child .p-flow__service-item {
  margin-left: 2px;
}

.p-flow__service-item:first-child .p-flow__service-worries-container {
  gap: 17px;
}

.p-flow__service-item:nth-child(2) {
  margin-top: 19px;
  position: relative;
}

.p-flow__service-item:nth-child(2) .p-flow__service-text-wrap {
  margin-top: 11px;
  margin-left: 40px;
}

.p-flow__service-item:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: #fff;
  top: 17px;
  left: -27px;
}

.p-flow__service-item:nth-child(3) {
  margin-top: 17px;
}

.p-flow__service-item:nth-child(3) .p-flow__service-text-wrap {
  margin-top: 12px;
  margin-left: 40px;
}

.p-flow__service-worries-container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.p-flow__service-num {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0034530387rem + 2.6519337017vw, 3.125rem);
  line-height: 1.3846153846;
}

.p-flow__service-num::before {
  content: "";
  position: absolute;
}

.p-flow__service-worries-wrap {
  margin-top: 5px;
}

.p-flow__service-worries {
  font-weight: 700;
  font-size: clamp(1rem, 0.9482044199rem + 0.2209944751vw, 1.125rem);
  line-height: 1.2;
  padding: 3px 0;
  letter-spacing: 0.8px;
  color: #000;
}

.p-flow__service-title {
  font-weight: 700;
  font-size: clamp(1rem, 0.8705110497rem + 0.5524861878vw, 1.3125rem);
  line-height: 1.875;
  letter-spacing: 0.8px;
  padding-bottom: 6px;
  position: relative;
}

.p-flow__service-title::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
}

.p-flow__service-text-wrap {
  margin-left: 37px;
  margin-top: 7px;
}

.p-flow__service-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.6px;
  margin-top: 8px;
}

.p-flow .bgLRextend {
  display: inline-block;
  padding-inline: 4px;
}

.p-flow .bgLRextend::before {
  background-color: #fff;
  height: 146%;
  top: -4px;
  left: -8px;
  width: 110%;
}

.p-flow .bgLRextend::after {
  background-color: #fff;
  left: -8px;
  width: 110%;
  height: 146%;
  top: -4px;
}

.p-flow__bg-sp {
  position: absolute;
  aspect-ratio: 375/1371;
  width: 375px;
  top: -52px;
  left: 50%;
  translate: -50%;
}

.p-flow__bg-sp.is-show {
  clip-path: circle(0% at 50% 50%);
  animation: reveal 8s forwards;
}

.p-flow__bg-pc {
  position: absolute;
  aspect-ratio: 1080/1135;
  width: 1080px;
  top: -66px;
  left: 50%;
  translate: -50%;
  opacity: 0.7;
  display: none;
}

.p-flow__bg-pc.is-show {
  clip-path: circle(0% at 50% 50%);
  animation: reveal 8s forwards;
}

.p-footer {
  background: #000;
  padding-top: 44px;
  padding-bottom: 40px;
}

.p-footer .l-inner {
  max-width: 1220px;
}

.p-footer__inner {
  padding-inline: 28px;
}

.p-footer__list {
  margin-top: 31px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 2.5;
  letter-spacing: 1.2px;
}

.p-footer__copyright {
  margin-top: 23px;
  padding-inline: 28px;
}

.p-footer__copyright small {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 2.5;
  letter-spacing: 1.2px;
}

.p-header {
  mix-blend-mode: difference;
  padding: 14px 20px;
}

.p-header__inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

.p-header__logo {
  aspect-ratio: 46/26;
  width: 46px;
  cursor: pointer;
}

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

.p-header__end {
  justify-self: end;
  display: none;
}

.p-header__end-sp {
  display: block;
  justify-self: end;
  margin-right: 43px;
}

.p-header__list {
  display: grid;
  grid-auto-flow: column;
  gap: 31px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1.4px;
  color: #fff;
}

.p-header__item:last-child {
  margin-left: 25px;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.p-header__item-sp {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  margin-bottom: 3px;
}

.p-header__nav-link {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.p-header__nav-link-sp {
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.p-header__hamburger {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 3px;
  right: 7px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.p-header__hamburger:hover,
.p-header__hamburger:focus {
  opacity: 0.5;
}

.p-header__hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 23px;
  height: 1px;
  background-color: #fff;
  transition: inherit;
}

.p-header__hamburger-line::before,
.p-header__hamburger-line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}

.p-header__hamburger-line::before {
  top: -9px;
}

.p-header__hamburger-line::after {
  top: 9px;
}

.p-header__hamburger[aria-expanded=true] {
  right: 10px;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line {
  background-color: transparent;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line::before,
.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line::after {
  top: 0;
  background-color: #fff;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line::before {
  transform: rotate(38deg);
  width: 120%;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line::after {
  transform: rotate(-38deg);
  width: 120%;
}

.p-heading__heading-en {
  font-size: clamp(2.1875rem, 1.2810773481rem + 3.8674033149vw, 4.375rem);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  letter-spacing: 3.5px;
}

.p-heading__heading-jp {
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 1.2px;
}

.p-heading__mosaicize {
  aspect-ratio: 153/23;
  width: 153px;
  background: url(../images/p-contact-area_img_002.png) no-repeat center center/cover;
  margin-top: 15px;
}

.p-heading__mosaicize .c-mosaicize__piece {
  background: #000;
}

.p-message.p-reference-price {
  padding-top: 27px;
}

.p-message__content {
  margin-top: 47px;
  position: relative;
  z-index: -1;
}

.p-message__content:nth-of-type(4) .p-message__name {
  text-align: center;
}

.p-message__container {
  background: #000;
  padding: 23px 21px 45px 21px;
  color: #fff;
  margin-top: 18px;
}

.p-message__title {
  font-weight: bold;
  font-size: clamp(1rem, 0.8705110497rem + 0.5524861878vw, 1.3125rem);
  line-height: 1.6875;
  letter-spacing: 1.6px;
  position: relative;
  padding-left: 26px;
  color: #000;
}

.p-message__title::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 16px;
  background: #000;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.p-message__name-img-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-message__img {
  aspect-ratio: 63/80;
  width: 21.5%;
  max-width: 111px;
}

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

.p-message__job {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  opacity: 0.5;
}

.p-message__name {
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.9px;
}

.p-message__text-wrap {
  margin-top: 11px;
}

.p-message__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
}

.p-message__text:not(:first-child) {
  margin-top: 32px;
}

.dark .p-message .p-message__title {
  color: #fff;
}

.dark .p-message .p-message__title::before {
  background: #fff;
}

.dark .p-message .p-message__container {
  background: #fff;
  color: #000;
}

html:has(dialog[open]) {
  overflow: hidden;
}

.p-modal {
  color: #fff;
  background: transparent;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  border: 0px;
  padding: 20px;
  overscroll-behavior-y: contain;
  max-width: unset;
  padding-top: 40px;
}

.p-modal::backdrop {
  background: #1c1c1c 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
}

.p-modal__open-btn {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.p-modal__inner {
  display: flex;
  flex-direction: column;
}

.p-modal__text-container {
  display: contents;
}

.p-modal__text-wrap {
  order: 3;
}

.p-modal__heading {
  font-weight: bold;
  font-size: clamp(1rem, 0.8964088398rem + 0.4419889503vw, 1.25rem);
  letter-spacing: 1.6px;
  padding-inline: 2px;
  border-bottom: 1px solid #707070;
  padding-bottom: 8px;
}

.p-modal__desc {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  margin-top: 6px;
}

.p-modal__img-wrap {
  margin-top: 26px;
  margin-inline: 10px;
}

.p-modal__img-01 {
  aspect-ratio: 315/215;
  width: 100%;
}

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

.p-modal__img-bottom-wrap {
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 8px;
}

.p-modal__img-02,
.p-modal__img-03,
.p-modal__img-04 {
  aspect-ratio: 100/79;
  width: 100%;
}

.p-modal__img-02 img,
.p-modal__img-03 img,
.p-modal__img-04 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-modal__heading-lv2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.9482044199rem + 0.2209944751vw, 1.125rem);
  line-height: 1.875;
  letter-spacing: 0.8px;
  margin-top: 42px;
  position: relative;
  padding-left: 20px;
}

.p-modal__heading-lv2::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 7px;
  background: #fff;
  top: 50%;
  left: 4px;
  translate: 0 -50%;
}

.p-modal__list {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 1.75;
  letter-spacing: 0.6px;
  margin-top: 17px;
}

.p-modal__item {
  position: relative;
  padding-left: 5px;
  text-indent: -1em;
  margin-left: 1em;
}

.p-modal__item::before {
  content: "・";
}

.p-modal__btn-wrap {
  text-align: center;
  margin-top: 57px;
  margin-bottom: 40px;
}

.p-modal__btn {
  font-weight: 700;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2.1666666667;
  letter-spacing: 0.6px;
  background: #fff;
  color: #000;
  padding: 6px 13px;
  min-width: 315px;
  display: inline-block;
  border: 1px solid #fff;
  transition: background 0.3s, color 0.3s;
}

.p-modal__close-btn {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 22px;
  z-index: 3;
  width: 31px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.p-modal__close-btn-text {
  opacity: 0;
}

.p-modal__close-btn-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: transparent;
  transition: inherit;
}

.p-modal__close-btn-line::before,
.p-modal__close-btn-line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  transition: inherit;
  width: 120%;
}

.p-modal__close-btn-line::before {
  rotate: 20deg;
}

.p-modal__close-btn-line::after {
  rotate: -20deg;
}

.p-modal,
.p-modal::backdrop {
  transition: opacity 0.3s;
}

/* ダイアログの表示前、非表示後は下に移動 */

.p-modal.is-show,
.p-modal.is-show::backdrop,
.p-modal.is-hide,
.p-modal.is-hide::backdrop {
  opacity: 1;
}

/* ダイアログの表示前、非表示後は背景を透明にする */

.p-modal.is-show,
.p-modal.is-show::backdrop,
.p-modal.is-hide,
.p-modal.is-hide::backdrop {
  opacity: 0;
}

.p-news-archive.p-service-desc {
  padding-bottom: 24px;
}

.p-news-archive.p-service-desc .p-service-desc__inner {
  padding-inline: 0;
}

.p-news-archive.p-service-desc .p-heading {
  padding-inline: 10px;
}

.p-news-archive.p-service-desc .p-news-archive__list {
  margin-top: 40px;
  color: #000;
}

.p-news-archive.p-service-desc .p-post-list__title {
  color: #000;
}

.p-news-archive.p-service-desc .p-post-list {
  padding: 0;
  padding-bottom: 8px;
  padding-inline: 9px;
  border-bottom: 0.5px solid #000;
}

.p-news-archive.p-service-desc .l-pager {
  margin-top: 40px;
}

.p-news-archive + .p-contact-area {
  padding-top: 62px;
}

.dark .p-news-archive.p-service-desc .p-post-list__title {
  color: #fff;
}

.dark .p-news-archive.p-service-desc .p-post-list {
  border-bottom: 0.5px solid #fff;
}

.dark .p-news-archive.p-service-desc .p-post-list__date {
  color: #fff;
}

.p-post-article__breadcrumb {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.p-post-article__title-box {
  padding-inline: 10px;
}

.p-post-article__title {
  font-weight: bold;
  font-size: clamp(1.25rem, 0.9392265193rem + 1.3259668508vw, 2rem);
  line-height: 1.8;
  letter-spacing: 1px;
}

.p-post-article__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  padding-inline: 10px;
  margin-top: 11px;
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  width: 100%;
  padding-inline: 10px;
  padding-bottom: 55px;
}

.p-post-article__content-wrap {
  width: 100%;
  margin: auto;
}

.p-post-article__main-img {
  aspect-ratio: 335/195;
  width: 100%;
  margin-top: 24px;
}

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

.p-post-article__wrap {
  color: #000;
  margin-top: 13px;
  position: relative;
}

.p-post-article__wrap .c-rectangle {
  mix-blend-mode: difference;
  top: -33px;
  left: -4px;
}

.p-post-article__wrap .c-rectangle__inner {
  width: 28px;
  height: 28px;
}

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  margin-left: auto;
  text-align: right;
  letter-spacing: 0.05em;
}

.p-post-article__content h2 {
  font-weight: bold;
  font-size: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem);
  line-height: 2;
  letter-spacing: 0.8px;
  margin-top: 19px;
  position: relative;
  padding-bottom: 13px;
}

.p-post-article__content h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #ddd;
  bottom: 0;
  left: 0;
}

.p-post-article__contents h3 {
  font-weight: bold;
  font-size: clamp(0.8125rem, 0.6053176796rem + 0.8839779006vw, 1.3125rem);
  line-height: 1.8461538462;
  letter-spacing: 0.65px;
  margin-top: 25px;
}

.p-post-article__contents h4 {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
  margin-top: 24px;
}

.p-post-article__contents h5 {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
  margin-top: 24px;
}

.p-post-article__contents p {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  margin-top: 20px;
}

.p-post-article__contents a {
  text-decoration: underline;
}

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

.p-post-article__contents figure {
  width: 100%;
  margin-top: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.p-post-article__contents figcaption {
  font-weight: 500;
  font-size: clamp(0.625rem, 0.5473066298rem + 0.3314917127vw, 0.8125rem);
  line-height: 1.5;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-top: 8px;
  margin-bottom: 52px;
}

.p-post-article__contents .wp-block-list {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  margin-top: 19px;
}

.p-post-article__contents ul.wp-block-list li {
  padding-left: 6px;
  position: relative;
}

.p-post-article__contents ul.wp-block-list li::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 8px;
  background: #000;
  border-radius: 50%;
  top: 8px;
  left: -10px;
}

.p-post-article__contents ul.wp-block-list li:not(:first-child) {
  margin-top: 5px;
}

.p-post-article__contents ol.wp-block-list li {
  padding-left: 3px;
  margin-left: 3px;
  list-style: auto;
}

.p-post-article__contents ol.wp-block-list li:not(:first-child) {
  margin-top: 10.5px;
  margin-top: 4px;
}

.p-post-article__contents .wp-block-buttons {
  margin-top: 46px;
  justify-content: center !important;
  margin-left: calc(50% - 50vw);
  padding-left: 6.4%;
  margin-right: 10px;
}

.p-post-article__contents .wp-block-button {
  width: 100%;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
}

.p-post-article__contents .wp-block-button .wp-block-button__link {
  text-decoration: none;
  padding: 5px 20px;
  width: 100%;
  max-width: 478px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-weight: bold;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2.1666666667;
  letter-spacing: 0.6px;
  transition: color 0.3s, background 0.3s;
}

.dark .p-post-article__wrap {
  color: #fff;
}

.dark .p-post-article__contents ul.wp-block-list li::before {
  background: #fff;
}

.dark .p-post-article__contents .wp-block-button .wp-block-button__link {
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 400/300;
}

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

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: prem(8) 0;
}

.p-post-card__category li {
  padding: prem(5);
  color: #242424;
  border: 1px solid #242424;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #242424;
  padding: prem(5) prem(10);
  border: 1px solid #242424;
}

.p-post-list {
  border-bottom: 0.5px solid #000;
  padding-inline: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
}

.p-post-list__date {
  font-weight: 500;
  font-size: clamp(0.625rem, 0.4696132597rem + 0.6629834254vw, 1rem);
  line-height: 3;
  letter-spacing: 0.5px;
  opacity: 0.5;
  color: #000;
}

.p-post-list__title {
  font-weight: 700;
  font-size: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #222;
}

.p-post-list__link:not(:first-child) .p-post-list {
  padding-top: 11px;
}

.p-post-list__btn-wrap {
  position: absolute;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-post-list__btn {
  aspect-ratio: 1;
  width: 19px;
  border: 0.5px solid #000;
  display: inline-block;
  border-radius: 50%;
  position: relative;
}

.p-post-list__btn::before,
.p-post-list__btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.25px);
  right: 6px;
  width: 5px;
  height: 0.5px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 0.25px) 50%;
}

.p-post-list__btn::before {
  transform: rotate(25deg);
}

.p-post-list__btn::after {
  transform: rotate(-25deg);
}

.p-post-list__img {
  max-width: 300px;
  max-height: 500px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #fff;
}

.p-post-list__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.dark .p-post-list {
  border-bottom: 0.5px solid #fff;
}

.dark .p-post-list .p-post-list__title {
  color: #fff;
}

.dark .p-post-list .p-post-list__date {
  color: #fff;
}

.dark .p-post-list .p-post-list__btn {
  border: 0.5px solid #fff;
}

.dark .p-post-list .p-post-list__btn::before,
.dark .p-post-list .p-post-list__btn::after {
  background-color: #fff;
}

.p-promotion-measures.p-technology-production {
  padding-top: 38px;
}

.p-promotion-measures.p-technology-production .p-heading__hgroup {
  gap: 3px;
}

.p-promotion-measures.p-technology-production .p-heading__heading-jp {
  text-wrap: nowrap;
}

.p-promotion-measures.p-technology-production .p-heading__heading-en {
  text-wrap: nowrap;
  margin-top: 26px;
}

.p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(1) {
  background: url(../images/webp/p-promotion-measures_img_001.webp) no-repeat 50% 0%/105%;
}

.p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(2) {
  background: url(../images/webp/p-promotion-measures_img_002-2.webp) no-repeat 50% 0%/105%;
}

.p-promotion-measures.p-technology-production .p-technology-production__contents {
  margin-top: 34px;
}

.p-promotion-measures.p-technology-production .p-technology-production__text-wrap {
  padding: 296px 18px 60px;
  max-width: 470px;
}

.p-promotion-measures.p-technology-production .p-technology-production__rectangle-01 {
  top: -31px;
}

.p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(2)::after {
  background: transparent linear-gradient(0deg, #000000 62%, rgba(0, 0, 0, 0.3019607843) 85%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
}

.p-promotion-measures.p-technology-production .p-technology-production__content::before {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background: #797979 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}

.p-promotion-measures.p-technology-production .p-technology-production__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent linear-gradient(0deg, #000000 62%, rgba(0, 0, 0, 0.3019607843) 85%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
}

.p-reference-price-consulting .p-reference-price__list {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.p-reference-price-consulting .p-reference-price__note {
  margin-top: 8px;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  letter-spacing: 0.8px;
  line-height: 1.6;
}

.p-reference-price-production.p-reference-price {
  padding-top: 81px;
  padding-bottom: 44px;
}

.p-reference-price-production.p-reference-price .p-reference-price__list {
  grid-template-rows: repeat(3, 1fr);
}

.p-reference-price-production.p-reference-price .p-reference-price-production__contents {
  margin-top: 29px;
}

.p-reference-price-production.p-reference-price .p-reference-price__content {
  padding: 19px 21px 22px;
  margin-top: 0;
}

.p-reference-price-production.p-reference-price .p-reference-price__content:not(:first-child) {
  margin-top: 30px;
}

.p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(2) .p-reference-price__note {
  margin-top: 6px;
}

.p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(1) .p-reference-price__content-start,
.p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(3) .p-reference-price__content-start,
.p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(4) .p-reference-price__content-start {
  margin-top: 4px;
}

.p-reference-price-production.p-reference-price .p-reference-price__title-jp {
  text-wrap: nowrap;
}

.p-reference-price-production.p-reference-price .p-reference-price__title-en {
  text-wrap: nowrap;
}

.p-reference-price-production.p-reference-price .p-reference-price__note {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  letter-spacing: 0.8px;
  line-height: 1.6;
  padding-left: 6px;
  margin-left: -8px;
}

.p-reference-price-production.p-reference-price .p-reference-price__note::before {
  content: unset;
}

.p-reference-price-production.p-reference-price .p-reference-price__note-br {
  display: none;
}

.p-reference-price-production + .p-works .p-sec-text-wrap__more-btn-wrap {
  margin-top: 11px;
}

.p-reference-price-production + .p-works .splide {
  margin-top: 34px;
}

.p-reference-price-production + .p-works .p-works__rectangle-03 {
  top: 424px;
}

.p-reference-price-production + .p-works .p-works__rectangle-04 {
  top: 514px;
}

.p-reference-price-production + .p-works .p-works__rectangle-05 {
  top: 545px;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production {
  padding-top: 87px;
  padding-bottom: 36px;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__heading {
  padding-right: 15px;
  padding-left: 5px;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-end {
  flex-grow: 1;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__list {
  display: block;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__item {
  line-height: 1.8;
  text-wrap: wrap;
  width: 100%;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__item::before {
  top: 9px;
  translate: unset;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(4) .p-reference-price__list {
  grid-template-rows: repeat(1, 1fr);
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__note {
  margin-top: 8px;
}

.p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__num {
  text-wrap: nowrap;
}

.p-reference-price {
  padding-top: 101px;
  padding-bottom: 48px;
}

.p-reference-price .l-inner {
  position: relative;
}

.p-reference-price .c-rectangle {
  z-index: -1;
}

.p-reference-price__rectangle-01 {
  mix-blend-mode: difference;
  top: -47px;
  left: 14px;
}

.p-reference-price__heading {
  color: #000;
}

.p-reference-price .p-heading__hgroup {
  display: flex;
  align-items: center;
  gap: 21px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  padding-inline: 10px;
}

.p-reference-price .p-heading__heading-jp {
  font-weight: bold;
  font-size: clamp(1rem, 0.6374309392rem + 1.546961326vw, 1.875rem);
  line-height: 1.6875;
  letter-spacing: 1.6px;
}

.p-reference-price .p-heading__heading-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.1666666667;
  letter-spacing: 1.2px;
}

.p-reference-price__content {
  background: #000;
  margin-top: 29px;
  padding: 19px 21px 25px;
  position: relative;
  max-width: 500px;
  margin-inline: auto;
}

.p-reference-price__content-start {
  mix-blend-mode: difference;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
}

.p-reference-price__title-jp {
  font-weight: bold;
  font-size: clamp(1rem, 0.9482044199rem + 0.2209944751vw, 1.125rem);
  letter-spacing: 0.8px;
}

.p-reference-price__title-en {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  letter-spacing: 1.2px;
  opacity: 0.5;
}

.p-reference-price__content-middle {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 23px;
}

.p-reference-price__img {
  aspect-ratio: 80/71;
  width: 27.3%;
}

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

.p-reference-price__num-wrap {
  margin-top: 15px;
}

.p-reference-price__num {
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 0.5;
  letter-spacing: 0;
  color: #fff;
  opacity: 1;
}

.p-reference-price__num-span {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.8px;
  color: #fff;
  opacity: 0.5;
  display: inline-block;
  margin-left: 6px;
  translate: 0 -4px;
}

.p-reference-price__content-end {
  mix-blend-mode: difference;
}

.p-reference-price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  margin-top: 18px;
  gap: 9px 10px;
}

.p-reference-price__item {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  letter-spacing: 0.65px;
  position: relative;
  padding-left: 18px;
}

.p-reference-price__item::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 7px;
  background: #fff;
  top: 50%;
  left: 2px;
  translate: 0 -50%;
}

.dark .p-reference-price__content {
  background: #fff;
}

.dark .p-reference-price__num {
  color: #000;
}

.dark .p-reference-price__num-span {
  color: #000;
}

.p-reference-price + .p-works {
  padding-bottom: 0;
}

.p-reference-price + .p-works .p-heading__heading-jp-span {
  display: inline;
}

.p-reference-price + .p-works .p-works__rectangle-03 {
  top: 429px;
}

.p-reference-price + .p-works .p-works__rectangle-04 {
  top: 520px;
}

.p-reference-price + .p-works .p-works__rectangle-05 {
  top: 550px;
}

.dark .p-reference-price .p-reference-price__heading {
  color: #fff;
}

.dark .p-reference-price .p-heading__hgroup {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.p-sec-text-wrap {
  margin-top: 22px;
}

.p-sec-text-wrap__text {
  line-height: 2;
}

.p-sec-text-wrap__more-btn-wrap {
  margin-top: 23px;
  margin-right: 3px;
}

.p-sec-text-wrap .c-more-btn {
  translate: clamp(5.75rem, -5.7295918367rem + 48.9795918367vw, 17.75rem);
}

.p-service-desc-creative-production.p-service-desc {
  padding-bottom: 91px;
}

.p-service-desc-creative-production.p-service-desc .p-heading__heading-en {
  letter-spacing: 1.75px;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-01 .p-service-desc__content-text-wrap {
  width: 48%;
  margin-top: 0;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-01 .p-service-desc__img-wrap {
  width: 100%;
  margin-top: 0;
  position: relative;
  padding: 0;
  margin-inline: 0;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__content-inner {
  margin-top: 19px;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__title-wrap {
  margin-top: 0;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__img-wrap {
  margin-top: 0;
  position: relative;
  padding: 0;
  margin-inline: 0;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__img-wrap::before {
  content: unset;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__content-text {
  margin-top: 5px;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__bg {
  top: -73px;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-03 .p-service-desc__img-wrap {
  margin-top: 4px;
}

.p-service-desc-creative-production.p-service-desc .p-service-desc__contents-03 .p-service-desc__content-text {
  margin-top: 10px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production {
  padding-bottom: 76px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__inner {
  padding-inline: 0;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-01 .p-service-desc__content-inner {
  margin-top: 29px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-01 .p-service-desc__title-jp {
  text-wrap: nowrap;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-02 .p-service-desc__content-inner {
  margin-top: 19px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-03 .p-service-desc__content-inner {
  margin-top: 30px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__heading {
  padding-inline: 10px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-heading__heading-en {
  letter-spacing: 3.5px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__text {
  text-wrap: nowrap;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__img-01 {
  width: 67.5%;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__img-02 {
  width: 36%;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-05 {
  top: 320px;
  left: 100px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-06 {
  left: 66px;
}

.p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-07 {
  right: 31px;
}

.p-service-desc {
  overflow-x: clip;
  padding-top: 24px;
  padding-bottom: 99px;
}

.p-service-desc__breadcrumb {
  mix-blend-mode: unset;
  color: #000;
}

.p-service-desc .p-heading__mosaicize {
  margin-top: 13px;
}

.p-service-desc .bgLRextend {
  color: #fff;
  padding: 1px 5px;
}

.p-service-desc .bgLRextend::before {
  left: 0px;
  width: 100%;
  background: #000;
}

.p-service-desc .bgLRextend::after {
  left: 0px;
  width: 100%;
  background: #000;
}

.p-service-desc__heading {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-service-desc .c-rectangle {
  mix-blend-mode: difference;
  z-index: -1;
}

.p-service-desc__rectangle-02 {
  top: -41px;
  right: -33px;
  left: unset;
}

.p-service-desc__rectangle-02 .c-rectangle__inner {
  width: 90px;
  height: 60px;
}

.p-service-desc__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-service-desc__rectangle-03 {
  top: 47px;
  right: 108px;
  left: unset;
}

.p-service-desc__rectangle-03 .c-rectangle__inner {
  width: 28px;
  height: 27px;
}

.p-service-desc__rectangle-03.is-show .c-rectangle__inner {
  animation: translate-about-03 1.5s ease forwards;
}

.p-service-desc__rectangle-04 {
  top: 89px;
  right: 17px;
  left: unset;
}

.p-service-desc__rectangle-04 .c-rectangle__inner {
  width: 17px;
  height: 18px;
}

.p-service-desc__rectangle-04.is-show .c-rectangle__inner {
  animation: translate-value-01 1.5s ease forwards;
}

.p-service-desc__rectangle-05 {
  top: 320px;
  left: 90px;
}

.p-service-desc__rectangle-05 .c-rectangle__inner {
  width: 62px;
  height: 59px;
}

.p-service-desc__rectangle-06 {
  top: 437px;
  left: 56px;
}

.p-service-desc__rectangle-06 .c-rectangle__inner {
  width: 30px;
  height: 28px;
}

.p-service-desc__rectangle-06.is-show .c-rectangle__inner {
  animation: translate-value-02 1.5s ease forwards;
}

.p-service-desc__rectangle-07 {
  top: 457px;
  left: unset;
  right: 21px;
}

.p-service-desc__rectangle-07 .c-rectangle__inner {
  width: 30px;
  height: 28px;
}

.p-service-desc__rectangle-07.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-service-desc__rectangle-08 {
  top: -41px;
  right: unset;
  left: 13px;
}

.p-service-desc__rectangle-08 .c-rectangle__inner {
  width: 56px;
  height: 57px;
}

.p-service-desc__rectangle-08.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-service-desc__rectangle-09 {
  top: unset;
  bottom: -33px;
  right: 6px;
  left: unset;
}

.p-service-desc__rectangle-09 .c-rectangle__inner {
  width: 36px;
  height: 34px;
}

.p-service-desc__rectangle-09.is-show .c-rectangle__inner {
  animation: translate-value-02 1.5s ease forwards;
}

.p-service-desc__rectangle-10 {
  top: unset;
  bottom: -45px;
  right: -31px;
  left: unset;
}

.p-service-desc__rectangle-10 .c-rectangle__inner {
  width: 17px;
  height: 18px;
}

.p-service-desc__rectangle-10.is-show .c-rectangle__inner {
  animation: translate-value-01 1.5s ease forwards;
}

.p-service-desc__inner {
  padding-inline: 10px;
  position: relative;
}

.p-service-desc__text-wrap {
  margin-top: 21px;
}

.p-service-desc__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #ddd;
}

.p-service-desc__title-jp {
  font-weight: bold;
  font-size: clamp(1.25rem, 0.8356353591rem + 1.7679558011vw, 2.25rem);
  line-height: 1.6;
  letter-spacing: 2px;
}

.p-service-desc__title-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2.1666666667;
  letter-spacing: 1.2px;
}

.p-service-desc__title-en:first-of-type {
  margin-top: 4px;
}

.p-service-desc__contents-02 .p-service-desc__content-text {
  margin-top: 15px;
}

.p-service-desc__contents-02 .p-service-desc__title-wrap {
  margin-top: 40px;
}

.p-service-desc__contents-02 .p-service-desc__bg {
  z-index: -1;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap {
  margin-top: 23px;
  position: relative;
  padding: 42px 23px;
  margin-inline: 10px;
  position: relative;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f0f0f0;
  z-index: -1;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow {
  margin-top: 18px;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-img {
  aspect-ratio: 1;
  width: 29px;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content {
  background: #000;
  display: flex;
  align-items: center;
  padding: 10px 31px;
  gap: 12px;
  max-width: 422px;
  margin-inline: auto;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child) {
  margin-top: 18px;
  position: relative;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::before,
.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: 50% calc(100% - 0.5px);
  top: -17px;
  left: calc(50% - 0.5px);
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::before {
  transform: rotate(58deg);
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::after {
  transform: rotate(-58deg);
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-title {
  font-weight: bold;
  font-size: clamp(0.75rem, 0.4910220994rem + 1.1049723757vw, 1.375rem);
  line-height: 1;
  letter-spacing: 0.6px;
  color: #000;
  text-align: center;
}

.p-service-desc__contents-02 .p-service-desc__img-wrap-flow-text {
  mix-blend-mode: difference;
  font-weight: bold;
  font-size: clamp(0.75rem, 0.4910220994rem + 1.1049723757vw, 1.375rem);
  line-height: 1;
  letter-spacing: 0.6px;
}

.p-service-desc__contents-02 .c-rectangle {
  z-index: -1;
}

.p-service-desc__contents-02 .p-service-desc__img-container {
  position: relative;
  order: 2;
}

.p-service-desc__contents-02 .p-service-desc__bg {
  top: -10px;
}

.p-service-desc__contents-03 .p-service-desc__content-inner {
  margin-top: 45px;
  gap: 25px;
}

.p-service-desc__contents-03 .p-service-desc__content-text {
  margin-top: 19px;
}

.p-service-desc__contents-03 .p-service-desc__rectangle-05 {
  top: 310px;
}

.p-service-desc__contents-03 .p-service-desc__rectangle-06 {
  top: 427px;
}

.p-service-desc__contents-03 .p-service-desc__rectangle-07 {
  top: 447px;
}

.p-service-desc__content-inner {
  position: relative;
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-service-desc__content-text-wrap {
  display: contents;
}

.p-service-desc__title-wrap {
  order: 1;
  color: #000;
}

.p-service-desc__content-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  order: 3;
  margin-top: 5px;
  color: #000;
}

.p-service-desc__content-text-span {
  font-weight: bold;
}

.p-service-desc__img-wrap {
  order: 2;
  position: relative;
}

.p-service-desc__bg {
  position: absolute;
  aspect-ratio: 1;
  width: 355px;
  top: -49px;
  left: 50%;
  translate: -50%;
}

.p-service-desc__bg.is-show {
  clip-path: circle(0% at 50% 50%);
  animation: reveal 8s forwards;
}

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

.p-service-desc__img-01 {
  aspect-ratio: 226/156;
  width: 71.746%;
  max-width: 474px;
  margin-inline: auto;
  translate: -10px;
}

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

.p-service-desc__img-02 {
  aspect-ratio: 121/104;
  width: 38.412%;
  max-width: 254px;
  margin-inline: auto;
  translate: 28px;
  margin-top: 13px;
}

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

.dark .p-service-desc__breadcrumb {
  color: #fff;
}

.dark .p-service-desc .p-service-desc__title-wrap {
  color: #fff;
}

.dark .p-service-desc .p-service-desc__content-text {
  color: #fff;
}

.dark .p-service-desc .bgLRextend {
  color: #000;
}

.dark .p-service-desc .bgLRextend::before {
  background: #fff;
}

.dark .p-service-desc .bgLRextend::after {
  background: #fff;
}

.p-top-service.p-service {
  background: unset;
  color: unset;
  padding-top: 0;
}

.p-top-service.p-service::after {
  content: unset;
}

.p-service__mix-mode {
  mix-blend-mode: difference;
  background: #000;
  color: #fff;
  padding-top: 24px;
}

.p-service .p-service__inner {
  display: block;
  padding-left: 10px;
}

.p-service .p-heading__mosaicize.c-mosaicize {
  margin-top: 13px;
}

.p-service .p-top-service__text {
  color: #222;
}

.p-service .p-top-service__text-wrap {
  margin-top: 21px;
}

.p-service .p-top-service__rectangle-01.c-rectangle {
  top: -5px;
  left: 12px;
}

.p-service__btn-container {
  display: none;
}

.p-service__btn-text {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.6px;
  color: #000;
  padding-left: 22px;
  position: relative;
}

.p-service__btn-text::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 13px;
  background: #000;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.p-service__btn {
  font-weight: bold;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  letter-spacing: 1.05px;
  padding: 14px 18px 13px;
  min-width: 372px;
  display: inline-block;
  text-align: center;
  transition: background 0.3s, color 0.3s;
  border: 1px solid transparent;
}

.p-service__introduction {
  background: #fff;
  color: #000;
  padding-bottom: 76px;
  transition: background 0.3s;
}

.p-service__introduction-inner {
  padding-left: 10px;
}

.p-service__introduction-list {
  padding-top: 53px;
}

.p-service__introduction-item {
  max-width: 589px;
  margin-inline: auto;
}

.p-service__introduction-item:not(:first-child) {
  margin-top: 56px;
}

.p-service__introduction-item:last-child .p-sec-text-wrap__more-btn-wrap {
  margin-top: 14px;
}

.p-service__introduction-img {
  aspect-ratio: 315/212;
  width: 96.923%;
  max-width: 589px;
}

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

.p-service__introduction-title-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  letter-spacing: 1.2px;
  margin-top: 19px;
}

.p-service__introduction-title-jp {
  font-weight: 700;
  font-size: clamp(1.3125rem, 0.820441989rem + 2.0994475138vw, 2.5rem);
  letter-spacing: 2.1px;
  margin-top: 8px;
}

.p-service__introduction-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #222;
  margin-top: 3px;
  text-wrap: nowrap;
}

.p-service .p-sec-text-wrap__more-btn-wrap {
  margin-top: 10px;
  margin-right: 16px;
}

.p-service .p-service__introduction-item .c-more-btn {
  border-bottom: 0.5px solid #000;
  translate: clamp(6rem, -1.0551658163rem + 30.1020408163vw, 13.375rem);
}

.p-service .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow-black.webp) no-repeat center center/cover;
}

.p-service .bgLRextend {
  display: inline-block;
}

.p-service .bgLRextend::before {
  background-color: #000;
  height: 146%;
  top: -4px;
  left: -8px;
  width: 110%;
}

.p-service .bgLRextend::after {
  background-color: #000;
  left: -8px;
  width: 110%;
  height: 146%;
  top: -4px;
}

.dark .p-service__introduction {
  background: #000;
  color: #fff;
}

.dark .p-service__introduction-text {
  color: #fff;
}

.dark .p-service .p-service__introduction-item .c-more-btn {
  border-bottom: 0.5px solid #fff;
}

.dark .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow.webp) no-repeat center center/cover;
}

.dark .p-service__btn {
  color: #000;
  border: 1px solid transparent;
}

.dark .p-service__btn-text {
  color: #fff;
}

.dark .p-service__btn-text::before {
  background: #fff;
}

.dark .p-service .bgLRextend::before {
  background-color: #fff;
}

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

body:has(.p-service) .p-works {
  margin-top: 56px;
  padding-bottom: 0;
}

.p-sp-global-menu {
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100dvh;
  background-color: #000;
  color: #fff;
  visibility: hidden;
  mix-blend-mode: multiply;
  opacity: 0.9;
  display: grid;
  place-items: center;
  text-align: center;
}

.p-sp-global-menu__inner {
  margin-top: -18px;
}

.p-sp-global-menu__nav {
  margin-top: 8dvh;
}

.p-sp-global-menu__list:not(:first-child) {
  margin-top: 6dvh;
}

.p-sp-global-menu__nav-title {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}

.is-drawerActive {
  overflow: hidden;
}

.p-technology-production {
  background: #000;
  padding-top: 57px;
  padding-bottom: 93px;
}

.p-technology-production__inner {
  position: relative;
}

.p-technology-production__inner .p-technology-production__text-wrap {
  padding: 0;
  margin-top: 44px;
  max-width: unset;
}

.p-technology-production .p-flow__rectangle-wrap {
  mix-blend-mode: difference;
}

.p-technology-production__rectangle-01 {
  top: -47px;
  left: -6px;
}

.p-technology-production .p-heading__hgroup {
  padding-inline: 10px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.p-technology-production__heading {
  border-bottom: 0.5px solid #fff;
  padding-bottom: 3px;
}

.p-technology-production .p-heading__heading-jp {
  font-weight: bold;
  font-size: clamp(1rem, 0.6374309392rem + 1.546961326vw, 1.875rem);
  line-height: 1.6875;
  letter-spacing: 1.6px;
}

.p-technology-production .p-heading__heading-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.1666666667;
  letter-spacing: 1.2px;
}

.p-technology-production__contents {
  margin-top: 47px;
}

.p-technology-production__content {
  position: relative;
}

.p-technology-production__content:not(:first-child) {
  margin-top: 61px;
}

.p-technology-production__content .l-inner {
  z-index: 1;
}

.p-technology-production__content .p-technology-production__text-wrap {
  z-index: 2;
  padding: 0 30px;
  max-width: unset;
  margin-top: 28px;
  width: 94%;
}

.p-technology-production__content .l-inner {
  display: contents;
}

.p-technology-production__content .p-technology-production__rectangle-02 {
  z-index: 1;
  top: -30px;
  left: 14px;
}

.p-technology-production__content .p-technology-production__rectangle-02 .c-rectangle__inner {
  width: 20px;
  background: transparent linear-gradient(136deg, rgba(203, 203, 203, 0.5019607843) 36%, #131313 73%) 0% 0% no-repeat padding-box;
}

.p-technology-production__content-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-right: calc(50% - 50vw);
  max-width: 1190px;
  position: relative;
  flex-direction: column-reverse;
}

.p-technology-production .c-bgextend-trigger-appear {
  mix-blend-mode: difference;
  animation-delay: 0.5s;
}

.p-technology-production .bgLRextend {
  padding: 1px 5px;
}

.p-technology-production .bgLRextend::before,
.p-technology-production .bgLRextend::after {
  left: 0;
  width: 100%;
}

.p-technology-production .bgappear {
  animation-duration: 0.1s;
}

.p-technology-production__text-wrap {
  padding: 296px 30px 54px;
  position: relative;
  max-width: 400px;
  margin-inline: auto;
  margin-top: 78px;
}

.p-technology-production__title-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 3.3333333333;
  letter-spacing: 1.2px;
}

.p-technology-production__title-jp {
  font-weight: 700;
  font-size: clamp(1.25rem, 0.9910220994rem + 1.1049723757vw, 1.875rem);
  line-height: 1.7;
  letter-spacing: 1px;
}

.p-technology-production__title {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.9696132597rem + 0.6629834254vw, 1.5rem);
  line-height: 1.7222222222;
  letter-spacing: 1.2px;
  color: #f0f0f0;
  border-bottom: 1px solid #fff;
  z-index: 2;
  position: relative;
}

.p-technology-production__text-container {
  margin-top: 5px;
}

.p-technology-production__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.8px;
  color: #f0f0f0;
}

.p-technology-production__text:not(:first-child) {
  margin-top: 24px;
}

.p-technology-production__img-wrap {
  padding-inline: 41px;
  margin-inline: auto;
  max-width: 579px;
  flex-shrink: 0;
}

.p-technology-production__img {
  aspect-ratio: 497/362;
  width: 100%;
  max-width: 497px;
}

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

.p-technology-production__item {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.8px;
  color: #f0f0f0;
}

.p-top-about {
  padding-top: 51px;
  padding-bottom: 61px;
}

.p-top-about .p-heading {
  padding-inline: 10px;
  mix-blend-mode: difference;
  color: #fff;
  position: relative;
  z-index: -1;
}

.p-top-about .p-heading__mosaicize {
  margin-top: 12px;
}

.p-top-about__content-wrap {
  display: flex;
  flex-direction: column;
}

.p-top-about__text-wrap {
  display: contents;
}

.p-top-about .c-text-bg {
  padding: 0 4px 0 4px;
  line-height: 1.4;
  translate: 0 4px;
}

.p-top-about .c-text-bg::after {
  background: #fff;
}

.p-top-about .c-text-bg.is-show {
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-top-about .c-text-bg.is-show::after {
  animation: bg_in_about 0.6s forwards;
}

.p-top-about__title {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 1.3570441989rem + 2.2099447514vw, 3.125rem);
  line-height: 1.3333333333;
  letter-spacing: 3px;
  order: 1;
  margin-top: 36px;
  padding-inline: 10px;
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-top-about__text {
  order: 3;
  line-height: 2;
  color: #222;
  transition: color 0.3s;
}

.p-top-about__text:first-of-type {
  margin-top: 78px;
}

.p-top-about__text:not(:first-of-type) {
  margin-top: 48px;
}

.p-top-about__text:last-of-type {
  text-wrap: nowrap;
}

.p-top-about__img-wrap {
  order: 2;
  position: relative;
  display: grid;
  place-items: center;
  align-items: initial;
  margin-top: 54px;
  z-index: -2;
}

.p-top-about__img-01 {
  margin-right: 6px;
  aspect-ratio: 171/156;
  width: 171px;
}

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

.p-top-about__img-02 {
  margin-top: 13px;
  margin-left: 119px;
  aspect-ratio: 112/118;
  width: 112px;
}

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

.p-top-about .p-heading__heading-en {
  z-index: 2;
  position: relative;
}

.p-top-about__top-rectangle-wrap {
  position: relative;
  z-index: -1;
}

.p-top-about__rectangle-wrap {
  mix-blend-mode: difference;
  translate: 0 -103px;
  z-index: -1;
}

.p-top-about .c-rectangle {
  z-index: -1;
}

.p-top-about .c-rectangle__inner {
  position: relative;
  z-index: -1;
}

.p-top-about__rectangle-01 {
  top: -129px;
  left: -18px;
}

.p-top-about__rectangle-02 {
  top: clamp(10.9375rem, 8.7252869898rem + 9.4387755102vw, 13.25rem);
  left: clamp(2.9375rem, -8.7214604592rem + 49.7448979592vw, 15.125rem);
}

.p-top-about__rectangle-02 .c-rectangle__inner {
  width: 51px;
  height: 50px;
  background: transparent linear-gradient(180deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
}

.p-top-about__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-about-01 1.5s ease forwards;
}

.p-top-about__rectangle-03 {
  top: clamp(21.125rem, 19.1519451531rem + 8.4183673469vw, 23.1875rem);
  left: clamp(5.5625rem, -6.2758290816rem + 50.5102040816vw, 17.9375rem);
}

.p-top-about__rectangle-03 .c-rectangle__inner {
  width: 111px;
  height: 131px;
  background: transparent linear-gradient(215deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
}

.p-top-about__rectangle-03.is-show {
  animation: none;
}

.p-top-about__rectangle-03.is-show .c-rectangle__inner {
  animation: translate-about-02 1.5s ease forwards;
}

.p-top-about__rectangle-04 {
  top: clamp(30.8125rem, 29.1383928571rem + 7.1428571429vw, 32.5625rem);
  left: clamp(1.0625rem, -10.9551977041rem + 51.2755102041vw, 13.625rem);
}

.p-top-about__rectangle-04 .c-rectangle__inner {
  width: 55px;
  height: 62px;
  background: transparent linear-gradient(180deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
}

.p-top-about__rectangle-04.is-show .c-rectangle__inner {
  animation: translate-about-03 1.5s ease forwards;
}

.p-top-about__rectangle-05 {
  top: clamp(21.125rem, 19.1519451531rem + 8.4183673469vw, 23.1875rem);
  left: clamp(16.8125rem, 5.09375rem + 50vw, 29.0625rem);
}

.p-top-about__rectangle-05 .c-rectangle__inner {
  width: 38px;
  height: 46px;
  background: transparent linear-gradient(180deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
}

.p-top-about__rectangle-05.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-top-about__rectangle-06 {
  top: clamp(30.5625rem, 28.5296556122rem + 8.6734693878vw, 32.6875rem);
  left: clamp(7.8125rem, -3.7866709184rem + 49.4897959184vw, 19.9375rem);
}

.p-top-about__rectangle-06 .c-rectangle__inner {
  width: 39px;
  height: 52px;
  background: transparent linear-gradient(180deg, rgba(95, 95, 95, 0.5019607843) 0%, #131313 100%) 0% 0% no-repeat padding-box;
}

.p-top-about__rectangle-06.is-show {
  animation: none;
}

.p-top-about__rectangle-06.is-show .c-rectangle__inner {
  animation: translate-about-05 1.5s ease forwards;
}

@keyframes bg_in_about {
  0% {
    translate: -100%;
  }

  100% {
    translate: 0;
  }
}

@keyframes translate-about-01 {
  to {
    translate: 14px 30px;
    rotate: -10deg;
  }
}

@keyframes translate-about-02 {
  to {
    translate: 0 30px;
  }
}

@keyframes translate-about-03 {
  to {
    translate: 30px -30px;
    rotate: -10deg;
  }
}

@keyframes translate-about-04 {
  to {
    translate: -30px 20px;
    rotate: -10deg;
  }
}

@keyframes translate-about-05 {
  to {
    translate: 0 30px;
  }
}

.dark .p-top-about__text {
  color: #fff;
}

.dark .p-top-about .c-text-bg {
  color: #fff;
}

.dark .p-top-about .c-text-bg.is-show {
  color: #000;
}

.dark .p-top-about .p-top-about__rectangle-wrap {
  z-index: 0;
}

.dark .p-top-about .p-heading {
  z-index: 0;
}

.dark .p-top-about .c-text-bg.is-show {
  z-index: 0;
}

.p-top-company {
  overflow: hidden;
  padding-top: 23px;
  position: relative;
}

.p-top-company::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent linear-gradient(180deg, #000000 47%, rgba(0, 0, 0, 0.3019607843) 72%, rgba(0, 0, 0, 0.5019607843) 95%) 0% 0% no-repeat padding-box;
}

.p-top-company .l-inner {
  position: relative;
}

.p-top-company .p-heading__hgroup {
  z-index: 1;
  position: relative;
}

.p-top-company .p-heading__mosaicize {
  margin-top: 13px;
}

.p-top-company__heading {
  position: relative;
  z-index: 1;
}

.p-top-company .p-sec-text-wrap__more-btn-wrap {
  margin-top: 6px;
}

.p-top-company .c-more-btn {
  translate: clamp(6rem, -5.2404336735rem + 47.9591836735vw, 17.75rem);
}

.p-top-company__inner {
  padding-inline: 10px;
  position: relative;
  z-index: 2;
}

.p-top-company__text-wrap {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.p-top-company__rectangle-wrap {
  position: relative;
  z-index: 1;
}

.p-top-company__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #ddd;
}

.p-top-company__img {
  background: url(../images/webp/p-top-company_img_001.webp) no-repeat center center/cover;
  aspect-ratio: 750/593;
  width: 100%;
  z-index: 0;
  position: relative;
  margin-top: -95px;
}

.p-top-company__rectangle-01 {
  top: -225px;
  left: -8px;
  z-index: 0;
}

.p-top-mv {
  width: 100%;
  height: clamp(25.25rem, 17.0662983425rem + 34.9171270718vw, 45rem);
  overflow-x: hidden;
}

.p-top-mv__inner {
  position: relative;
  height: 100%;
}

.p-top-mv__overlay {
  background: transparent linear-gradient(180deg, rgba(152, 152, 152, 0) 0%, #989898 50%, rgba(152, 152, 152, 0) 100%) 0% 0% no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
}

.p-top-mv__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.p-top-mv__video-wrap video {
  width: 192%;
  position: relative;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.p-top-mv__heading-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;
}

.p-top-mv__hgroup {
  margin-top: 8px;
  margin-right: 0;
}

.p-top-mv__heading-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: clamp(1.375rem, 0.908839779rem + 1.9889502762vw, 2.5rem);
  letter-spacing: 1.98px;
  font-weight: 500;
}

.p-top-mv__heading-en-lg {
  font-size: clamp(1.875rem, 1.1498618785rem + 3.0939226519vw, 3.625rem);
  letter-spacing: 2.7px;
  display: inline-block;
  margin-right: 5px;
}

.p-top-mv__heading-jp {
  font-weight: bold;
  font-size: 1.125rem;
  font-size: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
  letter-spacing: 1.2px;
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
}

.p-top-mv__heading-jp-1 {
  grid-column: span 2/span 2;
}

.p-top-mv__heading-jp-2 {
  grid-row-start: 2;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: end;
}

.p-top-mv__heading-jp-3 {
  grid-row-start: 2;
  justify-self: start;
  margin-left: 2px;
}

.p-top-mv__heading-jp-lg {
  font-size: clamp(0.8125rem, 0.6053176796rem + 0.8839779006vw, 1.3125rem);
  letter-spacing: 1.3px;
  line-height: 1.2;
  color: #fff;
}

.p-top-mv__heading-jp-lg::after {
  opacity: 0;
}

.p-top-mv__heading-jp-lg.is-show::after {
  background: #000;
  animation: bg_in 0.3s 1.5s forwards;
}

.p-top-mv__rectangle.c-rectangle {
  top: clamp(8.125rem, 5.1355229592rem + 12.7551020408vw, 11.25rem);
  left: clamp(0.9375rem, -7.4928252551rem + 35.9693877551vw, 9.75rem);
  z-index: unset;
}

.p-top-mv__rectangle.c-rectangle.is-show {
  animation: rotate 1.5s ease 0.5s forwards;
}

.p-top-mv__rectangle.c-rectangle.is-show .c-rectangle__inner {
  animation: translate 1.5s ease 0.5s forwards;
}

.p-top-mv__rectangle.c-rectangle .c-rectangle__inner {
  aspect-ratio: 1;
  width: clamp(1.5625rem, 0.8891574586rem + 2.8729281768vw, 3.1875rem);
  background: transparent linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
}

.p-top-mv__mosaicize-01 {
  display: none;
}

.p-top-mv__mosaicize-02 {
  display: none;
}

.p-top-news {
  padding-top: 60px;
  padding-bottom: 40px;
  overflow: hidden;
}

.p-top-news .p-heading__mosaicize {
  margin-top: 10px;
  mix-blend-mode: difference;
  position: relative;
  z-index: -1;
}

.p-top-news .l-inner {
  position: relative;
}

.p-top-news__heading {
  padding-inline: 10px;
  color: #000;
}

.p-top-news__list {
  margin-top: 23px;
}

.p-top-news .p-sec-text-wrap__more-btn-wrap {
  margin-top: 38px;
}

.p-top-news .p-heading__heading-en {
  text-wrap: nowrap;
}

.p-top-news .c-more-btn {
  translate: clamp(6rem, -5.2404336735rem + 47.9591836735vw, 17.75rem);
  color: #000;
  border-bottom: 0.5px solid #000;
}

.p-top-news .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow-black.webp) no-repeat center center/cover;
}

.p-top-news .c-rectangle {
  mix-blend-mode: difference;
  z-index: -1;
}

.p-top-news .c-rectangle__inner {
  position: relative;
  z-index: -1;
}

.p-top-news__rectangle-01 {
  top: -30px;
  left: 12px;
}

.p-top-news__rectangle-02 {
  display: none;
}

.p-top-news__rectangle-02 .c-rectangle__inner {
  width: 71px;
  height: 67px;
}

.p-top-news__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-value-01 1.5s ease forwards;
}

.p-top-news__rectangle-03 {
  display: none;
}

.p-top-news__rectangle-03 .c-rectangle__inner {
  width: 43px;
  height: 41px;
}

.p-top-news__rectangle-03.is-show .c-rectangle__inner {
  animation: translate-about-03 1.5s ease forwards;
}

.dark .c-more-btn {
  color: #fff;
  border-bottom: 0.5px solid #fff;
}

.dark .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow.webp) no-repeat center center/cover;
}

.dark .p-top-news .p-top-news__heading {
  color: #fff;
}

.dark .p-top-news .p-heading__mosaicize {
  z-index: 0;
}

.dark .p-top-news .c-rectangle {
  z-index: 0;
}

.p-top-service {
  background: #000;
  color: #fff;
  padding-top: 44px;
  position: relative;
}

.p-top-service__inner {
  padding-inline: 10px;
}

.p-top-service .p-heading__hgroup {
  z-index: 2;
  position: relative;
}

.p-top-service .p-heading__mosaicize {
  margin-top: 14px;
}

.p-top-service .c-rectangle {
  top: 14px;
  left: 13px;
  z-index: 1;
}

.p-top-service .c-more-btn {
  translate: clamp(6rem, -5.2404336735rem + 47.9591836735vw, 17.75rem);
}

.p-top-service__text-wrap {
  margin-top: 26px;
}

.p-top-service__text {
  line-height: 2;
  color: #ddd;
}

.p-top-service__img-area {
  margin-top: 37px;
}

.p-top-service__img {
  aspect-ratio: 375/323.5;
  width: 100%;
  position: relative;
}

.p-top-service__img:nth-child(1) {
  background: url(../images/webp/p-top-service_img_001.webp) no-repeat center center/cover;
}

.p-top-service__img:nth-child(2) {
  background: url(../images/webp/p-top-service_img_002.webp) no-repeat center center/cover;
}

.p-top-service__img:nth-child(3) {
  background: url(../images/webp/p-top-service_img_007-2.webp) no-repeat center center/cover;
}

.p-top-service__link {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding-inline: 20px;
  padding-bottom: 20px;
}

.p-top-service__link::before {
  content: "";
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, #000000 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p-top-service__img-area-text-wrap {
  z-index: 1;
}

.p-top-service__img-area-text-en {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  letter-spacing: 2.1px;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 6px;
}

.p-top-service__img-area-text-jp {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0.65px;
  opacity: 0.7;
}

.dark .p-top-service__text {
  color: #fff;
}

.p-top-value {
  mix-blend-mode: difference;
  padding-bottom: 79px;
  overflow: hidden;
  z-index: -1;
  position: relative;
}

.p-top-value .p-heading__heading-en {
  font-style: italic;
  font-size: clamp(1.875rem, 1.6160220994rem + 1.1049723757vw, 2.5rem);
  line-height: 1.3333333333;
  letter-spacing: 3px;
  margin-top: 8px;
}

.p-top-value .p-heading__heading-jp {
  margin-top: 2px;
}

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

.p-top-value__text-wrap {
  margin-top: 3px;
}

.p-top-value__text-bg {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  line-height: 1.8461538462;
  letter-spacing: 1.3px;
  color: #000;
  padding-inline: 7px;
}

.p-top-value__text {
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-size: clamp(0.75rem, 0.7241022099rem + 0.1104972376vw, 0.8125rem);
}

.p-top-value__bg {
  position: absolute;
  aspect-ratio: 1;
  width: 380px;
  left: 50%;
  translate: -50%;
}

.p-top-value__bg.is-show {
  clip-path: circle(0% at 50% 50%);
  animation: reveal 8s forwards;
}

.p-top-value__content-wrap {
  background: url(../images/p-top-value_img_002.png) no-repeat 236% -5%/107%;
  max-width: 375px;
  margin-inline: calc(50% - 50vw);
  left: 56%;
  position: relative;
  translate: -50%;
}

.p-top-value__content-title {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 1.3187154696rem + 0.773480663vw, 1.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 2.4px;
}

.p-top-value__content-text {
  font-weight: 500;
  font-size: clamp(0.625rem, 0.5732044199rem + 0.2209944751vw, 0.75rem);
  line-height: 1.8;
  letter-spacing: 1px;
}

.p-top-value__content-text-bg {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  line-height: 1.1666666667;
  letter-spacing: 1.2px;
  color: #000;
}

.p-top-value__content-text-wrap-01 {
  width: 39%;
  margin-right: 4px;
  margin-left: auto;
  margin-top: 14px;
}

.p-top-value__content-text-wrap-01 .p-top-value__content-text-bg {
  margin-top: 4px;
  margin-left: 7px;
}

.p-top-value__content-text-wrap-01 .p-top-value__content-text:last-of-type {
  text-wrap: nowrap;
  margin-top: 3px;
}

.p-top-value__content-text-wrap-02 {
  margin-top: 206px;
  margin-left: 84px;
}

.p-top-value__content-text-wrap-02 .p-top-value__content-text-bg {
  margin-top: 2px;
  margin-left: 7px;
}

.p-top-value__content-text-wrap-02 .p-top-value__content-text:last-of-type {
  margin-top: 6px;
}

.p-top-value__rectangle-01 {
  top: 67px;
  right: 14px;
  left: unset;
}

.p-top-value__rectangle-01 .c-rectangle__inner {
  width: 74px;
  height: 46px;
}

.p-top-value__rectangle-02 {
  top: 154px;
  right: 8px;
  left: unset;
}

.p-top-value__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-value-01 1.5s ease forwards;
}

.p-top-value__rectangle-02 .c-rectangle__inner {
  width: 25px;
  height: 26px;
}

.p-top-value__rectangle-03 {
  top: 190px;
  right: 56px;
  left: unset;
}

.p-top-value__rectangle-03.is-show .c-rectangle__inner {
  animation: translate-value-02 1.5s ease forwards;
}

.p-top-value__rectangle-03 .c-rectangle__inner {
  width: 21px;
  height: 23px;
}

@keyframes reveal {
  0% {
    filter: blur(1px);
    clip-path: circle(0% at 50% 50%);
  }

  100% {
    filter: blur(0);
    clip-path: circle(100% at 50% 50%);
  }
}

@keyframes translate-value-01 {
  to {
    translate: -15px -20px;
    rotate: -10deg;
  }
}

@keyframes translate-value-02 {
  to {
    translate: 15px -20px;
    rotate: -10deg;
  }
}

.p-works-archive {
  padding-top: 24px;
  padding-bottom: 0;
}

.p-works-archive__inner {
  position: relative;
  mix-blend-mode: difference;
  padding-inline: 10px;
  z-index: -1;
}

.p-works-archive .p-heading__mosaicize {
  margin-top: 13px;
}

.p-works-archive__text-wrap {
  margin-top: 21px;
  line-height: 2;
}

.p-works-archive__text {
  color: #ddd;
}

main:has(.p-works-archive) + .p-contact-area {
  padding-top: 88px;
}

.p-works-card {
  aspect-ratio: 375/264;
  width: 100%;
  position: relative;
}

.p-works-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, rgba(121, 121, 121, 0) 0%, #797979 75%) 0% 0% no-repeat padding-box;
  z-index: 1;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}

.p-works-card__body {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-works-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.p-works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.p-works-card__inner {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  z-index: 1;
}

.p-works-card__title {
  font-weight: bold;
  font-size: clamp(1rem, 0.9482044199rem + 0.2209944751vw, 1.125rem);
  letter-spacing: 0.8px;
  border-bottom: 1px solid #fff;
  padding-inline: 3px;
  padding-bottom: 6px;
}

.p-works-card__text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.6px;
  margin-top: 8px;
}

.p-works-list {
  margin-top: 55px;
}

.p-works {
  margin-top: 36px;
  padding-bottom: 37px;
  color: #000;
  overflow-x: clip;
  transition: color 0.3s;
}

.p-works .p-heading__mosaicize {
  mix-blend-mode: difference;
  z-index: -1;
  margin-top: 16px;
  position: relative;
}

.p-works .l-inner {
  position: relative;
}

.p-works__inner {
  padding-inline: 10px;
}

.p-works__heading {
  width: 40%;
}

.p-works__text-wrap {
  margin-top: 19px;
}

.p-works__text {
  line-height: 2;
  letter-spacing: 0.6px;
  color: #222;
  text-wrap: nowrap;
}

.p-works .p-sec-text-wrap__more-btn-wrap {
  margin-top: 17px;
}

.p-works .c-more-btn {
  translate: clamp(6rem, -5.2404336735rem + 47.9591836735vw, 17.75rem);
  border-bottom: 0.5px solid #000;
}

.p-works .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow-black.webp) no-repeat center center/cover;
}

.p-works .c-contents-title {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: clamp(1rem, 0.8964088398rem + 0.4419889503vw, 1.25rem);
  letter-spacing: 1.6px;
  color: #fff;
  line-height: 1.5;
  margin-top: 13px;
}

.p-works__splide-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #222;
  margin-top: 3px;
}

.p-works .splide {
  margin-top: 65px;
}

.p-works .splide__img {
  aspect-ratio: 315/184;
  width: 100%;
}

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

.p-works .splide__text-wrap {
  transition: opacity 1s;
}

.p-works .splide__slide .splide__text-wrap {
  opacity: 0;
}

.p-works .splide__slide a {
  pointer-events: none;
}

.p-works .splide__img {
  scale: 0.56825;
  transition: scale 0.8s;
}

.p-works .splide__slide.is-next .splide__img {
  transform-origin: left center;
}

.p-works .splide__slide.is-prev .splide__img {
  transform-origin: right center;
}

.p-works .splide__slide.is-active .splide__img {
  scale: 1;
}

.p-works .splide__slide.is-active .splide__text-wrap {
  opacity: 1;
}

.p-works .c-rectangle {
  mix-blend-mode: difference;
  z-index: -1;
}

.p-works .c-rectangle__inner {
  position: relative;
  z-index: -1;
}

.p-works__rectangle-01 {
  top: -29px;
  left: 11px;
}

.p-works__rectangle-02 {
  top: 298px;
  left: 53px;
}

.p-works__rectangle-02 .c-rectangle__inner {
  width: 168px;
  height: 114px;
}

.p-works__rectangle-02.is-show .c-rectangle__inner {
  animation: translate-about-04 1.5s ease forwards;
}

.p-works__rectangle-03 {
  top: 533px;
  left: unset;
  right: 24px;
}

.p-works__rectangle-03 .c-rectangle__inner {
  width: 62px;
  height: 56px;
}

.p-works__rectangle-04 {
  top: 624px;
  left: unset;
  right: 87px;
}

.p-works__rectangle-04 .c-rectangle__inner {
  width: 26px;
  height: 25px;
}

.p-works__rectangle-04.is-show .c-rectangle__inner {
  animation: translate-value-02 1.5s ease forwards;
}

.p-works__rectangle-05 {
  top: 654px;
  left: unset;
  right: 35px;
}

.p-works__rectangle-05 .c-rectangle__inner {
  width: 15px;
  height: 17px;
}

.p-works__rectangle-05.is-show .c-rectangle__inner {
  animation: translate-value-01 1.5s ease forwards;
}

.p-works .bgLRextend {
  display: inline-block;
  padding-inline: 8px;
}

.p-works .bgLRextend::before {
  background-color: #000;
  height: 146%;
  top: -4px;
  left: -8px;
  width: 110%;
}

.p-works .bgLRextend::after {
  background-color: #000;
  left: -8px;
  width: 110%;
  height: 146%;
  top: -4px;
}

.dark .p-works {
  color: #fff;
}

.dark .p-works .c-contents-title {
  color: #000;
  background: #fff;
}

.dark .p-works .p-works__rectangle-wrap {
  z-index: 0;
}

.dark .p-works .p-works__text {
  color: #ddd;
}

.dark .p-works .c-more-btn {
  border-bottom: 0.5px solid #fff;
}

.dark .p-works .c-more-btn::after {
  background: url(../images/webp/more-btn-arrow.webp) no-repeat center center/cover;
}

.dark .p-works__splide-text {
  color: #fff;
}

.dark .p-works .c-contents-title {
  background: #000;
}

.dark .p-works .bgLRextend::before {
  background-color: #fff;
}

.dark .p-works .bgLRextend::after {
  background-color: #fff;
}

.pagination {
  width: 100%;
}

.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: bold;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  line-height: 1.8;
  letter-spacing: 0.65px;
  color: #000;
}

.nav-links ul li span.current {
  border-bottom: 0.5px solid #000;
}

.nav-links ul li {
  position: relative;
  margin-inline: 6px;
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 0 5px;
}

.nav-links ul li .nav-links ul .dots {
  padding-right: 0;
  padding-left: 0;
}

.nav-links ul li a.prev,
.nav-links ul li a.next {
  text-transform: capitalize;
  border-bottom: 0.5px solid #000;
}

.dark .nav-links ul li a,
.dark .nav-links ul li span {
  color: #fff;
}

.dark .nav-links ul li a.prev,
.dark .nav-links ul li a.next {
  border-bottom: 0.5px solid #fff;
}

.dark .nav-links ul li span.current {
  border-bottom: 0.5px solid #fff;
}

.u-br-sp {
  display: block;
}

.u-br-pc {
  display: none;
}

.u-br-tb {
  display: none;
}

.u-fw-bold {
  font-weight: bold;
}

.u-indent {
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (min-width: 400px) {
  _::-webkit-full-page-media,
  _:future,
  :root .p-flow-virtual-consulting.p-flow .p-heading__hgroup {
    gap: 10px;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .p-reference-price__list {
    gap: 9px 10px;
  }
}

@media screen and (min-width: 576px) {
  .p-company-chart.p-reference-price .p-company-chart__bg {
    background: url(../images/p-company-chart_img_002.png) no-repeat center 27%/439px;
  }
}

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

  .l-content-reverse {
    flex-direction: column-reverse;
  }

  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1140px;
  }

  .l-pager {
    margin-top: 77px;
  }

  .bgLRextend::before {
    height: 124%;
    top: 50%;
    translate: 0 -50%;
  }

  .c-breadcrumb {
    line-height: 1.5;
    letter-spacing: 1.6px;
    padding-block: 18px;
  }

  .c-breadcrumb .l-inner {
    max-width: 1220px;
  }

  .c-more-btn {
    letter-spacing: 2.4px;
  }

  .c-more-btn::after {
    width: 10px;
    height: 7px;
  }

  .c-rectangle {
    display: none;
  }

  .c-text-bg {
    padding: 0 5px;
  }

  .c-text {
    letter-spacing: 0.8px;
  }

  .p-company-chart.p-reference-price {
    padding-top: 92px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-wrap {
    margin-top: 31px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
  }

  .p-company-chart.p-reference-price .p-company-chart__bg-world {
    background: url(../images/p-company-chart_img_001.png) no-repeat center 100%/84.5%;
    top: 54.5%;
  }

  .p-company-chart.p-reference-price .p-company-chart__bg {
    background: url(../images/p-company-chart_img_002.png) no-repeat center center/439px;
  }

  .p-company-chart.p-reference-price .p-company-chart__logo {
    top: 58.5%;
  }

  .p-company-chart.p-reference-price .p-company-chart__content-text-wrap {
    padding: 17px 25px 17px 25px;
    min-height: 158px;
  }

  .p-company-chart.p-reference-price .p-company-chart__country {
    line-height: 1.125;
    letter-spacing: 0.8px;
    padding-left: 26px;
  }

  .p-company-chart.p-reference-price .p-company-chart__country::before {
    top: 44%;
    width: 13px;
  }

  .p-company-chart.p-reference-price .p-company-chart__country-en {
    line-height: 1.1333333333;
    letter-spacing: 1.5px;
  }

  .p-company-chart.p-reference-price .p-company-chart__title {
    line-height: 0.8571428571;
    letter-spacing: 1.05px;
    margin-top: 10px;
    padding-inline: 4px;
  }

  .p-company-chart.p-reference-price .p-company-chart__content-text {
    line-height: 1.3846153846;
    letter-spacing: 0.65px;
    margin-top: 13px;
    padding-inline: 4px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-top .p-company-chart__content {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-top .p-company-chart__content-text-wrap {
    aspect-ratio: 343/158;
    width: 100%;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom {
    gap: 173px;
    margin-top: 206px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content {
    max-width: 343px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content-text-wrap {
    padding: 15px 35px 17px 36px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__country {
    padding-left: 20px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__country-en {
    display: inline;
    font-size: clamp(0.6875rem, 0.6357044199rem + 0.2209944751vw, 0.8125rem);
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__country::before {
    width: 10px;
    left: 6px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__title {
    margin-top: 12px;
    padding-inline: 5px;
  }

  .p-company-chart.p-reference-price .p-company-chart__text-bottom .p-company-chart__content-text {
    margin-top: 14px;
  }

  .p-company-info.p-reference-price {
    padding-top: 79px;
    padding-bottom: 5px;
  }

  .p-company-info__content {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 26px;
    gap: 47px;
  }

  .p-company-info__img {
    aspect-ratio: 442/257;
    margin-top: 25px;
  }

  .p-company-info__list-content {
    gap: 19px;
  }

  .p-company-info__term {
    line-height: 1.875;
    letter-spacing: 0.8px;
    min-width: 130px;
    padding: 1px 6px;
  }

  .p-company-info__desc {
    line-height: 1.875;
    letter-spacing: 0.8px;
  }

  .p-company.p-service-desc {
    padding-top: 74px;
  }

  .p-company .p-service-desc__hgroup-wrap {
    gap: 36px;
  }

  .p-company__text-wrap {
    margin-top: 40px;
  }

  .p-company__text {
    color: #fff;
  }

  .p-contact-area {
    padding-top: 129px;
    padding-bottom: 133px;
  }

  .p-contact-area__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-contact-area__mosaicize {
    aspect-ratio: 447/40;
    width: 90%;
    max-width: 447px;
    background: url(../images/p-contact-area_img_001.png) no-repeat center center/cover;
  }

  .p-contact .p-service-desc__rectangle-01 {
    left: -16px;
  }

  .p-contact .p-service-desc__rectangle-02 {
    right: -13px;
  }

  .p-contact .p-service-desc__rectangle-03 {
    right: 179px;
  }

  .p-contact .p-service-desc__rectangle-04 {
    right: 57px;
  }

  .p-contact .p-service-desc__hgroup-wrap {
    gap: 29px;
  }

  .p-contact__contents {
    margin-top: 60px;
  }

  .p-contact__text-wrap {
    margin-top: 36px;
  }

  .p-contact__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    color: #fff;
  }

  .p-contact__required {
    padding: 0 16px;
  }

  .p-contact__btn {
    width: 100%;
  }

  .p-contact__item-textarea {
    height: 252px;
  }

  .p-contact__item-select {
    background-position: right 30px top 19px;
  }

  .p-contact__btn input[type=submit] {
    padding: 11px 2em;
  }

  .dark .p-contact__item-select {
    background-position: right 30px top 19px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow {
    padding-bottom: 103px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step {
    margin-top: 73px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
    padding: 26px 20px 31px 20px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2) {
    margin-top: 63px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3) {
    margin-top: 62px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) {
    margin-top: 62px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
    padding: 26px 20px 31px 20px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-title {
    text-wrap: nowrap;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-text {
    text-wrap: nowrap;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production {
    padding-top: 67px;
    padding-bottom: 102px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-text-wrap {
    padding: 26px 10px 31px 10px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
    padding: 26px 10px 31px 10px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step {
    margin-top: 74px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-title-wrap {
    width: 22.5%;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(2) {
    margin-top: 64px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(3) {
    margin-top: 62px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(3) .p-flow__step-title {
    text-wrap: wrap;
  }

  .p-flow-virtual-consulting.p-flow {
    padding-bottom: 131px;
  }

  .p-flow-virtual-consulting.p-flow .p-heading__hgroup {
    gap: 28px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step {
    margin-top: 74px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
    min-height: 152px;
    padding: 26px 20px 31px 46px;
    gap: 0;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item::before,
  .p-flow-virtual-consulting.p-flow .p-flow__step-item::after {
    left: calc(53.5% - 0.5px);
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2) {
    margin-top: 64px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2)::before,
  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(2)::after {
    top: -41px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3) {
    margin-top: 62px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3)::before,
  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(3)::after {
    top: -43px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) {
    margin-top: 64px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4)::before,
  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4)::after {
    top: -47px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
    padding: 26px 20px 31px 46px;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-text {
    text-wrap: unset;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-title-wrap {
    flex-shrink: 0;
  }

  .p-flow {
    padding-top: 66px;
  }

  .p-flow .p-heading__heading-jp {
    line-height: 1.7;
    letter-spacing: 3px;
  }

  .p-flow .p-heading__heading-en {
    line-height: 1.125;
    letter-spacing: 1.6px;
    margin-top: 13px;
  }

  .p-flow .p-heading__hgroup {
    gap: 19px;
    padding-bottom: 10px;
    margin-inline: 10px;
    padding-inline: 0;
  }

  .p-flow__text-wrap {
    margin-top: 21px;
  }

  .p-flow__step {
    z-index: 1;
    position: relative;
  }

  .p-flow__step-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 17px;
  }

  .p-flow__step-item:nth-child(2) {
    margin-top: 65px;
  }

  .p-flow__step-item:nth-child(2)::before,
  .p-flow__step-item:nth-child(2)::after {
    top: -42px;
    left: calc(49% - 0.5px);
  }

  .p-flow__step-item:nth-child(3) {
    margin-top: 74px;
  }

  .p-flow__step-item:nth-child(3)::before,
  .p-flow__step-item:nth-child(3)::after {
    top: -52px;
    left: calc(49% - 0.5px);
  }

  .p-flow__step-arrow::before,
  .p-flow__step-arrow::after {
    top: -42px;
    left: calc(49% - 0.5px);
  }

  .p-flow__step-img-wrap {
    width: 11%;
  }

  .p-flow__step-img {
    width: 87px;
  }

  .p-flow__step-text-wrap {
    max-width: unset;
    max-width: 903px;
    display: flex;
    align-items: flex-start;
    padding: 26px 20px 31px 46px;
    gap: 44px;
  }

  .p-flow__step-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 10px;
    width: 28%;
  }

  .p-flow__step-num {
    line-height: 1.7;
    letter-spacing: 1.3px;
  }

  .p-flow__step-title {
    line-height: 1.3846153846;
    letter-spacing: 1.3px;
  }

  .p-flow__step-text {
    line-height: 1.875;
    letter-spacing: 0px;
  }

  .p-flow__rectangle-01 {
    top: -38px;
    left: -20px;
    display: block;
  }

  .p-flow__rectangle-01 .c-rectangle__inner {
    width: 51px;
    height: 51px;
  }

  .p-flow__rectangle-02 {
    top: 143px;
    left: unset;
    right: 1px;
    display: block;
  }

  .p-flow__rectangle-02 .c-rectangle__inner {
    width: 153px;
    height: 102px;
  }

  .p-flow__rectangle-03 {
    top: 340px;
    left: unset;
    right: 126px;
    display: block;
  }

  .p-flow__rectangle-03 .c-rectangle__inner {
    width: 28px;
    height: 31px;
    opacity: 1;
  }

  .p-flow__service {
    max-width: 350px;
    padding-top: 60px;
  }

  .p-flow__service-num {
    line-height: 0.72;
  }

  .p-flow__service-worries {
    letter-spacing: 0.9px;
  }

  .p-flow__service-title {
    line-height: 1.4285714286;
    letter-spacing: 1.05px;
  }

  .p-flow__service-text {
    line-height: 1.8571428571;
    letter-spacing: 0.7px;
  }

  .p-flow .bgLRextend::before {
    top: 0;
    height: 197%;
    left: -15px;
    width: 117%;
  }

  .p-flow .bgLRextend::after {
    height: 197%;
    top: 0;
    left: -15px;
    width: 117%;
  }

  .p-footer {
    padding-top: 33px;
    padding-bottom: 26px;
  }

  .p-footer__inner {
    padding-inline: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .p-footer__nav {
    justify-self: end;
  }

  .p-footer__list {
    line-height: 1.4;
    letter-spacing: 1.4px;
    display: inline-grid;
    grid-auto-flow: column;
    gap: 30.5px;
    margin-top: 0;
  }

  .p-footer__copyright {
    margin-top: 162px;
    text-align: center;
  }

  .p-footer__copyright small {
    line-height: 2.2857142857;
    letter-spacing: 1.4px;
  }

  .p-heading__heading-en {
    letter-spacing: 7px;
    line-height: 1.0285714286;
  }

  .p-heading__heading-jp {
    letter-spacing: 1.4px;
    margin-top: 3px;
  }

  .p-heading__mosaicize {
    margin-top: 26px;
  }

  .p-message.p-reference-price {
    padding-top: 113px;
  }

  .p-message.p-reference-price .p-heading__hgroup {
    gap: 21px;
  }

  .p-message__content {
    margin-inline: auto;
    max-width: 980px;
  }

  .p-message__container {
    display: flex;
    gap: 50px;
    padding: 30px 50px 40px 44px;
  }

  .p-message__title {
    line-height: 1.7142857143;
    letter-spacing: 2.1px;
    padding-left: 33px;
  }

  .p-message__title::before {
    width: 21px;
  }

  .p-message__name-img-wrap {
    flex-direction: column;
    width: 13.2%;
    flex-shrink: 0;
    margin-top: 18px;
    gap: 11px;
  }

  .p-message__img {
    width: 100%;
  }

  .p-message__name-wrap {
    display: grid;
    justify-items: center;
  }

  .p-message__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
  }

  .p-modal__inner {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 61px;
    height: 100%;
    align-items: center;
  }

  .p-modal__text-container {
    display: block;
    margin-top: 24px;
  }

  .p-modal__text-wrap {
    order: unset;
  }

  .p-modal__heading {
    letter-spacing: 2px;
  }

  .p-modal__desc {
    letter-spacing: 2px;
    line-height: 1.875;
    margin-top: 12px;
  }

  .p-modal__img-wrap {
    width: 39.6%;
  }

  .p-modal__img-bottom-wrap {
    gap: 0 6px;
  }

  .p-modal__heading-lv2 {
    letter-spacing: 0.9px;
    line-height: 1.6666666667;
    margin-top: 24px;
  }

  .p-modal__list {
    letter-spacing: 0.7px;
    line-height: 1.8571428571;
    margin-top: 12px;
  }

  .p-modal__btn-wrap {
    margin-top: 34px;
  }

  .p-modal__btn {
    letter-spacing: 0.8px;
    line-height: 1.875;
  }

  .p-modal__close-btn {
    width: 51px;
    height: 30px;
    top: 46px;
    right: 50px;
  }

  .p-modal__close-btn-line {
    width: 40px;
  }

  .p-news-archive.p-service-desc .p-news-archive__list {
    margin-top: 59px;
  }

  .p-news-archive.p-service-desc .p-post-list__inner {
    padding-inline: 60px;
  }

  .p-news-archive.p-service-desc .p-post-list {
    padding-right: 80px;
    padding-bottom: 26px;
  }

  .p-news-archive.p-service-desc .l-pager {
    margin-top: 94px;
  }

  .p-news-archive + .p-contact-area {
    padding-top: 129px;
  }

  .p-post-article__breadcrumb {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1220px;
  }

  .p-post-article__inner.l-inner {
    max-width: 924px;
  }

  .p-post-article__title {
    line-height: 1.4375;
    letter-spacing: 1.6px;
  }

  .p-post-article__info {
    margin-top: 26px;
  }

  .p-post-article__content {
    padding-bottom: 50px;
  }

  .p-post-article__main-img {
    margin-top: 17px;
    width: 97.737%;
    margin-inline: auto;
  }

  .p-post-article__wrap {
    margin-top: 52px;
  }

  .p-post-article__wrap .c-rectangle {
    display: block;
    top: -44px;
    left: -20px;
  }

  .p-post-article__wrap .c-rectangle__inner {
    width: 51px;
    height: 51px;
  }

  .p-post-article__content h2 {
    line-height: 1.7307692308;
    letter-spacing: 1.3px;
    margin-top: 36px;
  }

  .p-post-article__content h2::after {
    width: 60px;
  }

  .p-post-article__contents h3 {
    line-height: 1.7142857143;
    letter-spacing: 1.05px;
    margin-top: 38px;
  }

  .p-post-article__contents h4 {
    margin-top: 30px;
  }

  .p-post-article__contents h5 {
    margin-top: 30px;
  }

  .p-post-article__contents p {
    line-height: 2;
    letter-spacing: 0.8px;
    margin-top: 31px;
  }

  .p-post-article__contents figure {
    margin-top: 60px;
  }

  .p-post-article__contents figcaption {
    line-height: 1.3846153846;
    letter-spacing: 0.65px;
    margin-top: 14px;
  }

  .p-post-article__contents .wp-block-list {
    line-height: 1.875;
    margin-top: 42px;
  }

  .p-post-article__contents ul.wp-block-list li {
    padding-left: 20px;
  }

  .p-post-article__contents ul.wp-block-list li::before {
    top: 12px;
    left: 0px;
  }

  .p-post-article__contents ul.wp-block-list li:not(:first-child) {
    margin-top: 1px;
  }

  .p-post-article__contents ol.wp-block-list li {
    margin-left: 18px;
    padding-left: 2px;
  }

  .p-post-article__contents .wp-block-buttons {
    margin-top: 90px;
    margin-left: 0;
    padding-left: 5.6%;
    margin-right: 0;
  }

  .p-post-article__contents .wp-block-button .wp-block-button__link {
    line-height: 1.875;
    letter-spacing: 0.8px;
    padding: 7px 20px;
  }

  .p-post-list {
    padding-bottom: 26px;
    padding-inline: 9px;
    padding-right: 72px;
  }

  .p-post-list__date {
    line-height: 1.875;
    letter-spacing: 0.8px;
  }

  .p-post-list__title {
    line-height: 1.7777777778;
    letter-spacing: 1.8px;
    color: #000;
  }

  .p-post-list__link:not(:first-child) .p-post-list {
    padding-top: 26px;
  }

  .p-promotion-measures.p-technology-production {
    padding-top: 66px;
  }

  .p-promotion-measures.p-technology-production .p-heading__hgroup {
    gap: 27px;
  }

  .p-promotion-measures.p-technology-production .p-heading__heading-en {
    margin-top: 14px;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(1) {
    background: url(../images/webp/p-promotion-measures_img_001.webp) no-repeat 100% 0%/contain;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(2) {
    background: url(../images/webp/p-promotion-measures_img_002-2.webp) no-repeat 0% 0%/contain;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__contents {
    max-width: 1280px;
    margin-inline: auto;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__text-wrap {
    padding: 0 0 0 10px;
    max-width: unset;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__rectangle-01 {
    top: -38px;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content {
    min-height: 692px;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content:first-child .p-technology-production__text-wrap {
    width: unset;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content:nth-child(2)::after {
    background: transparent linear-gradient(270deg, #000000 37%, rgba(0, 0, 0, 0.3019607843) 76%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content::before {
    display: block;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content::after {
    background: transparent linear-gradient(90deg, #000000 37%, rgba(0, 0, 0, 0.3019607843) 76%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
  }

  .p-reference-price-consulting .p-reference-price__list {
    grid-template-rows: repeat(2, auto);
  }

  .p-reference-price-consulting .p-reference-price__note {
    margin-top: 4px;
  }

  .p-reference-price-consulting .p-reference-price__content-middle {
    width: 30%;
  }

  .p-reference-price-production.p-reference-price {
    padding-top: 121px;
    padding-bottom: 73px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__list {
    grid-template-columns: repeat(2, auto);
  }

  .p-reference-price-production.p-reference-price .p-reference-price-production__contents {
    margin-top: 56px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content {
    padding: 24px 22px 22px 76px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content:not(:first-child) {
    margin-top: 29px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(1) .p-reference-price__content-start,
  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(3) .p-reference-price__content-start,
  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(4) .p-reference-price__content-start {
    display: block;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__list {
    gap: 3px 30px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__item {
    text-wrap: nowrap;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__note {
    padding-left: 0;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__note-br {
    display: block;
  }

  .p-reference-price-production + .p-works .splide {
    margin-top: 114px;
  }

  .p-reference-price-production + .p-works .p-works__rectangle-03 {
    top: 657px;
  }

  .p-reference-price-production + .p-works .p-works__rectangle-04 {
    top: 786px;
  }

  .p-reference-price-production + .p-works .p-works__rectangle-05 {
    top: 865px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production {
    padding-top: 124px;
    padding-bottom: 45px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__rectangle-01 {
    left: -4px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price-production__contents {
    margin-top: 66px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content-middle {
    width: 31%;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__item {
    width: 120px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-start {
    display: block;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-middle {
    width: 80%;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__middle-wrap {
    gap: 54px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(4) .p-reference-price__middle-wrap {
    gap: 34px;
  }

  .p-reference-price {
    padding-top: 109px;
  }

  .p-reference-price__rectangle-01 {
    display: block;
    top: -38px;
    left: 0px;
  }

  .p-reference-price__heading {
    padding-inline: 10px;
  }

  .p-reference-price .p-heading__hgroup {
    gap: 30px;
    padding-bottom: 10px;
    padding-inline: 0;
  }

  .p-reference-price .p-heading__heading-jp {
    line-height: 1.7;
    letter-spacing: 3px;
  }

  .p-reference-price .p-heading__heading-en {
    line-height: 1.125;
    letter-spacing: 1.6px;
    margin-top: 12px;
  }

  .p-reference-price__content {
    padding: 24px 24px 22px;
    margin-top: 48px;
    max-width: 972px;
  }

  .p-reference-price__content-start {
    width: 72.5%;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 10px;
  }

  .p-reference-price__title-jp {
    letter-spacing: 0.9px;
  }

  .p-reference-price__title-en {
    letter-spacing: 1.6px;
  }

  .p-reference-price__middle-wrap {
    display: flex;
    width: 73.5%;
    margin-left: auto;
    gap: 25px;
  }

  .p-reference-price__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 194px;
  }

  .p-reference-price__num-wrap {
    margin-top: 5px;
    margin-left: 7px;
  }

  .p-reference-price__list {
    gap: 3px 30px;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, 1fr);
  }

  .p-reference-price__item {
    letter-spacing: 0.8px;
  }

  .p-reference-price__item::before {
    width: 10px;
    left: -5px;
  }

  .p-reference-price + .p-works {
    margin-top: 92px;
  }

  .p-reference-price + .p-works .p-sec-text-wrap__more-btn-wrap {
    margin-top: 32px;
  }

  .p-reference-price + .p-works .splide {
    margin-top: 114px;
  }

  .p-reference-price + .p-works .p-works__rectangle-03 {
    top: 658px;
  }

  .p-reference-price + .p-works .p-works__rectangle-04 {
    top: 787px;
  }

  .p-reference-price + .p-works .p-works__rectangle-05 {
    top: 865px;
  }

  .p-sec-text-wrap {
    margin-top: 0;
    max-width: 402px;
  }

  .p-sec-text-wrap__text {
    line-height: 1.875;
  }

  .p-sec-text-wrap__more-btn-wrap {
    margin-top: 28px;
  }

  .p-sec-text-wrap .c-more-btn {
    translate: -120px;
  }

  .p-service-desc-creative-production.p-service-desc .p-service-desc__hgroup-wrap {
    gap: 33px;
  }

  .p-service-desc-creative-production.p-service-desc .p-heading__heading-en {
    letter-spacing: 7px;
  }

  .p-service-desc-creative-production.p-service-desc .p-service-desc__contents-01 .p-service-desc__content-inner {
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
  }

  .p-service-desc-creative-production.p-service-desc .p-service-desc__contents-01 .p-service-desc__content-text-wrap {
    width: 73%;
    margin-top: 40px;
  }

  .p-service-desc-creative-production.p-service-desc .p-service-desc__contents-02 .p-service-desc__title-wrap {
    margin-top: 40px;
  }

  .p-service-desc-creative-production.p-service-desc .p-service-desc__contents-03 .p-service-desc__content-inner {
    margin-top: 19px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__hgroup-wrap {
    gap: 44px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__content-text-wrap {
    margin-left: 5px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__content-text {
    margin-top: 37px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-02 .p-service-desc__img-wrap {
    width: 50%;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-heading__heading-en {
    letter-spacing: 7px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__img-01 {
    width: 100%;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__img-02 {
    width: 100%;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-05 {
    top: 237px;
    left: unset;
    right: 318px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-06 {
    top: 438px;
    left: unset;
    right: 443px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__rectangle-07 {
    top: 514px;
    left: unset;
    right: 62px;
  }

  .p-service-desc {
    padding-top: 78px;
  }

  .p-service-desc .p-heading__mosaicize {
    aspect-ratio: 253/38;
    width: 253px;
    background: url(../images/p-service-desc_img_006.png) no-repeat center center/cover;
    margin-top: 25px;
  }

  .p-service-desc .bgLRextend {
    padding: 0 10px;
  }

  .p-service-desc .c-rectangle {
    display: block;
  }

  .p-service-desc__rectangle-01 {
    top: -47px;
    left: -26px;
  }

  .p-service-desc__rectangle-02 {
    top: -5px;
    right: -23px;
  }

  .p-service-desc__rectangle-02 .c-rectangle__inner {
    width: 153px;
    height: 102px;
  }

  .p-service-desc__rectangle-03 {
    top: 120px;
    right: 169px;
  }

  .p-service-desc__rectangle-03 .c-rectangle__inner {
    width: 48px;
    height: 46px;
  }

  .p-service-desc__rectangle-04 {
    top: 192px;
    right: 47px;
  }

  .p-service-desc__rectangle-04 .c-rectangle__inner {
    width: 28px;
    height: 31px;
  }

  .p-service-desc__rectangle-05 {
    top: 253px;
    left: unset;
    right: 308px;
  }

  .p-service-desc__rectangle-05 .c-rectangle__inner {
    width: 131px;
    height: 123px;
  }

  .p-service-desc__rectangle-06 {
    top: 453px;
    left: unset;
    right: 432px;
  }

  .p-service-desc__rectangle-06 .c-rectangle__inner {
    width: 63px;
    height: 59px;
  }

  .p-service-desc__rectangle-07 {
    top: 529px;
    left: unset;
    right: 52px;
  }

  .p-service-desc__rectangle-07 .c-rectangle__inner {
    width: 63px;
    height: 59px;
  }

  .p-service-desc__rectangle-08 {
    top: -60px;
    right: unset;
    left: -9px;
  }

  .p-service-desc__rectangle-08 .c-rectangle__inner {
    width: 95px;
    height: 96px;
  }

  .p-service-desc__rectangle-09 {
    top: unset;
    bottom: -51px;
    right: 4px;
    left: unset;
  }

  .p-service-desc__rectangle-09 .c-rectangle__inner {
    width: 60px;
    height: 58px;
  }

  .p-service-desc__rectangle-10 {
    top: unset;
    bottom: -67px;
    right: -39px;
    left: unset;
  }

  .p-service-desc__rectangle-10 .c-rectangle__inner {
    width: 28px;
    height: 31px;
  }

  .p-service-desc__hgroup-wrap {
    display: flex;
    align-items: flex-start;
    gap: 42px;
  }

  .p-service-desc__text-wrap {
    margin-top: 36px;
  }

  .p-service-desc__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    color: #fff;
  }

  .p-service-desc__title-jp {
    line-height: 1.5277777778;
    letter-spacing: 3.6px;
  }

  .p-service-desc__title-en {
    line-height: 2.0625;
    letter-spacing: 1.6px;
  }

  .p-service-desc__title-en:first-of-type {
    margin-top: 16px;
  }

  .p-service-desc__contents {
    display: grid;
    place-items: center;
  }

  .p-service-desc__contents-02 .p-service-desc__content-inner {
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    margin-top: 0;
  }

  .p-service-desc__contents-02 .p-service-desc__content-text-wrap {
    width: 48%;
    margin-top: 0;
  }

  .p-service-desc__contents-02 .p-service-desc__content-text {
    translate: 0 20px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap {
    width: 100%;
    margin-top: 0px;
    padding: 71px 41px 85px 33px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow {
    translate: 0 13px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-img {
    width: 49px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content {
    padding: 15px 11px;
    gap: 4px;
    max-width: unset;
    margin-inline: 0;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child) {
    margin-top: 32px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::before,
  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content:not(:first-child)::after {
    height: 17px;
    top: -29px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-title {
    line-height: 1;
    letter-spacing: 1.1px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-text {
    line-height: 1;
    letter-spacing: 1.1px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-container {
    width: 46%;
  }

  .p-service-desc__contents-02 .p-service-desc__bg {
    top: -100px;
  }

  .p-service-desc__contents-03 .p-service-desc__content-inner {
    width: 100%;
    gap: 0;
    margin-top: 69px;
  }

  .p-service-desc__contents-03 .p-service-desc__content-text-wrap {
    width: 45%;
    margin-top: 0;
  }

  .p-service-desc__contents-03 .p-service-desc__content-text {
    margin-top: 44px;
  }

  .p-service-desc__contents-03 .p-service-desc__img-wrap {
    translate: 0 -51px;
  }

  .p-service-desc__contents-03 .p-service-desc__img-02 {
    translate: 69px 8px;
  }

  .p-service-desc__contents-03 .p-service-desc__rectangle-05 {
    top: 210px;
  }

  .p-service-desc__contents-03 .p-service-desc__rectangle-06 {
    top: 409px;
  }

  .p-service-desc__contents-03 .p-service-desc__rectangle-07 {
    top: 486px;
  }

  .p-service-desc__content-inner {
    margin-top: 69px;
    flex-direction: row;
    gap: 0;
  }

  .p-service-desc__content-text-wrap {
    display: block;
    margin-top: 57px;
  }

  .p-service-desc__content-text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    margin-top: 35px;
    text-wrap: nowrap;
  }

  .p-service-desc__img-wrap {
    margin-left: 30px;
  }

  .p-service-desc__bg {
    width: 720px;
    top: -73px;
  }

  .p-service-desc__img-01 {
    width: 100%;
  }

  .p-service-desc__img-02 {
    width: 100%;
    translate: 26px;
    margin-top: 27px;
  }

  .js-section {
    width: 100%;
  }

  .p-top-service.p-service {
    padding-bottom: 156px;
  }

  .p-service__mix-mode {
    padding-top: 33px;
  }

  .p-service .p-top-service__heading {
    display: flex;
    align-items: center;
    gap: 43px;
    width: 100%;
  }

  .p-service .p-heading__mosaicize.c-mosaicize {
    margin-top: -5px;
  }

  .p-service .p-top-service__text {
    text-wrap: nowrap;
  }

  .p-service .p-top-service__text-wrap {
    width: 100%;
  }

  .p-service .p-top-service__rectangle-01.c-rectangle {
    top: -12px;
    left: 2px;
  }

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

  .p-service__btn-wrap {
    margin-top: 2px;
  }

  .p-service__introduction {
    margin-top: 60px;
    padding-bottom: 0;
  }

  .p-service__introduction-list {
    padding-top: 0;
  }

  .p-service__introduction-item:not(:first-child) {
    margin-top: 74px;
  }

  .p-service__introduction-item:last-child .p-sec-text-wrap__more-btn-wrap {
    margin-top: 9px;
  }

  .p-service__introduction-img {
    width: 100%;
  }

  .p-service__introduction-title-en {
    line-height: 2.5;
    letter-spacing: 1.6px;
    margin-top: 22px;
  }

  .p-service__introduction-title-jp {
    line-height: 1;
    letter-spacing: 4px;
    margin-top: 2px;
  }

  .p-service__introduction-text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    margin-top: 16px;
  }

  .p-service .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(0.1875rem, -26.7183295964rem + 56.0538116592vw, 8rem);
    margin-top: 12px;
  }

  .p-service .p-service__introduction-item .c-more-btn {
    translate: clamp(13.75rem, -0.4562780269rem + 29.5964125561vw, 17.875rem);
  }

  .p-service .bgLRextend::before {
    top: 0;
    height: 197%;
    left: -15px;
    width: 117%;
  }

  .p-service .bgLRextend::after {
    height: 197%;
    top: 0;
    left: -15px;
    width: 117%;
  }

  body:has(.p-service) .p-works .p-sec-text-wrap__more-btn-wrap {
    margin-top: 51px;
  }

  .p-technology-production {
    padding-top: 66px;
  }

  .p-technology-production__inner .p-technology-production__text-wrap {
    padding: 0 0 0 10px;
    margin-top: 78px;
  }

  .p-technology-production__rectangle-01 {
    display: block;
    top: -38px;
    left: -19px;
  }

  .p-technology-production .p-heading__hgroup {
    gap: 38px;
    padding-inline: 0;
  }

  .p-technology-production__heading {
    padding-bottom: 10px;
    margin-inline: 10px;
  }

  .p-technology-production .p-heading__heading-jp {
    line-height: 1.7;
    letter-spacing: 3px;
  }

  .p-technology-production .p-heading__heading-en {
    line-height: 1.125;
    letter-spacing: 1.6px;
    margin-top: 13px;
  }

  .p-technology-production__contents {
    margin-top: 58px;
  }

  .p-technology-production__content {
    display: grid;
    align-items: center;
  }

  .p-technology-production__content:not(:first-child) {
    margin-top: 0;
  }

  .p-technology-production__content .p-technology-production__text-wrap {
    margin-top: 30px;
    padding: 0 0 0 10px;
    width: unset;
  }

  .p-technology-production__content .l-inner {
    display: block;
    position: relative;
    z-index: 1;
  }

  .p-technology-production__content .c-rectangle {
    display: block;
  }

  .p-technology-production__content .p-technology-production__rectangle-02 {
    top: -34px;
    left: -12px;
  }

  .p-technology-production__content .p-technology-production__rectangle-02 .c-rectangle__inner {
    width: 28px;
  }

  .p-technology-production__content-inner {
    flex-direction: row;
  }

  .p-technology-production__content-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, #000 60%) 0% 0% no-repeat padding-box;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 1;
  }

  .p-technology-production__content--reverse .p-technology-production__text-wrap {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }

  .p-technology-production .bgLRextend {
    padding: 1px 11px;
  }

  .p-technology-production__text-wrap {
    max-width: 566px;
    margin-inline: 0;
    padding: 0 0 0 10px;
  }

  .p-technology-production__title-en {
    line-height: 2.8571428571;
    letter-spacing: 1.4px;
  }

  .p-technology-production__title-jp {
    line-height: 1.7;
    letter-spacing: 1.5px;
  }

  .p-technology-production__title {
    line-height: 1.7083333333;
  }

  .p-technology-production__text-container {
    margin-top: 25px;
  }

  .p-technology-production__text {
    line-height: 1.875;
  }

  .p-technology-production__img-wrap {
    padding-inline: 0;
    margin-inline: 0;
    width: 30%;
    margin-top: 60px;
    max-width: unset;
  }

  .p-technology-production__item {
    line-height: 1.875;
  }

  .p-top-about {
    padding-top: 118px;
    padding-bottom: 100px;
  }

  .p-top-about .p-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .p-top-about .p-top-about__mosaicize {
    background: url(../images/webp/p-top-about_img_003.webp) no-repeat center center/cover;
    aspect-ratio: 238/38;
    width: 238px;
    margin-top: -8px;
  }

  .p-top-about .p-heading__heading-jp {
    margin-top: 1px;
  }

  .p-top-about__content-wrap {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 64px;
  }

  .p-top-about__text-wrap {
    display: block;
    width: 50%;
  }

  .p-top-about__title {
    line-height: 0.8;
    letter-spacing: 5px;
    order: unset;
    margin-top: 47px;
    padding-inline: 0;
    text-wrap: nowrap;
  }

  .p-top-about__text {
    order: unset;
    margin-left: 6px;
    color: #000;
  }

  .p-top-about__text:first-of-type {
    margin-top: 49px;
  }

  .p-top-about__text:not(:first-of-type) {
    margin-top: 63px;
  }

  .p-top-about__text:last-of-type {
    text-wrap: unset;
  }

  .p-top-about__img-wrap {
    order: unset;
    width: 46.4%;
  }

  .p-top-about__img-01 {
    width: 276px;
    margin-top: 1px;
    margin-right: 84px;
  }

  .p-top-about__img-02 {
    width: 180px;
    margin-top: 21px;
    margin-left: 115px;
  }

  .p-top-about__rectangle-wrap {
    translate: -1px -158px;
  }

  .p-top-about .c-rectangle {
    display: block;
  }

  .p-top-about__rectangle-01 {
    top: -90px;
    left: -650px;
  }

  .p-top-about__rectangle-02 {
    top: 140px;
    left: 31px;
  }

  .p-top-about__rectangle-02 .c-rectangle__inner {
    width: 81px;
    height: 81px;
  }

  .p-top-about__rectangle-03 {
    top: 403px;
    left: 93px;
  }

  .p-top-about__rectangle-03 .c-rectangle__inner {
    width: 179px;
    height: 210px;
  }

  .p-top-about__rectangle-04 {
    top: 617px;
    left: -2px;
  }

  .p-top-about__rectangle-04 .c-rectangle__inner {
    width: 88px;
    height: 100px;
  }

  .p-top-about__rectangle-05 {
    top: 392px;
    left: clamp(20rem, 15.96875rem + 8.3984375vw, 22.6875rem);
  }

  .p-top-about__rectangle-05 .c-rectangle__inner {
    width: 61px;
    height: 74px;
  }

  .p-top-about__rectangle-06 {
    top: 645px;
    left: 151px;
  }

  .p-top-about__rectangle-06 .c-rectangle__inner {
    width: 63px;
    height: 85px;
  }

  .p-top-company {
    padding-top: 83px;
    padding-bottom: 80px;
  }

  .p-top-company::before {
    background: transparent linear-gradient(-90deg, #000000 41%, rgba(0, 0, 0, 0.3019607843) 65%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
  }

  .p-top-company::after {
    content: "";
    position: absolute;
    background: #797979 0% 0% no-repeat padding-box;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 2;
  }

  .p-top-company .l-inner {
    z-index: 3;
  }

  .p-top-company .p-heading__mosaicize {
    background: url(../images/p-top-company_img_003.png) no-repeat center center/cover;
    aspect-ratio: 308/38;
    width: 308px;
    margin-top: 16px;
  }

  .p-top-company .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(0.1875rem, -18.1084641256rem + 38.1165919283vw, 5.5rem);
    margin-top: 25px;
  }

  .p-top-company .c-more-btn {
    translate: -55px;
  }

  .p-top-company__inner {
    width: 37.8%;
    margin-left: auto;
  }

  .p-top-company__text-wrap {
    margin-top: 29px;
  }

  .p-top-company__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    color: #fff;
  }

  .p-top-company__img {
    background: url(../images/webp/p-top-company_img_002.webp) no-repeat 132% 17%/140%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-top-company__rectangle-01 {
    top: -330px;
    left: 664px;
  }

  .p-top-company .c-rectangle {
    display: block;
  }

  .p-top-mv {
    aspect-ratio: 1280/720;
    height: unset;
  }

  .p-top-mv__video-wrap video {
    width: 150%;
  }

  .p-top-mv__hgroup {
    margin-top: -12px;
    margin-right: 8px;
  }

  .p-top-mv__heading-en {
    letter-spacing: 3.6px;
  }

  .p-top-mv__heading-en-lg {
    letter-spacing: 5.22px;
  }

  .p-top-mv__heading-jp {
    letter-spacing: 2.16px;
    margin-top: 6px;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(1, 1fr);
  }

  .p-top-mv__heading-jp-1 {
    grid-column: unset;
  }

  .p-top-mv__heading-jp-2 {
    grid-row-start: unset;
  }

  .p-top-mv__heading-jp-3 {
    grid-row-start: unset;
  }

  .p-top-mv__heading-jp-lg {
    letter-spacing: 2.52px;
    margin-right: 4px;
    margin-left: 10px;
  }

  .p-top-mv__heading-jp-lg.is-show::after {
    animation: bg_in 0.3s 1.5s forwards;
  }

  .p-top-mv__rectangle.c-rectangle {
    top: clamp(11.5rem, 3.90625rem + 15.8203125vw, 16.5625rem);
    top: 50%;
    translate: -330px -200%;
    left: clamp(28.4375rem, 11.09375rem + 36.1328125vw, 40rem);
    display: block;
  }

  .p-top-mv__mosaicize-01 {
    display: block;
    aspect-ratio: 328/38;
    width: 328px;
    height: 38px;
    background-image: url("../images/p-top-mv_img_01.png");
    background-size: cover;
    background-position: center;
    top: 50%;
    left: 50%;
    translate: 161px -93px;
  }

  .p-top-mv__mosaicize-02 {
    display: block;
    aspect-ratio: 208/28;
    width: 208px;
    height: 28px;
    background-image: url("../images/p-top-mv_img_004.png");
    background-size: cover;
    background-position: center;
    top: 50%;
    left: 50%;
    translate: -546px 31px;
  }

  .p-top-news {
    padding-top: 120px;
    padding-bottom: 114px;
  }

  .p-top-news .p-heading__mosaicize {
    aspect-ratio: 197/38;
    width: 197px;
    background: url(../images/p-top-news_img_002.png) no-repeat center center/cover;
  }

  .p-top-news__inner {
    display: flex;
    gap: 70px;
  }

  .p-top-news__heading {
    width: 20%;
  }

  .p-top-news__list-wrap {
    width: 80%;
  }

  .p-top-news__list {
    margin-top: 9px;
    margin-right: 20px;
  }

  .p-top-news .p-sec-text-wrap__more-btn-wrap {
    width: 30%;
    margin-left: auto;
    margin-right: 36px;
    margin-top: 45px;
  }

  .p-top-news .c-more-btn {
    translate: 0;
  }

  .p-top-news__rectangle-01 {
    display: block;
    top: -32px;
    left: -4px;
  }

  .p-top-news__rectangle-02 {
    display: block;
    top: 286px;
    left: 113px;
  }

  .p-top-news__rectangle-03 {
    display: block;
    top: 336px;
    left: 45px;
  }

  .p-top-service {
    margin-top: 44px;
    padding-top: 65px;
  }

  .p-top-service__inner {
    display: flex;
    gap: 98px;
  }

  .p-top-service .p-heading__mosaicize {
    aspect-ratio: 253/38;
    width: 253px;
    background: url(../images/p-top-service_img_004.png) no-repeat center center/cover;
    margin-top: 22px;
  }

  .p-top-service .c-rectangle {
    display: block;
    top: 18px;
    left: 65px;
  }

  .p-top-service .c-rectangle__inner {
    width: 51px;
    height: 51px;
  }

  .p-top-service .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(0.1875rem, -26.7183295964rem + 56.0538116592vw, 8rem);
  }

  .p-top-service .c-more-btn {
    translate: -108px;
  }

  .p-top-service__heading {
    width: 40%;
  }

  .p-top-service__text-wrap {
    width: 60%;
    margin-top: 32px;
  }

  .p-top-service__text {
    line-height: 1.875;
  }

  .p-top-service__img {
    aspect-ratio: unset;
    height: 736px;
  }

  .p-top-value {
    margin-top: 50px;
  }

  .p-top-value .p-heading__heading-en {
    line-height: 1;
    letter-spacing: 4px;
    margin-top: 18px;
  }

  .p-top-value .p-heading__heading-jp {
    margin-top: 7px;
  }

  .p-top-value__heading {
    margin-left: 48px;
  }

  .p-top-value__text-wrap {
    margin-top: 6px;
    margin-left: 48px;
  }

  .p-top-value__text-bg {
    line-height: 2;
    letter-spacing: 1.6px;
  }

  .p-top-value__text {
    line-height: 1.3846153846;
    letter-spacing: 1.3px;
    margin-top: 7px;
  }

  .p-top-value__bg {
    aspect-ratio: 1;
    width: 715px;
    top: 0;
  }

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

  .p-top-value__content-wrap {
    left: 50%;
    margin-top: -273px;
    margin-inline: 0;
    background: url(../images/p-top-value_img_003.png) no-repeat 40% 68%/67%;
    max-width: unset;
  }

  .p-top-value__content-title {
    line-height: 1.2903225806;
    letter-spacing: 3.1px;
  }

  .p-top-value__content-text {
    line-height: 1.5;
    letter-spacing: 1.2px;
  }

  .p-top-value__content-text-bg {
    line-height: 1.2142857143;
    letter-spacing: 1.4px;
  }

  .p-top-value__content-text-wrap-01 {
    width: 37%;
    margin-right: 3px;
    margin-top: -48px;
    padding-top: 120px;
    translate: 0 60px;
  }

  .p-top-value__content-text-wrap-01 .bgLRextend::before {
    width: 113%;
  }

  .p-top-value__content-text-wrap-01 .p-top-value__content-text-bg {
    margin-top: 7px;
  }

  .p-top-value__content-text-wrap-01 .p-top-value__content-text {
    margin-top: -1px;
  }

  .p-top-value__content-text-wrap-01 .p-top-value__content-text:last-of-type {
    margin-top: 10px;
  }

  .p-top-value__content-text-wrap-02 {
    margin-left: auto;
    width: 19%;
    margin-top: 231px;
    margin-right: 24px;
    translate: 0 -40px;
  }

  .p-top-value__content-text-wrap-02 .p-top-value__content-text-bg {
    margin-top: 11px;
  }

  .p-top-value__content-text-wrap-02 .p-top-value__content-text:last-of-type {
    margin-top: 14px;
  }

  .p-top-value__content-text-wrap-02 .bgappear {
    text-wrap: nowrap;
  }

  .p-top-value__rectangle-01 {
    right: unset;
    left: 6px;
    top: 358px;
  }

  .p-top-value__rectangle-01 .c-rectangle__inner {
    width: 154px;
    height: 97px;
  }

  .p-top-value__rectangle-02 {
    right: unset;
    top: 488px;
    left: 104px;
  }

  .p-top-value__rectangle-02 .c-rectangle__inner {
    width: 52px;
    height: 55px;
  }

  .p-top-value__rectangle-03 {
    right: unset;
    top: 567px;
    left: -36px;
  }

  .p-top-value__rectangle-03 .c-rectangle__inner {
    width: 28px;
    height: 31px;
  }

  .p-top-value .c-rectangle {
    display: block;
  }

  .p-top-value .p-heading__mosaicize {
    aspect-ratio: 228/28;
    width: 228px;
    background: url(../images/p-top-value_img_004.png) no-repeat center center/cover;
    margin-top: 15px;
  }

  .p-works-archive {
    padding-top: 77px;
    padding-bottom: 120px;
  }

  .p-works-archive__text-wrap {
    line-height: 1.875;
    margin-top: 37px;
  }

  .p-works-archive__rectangle-01 {
    top: -45px;
    left: -26px;
  }

  main:has(.p-works-archive) + .p-contact-area {
    padding-top: 23px;
  }

  .p-works-card::before {
    background: #797979 0% 0% no-repeat padding-box;
  }

  .p-works-card__inner {
    padding: 18px 33px;
  }

  .p-works-card__title {
    letter-spacing: 0.9px;
    padding-bottom: 11px;
  }

  .p-works-card__text {
    line-height: 1.75;
    letter-spacing: 0.8px;
  }

  .p-works-list {
    margin-top: 66px;
  }

  .p-works-list__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-works {
    margin-top: 132px;
    padding-bottom: 9px;
  }

  .p-works .p-heading__mosaicize {
    background: url(../images/p-works_img_005.png) no-repeat center center/cover;
    aspect-ratio: 248/38;
    width: 248px;
    margin-top: 20px;
  }

  .p-works__inner {
    display: flex;
    gap: 98px;
  }

  .p-works__text-wrap {
    width: 60%;
    margin-top: 29px;
  }

  .p-works__text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    color: #000;
  }

  .p-works .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(0.1875rem, -26.7183295964rem + 56.0538116592vw, 8rem);
    margin-top: 21px;
  }

  .p-works .c-more-btn {
    translate: -111px;
  }

  .p-works .c-contents-title {
    letter-spacing: 2px;
    line-height: 1.65;
    margin-top: 25px;
  }

  .p-works__splide-text {
    line-height: 1.875;
    letter-spacing: 0.8px;
    margin-top: -4px;
  }

  .p-works .splide {
    margin-top: 122px;
  }

  .p-works .splide__img {
    scale: 0.49463;
  }

  .p-works__rectangle-01 {
    top: -42px;
    left: 1px;
  }

  .p-works__rectangle-02 {
    top: 267px;
    left: 63px;
  }

  .p-works__rectangle-02 .c-rectangle__inner {
    width: 565px;
    height: 437px;
  }

  .p-works__rectangle-03 {
    top: 707px;
    left: unset;
    right: 96px;
  }

  .p-works__rectangle-03 .c-rectangle__inner {
    width: 153px;
    height: 102px;
  }

  .p-works__rectangle-04 {
    top: 836px;
    left: unset;
    right: 234px;
  }

  .p-works__rectangle-04 .c-rectangle__inner {
    width: 48px;
    height: 46px;
  }

  .p-works__rectangle-05 {
    top: 915px;
    left: unset;
    right: 129px;
  }

  .p-works__rectangle-05 .c-rectangle__inner {
    width: 28px;
    height: 31px;
  }

  .p-works .c-rectangle {
    display: block;
  }

  .p-works .bgLRextend {
    padding-inline: 15px;
  }

  .p-works .bgLRextend::before {
    top: 0;
    height: 197%;
    left: -15px;
    width: 117%;
  }

  .p-works .bgLRextend::after {
    height: 197%;
    top: 0;
    left: -15px;
    width: 117%;
  }

  .dark .p-works .p-works__text {
    color: #fff;
  }

  .nav-links ul li a,
  .nav-links ul li span {
    letter-spacing: 0.8px;
  }

  .u-br-sp {
    display: none;
  }

  .u-br-pc {
    display: block;
  }

  .u-br-tb {
    display: block;
  }
}

@media screen and (min-width: 800px) {
  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-middle {
    width: 70%;
  }
}

@media screen and (min-width: 900px) {
  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-middle {
    width: 50%;
  }

  .p-top-value__content-text-wrap-01 {
    translate: 0 30px;
  }
}

@media screen and (min-width: 992px) {
  .c-breadcrumb {
    padding-top: 99px;
  }

  .p-contact.p-service-desc {
    padding-bottom: 125px;
  }

  .p-contact .l-inner {
    max-width: 1120px;
  }

  .p-contact__content {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .p-contact__content:nth-child(3) .p-contact__head {
    margin-top: 13px;
  }

  .p-contact__content:nth-child(4) {
    align-items: flex-start;
  }

  .p-contact__content:nth-child(4) .p-contact__head {
    margin-top: 17px;
  }

  .p-contact__head {
    width: 260px;
    margin-top: 7px;
  }

  .p-contact__head label {
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 17px;
  }

  .p-contact__item {
    width: 100%;
    max-width: 678px;
  }

  .p-contact__btn-wrap {
    flex-direction: row;
    margin-top: 15px;
    margin-right: 38px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
    padding: 26px 20px 31px 46px;
  }

  .p-flow-production.p-flow-virtual-consulting.p-flow .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
    padding: 26px 20px 31px 46px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-text-wrap {
    padding: 26px 20px 31px 46px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-item:nth-child(4) .p-flow__step-text-wrap {
    padding: 26px 20px 31px 46px;
  }

  .p-flow-sns.p-flow.p-flow-virtual-consulting.p-flow-production .p-flow__step-title-wrap {
    width: 22%;
  }

  .p-flow-virtual-consulting.p-flow .p-flow__step-text-wrap {
    gap: 44px;
  }

  .p-flow {
    position: relative;
    padding-bottom: 40px;
  }

  .p-flow::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 222px;
    background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0.5019607843) 0%, rgba(255, 255, 255, 0.1019607843) 100%) 0% 0% no-repeat padding-box;
    opacity: 0.4;
    bottom: 190px;
  }

  .p-flow__step-title-wrap {
    width: 22%;
  }

  .p-flow__service {
    max-width: unset;
    position: relative;
  }

  .p-flow__service::before {
    content: "";
    position: absolute;
    background: url(../images/p-flow__service_img_001.png) no-repeat center center/contain;
    width: 886px;
    height: 69px;
    top: -6px;
    left: 50%;
    translate: -50%;
  }

  .p-flow__service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-inline: auto;
    margin-top: 41px;
    width: -moz-fit-content;
    width: fit-content;
    translate: -14px;
  }

  .p-flow__service-list::before {
    content: unset;
  }

  .p-flow__service-item {
    width: 320px;
  }

  .p-flow__service-item .bgLRextend {
    padding-inline: 6px;
  }

  .p-flow__service-item:first-child {
    margin-left: 0;
  }

  .p-flow__service-item:first-child .p-flow__service-worries-container {
    gap: 19px;
    margin-left: 10px;
  }

  .p-flow__service-item:first-child .p-flow__service-text-wrap {
    background: url(../images/webp/p-service_img_004.webp) no-repeat center center/143%;
    padding-left: 23px;
  }

  .p-flow__service-item:nth-child(2) {
    margin-top: 0;
  }

  .p-flow__service-item:nth-child(2) .p-flow__service-text-wrap {
    margin-top: 7px;
    margin-left: 7px;
  }

  .p-flow__service-item:nth-child(2) .p-flow__service-worries-container {
    gap: 20px;
  }

  .p-flow__service-item:nth-child(2)::before {
    content: unset;
  }

  .p-flow__service-item:nth-child(2) .p-flow__service-text-wrap {
    background: url(../images/webp/p-service_img_005.webp) no-repeat center center/cover;
    padding-left: 17px;
  }

  .p-flow__service-item:nth-child(3) {
    margin-top: 0;
  }

  .p-flow__service-item:nth-child(3) .p-flow__service-worries-container {
    margin-left: 5px;
    gap: 16px;
  }

  .p-flow__service-item:nth-child(3) .p-flow__service-text-wrap {
    margin-top: 7px;
    margin-left: 14px;
  }

  .p-flow__service-item:nth-child(3) .p-flow__service-text-wrap {
    background: url(../images/webp/p-service_img_006.webp) no-repeat center center/cover;
  }

  .p-flow__service-item .bgLRextend {
    line-height: 1.5;
  }

  .p-flow__service-worries-container {
    align-items: center;
    padding-inline: 6.5px;
  }

  .p-flow__service-worries:nth-child(2) {
    margin-top: -5px;
  }

  .p-flow__service-title {
    padding-bottom: 13px;
  }

  .p-flow__service-title::after {
    width: 60px;
  }

  .p-flow__service-text-wrap {
    margin-left: 0;
    padding: 38px 10px 78px 10px;
    max-height: 384px;
    position: relative;
  }

  .p-flow__service-text-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1f1f1f 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 1;
    transition: opacity 0.3s;
  }

  .p-flow__service-text {
    margin-top: 17px;
    position: relative;
  }

  .p-flow__bg-sp {
    display: none;
  }

  .p-flow__bg-pc {
    display: block;
  }

  .p-header {
    padding: 19px 20px;
  }

  .p-header__inner {
    grid-template-columns: auto 1fr;
  }

  .p-header__logo {
    width: 76px;
  }

  .p-header__end {
    display: block;
  }

  .p-header__end-sp {
    display: none;
  }

  .p-header__hamburger {
    display: none;
  }

  .p-reference-price-consulting .p-reference-price__content-middle {
    width: unset;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content {
    padding: 24px 76px 22px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(2) .p-reference-price__note {
    margin-top: -22px;
    translate: 162px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(1) .p-reference-price__content-start,
  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(3) .p-reference-price__content-start,
  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(4) .p-reference-price__content-start {
    display: flex;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__list {
    gap: 3px 50px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__middle-wrap {
    gap: 28px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content-middle {
    width: 29%;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__list {
    gap: 3px 50px;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-start {
    display: flex;
  }

  .p-reference-price-sns.p-reference-price.p-reference-price-production .p-reference-price__content:nth-child(3) .p-reference-price__content-middle {
    width: 48%;
  }

  .p-reference-price__content {
    padding: 24px 76px 22px;
  }

  .p-reference-price__content-start {
    width: 79.5%;
  }

  .p-reference-price__middle-wrap {
    width: 79.5%;
    gap: 41px;
  }

  .p-reference-price__list {
    gap: 3px 55px;
  }

  .p-sec-text-wrap .c-more-btn {
    translate: -128px;
  }

  .p-service-desc-sns.p-service-desc.p-service-desc-creative-production .p-service-desc__contents-02 .p-service-desc__img-wrap {
    width: 100%;
    translate: 47px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content {
    padding: 15px 30px;
    gap: 18px;
  }

  .p-service-desc__contents-03 .p-service-desc__content-text-wrap {
    width: 42%;
    margin-top: 40px;
  }

  .p-service-desc__img-wrap {
    margin-left: 78px;
  }

  .p-service-desc__img-02 {
    translate: 69px;
  }

  .p-service .p-service__inner {
    display: flex;
    align-items: flex-start;
    gap: 92px;
    margin-top: 92px;
  }

  .p-service__flex-l {
    width: 36.574%;
    position: sticky;
    top: 100px;
  }

  .p-service .p-top-service__rectangle-01.c-rectangle {
    top: -45px;
    left: -5px;
  }

  .p-service__btn-container {
    display: block;
    margin-top: 44px;
  }

  .p-service__introduction {
    margin-top: 28px;
  }

  .p-service .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(8rem, -28.4459459459rem + 58.7837837838vw, 13.4375rem);
  }

  .p-service .p-service__introduction-item .c-more-btn {
    translate: -115px;
  }

  body:has(.p-service) .p-works {
    margin-top: 126px;
  }

  .p-technology-production__content .p-technology-production__text-wrap {
    width: 566px;
    flex-shrink: 0;
    margin-top: 32px;
  }

  .p-technology-production__img-wrap {
    width: unset;
    margin-top: 0;
  }

  .p-top-about__text:last-of-type {
    text-wrap: nowrap;
  }

  .p-top-company .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(8rem, -15.8783783784rem + 38.5135135135vw, 11.5625rem);
  }

  .p-top-company .c-more-btn {
    translate: -33px;
  }

  .p-top-company__img {
    background: url(../images/webp/p-top-company_img_002.webp) no-repeat -1000% 17%/98%;
  }

  .p-top-mv__video-wrap video {
    width: 132%;
  }

  .p-top-news__inner {
    gap: 53px;
  }

  .p-top-news .p-sec-text-wrap__more-btn-wrap {
    width: 25%;
  }

  .p-top-service::after {
    content: "";
    background: transparent linear-gradient(180deg, #000000 50%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    height: 458px;
    display: block;
    position: absolute;
    top: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .p-top-service .l-inner {
    z-index: 2;
    position: relative;
  }

  .p-top-service .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(8rem, -28.4459459459rem + 58.7837837838vw, 13.4375rem);
  }

  .p-top-service .c-more-btn {
    translate: -112px;
  }

  .p-top-service__img-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -81px;
  }

  .p-top-service__img:nth-child(1) {
    background: url(../images/webp/p-top-service_img_005.webp) no-repeat center center/cover;
  }

  .p-top-service__img:nth-child(2) {
    background: url(../images/webp/p-top-service_img_006.webp) no-repeat center center/cover;
  }

  .p-top-service__img:nth-child(3) {
    background: url(../images/webp/p-top-service_img_007-2.webp) no-repeat center center/cover;
  }

  .p-top-service__link {
    padding-inline: 42px;
    padding-bottom: 38px;
  }

  .p-top-service__link::before {
    background: transparent linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0) 30%) 0% 0% no-repeat padding-box;
  }

  .p-top-service__link::after {
    content: "";
    background: #797979 0% 0% no-repeat padding-box;
    width: 100%;
    height: 100%;
    position: absolute;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
  }

  .p-top-value__content-text-wrap-01 {
    translate: 0 -40px;
  }

  .p-top-value__content-text-wrap-02 {
    margin-right: 10px;
  }

  .p-works .p-sec-text-wrap__more-btn-wrap {
    margin-right: clamp(8rem, -28.4459459459rem + 58.7837837838vw, 13.4375rem);
  }

  .p-works .c-more-btn {
    translate: -115px;
  }

  .u-br-tb {
    display: none;
  }
}

@media screen and (min-width: 1010px) {
  .p-flow__service-list {
    translate: 0;
  }
}

@media screen and (min-width: 1200px) {
  .p-flow__service-list {
    width: 89.0909%;
  }

  .p-news-archive.p-service-desc .p-post-list {
    padding-right: 228px;
  }

  .p-reference-price-production.p-reference-price .p-reference-price__content:nth-child(2) .p-reference-price__note {
    translate: 167px;
  }

  .p-service-desc__contents-02 .p-service-desc__img-wrap-flow-content {
    padding: 15px 53px;
  }

  .p-technology-production__content--reverse .p-technology-production__text-wrap {
    width: 47.3%;
  }

  .p-top-company__img {
    background: url(../images/webp/p-top-company_img_002.webp) no-repeat -28% 17%/78%;
  }

  .p-top-mv__video-wrap video {
    width: 118%;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .p-top-mv__video-wrap video {
    width: 122%;
  }
}

@media screen and (min-width: 1280px) {
  .p-top-company__img {
    background: url(../images/webp/p-top-company_img_002.webp) no-repeat 0% 17%/72%;
  }
}

@media screen and (min-width: 1281px) {
  .p-company-chart.p-reference-price .p-company-chart__bg-world {
    max-width: 1280px;
    left: 50%;
    translate: -50% -50%;
  }

  .p-top-mv__rectangle.c-rectangle {
    left: 50%;
  }
}

@media screen and (min-width: 1301px) {
  .p-top-company__img {
    background: url(../images/webp/p-top-company_img_002.webp) no-repeat -54% 0%/86%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.5;
  }

  .c-more-btn:hover {
    letter-spacing: 4px;
    opacity: 1;
  }

  .dark .p-contact__btn input[type=submit]:hover {
    background: #000;
    color: #fff;
  }

  .p-flow__service-text-wrap:hover::before {
    opacity: 0.8;
  }

  .p-modal__btn:hover {
    background: #000;
    color: #fff;
    opacity: 1;
  }

  .p-post-article__contents .wp-block-button .wp-block-button__link:hover {
    color: #000;
    background: #fff;
    opacity: 1;
  }

  .dark .p-post-article__contents .wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: #000;
  }

  .p-post-list__link:hover {
    opacity: 1;
  }

  .p-post-list__link:hover .p-post-list__btn-wrap {
    opacity: 1;
  }

  .p-post-list__link:hover .p-post-list__title {
    text-decoration: underline;
  }

  .p-promotion-measures.p-technology-production .p-technology-production__content:hover::before {
    opacity: 0;
  }

  .p-service__btn:hover {
    background: #fff;
    color: #000;
    opacity: 1;
    border: 1px solid #000;
  }

  .dark .p-service__btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
  }

  .p-technology-production__content:hover .p-technology-production__content-inner::after {
    opacity: 0;
  }

  .p-top-company:hover::after {
    opacity: 0;
  }

  .p-top-service__link:hover {
    opacity: 1;
  }

  .p-top-service__link:hover::after {
    opacity: 0;
  }

  .p-works-card:hover::before {
    opacity: 0.2;
  }

  .p-works-card:hover .p-works-card__img img {
    scale: 1.2;
  }
}
/*# sourceMappingURL=style.css.map */
