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

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

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

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

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

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

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
  counter-reset: number 0;
  /* number のカウンタを 0 にセット */
  background-color: #1a2b3c;
}

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

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

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

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

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

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

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

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

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

/* -----------------------------------------------------------------
アニメーション
----------------------------------------------------------------- */
.reveal-clip {
  display: block;
  overflow: hidden;
}

.reveal-inner {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

/* 下層ページ: is-loadedで発火 */
body.is-loaded:not(.home) .reveal-inner {
  -webkit-animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

/* トップページ: is-fv-readyで発火（動画再生待ち） */
body.home.is-fv-ready .reveal-inner {
  -webkit-animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

@-webkit-keyframes revealUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes revealUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* p-header 個別要素のreveal */
.p-header__logo,
.p-header__contact {
  overflow: hidden;
}

.p-header__logo > a,
.p-header__contact > a {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

body.home.is-fv-ready .p-header__logo > a {
  -webkit-animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

body.home.is-fv-ready .p-header__contact > a {
  -webkit-animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

/* 下層ページではヘッダー要素を即表示 */
body:not(.home) .p-header__logo > a,
body:not(.home) .p-header__contact > a,
body:not(.home) .p-fv__text--en .reveal-inner {
  -webkit-transform: none;
          transform: none;
}

.p-header__hamburger {
  opacity: 0;
}

body.home.is-fv-ready .p-header__hamburger {
  -webkit-animation: fadeIn 0.6s ease forwards;
          animation: fadeIn 0.6s ease forwards;
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

body:not(.home) .p-header__hamburger {
  opacity: 1;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ラインが伸びてからテキスト */
.js-reveal-line {
  color: transparent;
  display: block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 0.8s;
  width: -webkit-max-content;
  width: max-content;
}

.js-reveal-line::after {
  content: "";
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  width: 100%;
  height: 100%;
  background-color: #222222;
}

.js-reveal-line.active {
  transition: color 0s 0.6s;
  color: currentColor;
}

.js-reveal-line.active::after {
  -webkit-animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1);
          animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@-webkit-keyframes lineAnime {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes lineAnime {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* フェードイン */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-up.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -----------------------------------------------------------------
  記事一覧
----------------------------------------------------------------- */
.c-article-list {
  margin-top: 5.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .c-article-list {
    margin-top: 4.5625rem;
    grid-template-columns: 1fr;
    row-gap: 3.6875rem;
  }
}

@media (any-hover: hover) {
  .c-article-card:hover .c-article-card__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.c-article-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-article-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.c-article-card__text {
  display: flex;
  flex-direction: column-reverse;
}

.c-article-card__title {
  padding-top: 1.1875rem;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4761904762;
}
@media screen and (max-width: 767px) {
  .c-article-card__title {
    font-size: 1rem;
  }
}

.c-article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 2.1875rem;
  padding-bottom: 0.9375rem;
  border-bottom: #dcdcdc 0.0625rem solid;
}

.c-article-card__label {
  max-width: 6.25rem;
  width: 100%;
  text-align: center;
  background-color: #ff5e14;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-article-card__time {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #aaaaaa;
}

.c-breadcrumb {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-bottom: 1.5rem;
  }
}
.c-breadcrumb.--secondary .c-breadcrumb__item a span {
  color: #1a2b3c;
}
.c-breadcrumb.--secondary .c-breadcrumb__item:not(:first-child)::before {
  color: #1a2b3c;
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb__item a span {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.c-breadcrumb__item span {
  color: #a0a0a0;
  display: block;
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "・";
  display: block;
  color: #fff;
}

.c-btn-back {
  display: inline-block;
  min-width: 10.3125rem;
  padding: 0.375rem;
  background-color: #f7f7f7;
  color: #1a2b3c;
  font-family: neulis-sans, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.c-btn-back::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../images/arrow_back.svg) no-repeat center/contain;
  position: absolute;
  inset-block: 0;
  margin-block: auto;
  left: 0.625rem;
}

@media (any-hover: hover) {
  .c-btn-back:hover::before {
    -webkit-animation: arrow-slide-back 0.6s ease-in-out;
            animation: arrow-slide-back 0.6s ease-in-out;
  }
}
@-webkit-keyframes arrow-slide-back {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-slide-back {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* -----------------------------------------------------------------
  共通
----------------------------------------------------------------- */
.overlap {
  position: relative;
  z-index: 2;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: block;
  width: 2.375rem;
  height: 0.9375rem;
  border-radius: 50%;
  padding: 0 0;
  position: absolute;
  top: 4.875rem;
  right: 3.125rem;
  z-index: 300;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    top: 2.8125rem;
    right: 2.1875rem;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  top: 0.4375rem;
}

.c-hamburger.is-dark span {
  background-color: #1a2b3c;
}

/* -----------------------------------------------------------------
  intro
----------------------------------------------------------------- */
.p-intro {
  background-color: #fff;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-intro__logo {
  position: relative;
  z-index: 3;
  width: 21.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-intro__logo {
    width: 15rem;
  }
}

/* leave: ロゴが先にズーム+blur+フェードで消えた後、背景がフェード */
.p-intro.is-leaving {
  -webkit-animation: introBgLeave 0.6s cubic-bezier(0.52, 0.29, 0.18, 1) forwards 0.6s;
          animation: introBgLeave 0.6s cubic-bezier(0.52, 0.29, 0.18, 1) forwards 0.6s;
  pointer-events: none;
}

.p-intro.is-leaving .p-intro__logo {
  -webkit-animation: introLogoLeave 0.6s cubic-bezier(0.83, 0, 0.34, 1) forwards;
          animation: introLogoLeave 0.6s cubic-bezier(0.83, 0, 0.34, 1) forwards;
}

@-webkit-keyframes introLogoLeave {
  to {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
}

@keyframes introLogoLeave {
  to {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
}
@-webkit-keyframes introBgLeave {
  to {
    opacity: 0;
  }
}
@keyframes introBgLeave {
  to {
    opacity: 0;
  }
}
/* アーカイブページのページ送り */
.c-pagenation {
  position: relative;
  z-index: 3;
}
.c-pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (any-hover: hover) {
  .c-pagenation .nav-links a:hover {
    background-color: #1a2b3c;
    color: #fff;
  }
}
.c-pagenation .page-numbers {
  font-family: neulis-sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  border: 1px solid #1a2b3c;
}
.c-pagenation .page-numbers.current {
  background-color: #ff5e14;
  border-color: #ff5e14;
  color: #fff;
}
.c-pagenation .page-numbers.dots {
  margin-inline: 0.75rem;
  padding-bottom: 0.4375rem;
  border: 0;
}

/* -----------------------------------------------------------------
  投稿詳細メタ情報（news / event 共通）
----------------------------------------------------------------- */
.c-post-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dcdcdc;
}

.c-post-meta__label {
  max-width: 6.25rem;
  width: 100%;
  text-align: center;
  background-color: #ff5e14;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-post-meta__time {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #aaaaaa;
}

/* -----------------------------------------------------------------
  セクションタイトル
----------------------------------------------------------------- */
.c-section-title {
  --text-color: #1a2b3c;
  --icon-color: #ff5e14;
  color: var(--text-color);
}
.c-section-title--secondary {
  --text-color: #fff;
  --icon-color: #fff;
}
.c-section-title--tertiary {
  --text-color: #fff;
  --icon-color: #ff5e14;
}

.c-section-title__upper {
  display: flex;
  align-items: center;
  padding-bottom: 0.4375rem;
  border-bottom: 0.0625rem solid #dcdcdc;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4285714286;
}
.c-section-title__upper::before {
  content: "";
  width: 1rem;
  height: 0.875rem;
  margin-right: 0.5625rem;
  background-color: #ff5e14;
  -webkit-mask: url("../images/arrow_o.svg") no-repeat center/contain;
  mask: url("../images/arrow_o.svg") no-repeat center/contain;
}

.c-section-title__lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-section-title__lower {
    flex-direction: column;
    align-items: baseline;
    gap: 1.75rem;
  }
}

.c-section-title__main {
  font-family: neulis-sans, sans-serif;
  font-size: 4.625rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.027027027;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 3.375rem;
  }
}

.c-section-title__right {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8571428571;
  max-width: 100%;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

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

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

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

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

/* -----------------------------------------------------------------
  ボタン
----------------------------------------------------------------- */
.c-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 9.25rem;
  color: #fff;
  transition: 0.3s ease;
  position: relative;
  right: 0;
  color: var(--text-color);
}
.c-more-btn--primary {
  --icon: url("../images/btn-icon_o.svg");
  --text-color: #1a2b3c;
  --icon-color: #ff5e14;
  --dot-color: #ff5e14;
}
.c-more-btn--secondary {
  --text-color: #fff;
  --icon-color: #fff;
  --icon: url("../images/btn-icon_w.svg");
  --dot-color: #fff;
}
.c-more-btn--tertiary {
  --text-color: #fff;
  --icon-color: #ff5e14;
  --icon: url("../images/btn-icon_w.svg");
  --circle-bg: #1a2b3c;
  --dot-color: #ff5e14;
}
.c-more-btn::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 0.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--icon-color);
  -webkit-mask: var(--icon) no-repeat center/contain;
  mask: var(--icon) no-repeat center/contain;
}
@media (any-hover: hover) {
  .c-more-btn:hover, a:hover .c-more-btn {
    border-color: #ff5e14;
  }
  .c-more-btn:hover .c-more-btn__icon img, a:hover .c-more-btn .c-more-btn__icon img {
    opacity: 1;
    z-index: 10;
  }
  .c-more-btn:hover .c-more-btn__icon::before, a:hover .c-more-btn .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(40);
            transform: translate(-50%, -50%) scale(40);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.c-more-btn--right {
  display: flex;
  justify-content: flex-end;
}

.c-more-btn__text {
  font-family: neulis-sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 3.5714285714;
  text-transform: uppercase;
}

.c-more-btn__icon {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}
.c-more-btn__icon::before, .c-more-btn__icon::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition-delay: 0;
}
.c-more-btn__icon::before {
  width: 1px;
  height: 1px;
  background-color: var(--dot-color);
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: 1;
  transition: 0.3s ease;
  right: 48%;
}
.c-more-btn__icon::after {
  width: 40px;
  height: 40px;
  background-color: transparent;
  right: 0;
}

.c-more-btn__icon img {
  width: 12px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

.l-single {
  max-width: 960px;
  margin-inline: auto;
}

/* ==========================================================
   l-single__block-editor — ブロックエディタ出力の上書き
   ========================================================== */
.l-single__block-editor {
  margin-top: 3.75rem;
}
.l-single__block-editor > *:first-child {
  margin-top: 0;
}
.l-single__block-editor h2 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  margin-block: 2em 1em;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor h2 {
    font-size: 1.5rem;
  }
}
.l-single__block-editor h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 0.3125rem solid #ff5e14;
  margin-block: 1em;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor h3 {
    font-size: 1.25rem;
    padding-left: 0.75rem;
  }
}
.l-single__block-editor h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-block: 1em;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor h4 {
    font-size: 1.125rem;
  }
}
.l-single__block-editor p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1em;
}
.l-single__block-editor a {
  color: #ff5e14;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .l-single__block-editor a:hover {
    opacity: 0.7;
  }
}
.l-single__block-editor ul,
.l-single__block-editor ol {
  padding-left: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor ul,
  .l-single__block-editor ol {
    line-height: 1.5;
  }
}
.l-single__block-editor ul {
  list-style: disc;
}
.l-single__block-editor ol {
  list-style: decimal;
}
.l-single__block-editor li + li {
  margin-top: 0.5rem;
}
.l-single__block-editor .wp-block-image {
  margin-top: 1em;
}
.l-single__block-editor .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.l-single__block-editor .wp-block-image figcaption {
  font-size: 0.8125rem;
  color: #aaaaaa;
  margin-top: 0.5rem;
  text-align: center;
}
.l-single__block-editor .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor .wp-block-gallery {
    gap: 0.625rem;
  }
}
.l-single__block-editor .wp-block-gallery .wp-block-image {
  margin-top: 0;
}
.l-single__block-editor .wp-block-gallery .wp-block-image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-single__block-editor .wp-block-gallery figcaption {
  font-size: 0.8125rem;
  color: #aaaaaa;
  margin-top: 0.5rem;
  text-align: center;
}
.l-single__block-editor .wp-block-table {
  margin-top: 1em;
  overflow-x: auto;
}
.l-single__block-editor .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.l-single__block-editor .wp-block-table th,
.l-single__block-editor .wp-block-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1a2b3c;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .l-single__block-editor .wp-block-table th,
  .l-single__block-editor .wp-block-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.l-single__block-editor .wp-block-table thead tr {
  border-top: 1px solid #1a2b3c;
  border-bottom: 2px solid #1a2b3c;
}
.l-single__block-editor .wp-block-table th {
  font-weight: 700;
}
.l-single__block-editor .wp-block-table figcaption {
  font-size: 0.8125rem;
  color: #1a2b3c;
  margin-top: 0.5rem;
  text-align: right;
}
.l-single__block-editor .wp-block-video,
.l-single__block-editor .wp-block-embed {
  margin-top: 1em;
}
.l-single__block-editor .wp-block-video video,
.l-single__block-editor .wp-block-video iframe,
.l-single__block-editor .wp-block-embed video,
.l-single__block-editor .wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 0.25rem;
}
.l-single__block-editor .wp-block-video figcaption,
.l-single__block-editor .wp-block-embed figcaption {
  font-size: 0.8125rem;
  color: #aaaaaa;
  margin-top: 0.5rem;
  text-align: center;
}

.p-about > * {
  position: relative;
  position: relative;
}
.p-about > *::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.p-about > * > .l-inner,
.p-about > * > .swiper {
  position: relative;
  z-index: 3;
}

/* -----------------------------------------------------------------
  p-about-culture
----------------------------------------------------------------- */
.p-about-culture {
  position: relative;
  padding-top: 17.5rem;
  padding-bottom: 9.625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about-culture {
    padding-top: 12.25rem;
    padding-bottom: 6.25rem;
  }
}

.p-about-culture__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../images/site_main_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
}

.p-about-culture__fv {
  display: flex;
  align-items: center;
  gap: 6.75rem;
  margin-top: 6.25rem;
  padding: 0rem 2.6875rem 0rem 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__fv {
    flex-direction: column-reverse;
    gap: 3rem;
    margin-top: 4.375rem;
    padding: 0;
  }
}

.p-about-culture__fv-img {
  max-width: 19.1875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-culture__fv-img {
    max-width: 13.75rem;
  }
}

.p-about-culture__fv-heading--en {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-about-culture__fv-heading--en {
    font-size: 0.75rem;
  }
}

.p-about-culture__fv-heading--ja {
  font-size: 3.5rem;
  font-weight: 900;
  margin-top: 0.625rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-about-culture__fv-heading--ja {
    font-size: 1.875rem;
  }
}

.p-about-culture__fv-lead {
  font-size: 1.4375rem;
  font-weight: 700;
  margin-top: 1.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about-culture__fv-lead {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-about-culture__benefits {
  margin-top: 10.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-culture__benefits {
    margin-top: 5.3125rem;
  }
}

.p-about-culture__benefits-title--ja {
  font-size: 2.5rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-about-culture__benefits-title--ja {
    font-size: 1.5rem;
  }
}

.p-about-culture__benefits-item {
  max-width: 25.875rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-radius: 0.875rem;
  border: 0.0625rem solid #fff;
  background-color: rgba(255, 255, 255, .1);
}
@media screen and (max-width: 767px) {
  .p-about-culture__benefits-item {
    max-width: 100%;
    padding: 0.9375rem 0.625rem;
  }
}

.p-about-culture__benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a b" "c c" "d e";
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "c" "a" "b" "d" "e";
    margin-top: 2.5rem;
  }
}

.p-benefits__item--1,
.p-benefits__item--2,
.p-benefits__item--4,
.p-benefits__item--5 {
  position: relative;
}
.p-benefits__item--1::before,
.p-benefits__item--2::before,
.p-benefits__item--4::before,
.p-benefits__item--5::before {
  content: "";
  position: absolute;
  width: 5.3125rem;
  height: 0.625rem;
  background-image: url("../images/a-arrow_pc.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-benefits__item--1::before,
  .p-benefits__item--2::before,
  .p-benefits__item--4::before,
  .p-benefits__item--5::before {
    display: none;
  }
}

.p-benefits__item--1::before,
.p-benefits__item--2::before,
.p-benefits__item--4::before,
.p-benefits__item--5::before {
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  transition-delay: 0.5s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-benefits__item--1::before {
  -webkit-transform: rotate(43deg) scaleX(0);
          transform: rotate(43deg) scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.p-benefits__item--2::before {
  -webkit-transform: rotate(137deg) scaleX(0);
          transform: rotate(137deg) scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.p-benefits__item--4::before {
  -webkit-transform: rotate(-43deg) scaleX(0);
          transform: rotate(-43deg) scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.p-benefits__item--5::before {
  -webkit-transform: rotate(-137deg) scaleX(0);
          transform: rotate(-137deg) scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.fade-up.is-show.p-benefits__item--1::before {
  -webkit-transform: rotate(43deg) scaleX(1);
          transform: rotate(43deg) scaleX(1);
}

.fade-up.is-show.p-benefits__item--2::before {
  -webkit-transform: rotate(137deg) scaleX(1);
          transform: rotate(137deg) scaleX(1);
}

.fade-up.is-show.p-benefits__item--4::before {
  -webkit-transform: rotate(-43deg) scaleX(1);
          transform: rotate(-43deg) scaleX(1);
}

.fade-up.is-show.p-benefits__item--5::before {
  -webkit-transform: rotate(-137deg) scaleX(1);
          transform: rotate(-137deg) scaleX(1);
}

.p-benefits__item--1 {
  grid-area: a;
}
.p-benefits__item--1::before {
  right: -20%;
  top: 75%;
}
@media screen and (max-width: 767px) {
  .p-benefits__item--1 {
    margin: 8.75rem auto 0;
  }
}

.p-benefits__item--2 {
  grid-area: b;
  margin-left: auto;
}
.p-benefits__item--2::before {
  left: -41%;
  top: 75%;
}
@media screen and (max-width: 767px) {
  .p-benefits__item--2 {
    margin: 1.875rem auto 0;
  }
}

.p-benefits__item--3 {
  grid-area: c;
  max-width: 16.375rem;
  margin: 0 auto;
  margin-top: -7.5%;
  margin-bottom: -7.5%;
  transition: opacity 0.4s;
}
@media screen and (max-width: 1023px) {
  .p-benefits__item--3 {
    margin-top: -6.5%;
    margin-bottom: -6.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__item--3 {
    margin: 0 auto;
    position: sticky;
    top: 6.25rem;
  }
  .p-benefits__item--3::after {
    content: "";
    position: absolute;
    bottom: -7.4375rem;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    width: 0.625rem;
    height: 6.1875rem;
    background-image: url("../images/a-arrow_sp.svg");
    background-position: center;
    background-size: cover;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.p-benefits__item--3::after {
  transition: opacity 0.4s, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s;
  transition: transform 0.6s ease, opacity 0.4s, -webkit-transform 0.6s ease;
}
.p-benefits__item--3.is-overlap {
  opacity: 0.15;
}
.p-benefits__item--3.is-overlap::after {
  opacity: 0;
}
.p-benefits__item--3.is-show::after {
  -webkit-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
}

.p-benefits__image {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .p-benefits__image {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__image {
    width: 100%;
  }
}

.p-benefits__item--4 {
  grid-area: d;
}
.p-benefits__item--4 .p-benefits__icon {
  height: 3.125rem;
}
.p-benefits__item--4::before {
  right: -20%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .p-benefits__item--4 {
    margin: 1.875rem auto 0;
  }
}

.p-benefits__item--5 {
  grid-area: e;
  margin-left: auto;
}
.p-benefits__item--5::before {
  left: -41%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .p-benefits__item--5 {
    margin: 1.875rem auto 0;
  }
}

.p-benefits__number {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left;
  font-family: neulis-sans, sans-serif;
  padding: 0 1.875rem;
}

.p-benefits__icon {
  width: 3.125rem;
  margin: 0rem auto;
}

.p-benefits__content-title {
  font-size: 1.6875rem;
  font-weight: 500;
  margin-top: 0.3125rem;
  display: flex;
  flex-direction: column;
  font-family: neulis-sans, sans-serif;
}
@media screen and (max-width: 767px) {
  .p-benefits__content-title {
    font-size: 1.5rem;
  }
}

.p-benefits__content-title span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #a0a0a0;
}

.p-benefits__content-text {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.9375rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-benefits__content-text {
    font-size: 0.75rem;
  }
}

.p-about-culture__benefits-lead {
  margin-top: 5.625rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about-culture__benefits-lead {
    font-size: 0.875rem;
    margin-top: 2.5rem;
  }
}

.p-about-culture__lower {
  margin-top: 11.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__lower {
    margin-top: 6.0625rem;
  }
}

.p-about-culture__lower-container {
  display: flex;
  gap: 5.625rem;
  gap: min(6.25vw, 90px);
}

.p-about-culture__nav {
  flex-shrink: 0;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__nav {
    display: none;
  }
}

.p-about-culture__nav-list {
  position: sticky;
  top: 12.5rem;
}

.p-about-culture__nav-list a {
  display: block;
  color: rgba(255, 255, 255, .4);
}

.p-about-culture__nav-list a.is-current {
  color: #fff;
}
.p-about-culture__nav-list a.is-current::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.875rem;
  left: -1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/arrow_o.svg") no-repeat center/contain;
}

.p-about-culture__nav-item {
  margin-top: 1rem;
  position: relative;
}

.p-about-culture__nav-item:nth-child(1) {
  margin-top: 0rem;
}

.p-about-culture__nav--en {
  font-family: neulis-sans, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
}

.p-about-culture__nav--ja {
  font-size: 0.625rem;
  font-weight: 700;
}

.p-about-culture__lower-list {
  flex: 1;
}

.p-about-culture__item {
  display: flex;
  gap: 4.125rem;
  gap: min(4.5833333333vw, 66px);
  margin-top: 8.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__item {
    flex-direction: column;
    margin-top: 3.75rem;
    gap: 0;
  }
}

.p-about-culture__item:nth-child(1) {
  margin-top: 0rem;
}

.p-about-culture__item-title {
  margin-top: -0.3125rem;
  font-size: 2.5rem;
  font-weight: 900;
  max-width: 15.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-culture__item-title {
    font-size: 1.875rem;
    margin-top: 0.625rem;
  }
}

.p-about-culture__item-textarea {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-culture__item-textarea {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

.p-about-culture__item-text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-culture__item-text {
    margin-top: 0.625rem;
  }
}

/* -----------------------------------------------------------------
  p-about-message
----------------------------------------------------------------- */
.p-about-message {
  padding-top: 6.25rem;
  padding-bottom: 10rem;
  background-color: #ededed;
  border-radius: 1.25rem;
  position: relative;
  z-index: 3;
  position: relative;
}
.p-about-message::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-about-message {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.p-about-message__container {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-about-message__container {
    margin-top: 2.5rem;
  }
}

.p-about-message__photo {
  position: relative;
  max-width: 57.9375rem;
  margin: 0 auto;
  margin-top: 4.375rem;
  aspect-ratio: 927/515;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-message__photo {
    aspect-ratio: 1/1;
  }
}

.p-about-message__ceo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 0.625rem;
}

.p-about-message__ceo {
  position: absolute;
  left: 2.5rem;
  bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__ceo {
    left: 1.25rem;
    bottom: 1.5rem;
  }
}

.p-about-message__position {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #ff5e14;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-message__position {
    font-size: 0.75rem;
  }
}

.p-about-message__name--ja {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.3125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-message__name--ja {
    font-size: 1.5rem;
    margin-top: 0.125rem;
  }
}

.p-about-message__name--en {
  font-family: neulis-sans, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .67);
  letter-spacing: 0.06em;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__name--en {
    font-size: 0.75rem;
    margin-top: 0.125rem;
  }
}

.p-about-message__content {
  max-width: 57.9375rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-about-message__content {
    max-width: 100%;
    margin-top: 2.5rem;
  }
}

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

.p-about-message__item:nth-child(1) {
  margin-top: 0;
}

.p-about-message__title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #ff5e14;
  text-align: center;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 0.9375rem 0.5rem;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  .p-about-message__title {
    font-size: 1rem;
  }
}

.p-about-message__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__text {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------------------------------
  p-about-company
----------------------------------------------------------------- */
.p-about-company {
  background-color: #fff;
  padding-top: 6.25rem;
  padding-bottom: 11.3125rem;
  margin-top: -1.25rem;
  position: relative;
}
.p-about-company::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-about-company {
    padding-bottom: 6.25rem;
  }
}

.p-about-company__content {
  max-width: 60rem;
  margin: 7.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-about-company__content {
    margin-top: 4.5625rem;
  }
}

.p-about-row {
  display: flex;
  gap: 5.0625rem;
  border-bottom: 0.0625rem solid #dcdcdc;
  padding: 1.0625rem 0rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1a2b3c;
}
@media screen and (max-width: 767px) {
  .p-about-row {
    padding: 0.625rem 0rem;
    gap: 2.5rem;
    font-size: 0.75rem;
  }
}

.p-about-row:nth-child(1) {
  border-top: 0.0625rem solid #dcdcdc;
}

.p-about-row dt {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .p-about-row dt {
    width: 4.375rem;
  }
}

.p-google {
  color: #aaaaaa;
  margin-left: 0.625rem;
  transition: all 0.3s ease;
}
.p-google:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-google {
    margin-left: 0;
  }
}

/* -----------------------------------------------------------------
  お問い合わせ（フォーム本体のスタイルは _p-smf.scss を参照）
----------------------------------------------------------------- */
/* ページタイトル */
.p-contact-hero {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 7.5rem;
  position: relative;
}
.p-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-contact-hero {
    padding: 9.375rem 0 3.75rem;
  }
}
.p-contact-hero > .l-inner {
  position: relative;
  z-index: 3;
}

/* フォーム本体（ラッパー） */
.p-contact-body {
  position: relative;
  z-index: 2;
  background-color: #ededed;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 6.25rem 0 11.25rem;
  margin-top: -1.25rem;
  position: relative;
}
.p-contact-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-contact-body {
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 3.75rem 0 5rem;
  }
}
.p-contact-body > .l-inner {
  position: relative;
  z-index: 3;
}

.p-contact-body__content {
  max-width: 60rem;
  margin: 0 auto;
}

/* -----------------------------------------------------------------
  EVENT詳細
----------------------------------------------------------------- */
.p-event-single {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 13.75rem;
  position: relative;
}
.p-event-single::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-event-single {
    padding: 9.375rem 0 6.25rem;
  }
}
.p-event-single > .l-inner {
  position: relative;
  z-index: 3;
}

.p-event-single__title {
  margin-top: 1.1875rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-event-single__title {
    font-size: 1.5rem;
  }
}

.p-event-single__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-event-single__content {
    margin-top: 3.125rem;
  }
}

.p-event-single__back {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event-single__back {
    margin-top: 3.75rem;
  }
}

/* -----------------------------------------------------------------
  EVENT一覧
----------------------------------------------------------------- */
.p-event {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 13.75rem;
  position: relative;
}
.p-event::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-event {
    padding: 9.375rem 0 6.25rem;
  }
}
.p-event > .l-inner {
  position: relative;
  z-index: 3;
}

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

/* -----------------------------------------------------------------
  応募フォーム（フォーム本体のスタイルは _p-smf.scss を参照）
----------------------------------------------------------------- */
/* ページタイトル */
.p-form-hero {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 7.5rem;
  position: relative;
}
.p-form-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-form-hero {
    padding: 9.375rem 0 3.75rem;
  }
}
.p-form-hero > .l-inner {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-form-hero .c-section-title__main {
    font-size: 3rem;
  }
}

/* フォーム本体（ラッパー） */
.p-form-body {
  position: relative;
  z-index: 2;
  background-color: #ededed;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 6.25rem 0 11.25rem;
  margin-top: -1.25rem;
  position: relative;
}
.p-form-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-form-body {
    padding: 3.75rem 0 5rem;
  }
}
.p-form-body > .l-inner {
  position: relative;
  z-index: 3;
}

.p-form-body__content {
  max-width: 60rem;
  margin: 0 auto;
}

/* ==========================================================
   p-lab — BEL（ブランドエボリューションラボ）アーカイブ
   ========================================================== */
.p-lab {
  background: #0f1923;
  padding-block: 15.625rem 36.25rem;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0);
  position: relative;
}
.p-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-lab {
    padding-block: 12.5rem 18.75rem;
  }
}
.p-lab .l-inner {
  position: relative;
  z-index: 3;
}

.p-lab__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.p-lab__video .c-section-title__upper {
  border-bottom-color: rgba(255, 255, 255, .2);
}
.p-lab__video .c-section-title__lower {
  align-items: flex-start;
  padding-top: 1.25rem;
}

/* ----------------------------------------------------------
   見出しエリア（BRAND EV0LUTI0N LAB + 説明文）
   ---------------------------------------------------------- */
.p-lab__heading {
  flex-shrink: 0;
  width: 17.375rem;
}
@media screen and (max-width: 767px) {
  .p-lab__heading {
    width: 100%;
    max-width: 14.375rem;
  }
}
.p-lab__heading img {
  width: 100%;
  height: auto;
}

.p-lab__desc {
  max-width: 40.625rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-lab__desc {
    max-width: 100%;
  }
}

/* ==========================================================
   CREATOR FILE セクション
   ========================================================== */
.p-lab__creator {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-lab__creator {
    margin-top: 5rem;
  }
}

.p-lab__creator-head {
  display: flex;
  align-items: center;
  padding-bottom: 0.625rem;
  color: #fff;
}
.p-lab__creator-head::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 0.875rem;
  margin-right: 0.5625rem;
  background-color: #ff5e14;
  -webkit-mask: url("../images/arrow_o.svg") no-repeat center/contain;
  mask: url("../images/arrow_o.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-lab__creator-head::before {
    width: 0.75rem;
    height: 0.625rem;
    margin-right: 0.375rem;
  }
}
.p-lab__creator-head img {
  height: 0.75rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab__creator-head img {
    height: 0.625rem;
  }
}

/* ==========================================================
   クリエイターリスト
   ========================================================== */
.p-lab__list {
  list-style: none;
}

.p-lab__item {
  border-bottom: 1px solid #e1e1e1;
  transition: 0.3s ease;
}
.p-lab__item:first-child {
  border-top: 1px solid #e1e1e1;
}
.p-lab__item.is-active {
  background-color: #ff5e14;
}
@media (any-hover: hover) {
  .p-lab__item:hover {
    background-color: #ff5e14;
  }
}

.p-lab__link {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
  padding: 1.5rem 1.875rem;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-lab__link {
    gap: 1.25rem;
    padding: 0.9375rem;
  }
}

.p-lab__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.p-lab__num img {
  height: 0.875rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab__num img {
    height: 0.5rem;
  }
}

.p-lab__bar {
  flex-shrink: 0;
}
.p-lab__bar::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-lab__bar::before {
    height: 0.4375rem;
  }
}

.p-lab__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-lab__role img {
  height: 1.25rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab__role img {
    height: 0.625rem;
  }
}

.p-lab__name {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-lab__name {
    margin-top: 0.625rem;
  }
}
.p-lab__name img {
  height: 2.8125rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab__name img {
    height: 1.375rem;
  }
}

/* ==========================================================
   p-lab-modal — クリエイター詳細（コンテンツ差し替え式）
   ========================================================== */
/* モーダル開閉アニメーション */
@-webkit-keyframes labFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes labFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes labFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes labFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* モーダルオープン時: 一覧を非表示 */
.p-lab.is-modal-open .c-breadcrumb,
.p-lab.is-modal-open .c-section-title,
.p-lab.is-modal-open .p-lab__creator {
  display: none;
}

/* 一覧フェードイン中（モーダルクローズ後） */
.p-lab.is-modal-restoring .c-breadcrumb,
.p-lab.is-modal-restoring .c-section-title,
.p-lab.is-modal-restoring .p-lab__creator {
  -webkit-animation: labFadeIn 0.5s cubic-bezier(0.25, 0, 0, 1) forwards;
          animation: labFadeIn 0.5s cubic-bezier(0.25, 0, 0, 1) forwards;
}

.p-lab-modal {
  display: none;
  max-width: 60rem;
  margin-inline: auto;
}
.p-lab-modal.is-open {
  display: block;
  -webkit-animation: labFadeIn 0.25s cubic-bezier(0.25, 0, 0, 1) forwards;
          animation: labFadeIn 0.25s cubic-bezier(0.25, 0, 0, 1) forwards;
}
.p-lab-modal.is-closing {
  display: block;
  -webkit-animation: labFadeOut 0.3s ease forwards;
          animation: labFadeOut 0.3s ease forwards;
}

/* ----------------------------------------------------------
   プロフィールセクション（左:写真 / 右:テキスト）
   ---------------------------------------------------------- */
.p-lab-modal__profile-wrap {
  display: grid;
  grid-template-columns: 21.875rem 1fr;
  align-items: flex-start;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__profile-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* 左カラム: 写真 */
.p-lab-modal__photo-col {
  max-width: 21.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__photo-col {
    max-width: 100%;
  }
}

.p-lab-modal__num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-lab-modal__num img {
  height: 0.75rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__num img {
    height: 2.5641025641vw;
  }
}

.p-lab-modal__photo {
  max-width: 18.25rem;
  margin-left: auto;
}
.p-lab-modal__photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__photo {
    width: 80%;
    max-width: 100%;
    margin-inline: auto;
  }
}

.p-lab-modal__identity {
  padding-bottom: 1.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-lab-modal__identity::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  margin-top: 0.9375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__identity::after {
    width: 0.75rem;
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-lab-modal__identity {
    padding-bottom: 0.9375rem;
  }
}

.p-lab-modal__name {
  height: 0.75rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__name {
    height: 2.5641025641vw;
  }
}

.p-lab-modal__role {
  margin-top: 0.625rem;
  height: 0.625rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__role {
    height: 2.0512820513vw;
  }
}

/* 右カラム: プロフィールテキスト */
.p-lab-modal__text-col {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__text-col {
    margin-top: 3.75rem;
  }
}

.p-lab-modal__close {
  position: absolute;
  top: -0.9375rem;
  right: -0.9375rem;
  width: 2rem;
  height: 2rem;
  background: url("../images/modal-close.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__close {
    width: 1.5rem;
    height: 1.5rem;
    position: fixed;
    top: 9.375rem;
    right: 2.5rem;
  }
}

.p-lab-modal__section-label::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  margin-top: 0.9375rem;
  background-color: #fff;
}
.p-lab-modal__section-label img {
  height: 0.75rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__section-label img {
    height: 0.75rem;
  }
}
.p-lab-modal__section-label--works {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__section-label--works {
    margin-top: 2.5rem;
  }
}

.p-lab-modal__profile-body {
  margin-top: 1.875rem;
  font-size: 1.0625rem;
  line-height: 2.0588235294;
  letter-spacing: 0.02em;
  color: #bababa;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__profile-body {
    font-size: 0.875rem;
  }
}

.p-lab-modal__link {
  display: inline-block;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  color: #bababa;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  word-break: break-all;
}
@media (any-hover: hover) {
  .p-lab-modal__link:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------------
   WORKSグリッド
   ---------------------------------------------------------- */
.p-lab-modal__works {
  margin-top: 5rem;
}

.p-lab-modal__works-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.625rem;
    margin-top: 1.875rem;
  }
}

.p-lab-modal__work-item {
  display: flex;
  flex-direction: column;
}

.p-lab-modal__work-img img {
  width: 100%;
  aspect-ratio: 306/172;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-lab-modal__work-title {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  color: #bababa;
}
@media screen and (max-width: 767px) {
  .p-lab-modal__work-title {
    margin-top: 0.5rem;
    font-size: 0.625rem;
  }
}

/* ============================================================
   p-member-voice-detail — MEMBER VOICE 個別記事ページ
   ============================================================ */
/* l-main に背景パララックスを設定
   PC: fixed（パララックス）/ SP: scroll（fv-bg-sp.webp）
   ============================================================ */
.p-member-voice-detail {
  color: #fff;
  background-image: url("../images/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail {
    background-image: url("../images/fv-bg-sp.webp");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    background-attachment: scroll;
  }
}

/* l-section 相当: 半透明オーバーレイ + 縦余白
   ============================================================ */
.p-member-voice-detail__body {
  background: rgba(15, 25, 35, .7);
  padding-top: 17.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__body {
    padding-top: 9.375rem;
    padding-bottom: 5rem;
  }
}

/* 記事ヘッダー: c-section-title レイアウト流用
   upper = カテゴリ（矢印アイコン + 14px Bold）
   lower = タイトル（左）+ リード文（右）2カラムグリッド
   ============================================================ */
/* upperのボーダーを白半透明に（暗背景対応） */
.p-member-voice-detail__article-header .c-section-title__upper {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  border-bottom-color: rgba(255, 255, 255, .3);
}

/* lower を2カラムグリッドに変更（デフォルトはflex space-between） */
.p-member-voice-detail__article-header .c-section-title__lower {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  align-items: start;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__article-header .c-section-title__lower {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* 記事タイトル: ZenKakuGothicAntique Bold 32px */
.p-member-voice-detail__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__title {
    font-size: 1.6875rem;
    line-height: 1.5555555556;
    white-space: normal;
  }
}

/* リード文: ZenKakuGothicAntique Medium 17px */
.p-member-voice-detail__lead {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__lead {
    font-size: 0.875rem;
    line-height: 2;
  }
}

/* メイン写真
   ============================================================ */
.p-member-voice-detail__main-photo {
  margin-top: 4.375rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__main-photo {
    aspect-ratio: 390/206;
    margin-top: 2.5rem;
  }
}
.p-member-voice-detail__main-photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__main-photo img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* 対象者テキスト: ZenKakuGothicAntique Medium 18px
   ============================================================ */
.p-member-voice-detail__subject {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #aaaaaa;
  text-align: right;
  margin-top: 1rem;
}
.p-member-voice-detail__subject dt, .p-member-voice-detail__subject dd {
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__subject {
    font-size: 0.75rem;
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    justify-content: end;
  }
  .p-member-voice-detail__subject dt {
    display: block;
    grid-column: 1;
  }
  .p-member-voice-detail__subject dd {
    display: block;
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-member-voice-detail__subject dd {
    text-align: left;
  }
}

/* Q&A リスト
   ============================================================ */
.p-member-voice-detail__qa-list {
  border-radius: 0.875rem;
  background-color: #fff;
  max-width: 60rem;
  margin-inline: auto;
  padding: 3.125rem 7.5rem 7.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-list {
    padding: 3.125rem 1.5625rem;
    margin-top: 3rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 1.25rem;
  }
}

/* Q&A アイテム（質問 + 回答群 + セクション写真）*/
.p-member-voice-detail__qa-item {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-item {
    margin-top: 3rem;
  }
}

.p-member-voice-detail__qa-list .p-member-voice-detail__qa-item:first-child {
  margin-top: 0;
}

/* 質問: ZenKakuGothicAntique Bold 21px / $c-orange / センタリング */
.p-member-voice-detail__qa-question {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  color: #ff5e14;
  text-align: center;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-question {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    text-align: center;
    padding-block: 0.75rem;
    max-width: none;
  }
}

/* 回答群 */
.p-member-voice-detail__qa-answers {
  max-width: 45rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-answers {
    max-width: none;
    margin-top: 1.5rem;
  }
}

/* 1回答（名前 + テキストのグリッド）*/
.p-member-voice-detail__qa-answer {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-answer {
    grid-template-columns: 3.75rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-answer.--time-table {
    display: block;
  }
}

.p-member-voice-detail__qa-answer + .p-member-voice-detail__qa-answer {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-answer + .p-member-voice-detail__qa-answer {
    margin-top: 1.5rem;
  }
}

/* 回答者名: ZenKakuGothicAntique Bold 12px */
.p-member-voice-detail__qa-name {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.8571428571;
  padding-top: 0.125rem;
  color: #bababa;
}

/* 回答本文: ZenKakuGothicAntique Medium 14px */
.p-member-voice-detail__qa-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  color: #1a2b3c;
}

/* Q&A 間のセクション写真 */
.p-member-voice-detail__qa-photo {
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-photo {
    margin-top: 2.5rem;
  }
}
.p-member-voice-detail__qa-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* セクションラベル（Morning Ritual 等）
   ============================================================ */
.p-member-voice-detail__qa-section-label {
  display: block;
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-section-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
}

/* スケジュール表（自律した働き方ページ）
   ============================================================ */
.p-member-voice-detail__schedule-table {
  width: 100%;
  border-collapse: collapse;
  color: #1a2b3c;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__schedule-table {
    margin-top: 0.625rem;
  }
}
.p-member-voice-detail__schedule-table tr {
  border-bottom: 1px solid #bababa;
}
.p-member-voice-detail__schedule-table tr:first-child {
  border-top: 1px solid #bababa;
}
.p-member-voice-detail__schedule-table th {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.25rem 1.5rem 0.25rem 0;
  text-align: left;
  vertical-align: top;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__schedule-table th {
    font-size: 0.6875rem;
    padding: 0.625rem 0.75rem 0.625rem 0;
    width: 5.625rem;
  }
}
.p-member-voice-detail__schedule-table td {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  padding: 0.25rem 0;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__schedule-table td {
    font-size: 0.75rem;
    line-height: 1.8333333333;
    padding: 0.625rem 0;
  }
}

/* 写真ラベル（通勤シーン・食事シーン等）
   ============================================================ */
.p-member-voice-detail__qa-photo-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #ff5e14;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__qa-photo-label {
    font-size: 0.625rem;
    padding: 0.1875rem 0.625rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }
}

/* RECRUITへ戻るボタン
   ============================================================ */
.p-member-voice-detail__back {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice-detail__back {
    margin-top: 3rem;
  }
}

/* ============================================================
   p-member-voice — MEMBER VOICE 一覧ページ
   ============================================================ */
.p-member-voice {
  color: #fff;
  background-image: url("../images/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .p-member-voice {
    background-image: url("../images/fv-bg-sp.webp");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    background-attachment: scroll;
  }
}

/* ① FV
   ============================================================ */
.p-member-voice__fv {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .p-member-voice__fv {
    height: 166.6666666667vw;
    min-height: 40.625rem;
  }
}

.p-member-voice__fv-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding-inline: 40px;
}

.p-member-voice__fv-title {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 4.625rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
@media screen and (max-width: 767px) {
  .p-member-voice__fv-title {
    font-size: 2.3125rem;
  }
}

/* ② body ラッパー
   ============================================================ */
.p-member-voice__body {
  padding-block: 5rem;
  background: rgba(15, 25, 35, .7);
}
@media screen and (max-width: 767px) {
  .p-member-voice__body {
    padding-block: 5.625rem;
    background: transparent;
  }
}

.p-member-voice__body-inner {
  max-width: 60rem;
  margin-inline: auto;
}

/* ③ キャッチコピーセクション
   ============================================================ */
.p-member-voice__catch {
  text-align: center;
}

.p-member-voice__catch-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-member-voice__catch-text {
    font-size: 1.0625rem;
    line-height: 2;
    padding-inline: 25px;
  }
}

/* ③ カード一覧
   ============================================================ */
.p-member-voice__list {
  margin-top: 5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-member-voice__list {
    margin-top: 6.25rem;
  }
}

.p-member-voice__card {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card {
    padding-inline: 25px;
  }
}
.p-member-voice__card + .p-member-voice__card {
  margin-top: 1.875rem;
}

.p-member-voice__card-link {
  display: block;
  color: inherit;
}

.p-member-voice__card-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fff;
}
.p-member-voice__card-cat img {
  flex-shrink: 0;
  width: 1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-cat {
    font-size: 0.875rem;
  }
}

.p-member-voice__card-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-title {
    font-size: 1.1875rem;
    line-height: 1.3684210526;
    margin-top: 0.625rem;
    padding-bottom: 0.75rem;
  }
}

.p-member-voice__card-subject {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0.625rem;
  color: #a8a8a8;
}
.p-member-voice__card-subject dt, .p-member-voice__card-subject dd {
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-subject {
    font-size: 0.75rem;
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
  }
  .p-member-voice__card-subject dt {
    display: block;
    grid-column: 1;
  }
  .p-member-voice__card-subject dd {
    display: block;
    grid-column: 2;
  }
}

.p-member-voice__card-photo {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-photo {
    aspect-ratio: 340/180;
    margin-top: 1.5rem;
  }
}
.p-member-voice__card-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-photo img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
}

.p-member-voice__card-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__card-footer {
    padding-top: 1.125rem;
  }
}

/* ④ RECRUITへ戻る
   ============================================================ */
.p-member-voice__back {
  text-align: center;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__back {
    margin-top: 3.75rem;
  }
}

/* ==========================================================
   p-member — メンバー一覧ページ
   ========================================================== */
.p-member {
  background: #ededed;
  padding-block: 15.625rem 11.25rem;
  position: relative;
}
.p-member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-member {
    padding-block: 9.375rem 8.125rem;
  }
}
.p-member .l-inner {
  position: relative;
  z-index: 3;
}

.p-member__title {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 15.375rem;
  font-size: clamp(140px, 17.0833333333vw, 246px);
  color: #ff5e14;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin-left: -1.25rem;
}
@media screen and (max-width: 767px) {
  .p-member__title {
    font-size: 4.375rem;
    margin-left: -0.3125rem;
    letter-spacing: 0.03em;
  }
}

.p-member__section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-member__section {
    margin-top: 5.3125rem;
  }
}
.p-member__section + .p-member__section {
  margin-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-member__section + .p-member__section {
    margin-top: 2.5rem;
  }
}

.p-member__section:last-child {
  margin-bottom: 0;
}

.p-member__category {
  color: #1a2b3c;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #bababa;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-member__category {
    font-size: 0.75rem;
  }
}

.p-member__category-icon {
  display: inline-block;
  width: 1.0625rem;
}

.p-member__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.625rem 0.625rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1.125rem;
    margin-top: 3.125rem;
  }
}

/* ==========================================================
   p-member-card — メンバーカード
   ========================================================== */
.p-member-card {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
          appearance: none;
}
@media (any-hover: hover) {
  .p-member-card:hover .p-member-card__img::before {
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  }
}

.p-member-card__img {
  aspect-ratio: 292/390;
  overflow: hidden;
  position: relative;
}

.p-member-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#ff5e14, #ff5e14) top left/0% 2px no-repeat, linear-gradient(#ff5e14, #ff5e14) top right/2px 0% no-repeat, linear-gradient(#ff5e14, #ff5e14) bottom right/0% 2px no-repeat, linear-gradient(#ff5e14, #ff5e14) bottom left/2px 0% no-repeat;
  transition: background-size 0.4s ease;
}

.p-member-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-member-card:hover .p-member-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-member-card__info {
  margin-top: 1.25rem;
}

.p-member-card__position {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ff5e14;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-member-card__position {
    font-size: 0.625rem;
  }
}

.p-member-card__name {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-card__name {
    font-size: 1.3125rem;
    margin-top: 0.375rem;
  }
}

.p-member-card__name-en {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #bababa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-member-card__name-en {
    font-size: 0.625rem;
    margin-top: 0.5rem;
  }
}

/* ==========================================================
   p-member-modal — メンバー詳細モーダル
   ========================================================== */
.p-member-modal {
  background-color: #ededed;
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-member-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-member-modal__content {
  position: relative;
  width: 51.0416666667%;
  max-height: 90vh;
  padding-top: 0.9375rem;
  padding-right: 0.9375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-member-modal__content {
    width: 100%;
    max-height: calc(100vh - 5rem);
    padding-top: 7.5rem;
    padding-bottom: 3.75rem;
    padding-inline: 25px;
    overflow-y: auto;
  }
}

.p-member-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .p-member-modal__close {
    top: 6.375rem;
    right: 2.8125rem;
  }
}

.p-member-modal__inner {
  display: flex;
  align-items: center;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-member-modal__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-member-modal__img {
  flex-shrink: 0;
  width: 18.25rem;
}
@media screen and (max-width: 767px) {
  .p-member-modal__img {
    width: 58.8235294118%;
  }
}

.p-member-modal__img img {
  width: 100%;
  height: auto;
}

.p-member-modal__info {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-member-modal__info {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-member-modal__info-block {
    width: 58.8235294118%;
    margin-inline: auto;
  }
}

.p-member-modal__position {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ff5e14;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-member-modal__position {
    font-size: 0.75rem;
  }
}

.p-member-modal__name {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-modal__name {
    font-size: 1.375rem;
  }
}

.p-member-modal__name-en {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #bababa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-member-modal__name-en {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.p-member-modal__profile {
  margin-top: 2.5rem;
}

.p-member-modal__profile-label {
  color: #1a2b3c;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-member-modal__profile-label {
    font-size: 0.75rem;
  }
}

.p-member-modal__profile-icon {
  display: inline-block;
  width: 1.0625rem;
}

.p-member-modal__profile-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  margin-top: 0.625rem;
}

/* -----------------------------------------------------------------
  NEWS詳細
----------------------------------------------------------------- */
.p-news-single {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 13.75rem;
  position: relative;
}
.p-news-single::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-news-single {
    padding: 9.375rem 0 6.25rem;
  }
}
.p-news-single > .l-inner {
  position: relative;
  z-index: 3;
}

.p-news-single__title {
  margin-top: 1.1875rem;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.5rem;
  }
}

.p-news-single__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    margin-top: 3.125rem;
  }
}

.p-news-single__back {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-single__back {
    margin-top: 3.75rem;
  }
}

/* -----------------------------------------------------------------
  NEWS一覧
----------------------------------------------------------------- */
.p-news {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 13.75rem;
  position: relative;
}
.p-news::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 9.375rem 0 6.25rem;
  }
}
.p-news > .l-inner {
  position: relative;
  z-index: 3;
}

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

/* -----------------------------------------------------------------
  プライバシーポリシー
----------------------------------------------------------------- */
/* ページタイトル */
.p-privacy-hero {
  position: relative;
  background-color: #fff;
  padding: 17.5rem 0 7.5rem;
  position: relative;
}
.p-privacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-privacy-hero {
    padding: 9.375rem 0 3.75rem;
  }
}
.p-privacy-hero > .l-inner {
  position: relative;
  z-index: 3;
}

/* 本文 */
.p-privacy-body {
  position: relative;
  z-index: 2;
  background-color: #ededed;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 6.25rem 0 11.25rem;
  margin-top: -1.25rem;
  position: relative;
}
.p-privacy-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-privacy-body {
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 3.75rem 0 5rem;
  }
}
.p-privacy-body > .l-inner {
  position: relative;
  z-index: 3;
}

.p-privacy-body__content {
  max-width: 60rem;
  margin: 0 auto;
}

.p-privacy-lead {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-privacy-lead {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

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

.p-privacy-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-privacy-section__title {
    font-size: 1.25rem;
  }
}

.p-privacy-section__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-section__subtitle {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.p-privacy-section__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-section__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-privacy-section__text:first-child {
  margin-top: 0;
}

.p-privacy-section__list {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-privacy-section__list {
    padding-left: 1.25rem;
  }
}
.p-privacy-section__list li {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-privacy-section__list li {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-privacy-section__list--link {
  list-style: none;
  padding-left: 0;
}
.p-privacy-section__list--link li a {
  color: #067c9d;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-privacy-section__list--link li a:hover {
    text-decoration: none;
  }
}

/* お問い合わせ窓口 */
.p-privacy-contact {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-contact {
    margin-top: 1rem;
  }
}

.p-privacy-contact__row {
  display: flex;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy-contact__row {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
  }
}
.p-privacy-contact__row dt {
  width: 12.5rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-privacy-contact__row dt {
    width: 100%;
  }
}
.p-privacy-contact__row dd {
  color: #000;
}

/* -----------------------------------------------------------------
  リクルート
----------------------------------------------------------------- */
/* ページタイトル */
.p-recruit-hero {
  position: relative;
  color: #fff;
  padding: 17.5rem 0 7.5rem;
  background-image: url(../images/site_main_bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.p-recruit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-recruit-hero {
    padding: 9.375rem 0 3.75rem;
  }
}
.p-recruit-hero > .l-inner {
  position: relative;
  z-index: 3;
}
.p-recruit-hero .c-section-title {
  --text-color: #fff;
  --icon-color: #fff;
}
.p-recruit-hero .c-section-title__upper {
  border-bottom-color: rgba(255, 255, 255, .3);
}
.p-recruit-hero .c-section-title__lower {
  padding-top: 1.25rem;
  align-items: flex-start;
}
.p-recruit-hero .c-section-title__right {
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-hero .c-section-title__right {
    font-size: 0.875rem;
  }
}

/* 求める人物像 & Employee Benefits ラッパー */
.p-recruit-navy {
  position: relative;
  background-color: #0f1923;
  position: relative;
  border-radius: 1.25rem;
  padding-block: 5rem 6.875rem;
  margin-top: -1.25rem;
}
.p-recruit-navy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-recruit-navy {
    border-radius: 0.75rem;
    padding-block: 3.75rem 5.625rem;
  }
}

.p-recruit-profile {
  position: relative;
  z-index: 3;
}
.p-recruit-profile + .p-recruit-profile {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile + .p-recruit-profile {
    margin-top: 3.125rem;
  }
}

.p-recruit-profile__heading {
  color: #fff;
  text-align: center;
}

.p-recruit-profile__en {
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__en {
    font-size: 0.75rem;
  }
}

.p-recruit-profile__title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__title {
    font-size: 1.6875rem;
  }
}

.p-recruit-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-recruit-profile__item {
  padding: 1.25rem 1.875rem 2.5rem;
  background-color: #fff;
  border-radius: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__item {
    padding: 0.625rem 1.25rem 1.25rem;
  }
}

.p-recruit-profile__number {
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__number {
    font-size: 0.625rem;
  }
}

.p-recruit-profile__tag {
  color: #a0a0a0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__tag {
    font-size: 0.625rem;
    margin-top: 0;
  }
}

.p-recruit-profile__name {
  color: #ff5e14;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__name {
    font-size: 1.0625rem;
    margin-top: 0.3125rem;
  }
}

.p-recruit-profile__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-profile__desc {
    font-size: 0.625rem;
    margin-top: 0.625rem;
  }
}

/* カジュアル面談CTA（固定） */
.p-recruit-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 1rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-fixed-cta {
    padding: 0.625rem 0.9375rem;
  }
}

.p-recruit-fixed-cta__btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 37.5rem;
  padding: 1.125rem 3.75rem;
  background-color: #ff5e14;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit-fixed-cta__btn {
    font-size: 0.875rem;
    padding: 0.875rem 1.875rem;
    width: 100%;
    max-width: 23.4375rem;
    border-radius: 0.375rem;
  }
}
@media (any-hover: hover) {
  .p-recruit-fixed-cta__btn:hover {
    background-color: #1a2b3c;
  }
}

.p-recruit-fixed-cta__arrow {
  width: 0.9375rem;
  height: 0.8125rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit-fixed-cta__arrow {
    width: 0.625rem;
    height: 0.5625rem;
    right: 1.25rem;
  }
}

@-webkit-keyframes arrow-slide-right {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(0.625rem);
            transform: translateY(-50%) translateX(0.625rem);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-0.625rem);
            transform: translateY(-50%) translateX(-0.625rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@keyframes arrow-slide-right {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(0.625rem);
            transform: translateY(-50%) translateX(0.625rem);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-0.625rem);
            transform: translateY(-50%) translateX(-0.625rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
/* FVテキスト位置調整（固定CTAとの重なり回避） */
@media screen and (max-width: 767px) {
  .page-recruit .p-fv__text--en {
    bottom: calc(5% + 2.5rem);
  }
}

/* Member Voice */
.p-recruit-voice {
  padding: 0;
  margin-top: -1.875rem;
  position: relative;
  z-index: 3;
}

.p-recruit-voice__banner {
  position: relative;
  overflow: hidden;
}

.p-recruit-voice__bg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.p-recruit-voice__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: neulis-sans, sans-serif;
  font-size: 4.625rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__title {
    font-size: 1.875rem;
  }
}

.p-recruit-voice__more-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__more-btn {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* SP: フェードスライダー */
.p-recruit-voice__sp-wrap {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}
.p-recruit-voice__sp-wrap .swiper-slide {
  overflow: hidden;
}

.p-recruit-voice__swiper-link {
  display: block;
}

.p-recruit-voice__swiper-img {
  width: 100%;
  aspect-ratio: 390/650;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.375rem;
}

.p-recruit-voice__pagination {
  bottom: 3.4375rem !important;
}
.p-recruit-voice__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, .5);
  opacity: 1;
}
.p-recruit-voice__pagination .swiper-pagination-bullet-active {
  background: #ff5e14;
}

/* CAREERS & Support 共通ラッパー */
.p-recruit-info {
  background-color: #0f1923;
  position: relative;
  border-radius: 1.25rem 1.25rem 0 0;
  margin-top: -1.875rem;
  padding: 6.25rem 0 7.5rem;
  position: relative;
  z-index: 2;
}
.p-recruit-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-recruit-info {
    border-radius: 0.75rem 0.75rem;
    padding: 3.75rem 0 5rem;
  }
}

.p-recruit-info__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: #fff;
  font-family: neulis-sans, sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-recruit-info__title {
    font-size: 2.25rem;
    gap: 0.75rem;
  }
}

.p-recruit-info__title--center {
  justify-content: center;
}

.p-recruit-info__title-icon {
  width: 1.6875rem;
  height: 1.4375rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-info__title-icon {
    width: 1.125rem;
    height: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

/* CAREERS */
.p-recruit-careers__inner {
  width: 100%;
  max-width: 1040px;
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__inner {
    max-width: 100%;
    padding-inline: 25px;
  }
}

.p-recruit-careers__list {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__list {
    margin-top: 1.875rem;
  }
}

.p-recruit-careers__item {
  display: flex;
  gap: 2.5rem;
  padding: 1.25rem 1.875rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__item {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

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

.p-recruit-careers__number {
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__number {
    font-size: 0.6875rem;
  }
}

.p-recruit-careers__content {
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__content {
    padding-top: 0.5rem;
  }
}

.p-recruit-careers__role-wrap {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__role-wrap {
    flex-direction: column;
    gap: 0;
  }
}

.p-recruit-careers__role {
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  font-size: 1.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__role {
    font-size: 1.25rem;
  }
}

.p-recruit-careers__subtitle {
  color: #bababa;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__subtitle {
    font-size: 0.8125rem;
  }
}

.p-recruit-careers__desc {
  list-style: "■ " outside;
  padding: 0 0 0 1.5em;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8666666667;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-careers__desc {
    font-size: 0.8125rem;
  }
}

/* Support */
.p-recruit-support {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-support {
    margin-top: 3.75rem;
  }
}

.p-recruit-support__inner {
  width: 100%;
  max-width: 1040px;
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__inner {
    max-width: 100%;
    padding-inline: 25px;
  }
}

.p-recruit-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__grid {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.p-recruit-support__item {
  padding: 1.25rem 1.25rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__item {
    padding: 0.9375rem 1.25rem;
  }
}

.p-recruit-support__number {
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__number {
    font-size: 0.6875rem;
  }
}

.p-recruit-support__name {
  color: #ff5e14;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__name {
    font-size: 1rem;
    margin-top: 0;
  }
}

.p-recruit-support__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-support__desc {
    margin-top: 0.3125rem;
  }
}

/* -----------------------------------------------------------------
service
----------------------------------------------------------------- */
.p-service__wrap {
  background-color: #ededed;
  padding-top: 17.5rem;
  padding-bottom: 12.5rem;
  color: #1a2b3c;
  position: relative;
}
.p-service__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-service__wrap {
    padding-top: 12.1875rem;
    padding-bottom: 8.75rem;
  }
}

.p-service-design,
.p-service-management {
  position: relative;
  z-index: 3;
}

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

.p-service-management .p-service__upper {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-management .p-service__upper {
    margin-top: 8.75rem;
  }
}

.p-accordion__head {
  padding: 2.5rem 1.1875rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.2, 0.1, 0, 1), color 0.4s cubic-bezier(0.2, 0.1, 0, 1);
}
@media (any-hover: hover) {
  .p-accordion__head:hover {
    background-color: #1a2b3c;
    color: #fff;
  }
  .p-accordion__head:hover .p-service-accordion__title--ja,
  .p-accordion__head:hover .p-service-accordion__number {
    color: #fff;
  }
  .p-accordion__head:hover .p-accordion__open {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-accordion__head {
    padding: 1.5625rem 0.875rem;
  }
}

.p-service-accordion__number {
  position: absolute;
  left: 1.1875rem;
  top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff5e14;
  font-family: neulis-sans, sans-serif;
  transition: color 0.4s cubic-bezier(0.2, 0.1, 0, 1);
}

.p-accordion__title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.p-service-accordion__title--en {
  font-size: 1.875rem;
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-service-accordion__title--en {
    font-size: 1.3125rem;
  }
}

.p-service-accordion__title--ja {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff5e14;
  transition: color 0.4s cubic-bezier(0.2, 0.1, 0, 1);
}
@media screen and (max-width: 767px) {
  .p-service-accordion__title--ja {
    font-size: 0.75rem;
  }
}

.p-accordion__btn {
  position: absolute;
  bottom: 0.875rem;
  right: 1.1875rem;
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__btn {
    right: 0.875rem;
    width: 1.375rem;
    height: 1.375rem;
  }
}
.p-accordion__btn::before, .p-accordion__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-accordion__btn::before {
  width: 100%;
  height: 0.125rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-accordion__btn::after {
  width: 0.125rem;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.p-accordion__open,
.p-accordion__close {
  display: none;
}

.p-accordion__item.is-open .p-accordion__btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.p-accordion__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  background-color: rgba(255, 255, 255, .4);
  padding: 1.875rem 1.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-accordion__text {
    padding: 1.5625rem 0.875rem;
    text-align: left;
  }
}

.p-service__lower {
  display: flex;
  margin-top: 7.1875rem;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__lower {
    flex-direction: column;
    margin-top: 3.75rem;
    gap: 5rem;
  }
}

.p-service__content {
  flex: 1;
  position: relative;
}
.p-service__content::before {
  content: "";
  position: absolute;
  top: -7.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.0625rem;
  height: 7.1875rem;
  background-image: url("../images/s-line.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-service__content::before {
    top: -3.75rem;
    height: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service__content:nth-child(2)::before {
    display: none;
  }
}

.p-service__step-list {
  margin-top: 2.125rem;
  background-color: rgba(255, 255, 255, .4);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  padding: 0.9375rem 0.3125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-service__step-list {
    margin-top: 1.5rem;
    padding: 0.625rem 0.3125rem;
    font-size: 0.875rem;
  }
}

.p-service__step-list--top {
  position: relative;
}
.p-service__step-list--top::after {
  content: "";
  position: absolute;
  bottom: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.0625rem;
  height: 0.625rem;
  background-image: url("../images/s-icon.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-service__step-list--top::after {
    width: 0.75rem;
    height: 0.4375rem;
    bottom: -0.9375rem;
  }
}

.p-service__step-list--orange {
  background-color: #ff5e14;
  color: #fff;
}

.p-service__step-link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  padding: 0.9375rem 0.3125rem;
  background-color: #1a2b3c;
  color: #fff;
  margin-top: 3.125rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-service__step-link {
    font-size: 0.875rem;
    padding: 0.625rem 0.3125rem;
    margin-top: 2.1875rem;
  }
}
.p-service__step-link:hover {
  background-color: #fff;
  color: #1a2b3c;
}

/* -----------------------------------------------------------------
  top-about
----------------------------------------------------------------- */
.p-top-about {
  margin-top: 8.75rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    margin-top: 12rem;
  }
}

.p-top-about > .l-inner {
  padding-bottom: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-about > .l-inner {
    padding-bottom: 18.75rem;
  }
}

.p-top-about__content {
  max-width: 60rem;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 4.625rem auto 0rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    max-width: 100%;
    flex-direction: column;
    align-items: baseline;
    margin-top: 2.1875rem;
    gap: 6.9252077562%;
  }
}

.p-top-about__text {
  max-width: 36.625rem;
  width: 100%;
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 1.1875rem;
    letter-spacing: 0.06em;
    line-height: 2;
    max-width: 100%;
  }
}

.p-top-about__text .text-small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 3.2857142857;
}

.p-top-about__btn-area {
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn-area {
    margin-top: 1.5625rem;
    padding-bottom: 0rem;
    width: 100%;
  }
}

.p-top-about__btn {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top-about__more-btn {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 14.375rem;
  padding: 0.75rem 0.9375rem;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1em;
  color: var(--text-color);
  --icon: url("../images/arrow_o.svg");
  --text-color: #1a2b3c;
  --icon-color: #ff5e14;
  position: relative;
}
.p-top-about__more-btn::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.5625rem;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/arrow_o.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top-about__more-btn {
    width: 100%;
    padding: 1rem;
  }
}

@media (any-hover: hover) {
  .p-top-about__more-btn:hover::after {
    -webkit-animation: arrow-slide 0.6s ease-in-out;
            animation: arrow-slide 0.6s ease-in-out;
  }
}
@-webkit-keyframes arrow-slide {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) translateX(20px);
            transform: translateY(-50%) translateX(20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(-50%) translateX(-20px);
            transform: translateY(-50%) translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-slide {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) translateX(20px);
            transform: translateY(-50%) translateX(20px);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(-50%) translateX(-20px);
            transform: translateY(-50%) translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.p-top-about__btn-number {
  font-family: neulis-sans, sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #aaaaaa;
  padding-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn-number {
    padding-right: 1.875rem;
  }
}

/* -----------------------------------------------------------------
  top-event
----------------------------------------------------------------- */
.p-top-event {
  position: relative;
  padding-top: 4.6875rem;
  padding-bottom: 10rem;
  background-color: #fff;
  position: relative;
}
.p-top-event::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-event {
    padding-top: 0rem;
    padding-bottom: 5rem;
  }
}
.p-top-event > .l-inner {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-top-event__more-btn {
    text-align: right;
    margin-top: 3.75rem;
  }
}

/* -----------------------------------------------------------------
  top-fv
----------------------------------------------------------------- */
.p-top-hero {
  position: relative;
  padding: 10.4375rem 0 5.5625rem;
  padding: 0 0 5.5625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-hero {
    padding-bottom: 5rem;
  }
}

.p-top-hero__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  will-change: transform;
}

.p-top-fv,
.p-top-about,
.p-scroll-down {
  position: relative;
  z-index: 3;
}

.p-scroll-down {
  font-family: neulis-sans, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  position: absolute;
  bottom: 10%;
  right: 3.2%;
  width: 0.9375rem;
  padding-bottom: 5rem;
  margin: auto;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  overflow: hidden;
}
.p-scroll-down::before, .p-scroll-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.125rem;
  height: 4.375rem;
  opacity: 0;
}
.p-scroll-down::before {
  background: #fff;
}
.p-scroll-down::after {
  background: #1a2b3c;
}
@media screen and (max-width: 767px) {
  .p-scroll-down {
    bottom: 2.5rem;
    right: 6%;
  }
}

/* 動画再生後に発火（is-fv-readyのみ） */
body.is-fv-ready .p-scroll-down .reveal-inner {
  --fv-delay: 1.7s;
}
body.is-fv-ready .p-scroll-down::before {
  -webkit-animation: fadeIn 0.6s ease 1.7s forwards;
          animation: fadeIn 0.6s ease 1.7s forwards;
}
body.is-fv-ready .p-scroll-down::after {
  -webkit-animation: fadeIn 0.6s ease 1.7s forwards, sdl01 1.5s cubic-bezier(1, 0, 0, 1) 1.7s infinite;
          animation: fadeIn 0.6s ease 1.7s forwards, sdl01 1.5s cubic-bezier(1, 0, 0, 1) 1.7s infinite;
}

@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.p-top-fv {
  min-height: 100svh;
  padding-top: clamp(10.4375rem, 22svh, 18.875rem);
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    padding-top: 25%;
  }
}

.p-top-fv__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-fv__inner {
    margin-top: 5rem;
    flex-direction: column-reverse;
    align-items: first baseline;
    gap: 3.125rem;
  }
}

.p-fv__text--en {
  position: fixed;
  left: 3.125rem;
  bottom: 10%;
  z-index: 12;
  color: #fff;
  font-family: neulis-sans, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: color 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-fv__text--en {
    bottom: 5%;
    left: 1.75rem;
  }
}
.p-fv__text--ja {
  font-size: 6.1875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1616161616;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-fv__text--ja {
    font-size: 5.1875rem;
    margin-left: 0;
  }
}
.p-fv__text--ja .js-reveal-line {
  color: transparent;
}
.p-fv__text--ja .js-reveal-line::after {
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

.p-fv__kern {
  letter-spacing: -0.15em;
}

.p-fv__punc {
  letter-spacing: -0.15em;
}

body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(1) {
  transition: color 0s 0.6s;
  color: currentColor;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(1)::after {
  -webkit-animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s;
          animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(2) {
  transition: color 0s 0.7s;
  color: currentColor;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(2)::after {
  -webkit-animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
          animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(3) {
  transition: color 0s 0.8s;
  color: currentColor;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(3)::after {
  -webkit-animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
          animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(4) {
  transition: color 0s 0.9s;
  color: currentColor;
}
body.is-fv-ready .p-fv__text--ja .js-reveal-line:nth-child(4)::after {
  -webkit-animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
          animation: lineAnime 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* -----------------------------------------------------------------
  top-lab
----------------------------------------------------------------- */
.p-top-lab {
  position: relative;
  z-index: 11;
  background-color: #0f1923;
  overflow: hidden;
  clip-path: inset(0);
  position: relative;
  margin-top: -1.25rem;
}
.p-top-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.p-top-lab__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-top-lab__link {
  position: relative;
  z-index: 3;
  display: block;
}
@media (any-hover: hover) {
  .p-top-lab__link:hover .c-more-btn__icon img {
    z-index: 10;
  }
  .p-top-lab__link:hover .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(40);
            transform: translate(-50%, -50%) scale(40);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-top-lab__link:hover .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(20);
            transform: translate(-50%, -50%) scale(20);
  }
}

.p-top-lab__inner {
  position: relative;
  padding-bottom: 50.625rem;
}

.p-top-lab__text {
  max-width: 15.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-top-lab__more-btn {
  position: absolute;
  right: 1.5625rem;
  bottom: 8.6419753086%;
}

/* -----------------------------------------------------------------
  top-member
----------------------------------------------------------------- */
.p-top-members {
  overflow: hidden;
  position: relative;
  z-index: 13;
  margin-top: -3.75rem;
}
.p-top-members__upper {
  background-color: #0f1923;
  border-radius: 1.25rem;
  padding: 6.875rem 0 5.0625rem;
  position: relative;
  z-index: 1;
  position: relative;
}
.p-top-members__upper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-members__upper {
    padding: 3.75rem 0 5.75rem;
  }
}
.p-top-members__upper > .l-inner,
.p-top-members__upper > .swiper {
  position: relative;
  z-index: 3;
}
.p-top-members__upper .swiper {
  overflow: hidden;
  margin-top: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-members__upper .swiper {
    margin-top: 3.75rem;
  }
}
.p-top-members__upper .swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
}
.p-top-members__upper .swiper-slide {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.p-top-members__upper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-top-members__more-btn {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-members__more-btn {
    margin-top: 2.1875rem;
  }
}

.p-top-members__bg {
  position: relative;
  z-index: -1;
  background: linear-gradient(35deg, #1a2b3c 0%, #1a2b3c 60%, #067c9d 100%);
  height: 26.625rem;
  margin-top: -1.25rem;
  position: relative;
}
.p-top-members__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-members__bg {
    height: 15.625rem;
    margin-top: -1.25rem;
  }
}

/* -----------------------------------------------------------------
  top-news
----------------------------------------------------------------- */
.p-top-news {
  position: relative;
  margin-top: -1.875rem;
  padding-top: 9.4375rem;
  padding-bottom: 15.625rem;
  background-color: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
}
.p-top-news::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 5rem;
    padding-bottom: 12.5rem;
  }
}
.p-top-news > .l-inner {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-top-news__more-btn {
    text-align: right;
    margin-top: 3.75rem;
  }
}

/* -----------------------------------------------------------------
  top-service
------------------------------------------------------------------*/
.p-top-service {
  position: relative;
  z-index: 12;
  background-color: #ededed;
  border-radius: 1.25rem;
  margin-top: -1.125rem;
  padding: 9.1875rem 0 11.1875rem;
  position: relative;
}
.p-top-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 5rem 0;
  }
}

.noise_wrap {
  position: relative;
  z-index: 3;
}

.p-top-service__content {
  margin-top: 10.875rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__content {
    margin-top: 3.5rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-top-service__item {
  max-width: 37.1875rem;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-service__item {
    max-width: 100%;
  }
}

.p-top-service__link {
  display: block;
  padding: 1.0625rem 1.1875rem 0.3125rem 1.5625rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-service__link {
    padding: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-top-service__link:hover .c-more-btn {
    border-color: #ff5e14;
  }
  .p-top-service__link:hover .c-more-btn__icon img {
    z-index: 10;
  }
  .p-top-service__link:hover .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(40);
            transform: translate(-50%, -50%) scale(40);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-top-service__link:hover .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(20);
            transform: translate(-50%, -50%) scale(20);
  }
}

.p-top-service__item--upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-top-service__number {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ff5e14;
}
@media screen and (max-width: 767px) {
  .p-top-service__number {
    font-size: 0.625rem;
  }
}

.p-top-service__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.p-top-service__text-area {
  margin-top: 1.625rem;
  margin-left: 1.75rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top-service__text-area {
    margin-top: 0.625rem;
    margin-left: 0.9375rem;
  }
}

.p-top-service__item-title--en {
  font-family: neulis-sans, sans-serif;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title--en {
    font-size: 1.5rem;
  }
}

.p-top-service__item-title--ja {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ff5e14;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title--ja {
    font-size: 0.75rem;
  }
}

.p-top-service__more-btn {
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__more-btn {
    margin-top: 0.3125rem;
  }
  .p-top-service__more-btn .c-more-btn {
    width: 110px;
  }
  .p-top-service__more-btn .c-more-btn__text {
    font-size: 10px;
  }
  .p-top-service__more-btn .c-more-btn__icon,
  .p-top-service__more-btn .c-more-btn::after,
  .p-top-service__more-btn .c-more-btn__icon::after {
    width: 30px;
    height: 30px;
  }
  .p-top-service__more-btn .c-more-btn__icon img {
    width: 8px;
    height: 7px;
    right: 30%;
  }
}

/* -----------------------------------------------------------------
  top-works
----------------------------------------------------------------- */
.p-top-works-wrapper {
  position: relative;
  z-index: 12;
  border-radius: 1.25rem;
}

.p-top-works {
  position: relative;
  z-index: 3;
  padding: 9.375rem 0 9.375rem;
  margin-top: -1.875rem;
  background-color: #fff;
  border-radius: 1.25rem;
  position: relative;
}
.p-top-works::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding: 6.25rem 0 9.375rem;
  }
}

.p-top-works__inner {
  position: relative;
  z-index: 3;
}

.p-top-works__content {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4.5625rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__content {
    margin-top: 4.5625rem;
    grid-template-columns: 1fr;
    grid-gap: 3.75rem;
  }
}

.p-top-works__card {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-top-works__card:hover .p-card__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.p-card__text-area {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-card__text-area {
    margin-top: 1.5625rem;
  }
}

.p-card__client {
  color: #1a2b3c;
  font-family: neulis-sans, sans-serif;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-card__client {
    font-size: 0.875rem;
  }
}

.p-card__title {
  color: #1a2b3c;
  font-family: neulis-sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
  border-bottom: #dcdcdc 1px solid;
}
@media screen and (max-width: 767px) {
  .p-card__title {
    font-size: 1.1875rem;
  }
}

.p-card__text {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.1428571429;
  margin-top: 0.5rem;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-card__text {
    font-size: 0.625rem;
  }
}
.p-card__text::before {
  content: "⚫︎";
  width: 0.5625rem;
  height: 0.5625rem;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-works__more-btn {
  margin-top: 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__more-btn {
    margin-top: 4.8125rem;
  }
}

/* -----------------------------------------------------------------
  works single
----------------------------------------------------------------- */
.p-works-single {
  background-color: #fff;
  padding: 17.5rem 0 7.5rem;
  position: relative;
}
.p-works-single::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-works-single {
    padding: 9.375rem 0 6.25rem;
  }
}

.p-works-single__client {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-works-single__client {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

.p-works-single__title {
  font-family: neulis-sans, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-works-single__title {
    font-size: 1.5rem;
  }
}

.p-works-single__content {
  margin-top: 6.25rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-works-single__content {
    margin-top: 2.5rem;
  }
}

/* gallery */
.p-works-single__gallery-item + .p-works-single__gallery-item {
  margin-top: 0.625rem;
}
.p-works-single__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* detail sections */
.p-works-single__details {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-works-single__details {
    margin-top: 6.25rem;
  }
}

.p-works-single__section {
  display: grid;
  grid-template-columns: 12.5rem 37.5rem;
  justify-content: space-between;
  gap: 2.5rem;
  padding-block: 0.9375rem 4.0625rem;
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-works-single__section {
    display: block;
    padding: 0.625rem 0 2.8125rem;
  }
}

.p-works-single__section-en {
  font-family: neulis-sans, sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-single__section-en {
    font-size: 1.5rem;
  }
}

.p-works-single__section-ja {
  display: block;
  font-size: 0.875rem;
  color: #aaaaaa;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-works-single__section-ja {
    font-size: 0.75rem;
    margin-top: 0.125rem;
  }
}

.p-works-single__section-body {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-works-single__section-body {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}
.p-works-single__section-body p {
  white-space: pre-line;
}

/* back button */
.p-works-single__back {
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works-single__back {
    margin-top: 1.875rem;
  }
}

/* -----------------------------------------------------------------
  works archive
----------------------------------------------------------------- */
.p-works {
  background-color: #fff;
  padding: 17.5rem 0 21.875rem;
  position: relative;
}
.p-works::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding: 9.375rem 0 6.25rem;
  }
}

/* filter tags */
.p-works__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 6.875rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-works__filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 3.75rem;
  }
  .p-works__filter .p-works__filter-tag:first-child {
    grid-column: 1/-1;
  }
}

.p-works__filter-tag {
  display: inline-block;
  min-width: 10.625rem;
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .p-works__filter-tag {
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-works__filter-tag:hover {
    background-color: #ff5e14;
    border-color: #ff5e14;
    color: #fff;
  }
}

.p-works__filter-tag.is-active {
  background-color: #ff5e14;
  border-color: #ff5e14;
  color: #fff;
}

/* grid */
.p-works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5.625rem 2.5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-works__grid {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    grid-gap: 3.75rem;
  }
}

.p-works__card {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-works__card:hover .p-card__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

/* category label on card */
.p-card__cat {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 0.5rem;
  padding-left: 1.125rem;
  position: relative;
  color: #aaaaaa;
}
@media screen and (max-width: 767px) {
  .p-card__cat {
    font-size: 0.625rem;
  }
}
.p-card__cat::before {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #ff5e14;
  position: absolute;
  top: 0.875rem;
  left: 0;
}

/* pagination */
.p-works__pagination {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-works__pagination {
    margin-top: 3.75rem;
  }
}

/* coming soon (empty category) */
.p-works__coming-soon {
  padding-block: 7.5rem;
  font-family: neulis-sans, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1a2b3c;
}
@media screen and (max-width: 767px) {
  .p-works__coming-soon {
    padding-block: 7.5rem 5rem;
    font-size: 1.75rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
    cta
----------------------------------------------------------------- */
.cta {
  position: relative;
  z-index: 3;
}
.cta > .l-inner {
  position: relative;
  z-index: 3;
}
.cta__content {
  display: block;
  padding: 3.375rem 1.875rem 1.3125rem 3.6875rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, .1);
  border: 0.0625rem solid #fff;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .cta__content:hover .c-more-btn {
    border-color: #ff5e14;
  }
  .cta__content:hover .c-more-btn__icon img {
    z-index: 10;
  }
  .cta__content:hover .c-more-btn__icon::before {
    -webkit-transform: translate(-50%, -50%) scale(40);
            transform: translate(-50%, -50%) scale(40);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .cta__content {
    padding: 1.875rem 1.875rem 1.3125rem 1.6875rem;
  }
}

.cta__recruit {
  border-radius: 1.25rem;
}

.cta__text {
  margin-top: 0.9375rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
  .cta__text {
    margin-top: 1.5rem;
  }
}

.cta__more-btn {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .cta__more-btn {
    margin-top: 3.25rem;
  }
}

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

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
/* ベース
------------------------------------------------ */
.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s 0s;
}

/* 背景画像
------------------------------------------------ */
.p-drawer__bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/site_main_bg.webp);
  background-size: cover;
  background-position: center;
}
.p-drawer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

/* インナー
------------------------------------------------ */
.p-drawer__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* 閉じるボタン
------------------------------------------------ */
.p-drawer__close {
  position: absolute;
  top: 4.875rem;
  right: clamp(2.5rem, 8vw, 7.5rem);
  width: 2.375rem;
  height: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3;
}
.p-drawer__close span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #fff;
}
.p-drawer__close span:nth-child(1) {
  top: 0.25rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.p-drawer__close span:nth-child(2) {
  top: 0.125rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .p-drawer__close {
    top: 2.8125rem;
    right: 2.1875rem;
  }
}

/* ロゴ
------------------------------------------------ */
.p-drawer__logo {
  position: absolute;
  top: 4.6875rem;
  left: clamp(2.5rem, 8vw, 7.5rem);
  width: 12.625rem;
}
.p-drawer__logo a {
  display: block;
}
.p-drawer__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    top: 2.375rem;
    left: 1.75rem;
    width: 8.9375rem;
  }
}

/* ボディ（ナビ + CTA）
------------------------------------------------ */
.p-drawer__body {
  position: absolute;
  top: 13.125rem;
  left: clamp(2.5rem, 8vw, 7.5rem);
  right: clamp(2.5rem, 8vw, 7.5rem);
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-drawer__body {
    top: 9rem;
    left: 0;
    right: 0;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 14rem);
  }
}

/* SP 縦書きキャッチコピー
------------------------------------------------ */
.p-drawer__tagline {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__tagline {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 5.625rem;
    margin-right: 0.5rem;
  }
}

.p-drawer__tagline-ja {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.p-drawer__tagline-en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: neulis-sans, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #fff;
  text-transform: uppercase;
}

/* SP ナビラップ（nav + sp-links をまとめる）
------------------------------------------------ */
.p-drawer__nav-wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

/* ナビ
------------------------------------------------ */
.p-drawer__nav {
  display: flex;
  gap: clamp(1.5rem, 5vw, 4.625rem);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav {
    gap: 1rem;
    flex: 1;
  }
}

.p-drawer__nav-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-drawer__nav-item {
  opacity: 0;
}
.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item + .p-drawer__nav-item {
    margin-top: 1.25rem;
  }
  .u-desktop + .p-drawer__nav-item {
    margin-top: 0;
  }
}

.p-drawer__nav-link {
  display: block;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-drawer__nav-link:hover .p-drawer__nav-en {
    opacity: 0.6;
  }
}

.p-drawer__nav-en {
  display: block;
  font-family: neulis-sans, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.4375rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #fff;
  line-height: 1.45;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-en {
    font-size: 1.3125rem;
    line-height: 1.4;
    white-space: nowrap;
  }
}

.p-drawer__nav-ja {
  display: block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a0a0a0;
  line-height: 1.2;
  margin-top: 0.125rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-ja {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }
}

/* PC CTA カード（RECRUIT / CONTACT）
------------------------------------------------ */
.p-drawer__cta {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  width: clamp(21.25rem, 36vw, 34.5rem);
}
@media screen and (max-width: 767px) {
  .p-drawer__cta {
    display: none;
  }
}
.p-drawer__cta .p-drawer__cta-card {
  padding: 1rem;
  border-radius: 0.625rem;
}
.p-drawer__cta .c-section-title__upper {
  padding-bottom: 0;
  border-bottom: none;
}
.p-drawer__cta .c-section-title__main {
  font-size: 2.4375rem;
}

.p-drawer__cta-card {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 1.875rem 1.875rem 1.5625rem 1.875rem;
  background: rgba(255, 255, 255, .1);
  border: 0.0625rem solid #fff;
  border-radius: 1.25rem;
  box-sizing: border-box;
  opacity: 0;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .p-drawer__cta-card:hover {
    background: rgba(255, 255, 255, .18);
  }
}

.p-drawer__cta-more {
  margin-top: 1.25rem;
}
.p-drawer__cta-more .c-more-btn {
  width: 4.625rem;
}
.p-drawer__cta-more .c-more-btn::after {
  width: 20px;
  height: 20px;
}
.p-drawer__cta-more .c-more-btn__text {
  font-size: 0.4375rem;
}
.p-drawer__cta-more .c-more-btn__icon {
  width: 20px;
  height: 20px;
}
.p-drawer__cta-more .c-more-btn__icon::after {
  width: 20px;
  height: 20px;
}
.p-drawer__cta-more .c-more-btn__icon img {
  width: 6px;
  height: 6px;
}

/* PC ボトムキャッチコピー
------------------------------------------------ */
.p-drawer__bottom {
  position: absolute;
  left: clamp(2.5rem, 8vw, 7.5rem);
  bottom: 3.125rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-drawer__bottom {
    display: none;
  }
}

.p-drawer__bottom-en {
  font-family: neulis-sans, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}

.p-drawer__bottom-ja {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(3.125rem, 6.4vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

/* SP フッターリンク
------------------------------------------------ */
.p-drawer__sp-footer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__sp-footer {
    display: block;
    position: absolute;
    left: 1.75rem;
    right: 1.5625rem;
    bottom: 1.875rem;
  }
}

.p-drawer__sp-copyright {
  display: block;
  font-family: neulis-sans, sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  padding-top: 0.9375rem;
  border-top: 1px solid currentColor;
}

.p-drawer__sp-links {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__sp-links {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
    margin-top: 1.875rem;
  }
}
.p-drawer__sp-links li + li {
  margin-top: 0.375rem;
}
.p-drawer__sp-links a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 0.875rem;
}
.p-drawer__sp-links a::before {
  content: "⚫︎";
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  top: 20%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-drawer__sp-links a:hover {
    opacity: 0.7;
  }
}

.p-footer {
  position: relative;
  z-index: 2;
  background: linear-gradient(35deg, #1a2b3c 0%, #1a2b3c 70%, #067c9d 100%);
  padding: 5.9375rem 1.5625rem 2.375rem;
  margin-top: -1.25rem;
  border-radius: 1.25rem 1.25rem 0 0;
  clip-path: inset(0 round 1.25rem 1.25rem 0 0);
  color: #fff;
  position: relative;
}
.p-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/noise.webp) repeat center/contain;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.75rem 0 7.5rem;
  }
}

.p-footer__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-footer__inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 5%;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 5% 2.1875rem;
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__item--left {
    display: contents;
  }
}

.p-footer__logo {
  max-width: 12.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 8.9375rem;
    grid-column: 1/-1;
    margin-bottom: 1.25rem;
  }
}

.p-footer__textarea {
  margin-top: 3.8125rem;
  padding-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__textarea {
    margin-top: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    grid-column: 1;
    grid-row: 2/5;
  }
}

.p-footer__text--en {
  font-family: neulis-sans, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__text--en {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.p-footer__text--ja {
  font-size: clamp(3.125rem, -0.17rem + 6.86vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__text--ja {
    margin-top: 0rem;
    margin-right: 0.3125rem;
    font-size: 2.25rem;
    white-space: nowrap;
  }
}

.p-footer__lower {
  padding-top: 2.3125rem;
  display: flex;
  justify-content: space-between;
  border-top: #fff 0.0625rem solid;
}
@media screen and (max-width: 767px) {
  .p-footer__lower {
    display: contents;
  }
}

.p-footer__copyright {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.625rem;
    grid-column: 1/-1;
    grid-row: 5;
    padding-top: 1.125rem;
    border-top: #fff 0.0625rem solid;
  }
}

.p-footer__disclaimer {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__disclaimer {
    flex-direction: column;
    gap: 0.3125rem;
    grid-column: 2;
    grid-row: 3;
    margin-top: 0.625rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-footer__nav {
    grid-column: 2;
    grid-row: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    gap: 0.75rem;
  }
}

.p-footer__nav-item {
  font-family: neulis-sans, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    font-size: 1.3125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item a {
    display: inline-block;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 0 #fff, 0 1.5em #fff;
    transition: text-shadow 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  }
  .p-footer__nav-item a:hover {
    text-shadow: 0 -1.5em #fff, 0 0 #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-footer__nav-item a {
    display: inline;
    overflow: visible;
    color: #fff;
    text-shadow: none;
    transition: none;
  }
  .p-footer__nav-item a:hover {
    text-shadow: none;
  }
}

.p-footer__nav-item:nth-child(1) {
  margin-top: 0rem;
}

.p-footer__nav-item--ja {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #aaaaaa;
}

.p-footer__disclaimer-item {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__disclaimer-item {
    font-size: 0.75rem;
  }
}
.p-footer__disclaimer-item::before {
  content: "⚫︎";
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  top: 15%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-footer__disclaimer-item a {
    display: inline-block;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 0 #fff, 0 1.5em #fff;
    transition: text-shadow 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  }
  .p-footer__disclaimer-item a:hover {
    text-shadow: 0 -1.5em #fff, 0 0 #fff;
  }
}

.p-footer__btn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__btn {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    justify-self: end;
    margin-top: 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-footer__btn:hover .p-footer__btn-text {
    text-shadow: 0 -1.5em #fff, 0 0 #fff;
  }
}

.p-footer__btn-img {
  width: 3.75rem;
  height: 3.75rem;
}

.p-footer__btn-text {
  font-family: neulis-sans, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .p-footer__btn-text {
    overflow: hidden;
    color: transparent;
    text-shadow: 0 0 #fff, 0 1.5em #fff;
    transition: text-shadow 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  }
}

.p-header {
  background-color: transparent;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  position: fixed;
  transition: 0.3s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-header.is-dark {
  mix-blend-mode: difference;
  mix-blend-mode: exclusion;
}

.p-header__inner {
  max-width: 100%;
  padding-inline: 3.125rem;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10.4375rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 6.25rem;
    padding-left: 28px;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  max-width: 12.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 8.9375rem;
  }
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__logo a img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.p-header__contact {
  width: 100%;
  max-width: 6.875rem;
  margin-right: 4.6875rem;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-family: neulis-sans, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff5e14;
  transition: color 0.4s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    display: none;
  }
}
.p-header__contact a {
  display: block;
  overflow: hidden;
  clip-path: inset(0);
  color: transparent;
  text-shadow: 0 0 #ff5e14, 0 1.5em #ff5e14;
  transition: text-shadow 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  white-space: nowrap;
}
@media (any-hover: hover) {
  .p-header__contact a:hover {
    text-shadow: 0 -1.5em #ff5e14, 0 0 #ff5e14;
  }
}

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

.p-header__nav-item {
  height: 100%;
}
.p-header__nav-item a {
  display: flex;
  place-items: center;
  height: 100%;
  padding-inline: 1.5rem;
  position: relative;
  white-space: nowrap;
}
.p-header__nav-item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  width: calc(100% - 3rem);
  height: 1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.p-header.is-bg {
  background-color: #1a2b3c;
  mix-blend-mode: normal;
}

body.is-fixed .p-header__logo,
body.is-fixed .p-header__contact,
body.is-fixed .p-header__hamburger {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.is-member-modal-open {
  overflow: hidden;
}

/* -----------------------------------------------------------------
  Snow Monkey Forms ベーススタイル上書き
  - サイト全体に効くベース。ページ固有の配色は各ページのSCSSで上書きする
  - 対応コントロール:
    text / tel / email / url / textarea / checkbox / select / file / buttons
----------------------------------------------------------------- */
.snow-monkey-form {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1a2b3c;
}

/* 各項目の縦余白（CONTACTアートボード実測 約163px間隔 → 入力コントロール約64px+ラベル約20px から逆算） */
.snow-monkey-form .smf-item {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-item {
    margin-bottom: 1.5rem;
  }
}

.snow-monkey-form .smf-item:last-child {
  margin-bottom: 0;
}

/* ラベル（CONTACT実測: Zen Kaku Gothic Antique Bold 17px） */
.snow-monkey-form .smf-item__label {
  display: block;
  margin-bottom: 0.75rem;
}

.snow-monkey-form .smf-item__label__text {
  color: #1a2b3c;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.1764705882;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-item__label__text {
    font-size: 0.875rem;
  }
}

/* 必須バッジ（SMFは data-validations="required" で必須を管理するため ~= で部分一致） */
.snow-monkey-form .smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  content: "＊必須";
  color: #d32f2f;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

/* 説明テキスト（CONTACT実測: Bold 17px。本文と同サイズで揃える） */
.snow-monkey-form .smf-item__description {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #aaaaaa;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-item__description {
    font-size: 0.8125rem;
  }
}

/* エラーメッセージ */
.snow-monkey-form .smf-error-messages {
  margin-top: 0.5rem;
  color: #d32f2f;
  font-size: 0.875rem;
  font-weight: 500;
}

/* -----------------------------------------------------------------
  共通: text / tel / email / url / textarea / select
----------------------------------------------------------------- */
.snow-monkey-form .smf-text-control__control,
.snow-monkey-form .smf-tel-control__control,
.snow-monkey-form .smf-email-control__control,
.snow-monkey-form .smf-url-control__control,
.snow-monkey-form .smf-textarea-control__control,
.snow-monkey-form .smf-select-control__control {
  width: 100%;
  padding: 1.5625rem;
  background-color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1a2b3c;
  line-height: 1.6;
  -webkit-appearance: none;
          appearance: none;
  transition: border-color 0.2s;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-text-control__control,
  .snow-monkey-form .smf-tel-control__control,
  .snow-monkey-form .smf-email-control__control,
  .snow-monkey-form .smf-url-control__control,
  .snow-monkey-form .smf-textarea-control__control,
  .snow-monkey-form .smf-select-control__control {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
}

.snow-monkey-form .smf-text-control__control::-webkit-input-placeholder,
.snow-monkey-form .smf-tel-control__control::-webkit-input-placeholder,
.snow-monkey-form .smf-email-control__control::-webkit-input-placeholder,
.snow-monkey-form .smf-url-control__control::-webkit-input-placeholder,
.snow-monkey-form .smf-textarea-control__control::-webkit-input-placeholder {
  color: #aaaaaa;
}

.snow-monkey-form .smf-text-control__control::-ms-input-placeholder,
.snow-monkey-form .smf-tel-control__control::-ms-input-placeholder,
.snow-monkey-form .smf-email-control__control::-ms-input-placeholder,
.snow-monkey-form .smf-url-control__control::-ms-input-placeholder,
.snow-monkey-form .smf-textarea-control__control::-ms-input-placeholder {
  color: #aaaaaa;
}

.snow-monkey-form .smf-text-control__control::placeholder,
.snow-monkey-form .smf-tel-control__control::placeholder,
.snow-monkey-form .smf-email-control__control::placeholder,
.snow-monkey-form .smf-url-control__control::placeholder,
.snow-monkey-form .smf-textarea-control__control::placeholder {
  color: #aaaaaa;
}

.snow-monkey-form .smf-text-control__control:focus,
.snow-monkey-form .smf-tel-control__control:focus,
.snow-monkey-form .smf-email-control__control:focus,
.snow-monkey-form .smf-url-control__control:focus,
.snow-monkey-form .smf-textarea-control__control:focus,
.snow-monkey-form .smf-select-control__control:focus {
  outline: none;
  box-shadow: 0 0 0 0.125rem #ff5e14;
}

/* -----------------------------------------------------------------
  textarea
----------------------------------------------------------------- */
.snow-monkey-form .smf-textarea-control__control {
  min-height: 12.5rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-textarea-control__control {
    min-height: 8.75rem;
  }
}

/* -----------------------------------------------------------------
  select
----------------------------------------------------------------- */
.snow-monkey-form .smf-select-control {
  position: relative;
  display: block;
}
.snow-monkey-form .smf-select-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.25rem;
  height: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'%3E%3Cpath d='M1 1l9 8 9-8' stroke='%231a2b3c' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-select-control::after {
    right: 1.25rem;
    width: 0.875rem;
    height: 0.4375rem;
  }
}

.snow-monkey-form .smf-select-control__control {
  padding-right: 3.75rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-select-control__control {
    padding-right: 2.75rem;
  }
}

/* SMFデフォルトのトグル矢印（::beforeで描くコの字）は非表示 */
.snow-monkey-form .smf-select-control .smf-select-control__toggle {
  display: none;
}

/* -----------------------------------------------------------------
  checkbox
----------------------------------------------------------------- */
.snow-monkey-form .smf-checkboxes-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.snow-monkey-form .smf-checkboxes-control__control {
  margin: 0;
}

.snow-monkey-form .smf-checkbox-control {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}

/* ネイティブのチェックボックスは視覚的に隠す（アクセシビリティのため残す） */
.snow-monkey-form .smf-checkbox-control__control {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

/* ラベル＝カスタムボックス＋テキスト */
.snow-monkey-form .smf-checkbox-control__label {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2b3c;
  cursor: pointer;
  /* チェックボックス枠 */
  /* チェックマーク（白の斜め線） */
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-checkbox-control__label {
    padding-left: 1.75rem;
    font-size: 0.8125rem;
  }
}
.snow-monkey-form .smf-checkbox-control__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.snow-monkey-form .smf-checkbox-control__label::after {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 50%;
  width: 0.625rem;
  height: 0.375rem;
  border-left: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  -webkit-transform: translate(0, -75%) rotate(-45deg);
          transform: translate(0, -75%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* チェック時：枠をネイビー塗り＋チェックマーク表示 */
.snow-monkey-form .smf-checkbox-control__control:checked + .smf-checkbox-control__label::before {
  background-color: #1a2b3c;
  border-color: #1a2b3c;
}

.snow-monkey-form .smf-checkbox-control__control:checked + .smf-checkbox-control__label::after {
  opacity: 1;
}

/* キーボードフォーカス時のリング */
.snow-monkey-form .smf-checkbox-control__control:focus-visible + .smf-checkbox-control__label::before {
  box-shadow: 0 0 0 0.1875rem rgba(255, 94, 20, .3);
}

/* ラベル内のリンク（プライバシーポリシーなど） */
.snow-monkey-form .smf-checkbox-control__label a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .snow-monkey-form .smf-checkbox-control__label a:hover {
    opacity: 0.7;
  }
}

/* プライバシーポリシー同意専用（中央寄せ。CONTACT実測: 確認ボタンとの間124px） */
.snow-monkey-form .privacy-policy {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .privacy-policy {
    margin-top: 1.75rem;
  }
}

/* -----------------------------------------------------------------
  file upload
  - SMFは <input type="file"> を内部的に隠して <span class="smf-file-control__label">
    を疑似ボタンとして見せる作り。
  - SMFデフォルトでグラデーション背景＋ボーダーが当たっているので必ず打ち消す。
  - セレクタはクラス3つにして詳細度をSMFデフォルトより高くする。
----------------------------------------------------------------- */
/* 疑似ボタン「ファイルを選択」 */
.snow-monkey-form .smf-file-control .smf-file-control__label {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 0.625rem;
  color: #1a2b3c;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-file-control .smf-file-control__label {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
  }
}
@media (any-hover: hover) {
  .snow-monkey-form .smf-file-control .smf-file-control__label:hover {
    opacity: 0.85;
  }
}

/* ファイル名表示「選択されていません」/ アップロード後のファイル名 */
.snow-monkey-form .smf-file-control .smf-file-control__filename {
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1a2b3c;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-file-control .smf-file-control__filename {
    font-size: 0.75rem;
  }
}

/* クリアボタン */
.snow-monkey-form .smf-file-control .smf-file-control__clear {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1a2b3c;
  cursor: pointer;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .snow-monkey-form .smf-file-control .smf-file-control__clear:hover {
    opacity: 0.7;
  }
}

/* アップロード済みのファイル名行 */
.snow-monkey-form .smf-file-control__value {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #1a2b3c;
}

/* -----------------------------------------------------------------
  ボタン（送信 / 確認 / 戻る）
----------------------------------------------------------------- */
.snow-monkey-form .smf-action {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.75rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-action {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
  }
}

/* 確認・送信・戻るボタン（CONTACT実測: 入力内容の確認 = Bold 17px）
   SMFはデフォルトで background-image にグラデーションを当てているので
   background-image を必ず無効化すること */
.snow-monkey-form .smf-action .smf-button-control__control {
  display: block;
  width: 100%;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-action .smf-button-control__control {
    padding: 0.875rem 1.875rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
}

/* ボタンを内包する <span class="smf-button-control"> も幅いっぱいに */
.snow-monkey-form .smf-action .smf-button-control {
  display: block;
  width: 100%;
}

/* 送信・確認ボタン（プライマリ） SMFは data-action 属性で識別する */
.snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm],
.snow-monkey-form .smf-action .smf-button-control__control[data-action=submit],
.snow-monkey-form .smf-action .smf-button-control__control[data-action=complete] {
  background-color: #ff5e14;
  background-image: none;
  color: #fff;
  border: none;
}
@media (any-hover: hover) {
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm]:hover,
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=submit]:hover,
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete]:hover {
    background-color: #1a2b3c;
  }
}

/* 戻るボタン（セカンダリ） */
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back] {
  background-color: transparent;
  background-image: none;
  color: #1a2b3c;
  border: 0.0625rem solid #1a2b3c;
}
@media (any-hover: hover) {
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=back]:hover {
    background-color: #1a2b3c;
    color: #fff;
  }
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}

/* -----------------------------------------------------------------
  確認画面（data-screen="confirm"）
  - 入力コントロールを読み取り専用のテキスト表示に切り替え
  - 装飾的な要素（矢印・カスタムチェックボックス等）を非表示
----------------------------------------------------------------- */
/* 入力コントロールの背景・パディングを除去してテキスト表示にする */
.snow-monkey-form[data-screen=confirm] .smf-text-control__control,
.snow-monkey-form[data-screen=confirm] .smf-tel-control__control,
.snow-monkey-form[data-screen=confirm] .smf-email-control__control,
.snow-monkey-form[data-screen=confirm] .smf-url-control__control,
.snow-monkey-form[data-screen=confirm] .smf-textarea-control__control,
.snow-monkey-form[data-screen=confirm] .smf-select-control__control {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border-bottom: 0.0625rem solid #dcdcdc;
  box-shadow: none;
}

/* textarea の min-height を解除 */
.snow-monkey-form[data-screen=confirm] .smf-textarea-control__control {
  min-height: 0;
}

/* select の矢印アイコンを非表示 */
.snow-monkey-form[data-screen=confirm] .smf-select-control::after {
  display: none;
}

/* select の右パディングを通常に戻す */
.snow-monkey-form[data-screen=confirm] .smf-select-control__control {
  padding-right: 0;
}

/* チェックボックスのカスタムボックス・チェックマークを非表示 */
.snow-monkey-form[data-screen=confirm] .smf-checkbox-control__label::before,
.snow-monkey-form[data-screen=confirm] .smf-checkbox-control__label::after {
  display: none;
}

/* チェックボックスラベルの左パディングを除去 */
.snow-monkey-form[data-screen=confirm] .smf-checkbox-control__label {
  padding-left: 0;
}

/* ファイルアップロードの「ファイルを選択」ボタンを非表示 */
.snow-monkey-form[data-screen=confirm] .smf-file-control .smf-file-control__label {
  display: none;
}

/* ファイルアップロードのクリアボタンを非表示 */
.snow-monkey-form[data-screen=confirm] .smf-file-control .smf-file-control__clear {
  display: none;
}

/* 必須バッジ（＊必須）を非表示 */
.snow-monkey-form[data-screen=confirm] .smf-item__label__text::after {
  display: none;
}

/* プライバシーポリシー同意を非表示 */
.snow-monkey-form[data-screen=confirm] .privacy-policy {
  display: none;
}

/* -----------------------------------------------------------------
  完了画面（data-screen="complete"）
----------------------------------------------------------------- */
.snow-monkey-form[data-screen=complete] .smf-complete-content {
  padding: 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
}
.snow-monkey-form[data-screen=complete] .smf-complete-content h2 {
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form[data-screen=complete] .smf-complete-content h2 {
    font-size: 1.25rem;
    text-align: left;
  }
}
.snow-monkey-form[data-screen=complete] .smf-complete-content h2 + p {
  margin-top: 2em;
}
.snow-monkey-form[data-screen=complete] .smf-complete-content p {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form[data-screen=complete] .smf-complete-content p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .snow-monkey-form[data-screen=complete] .smf-complete-content {
    padding: 0;
  }
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tab-contents {
  position: relative;
}

.p-tab-contents__tab-button[aria-selected=true] {
  color: red;
}

.p-tab-contents__panel-wrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

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

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

.p-tab-contents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=style.css.map */
