@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

.u-font-bold {
  font-weight: bold;
}

.gradient-text {
  background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html {
  font-size: 16px;
  overflow-x: clip;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333333;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
  overflow-x: hidden;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

/***************************************
ボタンコンポーネント
****************************************/
.c-button {
  display: block;
  width: 15rem;
  aspect-ratio: 240/55;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 62.4375rem;
  padding: 0.8125rem 1.4375rem;
  background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.8;
  }
}
.c-button__text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/***************************************
お問い合わせボタン
****************************************/
.c-contact-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  background-color: #84C451;
  border-radius: 62.4375rem;
  padding-inline: 0.9375rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  color: #FFFFFF;
  position: relative;
}
@media (any-hover: hover) {
  .c-contact-button:hover {
    opacity: 0.8;
  }
}

.c-contact-button__text {
  font-size: 1rem;
  font-weight: bold;
}

.c-contact-button__icon {
  width: 1.875rem;
  height: 1.875rem;
}
.c-contact-button__icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
カードコンポーネント
****************************************/
.c-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .c-card__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.c-card__item {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.c-card__item-image {
  width: 11.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background-color: #FFFFFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
.c-card__item-image img {
  width: 6.25rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card__item-title {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-card__item-title {
    font-size: 1.125rem;
  }
}

.c-card__item-text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-card__item-text {
    font-size: 0.875rem;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.875rem;
    height: 1.4375rem;
  }
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  width: 1.875rem;
  height: 1.4375rem;
}

.c-hamburger span {
  display: block;
  width: 1.875rem;
  height: 0.1875rem;
  background: #00B8AE;
  border-radius: 62.4375rem;
}

.c-hamburger.open span {
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 150;
}

.c-hamburger.open span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

/***************************************
アイコンコンポーネント
****************************************/
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon svg {
  display: block;
  width: 1rem;
  height: 0.8125rem;
}

/* アーカイブページのページ送り */
.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

/* テキストコンポーネント
------------------------------------------------ */
.c-text {
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
}

/***************************************
メインタイトル（セクションタイトル）
****************************************/
.c-main__title {
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.c-main__title > span {
  display: block;
}

.c-main__title-en {
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Reem Kufi", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-main__title-en {
    font-size: 3.5rem;
  }
}
.c-main__title-en.--marketing {
  letter-spacing: 0.02em;
}

.c-main__title-ja {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  padding-left: 1.875rem;
}
.c-main__title-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 0.125rem;
  display: block;
  margin-left: 0.3125rem;
  background-color: #0099C2;
}
@media screen and (max-width: 767px) {
  .c-main__title-ja {
    font-size: 1rem;
  }
}

/***************************************
サブタイトル
****************************************/
.c-sub__title {
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-sub__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .c-sub__title {
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 389px) {
  .front-page .c-sub__title {
    font-size: 1.5625rem;
  }
}

/***************************************
ページタイトル
****************************************/
.c-page__title {
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.c-page__title > span {
  display: block;
}

.c-page__title-en {
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Reem Kufi", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-page__title-en {
    font-size: 3.75rem;
  }
}

.c-page__title-ja {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-top: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-page__title-ja {
    padding-top: 0.9375rem;
    font-size: 1.125rem;
  }
}
.c-page__title-ja::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.75rem;
  height: 0.1875rem;
  display: block;
  background-color: #0099C2;
}
@media screen and (max-width: 767px) {
  .c-page__title-ja::before {
    width: 3.125rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1280px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-inner__section {
  width: 100%;
  max-width: 73.75rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner__section {
    padding-inline: 1.25rem;
  }
}

/***************************************
下層ページ共通レイアウト
****************************************/
.l-main {
  overflow-x: clip;
}

.l-single {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-single {
    margin-top: 15.625rem;
  }
}

.l-page__fv {
  position: relative;
  width: 100%;
  height: 37.875rem;
}
@media screen and (max-width: 767px) {
  .l-page__fv {
    height: 17.8125rem;
  }
}

.l-page__fv--custom {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25.375rem;
}
@media screen and (max-width: 767px) {
  .l-page__fv--custom {
    min-height: 16.5625rem;
  }
}

.l-page__fv-bg {
  position: relative;
}

.l-page__fv-bg--pc {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 53.125rem;
  height: 100%;
  aspect-ratio: 850/606;
  margin-inline: auto;
}
.l-page__fv-bg--pc svg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-page__fv-bg--pc {
    display: none;
  }
}

.l-page__fv-bg--sp {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 18.75rem;
  height: 100%;
  aspect-ratio: 300/214;
  margin-inline: auto;
}
.l-page__fv-bg--sp svg {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .l-page__fv-bg--sp {
    display: none;
  }
}

.l-page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page__title {
    top: 73%;
  }
}

.l-page__title--custom {
  margin-top: 12.5rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page__title--custom {
    margin-top: 8.75rem;
  }
}

/***************************************
marketing / sales / crm / recruit ページ共通レイアウト
****************************************/
.l-page__contents {
  position: relative;
  margin-top: 7.9375rem;
}
@media screen and (max-width: 480px) {
  .l-page__contents {
    margin-top: 9.1875rem;
  }
}

.l-page__contents-inner {
  display: grid;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 767px) {
  .l-page__contents-inner {
    gap: 9.375rem;
  }
}

.l-page__content {
  width: min(100%, 37.5rem);
  aspect-ratio: 600/584;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page__content {
    width: 80%;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__content {
    width: 100%;
    margin-inline: auto;
  }
}
.l-page__content:nth-child(even) {
  margin-left: auto;
}
.l-page__content.--sns {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-page__content.--sns {
    margin-top: 0;
  }
}

.l-page__content-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  aspect-ratio: 600/584;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .l-page__content-bg {
    aspect-ratio: 335/326;
    padding-inline: 1.25rem;
  }
}
.l-page__content-bg svg {
  display: block;
  width: 100%;
  height: auto;
}

.l-page__content-item {
  position: relative;
  z-index: 2;
  width: min(100%, 30.625rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-page__content-item {
    gap: 1.25rem;
  }
}

.l-page__content-image {
  flex-shrink: 0;
  width: 13.75rem;
  aspect-ratio: 220/220;
  border-radius: 50%;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background-color: #FFFFFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page__content-image {
    width: 12.5rem;
    aspect-ratio: 200/200;
  }
}
.l-page__content-image svg {
  display: block;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-page__content-image svg {
    width: 6.25rem;
  }
}

.l-page__content-body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  text-align: center;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-page__content-body {
    gap: 1.25rem;
    padding-inline: 0;
  }
}
.l-page__content-body.--sns {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-page__content-body.--sns {
    margin-bottom: 0;
  }
}

