@charset "UTF-8";
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.075em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* 初期状態: 非表示で下に少し移動 */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="6" /></filter></svg>#filter');
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示状態: フェードアップ完了 */
.fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

/* スタガー遅延 */
.fadeup--d1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.fadeup--d2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fadeup--d3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ページ全体背景 */
body {
  background-color: #F3F5FA;
  background-image: url(../images/common/bg.svg);
  background-size: 120% auto;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 1300px) {
  body {
    background-position: center 5%;
  }
}
@media screen and (max-width: 1023px) {
  body {
    background-position: center 2%;
  }
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../images/common/bg-sp.svg);
    background-position: center -13.75rem;
  }
}

/* ページ別背景上書き */
body:has(.p-contactPage),
body:has(.p-worksArchive-fv),
body:has(.p-worksSingle-fv) {
  background-image: url(../images/common/bg-other.svg);
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  body:has(.p-contactPage),
body:has(.p-worksArchive-fv),
body:has(.p-worksSingle-fv) {
    background-image: url(../images/common/bg-other-sp.svg);
    background-position: top center;
  }
}

/* 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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 root defaults */
html {
  scroll-behavior: smooth;
}

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

/* 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%;
}

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

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

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* -----------------------------------------------------------------
  GlassOrb（ぼかし円のデコレーション）
  使い方: セクションに overflow: hidden / position: relative を持たせ、
         内部に <div class="c-orb"> を配置する
----------------------------------------------------------------- */
.c-orb {
  position: absolute;
  width: 600px;
  width: 37.5rem;
  height: 600px;
  height: 37.5rem;
  border-radius: 50%;
  background: #e0eafa;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
  -webkit-filter: blur(50px);
          filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  padding: 40px 0;
  padding: 2.5rem 0;
  font-size: 16px;
  font-size: 1rem;
  overflow-x: hidden;
  /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  /* 子要素を横一列に並べる */
}

.c-breadclumb__wrap a {
  display: inline-block;
  /* 子要素のアンカーをインラインブロックにする */
}

/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-button a {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  padding: 12px 5px;
  padding: 0.75rem 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  text-align: center;
  background-color: #fff;
  border-radius: 1.875rem;
  border: 1px solid #111;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button a:hover {
  background-color: #111;
  color: #fff;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  border-radius: 50%;
  z-index: 10;
  padding: 0 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 1.375rem;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
  background-color: #111;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    height: 0.125rem;
    border-radius: 1px;
  }
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.3125rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.4375rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -10px;
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(3) {
    top: -0.4375rem;
  }
}

/* トップ セクションタイトル
------------------------------------------------ */
.c-sectionTitle {
  font-size: 36px;
  font-size: 2.25rem;
  color: #111;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 1.75rem;
  }
}

.c-sectionTitle span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle span {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------------------------------
  Sub Hero（下層ページ共通ヒーロー）
----------------------------------------------------------------- */
.c-subHero {
  min-height: 460px;
  min-height: 28.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-subHero {
    min-height: 17.5rem;
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }
}

.c-subHero__inner {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .c-subHero__inner {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-subHero__inner {
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    gap: 1rem;
  }
}

.c-subHero__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: #111;
}

.c-subHero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.45;
  color: #111;
}
@media screen and (max-width: 1023px) {
  .c-subHero__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-subHero__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.c-subHero__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, .7);
}
@media screen and (max-width: 767px) {
  .c-subHero__desc {
    font-size: 0.8125rem;
  }
}

.l-contents {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    margin-top: 6.25rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1300px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.l-inner.--sm {
  max-width: 800px;
  max-width: 50rem;
}

/* アーカイブページのページ送り */
.p-pagenavi {
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  text-align: center;
  margin-top: 100px;
  margin-top: 6.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.current {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #fff;
  background-color: #111;
  border: 1px solid #111;
}
.p-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}
.extend {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}

.current,
.larger,
.smaller,
.extend {
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.larger:nth(:last-of-type) {
  margin-right: 34px;
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .larger:nth(:last-of-type) {
    margin-right: 1.25rem;
  }
}

.previouspostslink {
  margin-right: 34px;
  margin-right: 2.125rem;
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 1.25rem;
    padding: 0.25rem 0.625rem;
  }
}

.nextpostslink {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    padding: 0.25rem 0.625rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
  About Us
----------------------------------------------------------------- */
.l-aboutUs {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-aboutUs {
    margin-top: 5rem;
  }
}

.p-aboutUs {
  position: relative;
  overflow: hidden;
}
.p-aboutUs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  gap: 6.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 180px;
  padding-left: 11.25rem;
  padding-right: 180px;
  padding-right: 11.25rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutUs__inner {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutUs__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    gap: 1.5rem;
  }
}

.p-aboutUs__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
  white-space: nowrap;
  padding-top: 6px;
  padding-top: 0.375rem;
}

.p-aboutUs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-aboutUs__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-aboutUs__title {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
  }
}

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

.p-aboutUs__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-aboutUs__body p {
    font-size: 0.8125rem;
  }
}

/* マーキーアニメーション
------------------------------------------------ */
.p-aboutUs__marquee {
  height: 128px;
  height: 8rem;
  margin-top: 32px;
  margin-top: 2rem;
  overflow: hidden;
  border-bottom: 1px solid #e0eafa;
}
@media screen and (max-width: 767px) {
  .p-aboutUs__marquee {
    height: 3.75rem;
  }
}

.p-aboutUs__marqueeTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-family: "Zen Dots", sans-serif;
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #e0eafa;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-aboutUs__marqueeTrack {
    font-size: 3.375rem;
    -webkit-animation-duration: 12s;
            animation-duration: 12s;
  }
}

