@charset "UTF-8";
/*
サイズ用関数
$pixelsVw:フォントサイズ
$baseWidth:ベースとなる画面横幅
*/
/*
SAMPLE
font-size: vw(30,375);
*/
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* モダン: アニメーション無効設定を尊重（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%; /* モダン: 標準プロパティ追加 */
  -webkit-tap-highlight-color: transparent; /* モダン: タップ時ハイライト除去 */
  -webkit-appearance: none;
}

body {
  margin: 0;
  min-height: 100%; /* height:100% → min-height に（コンテンツ伸長対応） */
  position: relative; /* SPブロックから統合 */
  overflow-wrap: break-word; /* 継承プロパティ。全要素の長い文字列の折り返しを担保 */
  -webkit-font-smoothing: antialiased; /* モダン: 文字描画調整（任意） */
  -moz-osx-font-smoothing: grayscale;
}

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: auto;
}

/* モダン: メディア要素も同様に扱う */
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
  padding: 0;
}

/* モダン: フォーム要素はフォント・色を継承させる */
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

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

textarea {
  resize: none;
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: 0;
}

th,
td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

/* SVGスプライトリセット */
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  responsive
------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1260 * 100vw);
  }
}
@media (min-width: 1260px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

li.menu-item-hidden {
  display: none;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: relative;
  width: 100%;
  z-index: 800;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1260px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 20px;
}
@media only screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 30px;
  }
}

/* --------------------------------
l-wrapper
----------------------------------- */
.l-wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* オフキャンバス・ドロワー(.p-drawer translateX(100%))の画面外はみ出しを封じ込める */
  overflow-x: hidden;
}

/* --------------------------------
l-main
----------------------------------- */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .l-main {
    padding-top: 8rem;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger（ネイビー角・白3本線 → 重なり → X。ドロワーより上に重ねる）
----------------------------------- */
.c-hamburger {
  position: relative;
  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;
  width: 4rem;
  height: 4rem;
  background-color: #003460;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 2.7rem;
  height: 0.1rem;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s, opacity 0.4s;
  transition: transform 0.4s, top 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

/* バーは%基準で配置（2番目=50%を基準に上下対称） */
.c-hamburger span:nth-child(1) {
  top: 30%;
}

.c-hamburger span:nth-child(2) {
  top: 50%;
}

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

/* 開いた時：背景を透明化（ネイビードロワー上で白いXだけ見せる） */
.c-hamburger.is-step01 {
  background-color: transparent;
}

/* is-step01: 上下線が中央へ集まり中央線は消える */
.c-hamburger.is-step01 span:nth-child(1),
.c-hamburger.is-step01 span:nth-child(3) {
  top: 50%;
}

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

/* is-step02: X形状 */
.c-hamburger.is-step02 span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

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

.c-hamburger.is-step02 span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* ------------------------------------------------
c-btn 
--------------------------------------------------- */
.c-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-align: center;
  min-width: 20rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  padding-block: 1.5rem;
  padding-left: 0.6rem;
  border: 0.1rem solid #000;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-btn {
    min-width: 20rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #fff;
    color: #000;
  }
}
.c-btn--middle {
  min-width: 36.8rem;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--middle {
    min-width: initial;
  }
}

.c-btn--long {
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--long {
    min-width: 50rem;
  }
}
.c-btn--long.is-active {
  background-color: #000;
  color: #fff;
  cursor: default;
}

.c-btn--ventures {
  width: 100%;
  border: 0.2rem solid #000;
}
@media only screen and (max-width: 767px) {
  .c-btn--ventures {
    font-size: 1.7rem;
    line-height: 1.2;
    border: 0.1rem solid #000;
  }
}

@media (any-hover: hover) {
  .c-btn--middle:hover,
  .c-btn--long:hover {
    background-color: #000;
    color: #fff;
  }
}
/* ------------------------------------------------
c-section-title 
--------------------------------------------------- */
.c-section-title {
  text-align: center;
}
.c-section-title span {
  display: block;
  color: #000;
}
.c-section-title span:nth-child(1) {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(1) {
    font-size: 10rem;
  }
}
.c-section-title span:nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(2) {
    font-size: 2rem;
  }
}

.c-section-title--left {
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .c-section-title--sm span:nth-child(1) {
    font-size: 9rem;
  }
}

/* ------------------------------------------------
c-more-btn（一覧などへの「ラベル ＞」）
--------------------------------------------------- */
.c-more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-more-btn {
    font-size: 1.6rem;
    padding: 0.5rem 0.8rem 0.4rem 1.4rem;
  }
}
@media (any-hover: hover) {
  .c-more-btn:hover {
    background-color: #000;
    color: #fff;
  }
}

/* ------------------------------------------------
c-arrow（丸＋矢印・親a/buttonのホバーで色反転）
丸はCSS、矢印はSVG(icon_chevron.svg)をマスクで着色
--------------------------------------------------- */
.c-arrow {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  border: 1px solid #000;
  background-color: #000;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-arrow::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 58%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 1.4rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_chevron.svg);
          mask-image: url(../img/common/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.c-arrow--prev::before {
  left: 55%;
}

@media only screen and (max-width: 767px) {
  .c-arrow--sm {
    width: 1.3rem;
    height: 1.3rem;
  }
  .c-arrow--sm::before {
    width: 0.6rem;
    height: 0.9rem;
  }
}

/* 親の a / button をホバーで反転（白丸＋黒矢印） */
@media (any-hover: hover) {
  a:hover .c-arrow,
  button:hover .c-arrow {
    background-color: #fff;
  }
  a:hover .c-arrow::before,
  button:hover .c-arrow::before {
    background-color: #000;
  }
}
/* ------------------------------------------------
パンくず（Breadcrumb NavXT / bcn_display 出力）
--------------------------------------------------- */
.c-breadcrumbs {
  border-top: 1px solid #000;
  padding-block: 1.4rem;
  padding-inline: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .c-breadcrumbs {
    padding-block: 1.25rem;
    padding-inline: 4rem;
    font-size: 1.5rem;
  }
}

.c-breadcrumbs a {
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-breadcrumbs a:hover {
    opacity: 0.5;
  }
}

/* 現在ページ（カレント） */
.c-breadcrumbs span:has(.current-item) {
  font-weight: 900;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.c-breadcrumbs .current-item {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis; /* 任意の行数を指定 */
}

/* works_cat アーカイブのカレント（WORKS-{カテゴリ名}）は
   カテゴリ名を自然な大小文字のまま表示する（全体の uppercase を解除） */
.c-breadcrumbs__current--raw {
  text-transform: none;
}

/* ------------------------------------------------
c-page-top
--------------------------------------------------- */
/* ------------------------------------------------
c-page-title 
--------------------------------------------------- */
.c-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 8rem;
  background-image: url("../img/common/bg_page-title-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-page-title {
    height: 18rem;
    background-image: url("../img/common/bg_page-title.webp");
  }
}
.c-page-title h1 {
  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;
}
.c-page-title span {
  display: block;
  color: #000;
  line-height: 1;
}
.c-page-title span:nth-child(1) {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .c-page-title span:nth-child(1) {
    font-size: 8rem;
  }
}
.c-page-title span:nth-child(2) {
  margin-top: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .c-page-title span:nth-child(2) {
    margin-top: 1.2rem;
    font-size: 2rem;
  }
}

/* ------------------------------------------------
c-news-cat（ニュースのカテゴリバッジ：黒矩形＋白英字）
front-page の .p-news__cat と同値（要素併用しても無回帰）
--------------------------------------------------- */
.c-news-cat {
  display: grid;
  place-content: center;
  min-width: 14.7rem;
  height: 1.6rem;
  padding-inline: 1rem;
  padding-top: 0.2rem;
  background-color: #000;
  color: #fff;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .c-news-cat {
    padding-top: 0.1rem;
    min-width: 17.8rem;
    height: 2rem;
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #fff;
  z-index: 800;
  -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 768px) {
  .p-header {
    height: 8rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  max-width: none;
  padding-inline: 0.9rem 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: 4rem;
  }
}

.p-header__logo {
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  width: 12rem;
}
@media only screen and (min-width: 768px) {
  .p-header__logo {
    width: 16.1rem;
  }
}
.p-header__logo img {
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.p-header__logo.is-white img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* nav（PCのみ・ヘッダー高さまでリンク領域を広げる） */
.p-header__nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-header__nav {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-header-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
}

.p-header-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-header-nav__item > a,
.p-header-nav__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
}
.p-header-nav__item > a::before,
.p-header-nav__item > span::before {
  position: absolute;
  content: "";
  top: 69%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0.2rem;
  background-color: #000;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
@media (any-hover: hover) {
  .p-header-nav__item > a:hover::before,
  .p-header-nav__item > span:hover::before {
    width: 100%;
  }
}

.p-header-nav__item > span {
  cursor: default;
}

.p-header-nav__item.is-current > a::before {
  width: 100%;
}

/* サブメニュー（ホバーで開くドロワー） */
.p-header-nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 16rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.5rem 0.25rem rgba(0, 0, 0, 0.25);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (any-hover: hover) {
  .p-header-nav__item--has-sub:hover .p-header-nav__sub {
    opacity: 1;
    visibility: visible;
  }
}
.p-header-nav__item--has-sub:focus-within .p-header-nav__sub {
  opacity: 1;
  visibility: visible;
}
.p-header-nav__item--has-sub.is-open .p-header-nav__sub {
  opacity: 1;
  visibility: visible;
}

.p-header-nav__sub-item a,
.p-header-nav__sub-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  padding-block: 0.8rem;
  padding-inline: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.p-header-nav__sub-item a {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-header-nav__sub-item a:hover {
    background-color: #DADADA;
  }
}
.p-header-nav__sub-item span {
  cursor: default;
}

/* scroll state */
.p-header.is-bg {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #003460;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -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;
  z-index: 900;
  overflow-y: auto;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__inner {
  min-height: 100%;
  padding-block: 0 4rem;
  padding-inline: 2rem;
}

/* head（白ロゴ。上下余白38px） */
.p-drawer__head {
  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-block: 3.8rem 4rem;
}

.p-drawer__logo {
  width: 16.9rem;
}

/* nav */
.p-drawer-nav__item {
  border-bottom: 1px solid #fff;
}
.p-drawer-nav__item:first-child {
  border-top: 1px solid #fff;
}

.p-drawer-nav__bar {
  position: relative;
  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;
}
.p-drawer-nav__bar a,
.p-drawer-nav__bar > span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 2.5rem 2.4rem;
  padding-inline: 2.4rem 2rem;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
}
.p-drawer-nav__bar a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-drawer-nav__bar a:hover {
    opacity: 0.6;
  }
}

/* 直リンク矢印（→ icon_arrow.svg 17×7px） */
.p-drawer-nav__bar--arrow::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  width: 1.7rem;
  height: 0.7rem;
  background: url("../img/common/icon_arrow.svg") center/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* アコーディオン開閉ボタン（padding分だけタップ範囲を拡張。見た目は__iconが担当） */
.p-drawer-nav__toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-block: 2.2rem;
  padding-inline: 2.9rem;
}

/* +/− アイコン（白四角15px + ネイビー線。before/after同設定、片方90度→開で戻す） */
.p-drawer-nav__icon {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
}
.p-drawer-nav__icon::before, .p-drawer-nav__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  border-top: 0.2rem solid #003460;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-drawer-nav__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-drawer-nav__item.is-open .p-drawer-nav__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

/* 子メニュー（仕切り直し: p-drawer-sub） */
.p-drawer-nav__sub {
  display: none;
  padding-block: 0 1.6rem;
}

.p-drawer-sub__item a {
  position: relative;
  display: block;
  padding-block: 1.7rem;
  padding-inline: 5.4rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-drawer-sub__item a:hover {
    opacity: 0.6;
  }
}
.p-drawer-sub__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  width: 1.7rem;
  height: 0.7rem;
  background: url("../img/common/icon_arrow.svg") center/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 左カラム info の固定幅（PC・コンテンツ幅120rem内）。
   info をこの幅にすることで右カラム nav（ナビ列＋サイトマップ）の開始位置を固定し、
   info↔nav の余白を確保する。ナビ列とサイトマップは同じ nav 内なので左端は自動で揃う。 */
/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  background-color: #003460;
  color: #fff;
}

