@charset "UTF-8";
* {
  box-sizing: border-box;
}

::before,
::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "小塚ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-style: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  text-underline-offset: 0.2em;
}
a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

code,
kbd,
samp {
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 100%;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

video,
iframe {
  vertical-align: bottom;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  padding: 0;
}

progress {
  display: inline-block;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

dl {
  margin-block-start: 0;
  margin-block-end: 0;
}

dd {
  margin-left: 0;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

/* -----------------

form

----------------- */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: auto;
}

button {
  width: auto;
  color: inherit;
  transition: opacity 0.4s;
}
button:hover {
  opacity: 0.7;
}

::-moz-placeholder {
  color: #b6b8bf;
  font: inherit;
  margin: 0;
  padding: 0;
}

::placeholder {
  color: #b6b8bf;
  font: inherit;
  margin: 0;
  padding: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: transparent;
  outline: transparent;
  background: #fff;
  cursor: pointer;
  display: block;
}

label:has(input[type=checkbox]) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
}

input[type=checkbox] {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 5px;
  border: 1px solid #111;
  position: relative;
}
input[type=checkbox]:checked::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 18px;
  border-right: 4px solid #111;
  border-bottom: 4px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 11px;
}

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

[type=search] {
  -webkit-appearance: none;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select,
textarea {
  outline: none;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: clamp(20px, 17px + 0.77vw, 25px) clamp(20px, 14px + 1.54vw, 30px);
  border: 1px solid #d9dde1;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: bottom;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: #111;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/*////////////////////////

 user common css

////////////////////////*/
/* Grid System width Flex */
.flexbox {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-rev {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

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

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

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

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

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

.flex-content-start {
  justify-content: flex-start;
}

.flex-content-end {
  justify-content: flex-end;
}

.flex-content-center {
  justify-content: center;
}

.flex-content-between {
  justify-content: space-between;
}

.flex-content-around {
  justify-content: space-around;
}

.flex-content-around {
  justify-content: stretch;
}

.gap0-5 {
  gap: 0 5px;
}

.gap0-10 {
  gap: 0 10px;
}

.gap0-15 {
  gap: 0 15px;
}

.gap0-20 {
  gap: 0 20px;
}

.imgbox,
.videobox {
  line-height: 1;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

@media screen and (max-width: 1600px) {
  .min-xxl {
    display: none !important;
  }
}
@media screen and (max-width: 1300px) {
  .min-xl {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .min-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .min-tab {
    display: none !important;
  }
}
@media screen and (max-width: 620px) {
  .min-mid {
    display: none !important;
  }
}
@media screen and (max-width: 520px) {
  .min-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1601px) {
  .max-xxl {
    display: none !important;
  }
}
@media screen and (min-width: 1301px) {
  .max-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .max-pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .max-tab {
    display: none !important;
  }
}
@media screen and (min-width: 621px) {
  .max-mid {
    display: none !important;
  }
}
@media screen and (min-width: 521px) {
  .max-sp {
    display: none !important;
  }
}
/* ロゴ */
.logo {
  line-height: 1;
}

/* animation */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeInTrigger {
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUpTrigger {
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.clipUpTrigger {
  opacity: 0;
}
.clipUpTrigger.is-animated {
  animation-name: clipUp;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes clipUp {
  0% {
    opacity: 0;
    clip-path: inset(100% 0% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}

.clipLeftTrigger {
  opacity: 0;
}
.clipLeftTrigger.is-animated {
  animation-name: clipLeft;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes clipLeft {
  0% {
    opacity: 0;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}

/* animation-delay */
.delay02s {
  animation-delay: 0.2s;
}

.delay04s {
  animation-delay: 0.4s;
}

.delay06s {
  animation-delay: 0.6s;
}

.tab-item:not(.active) {
  cursor: pointer;
  transition: opacity 0.4s;
}
.tab-item:not(.active):hover {
  opacity: 0.7;
}
.tab-content {
  display: none;
}
.tab-content:first-child {
  display: block;
}

.accordion-title {
  cursor: pointer;
}
.accordion-content {
  display: none;
}

/***************************

_utility.scss

***************************/
/* ----- color ----- */
.base {
  color: #111;
}

.white {
  color: #fff;
}

.blue {
  color: #005eb5;
}

.red{
  color: #d4143b;
}

/* ----- font ----- */
/* font-size */
.fz-9 {
  font-size: 0.5625rem;
}

.fz-10 {
  font-size: 0.625rem;
}

.fz-11 {
  font-size: 0.6875rem;
}

.fz-12 {
  font-size: 0.75rem;
}

.fz-13 {
  font-size: 0.8125rem;
}

.fz-14 {
  font-size: 0.875rem;
}

.fz-15 {
  font-size: 0.9375rem;
}

.fz-16 {
  font-size: 1rem;
}

.fz-16 {
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
}

.fz-18 {
  font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
}

.fz-20 {
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
}

.fz-22 {
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
}

.fz-24 {
  font-size: clamp(1.25rem, 1.11rem + 0.62vw, 1.5rem);
}

.fz-26 {
  font-size: clamp(1.25rem, 1.03rem + 0.92vw, 1.625rem);
}

.fz-28 {
  font-size: clamp(1.375rem, 1.16rem + 0.92vw, 1.75rem);
}

.fz-30 {
  font-size: clamp(1.375rem, 1.09rem + 1.23vw, 1.875rem);
}

/* font-family */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

/* font-weight */
.thin {
  font-weight: 100;
}

.extralight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

/* font-style */
.italic {
  font-style: italic;
}

/* ----- margin ----- */
.m-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.mr-auto {
  margin-right: auto;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: clamp(20px, 17px + 0.77vw, 25px);
}

.mt-30 {
  margin-top: clamp(25px, 22px + 0.77vw, 30px);
}

.mt-35 {
  margin-top: clamp(30px, 27px + 0.77vw, 35px);
}

.mt-40 {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}

.mt-45 {
  margin-top: clamp(30px, 21px + 2.31vw, 45px);
}

.mt-50 {
  margin-top: clamp(40px, 34px + 1.54vw, 50px);
}

.mt-55 {
  margin-top: clamp(40px, 31px + 2.31vw, 55px);
}

.mt-60 {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}

.mt-65 {
  margin-top: clamp(50px, 41px + 2.31vw, 65px);
}

.mt-70 {
  margin-top: clamp(50px, 38px + 3.08vw, 70px);
}

.mt-75 {
  margin-top: clamp(60px, 51px + 2.31vw, 75px);
}

.mt-80 {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: clamp(20px, 17px + 0.77vw, 25px);
}

.mb-30 {
  margin-bottom: clamp(25px, 22px + 0.77vw, 30px);
}

.mb-35 {
  margin-bottom: clamp(30px, 27px + 0.77vw, 35px);
}

.mb-40 {
  margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
}

.mb-45 {
  margin-bottom: clamp(30px, 21px + 2.31vw, 45px);
}

.mb-50 {
  margin-bottom: clamp(40px, 34px + 1.54vw, 50px);
}

.mb-55 {
  margin-bottom: clamp(40px, 31px + 2.31vw, 55px);
}

.mb-60 {
  margin-bottom: clamp(40px, 28px + 3.08vw, 60px);
}

.mb-65 {
  margin-bottom: clamp(50px, 41px + 2.31vw, 65px);
}

.mb-70 {
  margin-bottom: clamp(50px, 38px + 3.08vw, 70px);
}

.mb-75 {
  margin-bottom: clamp(60px, 51px + 2.31vw, 75px);
}

.mb-80 {
  margin-bottom: clamp(60px, 48px + 3.08vw, 80px);
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

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

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

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

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

/* ----- text ----- */
/* line-height */
.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.lh-21 {
  line-height: 2.1;
}

.lh-22 {
  line-height: 2.2;
}

/* letter-spacing */
.ls-0 {
  letter-spacing: 0;
}

.ls-10 {
  letter-spacing: 0.01em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.ls-30 {
  letter-spacing: 0.03em;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-70 {
  letter-spacing: 0.07em;
}

.ls-80 {
  letter-spacing: 0.08em;
}

.ls-90 {
  letter-spacing: 0.09em;
}

.ls-100 {
  letter-spacing: 0.1em;
}

/* text-align */
.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

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

/* text-transform */
.uppercase {
  text-transform: uppercase;
}

/* text-decoration */
.underline {
  text-decoration-line: underline;
  text-decoration-color: inherit;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}

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

.list-disc {
  font-size: 0.9375rem;
}
.list-disc li {
  padding-left: 18px;
  position: relative;
}
.list-disc li::before {
  content: "";
  display: inline-block;
  background-color: #111;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.list-disc li + li {
  margin-top: 6px;
}
.list-disc.extrabold {
  font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
}
.list-disc.extrabold li + li {
  margin-top: 10px;
}

/* white-space */
.nowrap {
  white-space: nowrap;
}

/* word-break */
.break-all {
  word-break: break-all;
}

/* overflow */
.overflow-hidden {
  overflow: hidden;
}

/***************************

_layout.scss

***************************/
.container_m {
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, -3px + 6.16vw, 60px);
  padding-right: clamp(20px, -3px + 6.16vw, 60px);
}

.container_s {
  width: 100%;
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, -3px + 6.16vw, 60px);
  padding-right: clamp(20px, -3px + 6.16vw, 60px);
}
.container_ss {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, -3px + 6.16vw, 60px);
  padding-right: clamp(20px, -3px + 6.16vw, 60px);
}

.ttl-style01 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ttl-style02 {
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  font-weight: 800;
  line-height: 1.5;
  background-color: #e8ecef;
  border-radius: 5px;
  padding: clamp(20px, 14px + 1.54vw, 30px);
  margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
}

.ttl-style03 {
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
  line-height: 1.5;
  font-weight: 800;
  border-bottom: 1px solid #111;
  padding-bottom: clamp(10px, 7px + 0.77vw, 15px);
  margin-bottom: clamp(20px, 14px + 1.54vw, 30px);
}

.btn-style01 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1rem;
  padding-right: 54px;
  position: relative;
}
.btn-style01::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 3px;
  background-color: #111;
  position: absolute;
  right: 0;
  top: 0;
}
.btn-style01::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
}
.btn-style01 span {
  display: flex;
  align-items: center;
  border-radius: 3px;
  background-color: #111;
  line-height: 1.5;
  height: 53px;
  padding: 0 clamp(23px, -7px + 8.01vw, 75px) 0 23px;
}
.btn-style01.bg-white {
  color: #111;
}
.btn-style01.bg-white::before,
.btn-style01.bg-white span {
  background-color: #fff;
}
.btn-style01.bg-white::after {
  background-image: url(./img/common/arrow-base.svg);
}
.btn-style01.bg-gradient {
  margin-top: clamp(40px, 23px + 4.62vw, 70px);
  padding-right: calc(clamp(3.75rem, 3.39rem + 1.54vw, 4.375rem) + 1px);
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
}
.btn-style01.bg-gradient:hover {
  opacity: 1;
}
.btn-style01.bg-gradient:hover::before,
.btn-style01.bg-gradient:hover span {
  background-color: rgba(0, 0, 0, 0.7);
}
.btn-style01.bg-gradient::before {
  background-color: #000;
  transition: background-color 0.4s;
  width: clamp(60px, 54px + 1.54vw, 70px);
  /* height: clamp(60px, 54px + 1.54vw, 70px); */
  height: 100%;
}
.btn-style01.bg-gradient::after {
  right: calc((clamp(60px, 54px + 1.54vw, 70px) - 12px) / 2);
}
.btn-style01.bg-gradient span {
  /* line-height: clamp(3.75rem, 3.39rem + 1.54vw, 4.375rem); */
  padding: 10px clamp(60px, 32px + 7.4vw, 108px) 10px 25px;
  background-color: #000;
  transition: background-color 0.4s;
  position: relative;
  min-height: clamp(60px, 54px + 1.54vw, 70px);
  height: auto;
  line-height: 1.2;
}
.btn-style01.bg-gradient span::before {
  content: "";
  display: inline-block;
  width: calc(100% + 71px);
  height: 100%;
  background: linear-gradient(to right top, #003a9e, #005eb5);
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
.btn-style01.back {
  text-align: right;
  padding-right: 0;
  padding-left: 54px;
}
.btn-style01.back::before {
  right: auto;
  left: 0;
}
.btn-style01.back::after {
  right: auto;
  left: 20px;
  background-image: url(./img/common/arrow-white.svg);
  transform: rotate(180deg);
}
.btn-style01.back span {
  padding: 0 23px 0 clamp(23px, -7px + 8.01vw, 75px);
}

.btn-style02 {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  background-color: #111;
  border-radius: 5px;
  padding: clamp(15px, 12px + 0.77vw, 20px) clamp(60px, 37px + 6.16vw, 100px) clamp(15px, 12px + 0.77vw, 20px) clamp(15px, 12px + 0.77vw, 20px);
  position: relative;
}
.btn-style02::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  right: clamp(15px, 1px + 3.85vw, 40px);
  top: calc(50% - 20px);
}
.btn-style02::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: clamp(29px, 15px + 3.85vw, 54px);
  top: calc(50% - 6px);
}
.btn-style02-imgbox {
  min-width: clamp(50px, 21px + 7.7vw, 100px);
  width: clamp(50px, 21px + 7.7vw, 100px);
  margin-right: clamp(15px, 6px + 2.31vw, 30px);
}
.btn-style02-imgbox img {
  border-radius: 3px;
}

.btn-style03 {
  display: flex;
  align-items: center;
  gap: 0 15px;
  flex-direction: row-reverse;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  position: relative;
}
.btn-style03::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  aspect-ratio: 1/1;
  background-color: #111;
  border-radius: 5px;
}
.btn-style03::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-link-white.svg);
  position: absolute;
  top: calc(50% - 7px);
  right: 19px;
}

.btn-style04 {
  margin-top: clamp(90px, 26px + 16.95vw, 200px);
  background-color: #e8ecef;
  border-radius: 5px;
  padding: clamp(35px, 18px + 4.47vw, 64px) 0;
}
.btn-style04-link {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0 15px;
  flex-direction: row-reverse;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  position: relative;
}
.btn-style04-link + a {
  margin-top: 16px;
}
.btn-style04-link::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  aspect-ratio: 1/1;
  background-color: #111;
  border-radius: 5px;
}
.btn-style04-link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
}

.btn-style05 {
  display: block;
  width: 100%;
  max-width: 600px;
  color: #fff;
  font-size: 1rem;
  padding-right: calc(clamp(60px, 52px + 2vw, 73px) + 1px);
  position: relative;
}
.btn-style05::before {
  content: "";
  display: inline-block;
  width: clamp(60px, 52px + 2vw, 73px);
  height: clamp(60px, 52px + 2vw, 73px);
  border-radius: 3px;
  background-color: #111;
  position: absolute;
  right: 0;
  top: 0;
}
.btn-style05::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-download-white.svg);
  position: absolute;
  right: calc((clamp(60px, 52px + 2vw, 73px) - 14px) / 2);
  top: calc(50% - 7px);
}
.btn-style05 span {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 3px;
  background-color: #111;
  line-height: 1.5;
  padding: 0 30px;
  height: clamp(60px, 52px + 2vw, 73px);
}

.table-style01-row {
  border-bottom: 1px solid #d9dde1;
  display: flex;
  padding-bottom: clamp(25px, 21px + 1.08vw, 32px);
}
.table-style01-row + .table-style01-row {
  margin-top: clamp(25px, 21px + 1.08vw, 32px);
}
.table-style01-header {
  min-width: 330px;
  font-weight: 800;
}

.table-style02-outer {
  min-height: 134px;
}
.table-style02 {
  max-width: 900px;
  font-size: 0.9375rem;
}
.table-style02 th,
.table-style02 td {
  border: 1px solid #d9dde1;
}
.table-style02 th:first-child,
.table-style02 td:first-child {
  border-left: none;
}
.table-style02 th:last-child,
.table-style02 td:last-child {
  border-right: none;
}
.table-style02 th {
  background-color: #111;
  color: #fff;
  padding: 7px 20px;
}
.table-style02 td {
  padding: 12px 15px;
  word-break: break-all;
}
.table-style02 td.first {
  background-color: #f5f7f8;
  padding: 12px 20px;
}
.table-style02 td:not(.first) {
  text-align: center;
  word-break: break-all;
}
.table-style02 td:has(img) {
  text-align: center;
}

.box-style01 {
  border-radius: 5px;
  border: 1px solid #d9dde1;
  padding: clamp(20px, 14px + 1.54vw, 30px) clamp(25px, 19px + 1.54vw, 35px);
}
.box-style01.bg-blue {
  border: 1px solid #005eb5;
  background-color: #f5f9fc;
}
.box-style01.bg-blue .list-disc li::before {
  background-color: #005eb5;
}

.note {
  display: flex;
  gap: 0 5px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.note::before {
  content: "※";
}

/* ----- header ----- */
.header {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 11px + 2.47vw, 36px) clamp(20px, -3px + 6.16vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.header .logo {
  position: relative;
  z-index: 11;
}
.header.scroll {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  padding: 20px clamp(20px, -3px + 6.16vw, 60px);
}
.header.scroll.is-show {
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 1;
  visibility: visible;
}

.gnav-list {
  display: flex;
  align-items: center;
}
.gnav-item + .gnav-item {
  margin-left: 32px;
}
.gnav-item:not(:nth-last-child(2), :last-child) {
  font-size: 0.9375rem;
}
.gnav-item:nth-last-child(2), .gnav-item:last-child {
  font-size: 0.875rem;
}
.gnav-item:nth-last-child(2) {
  margin-left: 60px;
}
.gnav-item:nth-last-child(2) a {
  display: block;
  width: 216px;
  position: relative;
}
.gnav-item:nth-last-child(2) a::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 3px;
  background-color: #e3e8ef;
  position: absolute;
  right: 0;
  top: 0;
}
.gnav-item:nth-last-child(2) a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-download-base.svg);
  position: absolute;
  right: 17px;
  top: 17px;
}
.gnav-item:nth-last-child(2) a span {
  display: inline-block;
  width: 167px;
  border-radius: 3px;
  background-color: #e3e8ef;
  line-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav-item:last-child {
  margin-left: 10px;
}
.gnav-item:last-child a {
  display: block;
  width: 138px;
  background-color: #005eb5;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  line-height: 3rem;
}

@media screen and (min-width: 1501px) {
  .gnavBtn {
    display: none;
  }
}
@media screen and (max-width: 1500px) {
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: visibility 0.4s, opacity 0.4s, transform 0.4s;
    background-color: #fff;
    padding: 112px 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .gnav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .gnav-list {
    display: block;
    text-align: center;
  }
  .gnav-item + .gnav-item {
    margin-left: 0;
    margin-top: clamp(20px, 14px + 1.54vw, 30px);
  }
  .gnav-item:nth-last-child(2) {
    margin-top: clamp(40px, 28px + 3.08vw, 60px);
  }
  .gnav-item:last-child {
    margin-top: 20px;
  }
  .gnav-item:last-child a {
    margin-left: auto;
    margin-right: auto;
  }
  .gnavBtn {
    width: 80px;
    min-width: 80px;
    height: 80px;
    cursor: pointer;
    display: inline-block;
    border: none;
    outline: none;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 11;
  }
  .gnavBtn-bar {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .gnavBtn-bar, .gnavBtn-bar::before, .gnavBtn-bar::after {
    transition-property: background-color, transform;
    transition-duration: 0.4s;
    display: block;
    margin: 0 auto;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background-color: #5b646d;
    outline: 1px solid transparent;
  }
  .gnavBtn-bar::before, .gnavBtn-bar::after {
    content: "";
    position: absolute;
  }
  .gnavBtn-bar::before {
    top: -8px;
  }
  .gnavBtn-bar::after {
    top: 8px;
  }
  .gnavBtn.active .gnavBtn-bar {
    background-color: transparent;
  }
  .gnavBtn.active .gnavBtn-bar::before {
    transform: translateY(8px) rotate(45deg);
  }
  .gnavBtn.active .gnavBtn-bar::after {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* ----- footer ----- */
.footer {
  margin-top: clamp(90px, 26px + 16.95vw, 200px);
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.footer-contact {
  background-color: #222934;
  color: #fff;
  border-radius: 5px;
  padding: 20px 0;
}
.footer-contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 60px;
  flex-wrap: wrap;
  margin-left: auto;
  padding: 0 20px 0 60px;
  width: 100%;
  max-width: calc(100% - (50% - 860px));
}
.footer-contact-top {
  padding: 70px 0;
}
.footer-contact-top-text {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.footer-contact-list {
  display: flex;
  gap: 1px;
}
.footer-contact-item {
  background-color: #313b4b;
}
.footer-contact-item:first-child {
  border-radius: 4px 0 0 4px;
}
.footer-contact-item:last-child {
  border-radius: 0 4px 4px 0;
}
.footer-contact-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 560px;
  height: 320px;
}
.footer-contact-tel-text {
  font-size: 0.9375rem;
}
.footer-contact-tel-text::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 10px;
}
.footer-contact-tel-num {
  line-height: 1;
  margin-top: 10px;
}
.footer-contact-tel-num span:first-child {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.22rem + 2.77vw, 3rem);
}
.footer-contact-mail {
  font-size: clamp(1.25rem, 0.82rem + 1.85vw, 2rem);
  gap: 0 clamp(10px, -13px + 6.16vw, 50px);
}
.footer-contact-mail span {
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
}
.footer-contact-mail span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
}
.footer-content {
  margin-top: 5px;
  background-color: #e8ecef;
  border-radius: 5px;
  padding-top: clamp(45px, 19px + 6.93vw, 90px);
}
.footer-content-top {
  display: flex;
  justify-content: space-between;
}
.footer-content-top-wrapper {
  display: flex;
}
.footer-service-title {
  font-size: clamp(1.25rem, 0.82rem + 1.85vw, 2rem);
  font-weight: 700;
}
.footer-service-title a {
  display: inline-block;
  padding-right: 60px;
  position: relative;
}
.footer-service-title a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}
.footer-service-title a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 14px;
  top: calc(50% - 6px);
}
.footer-service-content {
  margin-top: 30px;
  display: flex;
  gap: 0 60px;
}
.footer-service-content-title {
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 15px;
}
.footer-service-list {
  line-height: 1.5;
  font-size: 0.8125rem;
  color: #5b646d;
}
.footer-service-item + .footer-service-item {
  margin-top: 15px;
}
.footer-service-bottom {
  margin-top: 40px;
  font-weight: 800;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.footer-service-bottom-item + .footer-service-bottom-item {
  margin-top: 20px;
}
.footer-company {
  border-left: 1px solid #d9dde1;
  padding: 0 70px 0 90px;
}
.footer-company-list {
  margin-top: 35px;
}
.footer-company-item {
  font-size: 0.8125rem;
  line-height: 1.5;
  display: flex;
}
.footer-company-item + .footer-company-item {
  margin-top: 15px;
}
.footer-company-name {
  font-weight: 800;
  min-width: 110px;
}
.footer-company-data {
  color: #5b646d;
}
.footer-banner {
  margin-top: 45px;
  border-top: 1px solid #d9dde1;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom {
  border-top: 1px solid #d9dde1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 0 clamp(40px, 20px + 5.39vw, 75px);
}

.home + .footer {
  margin-top: 0;
}

.sitemap {
  border-left: 1px solid #d9dde1;
  margin-left: clamp(90px, 84px + 1.54vw, 100px);
  padding: 8px 60px 18px;
}
.sitemap-list {
  font-weight: 700;
}
.sitemap-item {
  width: 200px;
}
.sitemap-item + .sitemap-item {
  margin-top: 16px;
}
.sitemap-link {
  display: block;
  line-height: 2.5rem;
  position: relative;
}
.sitemap-link::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
}
.sitemap-link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 14px;
  top: calc(50% - 6px);
}