.p-aboutUs__marqueeTrack span {
  padding-right: 40px;
  padding-right: 2.5rem;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* -----------------------------------------------------------------
  Business
----------------------------------------------------------------- */
.l-business {
  position: relative;
  overflow: hidden;
}
.l-business .c-orb:nth-child(1) {
  top: -200px;
  top: -12.5rem;
  right: -150px;
  right: -9.375rem;
}
.l-business .c-orb:nth-child(2) {
  bottom: -200px;
  bottom: -12.5rem;
  left: -150px;
  left: -9.375rem;
}

.p-business {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-business__frame {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-business__frame {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__frame {
    padding: 4rem 1rem;
    gap: 2.5rem;
    border-radius: 1rem;
  }
}

/* ヘッダー
------------------------------------------------ */
.p-business__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-business__header {
    gap: 0.75rem;
  }
}

.p-business__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-business__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
}
@media screen and (max-width: 1023px) {
  .p-business__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}

/* カードグリッド
------------------------------------------------ */
.p-business__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-business__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-business__card {
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 24px;
  padding: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  position: relative;
}

.p-business__card > * + * {
  margin-top: 0;
}

.p-business__cardArrow {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  display: block;
}

.p-business__cardMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  color: #4d69e8;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.p-business__cardNum {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-business__cardEn {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.p-business__cardTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-business__cardTitle {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }
}

.p-business__cardSub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
}

.p-business__cardDetail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #333;
}

/* -----------------------------------------------------------------
  Business Page（専用ページ）
----------------------------------------------------------------- */
body:has(.p-businessPage) {
  background-image: url("../images/common/bg-business.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body:has(.p-businessPage) {
    background-image: url("../images/common/bg-business-sp.svg");
  }
}

.p-businessPage {
  position: relative;
  overflow: hidden;
}

/* Body（背景ブラー適用エリア）
------------------------------------------------ */
/* Detail
------------------------------------------------ */
.p-businessDetail {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  gap: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-businessDetail {
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-businessDetail {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    gap: 2rem;
  }
}

.p-businessDetail__numLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  color: #4d69e8;
}

.p-businessDetail__num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__num {
    font-size: 3rem;
  }
}

.p-businessDetail__numEn {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__numEn {
    font-size: 0.8125rem;
  }
}

.p-businessDetail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-businessDetail.--reverse .p-businessDetail__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-businessDetail.--reverse .p-businessDetail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-businessDetail__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 580px;
  width: 36.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-businessDetail__image {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .p-businessDetail__image {
    width: 100%;
  }
}

.p-businessDetail__image img {
  width: 100%;
  aspect-ratio: 580/390;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-businessDetail__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-businessDetail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.4;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__title {
    font-size: 1.375rem;
  }
}

.p-businessDetail__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__lead {
    font-size: 0.875rem;
  }
}

.p-businessDetail__accent {
  display: block;
  width: 40px;
  width: 2.5rem;
  height: 2px;
  height: 0.125rem;
  background-color: #63a1e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-businessDetail__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85;
  color: #676767;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__desc {
    font-size: 0.75rem;
  }
}

.p-businessDetail__divider {
  width: calc(100% + 7rem);
  height: 1px;
  background-color: #dedede;
  border: none;
  margin: 0 -56px;
  margin: 0 -3.5rem;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__divider {
    width: calc(100% + 2.5rem);
    margin: 0 -1.25rem;
  }
}

.p-businessPage + .p-footer {
  margin-top: 0;
}

/* -----------------------------------------------------------------
  Company（会社情報）
----------------------------------------------------------------- */
.l-company {
  margin-top: 180px;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-company {
    margin-top: 5rem;
  }
}

.p-company {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-company__frame {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-company__frame {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__frame {
    padding: 4rem 1rem;
    gap: 2rem;
    border-radius: 1rem;
  }
}

/* ヘッダー
------------------------------------------------ */
.p-company__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-company__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-company__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-company__heading {
    font-size: 1.75rem;
  }
}

/* コンテンツ（テーブル + マップ）
------------------------------------------------ */
.p-company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

/* 会社情報テーブル
------------------------------------------------ */
.p-company__table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.p-company__row:first-child {
  border-top: none;
}

.p-company__rowLabel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #808080;
  width: 100px;
  width: 6.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-company__rowLabel {
    width: 5rem;
    font-size: 0.75rem;
  }
}

.p-company__rowValue {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #111;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-company__rowValue {
    font-size: 0.8125rem;
  }
}

/* マップ
------------------------------------------------ */
.p-company__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  aspect-ratio: 602/408;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-company__map {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-company__map {
    aspect-ratio: 326/200;
  }
}

.p-company__map iframe,
.p-company__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-company__map::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  -webkit-box-shadow: inset 0.25rem 0.25rem 1.25rem 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0.25rem 0.25rem 1.25rem 0 rgba(0, 0, 0, .25);
  pointer-events: none;
}

/* -----------------------------------------------------------------
  Contact（お問い合わせ）
----------------------------------------------------------------- */
.l-contact {
  margin-top: 150px;
  margin-top: 9.375rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-contact {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-contact {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-contact__frame {
  width: 100%;
  max-width: 752px;
  max-width: 47rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 60px 40px;
  padding: 3.75rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__frame {
    padding: 3rem 1rem;
    border-radius: 1rem;
    gap: 1rem;
  }
}

.p-contact__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-contact__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: normal;
  color: #111;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.75rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

.p-contact__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    font-size: 0.8125rem;
  }
}

/* ボタン
------------------------------------------------ */
.p-contact__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #111;
  border-radius: 6.25rem;
  padding: 14px;
  padding: 0.875rem;
  width: 282px;
  width: 17.625rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contact__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    width: 100%;
    max-width: 17.625rem;
  }
}