.p-footer__inner {
  padding-block: 1.8rem 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__inner {
    position: relative;
    padding-bottom: 4.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-footer__inner {
    padding-block: 3.4rem 2.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 34.1rem;
  }
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-footer__logo {
  width: 15.7rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__logo {
    width: 26.9rem;
  }
}
.p-footer__logo {
  /* トップページへのリンク。img(width:100%)を正しく内包させるため block 化 */
}
.p-footer__logo a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.6;
  }
}

.p-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__address {
    gap: 2rem;
    margin-top: 3.8rem;
  }
}

.p-footer__office {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 768px) {
  .p-footer__office {
    font-size: max(1.4rem, 10px);
    line-height: 1.4285714286;
  }
}
.p-footer__office a {
  color: inherit;
  text-decoration: none;
}

.p-footer__pmark {
  width: 7.9rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__pmark {
    position: absolute;
    top: 6rem;
    right: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6rem;
  }
}

.p-footer-nav__cols {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__cols {
    display: grid;
    grid-template-columns: repeat(4, -webkit-max-content);
    grid-template-columns: repeat(4, max-content);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
    row-gap: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-footer-nav__cols {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.p-footer-nav__head {
  display: inline-block;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__head {
    font-size: max(1.8rem, 11px);
  }
}
@media (any-hover: hover) {
  .p-footer-nav__head:hover {
    opacity: 0.6;
  }
}

.p-footer-nav__head--text {
  cursor: default;
}
@media (any-hover: hover) {
  .p-footer-nav__head--text:hover {
    opacity: 1;
  }
}

.p-footer-nav__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__sub {
    margin-top: 0.4rem;
    gap: max(0.5rem, 5px);
  }
}
.p-footer-nav__sub a,
.p-footer-nav__sub span {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.2rem, 9px);
  line-height: 1;
  color: #fff;
}
.p-footer-nav__sub span {
  cursor: default;
}
.p-footer-nav__sub a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-footer-nav__sub a:hover {
    opacity: 0.6;
  }
}

/* ----- Pマーク＋コピーライト（info 内・最下段） ----- */
@media only screen and (min-width: 768px) {
  .p-footer__copy-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.6rem;
  }
}

.p-footer__copy {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-footer__copy {
    /* SP: コピーライトは従来どおりフッター最下部・中央に配置 */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-footer__copy {
    text-align: left;
    font-size: 1.2rem;
  }
}

/* ----- サイトマップ等のユーティリティリンク（nav 内・最下段） ----- */
.p-footer-nav__util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__util {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    margin-top: 1.6rem;
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__util {
    gap: 2.4rem;
  }
}
.p-footer-nav__util a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__util a {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .p-footer-nav__util a:hover {
    opacity: 0.6;
  }
}

/* ------------------------------------------------
p-pagination（共通ページネーション・使い回し）
WP標準 paginate_links 出力（.page-numbers / .current / .dots）を装飾。
01/02… 数字ボックス40×40 + 省略「…」/ 窓3＋先頭・最終
--------------------------------------------------- */
.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-pagination {
    margin-top: 5.6rem;
  }
}
.p-pagination .page-numbers {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-pagination .current {
  background-color: #000;
  color: #fff;
  cursor: default;
}
@media (any-hover: hover) {
  .p-pagination a.page-numbers:hover {
    background-color: #000;
    color: #fff;
  }
}
.p-pagination .dots {
  width: auto;
  min-width: 2rem;
  background-color: transparent;
  border: none;
}

/* --------------------------------
inview
----------------------------------- */
.js-fadeUp {
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.js-fadeUp.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* page */
/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top {
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-top {
    padding-top: 8rem;
  }
}

.p-top__wrap {
  position: relative;
  width: 100%;
  background-color: #ECECEC;
  --mv-pg-color: #000;
  --mv-pg-size: 10px;
  --mv-pg-gap: 8px;
  --mv-pg-space: 16px;
}
@media only screen and (min-width: 768px) {
  .p-top__wrap {
    --mv-pg-size: 12px;
    --mv-pg-gap: 12px;
    --mv-pg-space: 20px;
  }
}

.p-top-mv__pagination.swiper-pagination .swiper-pagination-bullet {
  border: none !important;
}

/* ------------------------------------------------
p-top-mv
--------------------------------------------------- */
.p-top-mv {
  background-color: #fff;
}

.p-top-mv__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__slider {
    aspect-ratio: 1920/800;
  }
}

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

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

.p-top-mv__pagination.swiper-pagination {
  position: static;
  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;
  gap: var(--mv-pg-gap);
  width: 100%;
  margin-top: var(--mv-pg-space);
}
.p-top-mv__pagination.swiper-pagination .swiper-pagination-bullet {
  width: var(--mv-pg-size);
  height: var(--mv-pg-size);
  margin: 0 !important;
  background-color: #fff;
  border: 1px solid var(--mv-pg-color);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-top-mv__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--mv-pg-color);
}

.p-top-mv__slider:not(.swiper-initialized) .p-top-mv__blade,
.p-top-mv__slider:not(.swiper-initialized) .p-top-mv__en span,
.p-top-mv__slider:not(.swiper-initialized) .p-top-mv__ja span {
  opacity: 0;
}

.p-top-mv__blade {
  position: absolute;
  top: -9%;
  left: -18.5%;
  width: 173.75%;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__blade {
    top: -9.31%;
    left: 31.85%;
    width: 80%;
  }
}
.p-top-mv__blade img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__blade {
  -webkit-animation: mv-blade-in 7s cubic-bezier(0.11, 0, 0.5, 0) 0.4s both, mv-blade-fade 1.125s ease-out 0.4s both;
          animation: mv-blade-in 7s cubic-bezier(0.11, 0, 0.5, 0) 0.4s both, mv-blade-fade 1.125s ease-out 0.4s both;
}

.p-top-mv__catch {
  position: absolute;
  inset: 0;
}