.copy {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 0.625rem;
}

/* ----- main ----- */
.main {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(120px, 85px + 9.24vw, 180px) 20px 0;
}

.home {
  padding-top: clamp(120px, 85px + 9.24vw, 180px);
}
.home-mv-textbox {
  padding: 0 70px;
  position: relative;
  z-index: 2;
}
.home-mv-title {
  font-size: clamp(1.625rem, -0.04rem + 7.09vw, 4.5rem);
  line-height: 1.2;
  font-weight: 800;
}
.home-mv-title span {
  white-space: nowrap;
}
.home-mv-text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.78rem + 0.92vw, 1.375rem);
}
.home-mv-slider {
  margin-top: -120px;
}
.home-mv-slider .swiper-slide {
  width: 100%;
  max-width: 1660px;
}
.home-mv-slider .swiper-slide img {
  border-radius: 5px;
  transition: clip-path 1.5s cubic-bezier(0.61, 1, 0.88, 1);
}
.home-mv-slider .swiper-slide.swiper-slide-next img {
  clip-path: inset(0% 50% 0% 0%);
}
.home-mv-slider .swiper-slide.swiper-slide-active img {
  clip-path: inset(0% 0% 0% 0%);
}
.home-mv-slider .swiper-slide.swiper-slide-prev img {
  clip-path: inset(0% 50% 0% 0%);
}
.home-mv-slider .swiper-pagination {
  position: static;
  margin-top: 10px;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  color: #aaa;
  height: 20px;
}
.home-mv-slider .swiper-pagination-current {
  color: #2e5a83;
  margin-left: 24px;
  margin-right: 10px;
}
.home-mv-slider .swiper-pagination-total {
  margin-left: 10px;
}
.home-mv-slider .swiper-pagination-fraction {
  display: flex;
  align-items: center;
}
.home-mv-slider .swiper-pagination-fraction .border {
  width: 60px;
  height: 2px;
  background-color: #e4e8ee;
  position: relative;
}
.home-mv-slider .swiper-pagination-fraction .border span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #2e5a83;
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}
.home-mv-slider .swiper-pagination.is-active .border span {
  transform: scaleX(1);
  transition: transform 3.85s linear;
}
.home-company {
  margin-top: clamp(90px, 67px + 6.16vw, 130px);
}
.home-company-content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 110px;
}
.home-company-lead {
  font-size: clamp(1.375rem, 0.72rem + 2.77vw, 2.5rem);
  line-height: 1.5;
  font-weight: 800;
}
.home-company-imgbox {
  min-width: 600px;
}
.home-company-imgbox img {
  border-radius: 5px;
}
.home-service {
  margin-top: clamp(100px, 71px + 7.7vw, 150px);
  padding: 65px 0 clamp(45px, 33px + 3.08vw, 65px);
  background-color: #222934;
  color: #fff;
  border-radius: 5px;
}
.home-service .container_m {
  display: flex;
  justify-content: space-between;
  gap: 0 100px;
}
.home-service-top {
  margin-top: 35px;
  width: 100%;
  max-width: 250px;
}
.home-service-phrase {
  margin-top: clamp(50px, 38px + 3.08vw, 70px);
}
.home-service-content {
  width: 100%;
  max-width: 1250px;
}
.home-service-list {
  display: flex;
  gap: 10px;
}
.home-service-item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  border-radius: 5px;
}
.home-service-item:first-child {
  max-width: 800px;
  background: linear-gradient(to bottom, rgba(0, 94, 181, 0.75), rgba(0, 94, 181, 0.75) 35%, rgb(0, 94, 181) 100%), url(./img/top/service-bg01.jpg) no-repeat;
  background-size: cover;
}
.home-service-item:last-child {
  max-width: 440px;
  background: linear-gradient(to bottom, rgba(245, 139, 58, 0.75), rgba(245, 139, 58, 0.75) 35%, rgb(245, 139, 58) 100%), url(./img/top/service-bg02.jpg) no-repeat;
  background-size: cover;
}
.home-service-item-title {
  font-size: clamp(1.375rem, 0.72rem + 2.77vw, 2.5rem);
  line-height: 1.3;
  padding: clamp(30px, 18px + 3.08vw, 50px) 40px;
  min-height: clamp(130px, 3px + 33.9vw, 350px);
}
.home-service-item-filter {
  -webkit-backdrop-filter: blur(13px) brightness(0.8) saturate(1.2);
          backdrop-filter: blur(13px) brightness(0.8) saturate(1.2);
  padding: clamp(25px, 16px + 2.31vw, 40px) 40px clamp(35px, 31px + 1.08vw, 42px);
  border-radius: 0 0 5px 5px;
  height: 100%;
}
.home-service-item-list {
  display: grid;
  gap: 10px 20px;
}
.home-service-item:first-child .home-service-item-list {
  grid-template-columns: repeat(2, 1fr);
}
.home-service-item:last-child .home-service-item-list {
  grid-template-columns: repeat(1, 1fr);
}
.home-service-item-item {
  font-size: 0.9375rem;
}
.home-service-item-item a {
  display: block;
  padding: 10px 32px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}