.p-contact__btnText {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-contact__btnIcon {
  display: block;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  background-color: #fff;
  border-radius: 0.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 6px;
  padding: 0.375rem;
}

/* -----------------------------------------------------------------
  Contact Page（お問い合わせページ）
----------------------------------------------------------------- */
.p-contactPage {
  position: relative;
  overflow: hidden;
}

.p-contactForm {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contactForm {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    gap: 1.5rem;
  }
}

.p-contactForm__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-contactForm__lead {
    font-size: 0.8125rem;
  }
}

.p-contactForm__sep {
  width: 100%;
  height: 1px;
  background-color: #ccd1e0;
  border: none;
  margin: 0;
  margin-top: 32px;
  margin-top: 2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.p-contactForm__formError {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #c0392b;
  background-color: #fdf3f2;
  border: 1px solid #f5c6c2;
  border-radius: 0.5rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}

/* カード
------------------------------------------------ */
.p-contactForm__card {
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-contactForm__card {
    padding: 4.5rem 2.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contactForm__card {
    padding: 3rem 1rem;
    border-radius: 1rem;
    gap: 2.25rem;
  }
}

/* フォームフィールド
------------------------------------------------ */
.p-contactForm__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-contactForm__form {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contactForm__form {
    gap: 2rem;
  }
}

.p-contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contactForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

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

.p-contactForm__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-contactForm__label {
    font-size: 0.8125rem;
  }
}

.p-contactForm__required {
  color: #111;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-contactForm__input,
.p-contactForm__textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid #ccd1e0;
  border-radius: 0.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #111;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.p-contactForm__input::-webkit-input-placeholder,
.p-contactForm__textarea::-webkit-input-placeholder {
  color: #666670;
}
.p-contactForm__input::-moz-placeholder,
.p-contactForm__textarea::-moz-placeholder {
  color: #666670;
}
.p-contactForm__input::-ms-input-placeholder,
.p-contactForm__textarea::-ms-input-placeholder {
  color: #666670;
}
.p-contactForm__input::placeholder,
.p-contactForm__textarea::placeholder {
  color: #666670;
}
.p-contactForm__input:focus,
.p-contactForm__textarea:focus {
  outline: none;
  border-color: #4d69e8;
}

input[type=text].p-contactForm__input,
input[type=email].p-contactForm__input,
input[type=tel].p-contactForm__input {
  width: 100%;
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid #ccd1e0;
  border-radius: 0.75rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #111;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
input[type=text].p-contactForm__input::-webkit-input-placeholder,
input[type=email].p-contactForm__input::-webkit-input-placeholder,
input[type=tel].p-contactForm__input::-webkit-input-placeholder {
  color: #666670;
}
input[type=text].p-contactForm__input::-moz-placeholder,
input[type=email].p-contactForm__input::-moz-placeholder,
input[type=tel].p-contactForm__input::-moz-placeholder {
  color: #666670;
}
input[type=text].p-contactForm__input::-ms-input-placeholder,
input[type=email].p-contactForm__input::-ms-input-placeholder,
input[type=tel].p-contactForm__input::-ms-input-placeholder {
  color: #666670;
}
input[type=text].p-contactForm__input::placeholder,
input[type=email].p-contactForm__input::placeholder,
input[type=tel].p-contactForm__input::placeholder {
  color: #666670;
}
input[type=text].p-contactForm__input:focus,
input[type=email].p-contactForm__input:focus,
input[type=tel].p-contactForm__input:focus {
  outline: none;
  border-color: #4d69e8;
}
@media screen and (max-width: 767px) {
  input[type=text].p-contactForm__input,
input[type=email].p-contactForm__input,
input[type=tel].p-contactForm__input {
    padding: 0.8125rem 1rem;
    font-size: 0.875rem;
  }
}

.p-contactForm__textarea {
  min-height: 180px;
  min-height: 11.25rem;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contactForm__textarea {
    padding: 0.8125rem 1rem;
    font-size: 0.875rem;
  }
}

.p-contactForm__field.is-error .p-contactForm__input,
.p-contactForm__field.is-error .p-contactForm__textarea {
  border-color: #c0392b;
}

.p-contactForm__error {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #c0392b;
}

/* 送信ボタン
------------------------------------------------ */
.p-contactForm__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contactForm__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #111;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  border-radius: 6.25rem;
  width: 260px;
  width: 16.25rem;
  height: 56px;
  height: 3.5rem;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contactForm__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-contactForm__btn {
    width: 100%;
    max-width: 12.5rem;
  }
}

/* 送信完了
------------------------------------------------ */
.p-contactComplete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  padding: 80px 40px;
  padding: 5rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactComplete {
    padding: 3.5rem 1rem;
    gap: 1rem;
  }
}

.p-contactComplete__icon {
  font-size: 48px;
  font-size: 3rem;
  color: #4d69e8;
  line-height: 1;
}

.p-contactComplete__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-contactComplete__title {
    font-size: 1.375rem;
  }
}

.p-contactComplete__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-contactComplete__text {
    font-size: 0.8125rem;
  }
}

.p-contactComplete__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #111;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 6.25rem;
  width: 260px;
  width: 16.25rem;
  height: 56px;
  height: 3.5rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contactComplete__btn:hover {
  opacity: 0.7;
}