.p-top-mv__en {
  position: absolute;
  top: 5.25%;
  left: 7.75%;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15vw;
  line-height: 1.25;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__en {
    top: 36.13%;
    left: 10.57%;
    font-size: 6.25vw;
    line-height: 1;
    white-space: nowrap;
  }
}
.p-top-mv__en span {
  display: block;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__en span {
    display: inline-block;
  }
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__en span {
  -webkit-animation: mv-word-in 1s ease-out both;
          animation: mv-word-in 1s ease-out both;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__en span:nth-child(1) {
  -webkit-animation-delay: 1.792s;
          animation-delay: 1.792s;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__en span:nth-child(2) {
  -webkit-animation-delay: 2.49s;
          animation-delay: 2.49s;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__en span:nth-child(3) {
  -webkit-animation-delay: 3.51s;
          animation-delay: 3.51s;
}

.p-top-mv__ja {
  position: absolute;
  top: 82.75%;
  left: 7.75%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5.5vw;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-top-mv__ja {
    top: 54.37%;
    left: 10.57%;
    font-size: 2.0833333333vw;
  }
}
.p-top-mv__ja span {
  display: inline-block;
  opacity: 1;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__ja span {
  -webkit-animation: mv-word-in 1s ease-out both;
          animation: mv-word-in 1s ease-out both;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__ja span:nth-child(1) {
  -webkit-animation-delay: 4.84s;
          animation-delay: 4.84s;
}

.p-top-mv__slide.swiper-slide-active .p-top-mv__ja span:nth-child(2) {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

@-webkit-keyframes mv-word-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mv-word-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mv-blade-in {
  from {
    -webkit-transform: scale(0.4) rotate(-600deg);
            transform: scale(0.4) rotate(-600deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
@keyframes mv-blade-in {
  from {
    -webkit-transform: scale(0.4) rotate(-600deg);
            transform: scale(0.4) rotate(-600deg);
  }
  to {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
@-webkit-keyframes mv-blade-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mv-blade-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-top-mv__blade,
  .p-top-mv__slide.swiper-slide-active .p-top-mv__blade,
  .p-top-mv__en span,
  .p-top-mv__slide.swiper-slide-active .p-top-mv__en span,
  .p-top-mv__ja span,
  .p-top-mv__slide.swiper-slide-active .p-top-mv__ja span {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .p-top-mv__slider:not(.swiper-initialized) .p-top-mv__blade,
  .p-top-mv__slider:not(.swiper-initialized) .p-top-mv__en span,
  .p-top-mv__slider:not(.swiper-initialized) .p-top-mv__ja span {
    opacity: 1;
  }
}
/* ------------------------------------------------
p-top-news
--------------------------------------------------- */
.p-top-news {
  background-color: #ECECEC;
  padding-block: 3.8rem 4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-news {
    padding-block: 2.9rem 6.1rem;
    padding-block: 6rem 6.1rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-top-news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

/* 見出し＋一覧リンク（SP: 横並び・PC: 左カラム縦） */
.p-top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  .p-top-news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 48rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-top-news__title {
    margin-left: 19.5rem;
  }
}

/* 一覧リンクは c-more-btn を使用。ここでは位置のみ調整 */
@media only screen and (min-width: 768px) {
  .p-top-news__more {
    margin-top: auto;
    margin-left: 34.6rem;
  }
}

/* 記事リスト */
.p-top-news__list {
  margin-top: 3.3rem;
}
@media only screen and (min-width: 768px) {
  .p-top-news__list {
    margin-top: 2.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* ------------------------------------------------
p-news
--------------------------------------------------- */
.p-news__item {
  border-top: 1px solid #000;
}

.p-news__item:last-child {
  border-bottom: 1px solid #000;
}

.p-news__link {
  display: block;
  position: relative;
  padding-block: 1.5rem;
  padding-right: 4.4rem;
}
@media only screen and (min-width: 768px) {
  .p-news__link {
    padding-block: 1.4rem;
  }
}

.p-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.p-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #000;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-news__date {
    font-size: 1.6rem;
  }
}

.p-news__cat {
  display: grid;
  place-content: center;
  min-width: 14.7rem;
  height: 1.6rem;
  padding-inline: 1rem;
  background-color: #000;
  color: #fff;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .p-news__cat {
    min-width: 17.8rem;
    height: 2rem;
    font-size: 1.6rem;
  }
}

.p-news__title {
  margin-top: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.6rem;
    -webkit-line-clamp: 1;
  }
}

/* 矢印は c-arrow（丸＋SVG矢印・hover反転）を使用。ここでは位置のみ */
.p-news__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ------------------------------------------------
p-top-works
--------------------------------------------------- */
.p-top-works {
  background-color: #fff;
  padding-block: 4rem 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-works {
    padding-block: 2.4rem 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-works {
    padding-block: 5.7rem 10.7rem;
  }
}

/* ------------------------------------------------
各カテゴリ
--------------------------------------------------- */
.p-top-works-cat {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat {
    margin-top: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat {
    margin-top: 7.6rem;
  }
}

.p-top-works-cat__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat__head {
    display: block;
    position: relative;
    padding-bottom: 0.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__head {
    padding-bottom: 1rem;
  }
}

/* タイトルの並び順（トップのみ）: EN → 日本語 → タグ。
   PCはEN横にタグ・日本語はENの下、SPはEN → 日本語 → タグの縦積み。 */
.p-top-works-cat .p-works-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat .p-works-title {
    -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;
  }
}

.p-top-works-cat .p-works-title__en {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-works-cat .p-works-title__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat .p-works-title__tags {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-top-works-cat .p-works-title__jp {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat .p-works-title__jp {
    width: 100%; /* タグの後ろに回さずENの下へ改行 */
  }
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat .p-works-title__jp {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* 一覧リンク（c-more-btn）はdivで包んで位置管理。
   PCは右下、SPはタグ行の横に絶対配置。 */
@media only screen and (max-width: 767px) {
  .p-top-works-cat__more {
    position: absolute;
    right: 0;
    bottom: 0.9rem;
  }
}

/* ------------------------------------------------
カードカルーセル
--------------------------------------------------- */
.p-top-works-cat__body {
  position: relative;
  margin-top: 2rem;
  padding-inline: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat__body {
    margin-top: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__body {
    margin-top: 2.5rem;
    padding-inline: 0;
  }
}

.p-top-works-cat__slider {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__slider {
    max-width: 108rem;
    margin-inline: auto;
  }
}

/* スライダー矢印は c-arrow（news と同じ・hover反転）を使用。位置のみ */
.p-top-works-cat__nav {
  position: absolute;
  top: 4.5rem;
  z-index: 2;
  /* SPはfont-sizeが400〜767pxで固定になりremが追従しないため、
     画像（aspect 240:135・slidesPerView2・gap20）の上下中央をvwで算出して合わせる */
}
@media only screen and (max-width: 767px) {
  .p-top-works-cat__nav {
    top: calc((100vw - 104px) / 2 * 135 / 240 / 2);
  }
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__nav {
    top: 6.75rem;
  }
}

.p-top-works-cat__nav--prev {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__nav--prev {
    left: calc(2.439vw - 14.7317px);
  }
}
@media only screen and (min-width: 1260px) {
  .p-top-works-cat__nav--prev {
    left: 1.6rem;
  }
}

.p-top-works-cat__nav--prev .c-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-top-works-cat__nav--next {
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .p-top-works-cat__nav--next {
    right: calc(2.439vw - 14.7317px);
  }
}
@media only screen and (min-width: 1260px) {
  .p-top-works-cat__nav--next {
    right: 1.6rem;
  }
}

/* ------------------------------------------------
カード
--------------------------------------------------- */
.p-works-card {
  width: 100%;
}

.p-works-card__link {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-works-card__link:hover {
    opacity: 0.7;
  }
}

.p-works-card__thumb {
  display: block;
  aspect-ratio: 240/135;
  overflow: hidden;
}
.p-works-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-card__title {
  display: -webkit-box;
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  color: #000;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-works-card__title {
    margin-top: 0.7rem;
    line-height: 1.7142857143;
  }
}

/* ------------------------------------------------
p-works-brand（Brand & E-Commerce・別構成）
--------------------------------------------------- */
.p-works-brand {
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-works-brand {
    margin-top: 7.6rem;
  }
}

.p-works-brand__head {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 2.4rem;
  }
}

.p-works-brand__title span {
  display: block;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__title span {
    font-size: 6rem;
    letter-spacing: 0;
  }
}
.p-works-brand__title small {
  display: block;
  margin-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__title small {
    font-size: 1.6rem;
  }
}

.p-works-brand__lead {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__lead {
    margin-top: 0;
    max-width: 48.9rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: center;
  }
}

.p-works-brand__body {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.2rem;
    margin-top: 2.5rem;
  }
}

.p-works-brand__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__photos {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 3.1rem;
  }
}

.p-works-brand__photo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 400/135;
  overflow: hidden;
}
.p-works-brand__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-brand__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-works-brand__links {
    margin-top: 0;
    width: 36.8rem;
  }
}
.p-works-brand__links li {
  width: 100%;
}
.p-works-brand__links a {
  width: 100%;
}

/* ------------------------------------------------
p-about (共通)
--------------------------------------------------- */
/* ------------------------------------------------
p-about-vision
--------------------------------------------------- */
.p-about-vision {
  padding-block: 2.7rem 10rem;
}
@media only screen and (min-width: 768px) {
  .p-about-vision {
    padding-block: 6.7rem 15.3rem;
  }
}

.p-about-vision__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__catch {
    font-size: 3.2rem;
    line-height: 1.6;
  }
}

.p-about-vision__text {
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__text {
    margin-top: 3.7rem;
    margin-inline: auto;
  }
}
.p-about-vision__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__text p {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.p-about-vision__text p + p {
  margin-top: 2.6rem;
}

.p-about-vision__sign {
  margin-top: 10rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.625;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__sign {
    margin-top: 4rem;
    margin-top: 12.9rem;
    font-size: 1.6rem;
  }
}

.p-about-vision__title {
  margin-top: 7.8rem;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__title {
    margin-top: 8rem;
  }
}

.p-about-vision__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.3rem;
  margin-top: 1.1rem;
}
@media only screen and (min-width: 768px) {
  .p-about-vision__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 5.5rem;
    max-width: 105.5rem;
    margin-inline: auto;
    margin-top: 1.4rem;
  }
}

/* ------------------------------------------------
p-vision-card
--------------------------------------------------- */
.p-vision-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 2rem 2.1rem;
  padding-inline: 1.9rem;
  background-color: #fff;
  border: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-vision-card {
    padding-block: 2.8rem 2.4rem;
    padding-inline: 2.7rem;
    min-height: 28.1rem;
  }
}

.p-vision-card__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1.0833333333;
}

.p-vision-card__text {
  margin-top: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6875;
}
@media only screen and (min-width: 768px) {
  .p-vision-card__text {
    margin-top: 1.1rem;
    font-size: 1.8rem;
    line-height: 1.7222222222;
  }
}

.p-vision-card__name {
  margin-top: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .p-vision-card__name {
    margin-top: 1.9rem;
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-about-company
--------------------------------------------------- */
.p-about-company {
  padding-bottom: 3.8rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2.8rem, #fff), color-stop(2.8rem, #ECECEC));
  background: linear-gradient(180deg, #fff 2.8rem, #ECECEC 2.8rem);
}
@media only screen and (min-width: 768px) {
  .p-about-company {
    padding-bottom: 9.4rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5.6rem, #fff), color-stop(5.6rem, #ECECEC));
    background: linear-gradient(180deg, #fff 5.6rem, #ECECEC 5.6rem);
  }
}

.p-about-company__title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-about-company__list {
  margin-top: 3.9rem;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-about-company__list {
    max-width: 800px;
    margin-top: 5.2rem;
  }
}

.p-about-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  border-top: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-about-company__row {
    padding-block: 1.3rem;
    padding-inline: 1.4rem;
  }
}
.p-about-company__row dt {
  width: 13.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.625;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-about-company__row dt {
    font-size: 1.6rem;
    width: 19.8rem;
  }
}
.p-about-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.625;
}
@media only screen and (min-width: 768px) {
  .p-about-company__row dd {
    font-size: 1.6rem;
  }
}
.p-about-company__row dd a {
  color: #000;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-about-company__row dd a:hover {
    opacity: 0.5;
  }
}

.p-about-company__row--last {
  border-bottom: 1px solid #000;
}

/* ------------------------------------------------
p-about-access
--------------------------------------------------- */
.p-about-access {
  padding-block: 6rem 7.3rem;
}
@media only screen and (min-width: 768px) {
  .p-about-access {
    padding-block: 7.6rem 11.2rem;
  }
}

.p-about-access__title {
  text-align: center;
}

.p-about-access__locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.3rem;
  margin-top: 4.2rem;
}
@media only screen and (min-width: 768px) {
  .p-about-access__locations {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.8rem;
    max-width: 120.1rem;
    margin-inline: auto;
    margin-top: 4.1rem;
  }
}

/* ------------------------------------------------
p-access-place
--------------------------------------------------- */
.p-access-place__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .p-access-place__name {
    font-size: 1.8rem;
  }
}

.p-access-place__address {
  margin-top: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .p-access-place__address {
    margin-top: -0.3rem;
    font-size: 1.8rem;
  }
}

.p-access-place__map {
  margin-top: 1.9rem;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 360/205;
}
@media only screen and (min-width: 768px) {
  .p-access-place__map {
    aspect-ratio: 565/322;
  }
}
.p-access-place__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-access-place__near {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6428571429;
}
@media only screen and (min-width: 768px) {
  .p-access-place__near {
    margin-top: 0.7rem;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}

/* ------------------------------------------------
p-service
--------------------------------------------------- */
.p-service__container {
  padding-block: 2rem 4.1rem;
}
@media only screen and (min-width: 768px) {
  .p-service__container {
    padding-block: 5.6rem 4rem;
  }
}

/* ------------------------------------------------
p-service-head（リード見出し＋本文）
--------------------------------------------------- */
.p-service-head {
  text-align: center;
}

.p-service-head__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-service-head__en {
    font-size: 5rem;
  }
}

.p-service-head__text {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-service-head__text {
    margin-top: 0.7rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

/* ------------------------------------------------
p-service-stage（PC：回転アニメーション）
--------------------------------------------------- */
.p-service-stage {
  margin-top: 3rem;
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  aspect-ratio: 1200/800;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-service-stage {
    margin-top: 4.2rem;
  }
}

.p-service-stage__rotor {
  position: absolute;
  inset: 0;
}

/* ================================================
p-service-tri（中央トライフォース：3枚が120°配置で回転＋伸縮）
service-anime.html 準拠：rotor が -90° ステップ回転、各 move で square が縮み
shape は逆スケールでサイズ一定（位置だけ中心へ寄る）
================================================ */
.p-service-stage__triangle {
  position: absolute;
  left: 49.96%;
  top: 35.25%;
  width: 61%;
  aspect-ratio: 1/1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: triMove 18s infinite;
          animation: triMove 18s infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.p-service-tri__rotor {
  position: absolute;
  inset: 0;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: triSpin 18s infinite;
          animation: triSpin 18s infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.p-service-tri__unit {
  position: absolute;
  inset: 0;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.p-service-tri__unit--1 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-service-tri__unit--2 {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}

.p-service-tri__unit--3 {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
}

.p-service-tri__square {
  position: absolute;
  left: 31.35%;
  top: 23.45%;
  width: 37.7%;
  height: 37.7%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: triShrink 18s infinite;
          animation: triShrink 18s infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.p-service-tri__shape {
  position: absolute;
  left: -83.16%;
  top: -62.2%;
  width: 265.25%;
  height: 265.25%;
  clip-path: polygon(50.2% 93.8%, 31.3% 61.2%, 69% 61.2%);
  -webkit-transform-origin: 50.17% 72.07%;
          transform-origin: 50.17% 72.07%;
  -webkit-animation: triKeep 18s infinite;
          animation: triKeep 18s infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.p-service-tri__unit--1 .p-service-tri__shape {
  background-color: #FBF1FF;
}

.p-service-tri__unit--2 .p-service-tri__shape {
  background-color: #DFE3FE;
}

.p-service-tri__unit--3 .p-service-tri__shape {
  background-color: #E2F4FC;
}

/* コンテンツ群レイヤー：各要素は正立のままデザイン4状態(V1→V2→V3→V4)の位置を巡る。
   三角形(triSpin)と同一 18s・同一タイミングで hold→move し、見た目を動画に合わせる */
.p-service-stage__content {
  position: absolute;
  inset: 0;
}

/* テキストユニット（正立のまま位置を移動） */
.p-service-stage__unit {
  position: absolute;
  text-align: center;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.p-service-stage__unit--space {
  left: 7.25%;
  top: 12.38%;
  width: 28%;
  -webkit-animation-name: spaceMove;
          animation-name: spaceMove;
}

.p-service-stage__unit--exp {
  left: 58.42%;
  top: 11.62%;
  width: 34.25%;
  -webkit-animation-name: expMove;
          animation-name: expMove;
}

.p-service-stage__unit--comm {
  left: 24.33%;
  top: 51.25%;
  width: 50.92%;
  -webkit-animation-name: commMove;
          animation-name: commMove;
}

.p-service-stage__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.p-service-stage__unit--space .p-service-stage__en {
  font-size: 7rem;
  color: #9B89C0;
}

.p-service-stage__unit--exp .p-service-stage__en {
  font-size: 6.5rem;
  color: #7CC1FE;
}

.p-service-stage__unit--comm .p-service-stage__en {
  font-size: 5.5rem;
  letter-spacing: -0.03em;
  color: #EFBADF;
}

.p-service-stage__sub {
  margin-top: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
}

.p-service-stage__unit--space .p-service-stage__sub {
  color: #9B89C0;
}

.p-service-stage__unit--exp .p-service-stage__sub {
  color: #7CC1FE;
}

.p-service-stage__unit--comm .p-service-stage__sub {
  color: #EFBADF;
}

.p-service-stage__job {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}

.p-service-stage__text {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #000;
}

.p-service-stage__illust {
  margin-top: 1.6rem;
  margin-inline: auto;
}
.p-service-stage__illust img {
  width: 100%;
  height: 100%;
}

.p-service-stage__illust--space {
  width: 60.12%;
  aspect-ratio: 202/101.842;
}

.p-service-stage__illust--exp {
  width: 49.88%;
  aspect-ratio: 206.622/144.618;
}

.p-service-stage__illust--comm {
  width: 35.35%;
  aspect-ratio: 217.215/120.269;
}

/* カテゴリタグ（親div=位置・移動／中の a=works_catアーカイブへのリンクボックス） */
.p-service-stage__tag {
  position: absolute;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.p-service-stage__tag a {
  display: inline-block;
  padding-block: 0.2rem;
  padding-inline: 0.9rem;
  background-color: #fff;
  border: 1px solid #000;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.25;
  white-space: nowrap;
  color: #000;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .p-service-stage__tag a:hover {
    background-color: #000;
    color: #fff;
  }
}

.p-service-stage__tag--event {
  left: 30%;
  top: 4.75%;
  -webkit-animation-name: tagEventMove;
          animation-name: tagEventMove;
}

.p-service-stage__tag--space {
  left: 54.17%;
  top: 4.75%;
  -webkit-animation-name: tagSpaceMove;
          animation-name: tagSpaceMove;
}

.p-service-stage__tag--graphics {
  left: 20.83%;
  top: 66.13%;
  -webkit-animation-name: tagGraphicsMove;
          animation-name: tagGraphicsMove;
}

.p-service-stage__tag--film {
  left: 70.92%;
  top: 66%;
  -webkit-animation-name: tagFilmMove;
          animation-name: tagFilmMove;
}

.p-service-stage__tag--web {
  left: 47.17%;
  top: 92.75%;
  -webkit-animation-name: tagWebMove;
          animation-name: tagWebMove;
}

/* 三角形は回転・テキストは正立：rotor は反時計、コンテンツは時計回りで相殺 */
@-webkit-keyframes triSpin {
  0%, 16.667% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25%, 41.667% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  50%, 66.667% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  75%, 91.667% {
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes triSpin {
  0%, 16.667% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25%, 41.667% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  50%, 66.667% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  75%, 91.667% {
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes triShrink {
  0%, 16.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  25%, 41.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  50%, 66.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  75%, 91.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes triShrink {
  0%, 16.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  25%, 41.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  50%, 66.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  75%, 91.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95.83% {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes triKeep {
  0%, 16.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  25%, 41.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  50%, 66.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  75%, 91.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes triKeep {
  0%, 16.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  25%, 41.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  50%, 66.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  75%, 91.667% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95.83% {
    -webkit-transform: scale(1.2821);
            transform: scale(1.2821);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes triMove {
  0%, 16.667% {
    left: 49.96%;
    top: 35.25%;
  }
  25%, 41.667% {
    left: 47.83%;
    top: 44.75%;
  }
  50%, 66.667% {
    left: 50%;
    top: 59.25%;
  }
  75%, 91.667% {
    left: 52.17%;
    top: 44.63%;
  }
  100% {
    left: 49.96%;
    top: 35.25%;
  }
}
@keyframes triMove {
  0%, 16.667% {
    left: 49.96%;
    top: 35.25%;
  }
  25%, 41.667% {
    left: 47.83%;
    top: 44.75%;
  }
  50%, 66.667% {
    left: 50%;
    top: 59.25%;
  }
  75%, 91.667% {
    left: 52.17%;
    top: 44.63%;
  }
  100% {
    left: 49.96%;
    top: 35.25%;
  }
}
@-webkit-keyframes spaceMove {
  0%, 16.667% {
    left: 7.25%;
    top: 12.38%;
  }
  25%, 41.667% {
    left: 16%;
    top: 56.38%;
  }
  50%, 66.667% {
    left: 64.67%;
    top: 52.5%;
  }
  75%, 91.667% {
    left: 56.58%;
    top: 3.75%;
  }
  100% {
    left: 7.25%;
    top: 12.38%;
  }
}
@keyframes spaceMove {
  0%, 16.667% {
    left: 7.25%;
    top: 12.38%;
  }
  25%, 41.667% {
    left: 16%;
    top: 56.38%;
  }
  50%, 66.667% {
    left: 64.67%;
    top: 52.5%;
  }
  75%, 91.667% {
    left: 56.58%;
    top: 3.75%;
  }
  100% {
    left: 7.25%;
    top: 12.38%;
  }
}
@-webkit-keyframes expMove {
  0%, 16.667% {
    left: 58.42%;
    top: 11.62%;
  }
  25%, 41.667% {
    left: 11.25%;
    top: 4.5%;
  }
  50%, 66.667% {
    left: 5.08%;
    top: 53.87%;
  }
  75%, 91.667% {
    left: 55.33%;
    top: 55.88%;
  }
  100% {
    left: 58.42%;
    top: 11.62%;
  }
}
@keyframes expMove {
  0%, 16.667% {
    left: 58.42%;
    top: 11.62%;
  }
  25%, 41.667% {
    left: 11.25%;
    top: 4.5%;
  }
  50%, 66.667% {
    left: 5.08%;
    top: 53.87%;
  }
  75%, 91.667% {
    left: 55.33%;
    top: 55.88%;
  }
  100% {
    left: 58.42%;
    top: 11.62%;
  }
}
@-webkit-keyframes commMove {
  0%, 16.667% {
    left: 24.33%;
    top: 51.25%;
  }
  25%, 41.667% {
    left: 47.67%;
    top: 28.13%;
  }
  50%, 66.667% {
    left: 24.33%;
    top: 7.75%;
  }
  75%, 91.667% {
    left: 4.42%;
    top: 31.25%;
  }
  100% {
    left: 24.33%;
    top: 51.25%;
  }
}
@keyframes commMove {
  0%, 16.667% {
    left: 24.33%;
    top: 51.25%;
  }
  25%, 41.667% {
    left: 47.67%;
    top: 28.13%;
  }
  50%, 66.667% {
    left: 24.33%;
    top: 7.75%;
  }
  75%, 91.667% {
    left: 4.42%;
    top: 31.25%;
  }
  100% {
    left: 24.33%;
    top: 51.25%;
  }
}
@-webkit-keyframes tagEventMove {
  0%, 16.667% {
    left: 30%;
    top: 4.75%;
  }
  25%, 41.667% {
    left: 41.17%;
    top: 85.88%;
  }
  50%, 66.667% {
    left: 78.42%;
    top: 42%;
  }
  75%, 91.667% {
    left: 43.08%;
    top: 5.88%;
  }
  100% {
    left: 30%;
    top: 4.75%;
  }
}
@keyframes tagEventMove {
  0%, 16.667% {
    left: 30%;
    top: 4.75%;
  }
  25%, 41.667% {
    left: 41.17%;
    top: 85.88%;
  }
  50%, 66.667% {
    left: 78.42%;
    top: 42%;
  }
  75%, 91.667% {
    left: 43.08%;
    top: 5.88%;
  }
  100% {
    left: 30%;
    top: 4.75%;
  }
}
@-webkit-keyframes tagSpaceMove {
  0%, 16.667% {
    left: 54.17%;
    top: 4.75%;
  }
  25%, 41.667% {
    left: 5%;
    top: 47.25%;
  }
  50%, 66.667% {
    left: 42%;
    top: 85.88%;
  }
  75%, 91.667% {
    left: 79.42%;
    top: 45.62%;
  }
  100% {
    left: 54.17%;
    top: 4.75%;
  }
}
@keyframes tagSpaceMove {
  0%, 16.667% {
    left: 54.17%;
    top: 4.75%;
  }
  25%, 41.667% {
    left: 5%;
    top: 47.25%;
  }
  50%, 66.667% {
    left: 42%;
    top: 85.88%;
  }
  75%, 91.667% {
    left: 79.42%;
    top: 45.62%;
  }
  100% {
    left: 54.17%;
    top: 4.75%;
  }
}
@-webkit-keyframes tagGraphicsMove {
  0%, 16.667% {
    left: 20.83%;
    top: 66.12%;
  }
  25%, 41.667% {
    left: 69.42%;
    top: 72.12%;
  }
  50%, 66.667% {
    left: 69%;
    top: 15.62%;
  }
  75%, 91.667% {
    left: 21.67%;
    top: 19.25%;
  }
  100% {
    left: 20.83%;
    top: 66.12%;
  }
}
@keyframes tagGraphicsMove {
  0%, 16.667% {
    left: 20.83%;
    top: 66.12%;
  }
  25%, 41.667% {
    left: 69.42%;
    top: 72.12%;
  }
  50%, 66.667% {
    left: 69%;
    top: 15.62%;
  }
  75%, 91.667% {
    left: 21.67%;
    top: 19.25%;
  }
  100% {
    left: 20.83%;
    top: 66.12%;
  }
}
@-webkit-keyframes tagFilmMove {
  0%, 16.667% {
    left: 70.92%;
    top: 66%;
  }
  25%, 41.667% {
    left: 56.58%;
    top: 10%;
  }
  50%, 66.667% {
    left: 13%;
    top: 39%;
  }
  75%, 91.667% {
    left: 31.25%;
    top: 76.25%;
  }
  100% {
    left: 70.92%;
    top: 66%;
  }
}
@keyframes tagFilmMove {
  0%, 16.667% {
    left: 70.92%;
    top: 66%;
  }
  25%, 41.667% {
    left: 56.58%;
    top: 10%;
  }
  50%, 66.667% {
    left: 13%;
    top: 39%;
  }
  75%, 91.667% {
    left: 31.25%;
    top: 76.25%;
  }
  100% {
    left: 70.92%;
    top: 66%;
  }
}
@-webkit-keyframes tagWebMove {
  0%, 16.667% {
    left: 47.17%;
    top: 92.75%;
  }
  25%, 41.667% {
    left: 91%;
    top: 43.75%;
  }
  50%, 66.667% {
    left: 25.75%;
    top: 15.25%;
  }
  75%, 91.667% {
    left: 9.08%;
    top: 55.38%;
  }
  100% {
    left: 47.17%;
    top: 92.75%;
  }
}
@keyframes tagWebMove {
  0%, 16.667% {
    left: 47.17%;
    top: 92.75%;
  }
  25%, 41.667% {
    left: 91%;
    top: 43.75%;
  }
  50%, 66.667% {
    left: 25.75%;
    top: 15.25%;
  }
  75%, 91.667% {
    left: 9.08%;
    top: 55.38%;
  }
  100% {
    left: 47.17%;
    top: 92.75%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-service-stage__triangle,
  .p-service-tri__rotor,
  .p-service-tri__square,
  .p-service-tri__shape,
  .p-service-stage__content,
  .p-service-stage__unit,
  .p-service-stage__tag {
    -webkit-animation: none;
            animation: none;
  }
}
/* ================================================
p-service-sp（SP：3サービスをクロスフェード・回転なし）
SMART_ANIMATE 準拠：各サービス3秒表示→0.5s ease-out で次へ。三角形は△固定（色のみローテーション）
================================================ */
.p-service-sp {
  position: relative;
  width: 100%;
  max-width: 36rem;
  margin-top: 3.2rem;
  margin-inline: auto;
  aspect-ratio: 360/400;
  container-type: size;
}

/* 各サービスカード（重ねて opacity でクロスフェード） */
.p-service-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-animation: spServiceFade 10.5s infinite;
          animation: spServiceFade 10.5s infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.p-service-card--space {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-service-card--exp {
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}

.p-service-card--comm {
  -webkit-animation-delay: -3.5s;
          animation-delay: -3.5s;
}

/* △トライフォース三角形（fill のみ・色はサービスごとにローテーション） */
.p-service-card__visual {
  position: absolute;
  left: 1.94%;
  top: 16.75%;
  width: 96.37%;
  aspect-ratio: 346.93/280;
}

.p-service-card--exp .p-service-card__visual {
  top: 13.75%;
}

.p-service-card--comm .p-service-card__visual {
  top: 5.5%;
  aspect-ratio: 346.93/311;
}

.p-service-card__tri {
  position: absolute;
  inset: 0;
}

.p-service-card__tri--top {
  clip-path: polygon(25% 50%, 50% 0, 75% 50%);
}

.p-service-card__tri--br {
  clip-path: polygon(50% 100%, 75% 50%, 100% 100%);
}

.p-service-card__tri--bl {
  clip-path: polygon(0 100%, 25% 50%, 50% 100%);
}

.p-service-card--space .p-service-card__tri--top {
  background-color: #DFE3FE;
}

.p-service-card--space .p-service-card__tri--br {
  background-color: #E2F4FC;
}

.p-service-card--space .p-service-card__tri--bl {
  background-color: #FBF1FF;
}

.p-service-card--exp .p-service-card__tri--top {
  background-color: #E2F4FC;
}

.p-service-card--exp .p-service-card__tri--br {
  background-color: #FBF1FF;
}

.p-service-card--exp .p-service-card__tri--bl {
  background-color: #DFE3FE;
}

.p-service-card--comm .p-service-card__tri--top {
  background-color: #FBF1FF;
}

.p-service-card--comm .p-service-card__tri--br {
  background-color: #DFE3FE;
}

.p-service-card--comm .p-service-card__tri--bl {
  background-color: #E2F4FC;
}

/* イラスト */
.p-service-card__illust {
  position: absolute;
  z-index: 1;
}
.p-service-card__illust img {
  width: 100%;
  height: 100%;
}

.p-service-card--space .p-service-card__illust {
  left: 23.61%;
  top: 58.75%;
  width: 56.11%;
  aspect-ratio: 202/101.842;
}

.p-service-card--exp .p-service-card__illust {
  left: 18.89%;
  top: 55.5%;
  width: 56.94%;
  aspect-ratio: 206.622/144.618;
}

.p-service-card--comm .p-service-card__illust {
  left: 17.5%;
  top: 58%;
  width: 60.12%;
  aspect-ratio: 217.215/120.269;
}

/* テキスト（見出し＋sub＋職種＋説明・中央寄せ） */
.p-service-card__body {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: center;
}

.p-service-card--space .p-service-card__body {
  top: 17.75%;
}

.p-service-card--exp .p-service-card__body {
  top: 14.25%;
}

.p-service-card--comm .p-service-card__body {
  top: 18.5%;
}

.p-service-card__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.p-service-card--space .p-service-card__en {
  font-size: 5rem;
  color: #9B89C0;
}

.p-service-card--exp .p-service-card__en {
  font-size: 5rem;
  color: #7CC1FE;
}

.p-service-card--comm .p-service-card__en {
  font-size: 4rem;
  letter-spacing: -0.03em;
  color: #EFBADF;
}

.p-service-card__sub {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
}

.p-service-card--space .p-service-card__sub {
  color: #9B89C0;
}

.p-service-card--exp .p-service-card__sub {
  color: #7CC1FE;
}

.p-service-card--comm .p-service-card__sub {
  color: #EFBADF;
}

.p-service-card__job {
  margin-top: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}

.p-service-card__text {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #000;
}

/* カテゴリタグ（親div=位置／中の a=works_catアーカイブへのリンク）
   表示時はカード中心(--slide=50%-top%)からフェードインしながら定位置へスライド */
.p-service-card__tag {
  position: absolute;
  z-index: 2;
  -webkit-animation: tagSlide 10.5s infinite;
          animation: tagSlide 10.5s infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
.p-service-card__tag a {
  display: inline-block;
  padding-block: 0.2rem;
  padding-inline: 0.8rem;
  background-color: #fff;
  border: 1px solid #000;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  white-space: nowrap;
  color: #000;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .p-service-card__tag a:hover {
    background-color: #000;
    color: #fff;
  }
}

.p-service-card--space .p-service-card__tag {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-service-card--exp .p-service-card__tag {
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}

.p-service-card--comm .p-service-card__tag {
  -webkit-animation-delay: -3.5s;
          animation-delay: -3.5s;
}

.p-service-card--space .p-service-card__tag--top {
  left: 5.56%;
  top: 6.25%;
  --slide: 43.75cqh;
}

.p-service-card--space .p-service-card__tag--bottom {
  left: 42.22%;
  top: 89%;
  --slide: -39cqh;
}

.p-service-card--exp .p-service-card__tag--top {
  left: 3.89%;
  top: 5%;
  --slide: 45cqh;
}

.p-service-card--exp .p-service-card__tag--bottom {
  left: 37.78%;
  top: 88.75%;
  --slide: -38.75cqh;
}

.p-service-card--comm .p-service-card__tag--top {
  left: 6.94%;
  top: 5.75%;
  --slide: 44.25cqh;
}

.p-service-card--comm .p-service-card__tag--top2 {
  left: 52.78%;
  top: 5.5%;
  --slide: 44.5cqh;
}

.p-service-card--comm .p-service-card__tag--bottom {
  left: 40.56%;
  top: 88.75%;
  --slide: -38.75cqh;
}

/* クロスフェード：各カード3秒表示→0.5s でフェード（10.5s周期・3カード） */
@-webkit-keyframes spServiceFade {
  0% {
    opacity: 1;
    pointer-events: auto;
  }
  28.6% {
    opacity: 1;
    pointer-events: auto;
  }
  33.3% {
    opacity: 0;
    pointer-events: none;
  }
  95.2% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: auto;
  }
}
@keyframes spServiceFade {
  0% {
    opacity: 1;
    pointer-events: auto;
  }
  28.6% {
    opacity: 1;
    pointer-events: auto;
  }
  33.3% {
    opacity: 0;
    pointer-events: none;
  }
  95.2% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: auto;
  }
}
/* タグのスライド：表示中は定位置(0)、非表示中はカード中心(--slide)。
   フェードと同期し「中心→定位置」(表示)／「定位置→中心」(非表示)へ ease-out で移動 */
@-webkit-keyframes tagSlide {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  28.6% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.3% {
    -webkit-transform: translateY(var(--slide, 0));
            transform: translateY(var(--slide, 0));
  }
  95.2% {
    -webkit-transform: translateY(var(--slide, 0));
            transform: translateY(var(--slide, 0));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes tagSlide {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  28.6% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.3% {
    -webkit-transform: translateY(var(--slide, 0));
            transform: translateY(var(--slide, 0));
  }
  95.2% {
    -webkit-transform: translateY(var(--slide, 0));
            transform: translateY(var(--slide, 0));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-service-card,
  .p-service-card__tag {
    -webkit-animation: none;
            animation: none;
  }
  .p-service-card--space {
    opacity: 1;
  }
  .p-service-card--exp,
  .p-service-card--comm {
    opacity: 0;
    pointer-events: none;
  }
}
/* ------------------------------------------------
p-recruit (共通)
--------------------------------------------------- */
.p-recruit {
  padding-bottom: 8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit {
    padding-bottom: 16rem;
  }
}

/* ------------------------------------------------
p-recruit-work
--------------------------------------------------- */
.p-recruit-work {
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-work {
    padding-top: 7.5rem;
  }
}

.p-recruit-work__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-recruit-work__title {
    font-size: 4.2rem;
  }
}

.p-recruit-work__cards {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-work__cards {
    gap: 5rem;
    margin-top: 5.8rem;
  }
}

.p-recruit-work__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-work__photos {
    gap: 7.5rem;
    margin-top: 5rem;
  }
}

.p-recruit-work__photo img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
p-work-card
--------------------------------------------------- */
.p-work-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding-block: 2.4rem;
  padding-inline: 2rem;
  border: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-work-card {
    -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;
    min-height: 25rem;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}

.p-work-card__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-work-card__label {
    width: 50%;
    font-size: 2.6rem;
  }
}

.p-work-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.875;
}
@media only screen and (min-width: 768px) {
  .p-work-card__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 4rem;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-recruit-interview
--------------------------------------------------- */
.p-recruit-interview {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-interview {
    padding-top: 14.7rem;
  }
}

.p-recruit-interview__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-recruit-interview__title {
    font-size: 4.2rem;
  }
}

.p-recruit-interview__items {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-interview__items {
    margin-top: 3.8rem;
  }
}

.p-recruit-interview__item:last-child {
  border-bottom: 1px solid #000;
}

/* ------------------------------------------------
p-interview-item
--------------------------------------------------- */
.p-interview-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding-block: 3rem 4rem;
  border-top: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-interview-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6.2rem;
    padding-block: 4.2rem 6.1rem;
  }
}

.p-interview-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.875;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .p-interview-item__text {
    width: 47%;
    padding-left: 3rem;
    font-size: 1.6rem;
  }
}

.p-interview-item__body {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .p-interview-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6.2rem;
  }
}

.p-interview-item__img {
  width: 17.2rem;
  height: 17.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #d9d9d9;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-interview-item__img {
    margin-inline: 0;
  }
}
.p-interview-item__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
p-interview-flow
--------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .p-interview-flow {
    width: 35.3rem;
  }
}

.p-interview-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.875;
}
@media only screen and (min-width: 768px) {
  .p-interview-flow__title {
    font-size: 1.6rem;
  }
}

.p-interview-flow__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.875;
}
@media only screen and (min-width: 768px) {
  .p-interview-flow__text {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-guidelines（募集要項）
--------------------------------------------------- */
.p-guidelines-main {
  padding-block: 5rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-guidelines-main {
    padding-block: 7.5rem 10rem;
  }
}

.p-guidelines-main__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-guidelines-main__title {
    font-size: 4.2rem;
  }
}

.p-guidelines-main__list {
  display: grid;
  gap: 8rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-guidelines-main__list {
    gap: 16rem;
    margin-top: 6.5rem;
  }
}

/* ------------------------------------------------
p-recruit-block（募集1件＝職種ごと）
--------------------------------------------------- */
.p-recruit-block__head {
  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;
  min-height: 4.4rem;
  padding-block: 0.8rem;
  padding-inline: 1.5rem;
  background-color: #fff;
  border: 1px solid #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-recruit-block__head {
    min-height: 5rem;
    font-size: 2.6rem;
  }
}

.p-recruit-block__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-recruit-block__note {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-recruit-table（募集項目テーブル）
--------------------------------------------------- */
.p-recruit-table {
  margin-top: 2.4rem;
  border-bottom: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-recruit-table {
    max-width: 80rem;
    margin-inline: auto;
    margin-top: 4.6rem;
  }
}

.p-recruit-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  padding-block: 1.6rem;
  border-top: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-recruit-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6rem;
    padding-block: 1.3rem;
    padding-inline: 1.4rem;
  }
}
.p-recruit-table__row dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .p-recruit-table__row dt {
    width: 12.3rem;
    font-size: 1.6rem;
  }
}
.p-recruit-table__row dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.625;
}
@media only screen and (min-width: 768px) {
  .p-recruit-table__row dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-entry（採用エントリーフォーム）
FV は共通 c-page-title（RECRUIT / 採用情報）。
フォーム本体は contact の採用フォームと共通の .p-form を流用する。
--------------------------------------------------- */
/* ------------------------------------------------
p-entry（エントリーフォーム本体）
--------------------------------------------------- */
.p-entry {
  padding-block: 5rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-entry {
    padding-block: 7.5rem 10rem;
  }
}

.p-entry__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-entry__title {
    font-size: 4.2rem;
  }
}

.p-entry__form {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__form {
    margin-top: 6rem;
  }
}

.p-entry__notice {
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #E50D0D;
}

/* ------------------------------------------------
p-site-policy（共通）
--------------------------------------------------- */
/* ------------------------------------------------
p-site-policy-body
--------------------------------------------------- */
.p-site-policy__container {
  padding-block: 4rem 8rem;
}
@media only screen and (min-width: 768px) {
  .p-site-policy__container {
    padding-block: 6.3rem 12rem;
  }
}

.p-site-policy-body__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .p-site-policy-body__lead {
    font-size: 1.5rem;
  }
}

.p-site-policy-body__block {
  margin-top: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .p-site-policy-body__block {
    margin-top: 4rem;
  }
}

.p-site-policy-body__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
@media only screen and (min-width: 768px) {
  .p-site-policy-body__heading {
    font-size: 1.8rem;
  }
}

.p-site-policy-body__text {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .p-site-policy-body__text {
    font-size: 1.5rem;
  }
}

.p-site-policy-body__list {
  margin-top: 1rem;
  padding-left: 2.2rem;
}
.p-site-policy-body__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  list-style: disc;
}
@media only screen and (min-width: 768px) {
  .p-site-policy-body__list li {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
p-sitemap（共通）
--------------------------------------------------- */
/* ------------------------------------------------
p-sitemap-body
--------------------------------------------------- */
.p-sitemap-body {
  padding-block: 4rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-sitemap-body {
    padding-block: 6rem 8rem;
  }
}

/* ------------------------------------------------
p-sitemap-nav（サイトマップ本体・カラム）
--------------------------------------------------- */
.p-sitemap-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .p-sitemap-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-sitemap-nav__head {
  display: inline-block;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-sitemap-nav__head:hover {
    opacity: 0.6;
  }
}

/* リンク先が無い見出し（span 出力）はホバー無効 */
.p-sitemap-nav__head--text {
  cursor: default;
}
@media (any-hover: hover) {
  .p-sitemap-nav__head--text:hover {
    opacity: 1;
  }
}

.p-sitemap-nav__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.2rem;
  margin-top: 2.4rem;
  padding-left: 1.2rem;
  border-left: 1px solid #9f9f9f;
}
.p-sitemap-nav__sub a,
.p-sitemap-nav__sub span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}
.p-sitemap-nav__sub a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-sitemap-nav__sub a:hover {
    opacity: 0.6;
  }
}

/* ------------------------------------------------
p-privacy-policy （個人情報保護方針 / PRIVACY POLICY）
--------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .p-privacy-policy__fv span:nth-child(1) {
    font-size: 2.4rem;
  }
}

.p-privacy-policy__container {
  padding-block: 3rem 5rem;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__container {
    padding-block: 6.2rem 13.3rem;
  }
}

.p-privacy-policy__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__lead p {
    font-size: 1.5rem;
  }
}

.p-privacy-policy__lead p + p {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__lead p + p {
    margin-top: 3rem;
  }
}

.p-privacy-policy__items {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__items {
    margin-top: 5rem;
  }
}

.p-privacy-policy__item + .p-privacy-policy__item {
  margin-top: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__item + .p-privacy-policy__item {
    margin-top: 4rem;
  }
}

.p-privacy-policy__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__title {
    font-size: 1.8rem;
  }
}

.p-privacy-policy__text {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__text {
    font-size: 1.5rem;
  }
}

.p-privacy-policy__sign {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-privacy-policy__sign {
    margin-top: 9rem;
    font-size: 1.5rem;
    text-align: right;
  }
}
.p-privacy-policy__sign p + p {
  margin-top: 3rem;
}
.p-privacy-policy__sign span {
  font-weight: 500;
}

/* ------------------------------------------------
p-personal-information （個人情報の取扱いについて）
--------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .p-personal-information__fv span:nth-child(1) {
    font-size: 2.4rem;
  }
}

.p-personal-information__container {
  padding-block: 3rem 5rem;
}
@media only screen and (min-width: 768px) {
  .p-personal-information__container {
    padding-block: 5.6rem 9.3rem;
  }
}

.p-personal-information__item + .p-personal-information__item {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-personal-information__item + .p-personal-information__item {
    margin-top: 6.9rem;
  }
}

/* ------------------------------------------------
p-policy-section （個人情報ページの大項目ブロック）
--------------------------------------------------- */
.p-policy-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__title {
    font-size: 1.8rem;
  }
}

.p-policy-section__lead {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__lead {
    margin-top: 1.4rem;
    font-size: 1.5rem;
  }
}

.p-policy-section__items {
  margin-top: 3rem;
}

.p-policy-section__item + .p-policy-section__item {
  margin-top: 3rem;
}

.p-policy-section__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__subtitle {
    font-size: 1.5rem;
  }
}

.p-policy-section__text {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__text {
    font-size: 1.5rem;
  }
}

.p-policy-section__note {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__note {
    font-size: 1.5rem;
  }
}

.p-policy-section__list {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__list {
    font-size: 1.5rem;
  }
}
.p-policy-section__list dt {
  font-weight: 400;
}
.p-policy-section__list dd {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.p-policy-section__list dd + dt {
  margin-top: 1rem;
}

.p-policy-section__measures {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
  list-style: none;
  counter-reset: measures;
}
@media only screen and (min-width: 768px) {
  .p-policy-section__measures {
    font-size: 1.5rem;
  }
}
.p-policy-section__measures li {
  -webkit-padding-start: 2em;
          padding-inline-start: 2em;
  text-indent: -2em;
  counter-increment: measures;
}
.p-policy-section__measures li::before {
  content: "(" counter(measures) ") ";
}

/* ------------------------------------------------
p-ventures （新規事業 / VENTURES）
--------------------------------------------------- */
.p-ventures__body {
  padding-block: 3.5rem 7rem;
}
@media only screen and (min-width: 768px) {
  .p-ventures__body {
    padding-block: 7.3rem 14.7rem;
  }
}

/* ------------------------------------------------
リード文
--------------------------------------------------- */
.p-ventures__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-ventures__lead {
    font-size: 2rem;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 767px) {
  .p-ventures__lead br {
    display: none;
  }
}

/* ------------------------------------------------
事業リスト
--------------------------------------------------- */
.p-ventures__list {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-ventures__list {
    margin-top: 9.9rem;
  }
}

.p-ventures-item + .p-ventures-item {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-ventures-item + .p-ventures-item {
    margin-top: 10.2rem;
  }
}

.p-ventures-item__title {
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-ventures-item__title {
    font-size: 3rem;
  }
}

.p-ventures-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-ventures-item__body {
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.3rem;
    padding-right: 5rem;
  }
}

.p-ventures-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-ventures-item__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.8rem;
    line-height: 1.8888888889;
  }
}
@media only screen and (max-width: 767px) {
  .p-ventures-item__text br {
    display: none;
  }
}

.p-ventures-item__text--regular {
  font-weight: 400;
}

.p-ventures-item__btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-ventures-item__btn {
    margin-top: 2rem;
  }
}

/* ------------------------------------------------
p-news（NEWS一覧アーカイブ）
ヘッダーオフセットは .l-main 共通（padding-top）に依存
--------------------------------------------------- */
.p-news__body {
  padding-block: 4rem 5rem;
}
@media only screen and (min-width: 768px) {
  .p-news__body {
    padding-block: 6.4rem 6rem;
  }
}

.p-news__container {
  max-width: 89rem;
  margin-inline: auto;
}

/* ------------------------------------------------
p-news-filter（カテゴリ絞り込みボタン）
--------------------------------------------------- */
.p-news-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-news-filter {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 3rem;
  }
}

.p-news-filter__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 0.5rem);
          flex: 1 1 calc(50% - 0.5rem);
}
@media only screen and (min-width: 768px) {
  .p-news-filter__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

.p-news-filter__btn {
  display: grid;
  place-content: center;
  width: 100%;
  height: 3rem;
  padding-inline: 0.5rem;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  padding-top: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .p-news-filter__btn {
    font-size: 1.8rem;
    padding-top: 0.2rem;
  }
}
@media (any-hover: hover) {
  .p-news-filter__btn:hover {
    background-color: #000;
    color: #fff;
  }
}

.p-news-filter__btn.is-current {
  background-color: #000;
  color: #fff;
  cursor: default;
}

/* ------------------------------------------------
p-news-list（記事リスト）
--------------------------------------------------- */
.p-news-list {
  margin-top: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-news-list {
    margin-top: 2.4rem;
  }
}

.p-news-list__item {
  border-top: 1px solid #000;
}

.p-news-list__item:last-child {
  border-bottom: 1px solid #000;
}

.p-news-list__link {
  display: block;
  padding-block: 1.7rem 2.4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-news-list__link:hover {
    opacity: 0.6;
  }
}

.p-news-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.p-news-list__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-news-list__date {
    font-size: 1.6rem;
  }
}

.p-news-list__title {
  margin-top: 0.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-news-list__title {
    font-size: 1.6rem;
  }
}

.p-news-list__empty {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-news-list__empty {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-news-detail（NEWS詳細）
--------------------------------------------------- */
.p-news-detail__contents {
  padding-block: 6.5rem 7rem;
  max-width: 890px;
  margin-inline: auto;
}

.p-news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-news-detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__date {
    font-size: 1.6rem;
  }
}

.p-news-detail__title {
  margin-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7916666667;
  color: #000;
  border-bottom: 0.1rem solid #000;
  padding-bottom: 2.1rem;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__title {
    margin-top: 1.5rem;
    font-size: 2.4rem;
    padding-bottom: 2.1rem;
  }
}

/* 本文（the_content：リード文＋ブロックパターン）。記事ヘッダー塊の下罫線をここで表現 */
.p-news-detail__content {
  margin-top: 3.4rem;
}
.p-news-detail__content p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.p-news-detail__content p a {
  color: #003460;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-news-detail__content p a:hover {
    opacity: 0.7;
  }
}
.p-news-detail__content > p {
  margin-block: 3.4rem;
}
.p-news-detail__content h2 {
  font-size: 2.2rem;
  line-height: 1.7;
  font-weight: 500;
  border-left: 0.4rem solid #003460;
  padding-left: 1.6rem;
  margin-block: 4.8rem 3.4rem;
}
.p-news-detail__content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-block: 3.4rem;
  margin-block: 4.8rem 3.4rem;
}
.p-news-detail__content :where(.wp-block-columns) {
  margin-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content :where(.wp-block-columns) {
    margin-block: 6rem;
  }
}
.p-news-detail__content ul {
  padding-left: 2rem;
}
.p-news-detail__content ul li {
  list-style-type: disc;
  list-style-position: outside;
}
.p-news-detail__content ol {
  padding-left: 2rem;
}
.p-news-detail__content ol li {
  list-style-type: decimal;
  list-style-position: outside;
}
.p-news-detail__content li {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-block: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content li {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-news-detail__content .img-2-column {
  gap: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content .img-2-column {
    gap: 5.7rem;
  }
}
.p-news-detail__content .img-text {
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content .img-text {
    gap: 0;
  }
}
.p-news-detail__content .img-text .img-text__img {
  -ms-flex-preferred-size: initial;
      flex-basis: initial;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content .img-text .img-text__img {
    width: 50%;
  }
}
.p-news-detail__content .img-text .img-text__text {
  text-align: justify;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content .img-text .img-text__text--left {
    padding-right: 4.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-news-detail__content .img-text .img-text__text--right {
    padding-left: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail__content .img-text.img-text-sp-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-news-detail__btn {
  margin-top: 6rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-news-detail__btn {
    margin-top: 15rem;
  }
}

/* ------------------------------------------------
p-works-title
--------------------------------------------------- */
.p-works-title__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-works-title__head {
    display: contents;
  }
}

.p-works-title__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-works-title__en {
    font-size: 6rem;
    white-space: nowrap;
  }
}

.p-works-title__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-works-title__tags {
    margin-top: 0;
    padding-bottom: 0.8rem;
  }
}

.p-works-title__tag {
  padding: 0.2rem 0.6rem 0.2rem 0.8rem;
  border: 1px solid currentColor;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-works-title__tag {
    font-size: 2rem;
    padding: 0.3rem 1rem 0.2rem 1.2rem;
  }
}

.p-works-title__tag--space {
  color: #9B89C0;
}

.p-works-title__tag--experience {
  color: #7CC1FE;
}

.p-works-title__tag--communication {
  color: #EFBADF;
  letter-spacing: -0.03em;
}

.p-works-title__jp {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-works-title__jp {
    margin-top: 1.4rem;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-works（
--------------------------------------------------- */
.p-works {
  background-color: #fff;
}

.p-works__inner {
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-works__inner {
    padding-block: 8rem 12.6rem;
  }
}

/* カテゴリ見出し帯（下に仕切り線） */
.p-works__head {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .p-works__head {
    padding-bottom: 1rem;
  }
}

/* カード一覧グリッド（SP2カラム / PC4カラム） */
.p-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  row-gap: 2.8rem;
  margin-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-works__list {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
    row-gap: 4rem;
    margin-top: 2.5rem;
  }
}

.p-works__empty {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-works__empty {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-works-modal
--------------------------------------------------- */
body.is-modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.p-works-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.p-works-modal.is-open {
  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-block: 4.5rem;
  padding-inline: 2rem;
}

.p-works-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-works-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 114rem;
  max-height: 100%;
}

.p-works-modal__close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-works-modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-works-modal__close:hover {
    opacity: 0.7;
  }
}

.p-works-modal__panel {
  max-height: 100%;
  overflow-y: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__panel {
    padding: 3.6rem 3.4rem;
  }
}

.p-works-modal__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: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.4rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-works-modal__media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 77rem;
            flex: 0 0 77rem;
    max-width: 77rem;
  }
}

.p-works-modal__slider {
  aspect-ratio: 770/433;
  overflow: hidden;
}
.p-works-modal__slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-modal__video {
  position: relative;
  aspect-ratio: 770/433;
  overflow: hidden;
  background-color: #000;
}

.p-works-modal__video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  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;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.p-works-modal__video-poster img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-works-modal__video-poster[hidden] {
  display: none;
}

.p-works-modal__video-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 4.6rem;
  height: 5.6rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  pointer-events: none;
  -webkit-box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.5);
}