.home-service-item-item a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
}
.home-service-item-bottom {
  margin-top: 35px;
  display: flex;
  gap: 15px 30px;
  flex-wrap: wrap;
}
.home-service-item-bottom-item {
  font-weight: 400;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.home-service-item-bottom-item::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/arrow-circle-white.svg);
}
.home-service-bottom {
  margin-top: 30px;
  border-radius: 5px;
  background-color: #111;
  padding: clamp(10px, 2px + 2.16vw, 24px) 40px;
  display: flex;
}
.home-service-bottom-item {
  font-size: 1rem;
  width: 50%;
}
.home-service-bottom-item:first-child {
  border-right: 1px solid #3d3d3d;
  padding-right: 40px;
}
.home-service-bottom-item:last-child {
  padding-left: 40px;
}
.home-service-bottom-item a {
  display: block;
  line-height: 2.5rem;
  padding: 16px 60px 16px 0;
  position: relative;
}
.home-service-bottom-item a::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}
.home-service-bottom-item a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 14px;
  top: calc(50% - 6px);
}
.home-strengths {
  margin-top: clamp(100px, 71px + 7.7vw, 150px);
  display: flex;
  justify-content: space-between;
  gap: 0 100px;
}
.home-strengths-top {
  width: 100%;
  max-width: 250px;
}
.home-strengths-imgbox {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}
.home-strengths-imgbox img {
  border-radius: 5px;
}
.home-strengths-lead {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}
.home-strengths-content {
  width: 100%;
  max-width: 1250px;
}
.home-strengths-item {
  border-top: 1px solid #111;
  display: flex;
  gap: 0 100px;
  justify-content: space-between;
  padding: clamp(30px, 21px + 2.31vw, 45px) 0 clamp(40px, 28px + 3.08vw, 60px);
}
.home-strengths-title {
  display: flex;
  font-size: clamp(1.25rem, 0.89rem + 1.54vw, 1.875rem);
  line-height: 1.5;
}
.home-strengths-num {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-right: 15px;
  margin-top: 4px;
}
.home-strengths-text {
  font-size: 0.875rem;
  max-width: 520px;
  width: 100%; 
}
.home-strengths .btn-style01 {
  margin-left: auto;
  margin-top: clamp(20px, 3px + 4.62vw, 50px);
}
.home-cases {
  margin-top: clamp(100px, 71px + 7.7vw, 150px);
  background-color: #e8ecef;
  border-radius: 5px;
  padding: clamp(55px, 48px + 1.85vw, 67px) 0;
}
.home-cases .container_m {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 125px;
}
.home-cases-content {
  display: flex;
  gap: 0 125px;
}
.home-cases-lead {
  margin-top: 30px;
  font-size: clamp(1.375rem, 0.87rem + 2.16vw, 2.25rem);
  line-height: 1.5;
}
.home-cases-imgbox img {
  border-radius: 5px;
}
.home-news {
  margin-top: clamp(100px, 71px + 7.7vw, 150px);
  min-height: 130px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.home-news .news-list {
  width: calc(100% - 350px);
}
.home-news .btn-style01 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.home-recruit {
  margin-top: clamp(120px, 74px + 12.33vw, 200px);
  background-image: url(./img/top/recruit-bg.jpg);
  background-size: cover;
  padding: clamp(55px, 35px + 5.39vw, 90px) 0 clamp(50px, 33px + 4.62vw, 80px);
}
.home-recruit .container_m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 100px;
}
.home-recruit-lead {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
  font-size: clamp(1.875rem, 0.94rem + 4.01vw, 3.5rem);
  line-height: 1.5;
  white-space: nowrap;
}
.home-recruit-text {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  line-height: 2;
}
.home-recruit-gallery {
  margin-right: 10px;
  position: relative;
}
.home-recruit-gallery-wrapper01 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-recruit-gallery-wrapper02 {
  display: flex;
  align-items: center;
  gap: 0 150px;
}
.home-recruit-gallery-imgbox01 {
  width: 30%;
}
.home-recruit-gallery-imgbox02 {
  width: 54%;
}
.home-recruit-gallery-imgbox03 {
  width: 50%;
  margin-top: -75px;
  margin-right: 4%;
}
.home-recruit-gallery-text {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
  font-style: italic;
  color: #fff;
  font-size: clamp(2.375rem, 1.36rem + 4.31vw, 4.125rem);
  line-height: 1.13;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -43%);
}
.home-recruit-gallery-text span {
  white-space: nowrap;
}
.home-recruit-gallery-text span:nth-child(2) {
  margin-left: clamp(20px, -29px + 13.1vw, 105px);
}
.home-recruit-gallery-text span:last-child {
  margin-left: clamp(40px, -52px + 24.65vw, 200px);
}

.child-mv {
  margin-bottom: clamp(60px, 14px + 12.33vw, 140px);
}
.child-mv:has(.child-mv-imgbox) {
  margin-bottom: clamp(70px, 6px + 16.95vw, 180px);
}
.child-mv-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px 100px;
  flex-wrap: wrap;
  padding: 0 40px 0 70px;
}
.child-mv-text {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}
.child-mv-title {
  margin-top: 20px;
  font-size: clamp(1.625rem, 0.25rem + 5.86vw, 4rem);
  font-weight: 800;
  line-height: 1.5;
}
.child-mv-imgbox {
  margin-top: 40px;
}
.child-mv-imgbox img {
  border-radius: 5px;
}
.child-mv-content {
  margin-top: 40px;
  background-color: #f5f7f8;
  border-radius: 5px;
  padding: clamp(50px, 21px + 7.7vw, 100px) 0;
}
.child-mv-content .container_m {
  display: flex;
  gap: 0 120px;
}
.child-mv-textbox {
  width: 46%;
  max-width: 730px;
}
.child-mv-textbox-title {
  font-size: clamp(1.375rem, 0.87rem + 2.16vw, 2.25rem);
  line-height: 1.5;
  font-weight: 800;
  margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
}
.child-mv-gallery {
  width: 47%;
  max-width: 750px;
}
.child-mv-gallery-imgbox {
  width: 100%;
}
.child-mv-gallery-imgbox img {
  border-radius: 5px;
}
.child-mv-gallery-list {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.child-mv-gallery-item {
  width: 90px;
}
.child-mv-gallery-item:not(.current) {
  cursor: pointer;
  position: relative;
}
.child-mv-gallery-item:not(.current)::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.child-mv-gallery-item img {
  border-radius: 5px;
}
.child-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 110px;
}
.child-wrapper.mt-150 {
  margin-top: clamp(80px, 40px + 10.79vw, 150px);
}
.child-content {
  width: 100%;
}
.child-block {
  display: flex;
}
.child-block + .child-block {
  margin-top: clamp(90px, 26px + 16.95vw, 200px);
}
.child-block-title {
  min-width: 350px;
  font-size: clamp(1.25rem, 1.03rem + 0.92vw, 1.625rem);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}
.child-block-title .sticky {
  position: sticky;
  top: 130px;
  display: block;
}
.child-block-content {
  max-width: 1250px;
  width: 100%;
}
.child-block-item:not(:first-child) {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
}
.child-block-item-item + .child-block-item-item {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}
.child-block-gallery {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, 290px);
}
.child-block-gallery-item img {
  border-radius: 5px;
}
.child-block-flexbox {
  display: flex;
  gap: 0 50px;
}
.child-block-flexbox-gallery {
  display: flex;
  gap: 0 15px;
}
.child-block-flexbox-imgbox {
  min-width: 300px;
}
.child-block-flexbox-imgbox img {
  border-radius: 5px;
}
.child-block-flexbox02 {
  display: flex;
  gap: 0 50px;
}
.child-block-flexbox02-imgbox {
  min-width: 210px;
}
.child-block-flexbox02-imgbox img {
  border-radius: 5px;
}

.breadcrumb {
  display: flex;
  font-size: 0.6875rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 24px;
  margin-left: 20px;
  background-image: url(./img/common/arrow-s-base.svg);
  background-position: left center;
}
.breadcrumb-item:last-child {
  color: #a5a9b4;
}

.anchor-list {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
  margin-bottom: clamp(80px, 57px + 6.16vw, 120px);
  border: 1px solid #d9dde1;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  padding: clamp(30px, 18px + 3.08vw, 50px);
}
.anchor-item {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
}
.anchor-item-border {
  padding-left: 60px;
  position: relative;
}
.anchor-item-border::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #d9dde1;
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
}
.anchor-link {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.anchor-link::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/arrow-circle-gray.svg);
}
.anchor-block {
  position: sticky;
  top: 130px;
  min-width: 240px;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.5;
}
.anchor-block-list {
  font-weight: 700;
}
.anchor-block-item + .anchor-block-item {
  margin-top: 20px;
}
.anchor-block-item-list {
  margin-top: 12px;
  margin-left: 35px;
  font-weight: 500;
}
.anchor-block-item-item + .anchor-block-item-item {
  margin-top: 8px;
}
.anchor-block-item-item a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.anchor-block-item-item a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #111;
  position: absolute;
  top: 50%;
  left: 0;
}
.anchor-block-link {
  display: flex;
  align-items: center;
  gap: 0 12px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.anchor-block-link::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  aspect-ratio: 1/1;
  background-color: #e8ecef;
  border-radius: 50%;
  transition: background-color 0.4s;
}
.anchor-block-link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  left: 8px;
  transition: border-color 0.4s;
}
@media screen and (min-width: 1301px) {
  .anchor-block-link.current::before {
    background-color: #111;
  }
  .anchor-block-link.current::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.anchor-block-btns:not(:first-child) {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  border-top: 1px solid #d9dde1;
  padding-top: clamp(30px, 24px + 1.54vw, 40px);
}
.anchor-block-btn {
  max-width: 240px;
}
.anchor-block-btn a {
  display: block;
  padding-right: 54px;
  position: relative;
}
.anchor-block-btn a::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
}
.anchor-block-btn a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
}
.anchor-block-btn a span {
  display: block;
  border-radius: 3px;
  line-height: 3.3125rem;
  padding: 0 18px;
}
.anchor-block-btn.download a {
  color: #111;
}
.anchor-block-btn.download a::before {
  background-color: #e3e8ef;
}
.anchor-block-btn.download a::after {
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-download-base.svg);
  top: calc(50% - 7px);
}
.anchor-block-btn.download span {
  background-color: #e3e8ef;
}
.anchor-block-btn.bg-blue a {
  color: #fff;
}
.anchor-block-btn.bg-blue a::before {
  background-color: #005eb5;
}
.anchor-block-btn.bg-blue a::after {
  background-image: url(./img/common/arrow-white.svg);
}
.anchor-block-btn.bg-blue span {
  background-color: #005eb5;
}
.anchor-block-btn + .anchor-block-btn {
  margin-top: 10px;
}
.anchor-block-back {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.anchor-block-back::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  transform: rotate(180deg);
}

.news-item {
  border: 1px solid #d9dde1;
  border-radius: 5px;
}
.news-item + .news-item {
  margin-top: 12px;
}
.news-link {
  display: flex;
  gap: 0 65px;
  padding: 42px 112px 42px 50px;
  position: relative;
}
.news-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 50px;
  top: calc(50% - 6px);
}
.news-date {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 0.9375rem;
}
.news-title {
  line-height: 1.5;
}
.news-detail-title {
  font-size: clamp(1.375rem, 0.87rem + 2.16vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
  margin: clamp(15px, 9px + 1.54vw, 25px) 0 clamp(30px, 27px + 0.77vw, 35px);
}
.news-detail-editor {
  border-top: 1px solid #d9dde1;
  border-bottom: 1px solid #d9dde1;
  padding: clamp(50px, 44px + 1.54vw, 60px) 0 clamp(80px, 40px + 10.79vw, 150px);
}
.news-detail-editor p + p {
  margin-top: clamp(20px, 17px + 0.77vw, 25px);
}
.news-detail-editor p + p:has(img) {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}
.news-detail-editor p + p:has(a) {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.news-detail-editor p:has(img) + p {
  margin-top: clamp(40px, 28px + 3.08vw, 60px);
}
.news-detail-editor p:has(img) + p:has(img) {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.news-detail-editor p:has(a) + p {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.news-detail-editor p:has(a) + p:has(a) {
  margin-top: 15px;
}
.news-detail-editor p:has(.alignleft) {
  text-align: left;
}
.news-detail-editor p:has(.aligncenter) {
  text-align: center;
}
.news-detail-editor p:has(.alignright) {
  text-align: right;
}
.news-detail-editor h4 {
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  font-weight: 800;
  line-height: 1.5;
  background-color: #e8ecef;
  border-radius: 5px;
  padding: clamp(20px, 14px + 1.54vw, 30px);
  margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
}
.news-detail-editor h4:not(:first-child) {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
}
.news-detail-editor h5 {
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
  line-height: 1.5;
  font-weight: 800;
  border-bottom: 1px solid #111;
  padding-bottom: clamp(10px, 7px + 0.77vw, 15px);
  margin-bottom: clamp(25px, 22px + 0.77vw, 30px);
}
.news-detail-editor h5:not(:first-child) {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.news-detail-editor h6 {
  font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
  font-weight: 800;
  margin-bottom: clamp(20px, 17px + 0.77vw, 25px);
}
.news-detail-editor h6:not(:first-child) {
  margin-top: clamp(25px, 22px + 0.77vw, 30px);
}
.news-detail-editor a {
  display: flex;
  align-items: center;
  gap: 0 15px;
  flex-direction: row-reverse;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  position: relative;
}
.news-detail-editor a::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  background-color: #111;
  border-radius: 5px;
}
.news-detail-editor a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
}
.news-detail-editor a[target=_blank]::after {
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-link-white.svg);
  top: calc(50% - 7px);
  right: 19px;
}

.wp-pagenavi {
  margin-top: clamp(40px, 17px + 6.16vw, 80px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wp-pagenavi a:not(.previouspostslink, .nextpostslink),
.wp-pagenavi span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 0.9375rem;
  width: 53px;
  line-height: 3.3125rem;
  text-align: center;
}
.wp-pagenavi span.current {
  position: relative;
}
.wp-pagenavi span.current::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: calc(50% - 9px);
  bottom: 5px;
}

.previouspostslink,
.nextpostslink {
  line-height: 3.3125rem;
  position: absolute;
}
.previouspostslink::before,
.nextpostslink::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  background-color: #111;
  border-radius: 5px;
  position: absolute;
  top: calc(50% - 26.5px);
}
.previouspostslink::after,
.nextpostslink::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
}

.previouspostslink {
  left: 0;
  padding-left: clamp(62px, 59px + 0.92vw, 68px);
}
.previouspostslink::before {
  left: 0;
}
.previouspostslink::after {
  background-image: url(./img/common/arrow-white.svg);
  left: 20px;
  transform: rotate(180deg);
}

.nextpostslink {
  right: 0;
  padding-right: clamp(62px, 59px + 0.92vw, 68px);
}
.nextpostslink::before {
  right: 0;
}
.nextpostslink::after {
  background-image: url(./img/common/arrow-white.svg);
  right: 20px;
}

.strengths-item {
  border-top: 1px solid #111;
  padding-top: 20px;
}
.strengths-item + .strengths-item {
  margin-top: clamp(90px, 26px + 16.95vw, 200px);
}
.strengths-num {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.strengths-content {
  margin-top: clamp(20px, 8px + 3.08vw, 40px);
  display: flex;
  justify-content: space-between;
}
.strengths-title {
  font-size: clamp(1.375rem, 0.44rem + 4.01vw, 3rem);
  font-weight: 800;
  line-height: 1.5;
}
.strengths-imgbox {
  margin-top: 94px;
  min-width: 300px;
}
.strengths-imgbox img {
  border-radius: 3px;
}
.strengths-textbox {
  max-width: 750px;
}
.strengths-lead {
  font-size: clamp(1.25rem, 1.03rem + 0.92vw, 1.625rem);
  font-weight: 800;
  line-height: 1.5;
}
.strengths-bottom {
  margin-top: clamp(90px, 73px + 4.62vw, 120px);
  background-color: #e8ecef;
  border-radius: 5px;
  padding: clamp(60px, 25px + 9.24vw, 120px) 0;
}
.strengths-bottom .container_m {
  display: flex;
  justify-content: space-between;
}
.strengths-bottom-title {
  font-size: clamp(1.375rem, 0.87rem + 2.16vw, 2.25rem);
  line-height: 1.5;
}
.strengths-bottom-textbox {
  max-width: 750px;
}
.strengths-bottom-highlight {
  margin-top: clamp(40px, 34px + 1.54vw, 50px);
  font-size: clamp(1.125rem, 0.84rem + 1.23vw, 1.625rem);
  line-height: 1.5;
  font-weight: 800;
}

.company-item + .company-item {
  margin-top: 30px;
}

.contact-tel-list {
  margin-top: clamp(35px, 26px + 2.31vw, 50px);
}
.contact-tel-item {
  background-color: #e8ecef;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: clamp(25px, 22px + 0.77vw, 30px) clamp(25px, 11px + 3.85vw, 50px);
}
.contact-tel-item + .contact-tel-item {
  margin-top: 10px;
}
.contact-tel-name {
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
  font-weight: 800;
  min-width: 200px;
}
.contact-tel-num {
  display: flex;
  align-items: center;
  gap: clamp(10px, 7px + 0.77vw, 15px) 80px;
  flex-wrap: wrap;
}
.contact-tel-num-text {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(1.625rem, 1.48rem + 0.62vw, 1.875rem);
  min-width: 270px;
  display: flex;
  justify-content: flex-end;
  gap: 0 15px;
  line-height: 1;
}
.contact-tel-num-text span {
  font-size: 0.8125rem;
  text-transform: uppercase;
  line-height: 1.6;
}
.contact-form {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
}
.contact-form-item + .contact-form-item {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.contact-form-text {
  margin-bottom: clamp(10px, 4px + 1.54vw, 20px);
}
.contact-form-name {
  font-size: clamp(1.125rem, 1.05rem + 0.31vw, 1.25rem);
  font-weight: 800;
}
.contact-thanks-title {
  font-size: clamp(1.375rem, 0.87rem + 2.16vw, 2.25rem);
  font-weight: 800;
  margin-bottom: clamp(35px, 21px + 3.85vw, 60px);
}
.contact-thanks .btn-style01 {
  margin: clamp(60px, 37px + 6.16vw, 100px) auto 0;
}

.required,
.optional {
  font-size: 0.8125rem;
  font-weight: 800;
  margin-left: 10px;
}

.required {
  color: #ff0034;
}

.wpcf7-checkbox {
  display: block;
  padding: 10px 0;
}
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 12px;
}

p:has(.wpcf7-submit) {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
  transition: opacity 0.4s;
  position: relative;
}
p:has(.wpcf7-submit):hover {
  opacity: 0.7;
}
p:has(.wpcf7-submit)::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  right: 30px;
  top: calc(50% - 26.5px);
  pointer-events: none;
}
p:has(.wpcf7-submit)::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-base.svg);
  position: absolute;
  right: 50px;
  top: calc(50% - 6px);
  pointer-events: none;
}

.wpcf7-submit {
  width: 100%;
  background-color: #111;
  color: #fff;
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  border-radius: 5px;
  padding: clamp(30px, 27px + 0.77vw, 35px) 113px clamp(30px, 27px + 0.77vw, 35px) 35px;
}

.wpcf7-spinner {
  margin: 0;
  width: 0;
  height: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  font-weight: 700;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  margin-bottom: 0;
}

.products-wrapper .child-block-title {
  min-width: clamp(250px, -750px + 62.5vw, 350px);
}
.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: clamp(40px, 28px + 3.08vw, 60px) 50px;
}
.products-item {
  max-width: 600px;
}
.products-item-imgbox img {
  border-radius: 5px;
}
.products-item-title {
  margin-top: 10px;
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  line-height: 1.5;
  font-weight: 600;
  border-bottom: 1px solid #d9dde1;
  padding-right: 50px;
  padding-bottom: 20px;
  position: relative;
}
.products-item-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background-color: #111;
  position: absolute;
  right: 0;
  top: calc((100% - 20px) / 2 - 20px);
}
.products-item-title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  right: 14px;
  top: calc((100% - 20px) / 2 - 6px);
}
.products-item-list {
  margin-top: 25px;
  color: #5b646d;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.products-item-item + .products-item-item {
  margin-top: 2px;
}
.products-table th:first-child, .products-table th:nth-child(3) {
  width: 17.78%;
}
.products-table th:nth-child(2), .products-table th:last-child {
  width: 20%;
}
.products-table th:nth-child(4), .products-table th:nth-child(5) {
  width: 12.22%;
}
.products-feature-item {
  border-bottom: 1px solid #d9dde1;
  padding-bottom: 50px;
}
.products-feature-item:not(:first-child) {
  margin-top: 50px;
}
.products-feature-title {
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  line-height: 1.5;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 25px;
}
.products-feature-title-num {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  min-width: 50px;
  line-height: 2.5rem;
  text-align: center;
  background-color: #e8ecef;
}
.products-feature-content {
  display: flex;
  gap: 0 50px;
}
.products-feature-textbox .btn-style03 {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
}
.products-feature-imgbox {
  min-width: 210px;
}
.products-feature-imgbox img {
  border-radius: 5px;
}
.products-option-list {
  margin-top: clamp(25px, 22px + 0.77vw, 30px);
  display: grid;
  grid-template-columns: repeat(auto-fit, 140px);
  gap: 12px;
}
.products-option-color {
  margin-top: 5px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.875rem;
}
.products-option-color.green {
  background-color: #0e8f00;
}
.products-option-color.pink {
  background-color: #f969b1;
}
.products-option-color.yellow {
  background-color: #bacb15;
}
.products-option-color.gray {
  background-color: #c8c9c9;
}
.products-option-color.blue {
  background-color: #003e8f;
}
.products-option-color.black {
  background-color: #1c1e21;
}
.products-sitemap {
  margin-top: clamp(90px, 26px + 16.95vw, 200px);
  display: flex;
  gap: clamp(60px, 48px + 3.08vw, 80px) 100px;
  flex-wrap: wrap;
}
.products-sitemap-title {
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 30px;
}
.products-sitemap-block:first-child .products-sitemap-list {
  grid-template-columns: repeat(2, minmax(300px, 350px));
}
.products-sitemap-list {
  font-size: 0.9375rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 350px));
  gap: 10px 40px;
}
.products-sitemap-item {
  border-bottom: 1px solid #d9dde1;
}
.products-sitemap-item span,
.products-sitemap-item a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  padding: 0 0 10px;
  position: relative;
}
.products-sitemap-item span::before,
.products-sitemap-item a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #111;
}
.products-sitemap-item span::after,
.products-sitemap-item a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  right: 14px;
  top: calc((100% - 10px) / 2 - 6px);
}
.products-sitemap-item span {
  color: rgba(17, 17, 17, 0.33);
}
.products-sitemap-item span::before {
  background-color: rgba(17, 17, 17, 0.15);
}
.products-sitemap-bottom {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  font-size: 0.9375rem;
  display: flex;
  gap: 10px 40px;
  flex-wrap: wrap;
}
.products-sitemap-bottom-item {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.products-sitemap-bottom-item::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/arrow-circle-base.svg);
}
.products-sitemap-btns {
  width: 100%;
  max-width: 310px;
}
.products-sitemap-btn a {
  display: block;
  color: #fff;
  font-size: 1rem;
  padding-right: 54px;
  position: relative;
}
.products-sitemap-btn a::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 3px;
  background-color: #111;
  position: absolute;
  right: 0;
  top: 0;
}
.products-sitemap-btn a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./img/common/arrow-white.svg);
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
}
.products-sitemap-btn a span {
  display: block;
  border-radius: 3px;
  background-color: #111;
  line-height: 3.3125rem;
  padding: 0 23px;
}
.products-sitemap-btn.download a {
  color: #111;
}
.products-sitemap-btn.download a::before {
  background-color: #e3e8ef;
}
.products-sitemap-btn.download a::after {
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-download-base.svg);
  top: calc(50% - 7px);
}
.products-sitemap-btn.download span {
  background-color: #e3e8ef;
}
.products-sitemap-btn + .products-sitemap-btn {
  margin-top: 15px;
}
.products-data-list {
  margin-top: clamp(30px, 24px + 1.54vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(30px, 24px + 1.54vw, 40px) 10px;
}
.products-data-item figure {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.products-data-imgbox {
  height: 100%;
  max-height: 880px;
  border: 1px solid #d9dde1;
  border-radius: 5px;
  padding: clamp(20px, 14px + 1.54vw, 30px);
  max-width: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.products-data-imgbox::before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 53px;
  background-color: rgba(17, 17, 17, 0.33);
  border-radius: 5px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.products-data-imgbox::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(./img/common/icn-loupe.svg);
  position: absolute;
  right: 36px;
  bottom: 36px;
}
.products-data-imgbox img {
  max-height: 100%;
}

.btn-style04 + .container_m > .products-sitemap {
  margin-top: clamp(60px, 48px + 3.08vw, 80px);
}

.modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 14px + 1.54vw, 30px);
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  margin: auto;
}
.modal-close {
  position: fixed;
  top: 15px;
  right: 15px;
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  filter: drop-shadow(3px 3px 3px rgba(17, 17, 17, 0.33));
}
.modal-close::before, .modal-close::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #d9dde1;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 15px);
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 1600px) {
  .footer-content-top {
    display: block;
  }
  .footer-company {
    margin-top: 45px;
    border-left: none;
    border-top: 1px solid #d9dde1;
    padding: 45px 0 0;
  }
  .sitemap {
    padding-right: 0;
  }
  .home-service-item:first-child .home-service-item-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-strengths-item {
    display: block;
  }
  .home-strengths-text {
    max-width: none;
    margin-top: clamp(20px, 14px + 1.54vw, 30px);
  }
  .home-recruit-gallery-wrapper02 {
    gap: 0 100px;
  }
  .home-company-textbox {
    width: 50%;
  }
  .home-company-imgbox {
    min-width: 0;
  }
  .home-cases-content {
    display: block;
  }
  .home-cases-imgbox {
    margin-top: 40px;
  }
  .home-cases .container_m {
    justify-content: stretch;
  }
  .strengths-content {
    display: block;
  }
  .strengths-textbox {
    max-width: none;
    margin-top: clamp(40px, 28px + 3.08vw, 60px);
  }
  .strengths-imgbox {
    margin-top: clamp(35px, 26px + 2.31vw, 50px);
    min-width: 0;
  }
  .strengths-bottom .container_m {
    display: block;
  }
  .strengths-bottom-textbox {
    max-width: none;
    margin-top: clamp(40px, 28px + 3.08vw, 60px);
  }
  .products-wrapper .child-block {
    display: block;
  }
  .products-wrapper .child-block-content {
    width: auto;
  }
  .products-wrapper .child-block-content .sticky {
    position: static;
  }
  .products-wrapper .child-block-title {
    min-width: 0;
    margin-bottom: clamp(40px, 17px + 6.16vw, 80px);
  }
  .child-mv-textbox {
    width: 49%;
  }
  .child-mv-gallery {
    width: 41%;
  }
}
@media screen and (max-width: 1300px) {
  .footer-contact-container {
    display: block;
  }
  .footer-contact-item {
    width: 50%;
    max-width: 560px;
  }
  .footer-contact-item a {
    width: auto;
  }
  .home-company-content {
    display: block;
  }
  .home-company-textbox {
    width: auto;
  }
  .home-company-imgbox {
    margin-top: clamp(40px, 28px + 3.08vw, 60px);
  }
  .home-service .container_m {
    display: block;
  }
  .home-service-top {
    width: auto;
    max-width: none;
    margin-bottom: clamp(60px, 48px + 3.08vw, 80px);
  }
  .home-recruit .container_m {
    display: block;
  }
  .home-recruit-gallery-wrapper02 {
    gap: 0 150px;
  }
  .child-block {
    display: block;
  }
  .child-block-content {
    width: auto;
  }
  .child-block-title {
    min-width: 0;
    margin-bottom: clamp(40px, 17px + 6.16vw, 80px);
  }
  .child-mv-content .container_m {
    display: block;
  }
  .child-mv-textbox {
    width: auto;
    max-width: none;
  }
  .child-mv-gallery {
    margin-top: clamp(60px, 43px + 4.62vw, 90px);
    width: auto;
  }
  .child-wrapper {
    display: block;
  }
  .anchor-block {
    position: static;
    min-width: 0;
    height: auto;
    margin-bottom: clamp(80px, 45px + 9.24vw, 140px);
  }
  .anchor-block-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .anchor-block-item-list {
    display: flex;
    align-items: center;
    gap: 8px 15px;
    flex-wrap: wrap;
  }
  .anchor-block-item + .anchor-block-item,
  .anchor-block-item-item + .anchor-block-item-item {
    margin-top: 0;
  }
  .anchor-block-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .anchor-block-btn + .anchor-block-btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-container {
    padding: 0 clamp(20px, -3px + 6.16vw, 60px);
  }
  .footer-contact-top {
    padding: clamp(35px, 21px + 3.85vw, 60px) 0;
  }
  .footer-contact-list {
    display: block;
  }
  .footer-contact-item {
    width: auto;
  }
  .footer-contact-item a {
    height: clamp(120px, 74px + 12.33vw, 200px);
  }
  .footer-contact-item:first-child {
    border-radius: 4px 4px 0 0;
  }
  .footer-contact-item:last-child {
    margin-top: 1px;
    border-radius: 0 0 4px 4px;
  }
  .home-mv-textbox {
    padding: 0 clamp(20px, -3px + 6.16vw, 60px);
  }
  .home-service-list {
    display: block;
  }
  .home-service-item:last-child {
    margin-top: 10px;
  }
  .home-service-item:first-child .home-service-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-strengths {
    display: block;
  }
  .home-strengths-top {
    width: auto;
    max-width: none;
    margin-bottom: clamp(50px, 44px + 1.54vw, 60px);
  }
  .home-cases .container_m {
    display: block;
  }
  .home-cases .btn-style01 {
    margin-bottom: 0;
  }
  .home-news {
    display: block;
  }
  .home-news .news-list {
    width: auto;
    margin-top: clamp(40px, 34px + 1.54vw, 50px);
  }
  .home-news .btn-style01 {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: clamp(40px, 28px + 3.08vw, 60px);
  }
  .child-mv-container {
    padding: 0 40px 0 clamp(20px, -3px + 6.16vw, 60px);
  }
  .child-block-flexbox:has(.child-block-flexbox-gallery) {
    display: block;
  }
  .child-block-flexbox-gallery .child-block-flexbox-imgbox {
    margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
    min-width: 0;
  }
}
@media screen and (min-width: 901px) {
  .max-900 {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .footer-content-top-wrapper {
    display: block;
  }
  .sitemap {
    margin-left: 0;
    margin-top: 45px;
    padding: 45px 0 0;
    border-left: none;
    border-top: 1px solid #d9dde1;
  }
  .home-service-bottom {
    display: block;
  }
  .home-service-bottom-item {
    width: auto;
  }
  .home-service-bottom-item:first-child {
    border-right: none;
    border-bottom: 1px solid #3d3d3d;
    padding-right: 0;
    padding-bottom: clamp(10px, 4px + 1.54vw, 20px);
  }
  .home-service-bottom-item:last-child {
    padding-left: 0;
    padding-top: clamp(10px, 4px + 1.54vw, 20px);
  }
  .wp-pagenavi {
    padding-bottom: 70px;
  }
  .previouspostslink,
  .nextpostslink {
    bottom: 0;
  }
  .table-style02-outer:has(.products-table) {
    overflow-x: scroll;
  }
  .products-table {
    width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .table-style01-row {
    display: block;
  }
  .table-style01-header {
    min-width: 0;
    margin-bottom: clamp(15px, 12px + 0.77vw, 20px);
  }
  .table-style02-outer {
    overflow-x: scroll;
  }
  .table-style02:not(.products-table) {
    width: 720px;
  }
  .home-mv-slider {
    margin-top: -100px;
  }
  .home-service-item:first-child .home-service-item-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-recruit-gallery {
    margin-top: clamp(60px, 54px + 1.54vw, 70px);
    margin-right: 0;
    padding: 0 10px;
  }
  .home-recruit-gallery-wrapper01,
  .home-recruit-gallery-wrapper02 {
    display: block;
  }
  .home-recruit-gallery-imgbox01,
  .home-recruit-gallery-imgbox02,
  .home-recruit-gallery-imgbox03 {
    width: 90%;
  }
  .home-recruit-gallery-imgbox02 {
    margin-top: -30px;
    margin-left: auto;
    text-align: right;
  }
  .home-recruit-gallery-imgbox03 {
    margin-left: clamp(10px, 4px + 1.54vw, 20px);
  }
  .child-mv-container {
    padding: 0 clamp(20px, -3px + 6.16vw, 60px);
  }
  .child-block-flexbox {
    display: block;
  }
  .child-block-flexbox-imgbox {
    min-width: 0;
    margin-bottom: clamp(30px, 24px + 1.54vw, 40px);
  }
  .anchor-item-border {
    padding-left: 0;
    padding-top: 30px;
  }
  .anchor-item-border::before {
    width: 100%;
    height: 1px;
  }
  .products-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-feature-content {
    display: block;
  }
  .products-feature-imgbox {
    margin-top: clamp(30px, 24px + 1.54vw, 40px);
  }
  .products-sitemap-block:first-child .products-sitemap-list {
    grid-template-columns: repeat(1, minmax(300px, 350px));
  }
}
@media screen and (max-width: 620px) {
  .home-mv-slider {
    margin-top: -10px;
  }
  .home-recruit-gallery-imgbox03 {
    margin-top: -20px;
  }
  .child-block-flexbox-gallery {
    display: block;
  }
  .child-block-flexbox02 {
    display: block;
  }
  .child-block-flexbox02-imgbox {
    min-width: 0;
    margin-top: 30px;
  }
  .news-link {
    display: block;
    padding: 20px 62px 20px 25px;
  }
  .news-link::before {
    right: 25px;
  }
  .news-date {
    margin-bottom: 5px;
  }
  .contact-tel-item {
    display: block;
  }
  .contact-tel-name {
    min-width: 0;
    margin-bottom: clamp(15px, 12px + 0.77vw, 20px);
  }
  .contact-tel-num-text {
    min-width: 0;
  }
}
@media screen and (max-width: 520px) {
  .footer-service-content {
    display: block;
  }
  .footer-service-col + .footer-service-col {
    margin-top: 40px;
  }
  .footer-company .logo {
    width: 90%;
  }
  .footer-company-item {
    display: block;
  }
  .footer-company-name {
    margin-bottom: 5px;
  }
  .home-service-top {
    margin-top: 0;
  }
  .home-service-phrase {
    width: 200px;
  }
  .home-service-item-filter {
    padding: clamp(25px, 16px + 2.31vw, 40px) 22px clamp(35px, 31px + 1.08vw, 42px);
  }
  .home-service-item-title {
    padding: clamp(30px, 18px + 3.08vw, 50px) 22px;
  }
  .home-service-bottom {
    padding: clamp(10px, 2px + 2.16vw, 24px) 22px;
  }
  .home-recruit-gallery-imgbox01 {
    width: 80%;
  }
  .home-recruit-gallery-imgbox03 {
    margin-right: 0;
  }
  .child-block-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-sitemap-block {
    width: 100%;
  }
  .products-sitemap-list,
  .products-sitemap-block:first-child .products-sitemap-list,
  .products-data-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

body:has(.main.recruit) .header:not(.is-show){
  background: transparent;
}
.main.recruit{
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.recruit-hdg01{
  text-align: center;
  font-size: min(5.8vw, 60px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: min(6.3vw, 65px);
}
.recruit-hdg02{
  padding-top: 43px;
  background: url(./img/recruit/hdg02_deco.png) no-repeat top;
  text-align: center;
  font-weight: 900;
  margin-bottom: 60px;
  &.is-white{
    color: #fff;
    background-image: url(./img/recruit/hdg02_deco_white.png);
  }
}
.recruit-hdg02__en{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: min(12.2vw, 110px);
  display: block;
  line-height: 1.2;
}
.recruit-hdg03{
  font-size: clamp(1.5rem, 1.13rem + 1.58vw, 2rem);
  width: max-content;
  max-width: 100%;
  color: #005EB5;
  border-bottom: 3px solid #005EB5;
  line-height: 1.4;
  margin: 0 auto 40px;
}
.recruit-mv{
  width: 100%;
}
.recruit-top{
  text-align: center;
  line-height: 2;
  font-size: min(4vw, 22px);
  padding-bottom: min(24vw, 180px);
  p + p{
    margin-top: 40px;
  }
}
.recruit-top__image{
  text-align: center;
  margin-top: 80px;
}

.recruit-feature{
  padding-bottom: min(16vw, 120px);
}
.recruit-feature__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  counter-reset: feature;
}
.recruit-feature__list__item{
  counter-increment: feature;
  text-align: center;
}
.recruit-feature__list__item__image{
  margin-bottom: -45px;
  img{
    border-radius: 5px;
  }
}
.recruit-feature__list__item__hdg{
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  &:before{
    content: counter(feature, decimal-leading-zero);
    font-family: "Montserrat", sans-serif;
    font-size: 90px;
    font-weight: 400;
    font-style: italic;
    display: block;
    line-height: 1;
    text-align: center;
    color: #F5F7F8;
  }
}

.recruit-environment{
  padding: min(25vw, 200px) 0;
  background: url(./img/recruit/bg_round_white.png) no-repeat top / 100% auto;
  background-color: #F5F7F8;
  position: relative;
}
.recruit-environment__text01{
  max-width: 100%;
  width: max-content;
  margin: 0 auto;
  padding: 60px 110px 40px 150px;
  background: url(./img/recruit/environment_human01.png) no-repeat left, url(./img/recruit/environment_human02.png) no-repeat right;
  text-align: center;
  .recruit-hdg02:has(+ &){
    margin-bottom: 0;
  }
}
.recruit-environment__list{
  text-align: center;
  margin-bottom: 80px;
}
.recruit-environment__torikumi__item__image{
  margin-bottom: -40px;
  img{
    border-radius: 5px;
  }
}
.recruit-environment__torikumi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin: 50px 0 0;
}
.recruit-environment__torikumi__item{
  max-width: 570px;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
}
.recruit-environment__torikumi__item__hdg{
  font-size: clamp(1.25rem, 1.03rem + 0.92vw, 1.625rem);
  font-weight: 900;
  line-height: 1.2;
  background: #F5F7F8;
  padding: 30px 40px 0 0;
  border-radius: 0 5px 0 0;
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  margin-bottom: 15px;
}
.recruit-environment__helping{
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -50px;
  text-align: center;
  font-size: min(5.8vw, 128px);
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #E7EAEC;
}

.recruit-people{
  padding: min(25vw, 200px) 0;
  background: url(./img/recruit/bg_round_gray.png) no-repeat top / 100% auto;
}
.recruit-people__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.recruit-people__list__item{
  width: calc((100% - 90px) / 4);
  display: grid;
  grid-template-areas: "image text";
  grid-template-columns: 66px 1fr;
  gap: 10px 15px;
}
.recruit-people__list__item__hdg{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 10px;
}
.recruit-people__list__item__image{
  grid-area: image;
  text-align: center;
  padding-top: 65px;
}
.recruit-people__list__item__text{
  grid-area: text;
  background: #E2EAFF;
  border-radius: 5px;
  position: relative;
  align-self: start;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  padding: 20px 25px;
  &:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #e2eaff;
    border-top: 0;
    position: absolute;
    left: -15px;
    top: 50px;
  }
}

.recruit-requirement{
  padding: 0 0 min(20vw, 150px);
}
.recruit-requirement__box{
  + .recruit-requirement__box{
    margin-top: 10px;
  }
  .btn-style01{
    margin: 40px auto 0;
  }
}
.recruit-requirement__box__hdg{
  background: #E8ECEF;
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  font-weight: 800;
  min-height: 110px;
  padding: 15px 80px 15px 40px;
  position: relative;
  display: flex;
  align-items: center;
  transition: .3s;
  border-radius: 5px;
  &:before,
  &:after{
    content: "";
    width: 21px;
    height: 3px;
    background: #111;
    position: absolute;
    right: 50px;
    top: calc(50% - 1px);
    transition: .3s;
  }
  &:not(.is-open){
    background: #E8ECEF;
    &:after{
      rotate: 90deg;
    }
  }
  &.is-open{
    color: #fff;
    background: linear-gradient(to right, #3E5EFF, #9E9EFF);
    border-radius: 5px 5px 0 0;
    &:before,
    &:after{
      background: #fff;
    }
  }
}
.recruit-requirement__box__contents{
  display: none;
  border: 1px solid #D9DDE1;
  border-top: none;
  padding: 50px;
  border-radius: 0 0 5px 5px;
}

.recruit-join{
  background: url(./img/recruit/bg_round_white.png) no-repeat top / 100% auto, url(./img/recruit/join_bg.jpg) no-repeat center / cover;
  padding: min(30vw, 260px) 0 min(22vw, 170px);
  color: #fff;
}
.recruit-join__btn{
  background: #111;
  color: #fff;
  display: flex;
  position: relative;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: max-content;
  padding: 10px 145px 10px 90px;
  max-width: 100%;
  font-size: clamp(1.125rem, 0.98rem + 0.62vw, 1.375rem);
  margin-left: auto;
  margin-right: auto;
  &::before {
    content: "";
    display: inline-block;
    background: url(./img/common/arrow-base.svg) no-repeat center;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    position: absolute;
    right: 30px;
    top: calc(50% - 20px);
  }
}


@media screen and (min-width: 769px) {
  .sp{
    display: none;
  }
  .recruit-feature__list__item{
    max-width: calc(50% - 25px);
  }
  .recruit-people__list__item{
    &:nth-of-type(2n){
      position: relative;
      top: 80px;
    }
  }
}
@media screen and (min-width: 1400px) {
  .recruit-environment__list{
    position: relative;
    left: 72px;
  }
}
@media screen and (max-width: 1400px) {
  .recruit-people__list__item{
    width: calc(50% - 30px);
    max-width: 375px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-environment__text01{
    padding: 60px 65px 40px 50px;
  }
  .recruit-environment__helping{
    font-size: 9vw;
    line-height: 1.4;
    bottom: -20px;
  }
  .recruit-people__list__item{
    width: 100%;
  }
  .recruit-requirement__box__hdg{
    min-height: 80px;
    padding: 15px 50px 15px 20px;
    &:before,
    &:after{
      right: 20px;
      width: 18px;
    }
  }
  .recruit-requirement__box__contents{
    padding: 40px 20px;
  }
  .recruit-requirement__box{
    .btn-style01.bg-gradient{
      padding-right: 41px;
    }
    .btn-style01.bg-gradient span{
      padding-right: 15px;
      padding-left: 15px;
      font-size: 15px;
    }
    .btn-style01.bg-gradient::before{
      width: 40px;
    }
    .btn-style01.bg-gradient::after{
      right: 15px;
    }
  }
  .recruit-join__btn{
    padding: 10px 70px 10px 20px;
    min-height: 70px;
    font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
    &::before{
      right: 20px;
    }
  }
}

.cases-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  background-color: #e8ecef;
  border-radius: 5px;
  padding: 20px 25px;
  margin-bottom: clamp(35px, 26px + 2.31vw, 50px);
}
.cases-area-item {
  font-weight: 700;
  font-size: 0.875rem;
  padding-left: 20px;
  position: relative;
}
.cases-area-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
}
.cases-table {
  font-size: 0.9375rem;
}
.cases-table-row {
  display: flex;
  border-bottom: 1px solid #d9dde1;
  padding-bottom: 20px;
}
.cases-table-row:not(:first-child) {
  margin-top: 20px;
}
.cases-table-header {
  font-weight: 700;
  min-width: 170px;
}
.cases-table-data {
  width: 100%;
}
.cases-table-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 20px;
}
.cases-table-list li {
  padding-left: 18px;
  position: relative;
}
.cases-table-list li::before {
  content: "";
  display: inline-block;
  background-color: #111;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.cases-table-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 20px clamp(18px, 17px + 0.31vw, 20px);
}
.cases-table-gallery + .cases-table-list {
  margin-top: 20px;
}
.cases-table-imgbox {
  position: relative;
}
.cases-table-imgbox::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: rgba(17, 17, 17, 0.33);
  border-radius: 5px;
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.cases-table-imgbox::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(./img/common/icn-loupe.svg);
  position: absolute;
  right: 25px;
  bottom: 25px;
}

@media screen and (max-width: 1024px) {
  .cases-table-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cases-table-row {
    display: block;
  }
  .cases-table-header {
    min-width: 0;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 520px) {
  .cases-table-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.download-list {
  text-align: left;
}
.download-list.flexbox {
  font-size: 0.9375rem;
  gap: 10px 40px;
}
.download-item a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(./img/common/icn-download-blue.svg);
  margin-left: 10px;
}


/* 260109 Add */
.campany-mv-under {
  text-align: right;
  font-size: 1rem;
  color: #5b646d;
}

.company-item dt a {
  display: inline-block;
  width: fit-content;
  font-size: clamp(0.75rem, 0.61rem + 0.62vw, 1rem);;
  padding: 0 10px;
  border: 1px solid #005eb5;
  color: #005eb5;
  margin-left: 20px;
}