/* 確認画面
------------------------------------------------ */
.p-contactConfirm {
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 80px 56px;
  padding: 5rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-contactConfirm {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contactConfirm {
    padding: 2.5rem 1.25rem;
    border-radius: 1rem;
    gap: 2rem;
  }
}

.p-contactConfirm__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__lead {
    font-size: 0.8125rem;
  }
}

.p-contactConfirm__table {
  width: 100%;
  border-collapse: collapse;
}

.p-contactConfirm__row {
  border-bottom: 1px solid #e8eaf0;
}
.p-contactConfirm__row:first-child {
  border-top: 1px solid #e8eaf0;
}

.p-contactConfirm__label {
  width: 200px;
  width: 12.5rem;
  padding: 20px 24px 20px 0;
  padding: 1.25rem 1.5rem 1.25rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__label {
    display: block;
    width: 100%;
    padding: 1rem 0 0.25rem;
    font-size: 0.8125rem;
  }
}

.p-contactConfirm__value {
  padding: 20px 0;
  padding: 1.25rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333;
  vertical-align: top;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__value {
    display: block;
    padding: 0.25rem 0 1rem;
    font-size: 0.875rem;
  }
}

.p-contactConfirm__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__actions form {
    width: 100%;
  }
}

.p-contactConfirm__btnBack {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  border: 1px solid #ccd1e0;
  border-radius: 6.25rem;
  width: 200px;
  width: 12.5rem;
  height: 56px;
  height: 3.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}
.p-contactConfirm__btnBack:hover {
  background-color: #f5f7fb;
  border-color: #b0b8cc;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__btnBack {
    width: 100%;
  }
}

.p-contactConfirm__btnSend {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #111;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  border: 1px solid #111;
  border-radius: 6.25rem;
  width: 260px;
  width: 16.25rem;
  height: 56px;
  height: 3.5rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contactConfirm__btnSend:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-contactConfirm__btnSend {
    width: 100%;
  }
}

.p-contactPage + .p-footer {
  margin-top: 0;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}

.p-drawer__wrap {
  padding: 90px 50px 100px;
  padding: 5.625rem 3.125rem 6.25rem;
}

.p-drawer__logo {
  width: 135px;
  width: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    width: 6.25rem;
  }
}

.p-drawer__navigation-items {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(17, 17, 17, .15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}

.p-drawer__navigation-item a {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #111;
}

.p-drawer__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__meta table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: #111;
}

.p-drawer__meta table tbody tr th {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  width: 100px;
  width: 6.25rem;
  text-align: left;
  font-weight: 400;
}

.p-drawer__privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #111;
}

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

/* -----------------------------------------------------------------
  Footer
----------------------------------------------------------------- */
.p-footer {
  background-color: #e0eafa;
  padding: 64px 56px 40px;
  padding: 4rem 3.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-footer {
    padding: 4rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3rem 1.5rem 2rem;
    gap: 2rem;
  }
}

/* トップ（ブランド + ナビ）
------------------------------------------------ */
.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}

.p-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}

.p-footer__logo {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 28px;
  font-size: 1.75rem;
  color: #111;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    font-size: 1.375rem;
  }
}

.p-footer__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #676767;
}
@media screen and (max-width: 767px) {
  .p-footer__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.025em;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.p-footer__navItem {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__navItem:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-footer__navItem {
    font-size: 0.8125rem;
  }
}

/* 区切り線
------------------------------------------------ */
.p-footer__divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

/* コピーライト
------------------------------------------------ */
.p-footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #676767;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.6875rem;
    text-align: center;
  }
}

.p-form input[type=radio], .p-form input[type=checkbox] {
  display: block;
  opacity: 0;
  position: absolute;
  z-index: -100;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.p-form input[type=radio] + span,
.p-form input[type=checkbox] + span {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #111;
  text-align: left;
  width: 100%;
}
.p-form input[type=radio] + span {
  padding: 10px 10px 10px 18px;
  padding: 0.625rem 0.625rem 0.625rem 1.125rem;
}
.p-form input[type=checkbox] + span {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-form input[type=checkbox] + span {
    padding-right: 0;
  }
}
.p-form input[type=radio]:checked + span,
.p-form input[type=checkbox]:checked + span {
  color: #111;
}
.p-form input[type=radio] + span:before,
.p-form input[type=checkbox] + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:before,
.p-form input[type=checkbox]:checked + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:after {
  background: #111;
}
.p-form input[type=checkbox]:checked + span:after {
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  -webkit-mask: url(../images/common/icon-check.png) no-repeat center center/contain;
          mask: url(../images/common/icon-check.png) no-repeat center center/contain;
  background-color: #111;
  width: 20px;
  height: 20px;
}
.p-form input[type=checkbox] + span:hover::after {
  background-color: #111;
}
.p-form input[type=text], .p-form input[type=password], .p-form input[type=email], .p-form input[type=tel], .p-form input[type=url], .p-form input[type=search], .p-form input[type=number], .p-form input[type=datetime], .p-form input[type=week], .p-form select {
  width: 100%;
  background-color: #fff;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
.p-form textarea {
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  width: 100%;
  background-color: #fff;
}

.p-form__table {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-collapse: collapse;
}

.p-form__table a {
  border-bottom: 1px solid #111;
}

@media screen and (max-width: 767px) {
  .p-form__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__table th {
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__table td {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__required:after {
  content: "※";
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
  color: red;
}

@media screen and (max-width: 767px) {
  .submit_button + .submit_button {
    margin-top: 1.25rem;
  }
}

.p-form__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

/* -----------------------------------------------------------------
  FV（ファーストビュー）
----------------------------------------------------------------- */
.p-fv {
  width: 100%;
  height: calc(100vh - 4rem);
  min-height: 600px;
  min-height: 37.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: calc(100vh - 3.75rem);
    min-height: 37.5rem;
  }
}

.p-fv__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa, inset 0.25rem 0.25rem 1.25rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0 1.25rem 0 #e0eafa, inset 0.25rem 0.25rem 1.25rem 0 rgba(0, 0, 0, .25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 90px;
  padding-left: 5.625rem;
  padding-right: 90px;
  padding-right: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.p-fv__en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
}
@media screen and (max-width: 1023px) {
  .p-fv__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__en {
    font-size: 4rem;
  }
}

.p-fv__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__ja {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-top: 1.25rem;
  }
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  height: 64px;
  height: 4rem;
  position: relative;
  z-index: 6;
  background-color: rgba(255, 255, 255, .4);
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    padding: 0;
    border-radius: 0;
    margin-top: inherit;
  }
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  text-decoration: none;
}

.p-header__logo-text {
  display: inline-block;
  width: 72px;
  width: 4.5rem;
  height: 19px;
  height: 1.1875rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  color: inherit;
  white-space: nowrap;
}

.p-header__nav {
  height: 100%;
}

.p-header__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.75rem;
     -moz-column-gap: 1.75rem;
          column-gap: 1.75rem;
  height: 100%;
}