.l-page__content-text {
  text-align: left;
}

.l-page__content-title {
  font-size: 1.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-page__content-title {
    font-size: 1.25rem;
    white-space: normal;
  }
}

.l-page__tag {
  padding-bottom: 1.25rem;
}

.l-page__navigation {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .l-page__navigation {
    font-size: 0.625rem;
    line-height: 1.3;
  }
}
.l-page__navigation .home:hover {
  color: #0099C2;
}
.l-page__navigation .current-item {
  color: #333333;
  font-weight: 500;
}
.l-page__navigation .l-page__sep {
  color: #333333;
  margin: 0 0.3125rem;
  line-height: 1;
}

/***************************************
アニメーションコンポーネント
****************************************/
/* スクリーンリーダー用非表示 */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Blob用ラッパー - anime.jsでパスモーフィング */
.a-wave1 svg {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.a-wave2 svg {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/* サービスページの背景アニメーション用 */
.js-service-scroll {
  position: relative;
  z-index: 1;
}

.js-service-bg-pc {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 53.125rem;
  height: 100%;
  aspect-ratio: 850/606;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .js-service-bg-pc {
    display: none;
  }
}
.js-service-bg-pc svg {
  display: block;
  width: 100%;
}

.js-service-bg-sp {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 300/214;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .js-service-bg-sp {
    display: none;
  }
}
.js-service-bg-sp svg {
  display: block;
  width: 100%;
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/***************************************
企業情報ページ
****************************************/
.p-company__nav,
.p-company__about,
.p-company__policy,
.p-company__message,
.p-company__overview {
  position: relative;
  z-index: 2;
}

.p-company__nav {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__nav {
    margin-top: 3.75rem;
  }
}

.p-company__nav-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-company__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.4375rem;
  }
}

.p-company__nav-item {
  width: 100%;
  height: 100%;
  border-right: 1px solid #C8C8C8;
}
@media screen and (max-width: 767px) {
  .p-company__nav-item {
    border-right: none;
    border-bottom: 1px solid #C8C8C8;
  }
}
.p-company__nav-item:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-company__nav-item:last-child {
    border-bottom: 1px solid #C8C8C8;
  }
}

.p-company__nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media (any-hover: hover) {
  .p-company__nav-link:hover {
    opacity: 0.7;
    color: #0099C2;
  }
}
@media screen and (max-width: 767px) {
  .p-company__nav-link {
    padding-block: 0.9375rem;
    justify-content: space-between;
  }
}
.p-company__nav-link .icon {
  flex-shrink: 0;
  background-color: #0099C2;
  border-radius: 50%;
  padding: 0.4375rem 0.5rem;
}
.p-company__nav-link .icon .arrow-icon {
  display: grid;
  place-items: center;
}
.p-company__nav-link .icon .arrow-icon svg {
  display: block;
  width: 0.5rem;
  height: 0.625rem;
}

.p-company__nav-link-text {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__nav-link-text {
    font-size: 0.875rem;
  }
}

/***************************************
IN-Bについて
****************************************/
.p-company__about {
  margin-top: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__about {
    margin-top: 6.875rem;
  }
}

.p-company__about-content {
  display: flex;
  justify-content: space-between;
  gap: 19%;
}
@media screen and (max-width: 767px) {
  .p-company__about-content {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-company__about-content-body {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__about-content-body {
    flex: 1 1 auto;
    width: 100%;
  }
}

/***************************************
企業指針
****************************************/
.p-company__policy {
  position: relative;
  margin-top: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__policy {
    margin-top: 11.25rem;
  }
}

.p-company__policy-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-company__pc-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-company__pc-bg {
    display: none;
  }
}
.p-company__pc-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-company__bg--sp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-company__bg--sp {
    display: none;
  }
}
.p-company__bg--sp svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-company__inner {
  position: relative;
  z-index: 2;
  padding-block: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    padding-block: 12.5rem;
    max-width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-company__inner {
    max-width: 100%;
    padding-block: 7.5rem;
  }
}

.p-company__policy-title {
  color: #FFFFFF;
}
.p-company__policy-title .c-main__title-ja::before {
  background-color: #FFFFFF;
}

.p-company__policy-text {
  margin-top: 3.75rem;
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-company__policy-text {
    margin-top: 2.5rem;
    font-size: 1.375rem;
  }
}

.p-company__policy-content {
  margin-top: 3.75rem;
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  padding: 2.5rem 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-company__policy-content {
    margin-top: 2.5rem;
    padding: 0.625rem 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-company__policy-list:has(+ .p-company__policy-list) .p-company__policy-item {
    border-bottom: 1px solid #C8C8C8;
  }
}

.p-company__policy-list {
  display: grid;
  grid-template-rows: 1fr;
}

.p-company__policy-item {
  padding-block: 1.25rem;
  display: flex;
  gap: 0.625rem;
  border-bottom: 1px solid #C8C8C8;
}
.p-company__policy-item:last-child {
  border-bottom: none;
}
.p-company__policy-item .number {
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.125rem;
  background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  display: grid;
  place-items: center;
}
.p-company__policy-item .text {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-company__policy-item .text {
    font-size: 0.875rem;
  }
}

/***************************************
代表メッセージ
****************************************/
.p-company__message {
  position: relative;
  margin-top: 12.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company__message {
    margin-top: 9.625rem;
  }
}

.p-company__secondary-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-company__secondary-bg--pc {
  display: block;
  position: absolute;
  top: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60%;
  max-width: 54.125rem;
  aspect-ratio: 866/606;
}
@media screen and (max-width: 767px) {
  .p-company__secondary-bg--pc {
    display: none;
  }
}
.p-company__secondary-bg--pc svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__secondary-bg--sp {
  display: block;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  max-width: 17.875rem;
  aspect-ratio: 286/200;
}
@media only screen and (min-width: 768px) {
  .p-company__secondary-bg--sp {
    display: none;
  }
}
.p-company__secondary-bg--sp svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__message-inner {
  position: relative;
  z-index: 2;
}

.p-company__message-content {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__message-content {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.p-company__message-text-name {
  margin-left: auto;
}

/***************************************
会社概要
****************************************/
.p-company__overview {
  position: relative;
  margin-top: 13.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview {
    margin-top: 7.75rem;
  }
}

.p-company__overview-content {
  width: min(100%, 56.25rem);
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview-content {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-company__overview-item {
  display: grid;
  grid-template-columns: 27% 1fr;
  grid-template-rows: 1fr;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0.3125rem;
    border-bottom: 1px solid #C8C8C8;
  }
}

.p-company__overview-item-title {
  flex: 0 0 27%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 1.875rem;
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 1px solid #0099C2;
}
@media screen and (max-width: 767px) {
  .p-company__overview-item-title {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding-block: 0.9375rem 0;
    border-bottom: none;
  }
}

.p-company__overview-item-text {
  flex: 1 1 auto;
  font-size: 1rem;
  font-weight: 400;
  padding-block: 1.875rem;
  border-bottom: 1px solid #C8C8C8;
}
@media screen and (max-width: 767px) {
  .p-company__overview-item-text {
    font-size: 0.875rem;
    padding-block: 0 0.9375rem;
    border-bottom: none;
  }
}
.p-company__overview-item-text .text {
  display: block;
}
.p-company__overview-item-text .text:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview-item-text .text:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

/***************************************
お問い合わせページ
****************************************/
/***************************************
ドロワーメニュー
****************************************/
.p-drawer {
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  background-color: #FFFFFF;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

body.is-fixed {
  overflow: hidden;
}

.p-drawer__wrap {
  padding-inline: 40px;
}

.p-drawer__logo {
  width: 6.25rem;
  height: auto;
  margin-top: 2.1875rem;
  aspect-ratio: 100/27;
}
.p-drawer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav {
  padding-block: 2.5rem;
}

.p-drawer__nav-item {
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #C8C8C8;
}
.p-drawer__nav-item:last-child {
  border-top: 1px solid #C8C8C8;
}

.p-drawer__nav-item:nth-child(3) {
  border-bottom: none;
}

.p-drawer__nav-item:has(.p-drawer__nav-link.--child) {
  border-bottom: none;
}

.p-drawer__nav-link {
  display: block;
  padding-block: 1.25rem;
}
@media (any-hover: hover) {
  .p-drawer__nav-link:hover {
    background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.p-drawer__nav-link.--child {
  padding-left: 1.25rem;
}

.p-drawer__nav-contact {
  margin-top: 3.125rem;
  width: 13.5rem;
  aspect-ratio: 216/52;
  margin-inline: auto;
}

/***************************************
フッター
****************************************/
.p-footer {
  margin-top: 12.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 10.625rem;
  }
}

.p-footer__inner {
  width: min(100% - 80px, 68.75rem);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem;
  padding-block: 5rem;
  border-top: 1px solid #C8C8C8;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-block: 3.75rem;
  }
}

.p-footer__info-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-footer__info-title {
  width: 9.375rem;
  aspect-ratio: 150/44;
}
.p-footer__info-title img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__info-title-link {
  display: block;
  width: 100%;
}
.p-footer__info-title-link img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .p-footer__info-title-link:hover {
    opacity: 0.8;
  }
}

.p-footer__info-text {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__info-text {
    font-size: 0.875rem;
  }
}

.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
}

.p-footer__nav-item {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    font-size: 0.875rem;
  }
}
.p-footer__nav-item.--indent {
  padding-left: 1em;
}

.p-footer__nav-link {
  display: block;
  padding-block: 0.375rem;
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    color: #0099C2;
  }
}

.p-footer__copyright {
  text-align: center;
}

.p-footer__copyright-text {
  font-size: 0.75rem;
  font-weight: 400;
}

/***************************************
フロントページ共通
****************************************/
.p-front__bg-blob {
  position: relative;
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-front__bg-blob {
    min-height: 100svh;
  }
}

.p-front__bg-blob-pc {
  display: block;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-front__bg-blob-pc {
    display: none;
  }
}

.p-front__bg-blob-sp-morph {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-front__bg-blob-sp-morph {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 200%;
    height: 100svh;
    pointer-events: none;
    z-index: 0;
  }
}

.p-front__bg-blob-sp-morph svg {
  display: block;
  width: 100%;
  height: 100%;
}

/***************************************
ファーストビュー
****************************************/
@media screen and (max-width: 767px) {
  .p-front {
    min-height: 100vh;
    min-height: 100svh;
    overflow: clip;
  }
}

.p-front-fv {
  position: absolute;
  top: 23%;
  left: 11.8%;
}
@media only screen and (min-width: 1580px) {
  .p-front-fv {
    top: 27%;
  }
}
@media screen and (max-width: 767px) {
  .p-front-fv {
    top: 20%;
    left: 0%;
    padding-left: 20px;
  }
}

.p-front-fv__content {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.p-front-fv__lead {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 3.5rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-front-fv__lead {
    font-size: 1.625rem;
  }
}

.p-front-fv__title {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 7.5rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-front-fv__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 389px) {
  .p-front-fv__title {
    font-size: 3rem;
  }
}

/***************************************
固定メニュー
****************************************/
.p-fv-menu {
  position: absolute;
  bottom: 5%;
  right: 0;
  z-index: 50;
  padding-right: 40px;
  color: #FFFFFF;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media only screen and (max-width: 1100px) {
  .p-fv-menu {
    bottom: 20%;
  }
}
@media only screen and (max-width: 950px) {
  .p-fv-menu {
    bottom: 35%;
  }
}
@media screen and (max-width: 767px) {
  .p-fv-menu {
    position: absolute;
    bottom: 35%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-fv-menu {
    bottom: 30.5%;
    padding-right: 1.5625rem;
  }
}
@media only screen and (max-width: 400px) {
  .p-fv-menu {
    bottom: 25%;
  }
}

.p-fv-menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}

.p-fv-menu__item a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-fv-menu__item a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.125rem;
  background-color: currentColor;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-fv-menu__item a::after {
    width: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-fv-menu__item a:hover {
    color: #0099C2;
  }
}

.p-fv-menu__item-text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-fv-menu__item-text {
    font-size: 1rem;
  }
}

/***************************************
ニュース
****************************************/
.p-front-news {
  position: relative;
  z-index: 3;
  margin-top: -57%;
}
@media screen and (max-width: 767px) {
  .p-front-news {
    padding-inline: 20px;
    margin-top: -30%;
  }
}
@media screen and (max-width: 480px) {
  .p-front-news {
    margin-top: -38%;
  }
}
@media screen and (max-width: 389px) {
  .p-front-news {
    margin-top: -30%;
  }
}

.p-front-news__inner {
  width: min(100% - 80px, 73.75rem);
  padding-inline: 2.5rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
@media only screen and (min-width: 1500px) {
  .p-front-news__inner {
    width: min(100% - 80px, 80rem);
  }
}
@media screen and (max-width: 767px) {
  .p-front-news__inner {
    width: 100%;
    padding-block: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.p-front-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-front-news__head {
    flex-direction: column;
    align-items: flex-start;
    display: contents;
  }
}

.p-front-news__list {
  margin-top: 2.5rem;
  display: grid;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-news__list {
    padding-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-front-news__more.--pc {
    display: none;
  }
}
.p-front-news__more.--sp {
  margin-top: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .p-front-news__more.--sp {
    display: none;
  }
}

.p-front-news__item {
  border-bottom: 1px solid #C8C8C8;
}
.p-front-news__item:first-child {
  padding-top: 0;
}

.p-front-news__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
  padding-block: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-front-news__item-link {
    padding-block: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-front-news__item-link:hover {
    color: #0099C2;
  }
}

.p-front-news__item-content {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-front-news__item-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-front-news__item-date-category {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.p-front-news__item-date {
  font-size: 0.875rem;
}

.p-front-news__item-category {
  background-color: #0099C2;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0.0625rem 0.625rem;
  border-radius: 62.4375rem;
}

.p-front-news__item-title {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-front-news__item-title {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-front-news__item-arrow {
    display: none;
  }
}

/***************************************
bg
****************************************/
.p-front-section-bg {
  position: relative;
  z-index: 1;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.p-front-section-bg--pc {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 60%;
  max-width: 53.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front-section-bg--pc {
    display: none;
  }
}
.p-front-section-bg--pc svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-front-section-bg--sp {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 77%;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-front-section-bg--sp {
    display: none;
  }
}
.p-front-section-bg--sp svg {
  display: block;
  width: 100%;
  height: auto;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px) scale(1.01);
            transform: translateY(-5px) scale(1.01);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px) scale(1.01);
            transform: translateY(-5px) scale(1.01);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/***************************************
about
****************************************/
.p-front-about {
  margin-top: 31.25rem;
}
@media only screen and (min-width: 1800px) {
  .p-front-about {
    margin-top: 35%;
  }
}
@media screen and (max-width: 767px) {
  .p-front-about {
    margin-top: 11.25rem;
  }
}

.p-front-about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-front-about__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

.p-front-about__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-front-about__text {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-front-about__more {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-about__more {
    margin-top: 4.5625rem;
  }
}

/***************************************
service
****************************************/
.p-front-service {
  position: relative;
  z-index: 2;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-service {
    margin-top: 9.375rem;
  }
}

.p-front-service__list {
  margin-top: 2.5rem;
  max-width: 40.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front-service__list {
    max-width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .p-front-service__list {
    max-width: 100%;
  }
}

.p-front-service__more-wrapper {
  margin-top: 6.25rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front-service__more-wrapper {
    margin-top: 3.125rem;
  }
}

/***************************************
works
****************************************/
.p-front-works {
  position: relative;
  isolation: isolate;
  z-index: 2;
  margin-top: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-front-works {
    margin-top: 7.5rem;
  }
}

.p-front-works__bg {
  position: relative;
  pointer-events: none;
}

.p-front-works__pc-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75.0625rem;
}
@media screen and (max-width: 767px) {
  .p-front-works__pc-bg {
    display: none;
  }
}
.p-front-works__pc-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-front-works__bg--sp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115.9375rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-front-works__bg--sp {
    display: none;
  }
}
.p-front-works__bg--sp svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-front-works__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 73.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  padding-block: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-works__inner {
    padding-block: 10.625rem 6.25rem;
    max-width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .p-front-works__inner {
    max-width: 100%;
    padding-block: 7.5rem;
    padding-inline: 1.25rem;
  }
}

.p-front-works__title {
  color: #FFFFFF;
}
.p-front-works__title .c-main__title-ja::before {
  background-color: #FFFFFF;
}

.p-front-works__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-front-works__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front-works__list {
    gap: 3.75rem;
  }
}

.p-front-works__item {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.875rem 1.25rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-front-works__item {
    padding: 1.25rem 0.625rem 1.875rem;
  }
}

.p-front-works__item-label {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.1875rem 1.25rem;
  border-radius: 62.4375rem;
}
@media screen and (max-width: 767px) {
  .p-front-works__item-label {
    font-size: 0.75rem;
  }
}

.p-front-works__item-title {
  margin-top: 0.4375rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-front-works__item-title {
    font-size: 1.25rem;
  }
}

.p-front-works__item-content {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-front-works__item-content {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-front-works__item-icon {
  width: 6.25rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.p-front-works__item-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-front-works__item-text {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-front-works__item-text {
    font-size: 0.875rem;
  }
}

/***************************************
ヘッダー
****************************************/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 2.5rem;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header {
    margin-top: 1.25rem;
  }
}

.p-header__inner {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 20px;
  }
}

.p-header__pc-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__pc-menu {
    display: none;
  }
}

.p-header__logo {
  width: 9.375rem;
  height: auto;
  aspect-ratio: 150/41;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header__logo a {
  display: block;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.8;
  }
}

.p-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.p-header__nav-list {
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  display: flex;
  gap: 3.125rem;
  border-radius: 62.4375rem;
  padding-inline: 2.5rem;
}

.p-header__nav-item.--child {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.p-header__nav-item.--child .p-header__nav-link {
  padding-block: 0.90625rem 0.625rem;
}

.p-header__nav-item.--child {
  padding-bottom: 0.125rem;
  margin-right: 0.9375rem;
}
.p-header__nav-item.--child .arrow-icon {
  position: relative;
  display: inline-block;
  width: 0.98125rem;
  height: 0.5875rem;
}
.p-header__nav-item.--child::after, .p-header__nav-item.--child::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.5rem;
  width: 0.09375rem;
  height: 0.375rem;
  border-radius: 624.9375rem;
  background: linear-gradient(90deg, #0083B3 0%, #00A79B 100%);
  -webkit-transform-origin: 50% calc(100% - 1px);
          transform-origin: 50% calc(100% - 1px);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-header__nav-item.--child::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-header__nav-item.--child::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-block: 0.78125rem;
  position: relative;
}
@media (any-hover: hover) {
  .p-header__nav-link:hover {
    opacity: 0.7;
  }
}

.p-header__nav-link-text {
  font-size: 1rem;
  font-weight: bold;
}

.p-header__nav-contact {
  width: 13.5rem;
  aspect-ratio: 216/52;
}

/***************************************
ヘッダー子メニュー
****************************************/
.p-header__nav-item.--child {
  position: relative;
  cursor: pointer;
}

.p-header__nav-child-wrap {
  width: -webkit-fit-content;
  width: fit-content;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 3.75rem;
  left: -6.25rem;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: 30;
}
.p-header__nav-child-wrap::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: 0;
  height: 0.9375rem;
  background: transparent;
}

.p-header__nav-item.--child:hover .p-header__nav-child-wrap,
.p-header__nav-item.--child .p-header__nav-child-wrap:hover .p-header__nav-child-wrap {
  opacity: 1;
  visibility: visible;
}

.p-header__nav-child-list {
  min-width: 11.25rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  background-color: #fff;
  border-radius: 0.625rem;
  white-space: nowrap;
  overflow: hidden;
}

.p-header__nav-child-item {
  width: 15.625rem;
  height: 2.75rem;
  transition: all 0.3s ease;
}

.p-header__nav-child-link {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  place-content: center;
  font-size: 0.875rem;
  border-bottom: 1px solid #C8C8C8;
  padding-inline: 1.25rem;
  font-weight: bold;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__nav-child-link:hover {
    background-color: #C8C8C8;
    background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
  }
}

/***************************************
スマホメニュー
****************************************/
.p-header__sp-menu {
  width: 100%;
  height: 3.5625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  border-radius: 62.4375rem;
}
@media only screen and (min-width: 768px) {
  .p-header__sp-menu {
    display: none;
  }
}

.p-header__sp-menu-logo {
  width: 6.25rem;
  height: auto;
  aspect-ratio: 100/27;
}
.p-header__sp-menu-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
企業情報
****************************************/
.p-front-contact {
  position: relative;
  margin-top: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-front-contact {
    margin-top: 18.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front-contact {
    margin-top: 12.5rem;
  }
}

.p-front-contact__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-front-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    height: auto;
  }
}

.p-front-contact__bg--pc {
  margin-top: -6.25rem;
  width: 60%;
  max-width: 54.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front-contact__bg--pc {
    display: none;
  }
}
.p-front-contact__bg--pc svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-front-contact__bg--sp {
  width: 70%;
  margin-top: -5rem;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-front-contact__bg--sp {
    display: none;
  }
}
.p-front-contact__bg--sp svg {
  display: block;
  width: 100%;
  height: auto;
}

.js-service-bg .js-contact-path-clone {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60%; /* PCの場合 */
  max-width: 54.125rem;
  margin-top: 5rem; /* 下に配置 */
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .js-service-bg .js-contact-path-clone {
    width: 70%; /* SPの場合 */
    margin-top: 7.5rem;
  }
}

.js-contact-path-clone svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-front-contact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-front-contact__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2.5rem;
  }
}

.p-front-contact__text {
  margin-top: 3.75rem;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-front-contact__text {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-front-contact__button-wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-front-contact__button-wrap {
    margin-top: 3.125rem;
  }
}

/***************************************
ニュースページ
****************************************/
/***************************************
サービスページ
****************************************/
.p-service,
.p-service__sales {
  position: relative;
  z-index: 2;
}

.p-service__sales {
  margin-top: 15.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__sales {
    margin-top: 13.8125rem;
  }
}

.p-service__sales-inner {
  display: flex;
  flex-direction: column;
  gap: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__sales-inner {
    gap: 9.375rem;
  }
}

.p-service__content {
  display: flex;
  justify-content: space-between;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-service__content-item {
  flex: 0 0 56.4%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__content-item {
    flex: 1 1 auto;
  }
}

.p-service__content-title {
  flex-shrink: 0;
  position: relative;
}
.p-service__content-title .number {
  position: absolute;
  top: -6.25rem;
  left: 0;
  font-size: 12.5rem;
  line-height: 1;
  color: #EEEEEE;
  font-family: "Reem Kufi", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-service__content-title .number {
    font-size: 7.5rem;
    top: -3.4375rem;
  }
}
.p-service__content-title .c-main__title-en,
.p-service__content-title .c-main__title-ja {
  position: relative;
  z-index: 2;
}

.p-service__more {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__more {
    margin-top: 1.875rem;
  }
}
/*# sourceMappingURL=style.css.map */
