@charset "UTF-8";
/* --------------------------------------------------------------------------------
   リセットCSS
   --------------------------------------------------------------------------------
     - マージン、パディング、ボーダーはすべて0
     - フォントサイズは 16px（1.6rem） に揃える
     - 見出し、em、strong、b、th は太字にする
     - テーブルはボーダーあり
     - など
   --------------------------------------------------------------------------------
   ＜補足＞
     - Meyresweb CSS Reset に一部 Normalize.css を足した感じ
     - Meyersweb CSS Reset : https://meyerweb.com/eric/tools/css/reset/
     - Normalize.css: https://necolas.github.io/normalize.css/
----------------------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  border: 0;
}

html {
  text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 62.5%; /* rootフォントサイズを10pxにする（16px * 62.55 = 10px） */
}

*,
::before,
::after {
  box-sizing: inherit;
  font-feature-settings: "palt";
  vertical-align: inherit;
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Verdana, sans-serif;
  font-size: 1.6em; /* 16px（body で rem ではなく em を使うのはChromeのバグ対策） */
  line-height: 2;
  overflow-wrap: break-word;
  /* スマホを横向きにしたとき等に文字サイズを自動調整しない（CSSの指定どおり） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: top;
  backface-visibility: hidden; /* Chromeで画像がぼやける現象を回避 */
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  font-weight: bold;
}

b,
em,
strong {
  font-style: normal;
  font-weight: bold;
}

small {
  font-size: 80%;
}

/* sub, sup が行間に影響を及ぼすのを防ぐ */
sub,
sup {
  position: relative;
  margin-right: 0.3em;
  margin-left: 0.3em;
  font-size: 77%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  border-top: 1px solid #ccc;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
}

/* アンカー */
a {
  color: #03c;
}

a:visited {
  color: #60a;
}

a:hover {
  color: #f00;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: none;
}

/* テーブル */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
td {
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
}

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

thead th {
  text-align: center;
  background-color: #dee2e6;
}

tbody th {
  background-color: #f9f9f9;
}

/* フォーム */
[disabled] {
  cursor: default;
}

button,
input,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: 100%;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  padding: 0;
  appearance: auto;
  cursor: pointer;
  background: none;
  border: 0;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  /* Firefox で button 要素に CSS で消せない padding と border がつくのを消す (normalize.css) */
  border-style: none;
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  /* 上で消したボーダーを outline として表示 */
  outline: 1px dotted ButtonText;
}

textarea {
  display: block;
  overflow: auto;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
}

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}

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

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

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

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

progress {
  /* Chrome, Firefox, Opera における調整 */
  vertical-align: baseline;
}

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

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

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

/* 画像リンクのホバー効果 */
a:hover img {
  opacity: 0.9;
}

/* アクセシビリティ */
[aria-busy=true] {
  /* Specify the progress cursor of updating elements */
  cursor: progress;
}

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

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

@font-face {
  font-family: YuGothic;
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: YuGothic;
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
html,
body {
  font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------------------------
   ベースのスタイル
   --------------------------------------------------------------------------------
    - 要素セレクタの初期値を定義
    - リセットCSSを上書きするイメージ
----------------------------------------------------------------------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
}

body {
  position: relative;
  min-width: 1300px;
  user-select: none; /* 標準的なプロパティ */
}
@media screen and (width <= 768px) {
  body {
    min-width: initial;
  }
}
body.active {
  overflow: hidden;
}
body > * {
  flex-shrink: 0;
}
body.no-scroll {
  overflow: hidden;
}
body.has-modal {
  overflow: hidden;
}

a:hover {
  color: initial;
  opacity: 0.6;
}

.l-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0 8px 32px;
}
.l-breadcrumb a {
  min-width: 45px;
  font-size: 16px;
  color: #6B7280;
}
.l-breadcrumb a:hover {
  text-decoration: underline;
}
.l-breadcrumb .l-breadcrumb-arrow {
  position: relative;
  display: block;
  width: 28px;
  height: 1em;
}
.l-breadcrumb .l-breadcrumb-arrow::before, .l-breadcrumb .l-breadcrumb-arrow::after {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 8px;
  height: 2px;
  content: "";
  background-color: #9CA3AF;
}
.l-breadcrumb .l-breadcrumb-arrow::before {
  transform: translateY(-50%) translateX(50%) rotate(-45deg);
  transform-origin: right center;
}
.l-breadcrumb .l-breadcrumb-arrow::after {
  transform: translateY(-50%) translateX(50%) rotate(45deg);
  transform-origin: right center;
}
.l-breadcrumb p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  color: #111827;
}
@media screen and (width <= 768px) {
  .l-breadcrumb {
    gap: 6px;
    padding: 6px 16px;
  }
  .l-breadcrumb a {
    font-size: 14px;
  }
  .l-breadcrumb p {
    font-size: 14px;
  }
}

.business-info-kv {
  position: relative;
  height: 400px;
  background: url("../images/business-info/business-kv.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.business-info-kv::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/visual-deco.svg") no-repeat;
}
.business-info-kv-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.business-info-kv-inner h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.business-info-kv-inner .business-info-caption {
  font-size: 24px;
  line-height: 150%;
  color: #fff;
}
.business-info-kv-inner .business-info-caption br {
  display: none;
}
.business-info-link {
  padding: 96px;
}
.business-info-link .link-list {
  box-sizing: border-box;
  display: flex;
  gap: 4%;
  justify-content: center;
  max-width: 1248px;
  margin: auto;
}
.business-info-link .link-list .link-item {
  display: flex;
  width: 25%;
  max-width: 276px;
}
.business-info-link .link-list .link-item a {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15.5%;
  background: #F2F2F2;
  border-radius: 20px;
  transition: opacity 0.2s;
}
.business-info-link .link-list .link-item a:hover {
  color: #111827;
  opacity: 0.8;
}
.business-info-link .link-list .link-item a .link-item-icon {
  max-width: 72px;
}
.business-info-link .link-list .link-item a .job-name {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #111827;
}
.business-info-jobs {
  display: flex;
  flex-direction: column;
  background: #F9FAFB;
}
.business-info-jobs .job-type-info {
  padding: 96px;
  background: #F9FAFB;
}
.business-info-jobs .job-type-info.even {
  background: #FFF;
}
.business-info-jobs .job-type-info .service-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.business-info-jobs .job-type-info .service-inner .job-overview {
  display: flex;
  gap: 32px;
  max-width: 1248px;
  margin: auto;
}
.business-info-jobs .job-type-info .service-inner .job-overview.is-reverse {
  flex-direction: row-reverse;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-img {
  overflow: hidden;
  border-radius: 24px 4px;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 608px;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd img {
  width: 48px;
  height: 48px;
  margin-top: 4px;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  color: #111827;
}
.business-info-jobs .job-type-info .service-inner .job-overview .job-desc .text {
  font-size: 20px;
  line-height: 150%;
  color: #000;
}
.business-info-jobs .job-type-info .service-inner .duties {
  max-width: 1248px;
  padding: 48px;
  margin: auto;
  background: #FFF;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.business-info-jobs .job-type-info .service-inner .duties ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.business-info-jobs .job-type-info .service-inner .duties ul li .hd {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 150%;
  color: #000;
}
.business-info-jobs .job-type-info .service-inner .duties ul li .text {
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
@media screen and (width <= 768px) {
  .business-info-kv {
    background: url("../images/business-info/business-kv-sp.png") no-repeat;
    background-size: cover;
  }
  .business-info-kv::before {
    width: 200px;
    height: 200px;
    background: url("../images/common/visual-deco-sp.svg") no-repeat;
  }
  .business-info-kv-inner .business-info-caption {
    text-align: center;
  }
  .business-info-kv-inner .business-info-caption br {
    display: block;
  }
  .business-info-link {
    padding: 60px 16px;
  }
  .business-info-link .link-list {
    flex-wrap: wrap;
    gap: 8px;
  }
  .business-info-link .link-list .link-item {
    flex-wrap: wrap;
    width: 48%;
  }
  .business-info-link .link-list .link-item a {
    gap: 8px;
    padding: 12px;
  }
  .business-info-link .link-list .link-item a .job-name {
    flex: 1;
    font-size: 14px;
  }
  .business-info-jobs .job-type-info {
    padding: 60px 16px;
  }
  .business-info-jobs .job-type-info .service-inner {
    gap: 16px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview {
    flex-direction: column-reverse;
    width: 100%;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview.is-reverse {
    flex-direction: column-reverse;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc {
    gap: 16px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd {
    align-items: center;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd img {
    width: 48px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc .job-desc-hd h2 {
    font-size: 24px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc .text {
    font-size: 16px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-desc .task-list li {
    font-size: 16px;
  }
  .business-info-jobs .job-type-info .service-inner .job-overview .job-img img {
    width: 100%;
  }
  .business-info-jobs .job-type-info .service-inner .duties {
    padding: 24px 16px;
  }
  .business-info-jobs .job-type-info .service-inner .duties ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .business-info-jobs .job-type-info .service-inner .duties ul li .hd {
    font-size: 18px;
  }
  .business-info-jobs .job-type-info .service-inner .duties ul li .text {
    font-size: 16px;
  }
}

.company-info-kv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  margin-bottom: 96px;
  background: url("../images/company-info/company-kv.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.company-info-kv::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/visual-deco.svg") no-repeat;
}
.company-info-kv h1 {
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.company-info-kv .company-info-kv-caption {
  font-size: 24px;
  line-height: 150%;
  color: #fff;
}
.company-info-kv .company-info-kv-caption br {
  display: none;
}
.company-info-caption {
  padding: 0 96px;
}
.company-info-caption-inner p {
  padding: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #1746ff;
  text-align: center;
  border: 1px solid #1746ff;
}
.company-info-links {
  padding: 96px;
}
.company-info-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.company-info-links ul li {
  width: 168px;
}
.company-info-links ul li a {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: #F9F9F9;
}
.company-info-links ul li a span {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #111827;
  white-space: nowrap;
}
.company-info-vision {
  padding: 96px;
  background: url("../images/company-info/section-bg.png") no-repeat;
  background-size: cover;
}
.company-info-vision .vision-hd {
  margin-bottom: 48px;
  color: #fff;
}
.company-info-vision .vision-hd h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
}
.company-info-vision .category-box {
  margin-bottom: 28px;
}
.company-info-vision .category-box:last-child {
  margin-bottom: 0;
}
.company-info-vision .category-box.vision-category-1 dl {
  border-radius: 32px 32px 4px 4px;
}
.company-info-vision .category-box.vision-category-2 dl {
  border-radius: 4px;
}
.company-info-vision .category-box.vision-category-3 dl {
  border-radius: 4px 4px 32px 32px;
}
.company-info-vision .category-box.vision-category-3 dl dt, .company-info-vision .category-box.vision-category-3 dl dd {
  border-bottom: none;
}
.company-info-vision .category-box .category-hd {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.company-info-vision .category-box dl {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
}
.company-info-vision .category-box dl dt, .company-info-vision .category-box dl dd {
  border-bottom: 1px solid #1746FF;
}
.company-info-vision .category-box dl dt {
  display: flex;
  flex-direction: column;
  padding: 16px 17px 16px 14px;
  color: #000000;
  background: #fff;
  border-right: 1px solid #1746FF;
}
.company-info-vision .category-box dl dt .hd {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  word-break: break-all;
  overflow-wrap: break-word;
}
.company-info-vision .category-box dl dt .sub {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.company-info-vision .category-box dl dd {
  padding: 15px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  color: #1746FF;
  text-align: center;
  background: #fff;
}
.company-info-vision .category-box dl dd .sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.company-info-vision .category-box dl dd.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-info-vision .category-box dl dd.multiple {
  display: flex;
  align-items: center;
  padding: 0;
}
.company-info-vision .category-box dl dd.multiple .dd-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  height: 100%;
  padding: 20px;
  font-size: 20px;
  color: #000;
  background: #E7ECFF;
}
.company-info-vision .category-box dl dd.multiple .dd-box:nth-child(even) {
  color: #000;
  background: #fff;
}
.company-info-vision .category-box dl dd.multiple .dd-box .sub {
  font-size: 14px;
  line-height: 150%;
}
.company-info-overview {
  position: relative;
  padding: 96px;
  background-image: url("../images/common/curve_top.svg"), url("../images/common/curve_bottom.svg");
  background-repeat: no-repeat;
  background-position: top left, bottom -10px right -10px;
  background-size: 300px;
}
.company-info-overview-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.company-info-overview .company-info-overview-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px;
  border: 1px solid #DDD;
  border-radius: 24px;
}
.company-info-overview .company-info-overview-item h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  color: #111827;
}
.company-info-overview .company-info-overview-item dl {
  display: grid;
  grid-template-columns: 25% 1fr;
  border-top: 1px solid #DDD;
}
.company-info-overview .company-info-overview-item dl dt, .company-info-overview .company-info-overview-item dl dd {
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
.company-info-overview .company-info-overview-item dl dt.no-border, .company-info-overview .company-info-overview-item dl dd.no-border {
  border-bottom: none;
}
.company-info-overview .company-info-overview-item dl dt {
  color: #4B5563;
}
.company-info-overview .company-info-overview-item dl dd {
  font-weight: bold;
  color: #111827;
}
.company-info-overview .company-info-overview-item dl dd a {
  color: #111827;
  text-decoration: underline;
}
.company-info-overview .company-info-overview-item dl dd br.sp-only {
  display: none;
}
.company-info-overview .company-info-overview-item .company-chart-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-info-certificate {
  padding: 96px;
  background: #F9FAFB;
}
.company-info-certificate-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
}
.company-info-certificate-inner .doc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 60%;
  max-width: 784px;
}
.company-info-certificate-inner .doc .hd {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
}
.company-info-certificate-inner .doc p {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.company-info-certificate-inner .image {
  width: 30%;
}
@media screen and (width <= 768px) {
  .company-info-kv {
    margin-bottom: 60px;
    background: url("../images/company-info/company-kv-sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .company-info-kv::before {
    width: 200px;
    height: 200px;
    background: url("../images/common/visual-deco-sp.svg") no-repeat;
  }
  .company-info-kv h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 150%;
  }
  .company-info-kv .company-info-kv-caption {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%; /* 30px */
    text-align: center;
  }
  .company-info-kv .company-info-kv-caption br {
    display: block;
  }
  .company-info-caption {
    padding: 0 16px;
  }
  .company-info-caption p {
    padding: 16px;
    font-size: 16px;
    text-align: left;
  }
  .company-info-caption p br {
    display: none;
  }
  .company-info-links {
    padding: 60px 16px;
  }
  .company-info-links ul {
    gap: 8px;
  }
  .company-info-links ul li {
    width: calc(33.3333333333% - 16px);
  }
  .company-info-links ul li a {
    gap: 8px;
    padding: 12px;
  }
  .company-info-links ul li a img {
    width: 32px;
  }
  .company-info-links ul li a span {
    font-size: 14px;
  }
  .company-info-vision {
    padding: 60px 16px;
    background: url("../images/company-info/section-bg-sp.png") no-repeat;
    background-size: cover;
  }
  .company-info-vision-inner .vision-hd {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 36px;
    text-align: left;
  }
  .company-info-vision-inner .category-box {
    margin-bottom: 16px;
  }
  .company-info-vision-inner .category-box.vision-category-3 dl dt {
    border-bottom: 1px solid #1746FF;
  }
  .company-info-vision-inner .category-box.vision-category-3 dl dt span {
    display: block;
  }
  .company-info-vision-inner .category-box.vision-category-3 dl dt span br {
    display: none;
  }
  .company-info-vision-inner .category-box.vision-category-3 dl dd.center {
    justify-content: flex-start;
  }
  .company-info-vision-inner .category-box .category-hd {
    font-size: 16px;
  }
  .company-info-vision-inner .category-box dl {
    display: block;
  }
  .company-info-vision-inner .category-box dl dt {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-right: none;
    border-bottom: 1px solid #1746FF;
  }
  .company-info-vision-inner .category-box dl dt .hd {
    font-size: 16px;
  }
  .company-info-vision-inner .category-box dl dt .sub {
    font-size: 12px;
  }
  .company-info-vision-inner .category-box dl dd {
    padding: 12px;
    font-size: 18px;
    text-align: left;
  }
  .company-info-vision-inner .category-box dl dd br {
    display: none;
  }
  .company-info-vision-inner .category-box dl dd .sub {
    font-size: 12px;
  }
  .company-info-vision-inner .category-box dl dd.multiple {
    flex-direction: column;
  }
  .company-info-vision-inner .category-box dl dd.multiple .dd-box {
    align-items: flex-start;
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  .company-info-vision-inner .category-box dl dd.multiple .dd-box br {
    display: none;
  }
  .company-info-vision-inner .category-box dl dd.multiple .dd-box em {
    display: block;
  }
  .company-info-vision-inner .category-box dl dd.multiple .dd-box .sub {
    font-size: 12px;
  }
  .company-info-overview {
    padding: 60px 16px;
    background-size: 200px;
  }
  .company-info-overview .company-info-overview-item {
    padding: 40px 16px;
  }
  .company-info-overview .company-info-overview-item h2 {
    font-size: 24px;
  }
  .company-info-overview .company-info-overview-item dl {
    display: block;
  }
  .company-info-overview .company-info-overview-item dl.separate {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .company-info-overview .company-info-overview-item dl.separate dt, .company-info-overview .company-info-overview-item dl.separate dd {
    width: 50%;
    padding: 16px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .company-info-overview .company-info-overview-item dl.separate dd {
    text-align: right;
  }
  .company-info-overview .company-info-overview-item dl dt, .company-info-overview .company-info-overview-item dl dd {
    padding: 0;
    line-height: 24px;
  }
  .company-info-overview .company-info-overview-item dl dt {
    padding-top: 16px;
    margin-bottom: 4px;
    border-bottom: none;
  }
  .company-info-overview .company-info-overview-item dl dd {
    padding-bottom: 16px;
  }
  .company-info-overview .company-info-overview-item dl dd br.sp-only {
    display: block;
  }
  .company-info-certificate {
    padding: 60px 16px;
  }
  .company-info-certificate-inner {
    flex-direction: column;
    gap: 16px;
  }
  .company-info-certificate-inner .doc {
    gap: 16px;
    width: 100%;
  }
  .company-info-certificate-inner .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.enterprise-kv {
  position: relative;
  height: 400px;
  background: #666;
  background: url("../images/enterprise/enterprise-kv.png") no-repeat;
  background-size: cover;
}
.enterprise-kv::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/visual-deco.svg") no-repeat;
}
.enterprise-kv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.enterprise-kv-inner h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.enterprise-kv-inner p {
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
}
.enterprise-kv-inner p br {
  display: none;
}
.enterprise-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 96px;
}
.enterprise-content .enterprise-wrapper {
  padding: 64px;
  border: 1px solid #DDD;
  border-radius: 24px;
}
.enterprise-content .enterprise-wrapper .enterprise-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-hd {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #111827;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-address {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #6B7280;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image {
  display: flex;
  gap: 64px;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-map {
  flex: 1;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-image {
  width: 30%;
  max-width: 400px;
}
.enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-image img {
  border-radius: 0 0 30px;
}
.enterprise-content .enterprise-business {
  padding: 64px;
  border: 1px solid #DDD;
  border-radius: 24px;
}
.enterprise-content .enterprise-business-hd {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #111827;
}
.enterprise-content .enterprise-business table {
  width: 100%;
  border-spacing: 2px;
  border-collapse: separate;
}
.enterprise-content .enterprise-business table th, .enterprise-content .enterprise-business table td {
  padding: 10px;
  line-height: 1.2;
  vertical-align: middle;
  text-align: center;
  border: none;
}
.enterprise-content .enterprise-business table th {
  width: 16.6666666667%;
  font-size: 16px;
  color: #000;
  background-color: #E0E3ED;
}
.enterprise-content .enterprise-business table td {
  border-bottom: 1px solid #e0e4f3;
}
.enterprise-content .enterprise-business table td.place {
  color: #000;
  background: #F5F5F8;
}
.enterprise-content .enterprise-business table td span {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  background: #1746ff;
  border-radius: 100%;
}
@media screen and (width <= 768px) {
  .enterprise-kv {
    background: url("../images/enterprise/enterprise-kv-sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .enterprise-kv::before {
    width: 200px;
    height: 200px;
    background: url("../images/common/visual-deco-sp.svg") no-repeat;
  }
  .enterprise-kv-inner h1 {
    font-size: 48px;
  }
  .enterprise-kv-inner p {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }
  .enterprise-kv-inner p br {
    display: inline;
  }
  .enterprise-content {
    padding: 60px 16px 90px;
  }
  .enterprise-content .enterprise-wrapper {
    padding: 40px 16px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list {
    gap: 60px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item {
    gap: 16px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-hd {
    font-size: 24px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-address {
    font-size: 16px;
    line-height: 1.2;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image {
    flex-direction: column;
    gap: 16px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-map {
    order: 2;
    width: 100%;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-map iframe {
    height: 240px;
  }
  .enterprise-content .enterprise-wrapper .enterprise-list .enterprise-item .enterprise-map-image .enterprise-image {
    order: 1;
    width: 100%;
    max-width: none;
  }
  .enterprise-content .enterprise-business {
    padding: 40px 16px;
  }
  .enterprise-content .enterprise-business-hd {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .enterprise-content .enterprise-business table th, .enterprise-content .enterprise-business table td {
    width: 12.5%;
    padding: 10px 0;
    font-size: 14px;
    white-space: nowrap;
  }
  .enterprise-content .enterprise-business table td span {
    width: 20px;
    height: 20px;
  }
}

body.error {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}
body.error .error-section {
  flex: 1;
  padding: 96px;
}
body.error .error-section h1 {
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.2;
}
body.error .error-section p {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.4;
}
body.error .error-section ul li:first-child {
  display: flex;
  align-items: center;
}
body.error .error-section ul li:first-child span.arrow-circle {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: #1746FF;
  border-radius: 24px;
}
body.error .error-section ul li:first-child span.arrow-circle::before, body.error .error-section ul li:first-child span.arrow-circle::after {
  position: absolute;
  top: 50%;
  left: 35%;
  display: block;
  width: 6px;
  height: 2px;
  content: "";
  background: #fff;
}
body.error .error-section ul li:first-child span.arrow-circle::before {
  transform: translate(0, -3px) rotate(45deg);
}
body.error .error-section ul li:first-child span.arrow-circle::after {
  transform: translate(0, 1px) rotate(-45deg);
}
body.error .error-section ul li:first-child a {
  padding-left: 0;
  background: none;
}
body.error .error-section ul li a {
  padding-left: 20px;
  font-size: 12px;
  color: #000;
  background: url("../images/icon/footer-link-icon.svg") no-repeat left center;
  background-size: 16px 16px;
}
body.error .error-section ul li a:hover {
  text-decoration: underline;
}
@media screen and (width <= 768px) {
  body.error .error-section {
    padding: 60px 16px;
  }
  body.error .error-section h1 {
    font-size: 32px;
  }
  body.error .error-section p {
    font-size: 16px;
  }
}

.l-footer {
  background: #F6F6F6;
  border-top: 1px solid #D6D6D6;
}
.l-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 120px;
  justify-content: center;
  max-width: 1440px;
  padding: 63px 94px;
  margin: 0 auto;
}
.l-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-footer-brand .l-footer-identhity p {
  font-size: 16px;
  color: #000;
}
.l-footer-brand .l-footer-identhity p.hd {
  font-weight: bold;
}
.l-footer .l-footer-links {
  display: flex;
  gap: 5%;
  justify-content: space-between;
}
.l-footer .l-footer-links .l-footer-link-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 200px;
}
.l-footer .l-footer-links .l-footer-link-block .l-footer-link-block-hd a {
  font-weight: bold;
  color: #000;
}
.l-footer .l-footer-links .l-footer-link-block .l-footer-link-block-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}
.l-footer .l-footer-links .l-footer-link-block .l-footer-link-block-list li a {
  color: #000;
}
.l-footer a {
  display: block;
}
.l-footer a span {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  text-align: justify;
}
.l-footer a span::before, .l-footer a span::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 8px;
  height: 1px;
  content: "";
  background: #1746ff;
}
.l-footer a span::before {
  right: -18px;
  transform: rotate(45deg) translate(-50%, 0);
}
.l-footer a span::after {
  right: -18px;
  transform: rotate(-45deg) translate(-50%, 0);
}
.l-footer .l-footer-external-link {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid #D6D6D6;
}
.l-footer .l-footer-external-link a {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
  color: #000;
}
.l-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 16px 0;
  font-size: 12px;
  color: #fff;
  background: #1746FF;
}
@media screen and (width <= 768px) {
  .l-footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
  .l-footer-inner .l-footer-brand {
    gap: 24px;
    align-items: center;
  }
  .l-footer-inner .l-footer-brand .l-footer-identhity {
    width: 100%;
    padding: 0 16px;
    text-align: left;
  }
  .l-footer-inner .l-footer-brand .l-footer-identhity br {
    display: none;
  }
  .l-footer-inner .l-footer-links {
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #d6d6d6;
  }
  .l-footer-inner .l-footer-links .l-footer-link-block {
    gap: 0;
    width: 100%;
  }
  .l-footer-inner .l-footer-links .l-footer-link-block .l-footer-link-block-list {
    display: none;
  }
  .l-footer-inner .l-footer-links .l-footer-link-block .l-footer-link-block-hd {
    width: 100%;
  }
  .l-footer-inner .l-footer-links .l-footer-link-block .l-footer-link-block-hd a {
    display: block;
    padding: 12px 16px 12px 32px;
    border-bottom: 1px solid #d6d6d6;
  }
  .l-footer-inner .l-footer-links .l-footer-link-block .l-footer-link-block-hd a span::before, .l-footer-inner .l-footer-links .l-footer-link-block .l-footer-link-block-hd a span::after {
    top: 50%;
    right: unset;
    left: -15px;
  }
}

.l-header {
  position: relative;
  overflow: hidden;
}
.l-header .sp-humburger-btn {
  display: none;
}
.l-header > img {
  display: block;
  line-height: 0;
}
.l-header > img.pc {
  display: block;
  width: 100%;
}
.l-header > img.sp {
  display: none;
}
.l-header.top .l-header-inner {
  border-bottom: none;
}
.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px 20px 16px;
  border-bottom: 1px solid #ddd;
}
.l-header .l-header-logo a {
  display: block;
}
.l-header .l-header-nav {
  align-self: normal;
  margin-bottom: -20px;
}
.l-header .l-header-nav-list {
  display: flex;
  gap: 34px;
  height: 100%;
}
.l-header .l-header-nav-list .l-header-nav-item {
  display: flex;
  align-items: end;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.l-header .l-header-nav-list .l-header-nav-item.is-current a {
  padding-bottom: 16px;
  color: #1746FF;
  border-bottom: 4px solid #1746FF;
}
.l-header .l-header-nav-list .l-header-nav-item.is-current a:hover {
  opacity: 1;
}
.l-header .l-header-nav-list .l-header-nav-item a {
  display: flex;
  align-items: end;
  padding-bottom: 20px;
  line-height: 1;
  color: #000;
  transition: opacity 0.15s cubic-bezier(0.42, 0, 1, 1);
}
.l-header .l-header-nav-list .l-header-nav-item a:hover {
  opacity: 0.6;
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  transition-duration: 0.2s;
}
@media screen and (width <= 768px) {
  .l-header-inner {
    padding: 12px 0 10px 8px;
  }
  .l-header-inner .l-header-logo {
    width: 160px;
  }
  .l-header img.pc {
    display: none;
  }
  .l-header img.sp {
    display: block;
    width: 100%;
  }
  .l-header .sp-humburger-btn {
    position: absolute;
    top: 33px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
  }
  .l-header .sp-humburger-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: #1746ff;
  }
  .l-header .sp-humburger-btn.is-open {
    z-index: 5;
  }
  .l-header .sp-humburger-btn.is-open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .l-header .sp-humburger-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header .sp-humburger-btn.is-open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .l-header .l-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: calc(100% + 20px);
    background: #fff;
    transition: right 0.3s ease;
  }
  .l-header .l-header-nav .l-header-nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    padding: 0;
    border-top: 1px solid #D6D6D6;
    transform: translateY(-100px);
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item {
    border-bottom: 1px solid #D6D6D6;
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item.is-current a {
    color: #1746FF;
    border-bottom: none;
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 24px 16px 52px;
    font-size: 20px;
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a span {
    position: relative;
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a span::before, .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a span::after {
    position: absolute;
    top: 50%;
    display: block;
    width: 8px;
    height: 1px;
    content: "";
    background: #1746ff;
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a span::before {
    left: -18px;
    transform: rotate(45deg) translate(-50%, 0);
  }
  .l-header .l-header-nav .l-header-nav-list .l-header-nav-item a span::after {
    left: -18px;
    transform: rotate(-45deg) translate(-50%, 0);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.l-main {
  overflow: hidden;
}

.more-info {
  padding: 96px;
  background-color: #F9FAFB;
}
.more-info-inner h2 {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.more-info-inner .age-wrapper .age-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn {
  display: flex;
  justify-content: space-between;
  padding: 16px 56px 16px 48px;
  color: #1746ff;
  background: #fff;
  border: 1px solid #1746ff;
  border-radius: 59px;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn.is-current {
  color: #fff;
  background: #1746ff;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn.is-current span::before, .more-info-inner .age-wrapper .age-btn-wrapper .tab-btn.is-current span::after {
  background: #fff;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn .arrow {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn .arrow::before, .more-info-inner .age-wrapper .age-btn-wrapper .tab-btn .arrow::after {
  position: absolute;
  top: 60%;
  display: block;
  width: 8px;
  height: 1px;
  content: "";
  background: #1746ff;
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn .arrow::before {
  right: -18px;
  transform: rotate(-45deg) translate(50%, 0);
}
.more-info-inner .age-wrapper .age-btn-wrapper .tab-btn .arrow::after {
  right: -18px;
  transform: rotate(45deg) translate(-50%, 0);
}
.more-info-inner .age-wrapper .tab-content-wrapper .tab-content {
  display: none;
}
.more-info-inner .age-wrapper .tab-content-wrapper .tab-content.is-active {
  display: block;
}
.more-info-inner .common-btn {
  display: block;
  width: 145px;
  margin: auto;
}
@media screen and (width <= 768px) {
  .more-info {
    padding: 60px 16px;
  }
  .more-info .more-info-inner h2 {
    font-size: 28px;
  }
  .more-info .more-info-inner .age-btn-wrapper {
    gap: 8px;
  }
}

.recruit-kv {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/recruit/recruit-kv.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.recruit-kv::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/visual-deco.svg") no-repeat;
}
.recruit-kv-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.recruit-kv-inner h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.recruit-kv-inner p {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: #FFF;
}
.recruit-kv-inner p br {
  display: none;
}
.recruit-caption {
  padding: 96px;
  text-align: center;
  background: url("../images/common/curve_top.svg") no-repeat;
  background-position: top left;
}
.recruit-caption h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
}
.recruit-caption .recruit-caption-text {
  font-size: 20px;
  line-height: 150%; /* 30px */
  color: #4B5563;
  text-align: center;
}
.recruit-data {
  position: relative;
  padding: 96px;
  border-top: 1px solid #ddd;
}
.recruit-data-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.recruit-data-inner h2 br {
  display: none;
}
.recruit-data-inner .recruit-data-caption {
  margin-bottom: 64px;
  font-size: 20px;
  text-align: center;
}
.recruit-data-inner .graph-list {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.recruit-data-inner .graph-list .graph-item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  align-self: stretch;
  width: 33.33%;
  max-width: 384px;
  padding: 32px;
  background: #f9fafb;
  border: 1px solid #e0e4f3;
  border-radius: 24px 4px;
}
.recruit-data-inner .graph-list .graph-item .hd {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.recruit-data-inner .graph-list .graph-item .hd img {
  width: 32px;
  height: 32px;
}
.recruit-data-inner .graph-list .graph-item p {
  font-size: 16px;
  line-height: 150%;
}
.recruit-interview {
  padding: 96px 0;
  background: #F9FAFB;
  border-top: 1px solid #DDD;
}
.recruit-interview-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.recruit-interview-inner .recruit-interview-caption {
  margin-bottom: 64px;
  font-size: 20px;
  text-align: center;
}
.recruit-interview-inner .member-swiper {
  height: 100%;
}
.recruit-interview-inner .member-swiper .swiper-pagination {
  display: none;
}
.recruit-interview-inner .member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: stretch;
  justify-content: center;
}
.recruit-interview-inner .member-list .member {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 33.33%;
  max-width: 360px;
  height: auto;
  min-height: 366px;
  padding: 32px;
  background: #fff;
  border-radius: 24px 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.recruit-interview-inner .member-list .member-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.recruit-interview-inner .member-list .member-name .affil {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #6B7280;
}
.recruit-interview-inner .member-list .member-text {
  flex: 1;
  font-size: 16px;
  line-height: 150%;
  line-height: 1.5;
  text-align: center;
}
.recruit-job {
  padding: 96px 104px;
}
.recruit-job-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruit-job-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.recruit-job-inner .recruit-job-caption {
  margin-bottom: 64px;
  font-size: 20px;
  line-height: 28px;
  color: #4B5563;
  text-align: center;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn {
  display: flex;
  justify-content: space-between;
  padding: 16px 58px 16px 48px;
  color: #1746ff;
  background: #fff;
  border: 1px solid #1746ff;
  border-radius: 59px;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn.is-current {
  color: #fff;
  background: #1746ff;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn.is-current span::before, .recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn.is-current span::after {
  background: #fff;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn span {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn span::before, .recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn span::after {
  position: absolute;
  top: 60%;
  display: block;
  width: 8px;
  height: 1px;
  content: "";
  background: #1746ff;
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn span::after {
  right: -18px;
  transform: rotate(45deg) translate(-50%, 0);
}
.recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn span::before {
  right: -18px;
  transform: rotate(-45deg) translate(50%, 0);
}
.recruit-job .job-type-content-wrapper .job-type-content {
  display: none;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 24px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.recruit-job .job-type-content-wrapper .job-type-content.is-active {
  display: flex;
}
.recruit-job .job-type-content-wrapper .job-type-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}
.recruit-job .job-type-content-wrapper .job-type-content dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #DDD;
}
.recruit-job .job-type-content-wrapper .job-type-content dl dt, .recruit-job .job-type-content-wrapper .job-type-content dl dd {
  padding: 16px 0;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #DDD;
}
.recruit-job .job-type-content-wrapper .job-type-content dl dt {
  display: flex;
  align-items: center;
  width: 30%;
  font-weight: 500;
  color: #4B5563;
}
.recruit-job .job-type-content-wrapper .job-type-content dl dd {
  width: 70%;
  font-weight: 700;
}
.recruit-job .job-type-content-wrapper .job-type-content .apply-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 292px;
  padding: 16px 48px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  color: #fff;
  text-align: center;
  background: #1746FF;
  border-radius: 24px 4px;
}
.recruit-job .job-type-content-wrapper .job-type-content .apply-btn span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  white-space: nowrap;
}
.recruit-qa {
  position: relative;
  padding: 96px;
  text-align: center;
  background: url("../images/common/curve_bottom.svg") no-repeat;
  background-position: bottom -50px right;
  border-top: 1px solid #ddd;
}
.recruit-qa h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: bold;
  line-height: 150%;
  color: #111827;
}
.recruit-qa p.recruit-qa-caption {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  color: #4B5563;
}
.recruit-qa .recruit-accordion-wrapper {
  max-width: 900px;
  margin: auto;
}
.recruit-qa .recruit-accordion-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border: 1px solid #DDD;
  border-radius: 32px;
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  color: #111827;
  text-align: left;
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle {
  position: relative;
  display: block;
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle::before, .recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle::after {
  position: absolute;
  display: block;
  width: 14px;
  height: 2px;
  content: "";
  background: #1746ff;
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle::before {
  top: 50%;
  right: 0;
  transform: rotate(0deg);
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle::after {
  top: 50%;
  right: 0;
  transform: rotate(90deg);
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger.is-open span::after {
  transform: rotate(0deg);
}
.recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-panel {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #111827;
}

[data-acc-panel][hidden] {
  display: none;
}

@media screen and (width <= 768px) {
  .recruit-kv {
    background: url("../images/recruit/recruit-kv-sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .recruit-kv::before {
    width: 200px;
    height: 200px;
    background: url("../images/common/visual-deco-sp.svg") no-repeat;
  }
  .recruit-caption {
    padding: 60px 16px;
    background-size: 250px;
  }
  .recruit-caption h2 {
    font-size: 32px;
  }
  .recruit-caption .recruit-caption-text {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }
  .recruit-caption .recruit-caption-text br {
    display: none;
  }
  .recruit-data {
    padding: 60px 16px;
  }
  .recruit-data-inner h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .recruit-data-inner h2 br {
    display: inline;
  }
  .recruit-data-inner .recruit-data-caption {
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .recruit-data-inner .graph-list {
    flex-direction: column;
    gap: 24px;
  }
  .recruit-data-inner .graph-list .graph-item {
    width: 100%;
    max-width: none;
  }
  .recruit-interview {
    padding: 60px 16px;
    overflow: hidden;
  }
  .recruit-interview-inner h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .recruit-interview-inner .recruit-interview-caption {
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .recruit-interview .member-swiper {
    position: relative;
  }
  .recruit-interview .member-swiper .swiper-pagination {
    bottom: -45px;
    display: block;
    gap: 24px;
  }
  .recruit-interview .member-swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 12px;
  }
  .recruit-interview .member-swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 36px;
  }
  .recruit-interview .member-list {
    flex-wrap: nowrap;
    gap: unset;
  }
  .recruit-interview .member-list .member {
    width: 248px !important;
    padding: 32px 16px;
  }
  .recruit-job {
    padding: 60px 16px;
  }
  .recruit-job h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .recruit-job .recruit-job-caption {
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }
  .recruit-job .recruit-job-caption br {
    display: none;
  }
  .recruit-job .job-type-wrapper .job-type-btn-wrapper {
    gap: 8px;
    margin-bottom: 60px;
  }
  .recruit-job .job-type-wrapper .job-type-btn-wrapper .job-type-btn {
    width: 100%;
    padding: 16px 58px 16px 37px;
    font-size: 16px;
    line-height: 150%;
  }
  .recruit-job .job-type-content-wrapper .job-type-content {
    padding: 40px 16px;
  }
  .recruit-job .job-type-content-wrapper .job-type-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
  }
  .recruit-job .job-type-content-wrapper .job-type-content dl dt, .recruit-job .job-type-content-wrapper .job-type-content dl dd {
    width: 100%;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
  }
  .recruit-job .job-type-content-wrapper .job-type-content dl dt {
    padding-top: 16px;
    border-bottom: none;
  }
  .recruit-job .job-type-content-wrapper .job-type-content dl dd {
    padding-bottom: 16px;
  }
  .recruit-job .job-type-content-wrapper .job-type-content .apply-btn {
    width: auto;
  }
  .recruit-qa {
    padding: 60px 16px;
    background-size: 350px;
  }
  .recruit-qa h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .recruit-qa p.recruit-qa-caption {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 150%;
  }
  .recruit-qa .recruit-accordion-wrapper ul {
    gap: 16px;
  }
  .recruit-qa .recruit-accordion-wrapper ul li .accordion-box {
    padding: 16px;
  }
  .recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger {
    font-size: 16px;
    line-height: 150%;
  }
  .recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span {
    max-width: 90%;
  }
  .recruit-qa .recruit-accordion-wrapper ul li .accordion-box .accordion-trigger span.toggle {
    width: auto;
  }
}
.top-kv {
  position: relative;
  height: calc(100vh - 124px);
  background: #ddd;
  background-size: cover;
}
.top-kv::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/visual-deco.svg") no-repeat;
}
.top-kv-inner {
  width: 100%;
  height: 100%;
}
.top-kv-inner .top-kv-swiper {
  width: 100%;
  height: 100%;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper {
  width: 100%;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box {
  position: absolute;
  bottom: 96px;
  left: 96px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box h1 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align-last: left;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box p {
  font-size: 20px;
  font-weight: 700;
  line-height: 240%;
  color: #fff;
  text-align-last: left;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box p br.sp-only {
  display: none;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box a {
  box-sizing: border-box;
  max-width: 243px;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/top/gradation.png") no-repeat center top;
  background-size: cover;
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-1 {
  background-image: url("../images/top/kv-team-a.png");
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-2 {
  background-image: url("../images/top/kv-team-b.png");
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-3 {
  background-image: url("../images/top/kv-city.png");
}
.top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-4 {
  background-image: url("../images/top/kv-group.png");
}
.top-business-info {
  position: relative;
  padding: 96px;
}
.top-business-info::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  height: 300px;
  content: "";
  background: url("../images/common/curve_top.svg") no-repeat;
}
.top-business-info .top-business-info-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}
.top-business-info .top-business-info-inner .business-info {
  margin-bottom: 80px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
.top-business-info .top-business-info-inner .job-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item {
  display: flex;
  gap: 64px;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item:nth-child(even) {
  flex-direction: row-reverse;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .image {
  width: 50%;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .image img {
  border-radius: 24px 4px;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .doc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd {
  display: flex;
  gap: 16px;
  align-items: center;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd img {
  width: 48px;
  height: 48px;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 150%;
}
.top-business-info .top-business-info-inner .job-wrapper .job-item .common-btn {
  max-width: 201px;
}
.top-ceo-message {
  padding: 96px;
  background: url("../images/top/section-bg.png") no-repeat center top;
  background-size: cover;
}
.top-ceo-message .ceo-message {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: stretch;
  padding: 64px;
  background: #fff;
  border-radius: 32px;
}
.top-ceo-message .ceo-message img.sp-only {
  display: none;
}
.top-ceo-message .ceo-message h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
  color: #1746FF;
}
.top-ceo-message .ceo-message .ceo-profile {
  display: flex;
  gap: 80px;
  align-self: stretch;
}
.top-ceo-message .ceo-message .ceo-profile .ceo-profile-image {
  width: 300px;
}
.top-ceo-message .ceo-message .ceo-profile .ceo-profile-image img {
  width: 100%;
  border-radius: 8px;
}
.top-ceo-message .ceo-message .ceo-profile .ceo-profile-doc {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(100% - 380px);
}
.top-ceo-message .ceo-message .ceo-profile .ceo-profile-doc .ceo-vison {
  font-size: 16px;
  line-height: 240%; /* 43.2px */
  color: #000;
}
.top-ceo-message .ceo-message .ceo-profile .ceo-profile-doc a.common-btn {
  max-width: 237px;
}
.top-graph {
  padding: 96px;
  background: url("../images/common/curve_top.svg") no-repeat;
  background-position: left top;
  background-size: 300px;
}
.top-graph .graph-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
  color: #000;
  text-align: center;
}
.top-graph .graph-inner h2 br.sp-only {
  display: none;
}
.top-graph .graph-inner p.graph-caption {
  margin-bottom: 64px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  color: #000;
  text-align: center;
}
.top-graph .graph-list {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.top-graph .graph-list .graph-item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  align-self: stretch;
  width: 33.33%;
  max-width: 384px;
  padding: 32px;
  background: #f9fafb;
  border: 1px solid #e0e4f3;
  border-radius: 24px 4px;
}
.top-graph .graph-list .graph-item .hd {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
.top-graph .graph-list .graph-item .hd img {
  width: 32px;
  height: 32px;
}
.top-graph .graph-list .graph-item .hd p {
  font-size: 16px;
  line-height: 150%;
}
.top-staff-interview {
  padding: 96px;
  overflow: hidden;
  background: #F9FAFB;
}
.top-staff-interview .staff-interview-inner h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.top-staff-interview .staff-interview-inner .staff-interview-caption {
  margin-bottom: 64px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  text-align: center;
}
.top-staff-interview .staff-interview-inner .member-swiper {
  position: relative;
}
.top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 33.33%;
  max-width: 360px;
  height: auto;
  min-height: 366px;
  padding: 32px;
  background: #fff;
  border-radius: 24px 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member .member-image {
  margin-bottom: 16px;
}
.top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member .member-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member .member-name .affil {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #6B7280;
}
.top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member .member-text {
  flex: 1;
  font-size: 16px;
  line-height: 150%;
  line-height: 1.5;
  text-align: center;
}
.top-staff-interview .staff-interview-inner .member-swiper .swiper-pagination {
  display: block;
  margin-bottom: -75px;
}
.top-staff-interview .staff-interview-inner .member-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 12px;
}
.top-staff-interview .staff-interview-inner .member-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 36px;
  border-radius: 36px;
}
.top-staff-interview .staff-interview-inner .common-btn {
  display: block;
  max-width: 308px;
  margin: 89px auto 0;
}
.top-recruit-info {
  padding: 96px;
  background: url("../images/common/curve_bottom.svg") no-repeat;
  background-position: right bottom;
  background-size: 300px;
}
.top-recruit-info .recruit-info-inner {
  display: flex;
  gap: 64px;
}
.top-recruit-info .recruit-info-inner .doc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: calc(100% - 64px - 40%);
}
.top-recruit-info .recruit-info-inner .doc h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
  color: #000;
}
.top-recruit-info .recruit-info-inner .doc .caption-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.top-recruit-info .recruit-info-inner .doc .caption-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.top-recruit-info .recruit-info-inner .doc a.common-btn {
  margin-right: auto;
}
.top-recruit-info .recruit-info-inner .image {
  width: 40%;
  max-width: 576px;
}
.top-recruit-info .recruit-info-inner .image img {
  border-radius: 24px 4px;
}
.top-recruit-info .recruit-info-inner .recruit-info-caption {
  margin-bottom: 64px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
.top-recruit-info .recruit-info-inner .common-btn {
  align-self: center;
  max-width: 243px;
}
.top-notice {
  padding: 96px;
  background: #F9FAFB;
}
.top-notice .notice-inner h2 {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
  text-align: center;
}
.top-notice .notice-inner a.common-btn {
  display: block;
  max-width: 201px;
  margin: 0 auto;
}
@media screen and (width <= 768px) {
  .top-kv {
    height: calc(100vh - 90px);
  }
  .top-kv::after {
    width: 160px;
    height: 160px;
    background: url("../images/common/visual-deco-sp.svg") no-repeat;
    background-size: cover;
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-1 {
    background-image: url("../images/top/kv-team-a-sp.png");
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-2 {
    background-image: url("../images/top/kv-team-b-sp.png");
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-3 {
    background-image: url("../images/top/kv-city-sp.png");
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide.kv-slide-4 {
    background-image: url("../images/top/kv-group-sp.png");
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box {
    bottom: 48px;
    left: 24px;
    width: 80%;
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box h1 {
    font-size: 30px;
  }
  .top-kv .top-kv-inner .top-kv-swiper .swiper-wrapper .swiper-slide .kv-box p {
    line-height: 1.4;
  }
  .top-kv .top-kv-inner h1 {
    font-size: 32px;
    line-height: 150%;
  }
  .top-kv .top-kv-inner h1 br {
    display: block;
  }
  .top-kv .top-kv-inner p {
    font-size: 18px;
    line-height: 200%;
  }
  .top-kv .top-kv-inner p br.sp-only {
    display: block;
  }
  .top-kv .top-kv-inner a.common-btn {
    color: #fff;
    background: #1746FF;
  }
  .top-kv .top-kv-inner a.common-btn span::before, .top-kv .top-kv-inner a.common-btn span::after {
    background: #fff;
  }
  .top-business-info {
    padding: 60px 16px;
    background-size: 200px;
  }
  .top-business-info .top-business-info-inner h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .top-business-info .top-business-info-inner .business-info {
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }
  .top-business-info .top-business-info-inner .business-info br {
    display: none;
  }
  .top-business-info .top-business-info-inner .job-wrapper {
    gap: 60px;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item {
    flex-direction: column;
    gap: 22px;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item:nth-child(even) {
    flex-direction: column;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .image {
    width: 100%;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .image img {
    width: 100%;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .doc {
    gap: 16px;
    width: 100%;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd {
    gap: 16px;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd img {
    width: 48px;
    height: 48px;
  }
  .top-business-info .top-business-info-inner .job-wrapper .job-item .doc .hd h3 {
    font-size: 24px;
    line-height: 150%;
  }
  .top-ceo-message {
    padding: 60px 16px;
    background: url("../images/top/section-bg-sp.png") no-repeat center top;
    background-size: cover;
  }
  .top-ceo-message .ceo-message {
    padding: 48px 16px;
  }
  .top-ceo-message .ceo-message img.sp-only {
    display: block;
    border-radius: 8px;
  }
  .top-ceo-message .ceo-message h2 {
    font-size: 32px;
  }
  .top-ceo-message .ceo-message .ceo-profile {
    flex-direction: column;
  }
  .top-ceo-message .ceo-message .ceo-profile .ceo-profile-doc {
    gap: 24px;
    width: 100%;
  }
  .top-ceo-message .ceo-message .ceo-profile .ceo-profile-doc .ceo-vison {
    font-size: 16px;
    line-height: 240%;
  }
  .top-ceo-message .ceo-message .ceo-profile .ceo-profile-image {
    display: none;
  }
  .top-graph {
    padding: 60px 16px;
    background-size: 200px;
  }
  .top-graph .graph-inner {
    gap: 24px;
  }
  .top-graph .graph-inner h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .top-graph .graph-inner h2 br.sp-only {
    display: block;
  }
  .top-graph .graph-inner p.graph-caption {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }
  .top-graph .graph-inner p.graph-caption br {
    display: none;
  }
  .top-graph .graph-list {
    flex-direction: column;
    gap: 24px;
  }
  .top-graph .graph-list .graph-item {
    width: 100%;
    max-width: 100%;
    padding: 32px;
  }
  .top-graph .graph-list .graph-item p {
    font-size: 20px;
    line-height: 150%;
  }
  .top-staff-interview {
    padding: 60px 0;
  }
  .top-staff-interview .staff-interview-inner h2 {
    font-size: 32px;
    line-height: 150%;
  }
  .top-staff-interview .staff-interview-inner .staff-interview-caption {
    padding: 0 16px;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }
  .top-staff-interview .staff-interview-inner .member-swiper ul.member-list .member {
    box-sizing: border-box;
    width: 280px;
  }
  .top-recruit-info {
    padding: 60px 16px;
    background-size: 200px;
  }
  .top-recruit-info .recruit-info-inner {
    flex-direction: column;
    gap: 24px;
  }
  .top-recruit-info .recruit-info-inner .doc {
    gap: 24px;
    width: 100%;
  }
  .top-recruit-info .recruit-info-inner .doc h2 {
    font-size: 28px;
    line-height: 150%;
  }
  .top-recruit-info .recruit-info-inner .doc .caption-wrapper {
    gap: 12px;
  }
  .top-recruit-info .recruit-info-inner .doc .caption-wrapper h3 {
    font-size: 20px;
    line-height: 150%;
  }
  .top-recruit-info .recruit-info-inner .doc .caption-wrapper .caption {
    font-size: 16px;
  }
  .top-recruit-info .recruit-info-inner .image {
    width: 100%;
    max-width: 100%;
  }
  .top-recruit-info .recruit-info-inner .image img {
    width: 100%;
  }
  .top-notice {
    padding: 60px 16px;
  }
  .top-notice .notice-inner h2 {
    font-size: 28px;
    line-height: 150%;
  }
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.notice-list li {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 16px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.notice-list li span.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 96px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  white-space: nowrap;
  border-radius: 96px;
}
.notice-list li span.tag.important {
  color: #fff;
  background: #000064;
}
.notice-list li span.tag.recruit {
  color: #FFF;
  background: #0091FF;
}
.notice-list li span.tag.service {
  color: #fff;
  background: #1746FF;
}
.notice-list li span.tag.others {
  color: #000;
  background: #eee;
}
.notice-list li span.date {
  width: 100px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
  color: #000;
  text-align: center;
}
.notice-list li span p.text {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  color: #000;
}
.notice-list li .text a {
  color: #000;
}
.notice-list li .text a:hover {
  text-decoration: underline;
  opacity: unset;
}
@media screen and (width <= 768px) {
  .notice-list li {
    flex-wrap: wrap;
    gap: 0;
    row-gap: 11px;
  }
  .notice-list li span.tag {
    order: 2;
    margin-left: auto;
  }
  .notice-list li span.date {
    order: 1;
    width: 50%;
    text-align: left;
  }
  .notice-list li .text {
    order: 3;
    width: 100%;
  }
}

.c-to-top-button {
  position: fixed;
  right: 5px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding-top: 4px;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
  background: #fff;
  border: 1px solid #000064;
  border-radius: 100%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.c-to-top-button.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.common-btn {
  position: relative;
  display: inline-block;
  padding: 16px 63px 16px 48px;
  overflow: hidden;
  font-weight: bold;
  line-height: 150%;
  color: #1746FF;
  text-align: center;
  background: #fff;
  border: 1px solid #1746FF;
  border-radius: 24px 4px;
}
.common-btn:visited {
  color: #1746FF;
}
.common-btn:hover {
  color: #fff;
  opacity: 1;
}
.common-btn:hover::before {
  transform: translate(0);
}
.common-btn:hover span::before, .common-btn:hover span::after {
  background: #fff;
}
.common-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  overflow: hidden;
  content: "";
  background: #1746FF;
  border-radius: 24px 4px;
  transform: translate(-100%);
  transition: transform 0.3s;
}
.common-btn span {
  position: relative;
  z-index: 1;
}
.common-btn span::before, .common-btn span::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 8px;
  height: 1px;
  content: "";
  background: #1746ff;
}
.common-btn span::before {
  right: -18px;
  transform: rotate(45deg) translate(-50%, 0);
}
.common-btn span::after {
  right: -18px;
  transform: rotate(-45deg) translate(-50%, 0);
}
/*# sourceMappingURL=maps/style.css.map */