.p-header__navItem {
  height: 100%;
}

.p-header__navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  height: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-header__navItem a:hover {
  opacity: 0.6;
}

.p-header__hamburger {
  position: fixed;
  top: 18px;
  top: 1.125rem;
  right: 20px;
  right: 1.25rem;
  z-index: 16;
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #676767;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-loading__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-loading__img {
  width: 280px;
  width: 17.5rem;
  height: 280px;
  height: 17.5rem;
  margin: auto;
  -webkit-animation: fade 3s ease-in;
          animation: fade 3s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-loading__img {
    max-width: 12.5rem;
  }
}

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

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-loading__imgMain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* -----------------------------------------------------------------
  Member（メンバー）
----------------------------------------------------------------- */
.l-member {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-member {
    margin-top: 4rem;
  }
}

.p-member {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-member {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-member__inner {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 56px;
  padding: 0 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-member__inner {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-member__inner {
    padding: 0 1rem;
    gap: 2rem;
  }
}

/* ヘッダー
------------------------------------------------ */
.p-member__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-member__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-member__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-member__heading {
    font-size: 2rem;
  }
}

/* チーム写真
------------------------------------------------ */
.p-member__teamPhoto {
  position: relative;
  width: 100%;
  height: 420px;
  height: 26.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-member__teamPhoto {
    height: 12.5rem;
  }
}

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

/* メンバーグリッド
------------------------------------------------ */
.p-member__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
}

.p-member__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-member__card {
    gap: 0.5rem;
  }
}

.p-member__cardImgWrap {
  background-color: #fff;
  padding: 8px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
}

.p-member__cardImgInner {
  width: 100%;
  aspect-ratio: 400/300;
  border-radius: 0.25rem;
  overflow: hidden;
}

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

.p-member__cardRole {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #4d69e8;
}

.p-member__cardName {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-member__cardName {
    font-size: 1.125rem;
  }
}

/* -----------------------------------------------------------------
  MVV
----------------------------------------------------------------- */
.l-mvv {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-mvv {
    margin-top: 4rem;
  }
}
.l-mvv .c-orb:nth-child(1) {
  top: -150px;
  top: -9.375rem;
  left: -150px;
  left: -9.375rem;
}
.l-mvv .c-orb:nth-child(2) {
  bottom: -150px;
  bottom: -9.375rem;
  right: -150px;
  right: -9.375rem;
}

.p-mvv {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mvv {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-mvv__inner {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 56px;
  padding: 0 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-mvv__inner {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__inner {
    padding: 0 1rem;
    gap: 2.5rem;
  }
}

/* ヘッダー
------------------------------------------------ */
.p-mvv__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__header {
    gap: 0.75rem;
  }
}

.p-mvv__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-mvv__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-mvv__heading {
    font-size: 2.5rem;
  }
}

/* リスト
------------------------------------------------ */
.p-mvv__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-mvv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  gap: 7.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 1023px) {
  .p-mvv__item {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-mvv__item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.p-mvv__itemLabel {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.03em;
  white-space: nowrap;
  width: 170px;
  width: 10.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mvv__itemLabel {
    width: auto;
    font-size: 0.75rem;
  }
}

.p-mvv__itemBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-mvv__itemBody {
    gap: 0.5rem;
  }
}

.p-mvv__itemBody.--values {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__itemBody.--values {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.p-mvv__itemTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-mvv__itemTitle {
    font-size: 1.125rem;
    letter-spacing: 0.2em;
  }
}

.p-mvv__itemEn {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-mvv__itemEn {
    font-size: 0.75rem;
    color: #808080;
  }
}

/* Values アイテム
------------------------------------------------ */
.p-mvv__valuesItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
  min-width: 0;
}

.p-mvv__valuesTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-mvv__valuesTitle {
    font-size: 1rem;
  }
}

.p-mvv__valuesText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-mvv__valuesText {
    font-size: 0.75rem;
  }
}

/* 記事詳細
------------------------------------------------ */
.p-post__inner {
  max-width: 800px;
  max-width: 50rem;
}

.p-post__head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-post__head {
    text-align: left;
  }
}

.p-post__head time {
  font-size: 20px;
  font-size: 1.25rem;
  color: #111;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-post__head time {
    font-size: 0.875rem;
  }
}

.p-post__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-post__title {
    font-size: 1.125rem;
  }
}

.p-post__thumbnail {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-post__wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap h2 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h2 {
    font-size: 1.375rem;
  }
}

.p-post__wrap h3 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 1.125rem;
  }
}

.p-post__wrap h4 {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h4 {
    font-size: 1rem;
  }
}

.p-post__wrap p {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap p {
    font-size: 0.875rem;
  }
}

.p-post__wrap a {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #44a3cb;
  border-bottom: 1px solid #44a3cb;
  border-bottom: 0.0625rem solid #44a3cb;
}
@media screen and (max-width: 767px) {
  .p-post__wrap a {
    font-size: 0.875rem;
  }
}

.p-post__wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap ul {
  list-style: disc;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-post__wrap ul {
    font-size: 0.875rem;
  }
}

.p-post__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}

/* 記事詳細ページのページ送り */
.p-postPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-postPagination__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 26%;
  min-width: 300px;
  min-width: 18.75rem;
  max-width: 400px;
  max-width: 25rem;
}

.p-postPagination__link.--placeholder {
  visibility: hidden;
}

.p-postPagination__link a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  color: #111;
  position: relative;
}

.p-postPagination__link-pageprev a:before {
  -webkit-mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  left: -1.25rem;
  content: "";
}

.p-postPagination__link-pagenext a:before {
  -webkit-mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  right: -1.25rem;
  content: "";
}

.p-postPagination__link-archive {
  text-align: center;
}

.p-postPagination__link-archive span:before {
  -webkit-mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
          mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
  background-color: #676767;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 8px);
  left: -22px;
  content: "";
}

.p-postPagination__link {
  margin: 0 auto;
}

/* プライバシーポリシー
------------------------------------------------ */
body:has(.p-privacyPage) {
  background-image: url("../images/common/bg-privacy.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body:has(.p-privacyPage) {
    background-image: url("../images/common/bg-privacy-sp.svg");
  }
}

.p-privacyPage {
  position: relative;
  overflow: hidden;
}
.p-privacyPage .c-orb:nth-child(1) {
  top: -200px;
  top: -12.5rem;
  right: -150px;
  right: -9.375rem;
}
.p-privacyPage .c-orb:nth-child(2) {
  top: 45%;
  left: -150px;
  left: -9.375rem;
}

.p-policyBody {
  padding: 0 0 80px;
  padding: 0 0 5rem;
}

.p-policyIntro {
  padding: 80px 56px 32px;
  padding: 5rem 3.5rem 2rem;
}
@media screen and (max-width: 1023px) {
  .p-policyIntro {
    padding: 3.75rem 2.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-policyIntro {
    padding: 2.5rem 1rem 1.25rem;
  }
}

.p-policyIntro__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-policyIntro__text {
    font-size: 0.8125rem;
  }
}

.p-policyIntro__divider {
  margin-top: 24px;
  margin-top: 1.5rem;
  border: none;
  border-top: 1px solid #e8e8e6;
}

.p-policyCardWrap {
  padding: 0 56px 24px;
  padding: 0 3.5rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-policyCardWrap {
    padding: 0 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-policyCardWrap {
    padding: 0 0 1rem;
  }
}

.p-policyCard {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .55);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 56px 80px;
  padding: 3.5rem 5rem;
}
@media screen and (max-width: 1023px) {
  .p-policyCard {
    padding: 3.5rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-policyCard {
    padding: 3.5rem 1rem;
    border-radius: 1rem;
  }
}

.p-policyArticle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  padding: 40px 0;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e8e8e6;
}
.p-policyArticle:first-child {
  padding-top: 0;
}
.p-policyArticle.--last {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-policyArticle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 0;
  }
}

.p-policyArticle__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 110px;
  width: 6.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-policyArticle__num {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    width: auto;
  }
}

.p-policyArticle__numDigit {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-policyArticle__numDigit {
    font-size: 1.5rem;
  }
}

.p-policyArticle__numLabel {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #999;
}

.p-policyArticle__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 0;
}

.p-policyArticle__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #111;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-policyArticle__title {
    font-size: 1.0625rem;
  }
}

.p-policyArticle__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #666;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-policyArticle__text {
    font-size: 0.8125rem;
  }
}

.p-policyArticle__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-policyArticle__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  gap: 0.75rem;
}
.p-policyArticle__listItem::before {
  content: "";
  display: block;
  width: 8px;
  width: 0.5rem;
  height: 1px;
  background: #999;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 14px;
  margin-top: 0.875rem;
}
.p-policyArticle__listItem span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-policyArticle__listItem span {
    font-size: 0.8125rem;
  }
}

.p-policyContactCard {
  background: rgba(224, 234, 250, .5);
  border-radius: 0.75rem;
  padding: 28px 32px;
  padding: 1.75rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-policyContactCard {
    padding: 1.25rem 1.25rem;
  }
}

.p-policyContactCard__company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
  color: #111;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-policyContactCard__company {
    font-size: 0.875rem;
  }
}

.p-policyContactCard__info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.025em;
  color: #666;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-policyContactCard__info {
    font-size: 0.75rem;
  }
}

.p-policyDate {
  padding: 32px 56px 0;
  padding: 2rem 3.5rem 0;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #999;
}
@media screen and (max-width: 1023px) {
  .p-policyDate {
    padding: 1.5rem 2.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-policyDate {
    padding: 1.25rem 1rem 0;
    font-size: 0.625rem;
    letter-spacing: 0.025em;
  }
}

/* 下層のMV
------------------------------------------------ */
/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

/* -----------------------------------------------------------------
  Works（制作実績）
----------------------------------------------------------------- */
.l-works {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-works {
    margin-top: 4rem;
  }
}
.l-works .c-orb:nth-child(1) {
  top: -150px;
  top: -9.375rem;
  right: -150px;
  right: -9.375rem;
}
.l-works .c-orb:nth-child(2) {
  bottom: -150px;
  bottom: -9.375rem;
  left: -150px;
  left: -9.375rem;
}

.p-works {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-works__frame {
  width: 100%;
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-works__frame {
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works__frame {
    padding: 4rem 1rem;
    gap: 2.5rem;
    border-radius: 1rem;
  }
}

/* ヘッダー
------------------------------------------------ */
.p-works__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-works__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.p-works__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  letter-spacing: 0.2em;
}

.p-works__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-works__heading {
    font-size: 2rem;
  }
}

.p-works__viewAll {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  padding: 0.875rem 2rem;
  border-radius: 6.25rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.p-works__viewAll:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-works__viewAll {
    font-size: 0.8125rem;
    padding: 0.625rem 1.5rem;
  }
}

/* カードコンテンツ
------------------------------------------------ */
.p-works__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
}

/* カテゴリチップ
------------------------------------------------ */
.p-works__chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4d69e8;
  color: #fff;
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 12px 28px;
  padding: 0.75rem 1.75rem;
  border-radius: 12.5rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-works__chip.--sm {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 6px 14px;
  padding: 0.375rem 0.875rem;
  border-radius: 6.25rem;
}

/* フィーチャードカード
------------------------------------------------ */
.p-works__featured {
  position: relative;
  width: 100%;
  height: 713px;
  height: 44.5625rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-works__featured {
    display: none;
  }
}

.p-works__featuredCard {
  position: absolute;
  inset: 0;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
  padding: 16px;
  padding: 1rem;
}

.p-works__featuredImgWrap {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
}

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

.p-works__featuredInfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 508px;
  width: 31.75rem;
  padding: 32px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0 1.5rem 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-works__featuredInfo {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
  }
}

.p-works__featuredMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
  gap: 0.5rem 1rem;
}

.p-works__featuredClient {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-works__featuredClient {
    font-size: 0.875rem;
  }
}

.p-works__featuredTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  color: #111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-works__featuredTitle {
    font-size: 1.125rem;
  }
}

/* グリッドカード
------------------------------------------------ */
.p-works__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 24px;
  gap: 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-works__grid {
    gap: 1.5rem;
  }
}

.p-works__card {
  position: relative;
  width: calc(33.33333% - 1rem);
  height: 250px;
  height: 15.625rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .p-works__card {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-works__card {
    width: 100%;
    height: 18.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-works__card {
    height: 12.5rem;
  }
}

.p-works__card.--spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-works__card.--spOnly {
    display: block;
  }
}

.p-works__cardInner {
  position: absolute;
  inset: 0;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
  padding: 8px;
  padding: 0.5rem;
}

.p-works__cardImgWrap {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}

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

.p-works__cardInfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 254px;
  width: 15.875rem;
  padding: 16px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0 0.75rem 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
.p-works__cardMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 8px;
  gap: 0.25rem 0.5rem;
}

.p-works__cardClient {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #333;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-works__cardTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: anywhere;
}

/* ================================================================
   Works アーカイブページ（archive-works.php）
================================================================ */
/* FV
------------------------------------------------ */
.p-worksArchive-fv {
  padding-top: 64px;
  padding-top: 4rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-worksArchive-fv {
    padding-top: 3.75rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-worksArchive-fv__bg {
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-worksArchive-fv__bg {
    padding: 4.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksArchive-fv__bg {
    padding: 3rem 1.5rem;
    gap: 1rem;
    border-radius: 1rem;
  }
}

.p-worksArchive-fv__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #111;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.p-worksArchive-fv__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.3;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1023px) {
  .p-worksArchive-fv__heading {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksArchive-fv__heading {
    font-size: 1.75rem;
  }
}

.p-worksArchive-fv__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #111;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-worksArchive-fv__text {
    font-size: 0.8125rem;
  }
}

/* ボディ
------------------------------------------------ */
.p-worksArchive {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
.p-worksArchive .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-worksArchive .l-inner {
    gap: 1.5rem;
  }
}

/* ヘッダー行（タイトル + フィルター）
------------------------------------------------ */
.p-worksArchive__headRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-worksArchive__headRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}

.p-worksArchive__titleBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-worksArchive__titleBlock {
    gap: 0.5rem;
  }
}

.p-worksArchive__titleLabel {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #666670;
  letter-spacing: 0.2em;
}

.p-worksArchive__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  font-size: 2.25rem;
  color: #111;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-worksArchive__heading {
    font-size: 1.5rem;
  }
}

/* フィルタータブ
------------------------------------------------ */
.p-worksArchive__filterRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.p-worksArchive__filterTab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, .7);
  border: 1px solid #ccd1e0;
  color: #666670;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
  border-radius: 6.25rem;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.p-worksArchive__filterTab:hover, .p-worksArchive__filterTab.is-active {
  background-color: #111118;
  color: #fff;
  border-color: #111118;
}
@media screen and (max-width: 767px) {
  .p-worksArchive__filterTab {
    font-size: 0.75rem;
  }
}

/* 区切り線
------------------------------------------------ */
.p-worksArchive__divider {
  width: 100%;
  height: 1px;
  background-color: #ccd1e0;
}

/* Works リストコンテナ
------------------------------------------------ */
.p-worksArchive__frame {
  width: 100%;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-worksArchive__frame {
    padding: 4rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksArchive__frame {
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    gap: 2rem;
  }
}

/* Works グリッド
------------------------------------------------ */
.p-worksArchive__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-worksArchive__empty {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  text-align: center;
  padding: 40px 0;
  padding: 2.5rem 0;
}

/* Works カード
------------------------------------------------ */
.p-worksArchive__card {
  width: calc(33.33333% - 1rem);
}
@media screen and (max-width: 1023px) {
  .p-worksArchive__card {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-worksArchive__card {
    width: 100%;
  }
}

.p-worksArchive__cardLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
.p-worksArchive__cardLink:hover .p-worksArchive__cardImgWrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-worksArchive__cardImgWrap {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, .1);
  border-radius: 0.5rem;
  padding: 8px;
  padding: 0.5rem;
  overflow: hidden;
}
.p-worksArchive__cardImgWrap img {
  width: 100%;
  aspect-ratio: 300/180;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-worksArchive__cardBody {
  padding: 24px 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-worksArchive__cardMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.p-worksArchive__cardClient {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #8c94a8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-worksArchive__chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4d69e8;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-worksArchive__cardTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: anywhere;
}

/* ================================================================
   Works シングルページ（single-works.php）
================================================================ */
/* FV
------------------------------------------------ */
.p-worksSingle-fv {
  padding-top: 64px;
  padding-top: 4rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv {
    padding-top: 3.75rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-worksSingle-fv__bg {
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle-fv__bg {
    padding: 4.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv__bg {
    padding: 2.5rem 1.5rem;
    gap: 1rem;
    border-radius: 1rem;
  }
}

.p-worksSingle-fv__back {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #111;
  opacity: 0.6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-worksSingle-fv__back:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv__back {
    font-size: 0.75rem;
  }
}

.p-worksSingle-fv__metaRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv__metaRow {
    font-size: 0.6875rem;
  }
}

.p-worksSingle-fv__metaLabel {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #111;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.p-worksSingle-fv__metaSep {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #111;
  opacity: 0.3;
}

.p-worksSingle-fv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.2;
  color: #111;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle-fv__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv__title {
    font-size: 1.625rem;
  }
}

.p-worksSingle-fv__clientRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-worksSingle-fv__clientRow {
    font-size: 0.8125rem;
  }
}

.p-worksSingle-fv__clientSep {
  opacity: 0.4;
}

/* ボディ
------------------------------------------------ */
.p-worksSingle {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-worksSingle__inner {
  max-width: 1380px;
  max-width: 86.25rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle__inner {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle__inner {
    gap: 3rem;
  }
}

/* 二列エリア
------------------------------------------------ */
.p-worksSingle__twoCol {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  gap: 4rem;
  padding-left: 56px;
  padding-left: 3.5rem;
  padding-right: 56px;
  padding-right: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle__twoCol {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle__twoCol {
    padding-left: 0;
    padding-right: 0;
    gap: 2.5rem;
  }
}

/* ヒーロー画像
------------------------------------------------ */
.p-worksSingle__heroImg {
  width: 100%;
  max-width: 810px;
  max-width: 50.625rem;
  aspect-ratio: 810/456;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #d6deed;
}
@media screen and (max-width: 767px) {
  .p-worksSingle__heroImg {
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
  }
}
.p-worksSingle__heroImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* コンテンツ行（詳細カード + 概要）
------------------------------------------------ */
.p-worksSingle__contentRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle__contentRow {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle__contentRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

/* プロジェクト詳細カード
------------------------------------------------ */
.p-worksSingle__detailCard {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 360px;
  width: 22.5rem;
  background-color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 1.25rem;
  padding: 32px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle__detailCard {
    width: 16.25rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle__detailCard {
    width: 100%;
  }
}

.p-worksSingle__detailHeading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #111;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}

.p-worksSingle__detailRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 18px 0;
  padding: 1.125rem 0;
  border-bottom: 1px solid #ccd1e0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-worksSingle__detailRow.--last {
  border-bottom: none;
}

.p-worksSingle__detailLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 96px;
  width: 6rem;
  color: #8c94a8;
  line-height: 1.6;
}

.p-worksSingle__detailValue {
  color: #111;
  line-height: 1.6;
}

/* 概要カラム
------------------------------------------------ */
.p-worksSingle__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}

.p-worksSingle__descLabel {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #666670;
  letter-spacing: 0.2em;
}

.p-worksSingle__descHeading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  color: #111;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-worksSingle__descHeading {
    font-size: 1.375rem;
    margin-top: 0.75rem;
  }
}

.p-worksSingle__descContent {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-worksSingle__descContent {
    font-size: 0.875rem;
  }
}
.p-worksSingle__descContent p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

/* タグ行（works_tag）
------------------------------------------------ */
.p-worksSingle__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.p-worksSingle__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, .7);
  border: 1px solid #ccd1e0;
  color: #666670;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 6px 14px;
  padding: 0.375rem 0.875rem;
  border-radius: 6.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-worksSingle__tag {
    font-size: 0.75rem;
  }
}

/* 関連実績
------------------------------------------------ */
.p-worksSingle__related {
  width: 100%;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 #e0eafa;
          box-shadow: 0 0 1.25rem 0 #e0eafa;
  padding: 100px 56px;
  padding: 6.25rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-worksSingle__related {
    padding: 4rem 2.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-worksSingle__related {
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    gap: 2rem;
  }
}

.p-worksSingle__relatedHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-worksSingle__relatedLabel {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #666670;
  letter-spacing: 0.2em;
}

.p-worksSingle__relatedHeading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  color: #111;
}

/* カードオーバーレイリンク（関連実績など）
------------------------------------------------ */
.p-works__cardOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 0.5rem;
}

/* -----------------------------------------------------------------
  猪原さん用
----------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */
