@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (width <= 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (width <= 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* フォントカラーは、使用頻度が多いものを選択する */
body {
  color: #0d2936;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
  /*
  - :where() は詳細度（CSSの強さ）が 0 になるので、上書きしやすくするため指定
  - :any-link は a と area のリンクをまとめて指せる
  - label[for] はクリックで入力にフォーカスするので pointer は分かりやすい
  */
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0090ff;
}

:where(input, select, textarea) {
  font-size: 1rem; /* = 16px */
}

textarea {
  field-sizing: content;
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここから ~~~~~  */
/* HTMLの階層構造で適宜クラス名は変更する */
.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

main {
  flex: 1;
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここまで ~~~~~ */
iframe {
  border: none;
}

img {
  image-rendering: auto;
}

picture {
  display: contents;
}

picture > source {
  display: none;
}

img,
svg {
  vertical-align: middle;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- ベースファイル | ここまで ---------- */
@font-face {
  font-display: swap;
  font-family: "Hannari Mincho";
  src: url("../fonts/HannariMincho-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* ---------- リセットCSS | ここから ---------- */
html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  tab-size: 4;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
  text-decoration: inherit;
}

* {
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
  padding: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  appearance: textfield;
  appearance: none;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  border-style: none;
  background-color: transparent;
  appearance: none;
}

/* マウス操作でのフォーカス枠だけを消す。:focus-visible（キーボード操作・フォーム入力）は
   _base.scss のフォーカスリング指定を効かせるため対象から外す
   （元は `a:focus, button:focus, ...` で、_base.scss と詳細度が同じかつ後に読まれるため
   フォーカスリングの太さが 0 に潰されていた） */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: none;
}

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

/* ---------- リセットCSS | ここまで ---------- */
.l-lower {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-lower {
    margin-top: 6.25rem;
  }
}

.l-contact-banner {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-contact-banner {
    margin-top: 6.25rem;
  }
}

/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 767px以下で改行 */
.br-767-less {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-767-less {
    display: block;
  }
}

/* 768px以上で改行 */
@media screen and (max-width: 767px) {
  .br-768-more {
    display: none;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 | ここから ---------- */
/* PCのとき非表示 */
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

/* SPのとき非表示 */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

/* ---------- 表示・非表示 | ここまで ---------- */
/* ---------- margin-topの設定 | ここから ---------- */
.mt-pc-1 {
  margin-top: 0.0625rem;
}

.mt-pc-2 {
  margin-top: 0.125rem;
}

.mt-pc-3 {
  margin-top: 0.1875rem;
}

.mt-pc-4 {
  margin-top: 0.25rem;
}

.mt-pc-5 {
  margin-top: 0.3125rem;
}

.mt-pc-6 {
  margin-top: 0.375rem;
}

.mt-pc-7 {
  margin-top: 0.4375rem;
}

.mt-pc-8 {
  margin-top: 0.5rem;
}

.mt-pc-9 {
  margin-top: 0.5625rem;
}

.mt-pc-10 {
  margin-top: 0.625rem;
}

.mt-pc-11 {
  margin-top: 0.6875rem;
}

.mt-pc-12 {
  margin-top: 0.75rem;
}

.mt-pc-13 {
  margin-top: 0.8125rem;
}

.mt-pc-14 {
  margin-top: 0.875rem;
}

.mt-pc-15 {
  margin-top: 0.9375rem;
}

.mt-pc-16 {
  margin-top: 1rem;
}

.mt-pc-17 {
  margin-top: 1.0625rem;
}

.mt-pc-18 {
  margin-top: 1.125rem;
}

.mt-pc-19 {
  margin-top: 1.1875rem;
}

.mt-pc-20 {
  margin-top: 1.25rem;
}

.mt-pc-21 {
  margin-top: 1.3125rem;
}

.mt-pc-22 {
  margin-top: 1.375rem;
}

.mt-pc-23 {
  margin-top: 1.4375rem;
}

.mt-pc-24 {
  margin-top: 1.5rem;
}

.mt-pc-25 {
  margin-top: 1.5625rem;
}

.mt-pc-26 {
  margin-top: 1.625rem;
}

.mt-pc-27 {
  margin-top: 1.6875rem;
}

.mt-pc-28 {
  margin-top: 1.75rem;
}

.mt-pc-29 {
  margin-top: 1.8125rem;
}

.mt-pc-30 {
  margin-top: 1.875rem;
}

.mt-pc-31 {
  margin-top: 1.9375rem;
}

.mt-pc-32 {
  margin-top: 2rem;
}

.mt-pc-33 {
  margin-top: 2.0625rem;
}

.mt-pc-34 {
  margin-top: 2.125rem;
}

.mt-pc-35 {
  margin-top: 2.1875rem;
}

.mt-pc-36 {
  margin-top: 2.25rem;
}

.mt-pc-37 {
  margin-top: 2.3125rem;
}

.mt-pc-38 {
  margin-top: 2.375rem;
}

.mt-pc-39 {
  margin-top: 2.4375rem;
}

.mt-pc-40 {
  margin-top: 2.5rem;
}

.mt-pc-41 {
  margin-top: 2.5625rem;
}

.mt-pc-42 {
  margin-top: 2.625rem;
}

.mt-pc-43 {
  margin-top: 2.6875rem;
}

.mt-pc-44 {
  margin-top: 2.75rem;
}

.mt-pc-45 {
  margin-top: 2.8125rem;
}

.mt-pc-46 {
  margin-top: 2.875rem;
}

.mt-pc-47 {
  margin-top: 2.9375rem;
}

.mt-pc-48 {
  margin-top: 3rem;
}

.mt-pc-49 {
  margin-top: 3.0625rem;
}

.mt-pc-50 {
  margin-top: 3.125rem;
}

.mt-pc-51 {
  margin-top: 3.1875rem;
}

.mt-pc-52 {
  margin-top: 3.25rem;
}

.mt-pc-53 {
  margin-top: 3.3125rem;
}

.mt-pc-54 {
  margin-top: 3.375rem;
}

.mt-pc-55 {
  margin-top: 3.4375rem;
}

.mt-pc-56 {
  margin-top: 3.5rem;
}

.mt-pc-57 {
  margin-top: 3.5625rem;
}

.mt-pc-58 {
  margin-top: 3.625rem;
}

.mt-pc-59 {
  margin-top: 3.6875rem;
}

.mt-pc-60 {
  margin-top: 3.75rem;
}

.mt-pc-61 {
  margin-top: 3.8125rem;
}

.mt-pc-62 {
  margin-top: 3.875rem;
}

.mt-pc-63 {
  margin-top: 3.9375rem;
}

.mt-pc-64 {
  margin-top: 4rem;
}

.mt-pc-65 {
  margin-top: 4.0625rem;
}

.mt-pc-66 {
  margin-top: 4.125rem;
}

.mt-pc-67 {
  margin-top: 4.1875rem;
}

.mt-pc-68 {
  margin-top: 4.25rem;
}

.mt-pc-69 {
  margin-top: 4.3125rem;
}

.mt-pc-70 {
  margin-top: 4.375rem;
}

.mt-pc-71 {
  margin-top: 4.4375rem;
}

.mt-pc-72 {
  margin-top: 4.5rem;
}

.mt-pc-73 {
  margin-top: 4.5625rem;
}

.mt-pc-74 {
  margin-top: 4.625rem;
}

.mt-pc-75 {
  margin-top: 4.6875rem;
}

.mt-pc-76 {
  margin-top: 4.75rem;
}

.mt-pc-77 {
  margin-top: 4.8125rem;
}

.mt-pc-78 {
  margin-top: 4.875rem;
}

.mt-pc-79 {
  margin-top: 4.9375rem;
}

.mt-pc-80 {
  margin-top: 5rem;
}

.mt-pc-81 {
  margin-top: 5.0625rem;
}

.mt-pc-82 {
  margin-top: 5.125rem;
}

.mt-pc-83 {
  margin-top: 5.1875rem;
}

.mt-pc-84 {
  margin-top: 5.25rem;
}

.mt-pc-85 {
  margin-top: 5.3125rem;
}

.mt-pc-86 {
  margin-top: 5.375rem;
}

.mt-pc-87 {
  margin-top: 5.4375rem;
}

.mt-pc-88 {
  margin-top: 5.5rem;
}

.mt-pc-89 {
  margin-top: 5.5625rem;
}

.mt-pc-90 {
  margin-top: 5.625rem;
}

.mt-pc-91 {
  margin-top: 5.6875rem;
}

.mt-pc-92 {
  margin-top: 5.75rem;
}

.mt-pc-93 {
  margin-top: 5.8125rem;
}

.mt-pc-94 {
  margin-top: 5.875rem;
}

.mt-pc-95 {
  margin-top: 5.9375rem;
}

.mt-pc-96 {
  margin-top: 6rem;
}

.mt-pc-97 {
  margin-top: 6.0625rem;
}

.mt-pc-98 {
  margin-top: 6.125rem;
}

.mt-pc-99 {
  margin-top: 6.1875rem;
}

.mt-pc-100 {
  margin-top: 6.25rem;
}

.mt-pc-101 {
  margin-top: 6.3125rem;
}

.mt-pc-102 {
  margin-top: 6.375rem;
}

.mt-pc-103 {
  margin-top: 6.4375rem;
}

.mt-pc-104 {
  margin-top: 6.5rem;
}

.mt-pc-105 {
  margin-top: 6.5625rem;
}

.mt-pc-106 {
  margin-top: 6.625rem;
}

.mt-pc-107 {
  margin-top: 6.6875rem;
}

.mt-pc-108 {
  margin-top: 6.75rem;
}

.mt-pc-109 {
  margin-top: 6.8125rem;
}

.mt-pc-110 {
  margin-top: 6.875rem;
}

.mt-pc-111 {
  margin-top: 6.9375rem;
}

.mt-pc-112 {
  margin-top: 7rem;
}

.mt-pc-113 {
  margin-top: 7.0625rem;
}

.mt-pc-114 {
  margin-top: 7.125rem;
}

.mt-pc-115 {
  margin-top: 7.1875rem;
}

.mt-pc-116 {
  margin-top: 7.25rem;
}

.mt-pc-117 {
  margin-top: 7.3125rem;
}

.mt-pc-118 {
  margin-top: 7.375rem;
}

.mt-pc-119 {
  margin-top: 7.4375rem;
}

.mt-pc-120 {
  margin-top: 7.5rem;
}

.mt-pc-121 {
  margin-top: 7.5625rem;
}

.mt-pc-122 {
  margin-top: 7.625rem;
}

.mt-pc-123 {
  margin-top: 7.6875rem;
}

.mt-pc-124 {
  margin-top: 7.75rem;
}

.mt-pc-125 {
  margin-top: 7.8125rem;
}

.mt-pc-126 {
  margin-top: 7.875rem;
}

.mt-pc-127 {
  margin-top: 7.9375rem;
}

.mt-pc-128 {
  margin-top: 8rem;
}

.mt-pc-129 {
  margin-top: 8.0625rem;
}

.mt-pc-130 {
  margin-top: 8.125rem;
}

.mt-pc-131 {
  margin-top: 8.1875rem;
}

.mt-pc-132 {
  margin-top: 8.25rem;
}

.mt-pc-133 {
  margin-top: 8.3125rem;
}

.mt-pc-134 {
  margin-top: 8.375rem;
}

.mt-pc-135 {
  margin-top: 8.4375rem;
}

.mt-pc-136 {
  margin-top: 8.5rem;
}

.mt-pc-137 {
  margin-top: 8.5625rem;
}

.mt-pc-138 {
  margin-top: 8.625rem;
}

.mt-pc-139 {
  margin-top: 8.6875rem;
}

.mt-pc-140 {
  margin-top: 8.75rem;
}

.mt-pc-141 {
  margin-top: 8.8125rem;
}

.mt-pc-142 {
  margin-top: 8.875rem;
}

.mt-pc-143 {
  margin-top: 8.9375rem;
}

.mt-pc-144 {
  margin-top: 9rem;
}

.mt-pc-145 {
  margin-top: 9.0625rem;
}

.mt-pc-146 {
  margin-top: 9.125rem;
}

.mt-pc-147 {
  margin-top: 9.1875rem;
}

.mt-pc-148 {
  margin-top: 9.25rem;
}

.mt-pc-149 {
  margin-top: 9.3125rem;
}

.mt-pc-150 {
  margin-top: 9.375rem;
}

.mt-pc-151 {
  margin-top: 9.4375rem;
}

.mt-pc-152 {
  margin-top: 9.5rem;
}

.mt-pc-153 {
  margin-top: 9.5625rem;
}

.mt-pc-154 {
  margin-top: 9.625rem;
}

.mt-pc-155 {
  margin-top: 9.6875rem;
}

.mt-pc-156 {
  margin-top: 9.75rem;
}

.mt-pc-157 {
  margin-top: 9.8125rem;
}

.mt-pc-158 {
  margin-top: 9.875rem;
}

.mt-pc-159 {
  margin-top: 9.9375rem;
}

.mt-pc-160 {
  margin-top: 10rem;
}

.mt-pc-161 {
  margin-top: 10.0625rem;
}

.mt-pc-162 {
  margin-top: 10.125rem;
}

.mt-pc-163 {
  margin-top: 10.1875rem;
}

.mt-pc-164 {
  margin-top: 10.25rem;
}

.mt-pc-165 {
  margin-top: 10.3125rem;
}

.mt-pc-166 {
  margin-top: 10.375rem;
}

.mt-pc-167 {
  margin-top: 10.4375rem;
}

.mt-pc-168 {
  margin-top: 10.5rem;
}

.mt-pc-169 {
  margin-top: 10.5625rem;
}

.mt-pc-170 {
  margin-top: 10.625rem;
}

.mt-pc-171 {
  margin-top: 10.6875rem;
}

.mt-pc-172 {
  margin-top: 10.75rem;
}

.mt-pc-173 {
  margin-top: 10.8125rem;
}

.mt-pc-174 {
  margin-top: 10.875rem;
}

.mt-pc-175 {
  margin-top: 10.9375rem;
}

.mt-pc-176 {
  margin-top: 11rem;
}

.mt-pc-177 {
  margin-top: 11.0625rem;
}

.mt-pc-178 {
  margin-top: 11.125rem;
}

.mt-pc-179 {
  margin-top: 11.1875rem;
}

.mt-pc-180 {
  margin-top: 11.25rem;
}

.mt-pc-181 {
  margin-top: 11.3125rem;
}

.mt-pc-182 {
  margin-top: 11.375rem;
}

.mt-pc-183 {
  margin-top: 11.4375rem;
}

.mt-pc-184 {
  margin-top: 11.5rem;
}

.mt-pc-185 {
  margin-top: 11.5625rem;
}

.mt-pc-186 {
  margin-top: 11.625rem;
}

.mt-pc-187 {
  margin-top: 11.6875rem;
}

.mt-pc-188 {
  margin-top: 11.75rem;
}

.mt-pc-189 {
  margin-top: 11.8125rem;
}

.mt-pc-190 {
  margin-top: 11.875rem;
}

.mt-pc-191 {
  margin-top: 11.9375rem;
}

.mt-pc-192 {
  margin-top: 12rem;
}

.mt-pc-193 {
  margin-top: 12.0625rem;
}

.mt-pc-194 {
  margin-top: 12.125rem;
}

.mt-pc-195 {
  margin-top: 12.1875rem;
}

.mt-pc-196 {
  margin-top: 12.25rem;
}

.mt-pc-197 {
  margin-top: 12.3125rem;
}

.mt-pc-198 {
  margin-top: 12.375rem;
}

.mt-pc-199 {
  margin-top: 12.4375rem;
}

.mt-pc-200 {
  margin-top: 12.5rem;
}

@media screen and (width <= 768px) {
  .mt-sp-1 {
    margin-top: 0.0625rem;
  }
  .mt-sp-2 {
    margin-top: 0.125rem;
  }
  .mt-sp-3 {
    margin-top: 0.1875rem;
  }
  .mt-sp-4 {
    margin-top: 0.25rem;
  }
  .mt-sp-5 {
    margin-top: 0.3125rem;
  }
  .mt-sp-6 {
    margin-top: 0.375rem;
  }
  .mt-sp-7 {
    margin-top: 0.4375rem;
  }
  .mt-sp-8 {
    margin-top: 0.5rem;
  }
  .mt-sp-9 {
    margin-top: 0.5625rem;
  }
  .mt-sp-10 {
    margin-top: 0.625rem;
  }
  .mt-sp-11 {
    margin-top: 0.6875rem;
  }
  .mt-sp-12 {
    margin-top: 0.75rem;
  }
  .mt-sp-13 {
    margin-top: 0.8125rem;
  }
  .mt-sp-14 {
    margin-top: 0.875rem;
  }
  .mt-sp-15 {
    margin-top: 0.9375rem;
  }
  .mt-sp-16 {
    margin-top: 1rem;
  }
  .mt-sp-17 {
    margin-top: 1.0625rem;
  }
  .mt-sp-18 {
    margin-top: 1.125rem;
  }
  .mt-sp-19 {
    margin-top: 1.1875rem;
  }
  .mt-sp-20 {
    margin-top: 1.25rem;
  }
  .mt-sp-21 {
    margin-top: 1.3125rem;
  }
  .mt-sp-22 {
    margin-top: 1.375rem;
  }
  .mt-sp-23 {
    margin-top: 1.4375rem;
  }
  .mt-sp-24 {
    margin-top: 1.5rem;
  }
  .mt-sp-25 {
    margin-top: 1.5625rem;
  }
  .mt-sp-26 {
    margin-top: 1.625rem;
  }
  .mt-sp-27 {
    margin-top: 1.6875rem;
  }
  .mt-sp-28 {
    margin-top: 1.75rem;
  }
  .mt-sp-29 {
    margin-top: 1.8125rem;
  }
  .mt-sp-30 {
    margin-top: 1.875rem;
  }
  .mt-sp-31 {
    margin-top: 1.9375rem;
  }
  .mt-sp-32 {
    margin-top: 2rem;
  }
  .mt-sp-33 {
    margin-top: 2.0625rem;
  }
  .mt-sp-34 {
    margin-top: 2.125rem;
  }
  .mt-sp-35 {
    margin-top: 2.1875rem;
  }
  .mt-sp-36 {
    margin-top: 2.25rem;
  }
  .mt-sp-37 {
    margin-top: 2.3125rem;
  }
  .mt-sp-38 {
    margin-top: 2.375rem;
  }
  .mt-sp-39 {
    margin-top: 2.4375rem;
  }
  .mt-sp-40 {
    margin-top: 2.5rem;
  }
  .mt-sp-41 {
    margin-top: 2.5625rem;
  }
  .mt-sp-42 {
    margin-top: 2.625rem;
  }
  .mt-sp-43 {
    margin-top: 2.6875rem;
  }
  .mt-sp-44 {
    margin-top: 2.75rem;
  }
  .mt-sp-45 {
    margin-top: 2.8125rem;
  }
  .mt-sp-46 {
    margin-top: 2.875rem;
  }
  .mt-sp-47 {
    margin-top: 2.9375rem;
  }
  .mt-sp-48 {
    margin-top: 3rem;
  }
  .mt-sp-49 {
    margin-top: 3.0625rem;
  }
  .mt-sp-50 {
    margin-top: 3.125rem;
  }
  .mt-sp-51 {
    margin-top: 3.1875rem;
  }
  .mt-sp-52 {
    margin-top: 3.25rem;
  }
  .mt-sp-53 {
    margin-top: 3.3125rem;
  }
  .mt-sp-54 {
    margin-top: 3.375rem;
  }
  .mt-sp-55 {
    margin-top: 3.4375rem;
  }
  .mt-sp-56 {
    margin-top: 3.5rem;
  }
  .mt-sp-57 {
    margin-top: 3.5625rem;
  }
  .mt-sp-58 {
    margin-top: 3.625rem;
  }
  .mt-sp-59 {
    margin-top: 3.6875rem;
  }
  .mt-sp-60 {
    margin-top: 3.75rem;
  }
  .mt-sp-61 {
    margin-top: 3.8125rem;
  }
  .mt-sp-62 {
    margin-top: 3.875rem;
  }
  .mt-sp-63 {
    margin-top: 3.9375rem;
  }
  .mt-sp-64 {
    margin-top: 4rem;
  }
  .mt-sp-65 {
    margin-top: 4.0625rem;
  }
  .mt-sp-66 {
    margin-top: 4.125rem;
  }
  .mt-sp-67 {
    margin-top: 4.1875rem;
  }
  .mt-sp-68 {
    margin-top: 4.25rem;
  }
  .mt-sp-69 {
    margin-top: 4.3125rem;
  }
  .mt-sp-70 {
    margin-top: 4.375rem;
  }
  .mt-sp-71 {
    margin-top: 4.4375rem;
  }
  .mt-sp-72 {
    margin-top: 4.5rem;
  }
  .mt-sp-73 {
    margin-top: 4.5625rem;
  }
  .mt-sp-74 {
    margin-top: 4.625rem;
  }
  .mt-sp-75 {
    margin-top: 4.6875rem;
  }
  .mt-sp-76 {
    margin-top: 4.75rem;
  }
  .mt-sp-77 {
    margin-top: 4.8125rem;
  }
  .mt-sp-78 {
    margin-top: 4.875rem;
  }
  .mt-sp-79 {
    margin-top: 4.9375rem;
  }
  .mt-sp-80 {
    margin-top: 5rem;
  }
  .mt-sp-81 {
    margin-top: 5.0625rem;
  }
  .mt-sp-82 {
    margin-top: 5.125rem;
  }
  .mt-sp-83 {
    margin-top: 5.1875rem;
  }
  .mt-sp-84 {
    margin-top: 5.25rem;
  }
  .mt-sp-85 {
    margin-top: 5.3125rem;
  }
  .mt-sp-86 {
    margin-top: 5.375rem;
  }
  .mt-sp-87 {
    margin-top: 5.4375rem;
  }
  .mt-sp-88 {
    margin-top: 5.5rem;
  }
  .mt-sp-89 {
    margin-top: 5.5625rem;
  }
  .mt-sp-90 {
    margin-top: 5.625rem;
  }
  .mt-sp-91 {
    margin-top: 5.6875rem;
  }
  .mt-sp-92 {
    margin-top: 5.75rem;
  }
  .mt-sp-93 {
    margin-top: 5.8125rem;
  }
  .mt-sp-94 {
    margin-top: 5.875rem;
  }
  .mt-sp-95 {
    margin-top: 5.9375rem;
  }
  .mt-sp-96 {
    margin-top: 6rem;
  }
  .mt-sp-97 {
    margin-top: 6.0625rem;
  }
  .mt-sp-98 {
    margin-top: 6.125rem;
  }
  .mt-sp-99 {
    margin-top: 6.1875rem;
  }
  .mt-sp-100 {
    margin-top: 6.25rem;
  }
  .mt-sp-101 {
    margin-top: 6.3125rem;
  }
  .mt-sp-102 {
    margin-top: 6.375rem;
  }
  .mt-sp-103 {
    margin-top: 6.4375rem;
  }
  .mt-sp-104 {
    margin-top: 6.5rem;
  }
  .mt-sp-105 {
    margin-top: 6.5625rem;
  }
  .mt-sp-106 {
    margin-top: 6.625rem;
  }
  .mt-sp-107 {
    margin-top: 6.6875rem;
  }
  .mt-sp-108 {
    margin-top: 6.75rem;
  }
  .mt-sp-109 {
    margin-top: 6.8125rem;
  }
  .mt-sp-110 {
    margin-top: 6.875rem;
  }
  .mt-sp-111 {
    margin-top: 6.9375rem;
  }
  .mt-sp-112 {
    margin-top: 7rem;
  }
  .mt-sp-113 {
    margin-top: 7.0625rem;
  }
  .mt-sp-114 {
    margin-top: 7.125rem;
  }
  .mt-sp-115 {
    margin-top: 7.1875rem;
  }
  .mt-sp-116 {
    margin-top: 7.25rem;
  }
  .mt-sp-117 {
    margin-top: 7.3125rem;
  }
  .mt-sp-118 {
    margin-top: 7.375rem;
  }
  .mt-sp-119 {
    margin-top: 7.4375rem;
  }
  .mt-sp-120 {
    margin-top: 7.5rem;
  }
  .mt-sp-121 {
    margin-top: 7.5625rem;
  }
  .mt-sp-122 {
    margin-top: 7.625rem;
  }
  .mt-sp-123 {
    margin-top: 7.6875rem;
  }
  .mt-sp-124 {
    margin-top: 7.75rem;
  }
  .mt-sp-125 {
    margin-top: 7.8125rem;
  }
  .mt-sp-126 {
    margin-top: 7.875rem;
  }
  .mt-sp-127 {
    margin-top: 7.9375rem;
  }
  .mt-sp-128 {
    margin-top: 8rem;
  }
  .mt-sp-129 {
    margin-top: 8.0625rem;
  }
  .mt-sp-130 {
    margin-top: 8.125rem;
  }
  .mt-sp-131 {
    margin-top: 8.1875rem;
  }
  .mt-sp-132 {
    margin-top: 8.25rem;
  }
  .mt-sp-133 {
    margin-top: 8.3125rem;
  }
  .mt-sp-134 {
    margin-top: 8.375rem;
  }
  .mt-sp-135 {
    margin-top: 8.4375rem;
  }
  .mt-sp-136 {
    margin-top: 8.5rem;
  }
  .mt-sp-137 {
    margin-top: 8.5625rem;
  }
  .mt-sp-138 {
    margin-top: 8.625rem;
  }
  .mt-sp-139 {
    margin-top: 8.6875rem;
  }
  .mt-sp-140 {
    margin-top: 8.75rem;
  }
  .mt-sp-141 {
    margin-top: 8.8125rem;
  }
  .mt-sp-142 {
    margin-top: 8.875rem;
  }
  .mt-sp-143 {
    margin-top: 8.9375rem;
  }
  .mt-sp-144 {
    margin-top: 9rem;
  }
  .mt-sp-145 {
    margin-top: 9.0625rem;
  }
  .mt-sp-146 {
    margin-top: 9.125rem;
  }
  .mt-sp-147 {
    margin-top: 9.1875rem;
  }
  .mt-sp-148 {
    margin-top: 9.25rem;
  }
  .mt-sp-149 {
    margin-top: 9.3125rem;
  }
  .mt-sp-150 {
    margin-top: 9.375rem;
  }
  .mt-sp-151 {
    margin-top: 9.4375rem;
  }
  .mt-sp-152 {
    margin-top: 9.5rem;
  }
  .mt-sp-153 {
    margin-top: 9.5625rem;
  }
  .mt-sp-154 {
    margin-top: 9.625rem;
  }
  .mt-sp-155 {
    margin-top: 9.6875rem;
  }
  .mt-sp-156 {
    margin-top: 9.75rem;
  }
  .mt-sp-157 {
    margin-top: 9.8125rem;
  }
  .mt-sp-158 {
    margin-top: 9.875rem;
  }
  .mt-sp-159 {
    margin-top: 9.9375rem;
  }
  .mt-sp-160 {
    margin-top: 10rem;
  }
  .mt-sp-161 {
    margin-top: 10.0625rem;
  }
  .mt-sp-162 {
    margin-top: 10.125rem;
  }
  .mt-sp-163 {
    margin-top: 10.1875rem;
  }
  .mt-sp-164 {
    margin-top: 10.25rem;
  }
  .mt-sp-165 {
    margin-top: 10.3125rem;
  }
  .mt-sp-166 {
    margin-top: 10.375rem;
  }
  .mt-sp-167 {
    margin-top: 10.4375rem;
  }
  .mt-sp-168 {
    margin-top: 10.5rem;
  }
  .mt-sp-169 {
    margin-top: 10.5625rem;
  }
  .mt-sp-170 {
    margin-top: 10.625rem;
  }
  .mt-sp-171 {
    margin-top: 10.6875rem;
  }
  .mt-sp-172 {
    margin-top: 10.75rem;
  }
  .mt-sp-173 {
    margin-top: 10.8125rem;
  }
  .mt-sp-174 {
    margin-top: 10.875rem;
  }
  .mt-sp-175 {
    margin-top: 10.9375rem;
  }
  .mt-sp-176 {
    margin-top: 11rem;
  }
  .mt-sp-177 {
    margin-top: 11.0625rem;
  }
  .mt-sp-178 {
    margin-top: 11.125rem;
  }
  .mt-sp-179 {
    margin-top: 11.1875rem;
  }
  .mt-sp-180 {
    margin-top: 11.25rem;
  }
  .mt-sp-181 {
    margin-top: 11.3125rem;
  }
  .mt-sp-182 {
    margin-top: 11.375rem;
  }
  .mt-sp-183 {
    margin-top: 11.4375rem;
  }
  .mt-sp-184 {
    margin-top: 11.5rem;
  }
  .mt-sp-185 {
    margin-top: 11.5625rem;
  }
  .mt-sp-186 {
    margin-top: 11.625rem;
  }
  .mt-sp-187 {
    margin-top: 11.6875rem;
  }
  .mt-sp-188 {
    margin-top: 11.75rem;
  }
  .mt-sp-189 {
    margin-top: 11.8125rem;
  }
  .mt-sp-190 {
    margin-top: 11.875rem;
  }
  .mt-sp-191 {
    margin-top: 11.9375rem;
  }
  .mt-sp-192 {
    margin-top: 12rem;
  }
  .mt-sp-193 {
    margin-top: 12.0625rem;
  }
  .mt-sp-194 {
    margin-top: 12.125rem;
  }
  .mt-sp-195 {
    margin-top: 12.1875rem;
  }
  .mt-sp-196 {
    margin-top: 12.25rem;
  }
  .mt-sp-197 {
    margin-top: 12.3125rem;
  }
  .mt-sp-198 {
    margin-top: 12.375rem;
  }
  .mt-sp-199 {
    margin-top: 12.4375rem;
  }
  .mt-sp-200 {
    margin-top: 12.5rem;
  }
}
/* PC・SP共通用 */
.mt-1 {
  margin-top: 0.0625rem;
}

.mt-2 {
  margin-top: 0.125rem;
}

.mt-3 {
  margin-top: 0.1875rem;
}

.mt-4 {
  margin-top: 0.25rem;
}

.mt-5 {
  margin-top: 0.3125rem;
}

.mt-6 {
  margin-top: 0.375rem;
}

.mt-7 {
  margin-top: 0.4375rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-9 {
  margin-top: 0.5625rem;
}

.mt-10 {
  margin-top: 0.625rem;
}

.mt-11 {
  margin-top: 0.6875rem;
}

.mt-12 {
  margin-top: 0.75rem;
}

.mt-13 {
  margin-top: 0.8125rem;
}

.mt-14 {
  margin-top: 0.875rem;
}

.mt-15 {
  margin-top: 0.9375rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-17 {
  margin-top: 1.0625rem;
}

.mt-18 {
  margin-top: 1.125rem;
}

.mt-19 {
  margin-top: 1.1875rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mt-21 {
  margin-top: 1.3125rem;
}

.mt-22 {
  margin-top: 1.375rem;
}

.mt-23 {
  margin-top: 1.4375rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-25 {
  margin-top: 1.5625rem;
}

.mt-26 {
  margin-top: 1.625rem;
}

.mt-27 {
  margin-top: 1.6875rem;
}

.mt-28 {
  margin-top: 1.75rem;
}

.mt-29 {
  margin-top: 1.8125rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mt-31 {
  margin-top: 1.9375rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mt-33 {
  margin-top: 2.0625rem;
}

.mt-34 {
  margin-top: 2.125rem;
}

.mt-35 {
  margin-top: 2.1875rem;
}

.mt-36 {
  margin-top: 2.25rem;
}

.mt-37 {
  margin-top: 2.3125rem;
}

.mt-38 {
  margin-top: 2.375rem;
}

.mt-39 {
  margin-top: 2.4375rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-41 {
  margin-top: 2.5625rem;
}

.mt-42 {
  margin-top: 2.625rem;
}

.mt-43 {
  margin-top: 2.6875rem;
}

.mt-44 {
  margin-top: 2.75rem;
}

.mt-45 {
  margin-top: 2.8125rem;
}

.mt-46 {
  margin-top: 2.875rem;
}

.mt-47 {
  margin-top: 2.9375rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-49 {
  margin-top: 3.0625rem;
}

.mt-50 {
  margin-top: 3.125rem;
}

.mt-51 {
  margin-top: 3.1875rem;
}

.mt-52 {
  margin-top: 3.25rem;
}

.mt-53 {
  margin-top: 3.3125rem;
}

.mt-54 {
  margin-top: 3.375rem;
}

.mt-55 {
  margin-top: 3.4375rem;
}

.mt-56 {
  margin-top: 3.5rem;
}

.mt-57 {
  margin-top: 3.5625rem;
}

.mt-58 {
  margin-top: 3.625rem;
}

.mt-59 {
  margin-top: 3.6875rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.mt-61 {
  margin-top: 3.8125rem;
}

.mt-62 {
  margin-top: 3.875rem;
}

.mt-63 {
  margin-top: 3.9375rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mt-65 {
  margin-top: 4.0625rem;
}

.mt-66 {
  margin-top: 4.125rem;
}

.mt-67 {
  margin-top: 4.1875rem;
}

.mt-68 {
  margin-top: 4.25rem;
}

.mt-69 {
  margin-top: 4.3125rem;
}

.mt-70 {
  margin-top: 4.375rem;
}

.mt-71 {
  margin-top: 4.4375rem;
}

.mt-72 {
  margin-top: 4.5rem;
}

.mt-73 {
  margin-top: 4.5625rem;
}

.mt-74 {
  margin-top: 4.625rem;
}

.mt-75 {
  margin-top: 4.6875rem;
}

.mt-76 {
  margin-top: 4.75rem;
}

.mt-77 {
  margin-top: 4.8125rem;
}

.mt-78 {
  margin-top: 4.875rem;
}

.mt-79 {
  margin-top: 4.9375rem;
}

.mt-80 {
  margin-top: 5rem;
}

.mt-81 {
  margin-top: 5.0625rem;
}

.mt-82 {
  margin-top: 5.125rem;
}

.mt-83 {
  margin-top: 5.1875rem;
}

.mt-84 {
  margin-top: 5.25rem;
}

.mt-85 {
  margin-top: 5.3125rem;
}

.mt-86 {
  margin-top: 5.375rem;
}

.mt-87 {
  margin-top: 5.4375rem;
}

.mt-88 {
  margin-top: 5.5rem;
}

.mt-89 {
  margin-top: 5.5625rem;
}

.mt-90 {
  margin-top: 5.625rem;
}

.mt-91 {
  margin-top: 5.6875rem;
}

.mt-92 {
  margin-top: 5.75rem;
}

.mt-93 {
  margin-top: 5.8125rem;
}

.mt-94 {
  margin-top: 5.875rem;
}

.mt-95 {
  margin-top: 5.9375rem;
}

.mt-96 {
  margin-top: 6rem;
}

.mt-97 {
  margin-top: 6.0625rem;
}

.mt-98 {
  margin-top: 6.125rem;
}

.mt-99 {
  margin-top: 6.1875rem;
}

.mt-100 {
  margin-top: 6.25rem;
}

.mt-101 {
  margin-top: 6.3125rem;
}

.mt-102 {
  margin-top: 6.375rem;
}

.mt-103 {
  margin-top: 6.4375rem;
}

.mt-104 {
  margin-top: 6.5rem;
}

.mt-105 {
  margin-top: 6.5625rem;
}

.mt-106 {
  margin-top: 6.625rem;
}

.mt-107 {
  margin-top: 6.6875rem;
}

.mt-108 {
  margin-top: 6.75rem;
}

.mt-109 {
  margin-top: 6.8125rem;
}

.mt-110 {
  margin-top: 6.875rem;
}

.mt-111 {
  margin-top: 6.9375rem;
}

.mt-112 {
  margin-top: 7rem;
}

.mt-113 {
  margin-top: 7.0625rem;
}

.mt-114 {
  margin-top: 7.125rem;
}

.mt-115 {
  margin-top: 7.1875rem;
}

.mt-116 {
  margin-top: 7.25rem;
}

.mt-117 {
  margin-top: 7.3125rem;
}

.mt-118 {
  margin-top: 7.375rem;
}

.mt-119 {
  margin-top: 7.4375rem;
}

.mt-120 {
  margin-top: 7.5rem;
}

.mt-121 {
  margin-top: 7.5625rem;
}

.mt-122 {
  margin-top: 7.625rem;
}

.mt-123 {
  margin-top: 7.6875rem;
}

.mt-124 {
  margin-top: 7.75rem;
}

.mt-125 {
  margin-top: 7.8125rem;
}

.mt-126 {
  margin-top: 7.875rem;
}

.mt-127 {
  margin-top: 7.9375rem;
}

.mt-128 {
  margin-top: 8rem;
}

.mt-129 {
  margin-top: 8.0625rem;
}

.mt-130 {
  margin-top: 8.125rem;
}

.mt-131 {
  margin-top: 8.1875rem;
}

.mt-132 {
  margin-top: 8.25rem;
}

.mt-133 {
  margin-top: 8.3125rem;
}

.mt-134 {
  margin-top: 8.375rem;
}

.mt-135 {
  margin-top: 8.4375rem;
}

.mt-136 {
  margin-top: 8.5rem;
}

.mt-137 {
  margin-top: 8.5625rem;
}

.mt-138 {
  margin-top: 8.625rem;
}

.mt-139 {
  margin-top: 8.6875rem;
}

.mt-140 {
  margin-top: 8.75rem;
}

.mt-141 {
  margin-top: 8.8125rem;
}

.mt-142 {
  margin-top: 8.875rem;
}

.mt-143 {
  margin-top: 8.9375rem;
}

.mt-144 {
  margin-top: 9rem;
}

.mt-145 {
  margin-top: 9.0625rem;
}

.mt-146 {
  margin-top: 9.125rem;
}

.mt-147 {
  margin-top: 9.1875rem;
}

.mt-148 {
  margin-top: 9.25rem;
}

.mt-149 {
  margin-top: 9.3125rem;
}

.mt-150 {
  margin-top: 9.375rem;
}

.mt-151 {
  margin-top: 9.4375rem;
}

.mt-152 {
  margin-top: 9.5rem;
}

.mt-153 {
  margin-top: 9.5625rem;
}

.mt-154 {
  margin-top: 9.625rem;
}

.mt-155 {
  margin-top: 9.6875rem;
}

.mt-156 {
  margin-top: 9.75rem;
}

.mt-157 {
  margin-top: 9.8125rem;
}

.mt-158 {
  margin-top: 9.875rem;
}

.mt-159 {
  margin-top: 9.9375rem;
}

.mt-160 {
  margin-top: 10rem;
}

.mt-161 {
  margin-top: 10.0625rem;
}

.mt-162 {
  margin-top: 10.125rem;
}

.mt-163 {
  margin-top: 10.1875rem;
}

.mt-164 {
  margin-top: 10.25rem;
}

.mt-165 {
  margin-top: 10.3125rem;
}

.mt-166 {
  margin-top: 10.375rem;
}

.mt-167 {
  margin-top: 10.4375rem;
}

.mt-168 {
  margin-top: 10.5rem;
}

.mt-169 {
  margin-top: 10.5625rem;
}

.mt-170 {
  margin-top: 10.625rem;
}

.mt-171 {
  margin-top: 10.6875rem;
}

.mt-172 {
  margin-top: 10.75rem;
}

.mt-173 {
  margin-top: 10.8125rem;
}

.mt-174 {
  margin-top: 10.875rem;
}

.mt-175 {
  margin-top: 10.9375rem;
}

.mt-176 {
  margin-top: 11rem;
}

.mt-177 {
  margin-top: 11.0625rem;
}

.mt-178 {
  margin-top: 11.125rem;
}

.mt-179 {
  margin-top: 11.1875rem;
}

.mt-180 {
  margin-top: 11.25rem;
}

.mt-181 {
  margin-top: 11.3125rem;
}

.mt-182 {
  margin-top: 11.375rem;
}

.mt-183 {
  margin-top: 11.4375rem;
}

.mt-184 {
  margin-top: 11.5rem;
}

.mt-185 {
  margin-top: 11.5625rem;
}

.mt-186 {
  margin-top: 11.625rem;
}

.mt-187 {
  margin-top: 11.6875rem;
}

.mt-188 {
  margin-top: 11.75rem;
}

.mt-189 {
  margin-top: 11.8125rem;
}

.mt-190 {
  margin-top: 11.875rem;
}

.mt-191 {
  margin-top: 11.9375rem;
}

.mt-192 {
  margin-top: 12rem;
}

.mt-193 {
  margin-top: 12.0625rem;
}

.mt-194 {
  margin-top: 12.125rem;
}

.mt-195 {
  margin-top: 12.1875rem;
}

.mt-196 {
  margin-top: 12.25rem;
}

.mt-197 {
  margin-top: 12.3125rem;
}

.mt-198 {
  margin-top: 12.375rem;
}

.mt-199 {
  margin-top: 12.4375rem;
}

.mt-200 {
  margin-top: 12.5rem;
}

/* ---------- margin-topの設定 | ここまで ---------- */
/* ---------- スクリーンリーダー専用テキスト（視覚的に非表示） | ここから ---------- */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

/* ---------- スクリーンリーダーオンリー用の記述 | ここまで ---------- */
.action-guideline {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .action-guideline {
    margin-top: 5rem;
  }
}

.action-guideline .section-heading {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .action-guideline .section-heading {
    align-items: flex-start;
  }
}

.action-guideline__card {
  max-width: 71.875rem;
  width: calc(100% + 0.625rem);
  margin-top: 3.9375rem;
  margin-left: -0.625rem;
  padding-block: 3.125rem 4.1875rem;
  padding-inline: 3.4375rem 1.25rem;
  background-image: var(--action-guideline-bg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .action-guideline__card {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .action-guideline__card {
    width: 100%;
    margin-top: 1.875rem;
    margin-left: 0;
    padding-block: 1.875rem 2.5rem;
    padding-inline: 1.25rem;
  }
}

.action-guideline__title {
  max-width: 65rem;
  width: 100%;
}

.action-guideline__title-img {
  width: 100%;
  height: auto;
}

.action-guideline__items {
  margin-top: 3.1875rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1023px) {
  .action-guideline__items {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .action-guideline__items {
    margin-top: 1.875rem;
  }
}

.action-guideline__item {
  position: relative;
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  column-gap: 0.625rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .action-guideline__item {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    column-gap: 0.75rem;
  }
}

.action-guideline__item + .action-guideline__item {
  margin-top: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .action-guideline__item + .action-guideline__item {
    margin-top: 3rem;
  }
}

.action-guideline__item + .action-guideline__item::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  right: 0.0625rem;
  left: 0.5625rem;
  border-top: 1px dotted #ffffff;
}
@media screen and (max-width: 767px) {
  .action-guideline__item + .action-guideline__item::before {
    top: -1.5rem;
    right: 0;
    left: 0;
  }
}

.action-guideline__num {
  display: grid;
  place-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-top: -0.625rem;
  font-size: 5.25rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .action-guideline__num {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0;
    font-size: 3rem;
  }
}

.action-guideline__name {
  font-size: 2.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.8888888889;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .action-guideline__name {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .action-guideline__name {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.action-guideline__text {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .action-guideline__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .action-guideline__text {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.js-fade-op,
.js-fade-ops,
.js-fade-ops-after,
.js-fv-fade,
.js-fv-glitch-text,
.js-glitch-text,
.js-banner-corner,
.js-fv-noise-bars {
  opacity: 0;
}

/* GSAP の autoAlpha で表示する要素は visibility 側で初期非表示にする */
.js-banner-up,
.js-banner-btn,
.js-logo-burst,
.js-fv-dive,
.js-fadeIn-angles {
  visibility: hidden;
}

/* js-fadeIn-rights / js-fadeIn-ups は GSAP の autoAlpha が visibility を制御するため、opacity ではなく visibility 側で初期非表示にする */
.js-fadeIn-rights,
.js-fadeIn-ups {
  visibility: hidden;
}

/* 子の初期位置 x: 100 が画面外へ出て横スクロールが発生するため、トリガー側で横方向だけ切り取る（clip は hidden と違い overflow-y: visible を保てる） */
.js-fadeIn-rights-trigger {
  overflow-x: clip;
}

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
/* ---------- FV カラーチャンネルグリッチ（js-fv-glitch-text / js-glitch-text）| ここから ---------- */
/* js-fv-glitch-text は下層 FV 用（読込 500ms 後に即発火）、js-glitch-text は
   セクション見出し用（スクロール到達で発火）。見た目は同じ fv-glitch キーフレームを共用し、
   発火のタイミングだけ _anime.js 側で分ける */
/* ジッターの translate で右端の要素が画面外へ出て横スクロールが発生するため、
   トリガー側で横方向だけ切り取る（clip は hidden と違い overflow-y: visible を保てる） */
.js-fv-glitch-trigger,
.js-glitch-trigger {
  overflow-x: clip;
}

.js-fv-glitch-text,
.js-glitch-text,
.js-banner-corner {
  position: relative;
}

.js-fv-glitch-text.is-glitch,
.js-glitch-text.is-glitch,
.js-banner-corner.is-glitch {
  animation: fv-glitch 0.5s step-end forwards;
}

.js-fv-glitch-text.is-glitch::before,
.js-fv-glitch-text.is-glitch::after,
.js-glitch-text.is-glitch::before,
.js-glitch-text.is-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.js-fv-glitch-text.is-glitch::before,
.js-glitch-text.is-glitch::before {
  background: rgba(255, 150, 170, 0.8);
  animation: fv-glitch-red 0.5s step-end;
}

.js-fv-glitch-text.is-glitch::after,
.js-glitch-text.is-glitch::after {
  background: rgba(140, 200, 255, 0.8);
  animation: fv-glitch-blue 0.5s step-end;
}

/* 小さいテキスト用の弱め版。スライス帯を出さずジッター + 色ずれのみに絞る */
.js-fv-glitch-text-soft.is-glitch::before,
.js-fv-glitch-text-soft.is-glitch::after {
  content: none;
}

/* 本体：ジッター + ブラックアウト + テキスト色ずれ */
@keyframes fv-glitch {
  0% {
    opacity: 0;
    transform: translate(0, 0);
    text-shadow: none;
  }
  3% {
    opacity: 1;
    transform: translate(-0.375rem, 0.125rem);
    text-shadow: 0.25rem 0 rgba(255, 150, 170, 0.8), -0.25rem 0 rgba(140, 200, 255, 0.8);
  }
  6% {
    transform: translate(0.5rem, -0.0625rem);
    text-shadow: -0.1875rem 0 rgba(255, 150, 170, 0.8), 0.3125rem 0 rgba(140, 200, 255, 0.8);
  }
  9% {
    transform: translate(-0.25rem, 0);
    text-shadow: 0.125rem 0 rgba(140, 200, 255, 0.8);
  }
  12% {
    transform: translate(0.3125rem, 0.0625rem);
    text-shadow: -0.3125rem 0 rgba(255, 150, 170, 0.8), 0.1875rem 0 rgba(140, 200, 255, 0.8);
  }
  15% {
    opacity: 0;
    transform: translate(-0.1875rem, 0);
    text-shadow: none;
  }
  18% {
    opacity: 1;
    transform: translate(0.4375rem, -0.125rem);
    text-shadow: 0.3125rem 0 rgba(255, 150, 170, 0.8), -0.3125rem 0 rgba(140, 200, 255, 0.8);
  }
  21% {
    transform: translate(-0.5rem, 0.0625rem);
    text-shadow: -0.25rem 0 rgba(255, 150, 170, 0.8);
  }
  24% {
    transform: translate(0.1875rem, 0);
    text-shadow: 0.1875rem 0 rgba(140, 200, 255, 0.8), -0.1875rem 0 rgba(255, 150, 170, 0.8);
  }
  27% {
    opacity: 0;
    transform: translate(-0.3125rem, -0.0625rem);
    text-shadow: none;
  }
  30% {
    opacity: 1;
    transform: translate(0.375rem, 0);
    text-shadow: -0.25rem 0 rgba(140, 200, 255, 0.8);
  }
  33% {
    transform: translate(-0.125rem, 0.125rem);
    text-shadow: 0.1875rem 0 rgba(255, 150, 170, 0.8), -0.125rem 0 rgba(140, 200, 255, 0.8);
  }
  36% {
    transform: translate(0.25rem, -0.0625rem);
    text-shadow: -0.1875rem 0 rgba(255, 150, 170, 0.6);
  }
  39% {
    opacity: 0;
    transform: translate(0, 0);
    text-shadow: none;
  }
  42% {
    opacity: 1;
    transform: translate(-0.1875rem, 0);
    text-shadow: 0.125rem 0 rgba(140, 200, 255, 0.5);
  }
  45% {
    transform: translate(0.125rem, 0);
    text-shadow: -0.125rem 0 rgba(255, 150, 170, 0.4);
  }
  48% {
    opacity: 1;
    transform: translate(0, 0);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    text-shadow: none;
  }
}
/* オーバーレイ：細かいスライスが高速で走る */
@keyframes fv-glitch-red {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  3% {
    clip-path: inset(2% 0 90% 0);
    opacity: 1;
    transform: translateX(-1.125rem);
  }
  6% {
    clip-path: inset(15% 0 78% 0);
    transform: translateX(1.375rem);
  }
  9% {
    clip-path: inset(35% 0 58% 0);
    transform: translateX(-1.5625rem);
  }
  12% {
    clip-path: inset(52% 0 40% 0);
    transform: translateX(0.9375rem);
  }
  15% {
    clip-path: inset(0);
    opacity: 0;
  }
  18% {
    clip-path: inset(8% 0 85% 0);
    opacity: 1;
    transform: translateX(1.25rem);
  }
  21% {
    clip-path: inset(28% 0 65% 0);
    transform: translateX(-1.375rem);
  }
  24% {
    clip-path: inset(45% 0 48% 0);
    transform: translateX(1.125rem);
  }
  27% {
    clip-path: inset(0);
    opacity: 0;
  }
  30% {
    clip-path: inset(62% 0 30% 0);
    opacity: 1;
    transform: translateX(-1.25rem);
  }
  33% {
    clip-path: inset(78% 0 15% 0);
    transform: translateX(1.5625rem);
  }
  36% {
    clip-path: inset(92% 0 2% 0);
    transform: translateX(-0.9375rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(18% 0 75% 0);
    opacity: 0.4;
    transform: translateX(-0.625rem);
  }
  45% {
    clip-path: inset(55% 0 40% 0);
    opacity: 0.3;
    transform: translateX(0.5rem);
  }
  48%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
/* オーバーレイ：逆方向の細かいスライス */
@keyframes fv-glitch-blue {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  3% {
    clip-path: inset(88% 0 5% 0);
    opacity: 1;
    transform: translateX(1.25rem);
  }
  6% {
    clip-path: inset(70% 0 22% 0);
    transform: translateX(-1.125rem);
  }
  9% {
    clip-path: inset(50% 0 42% 0);
    transform: translateX(1.375rem);
  }
  12% {
    clip-path: inset(22% 0 70% 0);
    transform: translateX(-1.25rem);
  }
  15% {
    clip-path: inset(0);
    opacity: 0;
  }
  18% {
    clip-path: inset(82% 0 10% 0);
    opacity: 1;
    transform: translateX(-1.375rem);
  }
  21% {
    clip-path: inset(58% 0 35% 0);
    transform: translateX(1.25rem);
  }
  24% {
    clip-path: inset(38% 0 55% 0);
    transform: translateX(-0.9375rem);
  }
  27% {
    clip-path: inset(0);
    opacity: 0;
  }
  30% {
    clip-path: inset(5% 0 88% 0);
    opacity: 1;
    transform: translateX(1.375rem);
  }
  33% {
    clip-path: inset(20% 0 72% 0);
    transform: translateX(-1.125rem);
  }
  36% {
    clip-path: inset(42% 0 50% 0);
    transform: translateX(1.25rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(72% 0 20% 0);
    opacity: 0.4;
    transform: translateX(0.625rem);
  }
  45% {
    clip-path: inset(30% 0 62% 0);
    opacity: 0.3;
    transform: translateX(-0.5rem);
  }
  48%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
/* ---------- FV カラーチャンネルグリッチ（js-fv-glitch-text / js-glitch-text）| ここまで ---------- */
/* ---------- FV ノイズバー（js-fv-noise-bars / js-fv-noise-bar）| ここから ---------- */
/* 左→右のワイプで線を伸ばす。width を動かすと aspect-ratio 経由で高さと縦位置まで変わってしまうため、要素サイズを変えない clip-path で見た目だけ伸ばす */
.js-fv-noise-bars {
  clip-path: inset(0 100% 0 0);
}

/* 方向修飾子: 左側を全量クリップし、右→左のワイプで線を伸ばす（下側の装飾帯用） */
.js-fv-noise-bars-reverse {
  clip-path: inset(0 0 0 100%);
}

/* 発火前と伸長中は、3 本とも同じ縦位置・同じ太さに潰して 1 本の線に見せる */
.js-fv-noise-bars.is-flat .js-fv-noise-bar {
  grid-row: 1/-1;
  align-self: center;
  height: 0.375rem;
}

.js-fv-noise-bars.is-stretch {
  opacity: 1;
  clip-path: inset(0);
  /* 序盤と終盤を遅く、中盤を速くする */
  transition: clip-path 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

/* --noise-scale は JS が requestAnimationFrame で毎フレーム書き換える */
.js-fv-noise-bar {
  transform: scaleY(var(--noise-scale, 1));
  transform-origin: center;
}

/* ---------- FV ノイズバー（js-fv-noise-bars / js-fv-noise-bar）| ここまで ---------- */
/* ---------- クリップパス ワイプ（js-clip / js-fv-clip）| ここから ---------- */
/* code-stock「js-clip」準拠 */
/* 初期値: 右側を全量クリップ = 非表示。is-open で左→右ワイプ */
.js-clip,
.js-fv-clip {
  clip-path: inset(0 100% 0 0);
}

/* 方向修飾子: 左側を全量クリップ。is-open で右→左ワイプ */
.js-clip.js-clip-reverse,
.js-fv-clip.js-clip-reverse {
  clip-path: inset(0 0 0 100%);
}

/* 方向修飾子: 下側を全量クリップ。is-open で上→下ワイプ */
.js-clip.js-clip-down,
.js-fv-clip.js-clip-down {
  clip-path: inset(0 0 100% 0);
}

/* 方向修飾子: 左→右ワイプだが上下は常に開けておく（bleed = はみ出し許容）。
   帯の外へ出ている子要素（top-recruit のキャラクター等）を、ワイプ後も切らないための版。
   通常版の終了値 inset(0) は要素の矩形でクリップし続けるため、はみ出し分が永久に欠ける */
.js-clip.js-clip-bleed {
  clip-path: inset(-100% 100% -100% 0);
}

.js-clip.js-clip-bleed.is-open {
  animation: clip-open-bleed 0.3s linear forwards;
}

@keyframes clip-open-bleed {
  100% {
    clip-path: inset(-100% -100% -100% -100%);
  }
}
/* スクロール発火版は 0.3s（js-mask と対称） */
.js-clip.is-open {
  animation: clip-open 0.3s linear forwards;
}

/* FV 版は 1s（表示演出としてワイプの動きを見せる） */
.js-fv-clip.is-open {
  animation: clip-open 1s linear forwards;
}

/* 下層 FV のループはユーザー指定で 0.5s + 序盤ゆっくり・終盤速く（easeInCubic）に上書き */
.lower-fv__loop.is-open {
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
}

/* 0% キーフレーム省略 = 各要素の初期 clip-path（方向別）から inset(0) へ補間。
   1 keyframe で正方向・逆方向の両対応になる（0% を書くと方向別に複製が必要になる） */
@keyframes clip-open {
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ---------- クリップパス ワイプ（js-clip / js-fv-clip）| ここまで ---------- */
/* ---------- お問い合わせバナー シーケンス（js-banner-*）| ここから ---------- */
/* 左右から入るボタンの初期位置（x: ±40）が画面外へ出て横スクロールが発生するため、
   トリガー側で横方向だけ切り取る（clip は hidden と違い overflow-y: visible を保てる） */
.js-banner-trigger {
  overflow-x: clip;
}

/* 疑似要素には GSAP を直接適用できないため、JS は親のカスタムプロパティを書き換える。
   --frame-in は登場の 0.8 → 1、--frame-scroll はスクロール連動の 1 → 1.2 → 1 */
.js-banner-hero {
  --bg-op: 0;
  --frame-in: 0.8;
  --frame-scroll: 1;
}

/* フレーム本体（::after）と登場グリッチのレイヤーは同じ倍率で動かす。
   transform-origin を下端に固定しないと、拡大時にフレーム下辺が背景からずれる */
.js-banner-hero::after,
.js-banner-frame-glitch {
  transform: scale(calc(var(--frame-in, 1) * var(--frame-scroll, 1)));
  transform-origin: bottom center;
}

.js-banner-hero::after {
  opacity: 0;
}

/* 登場時のちらつき。opacity のみを step-end で切り替え、拡大（transform）とは干渉させない */
.js-banner-hero.is-frame-in::after {
  animation: banner-frame-in 0.5s step-end forwards;
}

@keyframes banner-frame-in {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  26% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  46%, 100% {
    opacity: 1;
  }
}
/* 登場グリッチのレイヤー。ストック（_glitch-img.scss）の帯アニメは写真向けで、
   白い線画では細い横帯しか変化せず「部分的にしか効かない」見え方になる。
   本セクションではマスクで色を敷き、赤・青のチャンネルを左右へずらした全面の色ずれを主にする
   （ストック本体は変更せず、詳細度を上げてこちらを優先させる） */
.js-banner-frame-glitch .glitch-img-02__layer::before {
  background-image: none;
  mask-image: var(--glitch-src);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mix-blend-mode: screen;
}

.js-banner-frame-glitch .glitch-img-02__layer:nth-child(1)::before {
  background-color: rgb(255, 90, 120);
}

.js-banner-frame-glitch .glitch-img-02__layer:nth-child(2)::before {
  background-color: rgb(90, 190, 255);
}

/* 3 枚目は本体と同じ白。グリッチ中は本体（::after）が点滅で消えるため、
   この白レイヤーが「ずれた実体」として残り、線画が多重にぶれて見える */
.js-banner-frame-glitch .glitch-img-02__layer:nth-child(3)::before {
  background-color: #ffffff;
}

/* ずれ幅は layer、点滅と帯は ::before に分ける（同要素へ併記すると Chrome で歪みが無効化される） */
.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(1) {
  transform: translate(-3%, 1%);
}

.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(2) {
  transform: translate(3%, -1%);
}

.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(3) {
  transform: translate(-1%, -0.5%);
}

.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(1)::before {
  animation: banner-glitch-red 0.6s step-end;
}

.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(2)::before {
  animation: banner-glitch-blue 0.6s step-end;
}

.js-banner-frame-glitch.glitch-img-02-active .glitch-img-02__layer:nth-child(3)::before {
  animation: banner-glitch-flash 0.6s step-end;
}

/* 全面の色ずれと横帯を交互に出す。step-end で補間せず瞬間的に切り替える */
@keyframes banner-glitch-red {
  0% {
    opacity: 0;
    clip-path: inset(0);
  }
  6% {
    opacity: 1;
    clip-path: inset(0);
  }
  16% {
    opacity: 1;
    clip-path: inset(0 0 62% 0);
  }
  26% {
    opacity: 0.9;
    clip-path: inset(38% 0 30% 0);
  }
  36% {
    opacity: 1;
    clip-path: inset(0);
  }
  46% {
    opacity: 0.8;
    clip-path: inset(66% 0 8% 0);
  }
  58% {
    opacity: 1;
    clip-path: inset(12% 0 70% 0);
  }
  70% {
    opacity: 0;
    clip-path: inset(0);
  }
  82% {
    opacity: 0.6;
    clip-path: inset(40% 0 40% 0);
  }
  92%, 100% {
    opacity: 0;
    clip-path: inset(0);
  }
}
@keyframes banner-glitch-blue {
  0% {
    opacity: 0;
    clip-path: inset(0);
  }
  6% {
    opacity: 1;
    clip-path: inset(0);
  }
  16% {
    opacity: 1;
    clip-path: inset(58% 0 0 0);
  }
  26% {
    opacity: 0.9;
    clip-path: inset(20% 0 52% 0);
  }
  36% {
    opacity: 1;
    clip-path: inset(0);
  }
  46% {
    opacity: 0.8;
    clip-path: inset(4% 0 72% 0);
  }
  58% {
    opacity: 1;
    clip-path: inset(70% 0 6% 0);
  }
  70% {
    opacity: 0;
    clip-path: inset(0);
  }
  82% {
    opacity: 0.6;
    clip-path: inset(30% 0 46% 0);
  }
  92%, 100% {
    opacity: 0;
    clip-path: inset(0);
  }
}
/* 白レイヤーは本体の分身として、グリッチ中はほぼ出続けながら位置と欠けを切り替える */
@keyframes banner-glitch-flash {
  0% {
    opacity: 0;
    clip-path: inset(0);
  }
  6% {
    opacity: 1;
    clip-path: inset(0);
  }
  16% {
    opacity: 1;
    clip-path: inset(0 0 45% 0);
  }
  26% {
    opacity: 1;
    clip-path: inset(30% 0 0 0);
  }
  36% {
    opacity: 1;
    clip-path: inset(0);
  }
  46% {
    opacity: 0.9;
    clip-path: inset(55% 0 0 0);
  }
  58% {
    opacity: 1;
    clip-path: inset(0 0 24% 0);
  }
  70% {
    opacity: 0.5;
    clip-path: inset(0);
  }
  82% {
    opacity: 0.8;
    clip-path: inset(18% 0 18% 0);
  }
  92%, 100% {
    opacity: 0;
    clip-path: inset(0);
  }
}
/* 青ブラシは左→右のワイプで描画する。--brush-clip は JS が 100% → 0% へ補間する */
.js-banner-brush {
  --brush-clip: 100%;
}

.js-banner-brush::after {
  clip-path: inset(0 var(--brush-clip) 0 0);
}

/* ---------- お問い合わせバナー シーケンス（js-banner-*）| ここまで ---------- */
/* ---------- トップ MV シーケンス（js-mv-*）| ここから ---------- */
/* 初期非表示（チラつき防止）。GSAP の autoAlpha（_mv.js のタイムライン）が表示を戻す */
.js-mv-fade,
.js-mv-main,
.js-mv-up {
  opacity: 0;
  visibility: hidden;
}

/* コーナーテキストは contact-banner のコーナーと同じくグリッチ発火（is-glitch）まで隠し、
   同じ fv-glitch キーフレームでジッター表示する */
.js-mv-corner {
  position: relative;
  opacity: 0;
}

.js-mv-corner.is-glitch {
  animation: fv-glitch 0.5s step-end forwards;
}

/* 青ブラシの描画ワイプ（contact-banner の js-banner-brush と同機構）。
   --brush-clip は _mv.js が 100% → 0% へ補間する */
.js-mv-brush {
  --brush-clip: 100%;
}

.js-mv-brush::after {
  clip-path: inset(0 var(--brush-clip) 0 0);
}

/* mv-01-main の鼓動（電気ショック風）。1 拍 = 0.36s の one-shot アニメで、周期（1.6s）は
   _mv.js の setTimeout ループが is-shock の付け外しとキャンバスグリッチを同時に駆動する
   （CSS infinite と JS ループを別々に走らせると周期がずれていくため、拍の起点を JS に一本化）。
   カラーチャンネルの色ずれは色レイヤーの重ね焼きでなく、_mv.js のキャンバス描画
   （tksiiii の p5 グリッチ https://codepen.io/tksiiii/pen/xdQgJX の再現）が担う。
   位置合わせの translate プロパティと干渉しないよう、スナップは wrapper の scale・
   ジッターは img / canvas 側の translate で行う */
.js-mv-main.is-shock {
  animation: mv-shock 0.36s step-end;
}

.js-mv-main.is-shock .mv__main-img,
.js-mv-main.is-shock .mv__main-canvas {
  animation: mv-shock-img 0.36s step-end;
}

@keyframes mv-shock {
  0%, 100% {
    scale: 1;
  }
  15% {
    scale: 1.055;
  }
  28% {
    scale: 1.02;
  }
  42% {
    scale: 1.07;
  }
  58% {
    scale: 1.035;
  }
  76% {
    scale: 1.05;
  }
}
/* 輝度は brightness のみ・軽めに振る（saturate / contrast の重ね掛けは色が濃く不自然だったため撤去） */
@keyframes mv-shock-img {
  0%, 100% {
    translate: 0 0;
    filter: none;
  }
  15% {
    translate: -7px 4px;
    filter: brightness(1.3);
  }
  28% {
    translate: 6px -4px;
    filter: brightness(0.88);
  }
  42% {
    translate: -5px -5px;
    filter: brightness(1.45);
  }
  58% {
    translate: 7px 3px;
    filter: brightness(1.08);
  }
  76% {
    translate: -6px 2px;
    filter: brightness(1.22);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-mv-fade,
  .js-mv-main,
  .js-mv-up,
  .js-mv-corner {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
  }
  .js-mv-corner.is-glitch::before,
  .js-mv-corner.is-glitch::after {
    content: none;
  }
  .js-mv-brush::after {
    clip-path: none !important;
  }
  /* 電気ショック（鼓動）は動きそのものが本体のため、静止時はキャンバスごと消す */
  .js-mv-main.is-shock,
  .js-mv-main.is-shock .mv__main-img {
    animation: none !important;
    translate: none;
    filter: none;
  }
  .mv__main-canvas {
    display: none;
  }
}
/* ---------- トップ MV シーケンス（js-mv-*）| ここまで ---------- */
/* ---------- トップ 採用バナー シーケンス（js-recruit-*）| ここから ---------- */
/* 帯（白背景）が左→右にワイプ → 帯の装飾 2 枚が上→下に出現 → キャラクターが上→下に出現
   （同時にグリッチ）→ 見出しが下から 20px フェードイン（同時にグリッチ）、の順に再生する。
   帯・キャラクターのワイプ自体は code-stock「js-clip」の機構をそのまま使い、
   発火順の管理だけを _anime.js のタイムラインへ寄せる（js-clip-seq が汎用 Observer の対象外にする印）*/
/* 装飾は疑似要素のため GSAP を直接適用できない。上→下のワイプは CSS アニメーションで行う */
.js-recruit-deco::before,
.js-recruit-deco::after {
  clip-path: inset(0 0 100% 0);
}

.js-recruit-deco.is-deco-open::before,
.js-recruit-deco.is-deco-open::after {
  animation: clip-open 0.3s linear forwards;
}

/* 見出しは GSAP の autoAlpha で表示するため visibility 側で初期非表示にする */
.js-recruit-up {
  visibility: hidden;
}

/* 見出しのグリッチは code-stock「glitch-img-layers」バリアント C（mask 方式）。
   青一色の線画素材のため、帯ずらし方式（B）では帯の中に情報量が無く効いて見えない。
   背景が白帯なので、バリアント C 既定の screen（加算）では色が飛んで見えず multiply を使う */
.js-recruit-heading .glitch-img-02__layer::before {
  background-image: none;
  mask-image: var(--glitch-src);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mix-blend-mode: multiply;
}

.js-recruit-heading .glitch-img-02__layer:nth-child(1)::before {
  background-color: rgb(255, 90, 120);
}

.js-recruit-heading .glitch-img-02__layer:nth-child(2)::before {
  background-color: rgb(90, 190, 255);
}

/* 3 枚目は本体と同じ青。グリッチ中は本体（img）が点滅で消えるため、
   この青レイヤーが「ずれた実体」として残り、線画が多重にぶれて見える */
.js-recruit-heading .glitch-img-02__layer:nth-child(3)::before {
  background-color: #0090ff;
}

/* ずれ幅は layer、点滅と帯は ::before に分ける（同要素へ併記すると Chrome で歪みが無効化される）。
   キーフレームは contact-banner と共通（同じ 0.6s step-end の登場グリッチ） */
.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(1) {
  transform: translate(-3%, 1%);
}

.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(2) {
  transform: translate(3%, -1%);
}

.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(3) {
  transform: translate(-1%, -0.5%);
}

.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(1)::before {
  animation: banner-glitch-red 0.6s step-end;
}

.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(2)::before {
  animation: banner-glitch-blue 0.6s step-end;
}

.js-recruit-heading.glitch-img-02-active .glitch-img-02__layer:nth-child(3)::before {
  animation: banner-glitch-flash 0.6s step-end;
}

/* 本体側の点滅。消えている間だけ 3 枚目のずれた青が実体として見える */
.js-recruit-heading.glitch-img-02-active .top-recruit__heading-img {
  animation: recruit-heading-flicker 0.6s step-end;
}

@keyframes recruit-heading-flicker {
  0%, 12% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  44% {
    opacity: 0;
  }
  56%, 100% {
    opacity: 1;
  }
}
/* ---------- トップ 採用バナー シーケンス（js-recruit-*）| ここまで ---------- */
/* ---------- ブラシ描画（js-brush / js-brush-circle）| ここから ---------- */
/* 疑似要素へ置いたブラシ素材を、筆で引いたように出すための基盤。
   ::before / ::after のどちらに素材を置いていても効くよう両方へかける（content を持たない側は
   生成されないため指定しても影響しない）。装飾以外の疑似要素を持つ要素へは付けないこと。
   発火条件と待ち時間は _anime.js の playBrushDraw() が持つ */
/* 線・波のブラシ。左から右へのワイプで引く。--brush-clip は _anime.js が 100% → 0% へ補間する
   （js-banner-brush / js-mv-brush と同機構） */
.js-brush {
  --brush-clip: 100%;
}

.js-brush::before,
.js-brush::after {
  clip-path: inset(0 var(--brush-clip) 0 0);
}

/* 丸囲みのブラシ。中心まわりを一周させて引く。--brush-sweep は _anime.js が 0deg → 360deg へ補間する。
   素材（brush-stroke-circle-*.svg）は塗りのパスでストロークを持たないため、_btn-header.scss の丸で
   使っている stroke-dashoffset 方式は使えない。代わりに扇形のマスクを筆順と同じ向きへ広げて
   未描画の部分を隠す。
   --brush-start は筆の書き終わり（= 扇形の固定側）の角度。素材のパス始点は中心から見て左下
   （300 × 100 の viewBox で 114.07, 99.8 = 216deg）にあり、そこから反時計回りに一周する筆順のため、
   扇形の先端側（start − sweep）が反時計回りへ進むように from を動かす。
   素材側で mask-image を使っている要素へ展開する場合は、モジュール側で
   `mask-image: url(module/...), var(--brush-mask); mask-composite: intersect;` と併記して上書きする */
.js-brush-circle {
  --brush-sweep: 0deg;
  --brush-start: 216deg;
  /* 疑似要素からもモジュール側の上書きからも参照できるよう、扇形そのものは本体側で持つ */
  --brush-mask: conic-gradient(from calc(var(--brush-start) - var(--brush-sweep)), #000 0 var(--brush-sweep), transparent var(--brush-sweep));
}

.js-brush-circle::before,
.js-brush-circle::after {
  mask-image: var(--brush-mask);
}

/* ---------- ブラシ描画（js-brush / js-brush-circle）| ここまで ---------- */
@media (prefers-reduced-motion: reduce) {
  .js-fade-op,
  .js-fade-ops,
  .js-fadeIn-rights,
  .js-fadeIn-ups,
  .js-fv-glitch-text,
  .js-glitch-text,
  .js-fv-noise-bars,
  .js-fv-noise-bar {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    visibility: visible !important;
  }
  /* clip-path の解除を漏らすと初期値（全量クリップ）のまま永久非表示になる */
  .js-fv-noise-bars,
  .js-clip,
  .js-fv-clip,
  .js-banner-brush::after {
    animation: none !important;
    clip-path: none !important;
  }
  /* お問い合わせバナーは動きを止めて最終状態で静止させる */
  .js-banner-hero {
    --bg-op: 1;
    --frame-in: 1;
    --frame-scroll: 1;
  }
  .js-banner-hero::after,
  .js-banner-up,
  .js-banner-btn,
  .js-banner-corner {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }
  .js-fv-glitch-text.is-glitch::before,
  .js-fv-glitch-text.is-glitch::after,
  .js-glitch-text.is-glitch::before,
  .js-glitch-text.is-glitch::after {
    content: none;
  }
  /* トップ 採用バナーは動きを止めて最終状態で静止させる。
     装飾の clip-path 解除を漏らすと初期値（下側を全量クリップ）のまま永久非表示になる */
  .js-recruit-up {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }
  .js-recruit-deco::before,
  .js-recruit-deco::after {
    animation: none !important;
    clip-path: none !important;
  }
  .top-recruit__heading-img {
    animation: none !important;
  }
  /* ブラシは描き切った状態で静止させる。clip-path / mask-image を none で潰すのではなく
     カスタムプロパティを終点の値へ倒すことで、素材側の mask と併記した展開先でも形が壊れない */
  .js-brush {
    --brush-clip: 0%;
  }
  .js-brush-circle {
    --brush-sweep: 360deg;
  }
}
/* オーラ（js-aura-trigger + js-aura-flame / js-aura-glow）
   切り抜きキャラクターへ全身の炎オーラを重ねる常時ループ演出。
   - 炎: _aura-flame.js の WebGL canvas（js-aura-flame）。キャラ画像のアルファを
     エミッション源に FBM ノイズを上方向へ流して生成する。描画ループ（rAF）は
     画面内にいる間だけ回る（IntersectionObserver 制御・_aura-flame.js）
   - 発光: js-aura-glow は WebGL2 不可 / reduced-motion 環境向けの静的フォールバック。
     既定は非表示で、WebGL の起動に失敗した時だけ trigger へ is-aura-fallback が
     付いて表示される
   glow の mask-image と canvas の張り出し量（inset）は
   使用側モジュール（_recruit-intro.scss 等）が指定する */
.js-aura-trigger {
  position: relative;
}

/* 炎 canvas。描画内容はすべてシェーダー側（配色・裾フェード含む）。
   canvas は置換要素のため left / right の同時指定では幅が intrinsic のままになる。
   幅・高さは width / height で明示する（張り出しは使用側が top / left + width / height で指定）。
   ブレンドは通常合成にする（screen だと背景の明るい装飾＝白い光条を掛け算的に
   増幅し、オーラの立ち上がりで筋が層の境界のように浮き出る — 2026-08-23 実測） */
.js-aura-flame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  /* 全体を軽くぼかして色ランプの残り境界・粒状ノイズを均す
     （シェーダー側の裾フェードで下端 alpha は 0 のため、blur が
     次セクションへ滲み出すことはない） */
  filter: blur(0.375rem);
  pointer-events: none;
}

/* 静的発光フォールバック: シルエットをわずかに拡大した青 → 白のグラデ発光 */
.js-aura-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  /* 使用側が指定する 2 層 mask（シルエット × 裾フェード）を交差合成する。
     下端に近づくほどオーラ自体が透明になるため、blur の滲みも含めて
     下のセクションへ貫通しない（clip-path のハードカットだと blur が下へ滲む） */
  mask-composite: intersect;
  mix-blend-mode: screen;
  pointer-events: none;
  transform-origin: 50% 100%;
  background: linear-gradient(to top, rgba(0, 144, 255, 0.7), rgba(255, 255, 255, 0.45));
  opacity: 0.4;
  filter: blur(1.75rem);
  transform: scale(1.03);
}
@media screen and (max-width: 767px) {
  .js-aura-glow {
    filter: blur(1rem);
  }
}

/* WebGL 炎の起動失敗時（_aura-flame.js が付与）だけ静的発光を出す */
.js-aura-trigger.is-aura-fallback .js-aura-glow {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  /* 動きが本体の炎 canvas は非表示にし、静的発光だけ残す
     （_aura-flame.js 側も reduced-motion 時は初期化しない） */
  .js-aura-flame {
    display: none;
  }
  .js-aura-glow {
    display: block;
  }
}
/* 陽炎（js-heat-haze-trigger）
   - 対象要素の背景写真層（::before）だけを SVG フィルター
     （feTurbulence + feDisplacementMap）でピクセル歪みさせる真夏の陽炎
   - フィルター実体の SVG 注入とノイズの揺らぎ駆動は _heat-haze.js
   - is-heat-haze-active は _heat-haze.js が付与する。reduced-motion 環境では
     初期化されず付与されないため、フィルター未適用の写真がそのまま残る
     （このブロック用の @media 追記は不要） */
.js-heat-haze-trigger {
  /* 歪みではみ出した写真層を要素内へクリップする */
  overflow: hidden;
}

/* 歪みで端に透明の隙間が出ないよう写真層を四方へ広げ、その層だけに
   フィルターを適用する（前面のロゴ・キャッチ文字は歪ませない） */
.js-heat-haze-trigger.is-heat-haze-active::before {
  inset: -0.1875rem;
  filter: url("#heat-haze-filter");
}

/* マスクアニメーション（js-mask / js-fv-mask）
   code-stock「js-mask」準拠。マスク帯が左→右へ抜けて要素が現れる。
   js-fv-mask は FV 用（スクロール検知を使わず読込後に発火）。
   keyframes 名はストックの `mask` から `mask-open` へ変えている
   （`mask` はプロパティ名と同綴りで、他の演出と衝突しやすいため） */
.js-mask,
.js-fv-mask {
  mask-image: linear-gradient(90deg, #ffffff 0% 50%, transparent 100%);
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  mask-position: 200% 0%;
}

.js-mask.is-open,
.js-fv-mask.is-open {
  animation: mask-open 0.3s linear forwards;
}

@keyframes mask-open {
  100% {
    mask-position: 0% 0%;
  }
}
.ripple {
  position: relative;
}

.ripple__wave {
  position: absolute;
  inset: 0;
  border: 0.1875rem solid #0090ff;
  opacity: 0;
  pointer-events: none;
  animation: ripple 2.4s ease-out infinite;
}

.ripple__wave:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes ripple {
  0% {
    opacity: 1;
    scale: 1;
  }
  50% {
    opacity: 0;
    scale: 3.333;
  }
  100% {
    opacity: 0;
    scale: 3.333;
  }
}
.ripple--flash {
  animation: ripple-flash 2.4s ease-out infinite;
}

.ripple--flash::before {
  animation: ripple-flash-icon 2.4s ease-out infinite;
}

@keyframes ripple-flash {
  0% {
    background-color: #ffffff;
  }
  8%, 25% {
    background-color: #0090ff;
  }
  50%, 100% {
    background-color: #ffffff;
  }
}
@keyframes ripple-flash-icon {
  0% {
    background-color: #000000;
  }
  8%, 25% {
    background-color: #ffffff;
  }
  50%, 100% {
    background-color: #000000;
  }
}
@media (any-hover: hover) {
  :is(a, button):hover .ripple__wave,
  :is(a, button):hover .ripple--flash,
  :is(a, button):hover .ripple--flash::before {
    animation: none;
  }
}
@keyframes sending-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
/* アニメーション効果を削除・軽減の設定をした場合に有効化するスタイル */
@media (prefers-reduced-motion: reduce) {
  /* 採用ページの新規演出（ロゴ展開 / 飛び込み / 角度フェードイン）は
     動きを止めて最終状態で静止させる。_anime.js 側も初期化しない */
  .js-logo-burst,
  .js-fv-dive,
  .js-fadeIn-angles {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .js-fv-fade,
  .js-fade-ops-after {
    opacity: 1 !important;
  }
  .js-mask,
  .js-fv-mask {
    mask-image: none !important;
    animation: none !important;
  }
  .ripple__wave,
  .ripple--flash,
  .ripple--flash::before {
    animation: none;
  }
  .contact-form__sending,
  .entry__sending {
    animation: none;
  }
}
.body-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.body-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.body-bg__img {
  position: absolute;
  inset: 0;
  clip-path: inset(0);
  z-index: -9;
}

.body-bg__img[data-theme=recruit]::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: image-set(url("../images/recruit/bg-recruit.avif") type("image/avif"), url("../images/recruit/bg-recruit.webp") type("image/webp"));
  background-size: cover;
  background-position: top center;
  z-index: -8;
}

.body-content__wrapper {
  display: grid;
  grid-template-columns: 1.6875rem 1fr 1.6875rem;
  grid-template-rows: 1.6875rem 1fr 1.6875rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .body-content__wrapper {
    grid-template-columns: 1fr;
  }
}

.body-content__main {
  display: flex;
  flex-direction: column;
  grid-row: 2;
  grid-column: 2;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .body-content__main {
    grid-column: 1;
  }
}

.body-content__loop {
  z-index: 2;
  background-color: #000000;
}

.body-content__loop--top {
  grid-row: 1;
  grid-column: 2;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .body-content__loop--top {
    grid-column: 1;
  }
}

.body-content__loop--bottom {
  grid-row: 3;
  grid-column: 2;
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .body-content__loop--bottom {
    grid-column: 1;
  }
}

.body-content__loop--left {
  grid-row: 1/-1;
  grid-column: 1;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .body-content__loop--left {
    display: none;
  }
}

.body-content__loop--right {
  grid-row: 1/-1;
  grid-column: 3;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .body-content__loop--right {
    display: none;
  }
}

.body-content__loop .loop-img__wrapper {
  gap: 0.5rem;
  height: 100%;
}

.body-content__loop .loop-img__items {
  gap: 0.5rem;
}

.body-content__loop .loop-img__item {
  font-size: 0.625rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.body-content__loop--left .loop-img__item {
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.body-content__loop--right .loop-img__item {
  writing-mode: vertical-rl;
}

.body-content__loop--bottom .loop-img__item {
  transform: rotate(180deg);
}

.btn-banner {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  padding-block-start: 3.5rem;
  padding-block-end: 1.875rem;
  padding-inline-start: 5rem;
  padding-inline-end: 2.5rem;
  overflow: hidden;
  transition: background-color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner {
    padding-block-start: 1.875rem;
    padding-block-end: 1.25rem;
    padding-inline-start: 4rem;
    padding-inline-end: 1.25rem;
  }
}

.btn-banner[data-theme=blue] {
  background-color: #ffffff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover {
    background-color: #0090ff;
  }
}
.btn-banner[data-theme=orange] {
  background-color: #ff733c;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=orange]:hover {
    opacity: 0.6;
  }
}
.btn-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.3125rem;
  width: 1px;
  height: 100%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner::before {
    left: 1.875rem;
  }
}

.btn-banner[data-theme=blue]::before {
  background-color: #0090ff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover::before {
    background-color: #ffffff;
  }
}
.btn-banner[data-theme=orange]::before {
  background-color: #000000;
}

.btn-banner__loop {
  position: absolute;
  top: 0;
  left: 0.625rem;
  width: 0.875rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .btn-banner__loop {
    left: 0.5rem;
  }
}

.btn-banner__loop .loop-img__wrapper {
  gap: 0.5rem;
  height: 100%;
}

.btn-banner__loop .loop-img__items {
  gap: 0.5rem;
  animation-duration: 15s;
}

.btn-banner__loop .loop-img__item {
  font-size: max(0.875rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transition: color 0.3s;
}

.btn-banner[data-theme=blue] .loop-img__item {
  color: #0090ff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover .loop-img__item {
    color: #ffffff;
  }
}
.btn-banner[data-theme=orange] .loop-img__item {
  color: #000000;
}

.btn-banner__en {
  display: block;
  font-size: max(5rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner__en {
    font-size: max(3rem, 12px);
  }
}

.btn-banner[data-theme=blue] .btn-banner__en {
  color: #0090ff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover .btn-banner__en {
    color: #ffffff;
  }
}
.btn-banner[data-theme=orange] .btn-banner__en {
  color: #000000;
}

.btn-banner__main {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .btn-banner__main {
    margin-top: 0.75rem;
  }
}

.btn-banner__main-text {
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner__main-text {
    font-size: max(1.125rem, 12px);
  }
}

.btn-banner[data-theme=blue] .btn-banner__main-text {
  color: #0090ff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover .btn-banner__main-text {
    color: #ffffff;
  }
}
.btn-banner[data-theme=orange] .btn-banner__main-text {
  color: #000000;
}

.btn-banner__arrow {
  position: relative;
  display: block;
  margin-left: 1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner__arrow {
    margin-left: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.btn-banner[data-theme=blue] .btn-banner__arrow {
  background-color: #0090ff;
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover .btn-banner__arrow {
    background-color: #ffffff;
  }
}
.btn-banner[data-theme=orange] .btn-banner__arrow {
  background-color: #000000;
}

.btn-banner__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65625rem;
  aspect-ratio: 7/8.5;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner__arrow::after {
    width: 0.53125rem;
  }
}

@media (any-hover: hover) {
  .btn-banner[data-theme=blue]:hover .btn-banner__arrow::after {
    background-color: #0090ff;
  }
}
.btn-banner__label {
  display: block;
  margin-top: 1.625rem;
  font-size: max(1.125rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .btn-banner__label {
    margin-top: 0.5rem;
    font-size: max(0.875rem, 12px);
  }
}

.btn-banner[data-theme=blue] .btn-banner__label {
  color: #000000;
}

.btn-banner[data-theme=orange] .btn-banner__label {
  color: #ffffff;
}

.btn-banner__circle {
  position: absolute;
  z-index: -1;
  top: 3.75rem;
  left: 15.375rem;
  width: 25.625rem;
  height: 8.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-banner__circle {
    top: 1.875rem;
    left: 3.75rem;
    width: 16.25rem;
    height: 5.625rem;
  }
}

@media (any-hover: none) {
  .btn-banner__circle {
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .btn-banner:hover .btn-banner__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.btn-banner__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: none) {
  .btn-banner__circle-path {
    stroke-dashoffset: 0;
  }
}
@media (any-hover: hover) {
  .btn-banner:hover .btn-banner__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7);
  }
}
.btn-header {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 9.375rem;
  width: fit-content;
  min-height: 3.125rem;
  padding-inline-start: 2.75rem;
  border: 1px solid #ffffff;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover {
    background-color: #ffffff;
  }
}
.btn-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover::before {
    background-color: #000000;
  }
}
.btn-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.625rem;
  width: 0.4375rem;
  height: 0.53125rem;
  background-color: #000000;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover::after {
    background-color: #ffffff;
  }
}
.btn-header__en {
  display: block;
  font-size: max(1.25rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover .btn-header__en {
    color: #000000;
  }
}
.btn-header__ja {
  display: block;
  margin-top: 0.25rem;
  font-size: 10px;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover .btn-header__ja {
    color: #000000;
  }
}
.btn-header__circle {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover .btn-header__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.btn-header__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover .btn-header__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7); /* ペンで丸を書くイメージ: 書き始めはゆっくり、最後は勢いよく走らせる */
  }
}
.btn-link {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  max-width: 25rem;
  width: 100%;
  min-height: 6.25rem;
  padding-inline-start: 4.375rem;
  padding-inline-end: 1.25rem;
  border: 1px solid #000000;
  background-color: #ffffff;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-link {
    min-height: 4.375rem;
    padding-inline-start: 3.5rem;
  }
}

@media (any-hover: hover) {
  .btn-link:hover {
    border-color: #0090ff;
    background-color: #0090ff;
  }
}
.btn-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #000000;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-link:hover::before {
    background-color: #ffffff;
  }
}
.btn-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  width: 0.65625rem;
  height: 0.796875rem;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-link:hover::after {
    background-color: #000000;
  }
}
.btn-link[data-theme=blue] {
  border-color: #ffffff;
  background-color: #0090ff;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-link[data-theme=blue]::before {
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.btn-link[data-theme=blue]::after {
  background-color: #000000;
  transition: background-color 0.3s;
}

.btn-link[data-theme=blue] .btn-link__text {
  color: #ffffff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn-link[data-theme=blue]:hover {
    border-color: #0090ff;
    background-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=blue]:hover::before {
    background-color: #0090ff;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=blue]:hover::after {
    background-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=blue]:hover .btn-link__text {
    color: #0090ff;
  }
}
.btn-link[data-theme=dark] {
  border-color: #ffffff;
  background-color: #000000;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-link[data-theme=dark]::before {
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.btn-link[data-theme=dark]::after {
  background-color: #000000;
  transition: background-color 0.3s;
}

.btn-link[data-theme=dark] .btn-link__text {
  color: #ffffff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn-link[data-theme=dark]:hover {
    border-color: #0090ff;
    background-color: #0090ff;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=dark]:hover::before {
    background-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=dark]:hover::after {
    background-color: #000000;
  }
}
@media (any-hover: hover) {
  .btn-link[data-theme=dark]:hover .btn-link__text {
    color: #ffffff;
  }
}
.btn-link__text {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-link__text {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .btn-link:hover .btn-link__text {
    color: #ffffff;
  }
}
.btn-link__circle {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .btn-link:hover .btn-link__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.btn-link__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: hover) {
  .btn-link:hover .btn-link__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7); /* ペンで丸を書くイメージ: 書き始めはゆっくり、最後は勢いよく走らせる */
  }
}
.btn-view-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-inline-end: 1.875rem;
}

.btn-view-more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #000000;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-view-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 0.4375rem;
  height: 0.53125rem;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(50%, -50%);
}

.btn-view-more__text {
  font-size: 1rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.btn-view-more[data-theme=light]::before {
  background-color: #ffffff;
}

.btn-view-more[data-theme=light]::after {
  background-color: #000000;
}

.btn-view-more[data-theme=light] .btn-view-more__text {
  color: #ffffff;
}

@media (any-hover: hover) {
  .btn-view-more[data-theme=light]:hover .btn-view-more__text {
    color: #0090ff;
  }
}
@media (any-hover: hover) {
  .btn-view-more[data-theme=light]:hover::before {
    background-color: #0090ff;
  }
}
.company-features {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .company-features {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.company-features__lead {
  margin-top: 6.375rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-features__lead {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.company-features__figure {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .company-features__figure {
    margin-top: 1.5rem;
  }
}

.company-features__img {
  aspect-ratio: 1140/800;
  object-fit: contain;
}

.company-group {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .company-group {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.company-group__figure {
  position: relative;
  margin-top: 6.25rem;
  aspect-ratio: 1140/400;
}
@media screen and (max-width: 767px) {
  .company-group__figure {
    margin-top: 2.5rem;
  }
}

.company-group__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-group__logo {
  position: absolute;
  inset-block-start: 1.875rem;
  inset-inline-start: 1.875rem;
  max-width: 10.625rem;
  width: 100%;
  height: auto;
  aspect-ratio: 170/90;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .company-group__logo {
    inset-block-start: 1rem;
    inset-inline-start: 1rem;
    max-width: 5.625rem;
  }
}

.company-group__text {
  margin-top: 1.6875rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-group__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

.company-group__body {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .company-group__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    margin-top: 2.5rem;
  }
}

.company-group__label {
  grid-column: 1;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .company-group__label {
    display: none;
  }
}

.company-group__items {
  position: relative;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .company-group__items {
    grid-column: 1;
  }
}

.company-group__item {
  position: relative;
  display: grid;
  grid-template-columns: 21.25rem minmax(0, 1fr);
  align-items: start;
  padding-block-start: 2.40625rem;
  padding-block-end: 2.65625rem;
}
@media screen and (max-width: 1023px) {
  .company-group__item {
    grid-template-columns: 15rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .company-group__item {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.25rem;
    padding-block-start: 1.25rem;
    padding-block-end: 1.5rem;
  }
}

.company-group__item::before {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 18.75rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .company-group__item::before {
    width: 13.75rem;
  }
}
@media screen and (max-width: 767px) {
  .company-group__item::before {
    width: 7.5rem;
  }
}

.company-group__item::after {
  content: "";
  position: absolute;
  inset-block-end: 0.25rem;
  inset-inline-start: 0;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .company-group__item::after {
    inset-inline-end: 0;
  }
}

.company-group__item:first-child .company-group__term::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .company-group__item:first-child .company-group__term::before {
    inset-inline-end: 0;
  }
}

.company-group__term {
  grid-column: 1;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-group__term {
    font-size: 0.9375rem;
  }
}

.company-group__desc {
  grid-column: 2;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-group__desc {
    grid-column: 1;
    font-size: 1rem;
  }
}

.company-history {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .company-history {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.company-history__body {
  position: relative;
  margin-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .company-history__body {
    margin-top: 2.5rem;
  }
}

.company-history__body::after {
  content: "";
  position: absolute;
  inset-block-start: 2.1875rem;
  inset-inline-start: 0.625rem;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .company-history__body::after {
    inset-inline-end: 0;
  }
}

.company-history__slider.swiper {
  overflow: visible;
  clip-path: polygon(0 0, 200% 0, 200% 100%, 0 100%);
  transition: opacity 0.3s;
}

.company-history__slider:not(.swiper-initialized) {
  opacity: 0;
}

.company-history__item.swiper-slide {
  position: relative;
  width: 21.875rem;
}
@media screen and (max-width: 767px) {
  .company-history__item.swiper-slide {
    width: 16.25rem;
  }
}

.company-history__item::before {
  content: "";
  position: absolute;
  inset-block-start: 1.5625rem;
  inset-inline-start: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.5);
}

.company-history__item::after {
  content: "";
  position: absolute;
  inset-block-start: 2.0625rem;
  inset-inline-start: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100vmax;
  background-color: #ffffff;
}

.company-history__num {
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}

.company-history__year {
  font-size: 2.5rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-top: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .company-history__year {
    font-size: 1.5rem;
    margin-top: 3.125rem;
  }
}

.company-history__text {
  margin-top: 0.6875rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-history__text {
    font-size: 0.9375rem;
  }
}

.company-history__controls {
  margin-top: 6.0625rem;
}
@media screen and (max-width: 767px) {
  .company-history__controls {
    margin-top: 3rem;
  }
}

.company-history__scrollbar {
  --swiper-scrollbar-border-radius: 0;
  --swiper-scrollbar-bg-color: transparent;
  --swiper-scrollbar-drag-bg-color: #ffffff;
  --swiper-scrollbar-size: 0.25rem;
  position: relative;
  height: 0.25rem;
}

.company-history__scrollbar::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1px;
  background-color: #707070;
}

.company-history__nav {
  display: flex;
  column-gap: 1.25rem;
  margin-top: 1.5rem;
}

.company-history__nav .swiper-button-prev.swiper-button-disabled,
.company-history__nav .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}

.company-profile {
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .company-profile {
    scroll-margin-block-start: 5.75rem;
  }
}

.company-profile__body {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .company-profile__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    margin-top: 2.5rem;
  }
}

.company-profile__label {
  grid-column: 1;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .company-profile__label {
    display: none;
  }
}

.company-profile__items {
  position: relative;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .company-profile__items {
    grid-column: 1;
  }
}

.company-profile__item {
  position: relative;
  display: grid;
  grid-template-columns: 21.25rem minmax(0, 1fr);
  align-items: start;
  padding-block-start: 2.40625rem;
  padding-block-end: 2.65625rem;
}
@media screen and (max-width: 1023px) {
  .company-profile__item {
    grid-template-columns: 15rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .company-profile__item {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.25rem;
    padding-block-start: 1.25rem;
    padding-block-end: 1.5rem;
  }
}

.company-profile__item::before {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 18.75rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .company-profile__item::before {
    width: 13.75rem;
  }
}
@media screen and (max-width: 767px) {
  .company-profile__item::before {
    width: 7.5rem;
  }
}

.company-profile__item::after {
  content: "";
  position: absolute;
  inset-block-end: 0.25rem;
  inset-inline-start: 0;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .company-profile__item::after {
    inset-inline-end: 0;
  }
}

.company-profile__item:first-child .company-profile__term::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .company-profile__item:first-child .company-profile__term::before {
    inset-inline-end: 0;
  }
}

.company-profile__term {
  grid-column: 1;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-profile__term {
    font-size: 0.9375rem;
  }
}

.company-profile__desc {
  grid-column: 2;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-profile__desc {
    grid-column: 1;
    font-size: 1rem;
  }
}

.company-profile__map {
  margin-top: 8.125rem;
  aspect-ratio: 1140/510;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .company-profile__map {
    margin-top: 3.75rem;
    aspect-ratio: 4/3;
  }
}

.company-profile__map-frame {
  display: block;
  width: 100%;
  height: 100%;
}

.construction-flow {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .construction-flow {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.construction-flow__items {
  position: relative;
  margin-top: 10.625rem;
}
@media screen and (max-width: 767px) {
  .construction-flow__items {
    margin-top: 3.125rem;
  }
}

.construction-flow__items::before {
  content: "";
  position: absolute;
  inset-block: 0.625rem;
  inset-inline-start: 23.75rem;
  width: 1px;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
@media screen and (max-width: 1023px) {
  .construction-flow__items::before {
    inset-inline-start: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .construction-flow__items::before {
    display: none;
  }
}

.construction-flow__items.is-fade-ops::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .construction-flow__items::before {
    opacity: 1;
    transition: none;
  }
}
.construction-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 1.875rem 16.25rem 13.125rem 1.25rem minmax(0, 1fr);
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .construction-flow__item {
    grid-template-columns: 1.875rem 12.5rem 8.125rem 1.25rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .construction-flow__item {
    grid-template-columns: 1.875rem minmax(0, 1fr);
    column-gap: 0.625rem;
  }
}

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

.construction-flow__item:first-child::before,
.construction-flow__item:last-child::before {
  content: "";
  position: absolute;
  inset-inline-start: 23.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: radial-gradient(circle at center, #ffffff 0 0.125rem, transparent 0.125rem);
}
@media screen and (max-width: 1023px) {
  .construction-flow__item:first-child::before,
  .construction-flow__item:last-child::before {
    inset-inline-start: 18.125rem;
  }
}
@media screen and (max-width: 767px) {
  .construction-flow__item:first-child::before,
  .construction-flow__item:last-child::before {
    display: none;
  }
}

.construction-flow__item:first-child::before {
  inset-block-start: 0;
}

.construction-flow__item:last-child::before {
  inset-block-end: 0;
}

.construction-flow__index {
  grid-column: 1;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .construction-flow__index {
    font-size: 0.6875rem;
  }
}

.construction-flow__figure {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .construction-flow__figure {
    grid-row: 2;
    grid-column: 1/-1;
    width: 90%;
    margin-inline: auto;
    margin-top: 1rem;
  }
}

.construction-flow__img {
  aspect-ratio: 1;
  object-fit: cover;
}

.construction-flow__num {
  grid-column: 3;
  margin-top: 1.75rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .construction-flow__num {
    display: none;
  }
}

.construction-flow__content {
  grid-column: 5;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .construction-flow__content {
    grid-row: 1;
    grid-column: 2;
    margin-top: 0;
  }
}

.construction-flow__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 1.25rem;
}

.construction-flow__title {
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .construction-flow__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .construction-flow__title {
    font-size: 1.25rem;
  }
}

.construction-flow__label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .construction-flow__label {
    display: none;
  }
}

.construction-flow__text {
  margin-top: 1.1875rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .construction-flow__text {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .construction-flow__text {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
  }
}

.construction-method {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .construction-method {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.construction-method__body {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .construction-method__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    margin-top: 2.5rem;
  }
}

.construction-method__label {
  grid-column: 1;
  margin-top: 0.6875rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .construction-method__label {
    display: none;
  }
}

.construction-method__items {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .construction-method__items {
    grid-column: 1;
  }
}

.contact-banner__hero {
  position: relative;
  height: 44.375rem;
  --frame-top: 4.4375rem;
  --frame-left: 14.5625rem;
  --frame-right: 17.125rem;
  --frame-bottom: auto;
  --frame-height: 39.9375rem;
}
@media screen and (max-width: 767px) {
  .contact-banner__hero {
    height: auto;
    padding-block-start: 5rem;
    padding-block-end: 8.75rem;
    --frame-top: 1.25rem;
    --frame-left: 1.25rem;
    --frame-right: 1.25rem;
    --frame-bottom: 1.25rem;
    --frame-height: auto;
  }
}

.contact-banner__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), image-set(url("../images/common/contact-banner-bg.avif") type("image/avif"), url("../images/common/contact-banner-bg.webp") type("image/webp"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--bg-op, 1);
}

.contact-banner__hero::after {
  content: "";
  position: absolute;
  top: var(--frame-top);
  left: var(--frame-left);
  right: var(--frame-right);
  bottom: var(--frame-bottom);
  height: var(--frame-height);
  background-image: url("../images/common/contact-banner-frame.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-banner__hero .contact-banner__frame-glitch {
  position: absolute;
  z-index: 1;
  top: var(--frame-top);
  left: var(--frame-left);
  right: var(--frame-right);
  bottom: var(--frame-bottom);
  height: var(--frame-height);
  pointer-events: none;
  overflow: visible;
  --glitch-src: url("../images/common/contact-banner-frame.webp");
}

.contact-banner__corner-text {
  position: absolute;
  z-index: 2;
  font-size: max(1.25rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.2;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .contact-banner__corner-text {
    display: none;
  }
}

.contact-banner__corner-text--top-left {
  top: 6.5rem;
  left: 8.3125rem;
}

.contact-banner__corner-text--top-right {
  top: 6.5rem;
  right: 8.3125rem;
  text-align: right;
}

.contact-banner__corner-text--bottom-left {
  top: 32.375rem;
  left: 8.3125rem;
}

.contact-banner__corner-text--bottom-right {
  top: 32.375rem;
  right: 8.3125rem;
  text-align: right;
}

.contact-banner__logo-wrapper {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
  padding-block-start: 12.5rem;
}
@media screen and (max-width: 767px) {
  .contact-banner__logo-wrapper {
    max-width: 25rem;
    padding-block-start: 0;
    padding-inline: 1.25rem;
  }
}

.contact-banner__logo-img {
  width: 72.5%; /* 580 / 800 */
  height: auto;
  margin-left: 16.25%; /* (690 - 560) / 800 */
}

.contact-banner__logo-wrapper::after {
  content: "";
  position: absolute;
  top: 14.6875rem;
  left: 0;
  width: 100%;
  aspect-ratio: 800/70;
  background-image: url("../images/common/brush-stroke-blue-01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contact-banner__logo-wrapper::after {
    top: 25%;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}

.contact-banner__copy {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1333333333;
  letter-spacing: -0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-banner__copy {
    margin-top: 1.5rem;
    font-size: max(1.25rem, 12px);
  }
}

.contact-banner__btn-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: -8.125rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact-banner__btn-wrapper {
    flex-direction: column;
    max-width: 20rem;
    width: 100%;
    margin-top: -6.25rem;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.contact-banner__btn {
  max-width: 43.5rem;
  width: 100%;
}

.contact-form {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 3.75rem;
  }
}

.contact-form__inner.inner {
  max-width: 76.875rem;
}
@media screen and (max-width: 767px) {
  .contact-form__inner.inner {
    max-width: 33.75rem;
  }
}

.contact-form__lead {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__lead {
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.contact-form__rows {
  margin-top: 6.125rem;
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-form__rows {
    margin-top: 3rem;
  }
}

.contact-form__row {
  position: relative;
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  align-items: start;
  gap: 2.5rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid #ffffff;
  scroll-margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-block: 1.5rem;
    scroll-margin-top: 5rem;
  }
}

.contact-form__row::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 18.75rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-form__row::after {
    width: 7.5rem;
  }
}

.contact-form__row + .contact-form__row {
  padding-block-start: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .contact-form__row + .contact-form__row {
    padding-block-start: 1.6875rem;
  }
}

.contact-form__row--message {
  padding-block-end: 2.375rem;
}
@media screen and (max-width: 767px) {
  .contact-form__row--message {
    padding-block-end: 1.375rem;
  }
}

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

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    margin-top: 0;
  }
}

.contact-form__label-text {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__label-text {
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.contact-form__required {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__required {
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.contact-form__input {
  display: block;
  max-width: 48.75rem;
  width: 100%;
  height: 4.3125rem;
  padding-inline: 2.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__input {
    height: 3.5rem;
    padding-inline: 1rem;
    font-size: max(1rem, 12px);
  }
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__textarea {
  display: block;
  max-width: 48.75rem;
  width: 100%;
  min-height: 18.75rem;
  padding-block: 1.125rem;
  padding-inline: 2.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__textarea {
    min-height: 12.5rem;
    padding-block: 0.875rem;
    padding-inline: 1rem;
    font-size: max(1rem, 12px);
  }
}

.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.contact-form__privacy .wpcf7-list-item {
  margin-inline-start: 0;
}

.contact-form__privacy label {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy label {
    gap: 0.625rem;
  }
}

.contact-form__privacy input[type=checkbox] {
  display: block;
  flex-shrink: 0;
  appearance: none;
  width: 1.5625rem;
  height: 1.5625rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  background-position: center;
  background-size: 0.9375rem 0.9375rem;
  cursor: pointer;
}

.contact-form__privacy input[type=checkbox]:checked {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M1.5 7.3 5.4 11.2 12.5 3.2' fill='none' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E");
}

.contact-form__privacy .wpcf7-list-item-label {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy .wpcf7-list-item-label {
    padding-block: 0.625rem;
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.contact-form__privacy-link {
  text-decoration: underline;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .contact-form__privacy-link:hover {
    color: #0090ff;
    text-decoration: underline;
  }
}
.contact-form__btn-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .contact-form__btn-wrapper {
    margin-top: 3rem;
  }
}

.btn-contact {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  max-width: 25rem;
  width: 100%;
  min-height: 6.25rem;
  border: 1px solid #ffffff;
  background-color: #000000;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-contact {
    max-width: none;
    min-height: 4.5rem;
  }
}

@media (any-hover: hover) {
  .btn-contact.is-ready:hover {
    border-color: #0090ff;
    background-color: #0090ff;
  }
}
.btn-contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  width: 0.65625rem;
  height: 0.796875rem;
  background-color: #000000;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

.btn-contact__submit {
  display: block;
  align-self: stretch;
  width: 100%;
  padding-inline-start: 4.375rem;
  padding-inline-end: 1.25rem;
  border: none;
  background-color: transparent;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-contact__submit {
    padding-inline-start: 3.5rem;
    font-size: max(1rem, 12px);
  }
}

.btn-contact[data-theme=entry] {
  max-width: none;
  border-color: #000000;
  background-color: #ffffff;
}

.btn-contact[data-theme=entry]::before {
  background-color: #000000;
}

.btn-contact[data-theme=entry]::after {
  background-color: #ffffff;
}

.btn-contact[data-theme=entry] .btn-contact__submit {
  color: #000000;
}

@media (any-hover: hover) {
  .btn-contact[data-theme=entry].is-ready:hover {
    border-color: #0090ff;
    background-color: #0090ff;
  }
}
@media (any-hover: hover) {
  .btn-contact[data-theme=entry].is-ready:hover::before {
    background-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .btn-contact[data-theme=entry].is-ready:hover::after {
    background-color: #000000;
  }
}
@media (any-hover: hover) {
  .btn-contact[data-theme=entry].is-ready:hover .btn-contact__submit {
    color: #ffffff;
  }
}
.btn-contact__submit:disabled {
  cursor: not-allowed;
}

.btn-contact__circle {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 84%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .btn-contact.is-ready:hover .btn-contact__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.btn-contact__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: hover) {
  .btn-contact.is-ready:hover .btn-contact__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7);
  }
}
.btn-contact .wpcf7-spinner {
  display: none;
}

.contact-form__sending {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  translate: -50% 0;
  display: none;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  animation: sending-blink 1.2s ease-in-out infinite;
}

.contact-form__btn-wrapper.is-sending .contact-form__sending {
  display: block;
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #dc3232;
}

.contact-form .contact-form__body .wpcf7-response-output {
  margin-top: 1.5rem;
  margin-inline: 0;
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border: 1px solid #ffffff;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.625;
}

.entry {
  position: relative;
  z-index: 4;
  margin-top: 9.90625rem;
  border-block-start: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .entry {
    margin-top: 5rem;
  }
}

.entry__inner.inner {
  padding-block-start: 6.875rem;
}
@media screen and (max-width: 1023px) {
  .entry__inner.inner {
    padding-block-start: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__inner.inner {
    padding-block-start: 3rem;
  }
}

.entry__container {
  display: grid;
  grid-template-columns: 37.5rem 1fr;
  column-gap: 6.25rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .entry__container {
    grid-template-columns: 26.25rem 1fr;
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__container {
    grid-template-columns: 1fr;
  }
}

.entry__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .entry__heading {
    margin-top: 0;
  }
}

.entry__heading-en {
  max-width: 100%;
  font-size: 6.25rem;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.9;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .entry__heading-en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__heading-en {
    font-size: 2.5rem;
  }
}

.entry__heading-ja {
  max-width: 100%;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .entry__heading-ja {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__heading-ja {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.entry__step-items {
  margin-top: 6.625rem;
}
@media screen and (max-width: 1023px) {
  .entry__step-items {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__step-items {
    margin-top: 2rem;
  }
}

.entry__step-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: start;
  border-block-start: 1px solid #ffffff;
  padding-block-start: 0.5rem;
}

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

.entry__step-num {
  margin-block-start: 0.625rem;
  font-size: max(1rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .entry__step-num {
    margin-block-start: 0.5rem;
    font-size: max(0.875rem, 12px);
  }
}

.entry__step-label {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .entry__step-label {
    font-size: 1rem;
  }
}

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

.entry__lead {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .entry__lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.entry__items {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .entry__items {
    margin-top: 1.75rem;
  }
}

.entry__item {
  scroll-margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .entry__item {
    scroll-margin-top: 5rem;
  }
}

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

.entry__label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.entry__label-text {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .entry__label-text {
    font-size: 1rem;
  }
}

.entry__required {
  margin-block-start: -0.25rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ff733c;
  line-height: 2.3333333333;
  letter-spacing: 0.1em;
}

.entry__field {
  margin-top: 0.15625rem;
}

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

.entry__input {
  display: block;
  width: 100%;
  height: 5rem;
  padding-inline: 1.25rem;
  border: 1px solid #707070;
  background-color: #ffffff;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .entry__input {
    height: 3.5rem;
    padding-inline: 1rem;
    font-size: 1rem;
  }
}

.entry__input::placeholder {
  color: rgba(112, 112, 112, 0.2);
}

.entry__textarea {
  display: block;
  width: 100%;
  min-height: 12.5rem;
  padding-block: 1.46875rem;
  padding-inline: 1.25rem;
  border: 1px solid #707070;
  background-color: #ffffff;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .entry__textarea {
    min-height: 10rem;
    padding-block: 0.875rem;
    padding-inline: 1rem;
    font-size: 1rem;
  }
}

.entry__textarea::placeholder {
  color: rgba(112, 112, 112, 0.2);
}

.entry__file {
  display: block;
  width: 100%;
  height: 5rem;
  padding-block: 1.46875rem;
  padding-inline: 1.25rem;
  border: 1px solid #707070;
  background-color: #ffffff;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .entry__file {
    height: 3.5rem;
    padding-block: 0.875rem;
    padding-inline: 1rem;
    font-size: 0.875rem;
  }
}

.entry__field .wpcf7-form-control-wrap.is-dragover .entry__file {
  border-color: #0090ff;
  background-color: rgba(0, 144, 255, 0.08);
}

.entry__file::file-selector-button {
  margin-inline-end: 1.25rem;
  border: none;
  padding-block: 0.375rem;
  padding-inline: 1.25rem;
  background-color: #000000;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .entry__file::file-selector-button {
    margin-inline-end: 0.75rem;
    padding-inline: 0.75rem;
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .entry__file::file-selector-button:hover {
    background-color: #0090ff;
  }
}
.entry__files {
  margin-top: 2.5rem;
  border-block-start: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .entry__files {
    margin-top: 1.75rem;
  }
}

.entry__note-wrapper {
  margin-top: 2.34375rem;
}
@media screen and (max-width: 767px) {
  .entry__note-wrapper {
    margin-top: 1.75rem;
  }
}

.entry__note-text {
  padding-inline-start: 1em;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .entry__note-text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.entry__note-wrapper + .entry__items {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .entry__note-wrapper + .entry__items {
    margin-top: 1.75rem;
  }
}

.entry__field .entry__note-wrapper {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .entry__field .entry__note-wrapper {
    margin-top: 0.5rem;
  }
}

.entry__agreement {
  margin-top: 2.5rem;
  border-block-start: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .entry__agreement {
    margin-top: 1.75rem;
  }
}

.entry__agreement .entry__label {
  margin-top: 2.34375rem;
}
@media screen and (max-width: 767px) {
  .entry__agreement .entry__label {
    margin-top: 1.75rem;
  }
}

.entry__privacy-text {
  margin-top: 0.03125rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .entry__privacy-text {
    font-size: 0.875rem;
  }
}

.entry__privacy-link {
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .entry__privacy-link:hover {
    color: #0090ff;
    text-decoration: underline;
  }
}
.entry__privacy .wpcf7-list-item {
  margin-inline-start: 0;
}

.entry__privacy label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.entry__privacy input[type=checkbox] {
  display: block;
  flex-shrink: 0;
  appearance: none;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid #000000;
  border-radius: 0.125rem;
  background-color: #ffffff;
  background-position: center;
  background-size: 0.875rem 0.875rem;
  cursor: pointer;
}

.entry__privacy input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M1.5 7.3 5.4 11.2 12.5 3.2' fill='none' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E");
}

.entry__privacy .wpcf7-list-item-label {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .entry__privacy .wpcf7-list-item-label {
    padding-block: 0.625rem;
    font-size: 0.875rem;
  }
}

.entry__btn-wrapper {
  position: relative;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .entry__btn-wrapper {
    margin-top: 2rem;
  }
}

.entry__sending {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  translate: -50% 0;
  display: none;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  animation: sending-blink 1.2s ease-in-out infinite;
}

.entry__btn-wrapper.is-sending .entry__sending {
  display: block;
}

.entry .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #dc3232;
}

.entry .entry__form .wpcf7-response-output {
  margin-top: 1.5rem;
  margin-inline: 0;
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border: 1px solid #ffffff;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.625;
}

.footer {
  position: relative;
  isolation: isolate;
  margin-top: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 3.75rem;
  }
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14.5625rem;
  width: 0.25rem;
  height: 100%;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .footer::before {
    display: none;
  }
}

.footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 29.4375rem;
  right: -4.1875rem;
  width: clamp(31.25rem, -36.25rem + 75vw, 53.75rem); /* 500 ~ 860 | 1440 ~ 1920 */
  height: 6.875rem;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-orange-01.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .footer::after {
    top: 12.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 18.75rem;
  }
}

.footer__vertical-text {
  position: absolute;
  top: 5rem;
  left: 17.0625rem;
  font-size: max(1.125rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .footer__vertical-text {
    display: none;
  }
}

.footer__inner {
  padding-block-start: 5rem;
  padding-block-end: 3.3125rem;
  padding-inline-start: 25.8125rem;
  padding-inline-end: 14.5625rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-block-start: 3.75rem;
    padding-block-end: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.footer__logo-link {
  display: block;
  max-width: 15rem;
  width: 100%;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__logo-link {
    margin-inline: auto;
  }
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__logo-img {
  height: auto;
}

.footer__poem {
  position: absolute;
  top: 5.1875rem;
  right: 14.5625rem;
  font-size: max(0.75rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.5;
  text-align: right;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .footer__poem {
    position: static;
    margin-top: 1.5rem;
    text-align: center;
  }
}

.footer-nav {
  margin-top: 3.75rem;
}

.footer-nav__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__items {
    align-items: center;
  }
}

.footer-nav__item-link {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: baseline;
  width: fit-content;
}

.footer-nav__circle {
  position: absolute;
  z-index: -1;
  top: -0.625rem;
  left: -0.5rem;
  width: calc(100% + 1.75rem);
  height: calc(100% + 1.25rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .footer-nav__item-link:hover .footer-nav__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.footer-nav__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: hover) {
  .footer-nav__item-link:hover .footer-nav__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7);
  }
}
.footer-nav__item-link.is-current .footer-nav__circle {
  opacity: 1;
}

.footer-nav__item-link.is-current .footer-nav__circle-path {
  stroke-dashoffset: 0;
}

.footer-nav__item-en {
  font-size: max(1.875rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .footer-nav__item-en {
    font-size: max(1.25rem, 12px);
  }
}

@media (any-hover: hover) {
  .footer-nav__item-link:hover .footer-nav__item-en {
    color: #0090ff;
  }
}
.footer-nav__item-link.is-current .footer-nav__item-en {
  color: #0090ff;
}

.footer-nav__item-ja {
  margin-left: 1.0625rem;
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .footer-nav__item-link:hover .footer-nav__item-ja {
    color: #0090ff;
  }
}
.footer-nav__item-link.is-current .footer-nav__item-ja {
  color: #0090ff;
}

.footer__address {
  margin-top: 6.25rem;
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 3rem;
    text-align: center;
  }
}

.footer__meta {
  position: absolute;
  right: 14.5625rem;
  bottom: 3.3125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__meta {
    position: static;
    align-items: center;
    margin-top: 2rem;
  }
}

.footer__sns-link {
  display: block;
  width: 1.5rem;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}
.footer__sns-img {
  height: auto;
}

.footer__copyright {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1rem;
  }
}

.footer__copyright-text {
  font-size: max(1rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
}

.glitch-img-02 {
  position: relative;
  overflow: hidden;
}

.glitch-img-02 img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.glitch-img-02__layers {
  display: none;
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.glitch-img-02__layer {
  position: absolute;
  inset: 0;
}

.glitch-img-02__layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--glitch-src);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.glitch-img-02.glitch-img-02-active .glitch-img-02__layers {
  display: block;
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(1) {
  transform: translateX(-5%);
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(1)::before {
  animation: glitch-anim-1 0.5s linear;
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(2) {
  transform: translateX(3%) translateY(3%);
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(2)::before {
  animation: glitch-anim-2 0.5s linear;
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(3) {
  transform: translateX(5%);
}

.glitch-img-02-active .glitch-img-02__layer:nth-child(3)::before {
  animation: glitch-anim-flash 0.5s linear;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  10% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  20% {
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  30% {
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  40% {
    clip-path: polygon(0 35%, 100% 35%, 100% 35%, 0 35%);
  }
  50% {
    clip-path: polygon(0 45%, 100% 45%, 100% 46%, 0 46%);
  }
  60% {
    clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%);
  }
  70% {
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  80% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  90% {
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  100% {
    clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 15%, 100% 15%, 100% 30%, 0 30%);
  }
  15% {
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  25% {
    clip-path: polygon(0 8%, 100% 8%, 100% 20%, 0 20%);
  }
  30% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  45% {
    clip-path: polygon(0 45%, 100% 45%, 100% 45%, 0 45%);
  }
  50% {
    clip-path: polygon(0 50%, 100% 50%, 100% 57%, 0 57%);
  }
  65% {
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  75% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  80% {
    clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
  }
  95% {
    clip-path: polygon(0 45%, 100% 45%, 100% 60%, 0 60%);
  }
  100% {
    clip-path: polygon(0 11%, 100% 11%, 100% 15%, 0 15%);
  }
}
@keyframes glitch-anim-flash {
  0% {
    opacity: 0.2;
  }
  30%, 100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .glitch-img-02__layer::before {
    animation: none !important;
  }
}
.header {
  position: sticky;
  top: 0;
  padding-block: 1.75rem;
  padding-inline: 2.0625rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    padding-block: 0.9375rem;
    padding-inline: 1.25rem;
  }
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: transparent;
  transition: background-color 0.3s, bottom 0.3s;
}

.header.headerChange::before {
  bottom: 1.625rem;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .header.headerChange::before {
    bottom: 0;
  }
}

.header.headerChange .header__inner {
  translate: 0 -0.8125rem;
}
@media screen and (max-width: 767px) {
  .header.headerChange .header__inner {
    translate: none;
  }
}

.header.headerChange .header__logo {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .header.headerChange .header__logo {
    margin-top: 0.3125rem;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  transition: translate 0.3s;
}

.header__logo {
  align-self: flex-start;
  max-width: 15rem;
  width: 100%;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 11.25rem;
  }
}

.header__logo-link {
  display: block;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__logo-img {
  width: 100%;
  height: auto;
}

.header__pc-nav {
  margin-inline-start: auto;
}
@media screen and (max-width: 767px) {
  .header__pc-nav {
    display: none;
  }
}

.header__btn-wrapper {
  display: flex;
  align-items: center;
  margin-inline-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__btn-wrapper {
    margin-inline-start: auto;
  }
}

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

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
}

.pc-nav__items {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.pc-nav__item-link {
  position: relative;
  isolation: isolate;
  display: block;
}

.pc-nav__circle {
  position: absolute;
  z-index: -1;
  top: -0.5rem;
  left: -0.625rem;
  width: calc(100% + 1.25rem);
  height: calc(100% + 1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .pc-nav__item-link:hover .pc-nav__circle {
    opacity: 1;
    transition: opacity 0s;
  }
}
.pc-nav__circle-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0s 0.3s;
}

@media (any-hover: hover) {
  .pc-nav__item-link:hover .pc-nav__circle-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s cubic-bezier(0.7, 0, 0.95, 0.7);
  }
}
.pc-nav__item-en {
  display: block;
  font-size: max(1.25rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}

.pc-nav__item-ja {
  display: block;
  font-size: 10px;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 30;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #000000;
  border-radius: 100vmax;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

@media (any-hover: hover) {
  .hamburger:hover {
    opacity: 0.8;
  }
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 1.5rem;
  height: 2px;
  background-color: #ffffff;
  border-radius: 100vmax;
  transform: translate(-50%, -50%);
  transition: top 0.3s, transform 0.3s, width 0.3s, opacity 0.3s;
}

.hamburger span:first-child {
  top: 35%;
}

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

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

.hamburger.is-active span:first-child {
  top: 50%;
  width: 1.875rem;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  width: 1.875rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow-y: auto;
  padding-block: 6.25rem;
  background-color: #000000;
  /* スクロールバー非表示（IE / Edge・Firefox） */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* スクロールバー非表示（Chrome / Safari） */
.sp-nav::-webkit-scrollbar {
  display: none;
}

.sp-nav__inner {
  max-width: max-content;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sp-nav__logo {
  max-width: 12.5rem;
  width: 100%;
  margin-inline: auto;
}

.sp-nav__logo-link {
  display: block;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .sp-nav__logo-link:hover {
    opacity: 0.6;
  }
}
.sp-nav__logo-img {
  width: 100%;
  height: auto;
}

.sp-nav__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

.sp-nav__item-link {
  display: block;
  text-align: center;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .sp-nav__item-link:hover {
    opacity: 0.6;
  }
}
.sp-nav__item-en {
  display: block;
  font-size: max(1.5rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}

.sp-nav__item-ja {
  display: block;
  margin-top: 0.375rem;
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.sp-nav__btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.icon-list {
  padding-block-end: 0.25rem;
}

.icon-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 23.75rem minmax(0, 1fr);
  column-gap: 2.5rem;
  align-items: start;
  padding-block-end: 2.5625rem;
}
@media screen and (max-width: 1023px) {
  .icon-list__item {
    grid-template-columns: 18.75rem minmax(0, 1fr);
    column-gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .icon-list__item {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    padding-block-end: 1.5rem;
  }
}

.icon-list__item + .icon-list__item {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .icon-list__item + .icon-list__item {
    margin-top: 1.5rem;
  }
}

.icon-list__item::before {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 23.75rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .icon-list__item::before {
    width: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .icon-list__item::before {
    width: 10rem;
  }
}

.icon-list__item::after {
  content: "";
  position: absolute;
  inset-block-end: 3px;
  inset-inline-start: 0;
  inset-inline-end: -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .icon-list__item::after {
    inset-inline-end: 0;
  }
}

.icon-list__heading {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  column-gap: 1.25rem;
  align-items: start;
}

.icon-list__heading::before {
  content: "";
  grid-row: 1/3;
  grid-column: 1;
  width: 3.75rem;
  aspect-ratio: 1;
  margin-top: 0.5625rem;
  background-color: #ffffff;
  mask-image: var(--icon-list-icon);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .icon-list__heading::before {
    width: 2.75rem;
    margin-top: 0.25rem;
  }
}

.icon-list__name {
  grid-row: 1;
  grid-column: 2;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .icon-list__name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .icon-list__name {
    font-size: 1.25rem;
  }
}

.icon-list__en {
  grid-row: 2;
  grid-column: 2;
  margin-top: 0.1875rem;
  font-size: 0.875rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2857142857;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .icon-list__en {
    font-size: 0.75rem;
  }
}

.icon-list__text {
  margin-top: 0.1875rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .icon-list__text {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .icon-list__text {
    margin-top: 1rem;
    font-size: 0.9375rem;
  }
}

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

.interview-modal {
  --modal-scrollbar-color: #0090ff;
  width: min(100% - 5rem, 43.75rem);
  height: min(100svh - 5rem, 53.75rem);
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .interview-modal {
    width: min(100% - 2.5rem, 31.25rem);
    height: calc(100svh - 3.75rem);
  }
}

.interview-modal__panel {
  padding-inline: 1.875rem;
  padding-block: 3.125rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__panel {
    padding-inline: 1.25rem;
    padding-block: 1.25rem 2.5rem;
  }
}

.interview-modal__main-img {
  object-fit: cover;
  aspect-ratio: 16/9;
}

.interview-modal__head {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__head {
    margin-top: 1.5rem;
  }
}

.interview-modal__meta {
  font-size: max(0.875rem, 12px);
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0.02em;
}

.interview-modal[data-theme=blue] .interview-modal__meta {
  color: #0090ff;
}

.interview-modal[data-theme=orange] .interview-modal__meta {
  color: #ff733c;
}

.interview-modal__name {
  position: relative;
  margin-top: 0.5rem;
  font-size: max(1.875rem, 12px);
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .interview-modal__name {
    font-size: max(1.25rem, 12px);
  }
}

.interview-modal__name::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 0;
  width: 12.5rem;
  aspect-ratio: 940/120;
  background-image: url("../images/common/brush-stroke-orange-01.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.interview-modal__items {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__items {
    margin-top: 2rem;
  }
}

.interview-modal__item:nth-child(n+2) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__item:nth-child(n+2) {
    margin-top: 2rem;
  }
}

.interview-modal__question {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 1rem;
  font-size: max(1.25rem, 12px);
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .interview-modal__question {
    column-gap: 0.625rem;
    font-size: max(1rem, 12px);
  }
}

.interview-modal__question-num {
  font-size: max(1.5rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interview-modal__question-num {
    font-size: max(1.125rem, 12px);
  }
}

.interview-modal[data-theme=blue] .interview-modal__question-num {
  color: #0090ff;
}

.interview-modal[data-theme=orange] .interview-modal__question-num {
  color: #ff733c;
}

.interview-modal__answer {
  font-size: max(1rem, 12px);
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__answer {
    font-size: max(0.9375rem, 12px);
    margin-top: 0.75rem;
  }
}

.interview-modal__img-wrapper {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .interview-modal__img-wrapper {
    margin-top: 1.25rem;
  }
}

.interview-modal__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ldeal-card {
  position: relative;
  border: 1px solid #ffffff;
  background-color: #000000;
  height: 30cqi;
}
@media screen and (max-width: 767px) {
  .ldeal-card {
    height: auto;
    padding-block-end: 1.875rem;
  }
}

.ldeal-card__img {
  border-bottom: 1px solid #ffffff;
  width: 100%;
  height: 14.286cqi;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .ldeal-card__img {
    aspect-ratio: 480/200;
    height: auto;
  }
}

.ldeal-card__content {
  display: grid;
  grid-template-columns: 2cqi 1fr;
  column-gap: 1.571cqi;
  padding-block-start: 2.143cqi;
  padding-inline: 4.286cqi;
}
@media screen and (max-width: 767px) {
  .ldeal-card__content {
    grid-template-columns: 1.25rem 1fr;
    column-gap: 1.25rem;
    padding-block-start: 1.875rem;
    padding-inline: 1.25rem;
  }
}

.ldeal-card__logo {
  background-color: #ffffff;
  width: 2cqi;
  aspect-ratio: 2/3.143;
  mask-image: url("../images/recruit/logo-recruit.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .ldeal-card__logo {
    width: 1.25rem;
  }
}

.ldeal-card__text {
  font-size: 1.429cqi;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .ldeal-card__text {
    font-size: max(1rem, 12px);
  }
}

.ldeal-card__labels {
  position: absolute;
  top: -0.714cqi;
  right: 0.714cqi;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0.143cqi;
}
@media screen and (max-width: 767px) {
  .ldeal-card__labels {
    top: -0.625rem;
    right: 0.625rem;
    gap: 0.125rem;
  }
}

.ldeal-card__label {
  background-color: #ffffff;
  padding-block: 0.625rem;
  padding-inline: 0.625rem;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1333333333em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .ldeal-card__label {
    font-size: 1.25rem;
    padding-inline: 0.25rem;
    padding-block: 0.25rem;
  }
}

.ldeal {
  position: relative;
  overflow-x: clip;
}

.ldeal__inner {
  container-type: inline-size;
}

.ldeal__stage {
  position: relative;
  height: 77.143cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__stage {
    height: auto;
    padding-block: 3.75rem 0;
  }
}

.ldeal__heading {
  position: absolute;
  top: 4.357cqi;
  left: -0.286cqi;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .ldeal__heading {
    position: static;
  }
}

.ldeal__heading-text {
  display: block;
  font-size: 8.571cqw;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.0928em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .ldeal__heading-text {
    font-size: max(2.5rem, 12px);
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }
}

.ldeal__items {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .ldeal__items {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
    margin-top: 5rem;
  }
}

.ldeal__item {
  position: absolute;
  width: 34.286cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__item {
    position: relative;
    z-index: 5;
    max-width: 25rem;
    width: 100%;
  }
}

.ldeal__item:nth-child(1) {
  top: 12.143cqi;
  left: 14.286cqi;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .ldeal__item:nth-child(1) {
    top: auto;
    left: auto;
  }
}

.ldeal__item:nth-child(2) {
  top: 17.857cqi;
  left: 51.429cqi;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .ldeal__item:nth-child(2) {
    top: auto;
    left: auto;
  }
}

.ldeal__item:nth-child(3) {
  top: 40cqi;
  left: 23.571cqi;
  z-index: 7;
}
@media screen and (max-width: 767px) {
  .ldeal__item:nth-child(3) {
    top: auto;
    left: auto;
  }
}

.ldeal__en {
  position: absolute;
  top: 30.929cqi;
  left: 92.286cqi;
  z-index: 8;
  width: 7.714cqi;
  font-size: 0.714cqi;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  text-align: right;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .ldeal__en {
    position: static;
    margin-top: 3.75rem;
    margin-inline-start: auto;
    max-width: 6.75rem;
    width: 100%;
    font-size: 0.625rem;
  }
}

.ldeal__deco {
  position: absolute;
  height: auto;
}
@media screen and (max-width: 767px) {
  .ldeal__deco {
    z-index: 1;
  }
}

.ldeal__deco--01 {
  top: 18.571cqi;
  left: -4.286cqi;
  z-index: 2;
  border: 1px solid #0090ff;
  width: 28.571cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__deco--01 {
    top: 8.125rem;
    left: -2.5rem;
    width: 62%;
  }
}

.ldeal__deco--02 {
  top: -2.857cqi;
  left: 62.143cqi;
  z-index: 3;
  border: 1px solid #0090ff;
  width: 42.143cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__deco--02 {
    top: 28%;
    right: -3.125rem;
    left: auto;
    width: 70%;
  }
}

.ldeal__deco--03 {
  top: 39.286cqi;
  left: 74.286cqi;
  z-index: 4;
  border: 1px solid #ff733c;
  width: 25.714cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__deco--03 {
    top: 54%;
    right: -1.875rem;
    left: auto;
    width: 55%;
  }
}

.ldeal__deco--04 {
  top: 45.786cqi;
  left: 3.571cqi;
  z-index: 10;
  width: 17.429cqi;
}
@media screen and (max-width: 767px) {
  .ldeal__deco--04 {
    top: auto;
    bottom: 2.5rem;
    left: -1.25rem;
    z-index: 6;
    width: 42%;
  }
}

.ldeal__higher {
  position: absolute;
  top: 62.857cqi;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, rgb(65, 62, 65) 0%, rgb(58, 54, 58) 7%, rgb(127, 127, 129) 21%, rgb(213, 213, 213) 36%, rgb(38, 38, 45) 43%, rgb(71, 68, 67) 57%, rgb(119, 109, 100) 64%, rgb(87, 84, 88) 71%, rgb(47, 46, 54) 79%, rgb(59, 60, 71) 100%);
  width: 100%;
  aspect-ratio: 1400/200;
  mask-image: url("../images/recruit/text-higher.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .ldeal__higher {
    position: static;
    display: block;
    margin-top: 6.25rem;
  }
}

.loop-img {
  overflow: hidden;
}

.loop-img__wrapper {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.loop-img__wrapper--vertical {
  flex-direction: column;
  height: 100%;
}

.loop-img__items {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.875rem;
}

.loop-img__items--left {
  animation: loop-scroll-left 60s infinite linear both;
}

@keyframes loop-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop-img__items--right {
  animation: loop-scroll-right 60s infinite linear both;
}

@keyframes loop-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.loop-img__items--up {
  flex-direction: column;
  width: 100%;
  animation: loop-scroll-up 60s infinite linear both;
}

@keyframes loop-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.loop-img__items--down {
  flex-direction: column;
  width: 100%;
  animation: loop-scroll-down 60s infinite linear both;
}

@keyframes loop-scroll-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.loop-img--sticky {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100lvh;
}

.loop-img__item {
  flex-shrink: 0;
  white-space: nowrap;
}

.lower-fv {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 1023px) {
  .lower-fv {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv {
    margin-top: 2.5rem;
  }
}

.lower-fv--no-loop {
  margin-top: 3.1875rem;
}
@media screen and (max-width: 1023px) {
  .lower-fv--no-loop {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv--no-loop {
    margin-top: 2.5rem;
  }
}

.lower-fv__deco {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-rows: repeat(30, 1fr);
  max-width: 61.875rem;
  width: 100%;
  aspect-ratio: 990/30;
}

.lower-fv__deco--top {
  grid-template-columns: 360fr 370fr 260fr;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__deco--top {
    margin-top: 1.875rem;
  }
}

.lower-fv__deco--bottom {
  grid-template-columns: 260fr 370fr 360fr;
  margin-top: -0.625rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .lower-fv__deco--bottom {
    max-width: 30.9375rem;
    margin-top: calc(min(100%, 30.9375rem) * -1 / 99);
  }
}

.lower-fv__deco-bar {
  background-color: #ffffff;
}

.lower-fv__deco--top .lower-fv__deco-bar--01 {
  grid-column: 1;
  grid-row: 1/span 20;
}

.lower-fv__deco--top .lower-fv__deco-bar--02 {
  grid-column: 2;
  grid-row: 21/span 10;
}

.lower-fv__deco--top .lower-fv__deco-bar--03 {
  grid-column: 3;
  grid-row: 15/span 6;
}

.lower-fv__deco--bottom .lower-fv__deco-bar--01 {
  grid-column: 2;
  grid-row: 1/span 10;
}

.lower-fv__deco--bottom .lower-fv__deco-bar--02 {
  grid-column: 1;
  grid-row: 11/span 6;
}

.lower-fv__deco--bottom .lower-fv__deco-bar--03 {
  grid-column: 3;
  grid-row: 11/span 20;
}

.lower-fv__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

.lower-fv__title {
  display: flex;
  align-items: baseline;
  column-gap: 2.5rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__title {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.625rem;
  }
}

.lower-fv__title-en {
  display: block;
  max-width: 100%;
  font-size: 6.25rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .lower-fv__title-en {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__title-en {
    font-size: 2.75rem;
  }
}

.lower-fv__title-ja {
  display: block;
  max-width: 100%;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1333333333;
}
@media screen and (max-width: 1023px) {
  .lower-fv__title-ja {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__title-ja {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}

.lower-fv__poem {
  font-size: max(0.75rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.5;
  text-align: right;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .lower-fv__poem {
    margin-top: 1.5rem;
  }
}

.lower-fv__loop-img-wrapper {
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__loop-img-wrapper {
    margin-top: calc(min(100%, 61.875rem) * -1 / 99);
  }
}

.lower-fv__loop .loop-img__wrapper,
.lower-fv__loop .loop-img__items {
  gap: 0;
}

.lower-fv__loop .loop-img__item {
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__loop .loop-img__item {
    width: 18.75rem;
  }
}

.lower-fv__loop .loop-img__items--left {
  animation-duration: 40s;
}

.lower-fv__logo {
  display: flex;
  position: relative;
  justify-content: flex-end;
  margin-top: -0.25rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__logo {
    margin-top: 0.625rem;
  }
}

.lower-fv__logo-text {
  margin-right: 4.0625rem;
  font-size: 1.875rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lower-fv__logo-text {
    margin-right: 1.875rem;
    font-size: 1.3125rem;
  }
}

.lower-fv__logo-circle {
  position: absolute;
  top: 1.625rem;
  right: 1.375rem;
  width: 8.4375rem;
  aspect-ratio: 134/46;
  background-color: #ffffff;
  mask-image: url("../images/common/brush-stroke-circle-white.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .lower-fv__logo-circle {
    top: 1.125rem;
    right: 0;
    width: 5.9375rem;
  }
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

:where(:root[data-mousedown] dialog *) {
  outline: none;
}

[data-modal-open]:where(:root[data-mousedown] *) {
  outline: none;
}

.modal {
  contain: strict;
  margin: auto;
  transition: opacity 0.3s, scale 0.3s;
}

.modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}

.modal::backdrop {
  background-color: color-mix(in srgb, #000000 80%, transparent);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}

.modal:not([data-active=true])::backdrop {
  opacity: 0;
}

.modal__container {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.125rem;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  z-index: 1;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .modal__close {
    width: 2.1875rem;
  }
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1.125rem;
  height: 2px;
  background-color: #000000;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .modal__close::before,
  .modal__close::after {
    width: 0.9375rem;
  }
}

.modal__close::before {
  rotate: 45deg;
}

.modal__close::after {
  rotate: -45deg;
}

@media (any-hover: hover) {
  .modal__close:hover {
    background-color: #0090ff;
  }
  .modal__close:hover::before,
  .modal__close:hover::after {
    background-color: #ffffff;
  }
}
.modal__container .simplebar-track.simplebar-vertical {
  top: 3.125rem;
  right: 0.75rem;
  width: 0.5rem;
  background-color: transparent;
  height: calc(100% - 6.25rem);
}
@media screen and (max-width: 767px) {
  .modal__container .simplebar-track.simplebar-vertical {
    top: 1.25rem;
    right: 0.5rem;
    width: 0.375rem;
    height: calc(100% - 3.75rem);
  }
}

.modal__container .simplebar-scrollbar::before {
  right: auto;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  background-color: var(--modal-scrollbar-color, #aaaaaf);
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .modal__container .simplebar-scrollbar::before {
    width: 0.375rem;
  }
}

.modal__container .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.mv {
  position: relative;
  height: 100lvh;
  container-type: inline-size;
  margin-top: -6.5625rem;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: -5.9375rem;
  }
}

.mv__stage {
  position: absolute;
  inset: 0;
  overflow: clip;
}

.mv__frame-img {
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.25rem);
  translate: -50% 0;
  max-width: 106.25rem;
  width: 91%;
  height: auto;
}

.mv__side-img {
  position: absolute;
  top: 0;
  max-width: 26.875rem;
  width: 23%;
  height: auto;
}

.mv__side-img--left {
  left: -3rem;
}
@media screen and (max-width: 767px) {
  .mv__side-img--left {
    left: -1.5rem;
  }
}

.mv__side-img--right {
  right: 0;
}

.mv__main {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  max-width: 77.5rem;
  width: 66.5%;
}
@media screen and (max-width: 767px) {
  .mv__main {
    width: 90%;
  }
}

.mv__main-img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__main-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mv__corner-text {
  position: absolute;
  font-size: clamp(12px, 1.072cqi, 1.25rem);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.2;
  text-transform: capitalize;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__corner-text {
    display: none;
  }
}

.mv__corner-text--top-left {
  top: 8.875rem;
  left: clamp(20px, 7.127cqi, 8.3125rem);
}

.mv__corner-text--top-right {
  top: 8.875rem;
  right: clamp(20px, 7.127cqi, 8.3125rem);
  text-align: right;
}

.mv__corner-text--bottom-left {
  bottom: 6.125rem;
  left: clamp(20px, 7.127cqi, 8.3125rem);
}

.mv__corner-text--bottom-right {
  bottom: 6.125rem;
  right: clamp(20px, 7.127cqi, 8.3125rem);
  text-align: right;
}

.mv__deco {
  position: absolute;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  max-width: 45.625rem;
  width: min(39.12%, 76.042lvh);
  aspect-ratio: 730/30;
  z-index: 1;
}

.mv__deco--top-right {
  top: 34.375%;
  right: -1.6875rem;
  grid-template-columns: 370fr 360fr;
}
@media screen and (max-width: 767px) {
  .mv__deco--top-right {
    top: 7.5rem;
    right: 0;
  }
}

.mv__deco--bottom-left {
  bottom: 32.292%;
  left: -1.6875rem;
  grid-template-columns: 360fr 370fr;
}
@media screen and (max-width: 767px) {
  .mv__deco--bottom-left {
    bottom: 7.5rem;
    left: 0;
  }
}

.mv__deco-bar {
  background-color: #ffffff;
}

.mv__deco--top-right .mv__deco-bar--01 {
  grid-column: 1;
  grid-row: 1;
}

.mv__deco--top-right .mv__deco-bar--02 {
  grid-column: 2;
  grid-row: 2/span 2;
}

.mv__deco--bottom-left .mv__deco-bar--01 {
  grid-column: 1;
  grid-row: 1/span 2;
}

.mv__deco--bottom-left .mv__deco-bar--02 {
  grid-column: 2;
  grid-row: 3;
}

.mv__logo-wrapper {
  position: absolute;
  z-index: 2;
  top: calc(50% - 3.75rem);
  left: calc(50% - 1.25rem);
  translate: -50% 0;
  max-width: min(50rem, 42.872cqi);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__logo-wrapper {
    top: 40%;
    transform: translateY(-50%);
    left: 50%;
    max-width: 25rem;
    width: calc(100% - 2.5rem);
  }
}

.mv__logo-img {
  width: 72.5%;
  height: auto;
  margin-left: 16.25%;
}

.mv__logo-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2.1875rem;
  left: 0;
  width: 100%;
  aspect-ratio: 800/70;
  background-image: url("../images/common/brush-stroke-blue-01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.mv__copy {
  position: absolute;
  z-index: 2;
  top: calc(50% - 3rem);
  left: clamp(20px, 9.271cqi, 10.8125rem);
  font-size: clamp(18px, 1.607cqi, 1.875rem);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1333333333;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  .mv__copy {
    top: 50%;
    transform: translateY(-50%);
    left: 1.25rem;
    font-size: max(1.25rem, 12px);
  }
}

/* カンプ x1520（右端から 173）・ライン箱換算 top 426 = 中央 − 27 */
.mv__lead {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1.6875rem);
  right: clamp(20px, 9.271cqi, 10.8125rem);
  font-size: clamp(12px, 0.857cqi, 1rem);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    top: 60%;
    transform: translateY(-50%);
    right: 1.25rem;
  }
}

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

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

.news-list__item-link {
  position: relative;
  display: grid;
  grid-template-columns: 25.625rem 1fr;
  column-gap: 2.5rem;
  align-items: center;
  padding-block: 2.71875rem;
  padding-inline: 0.625rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 1023px) {
  .news-list__item-link {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding-block: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item-link {
    padding-block: 1.25rem;
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover {
    background-color: #ffffff;
  }
}
.news-list__meta {
  display: grid;
  grid-template-columns: 15.625rem 1fr;
  column-gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-list__meta {
    grid-template-columns: auto;
    justify-content: start;
  }
}

.news-list__date {
  grid-column: 1;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__date {
    color: #0090ff;
  }
}
.news-list__badge {
  grid-column: 1;
  justify-self: start;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  border: 1px solid #ffffff;
  border-radius: 100vmax;
  background-color: #000000;
  transition: border-color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__badge {
    margin-bottom: 0.625rem;
    padding-block: 0.5rem;
    padding-inline: 0.875rem;
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__badge {
    border-color: #0090ff;
    background-color: #ffffff;
  }
}
.news-list__badge-text {
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__badge-text {
    font-size: max(0.75rem, 12px);
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__badge-text {
    color: #0090ff;
  }
}
.news-list__category {
  grid-column: 2;
  grid-row: 1/span 2;
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-list__category {
    grid-column: 1/-1;
    grid-row: auto;
    margin-top: 0.625rem;
  }
}

.news-list__category::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background-color: #ffffff;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__category::before {
    background-color: #0090ff;
  }
}
.news-list__category-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__category-text {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__category-text {
    color: #0090ff;
  }
}
.news-list__title {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__title {
    color: #0090ff;
  }
}
.pagination,
.nav-links {
  --pagination-gap: 4.125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: var(--pagination-gap);
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .pagination,
  .nav-links {
    --pagination-gap: 1.875rem;
  }
}

.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(1rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .page-numbers:hover {
    color: #0090ff;
  }
}
.page-numbers:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--pagination-gap) / -2 - 0.125rem);
  width: 0.25rem;
  aspect-ratio: 1;
  background-color: #ffffff;
  transform: translateY(-50%);
}

.page-numbers.current {
  color: #0090ff;
  pointer-events: none;
}

.post-detail-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #ffffff;
  padding-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .post-detail-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
    padding-block-start: 2.5rem;
  }
}

.post-detail-nav__links {
  display: contents;
}

.post-detail-nav__prev {
  grid-column: 1;
}

.post-detail-nav__next {
  grid-column: 3;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .post-detail-nav__next {
    grid-column: 2;
  }
}

/* PC 用「戻る」は 2 列目に中央配置 */
.post-detail-nav__back {
  grid-column: 2;
  text-align: center;
}

/* SP 用「戻る」は 2 列全幅で中央寄せ */
.post-detail-nav__back--sp {
  grid-column: 1/-1;
  text-align: center;
}

.post-detail-nav__prev a,
.post-detail-nav__next a,
.post-detail-nav__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.3s;
}

.post-detail-nav__next a {
  flex-direction: row-reverse;
}

.post-detail-nav__prev a::before,
.post-detail-nav__next a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transition: border-color 0.3s;
}

.post-detail-nav__prev a::before {
  transform: rotate(-135deg);
}

.post-detail-nav__next a::before {
  transform: rotate(45deg);
}

.post-detail-nav__text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .post-detail-nav__text {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .post-detail-nav__prev a:hover,
  .post-detail-nav__next a:hover,
  .post-detail-nav__back a:hover {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .post-detail-nav__prev a,
  .post-detail-nav__next a,
  .post-detail-nav__back a {
    transition: none;
  }
  .post-detail-nav__prev a::before,
  .post-detail-nav__next a::before {
    transition: none;
  }
}
.president-message {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .president-message {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.president-message__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21.25rem;
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .president-message__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.president-message__content {
  grid-row: 1;
  grid-column: 1;
}
@media screen and (max-width: 767px) {
  .president-message__content {
    display: contents;
  }
}

.president-message__title {
  position: relative;
  isolation: isolate;
  font-size: 3.125rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .president-message__title {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .president-message__title {
    grid-row: 1;
    grid-column: 1;
    font-size: 1.625rem;
  }
}

.president-message__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block-start: 0.06em;
  inset-inline-start: 4.22em;
  width: 4.8em;
  aspect-ratio: 240/80;
  background-image: url("../images/common/brush-stroke-circle-orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.president-message__text-wrapper {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .president-message__text-wrapper {
    grid-row: 3;
    grid-column: 1;
    margin-top: 0;
  }
}

.president-message__text {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .president-message__text {
    font-size: 1rem;
  }
}

.president-message__text + .president-message__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .president-message__text + .president-message__text {
    margin-top: 1.5rem;
  }
}

.president-message__sign {
  margin-top: 3.5625rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .president-message__sign {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.president-message__figure {
  position: relative;
  grid-row: 1;
  grid-column: 2;
  margin-top: -0.375rem;
}
@media screen and (max-width: 767px) {
  .president-message__figure {
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    max-width: 21.25rem;
    margin-top: 0;
    margin-inline: auto;
  }
}

.president-message__img {
  width: 100%;
  height: auto;
  aspect-ratio: 340/440;
  border: 1px solid #707070;
  object-fit: cover;
}

.president-message__figure::after {
  content: "";
  position: absolute;
  inset-block-start: 26.25rem;
  inset-inline-start: 2.5rem;
  width: 21.25rem;
  aspect-ratio: 340/43;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-orange-01.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .president-message__figure::after {
    inset-block-start: 92%;
    inset-inline-start: 1.25rem;
    width: 100%;
  }
}

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

.privacy-policy__inner.inner {
  max-width: 76.875rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__inner.inner {
    max-width: 33.75rem;
  }
}

.privacy-policy__lead {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__lead {
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.privacy-policy__rule-container {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__rule-container {
    margin-top: 3.75rem;
  }
}

.privacy-policy__rule:nth-child(n+2) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__rule:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}

.privacy-policy__rule-title {
  position: relative;
  padding-top: 1.5rem;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__rule-title {
    padding-top: 1rem;
    font-size: max(1.125rem, 12px);
  }
}

.privacy-policy__rule-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
  height: 0.25rem;
  background-color: #ffffff;
}

.privacy-policy__rule-title::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 1.875rem;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #ffffff;
}

.privacy-policy__rule-body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__rule-body {
    margin-top: 1.5rem;
  }
}

.privacy-policy__text {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__text {
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.privacy-policy__text + .privacy-policy__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__text + .privacy-policy__text {
    margin-top: 1.5rem;
  }
}

.privacy-policy__text-link {
  position: relative;
  transition: opacity 0.3s;
}

.privacy-policy__text-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  width: 100%;
  height: 1px;
}

@media (any-hover: hover) {
  .privacy-policy__text-link:hover {
    opacity: 0.6;
  }
}
.privacy-policy__text + .privacy-policy__list {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__text + .privacy-policy__list {
    margin-top: 0.75rem;
  }
}

.privacy-policy__list {
  counter-reset: privacy-policy-item;
  border-bottom: 1px solid #707070;
}

.privacy-policy__list-item {
  position: relative;
  padding-block: 1.875rem;
  padding-inline-start: 3.125rem;
  border-top: 1px solid #707070;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  counter-increment: privacy-policy-item;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item {
    padding-block: 1.25rem;
    padding-inline-start: 1.875rem;
    font-size: max(0.875rem, 12px);
    line-height: 1.7142857143;
  }
}

.privacy-policy__list-item::before {
  content: counter(privacy-policy-item, decimal-leading-zero);
  position: absolute;
  inset-block-start: 2.3125rem;
  inset-inline-start: 0;
  font-size: max(0.75rem, 12px);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item::before {
    inset-block-start: 1.5625rem;
  }
}

.privacy-policy__list-item .privacy-policy__list {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  border-top: 1px solid #707070;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item .privacy-policy__list {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.privacy-policy__list-item .privacy-policy__list-item {
  padding-block: 0;
  border-top: none;
  font-size: max(1rem, 12px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item .privacy-policy__list-item {
    font-size: max(0.75rem, 12px);
    line-height: 1.6666666667;
  }
}

.privacy-policy__list-item .privacy-policy__list-item:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item .privacy-policy__list-item:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.privacy-policy__list-item .privacy-policy__list-item::before {
  inset-block-start: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list-item .privacy-policy__list-item::before {
    inset-block-start: 0.3125rem;
  }
}

.recruit-detail {
  position: relative;
  z-index: 4;
}

.recruit-detail__visual {
  position: relative;
  isolation: isolate;
  height: calc(43.75rem + 1px);
  border-block-end: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-detail__visual {
    height: calc(21.875rem + 1px);
  }
}

.recruit-detail__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: image-set(url("../images/recruit/recruit-main.avif") type("image/avif"), url("../images/recruit/recruit-main.webp") type("image/webp"));
  background-position: center;
  background-size: cover;
}

.recruit-detail__overlay {
  position: absolute;
  inset: 0;
  background-color: #0090ff;
  mix-blend-mode: color;
}

.recruit-detail__logos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  align-content: space-between;
  padding-block: 7.5rem;
  padding-inline: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__logos {
    padding-block: 1.875rem;
    padding-inline: 1.25rem;
  }
}

.recruit-detail__logo {
  width: 1.75rem;
  height: 2.75rem;
  background-color: #ffffff;
  mask-image: url("../images/recruit/logo-recruit.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit-detail__logo {
    width: 1.1875rem;
    height: 1.875rem;
  }
}

.recruit-detail__catch {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  translate: 0 -50%;
}

.recruit-detail__catch-img {
  max-width: 75rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .recruit-detail__catch-img {
    max-width: 17.5rem;
  }
}

.recruit-detail__inner {
  padding-block-start: 7.125rem;
}
@media screen and (max-width: 1023px) {
  .recruit-detail__inner {
    padding-block-start: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-detail__inner {
    padding-block-start: 3rem;
  }
}

.recruit-detail__tab {
  display: grid;
  grid-template-columns: 37.5rem 1fr;
  column-gap: 6.25rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .recruit-detail__tab {
    grid-template-columns: 26.25rem 1fr;
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-detail__tab {
    grid-template-columns: 1fr;
  }
}

.recruit-detail__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__heading {
    margin-top: 0;
  }
}

.recruit-detail__heading-en {
  max-width: 100%;
  font-size: 6.25rem;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.9;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .recruit-detail__heading-en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-detail__heading-en {
    font-size: 2.5rem;
  }
}

.recruit-detail__heading-ja {
  max-width: 100%;
  margin-top: 0.625rem;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .recruit-detail__heading-ja {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-detail__heading-ja {
    font-size: 1.25rem;
  }
}

.recruit-detail__list {
  display: grid;
  margin-top: 6.625rem;
}
@media screen and (max-width: 1023px) {
  .recruit-detail__list {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-detail__list {
    margin-top: 2rem;
  }
}

.recruit-detail__list-btn {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  column-gap: 1.25rem;
  align-items: start;
  border-block-start: 1px solid #ffffff;
  border-block-end: none;
  border-inline: none;
  padding-block-start: 0.46875rem;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit-detail__list-btn {
    column-gap: 0.75rem;
  }
}

.recruit-detail__list-btn[aria-selected=true] {
  opacity: 1;
}

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

.recruit-detail__list-mark {
  position: relative;
  margin-block-start: 0.40625rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-detail__list-mark {
    margin-block-start: 0.1875rem;
  }
}

.recruit-detail__list-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.25rem;
  height: 0.416875rem;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  translate: -50% -50%;
}

.recruit-detail__list-label {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recruit-detail__list-label {
    font-size: 1rem;
  }
}

.recruit-detail__panel-items {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__panel-items {
    margin-top: 2.5rem;
  }
}

.recruit-detail__row {
  border-block-start: 1px solid #ffffff;
  padding-block-start: 0.3125rem;
}

.recruit-detail__row + .recruit-detail__row {
  margin-top: 2.40625rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__row + .recruit-detail__row {
    margin-top: 1.75rem;
  }
}

.recruit-detail__term {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit-detail__term {
    font-size: 0.875rem;
  }
}

.recruit-detail__desc {
  margin-top: 1.53125rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit-detail__desc {
    margin-top: 0.875rem;
    font-size: 1rem;
  }
}

.recruit-interview {
  margin-block-start: 10rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview {
    margin-block-start: 5rem;
  }
}

.recruit-interview__item {
  background-color: #000000;
}

.recruit-interview__band {
  height: calc(1.6875rem + 1px);
  border-bottom: 1px solid #ffffff;
}

.recruit-interview__item:first-child > .recruit-interview__band:first-child {
  height: calc(1.6875rem + 2px);
  border-top: 1px solid #ffffff;
}

.recruit-interview__band .loop-img__wrapper {
  gap: 0.5rem;
  height: 100%;
}

.recruit-interview__band .loop-img__items {
  gap: 0.5rem;
}

.recruit-interview__band .loop-img__item {
  font-size: 0.625rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.recruit-interview__title {
  height: calc(7.625rem + 1px);
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-interview__title {
    height: calc(3.75rem + 1px);
  }
}

.recruit-interview__title .loop-img__wrapper {
  gap: 1.875rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-interview__title .loop-img__wrapper {
    gap: 0.9375rem;
  }
}

.recruit-interview__title .loop-img__items {
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__title .loop-img__items {
    gap: 0.9375rem;
  }
}

.recruit-interview__title .loop-img__item {
  width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__title .loop-img__item {
    width: 15.3125rem;
  }
}

.recruit-interview__title-img {
  width: 100%;
  height: auto;
}

.recruit-interview__visual {
  position: relative;
  isolation: isolate;
  height: calc(37.5rem + 1px);
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-interview__visual {
    height: calc(18.75rem + 1px);
  }
}

.recruit-interview__img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .recruit-interview__img {
    height: 18.75rem;
  }
}

.recruit-interview__overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  transition: opacity 0.3s;
}

.recruit-interview__item[data-theme=blue] .recruit-interview__overlay {
  background-color: #0090ff;
}

.recruit-interview__item[data-theme=orange] .recruit-interview__overlay {
  background-color: #ff733c;
}

.recruit-interview__logos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-content: space-between;
  padding-block: 3.6875rem;
  padding-inline: max(6.1875rem, 50% - 43.75rem + 3.6875rem);
}
@media screen and (max-width: 767px) {
  .recruit-interview__logos {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.recruit-interview__logo {
  width: 1.75rem;
  height: 2.75rem;
  background-color: #ffffff;
  mask-image: url("../images/recruit/logo-recruit.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit-interview__logo {
    width: 1.1875rem;
    height: 1.875rem;
  }
}

.recruit-interview__catch {
  position: absolute;
  top: 14.0625rem;
  left: 0;
  width: 100%;
  font-size: 3.125rem;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-interview__catch {
    top: 50%;
    font-size: 1.5rem;
    translate: 0 -50%;
  }
}

.recruit-interview__foot {
  height: calc(8.5rem + 1px);
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-interview__foot {
    height: auto;
    padding-block-end: 1.5rem;
  }
}

.recruit-interview__text-wrapper.inner {
  display: grid;
  grid-template-columns: 1fr 22.5rem;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-wrapper.inner {
    grid-template-columns: 1fr;
    max-width: 25rem;
  }
}

.recruit-interview__heading {
  margin-top: 1.5625rem;
  font-size: 1.875rem;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .recruit-interview__heading {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.recruit-interview__btn-wrapper {
  align-self: start;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__btn-wrapper {
    margin-top: 1rem;
  }
}

.recruit-interview__link {
  display: grid;
  grid-template-columns: 18.125rem 1.875rem;
  column-gap: 2.5rem;
  align-items: start;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .recruit-interview__link {
    grid-template-columns: 1fr 1.875rem;
    column-gap: 1rem;
  }
}

.recruit-interview__profile {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5714285714;
  letter-spacing: 0.02em;
  text-align: right;
  transition: color 0.3s;
}

.recruit-interview__btn {
  position: relative;
  margin-top: 1.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit-interview__btn {
    margin-top: 1.125rem;
  }
}

.recruit-interview__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.625rem;
  background-color: #000000;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  translate: -50% -50%;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .recruit-interview__link:hover .recruit-interview__profile {
    color: #0090ff;
  }
}
@media (any-hover: hover) {
  .recruit-interview__link:hover .recruit-interview__btn {
    background-color: #0090ff;
  }
}
@media (any-hover: hover) {
  .recruit-interview__link:hover .recruit-interview__btn::before {
    background-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .recruit-interview__item:has(.recruit-interview__link:hover) .recruit-interview__overlay {
    opacity: 0;
  }
}
.recruit-intro {
  position: relative;
  container-type: inline-size;
  overflow: clip;
  padding-block-start: 17.75rem;
  padding-block-end: 13.5625rem;
}
@media screen and (max-width: 767px) {
  .recruit-intro {
    padding-block-start: 7.5rem;
    padding-block-end: 0;
  }
}

.recruit-intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: #ffffff;
  width: 100%;
  height: 1px;
}

.recruit-intro__logos {
  position: absolute;
  top: 7.5rem; /* 1080 - 960 */
  right: 8.3125rem;
  left: 8.3125rem;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .recruit-intro__logos {
    top: 2.5rem;
    right: 1.25rem;
    left: 1.25rem;
  }
}

.recruit-intro__logo {
  width: 1.75rem;
  height: 2.75rem;
  background-color: #0090ff;
  mask-image: url("../images/recruit/logo-recruit.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.recruit-intro__inner {
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .recruit-intro__inner {
    width: fit-content;
    margin-inline: auto;
  }
}

.recruit-intro__heading {
  font-size: 6.25rem;
  font-family: "Hannari Mincho", "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .recruit-intro__heading {
    font-size: 2.5rem;
  }
}

.recruit-intro__lead {
  margin-top: 3.75rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit-intro__lead {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.recruit-intro__en {
  position: absolute;
  top: 1.0625rem;
  right: 2.5rem;
  font-size: 0.625rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  text-align: right;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .recruit-intro__en {
    position: static;
    margin-top: 1.875rem;
  }
}

.recruit-intro__visual {
  position: absolute;
  bottom: 0;
  right: max(2.5rem, 50cqi - 43.75rem);
  z-index: 2;
  max-width: 62.5rem;
  width: 53.591cqi;
  height: auto;
}
@media screen and (max-width: 767px) {
  .recruit-intro__visual {
    position: relative;
    inset: auto;
    margin-top: 2.5rem;
    margin-inline: auto;
    max-width: 25rem;
    width: calc(100% - 2.5rem);
  }
}

.recruit-intro__visual-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.recruit-intro__visual .js-aura-glow {
  mask-image: url("../images/recruit/intro-chara.webp"), linear-gradient(to top, transparent 0%, #000 18%);
}

.recruit-intro__visual .js-aura-flame {
  top: -32%;
  left: -16%;
  width: 132%;
  height: 132%;
}

.recruit-intro__loop {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-intro__loop {
    height: 3.125rem;
  }
}

.recruit-intro__loop .loop-img__wrapper {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-intro__loop .loop-img__wrapper {
    gap: 1.0625rem;
  }
}

.recruit-intro__loop .loop-img__items {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-intro__loop .loop-img__items {
    gap: 1.0625rem;
  }
}

.recruit-intro__loop .loop-img__item {
  width: 42.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-intro__loop .loop-img__item {
    width: 17.6875rem;
  }
}

.recruit-intro__loop-img {
  width: 100%;
  height: auto;
}

.recruit-mv {
  position: relative;
  height: 100lvh;
  container-type: inline-size;
  margin-top: -8.3125rem;
}
@media screen and (max-width: 767px) {
  .recruit-mv {
    margin-top: -6.0625rem;
  }
}

.recruit-mv__logos {
  position: absolute;
  top: 7.5rem;
  right: 8.3125rem;
  bottom: 7.5rem;
  left: 8.3125rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  align-content: space-between;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .recruit-mv__logos {
    top: 6.25rem;
    right: 1.25rem;
    bottom: 3.75rem;
    left: 1.25rem;
  }
}

.recruit-mv__logo {
  width: 1.75rem;
  height: 2.75rem;
  background-color: #ffffff;
  mask-image: url("../images/recruit/logo-recruit.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.recruit-mv__band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(1.6875rem + 2px);
  background-color: #000000;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.recruit-mv__band .loop-img__wrapper {
  gap: 0.5rem;
  height: 100%;
}

.recruit-mv__band .loop-img__items {
  gap: 0.5rem;
}

.recruit-mv__band .loop-img__item {
  font-size: 0.625rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.recruit-mv__higher {
  position: absolute;
  top: 39.583%;
  left: 50%;
  translate: -50% 0;
  max-width: min(87.5rem, 75.027cqi);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .recruit-mv__higher {
    top: 50%;
    max-width: 87.5rem;
    width: calc(100% - 2.5rem);
  }
}

.recruit-mv__chara {
  position: absolute;
  top: 51.11%;
  left: calc(50% - 2.625rem);
  translate: -50% -50%;
  rotate: -10deg;
  max-width: min(29.3625rem, 25.176cqi);
  width: 100%;
  background-color: #000000;
  clip-path: polygon(9.3% 8.4%, 100% -0.1%, 99.2% 100%, -0.1% 89.4%);
}
@media screen and (max-width: 767px) {
  .recruit-mv__chara {
    left: calc(50% - 1.25rem);
    max-width: 29.3625rem;
    width: 62%;
  }
}

.recruit-mv__chara-text {
  position: absolute;
  top: -0.68%;
  left: 7.35%;
  width: 94.47%;
  height: auto;
}

.recruit-mv__chara-panel {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.recruit-mv__copy {
  position: absolute;
  top: 46.563%;
  left: calc(50% + 0.125rem);
  translate: -50% 0;
  max-width: min(75rem, 64.309cqi);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-mv__copy {
    top: 51.2%;
    max-width: 75rem;
    left: 50%;
    width: calc(100% - 2.5rem);
  }
}

.recruit-mv__copy-img {
  display: block;
  width: 100%;
  height: auto;
}

.scaffold-type {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .scaffold-type {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.scaffold-type__slider.swiper {
  margin-top: 6.75rem;
  overflow: visible;
  clip-path: polygon(0 0, 200% 0, 200% 100%, 0 100%);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .scaffold-type__slider.swiper {
    margin-top: 2.5rem;
  }
}

.scaffold-type__slider:not(.swiper-initialized) {
  opacity: 0;
}

.scaffold-type__slider:not(.swiper-initialized) .swiper-slide {
  width: 100%;
}

.scaffold-type__card {
  position: relative;
  aspect-ratio: 1140/600;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .scaffold-type__card {
    aspect-ratio: auto;
  }
}

.scaffold-type__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.scaffold-type__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scaffold-type__image::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.scaffold-type__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block-start: 1.375rem;
  padding-block-end: 3.9375rem;
  padding-inline-start: 6.125rem;
  padding-inline-end: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .scaffold-type__content {
    padding-inline-start: 3.75rem;
    padding-inline-end: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .scaffold-type__content {
    height: auto;
    min-height: 22.5rem;
    padding-block-start: 1.25rem;
    padding-block-end: 1.875rem;
    padding-inline-start: 1.25rem;
    padding-inline-end: 1.25rem;
  }
}

.scaffold-type__category {
  margin-inline-start: -2.375rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .scaffold-type__category {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 767px) {
  .scaffold-type__category {
    margin-inline-start: 0;
    font-size: 0.875rem;
  }
}

.scaffold-type__body {
  position: relative;
  max-width: 43.75rem;
  width: 100%;
  margin-block-start: auto;
}

.scaffold-type__num {
  position: absolute;
  top: 3.4375rem;
  left: -2.4375rem;
  width: 1.25rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .scaffold-type__num {
    position: static;
    width: auto;
    margin-block-end: 0.375rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .scaffold-type__num {
    font-size: 0.75rem;
  }
}

.scaffold-type__title {
  font-size: 5rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .scaffold-type__title {
    font-size: 1.875rem;
  }
}

.scaffold-type__desc {
  margin-top: 0.375rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .scaffold-type__desc {
    margin-top: 0.125rem;
    font-size: 0.8125rem;
  }
}

.scaffold-type__label {
  position: absolute;
  right: 3.75rem;
  bottom: 4.4375rem;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .scaffold-type__label {
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .scaffold-type__label {
    right: 1.25rem;
    bottom: 0.875rem;
    font-size: 0.625rem;
  }
}

.scaffold-type__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .scaffold-type__controls {
    column-gap: 1.25rem;
    margin-top: 1.5rem;
  }
}

.scope-of-work {
  margin-top: 10rem;
  scroll-margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .scope-of-work {
    margin-top: 5rem;
    scroll-margin-block-start: 5.75rem;
  }
}

.scope-of-work__lead {
  margin-top: 6.375rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .scope-of-work__lead {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.scope-of-work__body {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .scope-of-work__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    margin-top: 1.875rem;
  }
}

.scope-of-work__label {
  grid-column: 1;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .scope-of-work__label {
    display: none;
  }
}

.scope-of-work__items {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .scope-of-work__items {
    grid-column: 1;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading__en {
  max-width: 100%;
  font-size: 6.25rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .section-heading__en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .section-heading__en {
    font-size: 2.25rem;
  }
}

.section-heading__ja {
  max-width: 100%;
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-heading__ja {
    margin-top: 0.375rem;
    font-size: 1.375rem;
  }
}

.service-layout[data-theme=vision] .section-heading__ja {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .service-layout[data-theme=vision] .section-heading__ja {
    margin-top: 0.375rem;
  }
}

.service-layout[data-theme=company] .section-heading__ja {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .service-layout[data-theme=company] .section-heading__ja {
    margin-top: 0.375rem;
  }
}

.service-card {
  position: relative;
  display: block;
  height: 33.75rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.25rem;
  width: 0.25rem;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .service-card::before {
    left: 0.625rem;
  }
}

.service-card__vertical {
  position: absolute;
  top: 0;
  left: 83.3125rem;
  width: 2.3125rem;
  height: 100%;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  font-size: 0.875rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 2.6;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .service-card__vertical {
    display: none;
  }
}

.service-card__body {
  padding-top: 4.75rem;
  padding-inline-start: 5rem;
}
@media screen and (max-width: 767px) {
  .service-card__body {
    padding-top: 1.25rem;
    padding-inline: 1.5625rem 0.625rem;
  }
}

.service-card__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card__title-en {
  position: relative;
  z-index: 0;
  font-size: 5rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .service-card__title-en {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .service-card__title-en {
    font-size: 1.875rem;
  }
}

.service-card__title-en::after {
  content: "";
  position: absolute;
  top: 7rem;
  left: 6.25rem;
  z-index: -1;
  width: 25rem;
  aspect-ratio: 400/60;
  background-image: url("../images/common/brush-stroke-blue-03.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .service-card__title-en::after {
    top: 5.25rem;
    left: 4.6875rem;
    width: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .service-card__title-en::after {
    top: 3.5rem;
    left: 3.125rem;
    width: 12.5rem;
  }
}

.service-card__link {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  margin-top: 2.09375rem;
}
@media screen and (max-width: 767px) {
  .service-card__link {
    column-gap: 0.75rem;
    margin-top: 1.25rem;
  }
}

.service-card__link::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background-color: #000000;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .service-card__link::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.service-card__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 0.65625rem;
  height: 0.796875rem;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-card__link::before {
    right: 0.75rem;
    width: 0.525rem;
    height: 0.6375rem;
  }
}

.service-card__link-text {
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .service-card__link-text {
    font-size: 1.25rem;
  }
}

@media (any-hover: hover) {
  .service-card:hover .service-card__link-text {
    color: #0090ff;
  }
}
@media (any-hover: hover) {
  .service-card:hover .service-card__link::after {
    background-color: #0090ff;
  }
}
.service-card__label {
  margin-top: 7.78125rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .service-card__label {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.service-card__image {
  position: absolute;
  bottom: 0;
  left: 47.1428571429%;
  width: 42.8571428571%;
  height: calc(100% + 3.75rem);
}
@media screen and (max-width: 767px) {
  .service-card__image {
    position: relative;
    bottom: auto;
    left: auto;
    width: 80%;
    height: auto;
    aspect-ratio: 600/520;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
}

.service-card__image .glitch-img-02 {
  height: 100%;
}

.service-card__image .service-card__img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media screen and (max-width: 767px) {
  .service-card__image .service-card__img {
    object-fit: contain;
  }
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(1.25rem, 1fr) 15rem minmax(0, 71.25rem) minmax(1.25rem, 1fr);
  column-gap: 1.25rem;
  margin-top: 6.875rem;
}
@media screen and (max-width: 1023px) {
  .service-layout {
    grid-template-columns: minmax(1.25rem, 1fr) 11.25rem minmax(0, 71.25rem) minmax(1.25rem, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .service-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 31.25rem) minmax(0, 1fr);
    column-gap: 0;
    row-gap: 2.5rem;
    margin-top: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.service-layout__side {
  grid-row: 1;
  grid-column: 2;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .service-layout__side {
    margin-top: 0;
  }
}

.service-layout[data-theme=vision] {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .service-layout[data-theme=vision] {
    margin-top: 3.75rem;
  }
}

.service-layout[data-theme=vision] .service-layout__side {
  margin-top: 0;
}

.service-layout[data-theme=company] {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .service-layout[data-theme=company] {
    margin-top: 3.75rem;
  }
}

.service-layout[data-theme=company] .service-layout__side {
  margin-top: 0;
}

.service-layout__main {
  display: grid;
  grid-template-columns: minmax(0, 71.25rem);
  grid-row: 1;
  grid-column: 3/-1;
  min-width: 0;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .service-layout__main {
    grid-row: 2;
    grid-column: 2;
  }
}

.service-lead__catch {
  font-size: 3.125rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .service-lead__catch {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .service-lead__catch {
    font-size: 1.375rem;
  }
}

.service-lead__catch-mark {
  position: relative;
  display: inline-block;
  --brush-start: 235deg;
}

.service-lead__catch-mark::after {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0.1em;
  width: 9.6em;
  aspect-ratio: 480/80;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-circle-orange.svg"), var(--brush-mask, linear-gradient(#000, #000));
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-composite: intersect;
  z-index: -1;
}

.service-lead__body {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr) minmax(0, 600fr) minmax(0, 100fr) minmax(0, 340fr);
  align-items: start;
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .service-lead__body {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

.service-lead__label {
  grid-column: 1;
  margin-top: 0.5625rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .service-lead__label {
    display: none;
  }
}

.service-lead__text {
  grid-column: 3;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .service-lead__text {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .service-lead__text {
    grid-row: 3;
    grid-column: 1;
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.service-lead__figure {
  grid-column: 5;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .service-lead__figure {
    grid-row: 2;
    grid-column: 1;
    width: 80%;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.service-lead__img {
  aspect-ratio: 340/440;
  object-fit: cover;
}

.service-nav {
  position: relative;
  display: block;
  width: 100%;
  min-height: 7.5rem;
  padding-block-start: 1.1875rem;
  padding-block-end: 1.125rem;
  padding-inline: 1.25rem;
  border-width: 0;
  background-color: #ffffff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.4);
  text-align: left;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  z-index: 0;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .service-nav {
    min-height: 5.625rem;
    padding-block: 0.625rem;
    padding-inline: 1.25rem 0.625rem;
  }
}

.service-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.25rem;
  width: 0.125rem;
  background-color: #000000;
  transition: background-color 0.3s;
}

.service-nav::after {
  content: "";
  position: absolute;
  top: 2.4375rem;
  left: 2.8125rem;
  z-index: -1;
  width: 36.3125rem;
  aspect-ratio: 581/87;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-blue-02.svg");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .service-nav::after {
    top: 1.75rem;
    left: 2.125rem;
    width: 27.25rem;
  }
}

.service-nav.is-active {
  background-color: #0090ff;
}

.service-nav.is-active::before {
  background-color: #ffffff;
}

.service-nav.is-active::after {
  background-color: #ffffff;
}

.service-nav.is-active .service-nav__en {
  color: #ffffff;
}

.service-nav.is-active .service-nav__ja {
  color: #ffffff;
}

.service-nav.is-active .service-nav__ja::after {
  background-color: #ffffff;
}

.service-nav.is-active .service-nav__ja::before {
  background-color: #0090ff;
}

.service-nav__en {
  display: block;
  font-size: 1.625rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  text-transform: capitalize;
  transition: color 0.3s;
}
@media screen and (max-width: 1023px) {
  .service-nav__en {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .service-nav__en {
    font-size: 1.125rem;
  }
}

.service-nav__ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
  margin-top: 0.4375rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .service-nav__ja {
    font-size: 0.875rem;
  }
}

.service-nav__ja::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-color: #000000;
  transition: background-color 0.3s;
}

.service-nav__ja::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  z-index: 1;
  width: 0.4375rem;
  height: 0.53125rem;
  background-color: #ffffff;
  mask-image: url("../images/common/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(50%, -50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .service-nav:not(.is-active):hover .service-nav__ja {
    color: #0090ff;
  }
}
@media (any-hover: hover) {
  .service-nav:not(.is-active):hover .service-nav__ja::after {
    background-color: #0090ff;
  }
}
.sidebar-sticky {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .sidebar-sticky {
    position: static;
  }
}

.sidebar-sticky__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sidebar-sticky__items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    justify-content: start;
  }
}

.sidebar-sticky__link {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}

.sidebar-sticky__link::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  aspect-ratio: 1;
  border: 1px solid #ffffff;
  transition: border-color 0.3s, background-color 0.3s;
}

@media (any-hover: hover) {
  .sidebar-sticky__link:hover::before {
    border-color: #0090ff;
    background-color: #0090ff;
  }
}
.sidebar-sticky__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  width: 0.4375rem;
  aspect-ratio: 1;
  border-right: 0.125rem solid #ffffff;
  border-bottom: 0.125rem solid #ffffff;
  transform: translateY(-70%) rotate(45deg);
}

.sidebar-sticky__link-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .sidebar-sticky__link-text {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .sidebar-sticky__link:hover .sidebar-sticky__link-text {
    color: #0090ff;
  }
}
.sidebar-sticky__item--active {
  pointer-events: none;
}

.sidebar-sticky__item--active .sidebar-sticky__link-text {
  color: #0090ff;
}

.sidebar-sticky__item--active .sidebar-sticky__link::before {
  border: 1px solid #0090ff;
}

.sidebar-sticky__item--active .sidebar-sticky__link::after {
  border-right: 0.125rem solid #0090ff;
  border-bottom: 0.125rem solid #0090ff;
}

.single-news {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .single-news {
    padding-block: 3.125rem;
  }
}

.single-news__inner {
  max-width: 75rem;
  width: 100%;
}

.single-news__container {
  border: 1px solid #ffffff;
  border-radius: 0.625rem;
  padding-block: 3.125rem;
  padding-inline: clamp(1.563rem, -3.125rem + 5.21vw, 3.125rem);
}
@media screen and (max-width: 767px) {
  .single-news__container {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .single-news__container {
    padding-inline: 0.625rem;
  }
}

.single-news__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
}

.single-news__date {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .single-news__date {
    font-size: max(1rem, 12px);
  }
}

.single-news__categorys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.single-news__category {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.9375rem;
  border-radius: 100vmax;
  border: 1px solid #ffffff;
}

.single-news__category-text {
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-news__category-text {
    font-size: max(0.875rem, 12px);
  }
}

.single-news__title {
  font-size: max(1.5rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .single-news__title {
    font-size: max(1.125rem, 12px);
  }
}

.single-news__main-image {
  max-width: 63.75rem;
  width: 85%;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 414px) {
  .single-news__main-image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .single-news__main-image {
    margin-top: 3.125rem;
    margin-bottom: 3.75rem;
  }
}

.single-news__main-image img {
  aspect-ratio: 1020/680;
  object-fit: cover;
}

.single-news__body {
  padding-block-end: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__body {
    padding-block-end: 3.75rem;
  }
}

.single-news__body h2 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  overflow-wrap: break-word;
  margin-top: 3.125rem;
  padding-block: 0.5rem;
  padding-inline: 0.9375rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .single-news__body h2 {
    font-size: max(1.125rem, 12px);
    margin-top: 2.5rem;
    padding-block: 0.3125rem;
    padding-inline: 0.3125rem;
  }
}

.single-news__body h3 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 3.125rem;
  padding-block-end: 0.3125rem;
  padding-inline: 0.9375rem;
  overflow-wrap: break-word;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .single-news__body h3 {
    font-size: max(1rem, 12px);
    padding-inline: 0.3125rem;
    margin-top: 2.5rem;
  }
}

.single-news__body p {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .single-news__body p {
    font-size: max(1rem, 12px);
  }
}

.single-news__body p:nth-child(n+2) {
  margin-top: 1em;
}

.single-news__body p strong {
  font-weight: 700;
}

.single-news__body p a {
  color: #ffffff;
  overflow-wrap: break-word;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .single-news__body p a:hover {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .single-news__body p a {
    transition: none;
  }
}
.single-news__body > ul {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__body > ul {
    margin-top: 0.625rem;
  }
}

.single-news__body > ul > li {
  position: relative;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 2;
  padding-inline-start: 1em;
}
@media screen and (max-width: 767px) {
  .single-news__body > ul > li {
    font-size: max(1rem, 12px);
  }
}

.single-news__body > ul > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.single-news__body figure {
  display: block;
  max-width: 63.75rem;
  width: 85%;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 414px) {
  .single-news__body figure {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .single-news__body figure {
    margin-top: 3.125rem;
    margin-bottom: 3.75rem;
  }
}

.single-news__body figure img {
  aspect-ratio: 1020/680;
  object-fit: cover;
}

.single-news__body .wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  border: 0;
}

.statement__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .statement__body {
    row-gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.statement__figure {
  grid-area: 1/1;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .statement__figure {
    grid-area: auto;
    max-width: 100%;
  }
}

.statement__img {
  width: 100%;
  aspect-ratio: 500/600;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .statement__img {
    aspect-ratio: 4/3;
  }
}

.statement__message {
  grid-area: 1/1;
  max-width: 44.375rem;
  width: 100%;
  margin-top: 2.375rem;
  margin-left: 29.0625rem;
}
@media screen and (max-width: 1023px) {
  .statement__message {
    margin-left: 21.25rem;
  }
}
@media screen and (max-width: 767px) {
  .statement__message {
    grid-area: auto;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}

.statement__message-img {
  width: 100%;
  height: auto;
}

.statement[data-theme=mission] {
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .statement[data-theme=mission] {
    margin-top: 3.75rem;
  }
}

.statement[data-theme=mission] .section-heading {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .statement[data-theme=mission] .section-heading {
    align-items: flex-start;
  }
}

.statement[data-theme=mission] .statement__body {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .statement[data-theme=mission] .statement__body {
    margin-top: 1.5rem;
  }
}

.statement[data-theme=mission] .statement__figure {
  justify-self: end;
}
@media screen and (max-width: 767px) {
  .statement[data-theme=mission] .statement__figure {
    justify-self: stretch;
  }
}

.statement[data-theme=mission] .statement__message {
  max-width: 42.5625rem;
  margin-top: 5.75rem;
  margin-left: -0.625rem;
}
@media screen and (max-width: 1023px) {
  .statement[data-theme=mission] .statement__message {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .statement[data-theme=mission] .statement__message {
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}

.study-content {
  margin-top: 7.5rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .study-content {
    margin-top: 3.75rem;
  }
}

.study-section + .study-section {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .study-section + .study-section {
    margin-top: 5rem;
  }
}

.study-flow {
  margin-top: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .study-flow {
    margin-top: 2.5rem;
  }
}

.study-flow + .study-tips {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .study-flow + .study-tips {
    margin-top: 2.5rem;
  }
}

.study-flow__item {
  display: grid;
  grid-template-columns: 1.25rem 0.625rem 16.25rem 11.25rem 1.875rem 1.25rem minmax(0, 1fr);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .study-flow__item {
    grid-template-columns: 1.25rem 0.625rem minmax(0, 1fr);
  }
}

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

.study-flow__index {
  grid-column: 1;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}

.study-flow__img {
  grid-column: 3;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .study-flow__img {
    grid-column: 3;
  }
}

.study-flow__num {
  grid-column: 5;
  margin-top: 1.8125rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .study-flow__num {
    display: none;
  }
}

.study-flow__body {
  grid-column: 7;
}
@media screen and (max-width: 767px) {
  .study-flow__body {
    grid-column: 3;
    margin-top: 1.25rem;
  }
}

.study-flow__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1.25rem;
  align-items: start;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .study-flow__head {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
}

.study-flow__name {
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .study-flow__name {
    font-size: 1.375rem;
  }
}

.study-flow__en {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: right;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .study-flow__en {
    display: none;
  }
}

.study-flow__text {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-flow__text {
    font-size: 1rem;
  }
}

.study-heading {
  display: grid;
  grid-template-columns: minmax(0, 450fr) minmax(0, 950fr);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .study-heading {
    grid-template-columns: minmax(0, 1fr);
  }
}

.study-heading__title {
  position: relative;
  isolation: isolate;
  grid-column: 1;
  font-size: 2.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3043478261;
}
@media screen and (max-width: 1023px) {
  .study-heading__title {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .study-heading__title {
    font-size: 1.5rem;
  }
}

.study-heading__mark {
  position: relative;
  isolation: isolate;
  --brush-start: 206deg;
}

.study-heading__mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.31em;
  left: -0.46em;
  width: 3.05em;
  height: 1.5em;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-circle-white.svg"), var(--brush-mask, linear-gradient(#000, #000));
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-composite: intersect;
}

.study-heading[data-theme=type] .study-heading__mark::after {
  top: 0.07em;
  left: 0.04em;
  width: 3.043em;
  height: 1.5em;
  transform: scaleY(1.47);
  transform-origin: center;
}

.study-heading[data-theme=flow] .study-heading__mark::after {
  top: 0.03em;
  left: -0.109em;
  width: 3.26em;
  height: 1.587em;
  transform: scaleY(1.417);
  transform-origin: center;
}

.study-heading[data-theme=number] .study-heading__mark::after {
  top: 0.03em;
  left: -0.152em;
  width: 3.26em;
  height: 1.587em;
  transform: scaleY(1.417);
  transform-origin: center;
}

.study-heading[data-theme=type] .study-heading__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2.303em;
  left: -0.067em;
  width: 5.217em;
  height: 0.666em;
  background-image: url("../images/common/brush-stroke-orange-01.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.study-heading[data-theme=parts] .study-heading__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.848em;
  left: 3.5em;
  width: 4.348em;
  height: 0.652em;
  background-color: #ff733c;
  mask-image: url("../images/common/brush-stroke-blue-03.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.study-heading__lead {
  grid-column: 2;
  margin-top: 0.3125rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-heading__lead {
    grid-column: 1;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.study-number {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.625rem;
  margin-top: 2.625rem;
}
@media screen and (max-width: 1023px) {
  .study-number {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .study-number {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 2rem;
  }
}

.study-number + .study-tips {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .study-number + .study-tips {
    margin-top: 2.5rem;
  }
}

.study-number__item {
  border: 1px solid #707070;
  padding-block: 3.75rem 3.5625rem;
  padding-inline: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .study-number__item {
    padding-block: 2rem;
    padding-inline: 1.5rem;
  }
}

.study-number__item::before {
  content: "";
  display: block;
  width: 8.75rem;
  height: 7.5rem;
  margin-inline: auto;
  background-image: var(--study-number-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .study-number__item::before {
    width: 6.875rem;
    height: 5.875rem;
  }
}

.study-number__value {
  margin-top: 3.5rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-number__value {
    margin-top: 1.5rem;
    font-size: 1.25rem;
  }
}

.study-number__text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-number__text {
    font-size: 1rem;
  }
}

.study-parts {
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .study-parts {
    margin-top: 1.5rem;
  }
}

.study-parts + .study-tips {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .study-parts + .study-tips {
    margin-top: 2.5rem;
  }
}

.study-parts__img {
  display: block;
  max-width: 56.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 900/928;
  margin-inline: auto;
}

.study-parts__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .study-parts__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 1.875rem;
    margin-top: 2rem;
  }
}

.study-parts__item {
  display: grid;
  grid-template-columns: 1.875rem 1.25rem minmax(0, 1fr);
  align-items: start;
}

.study-parts__item + .study-parts__item {
  margin-top: 1.0625rem;
}

.study-parts__num {
  grid-row: 1;
  grid-column: 1;
  margin-top: 0.8125rem;
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  text-align: right;
}

.study-parts__name {
  grid-row: 1;
  grid-column: 3;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .study-parts__name {
    font-size: 1.125rem;
  }
}

.study-parts__text {
  grid-row: 2;
  grid-column: 3;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-parts__text {
    font-size: 0.875rem;
  }
}

.study-reason__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.46875rem;
}
@media screen and (max-width: 767px) {
  .study-reason__items {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.study-reason__item {
  border-block-start: 0.3125rem solid #ffffff;
  padding-block-start: 3.59375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .study-reason__item {
    padding-block-start: 1.875rem;
  }
}

.study-reason__item:nth-child(2) {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .study-reason__item:nth-child(2) {
    margin-top: 0;
  }
}

.study-reason__item:nth-child(3) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .study-reason__item:nth-child(3) {
    margin-top: 0;
  }
}

.study-reason__item::before {
  content: "";
  display: block;
  width: 8.75rem;
  height: 7.5rem;
  margin-inline: auto;
  background-image: var(--study-reason-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .study-reason__item::before {
    width: 6.25rem;
    height: 5.375rem;
  }
}

.study-reason__name {
  margin-top: 3.3125rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-reason__name {
    margin-top: 1.5rem;
    font-size: 1.25rem;
  }
}

.study-reason__text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-reason__text {
    font-size: 1rem;
  }
}

.study-tips {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .study-tips {
    margin-top: 2.5rem;
  }
}

.study-tips__label {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  width: 10rem;
  padding-block: 0.3125rem;
  padding-inline-start: 1.25rem;
  background-color: #161616;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-tips__label {
    width: 8.75rem;
    padding-inline-start: 1rem;
    font-size: 1.125rem;
  }
}

.study-tips__label::before {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.9375rem;
  background-image: url("../images/study/icon-light-bulb.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .study-tips__label::before {
    width: 1.25rem;
    height: 1.625rem;
  }
}

.study-tips__body {
  padding-block: 2.0625rem 2.6875rem;
  padding-inline: 3.4375rem;
  background-color: #161616;
}
@media screen and (max-width: 767px) {
  .study-tips__body {
    padding-block: 1.5rem 1.5rem;
    padding-inline: 1.25rem;
  }
}

.study-tips__item {
  position: relative;
  padding-inline-start: 2.125rem;
}
@media screen and (max-width: 767px) {
  .study-tips__item {
    padding-inline-start: 1.75rem;
  }
}

.study-tips__item::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 1.5rem;
  height: 1.25rem;
  background-image: url("../images/study/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .study-tips__item::before {
    top: 0.375rem;
    width: 1.25rem;
    height: 1.0625rem;
  }
}

.study-tips__item + .study-tips__item {
  margin-top: 1.3125rem;
  border-block-start: 1px solid #707070;
  padding-block-start: 0.875rem;
}
@media screen and (max-width: 767px) {
  .study-tips__item + .study-tips__item {
    margin-top: 1rem;
    padding-block-start: 1rem;
  }
}

.study-tips__item + .study-tips__item::before {
  top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .study-tips__item + .study-tips__item::before {
    top: 1.4375rem;
  }
}

.study-tips__title {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-tips__title {
    font-size: 1.0625rem;
  }
}

.study-tips__text {
  margin-top: 0.125rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-tips__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

.study-type {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 3.75rem;
  align-items: start;
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .study-type {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    margin-top: 2.5rem;
  }
}

.study-type + .study-tips {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .study-type + .study-tips {
    margin-top: 2.5rem;
  }
}

.study-type__label {
  grid-column: 1;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .study-type__label {
    display: none;
  }
}

.study-type__items {
  position: relative;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .study-type__items {
    grid-column: 1;
  }
}

.study-type__items::before {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0 -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .study-type__items::before {
    inset-inline: 0;
  }
}

.study-type__items::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 25rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .study-type__items::after {
    width: 12.5rem;
  }
}

.study-type__item {
  position: relative;
  display: grid;
  grid-template-columns: 25rem minmax(0, 1fr);
  column-gap: 2.5rem;
  align-items: start;
  padding-block: 4rem 3.825rem;
}
@media screen and (max-width: 767px) {
  .study-type__item {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    padding-block: 1.875rem 1.875rem;
  }
}

.study-type__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0 -16.25rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .study-type__item::before {
    inset-inline: 0;
  }
}

.study-type__item::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 25rem;
  height: 0.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .study-type__item::after {
    width: 12.5rem;
  }
}

.study-type__img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/220;
  object-fit: cover;
}

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

.study-type__num {
  font-size: 0.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}

.study-type__name {
  margin-top: 1.0625rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-type__name {
    font-size: 1.25rem;
  }
}

.study-type__text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .study-type__text {
    font-size: 1rem;
  }
}

button.swiper-button-prev,
button.swiper-button-next {
  position: static;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #ffffff;
  border-radius: 100vmax;
  margin-top: 0;
  padding: 0;
  background-color: #ffffff;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  button.swiper-button-prev,
  button.swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next .swiper-navigation-icon {
  display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transition: all 0.3s;
}

.swiper-button-prev::after {
  transform: translateX(0.125rem) rotate(-135deg);
}

.swiper-button-next::after {
  transform: translateX(-0.125rem) rotate(45deg);
}

@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    border-color: #0090ff;
    background-color: #0090ff;
  }
  .swiper-button-prev:hover::after,
  .swiper-button-next:hover::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 0px;
  position: static;
  display: flex;
  align-items: center;
  column-gap: 0;
  transform: none;
}

.swiper-pagination.swiper-pagination-bullets {
  width: auto;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 2.5rem;
  height: 0.125rem;
  border-radius: 0;
  margin: 0;
  background-color: #707070;
  opacity: 1;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 1.5rem;
  }
}

@media (any-hover: hover) {
  .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #ffffff;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
  pointer-events: none;
}

.tab__list-btn[aria-selected=true] {
  pointer-events: none;
}

.tab__panel-items {
  position: relative;
  display: grid;
}
@media screen and (max-width: 767px) {
  .tab__panel-items {
    margin-top: 1.875rem;
  }
}

.tab__panel-item {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tab__panel-item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.top-about {
  position: relative;
  container-type: inline-size;
  padding-block: 9.6875rem 12.0625rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-block: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .top-about__inner.inner {
    max-width: 25rem;
  }
}

.top-about__lead {
  position: relative;
  isolation: isolate;
  font-size: clamp(2.5rem, 0.625rem + 2.08vw, 3.125rem); /* 40 ~ 50 | 1440 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-about__lead {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .top-about__lead br {
    display: none;
  }
}
.top-about__lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -1.14em;
  left: -5.6em;
  width: 10.8em;
  aspect-ratio: 540/70;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-orange-01.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.top-about__lead-mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.top-about__lead-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.02em;
  left: -0.2em;
  width: 6em;
  aspect-ratio: 300/100;
  background-image: url("../images/common/brush-stroke-circle-orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-about__body {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr) minmax(0, 600fr) minmax(0, 120fr) minmax(0, 580fr);
  align-items: start;
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__body {
    grid-template-columns: 1fr;
    margin-top: 3.75rem;
  }
}

.top-about__label {
  grid-column: 1;
  margin-top: 0.5625rem;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top-about__label {
    display: none;
  }
}

.top-about__texts {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .top-about__texts {
    grid-column: 1;
    grid-row: 3;
    margin-top: 3.75rem;
    row-gap: 1.5rem;
  }
}

.top-about__text {
  font-size: min(1.875rem, (100cqi - 5rem) * 0.0214286);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 1rem;
  }
}

.top-about__figure {
  position: relative;
  grid-column: 5;
  width: 151.724%;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .top-about__figure {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin-top: 2.5rem;
  }
}

.top-about__img {
  aspect-ratio: 880/661;
}

.top-about__logo {
  position: absolute;
  isolation: isolate;
  top: 86.234%;
  left: -4.545%;
  font-size: min(3.75rem, (100cqi - 5rem) * 0.0428571);
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ff733c;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .top-about__logo {
    left: 0;
    font-size: 2rem;
  }
}

.top-about__logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.8333em;
  left: 3.5167em;
  width: 4em;
  aspect-ratio: 240/80;
  background-image: url("../images/common/brush-stroke-circle-orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-company {
  container-type: inline-size;
  padding-block: 10.3125rem 10.625rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding-block: 5rem;
  }
}

.top-company__lead {
  position: relative;
  isolation: isolate;
  font-size: clamp(2.5rem, 0.625rem + 2.08vw, 3.125rem); /* 40 ~ 50 | 1440 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-company__lead {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .top-company__lead br {
    display: none;
  }
}
.top-company__lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.82em;
  left: 15.2em;
  width: 18.8em;
  aspect-ratio: 940/120;
  background-image: url("../images/common/brush-stroke-orange-01.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top-company__lead-mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.top-company__lead-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -0.12em;
  left: -0.88em;
  width: 6em;
  aspect-ratio: 300/100;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-circle-orange.svg"), var(--brush-mask, linear-gradient(#000, #000));
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-composite: intersect;
}

.top-company__body {
  display: grid;
  grid-template-columns: minmax(0, 50fr) minmax(0, 60fr) minmax(0, 1290fr);
  align-items: start;
  margin-top: 11.0625rem;
}
@media screen and (max-width: 767px) {
  .top-company__body {
    grid-template-columns: 1fr;
    margin-top: 3.75rem;
  }
}

.top-company__label {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.25rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1.2;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top-company__label {
    display: none;
  }
}

.top-company__items {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1;
  row-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__items {
    grid-column: 1;
    row-gap: 3.75rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-company__item {
  display: grid;
  grid-template-columns: minmax(0, 480fr) minmax(0, 80fr) minmax(0, 730fr);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .top-company__item {
    grid-template-columns: 1fr;
  }
}

.top-company__item[data-theme=reverse] {
  grid-template-columns: minmax(0, 730fr) minmax(0, 60fr) minmax(0, 480fr) minmax(0, 20fr);
}
@media screen and (max-width: 767px) {
  .top-company__item[data-theme=reverse] {
    grid-template-columns: 1fr;
  }
}

.top-company__figure {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .top-company__figure {
    grid-column: 1;
    grid-row: 2;
    margin-top: 1.5rem;
  }
}

.top-company__item[data-theme=reverse] .top-company__figure {
  grid-column: 3;
}
@media screen and (max-width: 767px) {
  .top-company__item[data-theme=reverse] .top-company__figure {
    grid-column: 1;
  }
}

.top-company__img {
  max-width: 30rem;
  width: 100%;
  aspect-ratio: 480/300;
  object-fit: cover;
}

.top-company__figure::after {
  content: "";
  position: absolute;
  top: 86.667%;
  left: 41.667%;
  width: 62.5%;
  aspect-ratio: 300/50;
  background-image: url("../images/common/brush-stroke-orange-02.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top-company__item[data-theme=reverse] .top-company__figure::after {
  background-image: url("../images/common/brush-stroke-blue-02.svg");
}

.top-company__content {
  position: relative;
  grid-column: 3;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .top-company__content {
    grid-column: 1;
    grid-row: 1;
  }
}

.top-company__item[data-theme=reverse] .top-company__content {
  grid-column: 1;
}

.top-company__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 49.315%;
  height: 1.25rem;
  background-color: #ffffff;
}

.top-company__content::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 0;
  width: 50.685%;
  height: 0.625rem;
  background-color: #ffffff;
}

.top-company__content .top-heading {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .top-company__content .top-heading {
    margin-top: 1.875rem;
  }
}

.top-company__text {
  max-width: 43.75rem;
  width: 100%;
  margin-top: -1rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .top-company__text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.top-company__btn-wrapper {
  display: flex;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .top-company__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.top-company__logo {
  position: relative;
  isolation: isolate;
  grid-column: 3;
  grid-row: 2;
  margin-top: 3.25rem;
  font-size: 3.75rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .top-company__logo {
    grid-column: 1;
    grid-row: auto;
    margin-top: 2.5rem;
    font-size: 2rem;
  }
}

.top-company__logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.8167em;
  left: 3.5167em;
  width: 3.9833em;
  aspect-ratio: 239/80;
  background-color: #ffffff;
  mask-image: url("../images/common/brush-stroke-circle-orange.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.top-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 495fr) minmax(0, 285fr) minmax(0, 620fr);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .top-heading {
    grid-template-columns: 1fr;
  }
}

.top-heading::before {
  content: "";
  position: absolute;
  top: 5.625rem;
  left: -10rem;
  width: 62.5rem;
  aspect-ratio: 1000/120;
  background-color: #0090ff;
  mask-image: url("../images/common/brush-stroke-orange-01.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top-heading::before {
    top: 2.5rem;
    left: -2.5rem;
    width: 25rem;
  }
}

.top-heading[data-theme=lead] {
  grid-template-columns: minmax(0, 600fr) minmax(0, 180fr) minmax(0, 620fr);
}
@media screen and (max-width: 767px) {
  .top-heading[data-theme=lead] {
    grid-template-columns: 1fr;
  }
}

.top-heading[data-theme=lead]::before {
  top: 3.75rem;
  left: 56.25rem;
}
@media screen and (max-width: 767px) {
  .top-heading[data-theme=lead]::before {
    top: 2.5rem;
    left: -2.5rem;
    width: 25rem;
  }
}

.top-heading[data-theme=lead] .top-heading__en,
.top-heading[data-theme=lead] .top-heading__ja,
.top-heading[data-theme=lead] .top-heading__lead {
  color: #ffffff;
}

.top-heading[data-theme=lead] .top-heading__lead {
  margin-top: 0.8125rem;
}

.top-heading[data-theme=topics] {
  grid-template-columns: minmax(0, 1fr);
}

.top-heading[data-theme=topics]::before {
  top: 1.5rem;
  left: -22.5rem;
}
@media screen and (max-width: 767px) {
  .top-heading[data-theme=topics]::before {
    top: 2.5rem;
    left: -2.5rem;
    width: 25rem;
  }
}

.top-heading[data-theme=topics] .top-heading__title {
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-heading[data-theme=topics] .top-heading__title {
    column-gap: 0;
  }
}

.top-heading[data-theme=topics] .top-heading__en,
.top-heading[data-theme=topics] .top-heading__ja {
  color: #ffffff;
}

.top-heading[data-theme=contents] {
  grid-template-columns: minmax(0, 1fr);
}

.top-heading[data-theme=contents]::before {
  content: none;
}

.top-heading[data-theme=contents] .top-heading__en,
.top-heading[data-theme=contents] .top-heading__ja {
  color: #ffffff;
}

.top-heading__title {
  position: relative;
  display: flex;
  grid-column: 1;
  align-items: flex-start;
  column-gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .top-heading__title {
    flex-direction: column;
    column-gap: 0;
  }
}

.top-heading__en {
  font-size: clamp(5.625rem, 6.25vw, 7.5rem); /* 90 ~ 120 | 1440 ~ 1920 */
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  text-transform: capitalize;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .top-heading__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-heading__en {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.top-heading__ja {
  margin-top: 4.65rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.26;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-heading__ja {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}

.top-heading__lead {
  position: relative;
  grid-column: 3;
  margin-top: 1.5rem;
  font-size: 3.125rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .top-heading__lead {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-heading__lead {
    grid-column: 1;
    margin-top: 1.5rem;
    font-size: 1.375rem;
  }
}

.top-recruit {
  position: relative;
  padding-block: 2.5rem 10rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    padding-block: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-recruit::before {
    content: "";
    position: absolute;
    inset: 0 0 4.0625rem 0;
    background-color: #ffffff;
    z-index: -1;
  }
}

.top-recruit__band {
  position: relative;
  min-height: 37.5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-recruit__band {
    min-height: 0;
    overflow: hidden;
    background-color: transparent;
  }
}

.top-recruit__band::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 18.875rem;
  aspect-ratio: 302/680;
  background-image: image-set(url("../images/top/recruit-ks.avif") type("image/avif"), url("../images/top/recruit-ks.webp") type("image/webp"));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top-recruit__band::before {
    left: auto;
    right: calc(50% + 6.75rem);
    top: auto;
    bottom: 0;
    width: 5rem;
  }
}

.top-recruit__band::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33.125rem;
  aspect-ratio: 530/600;
  background-image: image-set(url("../images/top/recruit-high.avif") type("image/avif"), url("../images/top/recruit-high.webp") type("image/webp"));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top-recruit__band::after {
    left: calc(50% + 2.9375rem);
    right: auto;
    top: auto;
    bottom: 0;
    width: 8.75rem;
  }
}

.top-recruit__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 650fr) minmax(0, 750fr);
  align-items: start;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-recruit__inner {
    grid-template-columns: 1fr;
  }
}

.top-recruit__inner .top-recruit__chara {
  position: absolute;
  top: -2.5rem;
  left: 2.5rem;
  z-index: 2;
  width: 36.5540540541%;
  aspect-ratio: 541/800;
}
@media screen and (max-width: 767px) {
  .top-recruit__inner .top-recruit__chara {
    position: static;
    grid-column: 1;
    grid-row: 2;
    max-width: 15rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-recruit__chara-img {
  width: 100%;
  height: auto;
  aspect-ratio: 541/800;
  object-fit: contain;
}

.top-recruit__body {
  grid-column: 2;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__body {
    grid-column: 1;
    grid-row: 1;
    padding-block: 2.5rem 1.5rem;
  }
}

.top-recruit__heading {
  max-width: 47.5rem;
  width: calc(100% + 0.625rem);
  margin-inline-start: -0.625rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__heading {
    width: 100%;
    margin-inline-start: 0;
  }
}

.top-recruit__heading-glitch {
  display: block;
  overflow: visible;
}

.top-recruit__heading-img {
  width: 100%;
  aspect-ratio: 760/210;
  object-fit: contain;
}

.top-recruit__text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.625;
  letter-spacing: 0.02em;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__text {
    text-align: center;
    margin-top: 1.5rem;
  }
}

.top-recruit__btn-wrapper {
  display: flex;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__btn-wrapper {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

.top-service {
  position: relative;
  padding-block: 0 6.25rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-block: 0 3.75rem;
  }
}

.top-service__slider.swiper {
  margin-top: 7.5rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .top-service__slider.swiper {
    margin-top: 3.75rem;
  }
}

.top-service__slider .top-service__slide.swiper-slide {
  transform: scale(0.8519);
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .top-service__slider .top-service__slide.swiper-slide {
    max-width: 20.9375rem;
    width: 100%;
  }
}

.top-service__slider .top-service__slide.swiper-slide-prev {
  transform-origin: right center;
}

.top-service__slider .top-service__slide.swiper-slide-next {
  transform-origin: left center;
}

.top-service__slider .top-service__slide.swiper-slide-active {
  transform: scale(1);
}

.top-service__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0.625rem;
  max-width: 77.5rem;
  width: 100%;
  margin-top: -2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top-service__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.625rem;
    margin-top: 1.5rem;
  }
}

.top-service__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-service__btn-wrapper {
    margin-top: 2.5rem;
  }
}

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

.top-topics__tab {
  margin-top: 1.5625rem;
}

.top-topics__tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-topics__tab-list {
    grid-template-columns: 1fr;
    max-width: 18.75rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-topics__tab-btn {
  display: grid;
  place-items: center;
  min-height: 3.125rem;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 1.125rem 1.125rem 0 0;
  background-color: #000000;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-topics__tab-btn {
    min-height: 2.75rem;
  }
}

.top-topics__tab-btn[aria-selected=true] {
  color: #000000;
  background-color: #ffffff;
}

@media (any-hover: hover) {
  .top-topics__tab-btn:not([aria-selected=true]):hover {
    color: #000000;
    background-color: #ffffff;
  }
}
.top-topics__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-topics__btn-wrapper {
    margin-top: 2.5rem;
  }
}

.top-works {
  overflow-x: clip;
}

.top-works__main {
  padding-block: 5.875rem 5.625rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-works__main {
    padding-block: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .top-works__cards-wrapper {
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-works__cards {
  display: grid;
  grid-template-columns: minmax(0, 1320fr) minmax(0, 40fr);
  align-items: start;
  column-gap: 2.5rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-works__cards {
    grid-template-columns: 1fr;
    column-gap: 0;
    margin-top: 2.5rem;
  }
}

.top-works__label {
  grid-column: 2;
  font-size: 1.125rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #707070;
  line-height: 1;
  text-transform: capitalize;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top-works__label {
    display: none;
  }
}

.top-works__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-works__btn-wrapper {
    margin-top: 2.5rem;
  }
}

.top-works__heartbeat {
  position: relative;
  height: 37.5rem;
  background-image: image-set(url("../images/top/feature-bg.avif") type("image/avif"), url("../images/top/feature-bg.webp") type("image/webp"));
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-works__heartbeat {
    height: 18.75rem;
  }
}

.top-works__heartbeat-logo {
  position: absolute;
  isolation: isolate;
  top: 7.3125rem;
  left: 52.2%;
  font-size: 5.5rem;
  font-family: "Space Grotesk", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ff733c;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .top-works__heartbeat-logo {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-works__heartbeat-logo {
    top: 3.75rem;
    left: 8%;
    font-size: 2.25rem;
  }
}

.top-works__heartbeat-logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.7727em;
  left: 3.2614em;
  width: 4.2273em;
  aspect-ratio: 372/124;
  background-image: url("../images/common/brush-stroke-circle-orange.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.topics-archive {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .topics-archive {
    margin-top: 3.75rem;
  }
}

.topics-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .topics-archive__pagination {
    margin-top: 3.125rem;
  }
}

.two-column {
  display: grid;
  grid-template-columns: 14.375rem 1fr;
  column-gap: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .two-column {
    grid-template-columns: 11.25rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .two-column {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.two-column[data-theme=works] {
  grid-template-columns: 15rem 1fr;
}
@media screen and (max-width: 1023px) {
  .two-column[data-theme=works] {
    grid-template-columns: 11.25rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .two-column[data-theme=works] {
    grid-template-columns: 1fr;
  }
}

.two-column__main {
  max-width: 71.875rem;
  width: 100%;
}

.works-archive {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .works-archive {
    margin-top: 3.75rem;
  }
}

.works-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .works-archive__pagination {
    margin-top: 3.125rem;
  }
}

.works-single {
  margin-top: 3.75rem;
}

.works-single__meta {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  color: #ffffff;
}

.works-single__title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.28;
}

.works-single__image {
  max-width: 33.75rem;
  width: 100%;
  margin-top: 1.875rem;
}

.works-single__image img {
  width: 100%;
  height: auto;
}

.works-single__body {
  margin-top: 1.875rem;
  color: #ffffff;
}

.works-single__back {
  margin-top: 2.5rem;
}

.works-single__back a {
  color: #ffffff;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .works-single__back a:hover {
    text-decoration: underline;
    opacity: 0.6;
  }
}
.works-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .works-card-list {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.works-card-list__item:nth-child(2) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .works-card-list__item:nth-child(2) {
    margin-top: 0;
  }
}

.works-card-list__item:nth-child(3) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .works-card-list__item:nth-child(3) {
    margin-top: 0;
  }
}

.works-card {
  position: relative;
  display: block;
  padding-block-start: 3.75rem;
  padding-inline: 1.25rem 2.5rem;
}

.works-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background-color: #000000;
}

.works-card__category {
  display: flex;
}

.works-card__category-text {
  display: inline-block;
  padding-inline: 1.25rem;
  padding-block: 0.4375rem;
  border: 1px solid #000000;
  border-radius: 1.5rem;
  background-color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
}

.works-card__title {
  margin-top: 0.375rem;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.28;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works-card__title {
    font-size: 1.375rem;
  }
}

.works-card__foot {
  width: 100%;
  margin-top: 2.5rem;
}

.works-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.75rem;
  row-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .works-list {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.works-list__category {
  display: flex;
}

.works-list__category-text {
  display: inline-block;
  padding-inline: 1.25rem;
  padding-block: 0.4375rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
}

.works-list__title {
  margin-top: 0.375rem;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", yugothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.28;
  white-space: normal; /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works-list__title {
    font-size: 1.375rem;
  }
}

.works-list__image {
  margin-top: 1.3125rem;
}

.works-list__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}