.p-works-modal__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-works-modal__video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-works-modal__video-frame[hidden] {
  display: none;
}

.p-works-modal__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-works-modal__en {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.1;
  color: #000;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__en {
    font-size: 5rem;
  }
}

.p-works-modal__sub {
  margin-top: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  color: #000;
  -webkit-font-feature-settings: "halt";
          font-feature-settings: "halt";
}
@media only screen and (min-width: 768px) {
  .p-works-modal__sub {
    margin-top: 1.8rem;
    font-size: 2rem;
    line-height: 1.5;
    white-space: nowrap;
  }
}

.p-works-modal__text {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__text {
    margin-top: 4.8rem;
  }
}

.p-works-modal__url {
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  max-width: 100%;
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3333333333;
  color: #000;
  word-break: break-all;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-works-modal__url {
    margin-top: auto;
    padding-top: 2.4rem;
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .p-works-modal__url:hover {
    opacity: 0.7;
  }
}

/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact {
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-contact {
    padding-top: 8rem;
  }
}

.p-contact__fv {
  background-image: url("../img/contact/img_fv.webp");
}

/* ------------------------------------------------
p-contact-body
--------------------------------------------------- */
.p-contact-body {
  padding-block: 4rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-contact-body {
    padding-block: 7.7rem 10rem;
  }
}

/* ------------------------------------------------
p-contact-tabs
--------------------------------------------------- */
.p-contact-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-contact-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10rem;
  }
}
.p-contact-tabs[hidden] {
  display: none !important;
}

.p-contact-tabs__btn {
  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;
  width: 100%;
  min-height: 5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-contact-tabs__btn {
    width: 50rem;
    max-width: 100%;
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .p-contact-tabs__btn:hover {
    background: #000;
    color: #fff;
  }
}

.p-contact-tabs__btn.is-active {
  background: #000;
  color: #fff;
  cursor: default;
}

/* ------------------------------------------------
p-contact-body__panels
--------------------------------------------------- */
.p-contact-body__panels {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-contact-body__panels {
    margin-top: 6rem;
  }
}
.p-contact-body__panels[hidden] {
  display: none !important;
}

.p-contact-body__panel {
  display: none;
}

.p-contact-body__panel.is-active {
  display: block;
}

.p-contact-body__notice {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #E50D0D;
}

/* ------------------------------------------------
p-form （CF7 フォーム本体）
--------------------------------------------------- */
.p-form {
  max-width: 120rem;
  margin-inline: auto;
}

.p-form__list > .p-form__row,
.p-form__list > .p-form__cols {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-form__list > .p-form__row,
  .p-form__list > .p-form__cols {
    margin-top: 2.6rem;
  }
}

.p-form__list > :first-child {
  margin-top: 0;
}

.p-form__row dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-form__row dt {
    font-size: 1.6rem;
  }
}

.p-form__row dd {
  position: relative;
  margin-top: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-form__row dd {
    margin-top: 0.6rem;
  }
}

.p-form__req {
  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;
  min-width: 3.4rem;
  height: 2rem;
  padding-inline: 0.6rem;
  background: #E50D0D;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .p-form__req {
    font-size: 1.2rem;
  }
}

/* 2カラム（姓・名 / 漢字・カナ） */
.p-form__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-form__cols {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
}

.p-form__row--half {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

/* 入力欄 */
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
  /* SP は 16px 固定（小型端末での縮小と iOS のフォーカス時ズームを防ぐ） */
}
@media only screen and (max-width: 767px) {
  .p-form input[type=text],
  .p-form input[type=email],
  .p-form input[type=tel],
  .p-form textarea {
    font-size: 16px;
  }
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel] {
  height: 6rem;
}

.p-form textarea {
  /* CF7 が rows="10" を出力するため、height を指定しないと初期高さがそれに従う */
  min-height: 16rem;
  line-height: 1.875;
  resize: vertical;
}

/* 文字数カウンター（テキストエリア・200文字制限） */
.p-form__counter {
  margin-top: 0.6rem;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  color: #959595;
}
@media only screen and (min-width: 768px) {
  .p-form__counter {
    font-size: 1.3rem;
  }
}

.p-form__counter.is-max {
  color: #E50D0D;
}

.p-form ::-webkit-input-placeholder {
  color: #959595;
  font-weight: 500;
}

.p-form ::-moz-placeholder {
  color: #959595;
  font-weight: 500;
}

.p-form :-ms-input-placeholder {
  color: #959595;
  font-weight: 500;
}

.p-form ::-ms-input-placeholder {
  color: #959595;
  font-weight: 500;
}

.p-form ::placeholder {
  color: #959595;
  font-weight: 500;
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}

/* 希望職種チェックボックス */
.p-form__checks .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 3.2rem;
}

/* ラベル（希望職種）とチェックボックス群の縦間隔（デザイン実測 ≒17px） */
.p-form__row dd.p-form__checks {
  margin-top: 1.7rem;
}

.p-form__checks .wpcf7-list-item {
  margin: 0;
}

.p-form__checks label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form__checks label {
    font-size: 1.6rem;
  }
}

/* 同意チェック */
.p-form__agree {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-form__agree {
    margin-top: 4rem;
  }
}
.p-form__agree a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-form__agree a:hover {
    opacity: 0.7;
  }
}

.p-form__agree .wpcf7-list-item {
  margin: 0;
}

.p-form__agree label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form__agree label {
    font-size: 1.6rem;
  }
}

/* 同意チェック・希望職種チェック共通：
   reset で全 input が appearance:none のためネイティブのチェックは不可視。
   ネイティブを隠し、右テキストの擬似要素で自作する（before=四角 / after=チェック）。 */
.p-form__agree input[type=checkbox],
.p-form__checks input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.p-form__agree .wpcf7-list-item-label,
.p-form__checks .wpcf7-list-item-label {
  position: relative;
}
.p-form__agree .wpcf7-list-item-label::before,
.p-form__checks .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #000;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__agree .wpcf7-list-item-label::after,
.p-form__checks .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 0.55rem;
  height: 1rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  opacity: 0;
  -webkit-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.p-form__agree input[type=checkbox]:checked + .wpcf7-list-item-label::after,
.p-form__checks input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* □ とテキストの間隔（希望職種はデザイン実測 ≒6px、四角18px+6px） */
.p-form__agree .wpcf7-list-item-label {
  padding-left: 2.8rem;
}

.p-form__checks .wpcf7-list-item-label {
  padding-left: 2.4rem;
}

/* ボタン（確認画面 / 送信する / 修正する） */
.p-form__action {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-form__action {
    margin-top: 4rem;
  }
}

.p-form__confirm,
.p-form__submit,
.p-form__back {
  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;
  width: 20rem;
  max-width: 100%;
  min-height: 5rem;
  padding-block: 1rem 1.2rem;
  padding-inline: 3rem 2rem;
  background: #000;
  border: 1px solid #000;
  border-radius: 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media only screen and (min-width: 768px) {
  .p-form__confirm,
  .p-form__submit,
  .p-form__back {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .p-form__confirm:hover,
  .p-form__submit:hover,
  .p-form__back:hover {
    opacity: 0.7;
  }
}

.p-form__confirm:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* CF7 のローディングスピナーは非表示（ボタンの中央寄せを崩さないため） */
.wpcf7-spinner {
  display: none;
}

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

.p-form__action--preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

/* SP はボタンを画面中央に */
@media only screen and (max-width: 767px) {
  .p-form__action {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .p-form__action--preview {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
バリデーションエラー（CF7標準チップ・absolute・余白を作らない）
確認画面ボタン押下時のみ表示。PC 12px / SP 10px / 赤・赤枠なし
--------------------------------------------------- */
.p-form .wpcf7-not-valid-tip {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.4rem;
  color: #E50D0D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .p-form .wpcf7-not-valid-tip {
    font-size: 1.2rem;
  }
}

/* CF7 標準のレスポンス出力（送信失敗時等のメッセージ） */
.p-contact .wpcf7-response-output {
  margin-top: 2rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ------------------------------------------------
p-form__preview （確認画面）
--------------------------------------------------- */
.p-form__preview[hidden] {
  display: none;
}

.p-form__list--preview .p-form__row {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-form__list--preview .p-form__row {
    margin-top: 2.6rem;
  }
}

.p-form__list--preview > :first-child {
  margin-top: 0;
}

.p-form__list--preview dd {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  .p-form__list--preview dd {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-confirm （確認画面：別ページ page-confirm.php）
--------------------------------------------------- */
.p-confirm__body {
  max-width: 120rem;
  margin-inline: auto;
}

.p-confirm__list {
  border-top: 1px solid #E4E4E4;
}

.p-confirm__row {
  padding-block: 2rem;
  border-bottom: 1px solid #E4E4E4;
}
@media only screen and (min-width: 768px) {
  .p-confirm__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    padding-block: 2.6rem;
  }
}
.p-confirm__row dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .p-confirm__row dt {
    width: 26rem;
    font-size: 1.6rem;
  }
}
.p-confirm__row dd {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000;
  white-space: pre-wrap;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  .p-confirm__row dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.p-confirm__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm__action {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .p-confirm__action {
    margin-top: 6rem;
  }
}

/* 実送信用の CF7 フォームは画面外に隠す（display:none にすると送信できないため） */
.p-confirm__forms {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks {
  padding-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks {
    padding-bottom: 16rem;
  }
}

.p-thanks__contents {
  text-align: center;
  padding-top: 7.7rem;
}
.p-thanks__contents h1 {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .p-thanks__contents h1 {
    font-size: 4rem;
  }
}
.p-thanks__contents p {
  max-width: 42rem;
  margin-top: 3.6rem;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .p-thanks__contents p {
    max-width: none;
    margin-top: 6rem;
    font-size: max(1.6rem, 12px);
    line-height: 1.875;
    text-align: center;
  }
}

.p-thanks__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-thanks__btn {
    margin-top: 8rem;
  }
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  position: relative;
  margin-top: 6rem;
  padding-block: 16rem;
}
@media only screen and (max-width: 767px) {
  .p-404 {
    margin-top: 5.2rem;
    padding-block: 8rem 6rem;
  }
}

.p-404__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__title {
    font-size: 3rem;
  }
}

.p-404__sub-title {
  margin-top: 2rem;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__sub-title {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
}

.p-404__text {
  margin-top: 6rem;
  font-size: max(1.6rem, 12px);
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    max-width: 420px;
    margin-inline: auto;
    margin-top: 3.6rem;
    text-align: left;
    font-size: 1.4rem;
  }
}

.p-404__btn {
  margin-top: 8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 6rem;
  }
}

/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

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

.u-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */