@charset "UTF-8";
/*
 * 関数定義用ファイル
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display: none;
}

:root {
  --color-black: #333;
  --color-purple: #4703f0;
  --color-gray: #a7a7a7;
  --color-pink: #ee1fb5;
  --color-red: #ea0000;
  --color-border-gray: #f7f7f7;
  --color-bg-black: #252329;
  --color-bg-black2: #231c2f;
  --color-bg-black3: #181828;
  --color-gradient: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  --border-gradient: linear-gradient(104deg, #4703f0 -0.96%, #ee1fb5 52.67%);
  --border-gradient2: linear-gradient(104deg, #4703f0 39.78%, #c830e0 52.67%);
  --font-family-common: "Noto Sans JP", sans-serif;
  --font-family-en: "soleil", sans-serif;
  --duration: 0.3s;
  --ls-md: 0.1em;
  --lh-sm: 1.2;
  --lh-md: 1.5;
  --lh-lg: 1.8;
}

/*
 * 流体タイポ計算用 関数
 *
 * @use parts/_fonts.scssファイルを参照
 */
/*
 * 逆流体タイポ計算用 関数
 * PCでは小さく、スマホでは大きく表示する場合に使用
 */
/*
 * メディアクエリ用mixin
 */
body {
  background-color: #fff;
  font-family: var(--font-family-common);
  line-height: var(--lh-md);
  letter-spacing: var(--ls-md);
  color: var(--color-black);
  font-size: clamp(14px, 0.1104972376vw + 13.5856353591px, 15px);
  font-weight: 400;
}
@media (768px <= width) {
  body {
    line-height: var(--lh-lg);
  }
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  display: inline-block;
  transition: opacity var(--duration);
}
a:hover {
  opacity: 0.6;
}

span,
small,
b,
strong {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

b,
strong,
th,
dt {
  font-weight: 400;
}

.c-relative {
  position: relative;
}

.c-list li {
  margin-left: 1.1em;
  text-indent: -1.1em;
}
.c-list li::before {
  content: "・";
}

/* ===============================================
#inner
=============================================== */
.c-inner {
  width: 84%;
  margin-inline: auto;
}

.c-inner-lg {
  width: 92%;
  margin-inline: auto;
}

.m-auto {
  margin-inline: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-15 {
  margin-right: 15px;
}

.max-1200 {
  max-width: 1200px;
}

.max-1000 {
  max-width: 1000px;
}

.max-800 {
  max-width: 800px;
}

/* ===============================================
#余白
=============================================== */
.c-flex-col {
  display: flex;
  flex-direction: column;
}
.c-flex-col.flex-start {
  align-items: flex-start;
}

.gap-50-200 {
  gap: clamp(50px, 16.5745856354vw + -12.1546961326px, 200px);
}

.gap-100-130 {
  gap: clamp(100px, 3.3149171271vw + 87.5690607735px, 130px);
}

.gap-80-130 {
  gap: clamp(80px, 5.5248618785vw + 59.2817679558px, 130px);
}

.gap-60-80 {
  gap: clamp(60px, 2.2099447514vw + 51.7127071823px, 80px);
}

.gap-60 {
  gap: 60px;
}

.gap-60-100 {
  gap: clamp(60px, 4.4198895028vw + 43.4254143646px, 100px);
}

.gap-50-100 {
  gap: clamp(50px, 5.5248618785vw + 29.2817679558px, 100px);
}

.gap-40-60 {
  gap: clamp(40px, 2.2099447514vw + 31.7127071823px, 60px);
}

.gap-40 {
  gap: 40px;
}

.gap-30-60 {
  gap: clamp(30px, 3.3149171271vw + 17.5690607735px, 60px);
}

.gap-30-50 {
  gap: clamp(30px, 2.2099447514vw + 21.7127071823px, 50px);
}

.gap-30-40 {
  gap: clamp(30px, 1.1049723757vw + 25.8563535912px, 40px);
}

.gap-40-30 {
  gap: 40px;
}
@media (768px <= width) {
  .gap-40-30 {
    gap: 30px;
  }
}

.gap-20-40 {
  gap: clamp(20px, 2.2099447514vw + 11.7127071823px, 40px);
}

.gap-20-30 {
  gap: clamp(20px, 1.1049723757vw + 15.8563535912px, 30px);
}

.gap-15-30 {
  gap: clamp(15px, 1.6574585635vw + 8.7845303867px, 30px);
}

.gap-15 {
  gap: 15px;
}

.gap-10-20 {
  gap: clamp(10px, 1.1049723757vw + 5.8563535912px, 20px);
}

.gap-5-10 {
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}

.gap-5 {
  gap: 5px;
}

.gap-lh {
  gap: 1lh;
}

.gap-2lh {
  gap: 2lh;
}

.pt-100-200 {
  padding-top: clamp(
    100px,
    11.0497237569vw + 58.5635359116px,
    200px
  ) !important;
}

.pb-80-130 {
  padding-bottom: clamp(
    80px,
    5.5248618785vw + 59.2817679558px,
    130px
  ) !important;
}

.pb-40-60 {
  padding-bottom: clamp(
    40px,
    2.2099447514vw + 31.7127071823px,
    60px
  ) !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

@media (width <= 767px) {
  .pd-inline-15 {
    padding-inline: 15px;
  }
}

.c-sec-pd {
  padding-block: clamp(80px, 5.5248618785vw + 59.2817679558px, 130px);
}

/* ===============================================
#デバイス非表示
=============================================== */
@media (768px <= width) {
  .c-sp {
    display: none !important;
  }
}

@media (1024px <= width) {
  .c-tb_sp {
    display: none !important;
  }
}

@media (width <= 767px) {
  .c-pc_tb {
    display: none !important;
  }
}

@media (width <= 1023px) {
  .c-pc {
    display: none !important;
  }
}

/* ===============================================
#見出し
=============================================== */
.c-heading__h2 {
  display: flex;
  flex-direction: column;
  padding-top: clamp(15px, 0.5524861878vw + 12.9281767956px, 20px);
  position: relative;
}
.c-heading__h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--border-gradient);
  position: absolute;
  bottom: 100%;
  left: 0;
}
.c-heading__h2.border-none {
  padding-top: 0;
}
.c-heading__h2.border-none::before {
  display: none;
}
.c-heading__h2.center {
  align-items: center;
}
.c-heading__h2 .en {
  font-family: var(--font-family-en);
  font-size: clamp(22px, 0.8839779006vw + 18.6850828729px, 30px);
  font-weight: 600;
  line-height: var(--lh-md);
}
@media (768px <= width) {
  .c-heading__h2 .en {
    font-weight: 500;
  }
}
.c-heading__h2 .ja {
  font-size: clamp(14px, 0.2209944751vw + 13.1712707182px, 16px);
}
@media (width <= 767px) {
  .c-heading__h2 .ja {
    font-weight: 500;
  }
}

.c-heading__h3 {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  position: relative;
}
.c-heading__h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--border-gradient);
  position: absolute;
  top: 100%;
  left: 0;
}
.c-heading__h3.border-none::before {
  display: none;
}
.c-heading__h3 .en {
  font-family: var(--font-family-en);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 400;
}
.c-heading__h3 .ja {
  font-size: clamp(14px, 0.4419889503vw + 12.3425414365px, 18px);
}

.c-heading__h4 {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  position: relative;
}
.c-heading__h4::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--border-gradient);
  position: absolute;
  bottom: 100%;
  left: 0;
}
.c-heading__h4.border-none {
  padding-top: 0;
}
.c-heading__h4.border-none::before {
  display: none;
}
.c-heading__h4.center {
  align-items: center;
}
.c-heading__h4 .en-line-height {
  margin-top: -0.3lh;
}
.c-heading__h4 .en {
  font-family: var(--font-family-en);
  font-size: clamp(22px, 0.8839779006vw + 18.6850828729px, 30px);
  line-height: var(--lh-md);
}
.c-heading__h4 .ja {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}

.c-heading_gradient {
  font-family: var(--font-family-en);
  font-size: clamp(22px, 0.8839779006vw + 18.6850828729px, 30px);
  line-height: var(--lh-lg);
}
.c-heading_gradient span {
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-heading_gradient.pattern-2 span {
  background: linear-gradient(181deg, #ee00ad 50.1%, #4703f0 72.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-heading_right_border {
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.c-heading_right_border span {
  flex: 1;
}
.c-heading_right_border::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--border-gradient2);
}

/* ===============================================
#フォント
=============================================== */
.lh-sm {
  line-height: var(--lh-sm);
}

.lh-md {
  line-height: var(--lh-md);
}

.lh-lg {
  line-height: var(--lh-lg);
}

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

@media (768px <= width) {
  .pc-text-center {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}

.weight-400 {
  font-weight: 400;
}

.weight-600 {
  font-weight: 600;
}

.f-en {
  font-family: var(--font-family-en);
}

.color-white {
  color: #fff !important;
}

.color-pink {
  color: var(--color-pink) !important;
}

.color-purple {
  color: var(--color-purple) !important;
}

.color-gradient {
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fs-36-48 {
  font-size: clamp(36px, 1.3259668508vw + 31.0276243094px, 48px) !important;
}

.fs-20-45 {
  font-size: clamp(20px, 2.7624309392vw + 9.6408839779px, 45px) !important;
}

.fs-20-36 {
  font-size: clamp(20px, 1.7679558011vw + 13.3701657459px, 36px) !important;
}

.fs-16-24 {
  font-size: clamp(16px, 0.8839779006vw + 12.6850828729px, 24px) !important;
}

.fs-20-24 {
  font-size: clamp(20px, 0.4419889503vw + 18.3425414365px, 24px) !important;
}

.fs-18-20 {
  font-size: clamp(18px, 0.2209944751vw + 17.1712707182px, 20px) !important;
}

.fs-16-18 {
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px) !important;
}

.fs-12-14 {
  font-size: clamp(12px, 0.2209944751vw + 11.1712707182px, 14px) !important;
}

.fs-10-12 {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px) !important;
}

/* ===============================================
#ボタン
=============================================== */
.c-btn_arrow {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.8839779006vw + 8.6850828729px, 20px);
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn_arrow .icon {
  width: clamp(16px, 0.8839779006vw + 12.6850828729px, 24px);
}

.c-btn_contact {
  padding: 1.5px;
  background: var(--border-gradient);
  border-radius: 50vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-btn_contact .c-btn_contact_inner {
  padding: 16px 20px;
  background: #fff;
  border-radius: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}
.c-btn_contact.gradient {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--color-gradient);
}
.c-btn_contact.form {
  padding: 16px 20px 16px 50px;
  gap: 40px;
}
.c-btn_contact .icon {
  width: 12px;
}

.c-btn_gradient,
input[type="submit"] {
  padding: 10px 50px;
  margin-inline: auto;
  display: block;
  font-weight: 600;
  color: #fff;
  background: var(--color-gradient);
  border-radius: 50vw;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 0.1104972376vw + 13.5856353591px, 15px);
}

.c-btn_blank {
  padding: 16px 40px;
  border-radius: 50vw;
  background: var(--color-gradient);
  color: #fff;
  max-width: 230px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.c-btn_blank:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: transparent url(./../image/icon-blank.svg) no-repeat center
    center/contain;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/* ===============================================
#背景
=============================================== */
.c-bg-black {
  background-color: var(--color-bg-black);
}

.c-bg-black2 {
  background-color: var(--color-bg-black2);
}

.c-bg_gray {
  background-color: var(--color-border-gray);
}

/* ===============================================
#inview
=============================================== */
.js-fadeUp {
  transform: scale(1.2) translate3d(0, 60px, 0);
  opacity: 0;
  transition: transform 2s 0.1s cubic-bezier(0.08, 0.92, 0.35, 1),
    opacity 0.7s 0.3s;
}
.js-fadeUp.is-inview {
  transform: scale(1) translate3d(0, 0, 0);
  opacity: 1;
}

.js-fadeUps > * {
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.js-fadeUps > *:nth-child(1) {
  transition-delay: 0.18s;
}
.js-fadeUps > *:nth-child(2) {
  transition-delay: 0.36s;
}
.js-fadeUps > *:nth-child(3) {
  transition-delay: 0.54s;
}
.js-fadeUps > *:nth-child(4) {
  transition-delay: 0.72s;
}
.js-fadeUps > *:nth-child(5) {
  transition-delay: 0.9s;
}
.js-fadeUps > *:nth-child(6) {
  transition-delay: 1.08s;
}
.js-fadeUps > *:nth-child(7) {
  transition-delay: 1.26s;
}
.js-fadeUps > *:nth-child(8) {
  transition-delay: 1.44s;
}
.js-fadeUps > *:nth-child(9) {
  transition-delay: 1.62s;
}
.js-fadeUps > *:nth-child(10) {
  transition-delay: 1.8s;
}
.js-fadeUps > *:nth-child(11) {
  transition-delay: 1.98s;
}
.js-fadeUps > *:nth-child(12) {
  transition-delay: 2.16s;
}
.js-fadeUps.is-inview > * {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.js-fadeInLeft {
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 1s, opacity 0.5s ease-in;
}
.js-fadeInLeft.is-inview {
  transform: translateX(0px);
  opacity: 1;
}

@media (width <= 767px) {
  .js-fadeInLeft-sp {
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 1s, opacity 0.5s ease-in;
  }
  .js-fadeInLeft-sp.is-inview {
    transform: translateX(0px);
    opacity: 1;
  }
}

.js-bottomUp {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.08, 0.92, 0.35, 1), opacity 0.4s;
}
.js-bottomUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.js-split > span {
  overflow: hidden;
  margin-block: calc(1em - 1lh);
}
.js-split > span > span {
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-split.is-inview > span > span {
  transform: translateY(0);
}

.js-scaleUp {
  transform: scale(0.75);
  opacity: 0;
  transition: visibility 0.9s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.1s,
    opacity 1s cubic-bezier(0.37, 0.16, 0.12, 1) 0.1s,
    transform 1.1s cubic-bezier(0.16, 1.39, 0.55, 1) 0.1s;
}
.js-scaleUp.is-inview {
  transform: scale(1);
  opacity: 1;
}

/* ===============================================
#grid
=============================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (768px <= width) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2.row-reverse > *:nth-child(1) {
    order: 2;
  }
  .grid-2.row-reverse > *:nth-child(2) {
    order: 1;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (768px <= width) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (768px <= width) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(86px, 5.8563535912vw + 64.0386740331px, 139px);
  background: transparent url(../image/sp/header-filter.avif) no-repeat bottom
    center/100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media (768px <= width) {
  .header::before {
    background: transparent url(../image/header-filter.avif) no-repeat bottom
      center/100% 100%;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
}
@media (width <= 1023px) {
  .header_inner {
    padding-block: 15px;
  }
}
@media (1024px <= width <= 1170px) {
  .header_inner {
    zoom: 0.9;
  }
}

.header_logo {
  width: clamp(120px, 8.8397790055vw + 86.8508287293px, 200px);
  margin-left: calc(clamp(10px, 0.5524861878vw + 7.9281767956px, 15px) * -1);
  position: relative;
  z-index: 101;
}

.header_nav {
  color: #fff;
}
@media (width <= 1023px) {
  .header_nav {
    width: 100%;
    height: 100svh;
    background: var(--color-bg-black);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 86px 10px 86px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) ease-in-out,
      visibility var(--duration) ease-in-out;
    overflow-y: auto;
  }
  .header_nav.active {
    opacity: 1;
    visibility: visible;
  }
}

.header_nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (width <= 1023px) {
  .header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.header_nav_item {
  position: relative;
}
@media (width <= 1023px) {
  .header_nav_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (1024px <= width) {
  .header_nav_item:not(:last-child) {
    padding-block: 36px;
  }
}

.header_nav_link {
  font-size: clamp(14px, 0.1104972376vw + 13.5856353591px, 15px);
  font-weight: 600;
  position: relative;
}
@media (width <= 1023px) {
  .header_nav_link {
    min-width: 110px;
    border-bottom: 1px solid;
    -o-border-image: var(--border-gradient2) 1;
    border-image: var(--border-gradient2) 1;
    padding-bottom: 10px;
  }
}
@media (1024px <= width) {
  .header_nav_link::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    background: var(--border-gradient2);
    opacity: 0;
    transition: opacity var(--duration) ease-in-out;
  }
  .header_nav_link:hover::after {
    opacity: 1;
  }
}

.header_nav_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--color-gradient);
  padding: clamp(6px, 0.4419889503vw + 4.3425414365px, 10px)
    clamp(15px, 0.5524861878vw + 12.9281767956px, 20px);
  border-radius: 50vw;
  color: #fff;
  transition: opacity var(--duration) ease-in-out,
    visibility var(--duration) ease-in-out;
}
.header_nav_btn.active {
  opacity: 0;
  visibility: hidden;
}

.header_nav_link_icon {
  width: clamp(8px, 0.2209944751vw + 7.1712707182px, 10px);
}

.header_sp_box {
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (1024px <= width) {
  .header_sp_box {
    display: none;
  }
}

.header_hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}
.header_hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  transition: transform var(--duration) ease-in-out,
    top var(--duration) ease-in-out, opacity var(--duration) ease-in-out;
}
.header_hamburger span:nth-child(1) {
  top: 0;
}
.header_hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header_hamburger span:nth-child(3) {
  top: calc(100% - 2px);
}
.header_hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

.header_nav_sub_list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1049723757vw + 5.8563535912px, 20px);
  font-size: clamp(10px, 0.5524861878vw + 7.9281767956px, 15px);
}
@media (width <= 1023px) {
  .header_nav_sub_list {
    margin-top: 6px;
  }
}
@media (1024px <= width) {
  .header_nav_sub_list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) ease-in-out,
      visibility var(--duration) ease-in-out;
  }
  .header_nav_sub_list.show {
    opacity: 1;
    visibility: visible;
  }
}

.header_nav_sub_link {
  font-weight: 600;
}
@media (1024px <= width) {
  .header_nav_sub_link {
    color: var(--color-black);
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .header_nav_sub_link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(../image/icon-btn-arrow-black.svg) no-repeat center
      center/contain;
  }
}

/* ===============================================
#フッター
=============================================== */
.footer {
  background: var(--color-bg-black);
  padding-block: clamp(60px, 4.4198895028vw + 43.4254143646px, 100px);
  padding-bottom: 10px;
  color: #fff;
}

.footer_inner {
  max-width: 1360px;
  gap: 60px;
}
@media (768px <= width) {
  .footer_inner {
    gap: 50px;
  }
}

.footer_container {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 4.4198895028vw + 23.4254143646px, 80px);
}
@media (width <= 767px) {
  .footer_container {
    flex-direction: column;
  }
}

.footer_logo {
  width: 200px;
}
@media (width <= 767px) {
  .footer_logo {
    margin-left: -15px;
  }
}

@media (768px <= width) {
  .footer_info {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (1024px <= width) {
  .footer_info {
    margin-top: 70px;
  }
}

.footer_info_menu {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 2.2099447514vw + 21.7127071823px, 50px)
    clamp(30px, 3.3149171271vw + 17.5690607735px, 60px);
}

.footer_info_menu_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.footer_info_menu_link {
  min-width: 158px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  -o-border-image: var(--border-gradient2) 1;
  border-image: var(--border-gradient2) 1;
  font-weight: 600;
}

.footer_info_sub_menu {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer_policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 5.5248618785vw + -10.7182320442px, 60px);
}

.footer_copyright {
  display: block;
  text-align: center;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}

/* ===============================================
#ファーストビュー
=============================================== */
.top-mv_sec {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
@media (width <= 767px) {
  .top-mv_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 28, 32, 0.5);
    z-index: 2;
  }
}

.top-mv_media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-mv_media img,
.top-mv_media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.top-mv_textbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2099447514vw + 11.7127071823px, 40px);
  text-align: center;
}
@media (768px <= width) {
  .top-mv_textbox {
    display: none;
  }
}

.top-mv_title {
  font-size: clamp(22px, 4.1988950276vw + 6.2541436464px, 60px);
}

.top-mv_text {
  font-size: clamp(10px, 0.6629834254vw + 7.5138121547px, 16px);
  line-height: var(--lh-lg);
}

.top-mv_scroll {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  padding-bottom: clamp(69px, 3.8674033149vw + 54.4972375691px, 104px);
  z-index: 2;
}
.top-mv_scroll::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--border-gradient);
  width: 1px;
  height: 100px;
  animation: scroll-bar-sp 1.4s ease-in-out infinite;
}
@media (768px <= width) {
  .top-mv_scroll::before {
    animation: scroll-bar 1.4s ease-in-out infinite;
    height: 140px;
    top: 46px;
  }
}
@media (768px <= width) {
  .top-mv_scroll {
    left: 120px;
  }
}

.top-mv_scroll_text {
  font-size: clamp(10px, 0.6629834254vw + 7.5138121547px, 16px);
}
@media (768px <= width) {
  .top-mv_scroll_text {
    writing-mode: vertical-rl;
  }
}

@keyframes scroll-bar {
  0% {
    height: 0;
    top: 46px;
    opacity: 0;
  }
  30% {
    height: 140px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 140px;
    opacity: 0;
  }
}
@keyframes scroll-bar-sp {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
.top-mv_btn {
  position: fixed;
  right: clamp(10px, 5.5248618785vw + -10.7182320442px, 60px);
  bottom: clamp(10px, 9.9447513812vw + -27.2928176796px, 100px);
  z-index: 90;
  background: var(--border-gradient2);
  padding: 1.5px;
  width: 250px;
}
@media (width <= 767px) {
  .top-mv_btn {
    display: none;
  }
}

.top-mv_btn_inner {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px 2px 35px;
}

.top-mv_btn_textbox {
  white-space: nowrap;
}

.top-mv_btn_ja {
  font-size: 15px;
}

.top-mv_btn_en {
  font-family: var(--font-family-en);
  font-size: 40px;
  line-height: 1.5;
  margin-top: -12px;
  margin-left: -3px;
}

.top-mv_btn_icon {
  width: 26px;
}

/* ===============================================
#TOPリンク
=============================================== */
.top-lead_sec {
  background: transparent url(./../image/top-lead-bg_1.avif) no-repeat center
    center/cover;
}

.top-links_sec {
  padding-block: 20px;
}
@media (width <= 767px) {
  .top-links_sec {
    padding-inline: 15px;
  }
}

.top-links_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (768px <= width) {
  .top-links_list {
    width: calc(50% - 10px);
  }
  .top-links_list:nth-of-type(1) {
    width: 100%;
    display: flex;
    gap: 20px;
  }
  .top-links_list:nth-of-type(1) .top-links_link {
    width: calc(50% - 10px);
  }
  .top-links_list:nth-of-type(1)
    .top-links_link:hover
    .top-links_heading::after {
    background: transparent url(./../image/icon-arrow-after.svg) no-repeat
      center center/contain;
  }
  .top-links_list:nth-of-type(1) .top-links_heading::after {
    content: "";
    background: transparent url(./../image/icon-arrow.svg) no-repeat center
      center/contain;
    width: clamp(18px, 0.6629834254vw + 15.5138121547px, 24px);
    height: clamp(18px, 0.6629834254vw + 15.5138121547px, 24px);
    margin-top: clamp(10px, 1.1049723757vw + 5.8563535912px, 20px);
    transform: all var(--duration) ease;
  }
}

@media (width <= 767px) {
  .top-links_first_img_box {
    display: none;
  }
}
@media (768px <= width) {
  .top-links_first_img_box {
    width: calc(50% - 10px);
    overflow: hidden;
  }
  .top-links_first_img_box:has(+ .top-links_link:hover) .top-links_first_img {
    left: 100%;
  }
}

.top-links_first_img {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.top-links_link {
  position: relative;
}
@media (768px <= width) {
  .top-links_link {
    overflow: hidden;
  }
  .top-links_link:hover {
    opacity: 1;
  }
  .top-links_link:hover .top-links_hover_img {
    width: 100%;
  }
  .top-links_link:hover .top-links_img {
    opacity: 0;
  }
  .top-links_link:hover .top-links_heading_ja,
  .top-links_link:hover .top-links_heading_en {
    -webkit-text-fill-color: #fff;
  }
  .top-links_link:hover .top-links_arrow_text {
    opacity: 0.6;
  }
}

.top-links_img {
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}

.top-links_hover_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 2;
  transition: 0.5s ease;
}
@media (width <= 767px) {
  .top-links_hover_img {
    display: none;
  }
}

.top-links_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 767px) {
  .top-links_heading::after {
    content: "";
    background: transparent url(./../image/icon-arrow.svg) no-repeat center
      center/contain;
    width: clamp(18px, 0.6629834254vw + 15.5138121547px, 24px);
    height: clamp(18px, 0.6629834254vw + 15.5138121547px, 24px);
    margin-top: clamp(10px, 1.1049723757vw + 5.8563535912px, 20px);
    transform: all var(--duration) ease;
  }
}

.top-links_heading_ja {
  font-size: clamp(14px, 0.2209944751vw + 13.1712707182px, 16px);
  transform: all var(--duration) ease;
}

.top-links_heading_en {
  font-size: clamp(22px, 0.8839779006vw + 18.6850828729px, 30px);
  font-family: var(--font-family-en);
  font-weight: 500;
  transform: all var(--duration) ease;
}

.top-links_arrow_text {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 3;
  transition: 0.5s ease;
}
@media (width <= 767px) {
  .top-links_arrow_text {
    display: none;
  }
}
.top-links_arrow_text span {
  flex: 1;
  font-weight: 500;
}
.top-links_arrow_text img {
  width: 24px;
  height: 24px;
}

/* ===============================================
#エージェント一覧
=============================================== */
.top-teams_sec {
  background: transparent url(./../image/sp/top-teams-bg_1.avif) no-repeat top
    center/cover;
  padding-bottom: clamp(140px, 11.0497237569vw + 98.5635359116px, 240px);
}
@media (width <= 767px) {
  .top-teams_sec .c-btn_arrow {
    color: #fff;
  }
}
@media (768px <= width) {
  .top-teams_sec {
    background: transparent url(./../image/top-teams-bg_1.avif) no-repeat top
      center/cover;
  }
}

.top-teams_container {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 9.1712707182vw + -4.3922651934px, 113px);
}
@media (width <= 767px) {
  .top-teams_container {
    flex-direction: column;
  }
}

@media (768px <= width) {
  .top-teams_textbox {
    width: 314px;
  }
}

.top-teams_img {
  width: calc(
    100% - 314px - clamp(25px, 9.7237569061vw + -11.4640883978px, 113px)
  );
}
@media (width <= 767px) {
  .top-teams_img {
    width: calc(var(--vw) * 100);
    margin-left: calc(50% - var(--vw) * 50);
  }
}

/* ===============================================
#記事一覧
=============================================== */
.top-article_sec {
  position: relative;
  margin-top: calc(var(--vw) * -16);
  padding-top: clamp(60px, 15.4696132597vw + 1.9889502762px, 200px);
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) calc(var(--vw) * 16),
    var(--color-border-gray) calc(var(--vw) * 16),
    var(--color-border-gray) 100%
  );
}
@media (768px <= width) {
  .top-article_sec {
    margin-top: calc(var(--vw) * -8);
    background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) calc(var(--vw) * 8),
      var(--color-border-gray) calc(var(--vw) * 8),
      var(--color-border-gray) 100%
    );
  }
}

.top-article_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.top-article_inner {
  position: relative;
  z-index: 2;
}

.top-article_content {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 1.1049723757vw + 25.8563535912px, 40px);
}

.top-article_lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(30px, 4.9723756906vw + 11.3535911602px, 75px)
    clamp(30px, 1.1049723757vw + 25.8563535912px, 40px);
}
@media (768px <= width) {
  .top-article_lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (1024px <= width) {
  .top-article_lists {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 767px) {
  .top-article_list:nth-of-type(n + 4) {
    display: none;
  }
}

.top-article_link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-article_img {
  aspect-ratio: 155/81;
}

.top-article_link_body {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1.1049723757vw + 0.8563535912px, 15px);
}

.top-article_link_body_head {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.5524861878vw + 7.9281767956px, 15px);
}

.top-article_link_title {
  font-size: clamp(14px, 0.6629834254vw + 11.5138121547px, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-article_link_desc {
  font-size: clamp(12px, 0.3314917127vw + 10.7569060773px, 15px);
}

.top-article_link_time {
  font-family: var(--font-family-en);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}

/* ===============================================
#プレスリリース
=============================================== */
.top-press_sec {
  position: relative;
}
.top-press_sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80.8%;
  height: calc(100% - clamp(105px, 8.2872928177vw + 73.9226519337px, 180px));
  background-color: #f7f7f7;
  z-index: 1;
}

.top-press_inner {
  position: relative;
  z-index: 2;
}

.top-press_arrow_box {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width <= 767px) {
  .top-press_arrow_box {
    display: none;
  }
}

.top-press_arrow {
  width: 32px;
  height: 32px;
  transition: var(--duration) ease;
}
.top-press_arrow:not([disabled]):hover {
  opacity: 0.6;
}
.top-press_arrow.prev {
  background: transparent url(./../image/icon-press-arrow.svg) no-repeat center
    center/contain;
  transform: scaleX(-1);
}
.top-press_arrow.next {
  background: transparent url(./../image/icon-press-arrow.svg) no-repeat center
    center/contain;
}
.top-press_arrow[disabled] {
  background: transparent url(./../image/icon-press-arrow-disabled.svg)
    no-repeat center center/contain;
}

.top-press_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 40px clamp(30px, 4.9723756906vw + 11.3535911602px, 75px);
}
@media (768px <= width) {
  .top-press_lists {
    gap: 30px clamp(30px, 4.9723756906vw + 11.3535911602px, 75px);
  }
}

.top-press_list {
  padding-top: 20px;
}
@media (768px <= width) {
  .top-press_list {
    width: calc(
      50% - clamp(30px, 4.9723756906vw + 11.3535911602px, 75px) * 1 / 2
    );
    padding-right: 15px;
  }
  .top-press_list.hidden {
    display: none;
  }
}
@media (1024px <= width) {
  .top-press_list {
    width: calc(
      33.3333333333% - clamp(30px, 4.9723756906vw + 11.3535911602px, 75px) * 2 /
        3
    );
  }
}
@media (width <= 767px) {
  .top-press_list:nth-of-type(n + 4) {
    display: none;
  }
}

.top-press_link {
  background: var(--color-border-gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  height: 100%;
}
.top-press_link.p-press_link {
  box-shadow: 1px 1px 6px 0px rgba(168, 165, 175, 0.2);
}

.top-press_link_head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.top-press_link_time {
  padding-top: 15px;
  padding-left: 15px;
  color: var(--color-purple);
  font-family: var(--font-family-en);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 400;
  writing-mode: vertical-rl;
}

.top-press_img {
  width: 84%;
  margin-top: -20px;
  margin-right: -15px;
  aspect-ratio: 14/9;
  -o-object-position: left;
  object-position: left;
}

.top-press_link_body {
  padding: 0 clamp(15px, 0.5524861878vw + 12.9281767956px, 20px) 20px
    clamp(15px, 0.5524861878vw + 12.9281767956px, 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-press_link_body_head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.top-press_link_cat {
  background: #48474b;
  border-radius: 50vw;
  color: #fff;
  padding: 1px clamp(5px, 0.3314917127vw + 3.7569060773px, 8px);
  display: inline-block;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 600;
  line-height: var(--lh-md);
  white-space: nowrap;
}

.top-press_link_title_box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (width <= 767px) {
  .top-press_link_title_box {
    gap: 30px;
  }
}

.top-press_link_note_logo {
  width: 50px;
  margin-left: auto;
}

.top-press_link_desc {
  font-size: clamp(12px, 0.3314917127vw + 10.7569060773px, 15px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===============================================
#会社案内
=============================================== */
.top-company_bg {
  background: transparent url(./../image/sp/top-company-bg_1.avif) no-repeat
    center center/cover;
}
@media (768px <= width) {
  .top-company_bg {
    background: transparent url(./../image/top-company-bg_1.avif) no-repeat
      center center/cover;
  }
}

.top-company_lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 6.0773480663vw + -2.7900552486px, 75px);
}

@media (768px <= width) {
  .top-company_list {
    width: calc(
      50% - clamp(30px, 4.9723756906vw + 11.3535911602px, 75px) * 1 / 2
    );
  }
}
@media (1024px <= width) {
  .top-company_list {
    width: calc(
      33.3333333333% - clamp(30px, 4.9723756906vw + 11.3535911602px, 75px) * 2 /
        3
    );
  }
}

.top-company_link {
  color: #fff;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    filter 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.top-company_link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: clamp(25px, 0.5524861878vw + 22.9281767956px, 30px);
  height: clamp(25px, 0.5524861878vw + 22.9281767956px, 30px);
  background: transparent url(./../image/icon-arrow.svg) no-repeat center
    center/cover;
  z-index: 2;
}
.top-company_link:hover {
  opacity: 1;
  filter: drop-shadow(0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.12));
  transform: scale(1.02);
}

.top-company_list_title {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.top-company_img {
  aspect-ratio: 63/34;
}
@media (768px <= width) {
  .top-company_img {
    aspect-ratio: 7/5;
  }
}

/* ===============================================
#オフィス紹介
=============================================== */
.top-office_slide li {
  width: clamp(230px, 13.2596685083vw + 180.2762430939px, 350px);
}
@media (768px <= width) {
  .top-office_slide li.top-40 {
    margin-top: 40px;
  }
}
.top-office_slide li img {
  aspect-ratio: 23/18;
}
@media (768px <= width) {
  .top-office_slide li img {
    aspect-ratio: 7/5;
  }
}

/* ===============================================
#お知らせ
=============================================== */
.top-news_container {
  display: flex;
  justify-content: space-between;
  gap: 40px clamp(30px, 6.6298342541vw + 5.138121547px, 90px);
  align-items: flex-start;
}
@media (width <= 767px) {
  .top-news_container {
    flex-direction: column;
  }
}

.top-news_container_left {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-news_container_right {
  width: 100%;
  flex: 1;
}

.top-news_lists {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 2.7624309392vw + 29.6408839779px, 65px);
}
@media (768px <= width) {
  .top-news_lists {
    margin-top: 20px;
  }
}

.top-news_list {
  border-bottom: 1px solid #e7e7e7;
}

.top-news_link {
  display: flex;
  flex-direction: column;
}
@media (1024px <= width) {
  .top-news_link {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.top-news_link_img_box img {
  aspect-ratio: 23/12;
}
@media (1024px <= width) {
  .top-news_link_img_box {
    width: 230px;
    padding-block: 15px;
  }
}

.top-news_link_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}
@media (768px <= width) {
  .top-news_link_body {
    padding: 20px;
  }
}

.top-news_link_head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-news_link_time {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-family: var(--font-family-en);
  color: var(--color-gray);
  font-weight: 400;
}

.top-news_link_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.top-news_link_cat span {
  background: #48474b;
  border-radius: 50vw;
  color: #fff;
  padding: 1px clamp(5px, 0.3314917127vw + 3.7569060773px, 8px);
  display: inline-block;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 600;
  line-height: var(--lh-md);
  white-space: nowrap;
}

.top-news_link_title {
  font-weight: 600;
  line-height: var(--lh-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===============================================
#お問い合わせ
=============================================== */
.top-contact_sec {
  background: transparent url(./../image/top-contact-bg_1.avif) no-repeat center
    center/cover;
}
@media (width <= 767px) {
  .top-contact_sec {
    background: transparent url(./../image/sp/top-contact-bg_1.avif) no-repeat
      center center/cover;
  }
}

.top-contact_container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 767px) {
  .top-contact_container {
    flex-direction: column;
    gap: 30px;
  }
}

.top-contact_link {
  width: clamp(220px, 6.6298342541vw + 195.138121547px, 280px);
  transition: transform 0.5s ease;
}
.top-contact_link:hover {
  opacity: 1;
  transform: scale(1.1);
}
@media (768px <= width) {
  .top-contact_link:nth-of-type(2) {
    margin-inline: -65px;
    margin-top: -30px;
  }
}
@media (width <= 767px) {
  .top-contact_link {
    width: clamp(150px, 6.6298342541vw + 195.138121547px, 180px);
  }
}

/* ===============================================
#私たちについて
=============================================== */
.p-about_bg {
  background: transparent url(./../image/about-bg_1.avif) no-repeat center
    center/100%;
}
@media (768px <= width) {
  .p-about_bg {
    background: transparent url(./../image/about-bg_1.avif) no-repeat top
      center/100%;
  }
}

.p-about_value_title::first-letter {
  color: var(--color-purple);
  font-family: var(--font-family-en);
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
}

.p-about-mv_img {
  width: calc(var(--vw) * 50 - 50% + 77%);
  margin-right: calc(50% - var(--vw) * 50);
  margin-left: auto;
  display: block;
}

.p-about-mv_anchor {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(15px, 0.5524861878vw + 12.9281767956px, 20px)
    clamp(30px, 1.1049723757vw + 25.8563535912px, 40px);
  width: -moz-fit-content;
  width: fit-content;
}
@media (768px <= width) {
  .p-about-mv_anchor {
    grid-template-columns: repeat(6, auto);
  }
}

.p-about-mv_anchor_btn {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 600;
}
.p-about-mv_anchor_btn::before {
  content: "- ";
}

.p-about-member_inner {
  position: relative;
  z-index: 2;
}

.p-about-member_object {
  position: absolute;
}
.p-about-member_object.top {
  top: 100px;
  right: 0;
  width: 100px;
}
@media (768px <= width) {
  .p-about-member_object.top {
    width: 10%;
  }
}
.p-about-member_object.bottom {
  bottom: 0;
  left: 0;
  width: 60px;
}
@media (768px <= width) {
  .p-about-member_object.bottom {
    width: 6%;
  }
}

.p-about-member_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.p-about-member_name {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-weight: 600;
}
@media (768px <= width) {
  .p-about-member_name.pc-left {
    margin-left: auto;
  }
}

/* ===============================================
#代表メッセージ
=============================================== */
.p-message_name_box {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.p-message_name {
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
  font-weight: 600;
}

/* ===============================================
#コンサルタント一覧
=============================================== */
.p-teams_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}
@media (1024px <= width) {
  .p-teams_lists {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-teams_list {
  padding: clamp(20px, 1.1049723757vw + 15.8563535912px, 30px)
    clamp(10px, 1.1049723757vw + 5.8563535912px, 20px);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}

.p-teams_img_link {
  transition: filter var(--duration) ease;
  &:hover {
    opacity: 1;
    filter: grayscale(70%);
  }
}

.p-teams_img {
  width: 100%;
  margin-inline: auto;
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  aspect-ratio: 1/1;
}

.p-teams_role {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}
.p-teams_role span {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  background: var(--color-bg-black);
  padding: 0 clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
  color: #fff;
}

.p-teams_industry {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}
.p-teams_industry span {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  background: #d1cfd4;
  padding: 0 clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
  font-weight: 600;
}

.p-teams_list_name {
  display: flex;
  flex-direction: column;
}
.p-teams_list_name .ja {
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
}
.p-teams_list_name .en {
  font-size: clamp(8px, 0.2209944751vw + 7.1712707182px, 10px);
  font-family: var(--font-family-en);
  font-weight: 500;
  line-height: var(--lh-lg);
}

.p-teams_list_text {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-teams_list_btn {
  background: var(--color-gradient);
  padding: 1px clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
  color: #fff;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: var(--lh-lg);
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}
.p-teams_list_btn .icon {
  width: clamp(6px, 0.9944751381vw + 2.270718232px, 15px);
}

.p-teams_prev_next {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-teams_prev,
.p-teams_next {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-family: var(--font-family-en);
  color: #000;
}
.p-teams_prev .icon,
.p-teams_next .icon {
  width: clamp(25px, 1.6574585635vw + 18.7845303867px, 40px);
}

.p-teams_prev .icon {
  transform: scaleX(-1);
}

.p-teams_next {
  margin-left: auto;
}

/* ===============================================
#コンサルタントプロフィール
=============================================== */
.p-teams-single_bg {
  background: transparent url(./../image/sp/teams-single-bg_1.avif) no-repeat
    top 63% center/100%;
}
@media (768px <= width) {
  .p-teams-single_bg {
    background: transparent url(./../image/sp/teams-single-bg_1.avif) no-repeat
      center center/100%;
  }
}

.p-teams-single_en {
  font-family: var(--font-family-en);
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
  font-weight: 600;
  line-height: var(--lh-lg);
}

.p-teams-single_name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(10px, 1.1049723757vw + 5.8563535912px, 20px)
    clamp(15px, 0.5524861878vw + 12.9281767956px, 20px);
}

.p-teams-single_img_box {
  max-width: 500px;
  margin-inline: auto;
}

.p-teams-single_achievement a {
  text-decoration: underline;
}

/* ===============================================
#サービス
=============================================== */
.p-service_mv {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

.p-service_performance_box {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}

.p-service_performance_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-service_performance_item_title {
  font-size: clamp(12px, 0.2209944751vw + 11.1712707182px, 14px);
  font-weight: 600;
}

.p-service_performance_value span {
  font-size: clamp(32px, 1.7679558011vw + 25.3701657459px, 48px);
  font-family: var(--font-family-en);
  font-weight: 600;
  line-height: var(--lh-lg);
}
.p-service_performance_value small {
  font-weight: 600;
}
.p-service_performance_value > * {
  background: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-service_bg {
  background: transparent url(./../image/service-bg_1.avif) no-repeat top
    center/cover;
}

.p-service_bg_2 {
  background: transparent url(./../image/service-bg_2.avif) no-repeat top 20%
    right/40%;
}

.p-service_question_box {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.p-service_question_box dl dt,
.p-service_question_box dl .p-service_answer_inner {
  padding: clamp(10px, 0.5524861878vw + 7.9281767956px, 15px)
    clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
  display: flex;
  align-items: flex-start;
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}
.p-service_question_box dl dt {
  background: var(--color-border-gray);
  align-items: center;
  padding-right: 31px;
  position: relative;
  cursor: pointer;
}
.p-service_question_box dl dt:before {
  content: "Q.";
  color: var(--color-purple);
  font-weight: 600;
  white-space: nowrap;
}
.p-service_question_box dl dt:after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-color: var(--color-black);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.p-service_question_box dl dt.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.p-service_question_box dl dd {
  display: none;
}
.p-service_question_box dl dd .p-service_answer_inner {
  border-bottom: 1px solid var(--color-border-gray);
  margin-bottom: clamp(20px, 1.1049723757vw + 15.8563535912px, 30px);
}
.p-service_question_box dl dd .p-service_answer_inner:before {
  content: "A.";
  color: var(--color-pink);
  font-weight: 600;
  white-space: nowrap;
}

.p-service_strengths_text b {
  background: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(20px, 0.4419889503vw + 18.3425414365px, 24px);
  font-weight: 600;
}
.p-service_strengths_text b small {
  font-size: clamp(14px, 0.1104972376vw + 13.5856353591px, 15px);
}

.p-service_logo_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-service_img {
  width: 68%;
  margin-inline: auto;
}

@media (768px <= width) {
  .p-service_grid {
    grid-template-areas: "left-1 right-all" "left-2 right-all";
  }
  .p-service_grid .pc-left-1 {
    grid-area: left-1;
  }
  .p-service_grid .pc-left-2 {
    grid-area: left-2;
  }
  .p-service_grid .pc-right {
    grid-area: right-all;
  }
}

/* ===============================================
#採用情報
=============================================== */
.p-recruit_mv {
  background: transparent url(./../image/sp/recruit-mv.avif) no-repeat center
    center/cover;
  height: 100svh;
}
@media (768px <= width) {
  .p-recruit_mv {
    background: transparent url(./../image/recruit-mv.avif) no-repeat center
      center/cover;
  }
}

.p-recruit_mv_inner {
  gap: 100px;
}
@media (768px <= width) {
  .p-recruit_mv_inner {
    gap: 50px;
  }
}

.p-recruit_mv_textbox {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.7679558011vw + -2.6298342541px, 20px);
}

.p-recruit_mv_logo {
  max-width: clamp(90px, 8.8397790055vw + 56.8508287293px, 170px);
}

.p-recruit_mv_text {
  max-width: clamp(288px, 45.5248618785vw + 117.2817679558px, 600px);
}

.p-recruit_mv_btn {
  position: fixed;
  bottom: clamp(5px, 10.4972375691vw + -34.364640884px, 100px);
  right: clamp(10px, 5.5248618785vw + -10.7182320442px, 60px);
  background: var(--color-gradient);
  padding: 1.5px;
  width: 84px;
  height: 70px;
  z-index: 90;
}
@media (768px <= width) {
  .p-recruit_mv_btn {
    width: 250px;
    height: 80px;
  }
}

.p-recruit_mv_btn_inner {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(5px, 3.8674033149vw + -9.5027624309px, 40px);
}
@media (768px <= width) {
  .p-recruit_mv_btn_inner {
    flex-direction: row;
  }
}
.p-recruit_mv_btn_inner span {
  font-size: 10px;
  line-height: 1.24;
}
@media (768px <= width) {
  .p-recruit_mv_btn_inner span {
    font-size: 24px;
  }
}
.p-recruit_mv_btn_inner .icon {
  width: clamp(15px, 1.2154696133vw + 10.4419889503px, 26px);
}

.p-recruit-lead_img {
  max-width: 500px;
  margin-inline: auto;
}

.p-recruit-message_btn_box {
  position: relative;
  width: 100%;
}
.p-recruit-message_btn_box:not(.show)::before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 30%);
  filter: blur(4px);
  height: 91px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-recruit-message_btn_box.show .p-recruit-message_btn {
  background: var(--color-gray);
  color: var(--color-gray);
}
@media (768px <= width) {
  .p-recruit-message_btn_box {
    display: none;
  }
}

.p-recruit-message_btn {
  background: var(--border-gradient2);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1px;
  border-radius: 50vw;
  position: relative;
  z-index: 2;
  display: block;
}

.p-recruit-message_btn_inner {
  background: #fff;
  padding: 10px 30px;
  border-radius: 50vw;
}

.p-recruit-message_accordion {
  display: none;
}
@media (768px <= width) {
  .p-recruit-message_accordion {
    display: block;
  }
}

.p-recruit_movie_box {
  aspect-ratio: 16/9;
}
@media (768px <= width) {
  .p-recruit_movie_box {
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
  }
}
.p-recruit_movie_box > iframe {
  width: 100%;
  height: 100%;
}

.p-recruit_banner {
  background: transparent url(./../image/recruit-banner-bg_1.avif) no-repeat
    center center/cover;
  padding-top: clamp(67px, 2.5414364641vw + 57.4696132597px, 90px);
  padding-bottom: clamp(41px, 5.4143646409vw + 20.6961325967px, 90px);
}
@media (width <= 767px) {
  .p-recruit_banner {
    margin-left: calc(50% - var(--vw) * 50);
    width: calc(var(--vw) * 100);
  }
}
@media (768px <= width) {
  .p-recruit_banner {
    max-width: 700px;
    margin-inline: auto;
    width: 100%;
  }
}

.p-recruit_banner_textbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 0vw + 20px, 20px);
  width: -moz-fit-content;
  width: fit-content;
}

.p-recruit_banner_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--border-gradient);
  border-radius: 50vw;
  padding: 1px;
  margin-inline: auto;
}

.p-recruit_banner_btn_inner {
  background: #fff;
  padding: 8px 15px;
  border-radius: 50vw;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-recruit_banner_btn_inner span {
  font-size: clamp(10px, 0.6629834254vw + 7.5138121547px, 16px);
  font-weight: 600;
}
.p-recruit_banner_btn_inner .icon {
  width: clamp(8px, 0.4419889503vw + 6.3425414365px, 12px);
}

@media (768px <= width) {
  .p-recruit_reason_grid {
    display: grid;
    grid-template-rows: subgrid; /* 追加 */
    grid-row: span 3; /* 追加 */
  }
}

@media (768px <= width) {
  .p-recruit-open_item_grid {
    display: grid;
    grid-template-rows: subgrid; /* 追加 */
    grid-row: span 4; /* 追加 */
  }
}

.p-recruit_heading {
  max-width: clamp(210px, 20.9944751381vw + 131.270718232px, 300px);
  margin-inline: auto;
}

.p-recruit_hr {
  width: 55%;
  margin-inline: auto;
  color: var(--color-purple);
}

.p-recruit_w-img {
  margin-left: calc(50% - var(--vw) * 50);
  width: calc(var(--vw) * 100);
}

.p-recruit-culture_bg {
  background: transparent url(./../image/recruit-bg_1.avif) no-repeat top
    center/cover;
}

.p-recruit_object_heading {
  position: absolute;
  top: 10px;
  left: 0;
  color: rgba(71, 3, 240, 0.5);
  font-size: clamp(36px, 4.861878453vw + 17.7679558011px, 80px);
}

@media (width <= 767px) {
  .p-recruit-culture_img {
    width: 69%;
    margin-right: calc(50% - var(--vw) * 50);
    margin-left: auto;
  }
}

.p-recruit-message_bg {
  background: transparent url(./../image/recruit-bg_2.avif) no-repeat top
    center/cover;
}

.p-recruit-initiative_bg {
  background: transparent url(./../image/recruit-bg_3.avif) no-repeat top
    center/cover;
}

@media (width <= 767px) {
  .p-recruit-initiative_block:nth-of-type(even) .p-recruit-initiative_content {
    flex-direction: row-reverse;
  }
  .p-recruit-initiative_block:nth-of-type(even) .p-recruit-initiative_img-box {
    margin-left: calc(50% - var(--vw) * 50);
  }
  .p-recruit-initiative_block:nth-of-type(even)
    .p-recruit-initiative_number_box
    span {
    margin-right: auto;
    margin-left: 20px;
  }
  .p-recruit-initiative_block:nth-of-type(odd) .p-recruit-initiative_img-box {
    margin-right: calc(50% - var(--vw) * 50);
  }
  .p-recruit-initiative_block:nth-of-type(odd)
    .p-recruit-initiative_number_box
    span {
    margin-left: auto;
    margin-right: 20px;
  }
}

.p-recruit-initiative_content {
  display: flex;
  align-items: center;
}
@media (width <= 767px) {
  .p-recruit-initiative_content {
    padding-inline: 15px;
  }
}

.p-recruit-initiative_number_box {
  border-bottom: 1px solid;
  -o-border-image: var(--border-gradient2) 1;
  border-image: var(--border-gradient2) 1;
}
@media (width <= 767px) {
  .p-recruit-initiative_number_box {
    width: 36.6%;
  }
}
.p-recruit-initiative_number_box span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family-en);
  font-size: clamp(36px, 4.861878453vw + 17.7679558011px, 80px);
  font-weight: 600;
  background: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (768px <= width) {
  .p-recruit-initiative_number_box span {
    margin-inline: 20px;
  }
}

@media (width <= 767px) {
  .p-recruit-initiative_img-box {
    width: calc(var(--vw) * 50 - 50% + 63.4%);
  }
}
@media (768px <= width) {
  .p-recruit-initiative_img-box {
    flex: 1;
  }
}

.p-recruit-initiative_course_box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-recruit-initiative_course_title {
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
  font-weight: 600;
  background: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-recruit-initiative_course_list li:nth-of-type(2) {
  margin-left: 1em;
}
.p-recruit-initiative_course_list li:nth-of-type(3) {
  margin-left: 2em;
}
.p-recruit-initiative_course_list li::before {
  content: "・";
}

.p-recruit-business_border {
  margin-left: calc(50% - var(--vw) * 50);
  width: calc(var(--vw) * 50 - 50% + 100%);
  height: 1px;
  background: var(--border-gradient2);
}

.p-recruit-open_bg {
  background: transparent url(./../image/recruit-bg_5.avif) no-repeat top
    center/100%;
}

.p-recruit-open_grid {
  gap: 80px 40px;
}

.p-recruit-open_btn {
  padding: 16px 20px;
  background: var(--color-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-weight: 600;
  width: 100%;
}
.p-recruit-open_btn::after {
  content: "";
  width: 12px;
  height: 10px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.p-recruit-open_btn.close::after {
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.p-recruit-open_container_body {
  background-color: var(--color-border-gray);
  padding-inline: 15px;
  display: grid;
  transition: grid-template-rows var(--duration) ease-in-out,
    padding-block var(--duration) ease-in-out;
  grid-template-rows: 0fr;
}
.p-recruit-open_container_body > * {
  overflow: hidden;
}
.p-recruit-open_container_body.show {
  grid-template-rows: 1fr;
  padding-block: 40px;
}
.p-recruit-open_container_body hr {
  border-color: #e7e7e7;
}

.p-recruit-open_list {
  background-color: #fff;
  counter-reset: list-item;
  padding-block: 10px;
}
.p-recruit-open_list li {
  padding: 10px;
  counter-increment: list-item;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-recruit-open_list li::before {
  content: counter(list-item) ".";
}
.p-recruit-open_list li.small {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}
.p-recruit-open_list li.small::before {
  display: none;
}

.p-recruit-open_white_box {
  background-color: #fff;
  padding: 20px 10px;
}

.p-recruit-flow_bg {
  background: transparent url(./../image/recruit-bg_7.avif) no-repeat top
    center/100%;
}

.p-recruit-flow_list {
  width: 100%;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-recruit-flow_list {
    max-width: 215px;
  }
}
@media (768px <= width) {
  .p-recruit-flow_list {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    gap: 80px;
  }
}
.p-recruit-flow_list li {
  display: flex;
  align-items: center;
  position: relative;
}
@media (768px <= width) {
  .p-recruit-flow_list li {
    flex-direction: column;
  }
}
@media (width <= 767px) {
  .p-recruit-flow_list li:not(:last-child) {
    padding-bottom: 27px;
  }
  .p-recruit-flow_list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: var(--border-gradient);
    position: absolute;
    left: 57px;
    bottom: 0;
  }
}
@media (768px <= width) {
  .p-recruit-flow_list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--border-gradient);
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-recruit-flow_list li .p-recruit-flow_number {
  font-family: var(--font-family-en);
  font-size: 36px;
  font-weight: 600;
  background: linear-gradient(124deg, #4703f0 27.69%, #ee1fb5 114.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (width <= 767px) {
  .p-recruit-flow_list li .p-recruit-flow_number {
    width: 67px;
  }
}
.p-recruit-flow_list li .p-recruit-flow_text {
  font-weight: 600;
  color: #000;
}

.p-recruit-office_bg {
  background: transparent url(./../image/sp/recruit-bg_8.avif) no-repeat top
    center/cover;
}
@media (768px <= width) {
  .p-recruit-office_bg {
    background: transparent url(./../image/recruit-bg_8.avif) no-repeat top
      center/cover;
  }
}

/* ===============================================
#会社案内
=============================================== */
.p-company_mv {
  margin-left: auto;
  margin-right: calc(50% - var(--vw) * 50);
  width: calc(var(--vw) * 50 - 50% + 77%);
}
@media (768px <= width) {
  .p-company_mv {
    width: calc(var(--vw) * 50 - 50% + 40%);
  }
}

.p-company_table th,
.p-company_table td {
  padding-block: clamp(15px, 1.6574585635vw + 8.7845303867px, 30px);
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.p-company_table th {
  white-space: nowrap;
  padding-right: 20px;
  font-weight: 600;
}
.p-company_table td p:nth-of-type(n + 2) {
  margin-top: 5px;
}
.p-company_table td small {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}

.p-company_access_box {
  display: flex;
  align-items: flex-start;
}

.p-company_access_title {
  font-weight: 600;
  width: 60px;
}

.p-company_access_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.5524861878vw + 2.9281767956px, 10px);
}

.p-company_map {
  aspect-ratio: 69/44;
  margin-left: calc(50% - var(--vw) * 50);
  width: calc(var(--vw) * 100);
}
@media (768px <= width) {
  .p-company_map {
    aspect-ratio: 3/1;
  }
}
.p-company_map > iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

/* ===============================================
#プレスリリース
=============================================== */
.p-press_cat_box {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 0.5524861878vw + 7.9281767956px, 15px);
}
.p-press_cat_box a {
  background: #48474b;
  border-radius: 50vw;
  color: #fff;
  padding: 1px clamp(5px, 0.3314917127vw + 3.7569060773px, 8px);
  display: inline-block;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 600;
  line-height: var(--lh-md);
  white-space: nowrap;
}

.p-press_lists .top-press_link_head {
  justify-content: space-between;
}

/* ===============================================
#詳細ページ
=============================================== */
.p-single_head {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.p-single_time {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  line-height: var(--lh-lg);
  font-family: var(--font-family-en);
}

.p-single_cat {
  background: #48474b;
  border-radius: 50vw;
  color: #fff;
  padding: 1px clamp(5px, 0.3314917127vw + 3.7569060773px, 8px);
  display: inline-block;
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-weight: 600;
  line-height: var(--lh-md);
  white-space: nowrap;
}

.p-single_content :first-child {
  margin-top: 0;
}
.p-single_content :last-child {
  margin-bottom: 0;
}
.p-single_content p {
  margin-block: 20px;
}
.p-single_content h2 {
  margin-block: 30px;
}
.p-single_content figure {
  margin-block: 40px;
}

.p-single_share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.p-single_share_text {
  color: var(--color-gray);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  font-family: var(--font-family-en);
  line-height: var(--lh-lg);
}

.p-single_share_btn {
  width: 30px;
}

.p-single_back {
  padding: 8px 25px;
  border: 1px solid currentColor;
  border-radius: 50vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/* ===============================================
#ニュース
=============================================== */
.p-news_lists {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 1.1049723757vw + 25.8563535912px, 40px);
}

.p-news_list {
  width: 100%;
}
@media (768px <= width) {
  .p-news_list {
    width: calc(
      33.3333333333% - clamp(30px, 1.1049723757vw + 25.8563535912px, 40px) * 2 /
        3
    );
  }
}

.p-news_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px 25px;
  background: #fff;
  box-shadow: 1px 1px 6px 0px rgba(168, 165, 175, 0.2);
}

.p-news_time {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  line-height: var(--lh-lg);
  font-family: var(--font-family-en);
  color: var(--color-purple);
}

.p-news_title {
  font-weight: 400;
}

/* ===============================================
#お問い合わせ
=============================================== */
.p-form_sec input[type="text"],
.p-form_sec input[type="email"],
.p-form_sec input[type="tel"],
.p-form_sec textarea {
  width: 100%;
  padding: 11px 10px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 1px 6px 0px rgba(168, 165, 175, 0.2);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  width: 100%;
}
.p-form_sec input[type="text"]::-moz-placeholder,
.p-form_sec input[type="email"]::-moz-placeholder,
.p-form_sec input[type="tel"]::-moz-placeholder,
.p-form_sec textarea::-moz-placeholder {
  color: var(--color-gray);
}
.p-form_sec input[type="text"]::placeholder,
.p-form_sec input[type="email"]::placeholder,
.p-form_sec input[type="tel"]::placeholder,
.p-form_sec textarea::placeholder {
  color: var(--color-gray);
}
.p-form_sec textarea {
  height: 150px;
  resize: none;
}
.p-form_sec input[type="submit"] {
  transition: opacity var(--duration) ease-in-out;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.p-form_sec input[type="submit"]:hover {
  opacity: 0.7;
}
.p-form_sec .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 20px;
  margin-top: 5px;
}
.p-form_sec .wpcf7-list-item {
  margin: 0;
  width: 100%;
}
@media (768px <= width) {
  .p-form_sec .wpcf7-list-item {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-form_sec select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 11px 30px 11px 10px;
  box-shadow: 1px 1px 6px 0px rgba(168, 165, 175, 0.2);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  width: 100%;
  background: #fff url(./../image/icon-select-arrow.svg) no-repeat top 50% right
    10px/10px 10px;
}
.p-form_sec select::-ms-expand {
  display: none;
}
.p-form_sec select::-moz-placeholder {
  color: var(--color-gray);
}
.p-form_sec select::placeholder {
  color: var(--color-gray);
}
.p-form_sec input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-form_sec input[type="radio"] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 25px;
  position: relative;
}
.p-form_sec input[type="radio"] + span::before {
  content: "";
  background: #e7e7e7;
  border-radius: 50%;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-form_sec input[type="radio"] + span::after {
  content: "";
  background: var(--color-purple);
  border: 1px solid transparent;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 3px;
  translate: 0 -50%;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.p-form_sec input[type="radio"]:checked + span::after {
  opacity: 1;
}
.p-form_sec input[type="radio"]:focus + span::before {
  border: 1px solid;
}
.p-form_sec .wpcf7-spinner {
  display: none;
}

.p-form_block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (768px <= width) {
  .p-form_block {
    flex-direction: row;
  }
}
.p-form_block:has([aria-required="true"]) label > span::after {
  content: "*";
  color: var(--color-purple);
}
.p-form_block .p-form_block_left .inline {
  display: inline-block;
  margin-left: 20px;
}
@media (768px <= width) {
  .p-form_block .p-form_block_left {
    width: 200px;
  }
}
.p-form_block .p-form_block_left > small {
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
  line-height: var(--lh-lg);
}
.p-form_block .p-form_block_left > small > span {
  color: var(--color-purple);
}

.p-form_birth {
  display: flex;
  gap: 20px;
}
.p-form_birth > .p-form_birth_item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}

.p-form_history {
  background-color: #48474b;
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
  margin-block: 10px;
}
@media (width <= 767px) {
  .p-form_history {
    margin-inline: -15px;
  }
}

.p-form_input-box {
  width: 100%;
  flex: 1;
}
.p-form_input-box span {
  width: 100%;
}
.p-form_input-box.col-2 {
  display: flex;
  gap: 15px;
}
.p-form_input-box.col-2 > span {
  width: calc(50% - 7.5px);
}

.p-form_mix {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (768px <= width) {
  .p-form_mix {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.p-form_mix_item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (width <= 767px) {
  .p-form_mix_item.w-100 {
    width: 100%;
  }
  .p-form_mix_item.w-100 > span {
    width: 100%;
  }
}
.p-form_policy {
  text-align: center;
  line-height: var(--lh-lg);
  font-size: clamp(10px, 0.2209944751vw + 9.1712707182px, 12px);
}
.p-form_policy > a {
  text-decoration: underline;
}

.p-form-thanks_logo {
  max-width: 110px;
  margin-inline: auto;
}

@media screen and (max-width: 480px) {
  .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    font-size: 10px !important;
  }
  .sp-1col .wp-block-image {
    width: 100% !important;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .p-service-recruit-banner {
    margin-top: 80px;
  }
  .p-service-recruit-banner .p-recruit_banner {
    padding-top: 200px;
    padding-bottom: 200px;
    max-width: 100%;
  }
  .p-service-recruit-banner .p-recruit_banner .c-inner {
    max-width: 1000px;
  }
  .c-sec-pd.p-recruit-open_bg {
    padding-bottom: 0;
  }
  .c-sec-pd.p-recruit-flow_bg {
    padding-top: 0;
  }
  .c-sec-pd.p-recruit-faq {
    padding-top: 30px;
  }
  .p-recruit_hr__text {
    margin-top: 50px;
  }
  .p-recruit-interview__title {
    min-height: 108px;
  }
  .p-recruit_banner.wd100 {
    max-width: 100%;
    margin-top: 150px;
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .p-recruit_banner.wd100 .c-inner {
    max-width: 1000px;
  }
  .p-recruit_banner .c-inner .p-recruit_banner_text {
    font-size: 30px;
  }
  .p-recruit_banner .p-recruit_banner_btn_inner span {
    font-size: 20px;
    padding: 5px 30px;
  }
  .p-recruit_reason_grid h3 {
    width: 60%;
  }
  .p-recruit_reason_grid__box {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
  }
  .p-recruit_reason_grid__box.box-n {
    flex-direction: row-reverse;
  }
  .p-recruit_reason_grid__box .p-recruit-culture_img {
    width: 40%;
  }
  .p-recruit_reason_grid {
    margin-bottom: 50px;
  }
  .p-recruit_hr__text {
    font-size: 16px;
  }
  .c-flex-col.gap-20-40.max-800.p-message-ceo-img {
    margin: 0 auto;
    margin-top: 80px;
    max-width: 500px;
  }
}

.p-single_content h2 {
  font-size: 22px;
  padding-left: 15px;
  border-left: 4px solid #4703f0;
}

@media screen and (max-width: 1024px) {
  .p-recruit_reason_grid__box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .p-recruit_reason_grid__box .p-recruit_reason_grid__box__text {
    margin-top: 20px;
  }
  .p-recruit_reason_grid__box.box-n.box-last {
    margin-bottom: 0;
  }
  .p-recruit_banner {
    margin-top: 50px;
  }
  .p-single_content h2 {
    font-size: 16px;
    padding-left: 10px;
    border-left: 3px solid #4703f0;
  }
}
