@charset "UTF-8";
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
}
body.is-fixed {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 1em;
}
.mt-15 {
  margin-top: 1.5em;
}
.mt-20 {
  margin-top: 2em;
}
.mt-sm {
  margin-top: 3.2rem;
}
.mt-md {
  margin-top: 4.8rem;
}
.mt-lg {
  margin-top: 7.2rem;
}
.mt-xlg {
  margin-top: 14rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem;
}
.mb-md {
  margin-bottom: 5rem;
}
.mb-lg {
  margin-bottom: 10rem;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg-01 {
  background-color: #f9f9f9;
}
.bg-02 {
  background-color: #2d3c8c;
}
.bg-gradient01 {
  border-radius: 4rem 4rem 0 0;
  background: linear-gradient(78.32deg, #ffb737 -0.84%, #fa8500 60.42%);
}
.bg-dark {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-dark.is-active {
  background-color: #798389;
  --text-color: #fff;
}
.bg-gray {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-gray.is-active {
  background-color: #eff1f4;
}
.bg-white {
  background-color: #fff;
}

.w-100 {
  width: 100% !important;
}
.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 68rem;
}
.w-md {
  max-width: 81.6rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

* {
  color: var(--text-color, #000);
  letter-spacing: 0.1em;
}

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

p {
  line-height: 1.875;
}

em, address {
  font-style: normal;
}

.text-serif {
  font-family: "Noto Serif JP", serif;
}
.text-en {
  font-family: "Oswald", sans-serif;
}
.text-en2 {
  font-family: "Heebo", sans-serif;
}
.text-unset {
  font-family: initial;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-primary {
  --text-color: #e60012;
}
.text-red {
  color: #e61519;
}
.text-white {
  --text-color: #fff;
}
.text-default {
  --text-color: #41414c;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-lg {
  font-size: 2rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-sm {
  letter-spacing: 0.025em;
}
.ls-md {
  letter-spacing: 0.1em;
}
.ls-lg {
  letter-spacing: 0.2em;
}

.sentence-lh2 * {
  line-height: 2;
}

figure, picture {
  margin-bottom: 0;
  display: block;
}

img, iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-border {
  border: 1px solid #ccc;
}
.img-fluid {
  width: var(--width-pc) !important;
}
.img-round {
  overflow: hidden;
  border-radius: 0.8rem;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video video {
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

a {
  color: var(--text-color, #333);
  text-decoration: none;
}
a * {
  color: var(--text-color, #333);
}

[data-link=image] {
  display: block;
  overflow: hidden;
}
[data-link=image] .image {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}
[data-link=image] img, [data-link=image] svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
[data-link=image]:hover {
  opacity: 1 !important;
}
[data-link=image]:hover img, [data-link=image]:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.link-underline {
  text-decoration: underline;
}
.link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link-external::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M2 0h12v10H2Zm11 1H3v8h10Z"/><path d="M9.5 12H0V4.5h1V11h8.5Z"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

ul, ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
ul.space-1 li + li, ol.space-1 li + li {
  margin-top: 0.25em;
}

dl, dt, dd {
  margin-bottom: 0;
}

.list-dot li {
  padding-left: 1em;
  position: relative;
  line-height: 2;
}
.list-dot li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.list-dot li + li {
  margin-top: 1em;
}
.list-dot.space-0 li + li {
  margin-top: 0;
}
.list-circle li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.875;
}
.list-circle li::before {
  content: "●";
  margin-right: 0.25em;
}
.list-note {
  list-style-type: none;
}
.list-note li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-note li::before {
  content: "※";
}
.list-number {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.list-number li {
  line-height: 1.875;
}
.list-numzero {
  counter-reset: count;
}
.list-numzero li {
  margin-left: 1.75em;
  text-indent: -1.75em;
  line-height: 1.875;
}
.list-numzero li::before {
  content: counter(count, decimal-leading-zero) ".";
  margin-right: 0.25em;
  counter-increment: count;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.d-block {
  display: block;
}

.gap-sm {
  gap: 1.2rem;
}
.gap-md {
  gap: 1.6rem;
}
.gap-lg {
  gap: 2rem;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 833px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (min-width: 834px) {
  .tabOnly {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (min-width: 834px) {
  .text-md-center, .text-pc-center {
    text-align: center;
  }
  .mx-pc-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .mb-pc-0 {
    margin-bottom: 0 !important;
  }
  a:not([class]):hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 1.3888888889vw;
  }
  body {
    font-size: 1.4rem;
  }
  .img-fluid {
    width: var(--width-sp) !important;
  }
  .mt-lg {
    margin-top: 5.6rem !important;
  }
  .mt-md {
    margin-top: 4rem !important;
  }
  .mt-sm {
    margin-top: 3rem !important;
  }
  .mt-xlg {
    margin-top: 5.6rem !important;
  }
  .mb-lg {
    margin-bottom: 6rem !important;
  }
  .mb-md {
    margin-bottom: 4rem !important;
  }
  .mb-sm {
    margin-bottom: 3rem !important;
  }
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .text-sp-center {
    text-align: center;
  }
  .ls-sp-0 {
    letter-spacing: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  html {
    font-size: 2.7777777778vw;
  }
}
.header {
  width: 100%;
  padding: 2.4rem 2.4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.header__inner {
  padding: 1.6rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.6rem;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 21, 115, 0.05);
          box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 21, 115, 0.05);
}
.header__title {
  font-size: 1rem;
}
.header__title--logo {
  width: 31.8rem;
  display: block;
}
.header__lang {
  width: 14.8rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.8rem;
  --text-color: #fff;
}
.header__hamburger {
  width: 4.4rem;
  height: 4.4rem;
  margin-left: auto;
  padding: 0;
  position: relative;
  z-index: 2;
  border-radius: 0.4rem;
  background: linear-gradient(48deg, #5c87ce 2.05%, #5065b8 29.6%, #2d3c8c 71.43%);
}
.header__hamburger .inner {
  width: 1.6rem;
  height: 1.2rem;
  margin: 0 auto;
  position: relative;
  display: block;
}
.header__hamburger .inner > span {
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__hamburger .inner > span:nth-child(1) {
  top: 0;
}
.header__hamburger .inner > span:nth-child(2) {
  top: calc(50% - 1px);
}
.header__hamburger .inner > span:nth-child(3) {
  top: calc(100% - 2px);
}
.header__hamburger .label {
  display: inline-block;
  color: #2d3c8c;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}
.header__hamburger.is-open .inner > span:nth-child(1) {
  width: 100%;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.is-open .inner > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header__hamburger.is-open .inner > span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 834px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 2.4em;
  }
  .header__menu > li > a {
    position: relative;
  }
  .header__menu > li > a::after {
    content: "";
    width: 1.6rem;
    height: 0.3rem;
    margin-top: 0.75em;
    position: absolute;
    top: 100%;
    left: calc(50% - 0.8rem);
    border-radius: 0.15rem;
    background-color: #2d3c8c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header__menu > li > a.is-current::after {
    opacity: 1;
    visibility: visible;
  }
  .header__menu > li > a:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .header__menu--parent {
    margin-bottom: -3rem;
    padding-bottom: 3rem;
  }
  .header__menu--parent::after {
    content: "";
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    background-color: rgba(31, 31, 31, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
  }
  .header__menu--parent:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .header__menu--parent:hover .header__menu--child {
    opacity: 1;
    visibility: visible;
  }
  .header__menu--child {
    width: 100%;
    padding-top: 13.6rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 2.4rem 2.4rem;
    background: linear-gradient(63deg, #5c87ce -2.55%, #5065b8 18.68%, #2d3c8c 57.82%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    --text-color: #fff;
  }
  .header__menu--child--inner {
    padding: 5.6rem 0 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header__menu--child--title {
    max-width: 36.4rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header__menu--child .heading__01 {
    margin-bottom: 0;
    display: inline-block;
  }
  .header__menu--child .heading__01--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1.6rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__menu--child .heading__01 .arrow__01 {
    width: 2.8rem;
    margin-top: 0.1em;
  }
  .header__menu--child--menu {
    width: 66.8rem;
    display: grid;
    gap: 3.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header__menu--child--menu.is-vertical {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__menu--child--menu.is-vertical a {
    padding-right: 7rem;
  }
  .header__menu--child--menu a {
    height: 100%;
    padding: 2.4rem 4.8rem 2.4rem 1.6rem;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat right 1.6rem center/1.4rem auto;
    font-size: 1.6rem;
  }
  .header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header.is-hide {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .header__hamburger {
    display: none;
  }
}
@media screen and (max-width: 833px) {
  .header {
    padding: 0.8rem;
    position: fixed;
  }
  .header__inner {
    padding: 0.8rem;
    border-radius: 0.8rem;
  }
  .header__title--logo {
    width: 19.4rem;
  }
  .header__navi {
    width: 100%;
    height: 100dvh;
    padding: 12rem 2rem 5.6rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
    overflow-x: auto;
    background: linear-gradient(190deg, #2d3c8c 17.31%, #5065b8 62.98%, #5c87ce 98.08%);
    --text-color: #fff;
  }
  .header__navi .btn__01 {
    padding: 0 3.2rem;
  }
  .header__menu {
    border-top: 1px solid;
    font-size: 1.4rem;
  }
  .header__menu > li {
    border-bottom: 1px solid;
  }
  .header__menu > li > a {
    padding: 2.4rem 7rem 2.4rem 1.6rem;
    display: block;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat right 2.1rem center/1rem auto;
  }
  .header__menu--parent {
    position: relative;
  }
  .header__menu--parent > a {
    background: none !important;
  }
  .header__menu--toggle {
    width: 5.2rem;
    height: 5.2rem;
    padding: 0;
    position: absolute;
    top: 0.8rem;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__menu--toggle .toggle-icon {
    width: 2rem;
    height: 2rem;
    position: relative;
    display: block;
    border-radius: 50%;
    background-color: #fff;
  }
  .header__menu--toggle .toggle-icon::before, .header__menu--toggle .toggle-icon::after {
    content: "";
    width: 40%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #2d3c8c;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header__menu--toggle .toggle-icon::after {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .header__menu--toggle.is-open .toggle-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .header__menu--child {
    display: none;
    border-top: 1px solid;
  }
  .header__menu--child .main__container {
    padding: 2.4rem 1.6rem;
  }
  .header__menu--child--title {
    display: none;
  }
  .header__menu--child--menu {
    font-size: 1.2rem;
  }
  .header__menu--child--menu li + li {
    margin-top: 2rem;
  }
  .header__menu--child--menu a {
    margin-left: 1em;
    display: block;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat right 0.5rem center/1rem auto;
    text-indent: -1em;
  }
  .header__menu--child--menu a::before {
    content: "・";
  }
  .header__contact {
    max-width: 28.4rem;
    margin: 5.8rem auto 0;
  }
  .header__lang {
    width: 100%;
    max-width: 28.4rem;
    height: 5.6rem;
    margin-top: 3.2rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 3.2rem;
    background: #fff !important;
    --text-color: #2d3c8c;
  }
  .header__lang::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    display: block;
  }
  .header__lang--icon path {
    fill: #2d3c8c;
  }
  .header__lang--text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__area01 {
  padding-bottom: 14rem;
}
.footer__title {
  margin-bottom: 1rem;
}
.footer__title--logo {
  width: 37.6rem;
  display: inline-block;
}
.footer__info--address {
  line-height: 1.9;
}
.footer__navi--list > li > a {
  font-weight: 700;
}
.footer__navi--child > li {
  margin-left: 1em;
  text-indent: -1em;
}
.footer__navi--child > li + li {
  margin-top: 0.5em;
}
.footer__navi--child > li a::before {
  content: "・";
}
.footer__certification {
  text-align: right;
}
.footer__certification--img {
  margin-bottom: 0.5em;
}
.footer__certification p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.footer__area02 {
  padding: 4rem 0;
  border-top: 1px solid #d7d7d7;
  font-size: 1.4rem;
}

@media screen and (min-width: 834px) {
  .footer__info .btn__01 {
    width: 18.8rem;
    height: 5rem;
    border-radius: 0.8rem;
  }
  .footer__info .btn__01--text {
    letter-spacing: 0;
    font-size: 1.2rem;
  }
  .footer__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 13.8rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer__navi--list > li + li {
    margin-top: 4.8rem;
  }
  .footer__navi--child {
    margin-top: 1em;
  }
  .footer__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__column.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__policy li + li {
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid;
  }
}
@media screen and (max-width: 833px) {
  .footer__area01 {
    padding-bottom: 0;
  }
  .footer__title--logo {
    width: 28.4rem;
  }
  .footer__info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .footer__info--address {
    font-size: 1.6rem;
  }
  .footer__info--address .tel {
    margin-top: 0.25em;
    display: inline-block;
    font-weight: 700;
    font-size: 2.4rem;
  }
  .footer__info .btn__01 {
    width: 100%;
    height: 5.6rem;
  }
  .footer__navi {
    margin-top: 5.6rem;
    border-bottom: 1px solid #dedede;
  }
  .footer__navi--list > li {
    padding: 2.4rem 1.6rem;
    position: relative;
    border-top: 1px solid #dedede;
  }
  .footer__navi--list > li > a {
    display: block;
  }
  .footer__navi--list a {
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='currentColor' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat right 0.5rem center/1rem auto;
  }
  .footer__navi--toggle {
    width: 5.2rem;
    height: 5.2rem;
    padding: 0;
    position: absolute;
    top: 0.8rem;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__navi--toggle .toggle-icon {
    width: 2rem;
    height: 2rem;
    position: relative;
    display: block;
    border-radius: 50%;
    background-color: #2d3c8c;
  }
  .footer__navi--toggle .toggle-icon::before, .footer__navi--toggle .toggle-icon::after {
    content: "";
    width: 40%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .footer__navi--toggle .toggle-icon::after {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .footer__navi--toggle.is-open .toggle-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .footer__navi--child {
    margin: 2.4rem -1.6rem 0;
    padding: 2.4rem 1.6rem 0;
    display: none;
    border-top: 1px solid #dedede;
  }
  .footer__navi--child > li + li {
    margin-top: 0.75em;
  }
  .footer__navi--child > li a {
    display: block;
  }
  .footer__area02 {
    padding: 5.6rem 1.6rem 3.6rem;
    border-top: none;
    font-size: 1.2rem;
  }
  .footer__policy li + li {
    margin-top: 1.25em;
  }
  .footer__copyright {
    margin-top: 5.6rem;
    text-align: center;
  }
}
.main {
  position: relative;
}
.main__block {
  margin-bottom: 14rem;
}
.main__block[class*=bg-] {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.main__block[class*=bg-].py-md {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.main__container {
  max-width: 115.2rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 6rem;
  padding-left: 6rem;
}
.main__container + .main__container {
  margin-top: 14rem;
}
.main__container.full {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.common__contact--btn {
  width: 100%;
  height: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.6rem;
}
.common__contact--btn--icon {
  width: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.common__contact--btn--icon svg {
  width: 2.7rem;
}
.common__contact--btn--text {
  letter-spacing: 0;
  font-weight: 700;
}
.common__contact--btn--text span {
  letter-spacing: 0;
  font-size: 2.8rem;
}
.common__entry--link {
  margin-left: auto;
  text-align: center;
}
.common__entry--link .btn__01 {
  width: 35.4rem;
  max-width: 100%;
  height: 7.2rem;
  margin-top: 0;
  padding: 0 5.8rem;
  border-radius: 3.6rem;
}
.common__entry--link .btn__01 + .btn__01 {
  margin-top: 2.4rem;
}
.common__entry--linkNote {
  margin-top: 1.5em;
  font-size: 1.2rem;
}
.common__headline {
  width: 100%;
  height: 40rem;
  padding-top: 20rem;
  position: relative;
  z-index: 2;
  background-color: #ccc;
}
.common__headline .heading__01 {
  margin-bottom: 0;
  padding-left: 0;
}
.common__headline .heading__01::before {
  content: none;
}
.common__headline .heading__01--label {
  font-size: 2.4rem;
}
.common__headline .heading__01--main {
  font-size: 4.4rem;
}
.common__headline--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.common__headline--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(31, 31, 31, 0.2);
}
.common__headline--bg::after {
  content: "";
  width: 56.2rem;
  height: 46.8rem;
  position: absolute;
  top: -8.8rem;
  right: -18.6rem;
  z-index: 2;
  background: url(../../images/common/line01.svg) no-repeat center center/contain;
}
.common__headline--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common__headlineRecruit {
  height: auto;
  margin-bottom: 4.8rem;
  background: none;
}
.common__headlineRecruit::before {
  content: "";
  width: 68.5rem;
  height: 57rem;
  position: absolute;
  top: -23rem;
  right: -30.5rem;
  background: url(../../images/recruit/line01.svg) no-repeat center center/contain;
}
.common__headlineRecruit .heading__03 {
  margin-bottom: 0;
}
.common__headlineRecruit .heading__03--label {
  font-size: 9rem;
}
.common__headlineRecruit .heading__03--label + .heading__03--main {
  margin-top: -1em;
}
.common__headlineRecruit .heading__03--main {
  font-size: 4rem;
}
.common__lead--title {
  margin-bottom: 1.75em;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
}
.common__lead--text p {
  line-height: 2;
}
.common__lead--column {
  display: grid;
  gap: 0 12rem;
  grid-template-columns: 56rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1440px) {
  .main__container {
    max-width: 132rem;
  }
}
@media screen and (min-width: 834px) {
  .common__contact--column {
    display: grid;
    grid-template-columns: 1fr 50.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .common__contact--header .heading__01 {
    margin-bottom: 4.8rem;
  }
  .common__contact--header p {
    font-size: 2rem;
  }
  .common__contact--btn .common__contact--btn--icon path {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .common__contact--btn:hover .common__contact--btn--icon path {
    fill: #fa8500;
  }
  .common__entry--link .btn__01.btn-gradient::before {
    outline: 1px solid #2d3c8c;
    outline-offset: -1px;
    border-radius: 3.6rem;
    background: #fff;
  }
  .common__entry--link .btn__01.btn-gradient:hover {
    --text-color: #2d3c8c;
  }
  .common__entry--link .btn__01.btn-gradient:hover .btn__01--arrow {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%232d3c8c' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .common__entry--link .btn__01.btn-gradient2::before {
    outline: 1px solid #fa8500;
    outline-offset: -1px;
    border-radius: 3.6rem;
    background: #fff !important;
  }
  .common__entry--link .btn__01.btn-gradient2:hover {
    --text-color: #fa8500;
  }
}
@media screen and (max-width: 833px) {
  .main__block {
    margin-bottom: 5.6rem;
  }
  .main__block[class*=bg-] {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
  .main__container {
    padding-right: 2.8rem;
    padding-left: 2.8rem;
  }
  .main__container + .main__container {
    margin-top: 6rem;
  }
  .common__contact--header p {
    font-size: 1.8rem;
  }
  .common__contact--btn {
    height: 10.4rem;
    margin-top: 5.6rem;
  }
  .common__contact--btn--icon {
    width: 4rem;
  }
  .common__contact--btn--text span {
    font-size: 2rem;
  }
  .common__entry--header p {
    font-size: 1.4rem;
  }
  .common__entry--link {
    margin-top: 5.6rem;
  }
  .common__entry--link .btn__01 {
    height: 5.6rem;
  }
  .common__entry--link .btn__01 + .btn__01 {
    margin-top: 2.4rem;
  }
  .common__headline {
    height: 28rem;
    padding-top: 7.6rem;
  }
  .common__headline .main__container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .common__headline .heading__01--label {
    font-size: 1.6rem;
  }
  .common__headline .heading__01--main {
    font-size: 2.8rem;
  }
  .common__headline--bg::after {
    width: 31.8rem;
    height: 26.4rem;
    top: -4.5rem;
    right: -16.8rem;
  }
  .common__headlineRecruit {
    height: auto;
    margin-bottom: 4.8rem;
    padding-top: 17.2rem;
  }
  .common__headlineRecruit::before {
    width: 31.2rem;
    height: 24.4rem;
    top: -9rem;
    right: -15rem;
    background-image: url(../../images/recruit/line01_sp.svg);
  }
  .common__headlineRecruit .main__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .common__headlineRecruit .heading__03--label {
    font-size: 4.8rem;
  }
  .common__headlineRecruit .heading__03--label + .heading__03--main {
    margin-top: -0.9em;
  }
  .common__headlineRecruit .heading__03--main {
    font-size: 2.4rem;
  }
  .common__lead--title {
    margin-bottom: 1.25em;
    letter-spacing: 0.08em;
    font-size: 2rem;
  }
  .common__lead--text p {
    line-height: 1.8;
  }
  .common__lead--column {
    display: block;
  }
  .common__lead--column--img {
    margin-top: 4rem;
  }
}
.breadcrumbs {
  margin-bottom: 10rem;
  padding-top: 2.4rem;
  font-size: 1.4rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs__inner > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs__inner > span:not(:last-child)::after {
  content: "";
  width: 0.7rem;
  height: 1.1rem;
  display: inline-block;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12' fill='none'><path stroke='%231F1F1F' stroke-linecap='round' d='m1 1 6 5-6 5'/></svg>") no-repeat center center/contain;
}

@media screen and (max-width: 833px) {
  .breadcrumbs {
    margin-bottom: 5.6rem;
    padding-top: 2.8rem;
    font-size: 1.2rem;
  }
}
@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-300%) rotate(45deg);
            transform: translateX(-300%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(45deg);
            transform: translateX(0) rotate(45deg);
  }
}
@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-300%) rotate(45deg);
            transform: translateX(-300%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(45deg);
            transform: translateX(0) rotate(45deg);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0) rotate(45deg);
            transform: translateX(0) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(300%) rotate(45deg);
            transform: translateX(300%) rotate(45deg);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0) rotate(45deg);
            transform: translateX(0) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(300%) rotate(45deg);
            transform: translateX(300%) rotate(45deg);
  }
}
.btn__01 {
  width: 30rem;
  height: 6rem;
  padding: 0 2em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.2rem;
  background-color: #fff;
  --text-color: #fff;
}
.btn__01--text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  letter-spacing: 0.2em;
}
.btn__01--arrow {
  width: 1.2rem;
  height: 1.2rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center center/contain;
}
.btn__01.btn-white {
  --text-color: #2d3c8c;
}
.btn__01.btn-white .btn__01--arrow {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%232d3c8c' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
}
.btn__01.btn-border {
  border: 2px solid;
}
.btn__02 {
  width: 30rem;
  height: 7.2rem;
  padding: 0 3.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3.6rem;
  background-color: #fff;
  --text-color: #fff;
}
.btn__02--text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.btn__02--arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FA8500' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center 45%/50%;
}
.btn__02.btn-white {
  border: 1px solid;
  --text-color: #fa8500;
}
.btn__02.btn-white .btn__02--arrow {
  background-color: #fa8500;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
}
.btn__02.btn-gradient .btn__02--arrow {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%232d3c8c' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
}
.btn__02.btn-border {
  border: 2px solid;
}
.btn__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__grid.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.btn__grid.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.btn-gradient {
  background: linear-gradient(87deg, #5c87ce 4.32%, #5065b8 37.67%, #2d3c8c 81.06%);
}
.btn-gradient2 {
  background: linear-gradient(99deg, #ffb737 13.7%, #fa8500 62.16%);
}

.arrow__01 {
  width: 4.8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  aspect-ratio: 1;
}
.arrow__01--icon {
  width: 45%;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.link[target=_blank] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link[target=_blank]::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'><path fill='%23333333' d='M12 6.615C11.8011 6.615 11.6103 6.69402 11.4697 6.83467C11.329 6.97532 11.25 7.16609 11.25 7.365V12.75C11.25 12.9489 11.171 13.1397 11.0303 13.2803C10.8897 13.421 10.6989 13.5 10.5 13.5H2.25C2.05109 13.5 1.86032 13.421 1.71967 13.2803C1.57902 13.1397 1.5 12.9489 1.5 12.75V4.5C1.5 4.30109 1.57902 4.11032 1.71967 3.96967C1.86032 3.82902 2.05109 3.75 2.25 3.75H7.635C7.83391 3.75 8.02468 3.67098 8.16533 3.53033C8.30598 3.38968 8.385 3.19891 8.385 3C8.385 2.80109 8.30598 2.61032 8.16533 2.46967C8.02468 2.32902 7.83391 2.25 7.635 2.25H2.25C1.65326 2.25 1.08097 2.48705 0.65901 2.90901C0.237053 3.33097 0 3.90326 0 4.5V12.75C0 13.3467 0.237053 13.919 0.65901 14.341C1.08097 14.7629 1.65326 15 2.25 15H10.5C11.0967 15 11.669 14.7629 12.091 14.341C12.5129 13.919 12.75 13.3467 12.75 12.75V7.365C12.75 7.16609 12.671 6.97532 12.5303 6.83467C12.3897 6.69402 12.1989 6.615 12 6.615ZM14.94 0.465C14.8639 0.281738 14.7183 0.136106 14.535 0.0599999C14.4448 0.0215692 14.348 0.00118499 14.25 0H9.75C9.55109 0 9.36032 0.0790176 9.21967 0.21967C9.07902 0.360322 9 0.551088 9 0.75C9 0.948912 9.07902 1.13968 9.21967 1.28033C9.36032 1.42098 9.55109 1.5 9.75 1.5H12.4425L4.7175 9.2175C4.6472 9.28722 4.59141 9.37017 4.55333 9.46157C4.51525 9.55296 4.49565 9.65099 4.49565 9.75C4.49565 9.84901 4.51525 9.94704 4.55333 10.0384C4.59141 10.1298 4.6472 10.2128 4.7175 10.2825C4.78722 10.3528 4.87017 10.4086 4.96157 10.4467C5.05296 10.4847 5.15099 10.5043 5.25 10.5043C5.34901 10.5043 5.44704 10.4847 5.53843 10.4467C5.62983 10.4086 5.71278 10.3528 5.7825 10.2825L13.5 2.5575V5.25C13.5 5.44891 13.579 5.63968 13.7197 5.78033C13.8603 5.92098 14.0511 6 14.25 6C14.4489 6 14.6397 5.92098 14.7803 5.78033C14.921 5.63968 15 5.44891 15 5.25V0.75C14.9988 0.651992 14.9784 0.555167 14.94 0.465Z'/></svg>");
}

@media screen and (min-width: 834px) {
  .btn__01.btn-white {
    position: relative;
    overflow: hidden;
  }
  .btn__01.btn-white::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(99deg, #ffb737 13.7%, #fa8500 62.16%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn__01.btn-white:hover {
    --text-color: #fff;
  }
  .btn__01.btn-white:hover::before {
    opacity: 1;
  }
  .btn__01.btn-white:hover .btn__01--arrow {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .btn__01.btn-white > * {
    position: relative;
    z-index: 2;
  }
  .btn__01.btn-white .btn__01--text {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .btn__01.btn-white .btn__01--arrow {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .btn__02.btn-white {
    position: relative;
    overflow: hidden;
  }
  .btn__02.btn-white::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(99deg, #ffb737 13.7%, #fa8500 62.16%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn__02.btn-white:hover {
    --text-color: #fff;
  }
  .btn__02.btn-white:hover::before {
    opacity: 1;
  }
  .btn__02.btn-white:hover .btn__02--arrow {
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FA8500' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .btn__02.btn-white > * {
    position: relative;
    z-index: 2;
  }
  .btn__02.btn-hover-gradient {
    position: relative;
    overflow: hidden;
  }
  .btn__02.btn-hover-gradient::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(87deg, #5c87ce 4.32%, #5065b8 37.67%, #2d3c8c 81.06%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn__02.btn-hover-gradient:hover {
    --text-color: #fff;
  }
  .btn__02.btn-hover-gradient:hover::before {
    opacity: 1;
  }
  .btn__02.btn-hover-gradient:hover .btn__02--arrow {
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%232d3c8c' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .btn__02.btn-hover-gradient > * {
    position: relative;
    z-index: 2;
  }
  .btn-gradient {
    position: relative;
    overflow: hidden;
  }
  .btn-gradient::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(99deg, #ffb737 13.7%, #fa8500 62.16%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn-gradient:hover::before {
    opacity: 1;
  }
  .btn-gradient:hover .btn__02--arrow {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fa8500' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .btn-gradient > * {
    position: relative;
    z-index: 2;
  }
  .btn-gradient2 {
    position: relative;
    overflow: hidden;
  }
  .btn-gradient2::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    outline: 1px solid #fa8500;
    outline-offset: -1px;
    border-radius: 3.6rem;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn-gradient2:hover {
    --text-color: #fa8500;
  }
  .btn-gradient2:hover::before {
    opacity: 1;
  }
  .btn-gradient2:hover .btn__02--arrow {
    background-color: #fa8500;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .btn-gradient2 > * {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 833px) {
  .btn__01 {
    width: 26rem;
    height: 5.6rem;
  }
  .btn__02 {
    height: 5.6rem;
  }
  .btn__group {
    gap: 3.2rem;
  }
  .btn__group.sp-gap-sm {
    gap: 2.4rem;
  }
  .btn__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btn__grid.left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .arrow-01 {
    width: 2.4rem;
    border-radius: 0.4rem;
  }
}
.heading__01 {
  margin-bottom: 7.2rem;
  padding-left: 3.6rem;
  position: relative;
}
.heading__01::before {
  content: "";
  width: 0.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fa8500), color-stop(1.6rem, #fa8500), color-stop(1.6rem, var(--text-color, #2d3c8c)), to(var(--text-color, #2d3c8c)));
  background: linear-gradient(180deg, #fa8500 0%, #fa8500 1.6rem, var(--text-color, #2d3c8c) 1.6rem, var(--text-color, #2d3c8c) 100%);
}
.heading__01 > span {
  display: block;
}
.heading__01--label {
  color: var(--text-color, #a0a0a0);
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
}
.heading__01--main {
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.2;
}
.heading__01--main:not(:first-child) {
  margin-top: 0.25em;
}
.heading__01--text {
  font-size: 2.4rem;
  line-height: 1;
}
.heading__01.v2::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fa8500), color-stop(0.8rem, #fa8500), color-stop(0.8rem, var(--text-color, #2d3c8c)), to(var(--text-color, #2d3c8c)));
  background: linear-gradient(180deg, #fa8500 0%, #fa8500 0.8rem, var(--text-color, #2d3c8c) 0.8rem, var(--text-color, #2d3c8c) 100%);
}
.heading__02 {
  margin-bottom: 2em;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  line-height: 1.5;
}
.heading__02.is-lg {
  font-size: 3rem;
}
.heading__03 {
  margin-bottom: 7.2rem;
}
.heading__03 > span {
  display: block;
}
.heading__03--label {
  letter-spacing: 0;
  font-weight: 800;
  font-size: 8.8rem;
  line-height: 1;
}
.heading__03--label.is-gradient {
  background: linear-gradient(103.37deg, rgba(255, 183, 55, 0.3) 21.67%, rgba(250, 133, 0, 0.3) 64.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading__03--label + .heading__03--main {
  margin-top: -1.2em;
}
.heading__03--label.is-sm {
  font-size: 4.4rem;
}
.heading__03--label.is-sm + .heading__03--main {
  margin-top: 0;
}
.heading__03--main {
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.5;
}
.heading__03 .text-en {
  font-family: "Heebo", sans-serif;
}
.heading__04 {
  margin-bottom: 7.2rem;
  padding-left: 1.74em;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}
.heading__04::before {
  content: "";
  width: 1em;
  position: absolute;
  top: 0.3em;
  left: 0;
  border-radius: 50%;
  background-color: #fa8500;
  aspect-ratio: 1;
}

@media screen and (min-width: 834px) {
  .heading__group01 {
    margin-bottom: 7.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .heading__group01 .heading__01 {
    margin-bottom: 0;
  }
  .heading__group01--text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 833px) {
  .heading__01 {
    margin-bottom: 4rem;
    padding-left: 2.4rem;
  }
  .heading__01--label {
    font-size: 1.2rem;
  }
  .heading__01--main {
    letter-spacing: 0.1em;
    font-size: 2.4rem;
  }
  .heading__01--text:last-of-type {
    padding-bottom: 0.5em;
  }
  .heading__01.v2::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#fa8500), color-stop(1.2rem, #fa8500), color-stop(1.2rem, var(--text-color, #1f1f1f)), to(var(--text-color, #1f1f1f)));
    background: linear-gradient(180deg, #fa8500 0%, #fa8500 1.2rem, var(--text-color, #1f1f1f) 1.2rem, var(--text-color, #1f1f1f) 100%);
  }
  .heading__01.v2 .heading__01--main {
    font-size: 2rem;
  }
  .heading__02 {
    margin-bottom: 1.5em;
    letter-spacing: 0.08em;
    font-size: 2rem;
  }
  .heading__02.is-lg {
    font-size: 2rem;
  }
  .heading__02.sp-sm {
    font-size: 1.6rem;
  }
  .heading__03 {
    margin-bottom: 4rem;
  }
  .heading__03--label {
    font-size: 4.8rem;
  }
  .heading__03--label + .heading__03--main {
    margin-top: -0.9em;
  }
  .heading__03--label.is-sm {
    font-size: 4rem;
  }
  .heading__03--main {
    font-size: 2.4rem;
  }
  .heading__04 {
    margin-bottom: 3.6rem;
    padding-left: 1.4em;
    font-weight: 900;
    font-size: 2rem;
  }
  .heading__group01 {
    margin-bottom: 4rem;
  }
  .heading__group01 .heading__01 {
    margin-bottom: 3.2rem;
  }
  .heading__group01--text {
    font-size: 1.6rem;
  }
}
.navi__01 {
  margin-top: 7rem;
}
.navi__01--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navi__01--item {
  width: 21rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.navi__01 a {
  width: 100%;
  max-width: 100%;
  height: 6rem;
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #2d3c8c;
  border-radius: 3rem;
  background-color: #fff;
  font-weight: 700;
}
.navi__01 a.is-active {
  background-color: var(--theme-color, #2d3c8c);
  color: #fff;
  pointer-events: none;
}

.pager__archive {
  margin-top: 8rem;
}
.pager__archive--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager__archive .page-numbers {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  text-align: center;
  letter-spacing: 0;
  font-size: 1.8rem;
  line-height: 4rem;
}
.pager__archive .page-numbers.current {
  background-color: #2d3c8c;
  color: #fff;
  pointer-events: none;
}
.pager__archive .page-numbers.prev, .pager__archive .page-numbers.next {
  position: relative;
  border: 1px solid #2d3c8c;
}
.pager__archive .page-numbers.prev::before, .pager__archive .page-numbers.next::before {
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  position: absolute;
  top: calc(50% - 0.6rem);
  left: calc(50% - 0.7rem);
  background: url("data:image/svg+xml,<svg viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill='%232D3C8C' d='M1.66119 15.7916C1.20252 16.137 0.552077 16.0433 0.207978 15.5827C-0.136087 15.1217 -0.0438021 14.4672 0.414856 14.1214L8.53886 7.99913L0.414856 1.87784C-0.0436429 1.53201 -0.135998 0.878497 0.207978 0.417575C0.552084 -0.0434583 1.20238 -0.137089 1.66119 0.208675L12 8.00015L1.66119 15.7916Z'/></svg>") no-repeat center/contain;
}
.pager__archive .page-numbers.prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (max-width: 833px) {
  .pager__archive {
    margin-top: 5.6rem;
  }
  .pager__archive--inner {
    gap: 0 1.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pager__archive .page-numbers {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
  .pager__archive .page-numbers.prev::before, .pager__archive .page-numbers.next::before {
    width: 1.2rem;
    height: 0.9rem;
    top: calc(50% - 0.45rem);
    left: calc(50% - 0.5rem);
  }
}
.module__imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.module__imgTxt.is-alignTop {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.module__imgTxt--img {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.module__imgTxt--img.is-round {
  border-radius: 3.2rem;
}
.module__imgTxt--text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.4rem;
          flex: 0 0 50.4rem;
}
.module__imgTxt--text p:not(:last-child) {
  margin-bottom: 1.5em;
}

.grid {
  display: grid;
}
.grid.col2 {
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
.grid-card.col2 {
  gap: 4rem 4rem;
}
.grid-card.col3 {
  gap: 4rem 5rem;
}

.card__01 {
  display: block;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #fff;
}
.card__01--image {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eff1f4;
  aspect-ratio: 1/0.679;
}
.card__01--body {
  padding: 3.2rem 4rem 4rem;
}
.card__01--title {
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 2rem;
}
.card__01--text p {
  color: rgba(65, 65, 76, 0.5);
  line-height: 1.6;
}
.card__01 .arrow-01 {
  margin-top: 3.2rem;
  margin-left: auto;
}
.card__01[href] img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.card__01[href]:hover {
  opacity: 1;
}
.card__01[href]:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.dl-table__01 {
  border-top: 1px solid #dedede;
}
.dl-table__01 .inner {
  padding: 3.2rem 0;
  border-bottom: 1px solid #dedede;
}
.dl-table__01 .inner.border-0 {
  padding-bottom: 0;
  border-bottom: none;
}
.dl-table__01 dt {
  font-weight: 700;
  line-height: 1.6;
}
.dl-table__01 .col1 {
  width: 100%;
  margin-top: 3.2rem;
  grid-column: 1/-1;
}
.dl-table__01 p {
  word-break: break-all;
  line-height: 1.6;
}
.dl-table__01 ul + p {
  margin-top: 0.4em;
}
.dl-table__01 .text-note {
  margin-top: 0.4em;
  font-size: 1.3rem;
}

.post__grid {
  position: relative;
  display: grid;
  gap: 10.4rem;
  grid-template-columns: 31.2rem 1fr;
}
.post__detail--eyecatch {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eff1f4;
  aspect-ratio: 1/0.679;
}
.post__header {
  margin-bottom: 6.4rem;
  padding-bottom: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem 2.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.post__header--name {
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
}
.post__header--date {
  opacity: 0.5;
}
.post__header--category {
  opacity: 0.5;
}
.post__header--title {
  width: 100%;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.8;
}
.post__body h2 {
  margin-bottom: 5.6rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.8;
  --text-color: #e60012;
}
.post__body h2:not(:first-child) {
  margin-top: 16rem;
}
.post__body h2::before {
  content: "";
  width: 4rem;
  margin-bottom: 3.2rem;
  display: block;
  border-bottom: 4px solid;
}
.post__body h2 small {
  display: block;
  text-align: right;
  font-size: 1.4rem;
}
.post__body h3 {
  margin-bottom: 5.6rem;
  font-size: 2rem;
}
.post__body h3:not(:first-child) {
  margin-top: 12rem;
}
.post__body p {
  line-height: 2;
}
.post__body p:not(:last-child) {
  margin-bottom: 2em;
}
.post__body ul:not(:last-child), .post__body ol:not(:last-child) {
  margin-bottom: 2em;
}
.post__body ul li, .post__body ol li {
  line-height: 2;
}
.post__body ul li + li, .post__body ol li + li {
  margin-top: 0.75em;
}
.post__body ul:not([class]) li {
  padding-left: 1em;
  position: relative;
}
.post__body ul:not([class]) li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.post__body ol {
  list-style-type: decimal;
}
.post__body ol li {
  margin-left: 1.5em;
}
.post__body .wp-block-image {
  margin-bottom: 6.4rem;
  overflow: hidden;
  border-radius: 0.8rem;
}

@media screen and (min-width: 834px) {
  .module__imgTxt.is-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .module__imgTxt--img.is-breakThrough {
    height: 50rem;
    margin-right: calc(50% - 50vw);
    border-radius: 1.6rem 0 0 1.6rem;
  }
  .dl-table__01 .inner {
    display: grid;
    grid-template-columns: var(--title-width, 20rem) 1fr;
  }
  .dl-table__01 dt {
    padding-left: 4rem;
  }
  .dl-table__01 dd {
    padding-left: 4rem;
  }
  .post__grid .btn__01 {
    position: fixed;
    bottom: 4rem;
    left: 4rem;
    z-index: 100;
  }
}
@media (min-width: 1440px) {
  .module__imgTxt.v2 {
    position: relative;
  }
  .module__imgTxt.v2 .module__imgTxt--img {
    width: 48%;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .module__imgTxt.v2 .module__imgTxt--text {
    margin-right: auto;
  }
}
@media screen and (max-width: 833px) {
  .module__imgTxt {
    gap: 3.6rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module__imgTxt.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .module__imgTxt--img {
    border-radius: 0.8rem;
  }
  .module__imgTxt--text {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .dl-table__01 .inner {
    padding: 2.4rem 0;
  }
  .dl-table__01 dt {
    margin-bottom: 0.25em;
  }
  .dl-table__01 .text-note {
    margin-top: 1em;
    font-size: 1.2rem;
  }
  .post__grid {
    display: block;
  }
  .post__grid .btn__01 {
    margin: 10rem auto 0;
  }
  .post__detail--eyecatch {
    margin-bottom: 4.8rem;
  }
  .post__header {
    padding-bottom: 2.8rem;
    gap: 2.4rem 1.6rem;
  }
  .post__header--name {
    font-size: 1.6rem;
  }
  .post__header--title {
    font-size: 2rem;
  }
  .post__body h2 {
    margin-bottom: 3.6rem;
    font-size: 1.6rem;
  }
  .post__body h2:not(:first-child) {
    margin-top: 8rem;
  }
  .post__body h2::before {
    margin-bottom: 1.6rem;
  }
  .post__body h2 small {
    margin-top: 0.5em;
    text-align: left;
    font-size: 1rem;
  }
  .post__body .wp-block-image {
    margin-bottom: 3.2rem;
  }
  .card__01 {
    border-radius: 0.6rem;
  }
  .card__01--image {
    aspect-ratio: 1/0.682;
  }
  .card__01--image img {
    max-width: 74%;
  }
  .card__01--body {
    padding: 2.4rem 2.4rem;
  }
  .card__01--title {
    font-size: 1.4rem;
  }
  .card__01--text {
    font-size: 1rem;
  }
  .card__01 .arrow-01 {
    margin-top: 2rem;
  }
}
.js-slider01-control .swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.js-slider01-control .swiper-button {
  height: auto;
  margin: 0;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
}
.js-slider01-control .swiper-button::after {
  color: #1f1f1f;
  font-size: 2rem;
}
.js-slider01-control .swiper-pause {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.js-slider01-control .swiper-pause::before, .js-slider01-control .swiper-pause::after {
  content: "";
  width: 0.4rem;
  height: 100%;
  background-color: var(--theme-color, #2d3c8c);
}
.js-slider01-control .swiper-pause.paused::before {
  width: 2rem;
  height: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.js-slider01-control .swiper-pause.paused::after {
  display: none;
}

.slider__01--card .pic {
  margin-bottom: 1.6rem;
  display: block;
  overflow: hidden;
  aspect-ratio: 296/400;
}
.slider__01--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__01--card .pic.asp-auto {
  aspect-ratio: auto;
}
.slider__01--card .tag {
  padding: 0 0.8rem;
  display: inline-block;
  border-radius: 0.3rem;
  background-color: var(--theme-color, #2d3c8c);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}
.slider__01--card .tag + .name {
  margin-top: 0.8rem;
}
.slider__01--card .name {
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: wrap;
  -webkit-line-clamp: 2;
}
.slider__01 .swiper {
  overflow: visible !important;
}
.slider__01 .swiper-wrapper {
  height: auto;
}
.slider__01 .swiper-slide {
  width: 29.6rem;
}
.slider__01--control {
  margin-top: 8rem;
  padding: 2rem 0;
}
.slider__02--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.5;
}
.slider__02--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__02 .swiper {
  overflow: visible !important;
}
.slider__02 .swiper-wrapper {
  height: auto;
}
.slider__02 .swiper-slide {
  width: 83.2rem;
}
.slider__02--control {
  margin-top: 4rem;
}
.slider__03--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.68;
}
.slider__03--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__03--card .pic + p {
  margin-top: 2.4rem;
}
.slider__03 .swiper {
  overflow: visible !important;
}
.slider__03 .swiper-wrapper {
  height: auto;
}
.slider__03 .swiper-slide {
  width: 36rem;
}
.slider__03--control {
  margin-top: 10rem;
}

/* Swiperページネーション進捗バー */
.swiper-pagination-progress {
  width: 10rem;
  height: 2px;
  position: relative;
  display: inline-block;
  background-color: #fff;
  vertical-align: middle;
}

.swiper-pagination-progress::after {
  content: "";
  width: var(--swiper-progress, 0%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2d3c8c;
  -webkit-transition: width linear;
  transition: width linear;
}

@-webkit-keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .slider__01 {
    position: relative;
  }
  .slider__01 .btn__01 {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 833px) {
  .slider__01--control {
    margin-top: 2.5rem;
    padding: 0;
  }
  .slider__01 .btn__01 {
    margin-top: 4rem;
  }
  .slider__02 .swiper-slide {
    width: 100%;
  }
  .slider__02--control {
    margin-top: 3.5rem;
  }
}
.table__01--content {
  display: grid;
  grid-template-columns: 25rem 1fr;
}
.table__01--head, .table__01--detail {
  padding: 2.5rem;
}
.table__01--head {
  margin-bottom: -0.1rem;
  border-bottom: 2px solid var(--theme-color, #2d3c8c);
  text-align: center;
  font-weight: 600;
}
.table__01--detail {
  border-bottom: 1px solid #ccc;
}
.table__02--content {
  width: 100%;
}
.table__02--head--detail {
  font-weight: 600;
}
.table__02--head th {
  padding: 1.4rem 0;
}
.table__02--head th + th {
  border-left: 1px solid #fff;
}
.table__02--title {
  margin-bottom: -0.1rem;
  border-bottom: 2px solid var(--theme-color, #2d3c8c);
  text-align: center;
}
.table__02--item {
  padding: 2.5rem;
  border-bottom: 1px solid #ccc;
}
.table__03--content {
  width: 100%;
}
.table__03--head--detail {
  font-weight: 600;
}
.table__03--head th {
  padding: 1.4rem 0;
}
.table__03--head th + th {
  border-left: 1px solid #fff;
}
.table__03--title {
  width: 20rem;
  max-width: 100%;
  margin-bottom: -0.1rem;
  padding: 0 1.5rem;
  text-align: center;
}
.table__03--item01, .table__03--item02 {
  background-color: var(--theme-color, #f3f3f3);
}
.table__03--item01 {
  padding: 2.5rem 3rem;
}
.table__03--item02 {
  width: 13rem;
  min-width: 100%;
  text-align: center;
}
.table__03--item02 a {
  color: var(--theme-color, #2d3c8c);
}
.table__03 a {
  text-decoration: underline;
}

@media screen and (max-width: 833px) {
  .table__01--content {
    display: block;
  }
  .table__01--head {
    padding: 0.5rem 2rem;
    border-bottom: none;
    border-left: 1px solid var(--theme-color, #2d3c8c);
  }
  .table__01--detail {
    padding: 1rem 0 2rem 2rem;
    border-bottom: none;
  }
  .table__01 .list-note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .table__02 {
    margin-right: -2.5rem;
    padding-right: 2.5rem;
    overflow-x: scroll;
  }
  .table__02 table {
    width: 100rem;
  }
}
input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.form__box {
  display: grid;
  gap: 0 2.4rem;
  grid-template-columns: 27.2rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form__box--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.form__box + .form__box {
  margin-top: 4rem;
}
.form__box--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__box--required {
  width: 6.4rem;
  height: 3rem;
  border-radius: 1.5rem;
  background-color: #2d3c8c;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 3rem;
}
.form__control {
  width: 100%;
  padding: 0.8125em 1.6rem;
  border-radius: 1.2rem;
  background-color: #f9f9f9;
  line-height: 1.5;
}
.form__control--textarea {
  height: 22.4rem;
}
.form__doui {
  margin-top: 6.4rem;
}
.form__submit {
  width: 25.8rem;
  height: 6rem;
  margin: 0 auto;
  display: block;
  border-radius: 1.2rem;
  background: #2d3c8c url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat right 3.2rem center/1.2rem auto;
  color: #fff;
  letter-spacing: 0.2em;
}
.form__submit:disabled {
  background-color: #aaa !important;
}
.form__footer {
  margin-top: 6.4rem;
}

.wpcf7-checkbox input[type=checkbox], .wpcf7-acceptance input[type=checkbox] {
  width: 1.25em;
  border: 1px solid #1f1f1f;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  aspect-ratio: 1;
}
.wpcf7-checkbox input[type=checkbox] + .wpcf7-list-item-label::before, .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  width: 0.65em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0.3em;
  display: block;
  border-right: 3px solid #2d3c8c;
  border-bottom: 3px solid #2d3c8c;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before, .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.wpcf7-checkbox .wpcf7-list-item, .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item label, .wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.wpcf7-checkbox a, .wpcf7-acceptance a {
  color: #2d3c8c;
  text-decoration: underline;
}

.wpcf7-not-valid-tip {
  margin-top: 0.75em;
  font-size: 0.875em;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em auto 0;
  padding: 3.2rem;
  border: none;
  border-radius: 1.2rem;
  background-color: #f9f9f9;
}

@media screen and (min-width: 834px) {
  .form__box--label {
    padding-top: 1rem;
  }
  .form__submit {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .form__submit:hover {
    background-color: #fa8500;
  }
}
@media screen and (max-width: 833px) {
  .form__box {
    gap: 1.2rem 0;
    grid-template-columns: 1fr;
  }
  .form__box + .form__box {
    margin-top: 2.4rem;
  }
  .form__box--label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.6rem;
  }
  .form__box--required {
    width: 5.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  .form__control {
    padding: 0.8125em 1em;
    font-size: 16px;
  }
  .form__doui {
    margin-top: 3.2rem;
  }
  .form__footer {
    margin-top: 3.2rem;
  }
  .wpcf7 form .wpcf7-response-output {
    margin: 0 auto;
    padding: 2.4rem;
  }
}
.modal__content {
  width: 100rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  border-radius: 0.8rem;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 5.6rem;
  overflow-y: auto;
}
.modal__close {
  width: 4.8rem;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: block;
  border-radius: 0.8rem;
  background-color: #e60012;
  aspect-ratio: 1;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 833px) {
  .modal__content--inner {
    padding: 2rem 2rem 4rem;
  }
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.home .main {
  padding-top: 0;
}
.home__hero {
  width: 100%;
  margin-bottom: 16rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.home__hero--wrapper {
  height: 100svh;
  position: relative;
}
.home__hero .main__container {
  height: 100%;
}
.home__hero--inner {
  width: 100%;
  height: 100%;
  padding: 4.8rem 0;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home__hero--catch {
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.5;
}
.home__hero--slider {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}
.home__hero .swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.home__hero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__hero--ogj {
  position: absolute;
  z-index: 2;
}
.home__hero--ogj.line01 {
  width: 28.6rem;
  bottom: -5rem;
  left: 2.4rem;
}
.home__hero--ogj.line02 {
  width: 73rem;
  top: -13.9rem;
  right: -32.4rem;
}
.home__hero--news--list {
  font-size: 1.4rem;
}
.home__hero--news--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
.home__hero--news--item + .home__hero--news--item {
  margin-top: 1.5em;
}
.home__hero--news--item a {
  max-width: 30.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home__hero--news .btn__01 {
  width: 16.6rem;
  height: 4.2rem;
  padding: 0 2rem;
  border-radius: 0.8rem;
}
.home__hero--news .btn__01--text {
  font-size: 1.4rem;
}
.home__business .module__imgTxt--img {
  text-align: center;
}
.home__business .module__imgTxt--img img {
  width: 90%;
  max-width: 45.2rem;
}
.home__businessList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home__businessList--item .item-img {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
}
.home__businessList--item .item-img::before {
  content: "";
  width: 100%;
  height: 8.8rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 31, 31, 0)), color-stop(51.44%, rgba(31, 31, 31, 0.65)), to(#1f1f1f));
  background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.65) 51.44%, #1f1f1f 100%);
  background-blend-mode: multiply;
}
.home__businessList--item .item-img img {
  width: 100%;
}
.home__businessList--item .item-caption {
  width: 100%;
  padding: 1.5em;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  --text-color: #fff;
}
.home__businessList--item .item-caption::after {
  content: "";
  width: 2.3rem;
  position: absolute;
  right: 1.6rem;
  bottom: 2rem;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%231f1f1f' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center center/1.1rem auto;
  aspect-ratio: 1;
}
.home__businessList--item .item-caption p {
  font-weight: 700;
  line-height: 1.5;
}
.home__businessList--item .item-text {
  margin-top: 1.5em;
  padding: 0 1.5em;
}
.home__compnay {
  background: url(../../images/home/compnay_bg.jpg) no-repeat center center/cover;
}
.home__compnay .module__imgTxt--text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40.2rem;
          flex: 0 0 40.2rem;
}
.home__compnay--img {
  position: relative;
}
.home__compnay--img .img-inner {
  width: 28.8rem;
  overflow: hidden;
  border-radius: 1.6rem;
}
.home__compnay--img .img-inner img {
  width: 100%;
}
.home__compnay--img .img01 {
  position: absolute;
  bottom: 5rem;
  left: 0;
}
.home__compnay--img .img02 {
  margin-left: auto;
}
.home__recruit--header {
  margin-bottom: 7.2rem;
}
.home__recruit--link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.6rem;
}
.home__recruit--link .arrow__01 {
  position: absolute;
  right: 3.2rem;
  bottom: 3.2rem;
  z-index: 2;
}

@media screen and (min-width: 834px) {
  .home__hero--news {
    width: 68.7rem;
    padding: 4rem 5.6rem;
    position: absolute;
    right: 0;
    bottom: 9rem;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.2rem;
    border-radius: 1.6rem 0 0 1.6rem;
    background-color: #fff;
  }
  .home__hero--news .btn__01 {
    position: absolute;
    top: 100%;
    right: 5.6rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .home__businessList--item {
    width: 25%;
  }
  .home__businessList--item:first-child .item-img {
    border-radius: 1.6rem 0 0 1.6rem;
  }
  .home__businessList--item:last-child .item-img {
    border-radius: 0 1.6rem 1.6rem 0;
  }
  .home__businessList--item .item-link .item-caption::after {
    -webkit-transition: background-color 0.3s, background-image 0.3s;
    transition: background-color 0.3s, background-image 0.3s;
  }
  .home__businessList--item .item-link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .home__businessList--item .item-link:hover .item-caption::after {
    background-color: #fa8500;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .home__businessList--item .item-img img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .home__recruit--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home__recruit--header .heading__01 {
    margin-bottom: 0;
  }
  .home__recruit--header p {
    font-size: 2rem;
  }
  .home__recruit--link {
    z-index: 2;
  }
  .home__recruit--link img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .home__recruit--link:hover::before {
    opacity: 1;
  }
  .home__recruit--link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .home__recruit--link:hover .arrow__01 {
    background-color: #fa8500;
  }
  .home__recruit--link:hover .arrow__01--icon > path {
    stroke: #fff;
  }
}
@media screen and (max-width: 833px) {
  .home__hero {
    margin-bottom: 5.6rem;
  }
  .home__hero .main__container {
    padding-top: 7.6rem;
  }
  .home__hero--inner {
    padding: 0 0 4.2rem 0;
  }
  .home__hero--catch {
    text-align: center;
    font-size: 2.8rem;
  }
  .home__hero--ogj.line01 {
    width: 13rem;
    bottom: -1.3rem;
    left: -2.5rem;
  }
  .home__hero--ogj.line02 {
    width: 33.4rem;
    top: -4.5rem;
    right: -16.8rem;
  }
  .home__hero--news {
    padding: 5.6rem 2.8rem;
  }
  .home__hero--news--list {
    margin-top: 2.4rem;
  }
  .home__hero--news--item {
    gap: 0.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home__hero--news .btn__01 {
    width: 26rem;
    height: 5.6rem;
    margin: 5.6rem auto 0;
    border-radius: 1.2rem;
  }
  .home__businessList {
    gap: 4rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home__businessList--item {
    width: 100%;
  }
  .home__businessList--item .item-img {
    border-radius: 1.6rem;
    aspect-ratio: 1;
  }
  .home__businessList--item .item-caption {
    font-size: 1.6rem;
  }
  .home__businessList--item .item-text {
    text-align: center;
    font-size: 1.6rem;
  }
  .home__compnay {
    background-image: url(../../images/home/compnay_bg_sp.jpg);
  }
  .home__compnay--img .img-inner {
    width: 17rem;
  }
  .home__compnay--img .img01 {
    bottom: 3rem;
  }
  .home__recruit--header {
    margin-bottom: 4rem;
  }
  .home__recruit--header p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .home__recruit--link .arrow__01 {
    right: 1.6rem;
    bottom: 1.6rem;
  }
}
.company__overview--table {
  font-size: 1.8rem;
}
.company__overview--table .list-note {
  margin-top: 0.75em;
  font-size: 87.5%;
}
.company__access--map {
  width: auto;
  height: 48rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.company__access--map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 833px) {
  .company__overview--table {
    font-size: 1.4rem;
  }
  .company__overview--table dt {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    line-height: 1;
  }
  .company__access--map {
    height: 40rem;
    margin: 0 -2.8rem;
  }
}
.strength__introduce--block {
  padding: 8rem 4rem;
  border-radius: 1.6rem;
  background-color: #f9f9f9;
}
.strength__introduce--block .text01 {
  margin-bottom: 5.6rem;
  font-weight: 900;
  font-size: 3.6rem;
}
.strength__introduce--block .text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 3.2rem;
}
.strength__introduce--block .text02 .icon01 {
  --theme-color: #2d3c8c;
}
.strength__introduce--block .text02 .icon02 {
  --theme-color: #fa8500;
}
.strength__introduce--block .text02 .icon03 {
  --theme-color: #7b7b7b;
}
.strength__introduce--block .text02-icon {
  width: 18.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 4px solid var(--theme-color, #ccc);
  border-radius: 50%;
  aspect-ratio: 1;
}
.strength__introduce--block .text02-icon-img {
  width: 7.4rem;
  height: 7.4rem;
}
.strength__introduce--block .text02-icon-caption {
  color: var(--theme-color, #ccc);
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 2.4rem;
}
.strength__introduce--block .text02-text {
  margin-top: auto;
  margin-bottom: 1em;
}
.strength__introduce--block .text03 {
  width: 100%;
  max-width: 74.8rem;
  margin-top: 5.6rem;
  padding: 0.25em 1em;
  display: inline-block;
  border-radius: 3.1rem;
  background-color: #fff;
  font-weight: 700;
  font-size: 2.6rem;
}
.strength__introduce--text {
  margin-top: 8rem;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 2.4rem;
}
.strength__introduce--text strong {
  letter-spacing: 0.2em;
  font-size: 3.2rem;
}
.strength__introduce--text::after {
  content: "";
  width: 6rem;
  height: 3.2rem;
  margin-top: 4.8rem;
  position: absolute;
  top: 100%;
  left: calc(50% - 3rem);
  display: block;
  background-color: #fa8500;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.strength__point--list {
  display: grid;
  gap: 4.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: count;
}
.strength__point--item {
  padding: 5.6rem 4rem;
  position: relative;
  border-radius: 1.6rem;
  background-color: #fff;
}
.strength__point--item::before {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  color: #2d3c8c;
  counter-increment: count;
  letter-spacing: -0.07em;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 11.2rem;
  line-height: 1;
  opacity: 0.08;
}
.strength__point--item p {
  line-height: 2;
}
.strength__point--title {
  margin-bottom: 1.5em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 833px) {
  .strength__introduce--block {
    padding: 4rem 2rem;
    border-radius: 0.8rem;
  }
  .strength__introduce--block .text01 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .strength__introduce--block .text02 {
    gap: 0 1.4rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .strength__introduce--block .text02 .icon01 {
    margin: 0 4rem;
  }
  .strength__introduce--block .text02-icon {
    width: 12.4rem;
    border-width: 3px;
  }
  .strength__introduce--block .text02-icon-img {
    width: 4.6rem;
    height: 4.6rem;
  }
  .strength__introduce--block .text02-icon-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .strength__introduce--block .text02-icon-caption {
    font-size: 1.6rem;
  }
  .strength__introduce--block .text02-text {
    margin-top: 1.5em;
    font-size: 1.8rem;
  }
  .strength__introduce--block .text03 {
    margin-top: 3.2rem;
    padding: 1.25em 1em;
    border-radius: 4.2rem;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .strength__introduce--text {
    margin-top: 4rem;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .strength__introduce--text strong {
    letter-spacing: 0.1em;
    font-size: 2rem;
  }
  .strength__introduce--text::after {
    width: 4.4rem;
    height: 2.4rem;
    margin: 3.2rem auto 0;
    position: relative;
    top: auto;
    left: auto;
  }
  .strength__point--list {
    gap: 2.4rem;
    grid-template-columns: 1fr;
  }
  .strength__point--item {
    padding: 4.8rem 2.4rem;
  }
  .strength__point--item::before {
    font-size: 9.6rem;
  }
  .strength__point--item p {
    line-height: 1.8;
  }
  .strength__point--title {
    margin-bottom: 1em;
    font-size: 1.8rem;
  }
}
.business__lead--list {
  display: grid;
  gap: 4.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.business__lead--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business__lead--item.type01 {
  --theme-color: #2d3c8c;
}
.business__lead--item.type02 {
  --theme-color: #fa8500;
}
.business__lead--title {
  margin-bottom: 3.2rem;
  padding-left: 2.8rem;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}
.business__lead--title::before {
  content: "";
  width: 0.4rem;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 0;
  border-radius: 0.2rem;
  background-color: var(--theme-color);
}
.business__lead--detail {
  padding: 5.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1.6rem;
  background-color: #f9f9f9;
}
.business__lead--detail dt {
  margin-bottom: 1.75em;
  color: var(--theme-color);
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}
.business__lineup--list {
  display: grid;
  gap: 4.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.business__lineup--link {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.6rem;
  background-color: #fff;
}
.business__lineup--link::after {
  content: "";
  width: 3.2rem;
  position: absolute;
  right: 1.6rem;
  bottom: 2rem;
  border-radius: 50%;
  background: #2d3c8c url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center center/1.4rem auto;
  aspect-ratio: 1;
}
.business__lineup--img img {
  width: 100%;
}
.business__lineup--text {
  padding: 4rem 4rem 5.6rem;
}
.business__lineup--text p {
  font-size: 2rem;
  line-height: 1.6;
}
.business__lineup--title {
  margin-bottom: 0.75em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}
.business__scope--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: count;
}
.business__scope--item {
  padding: 4.8rem 22.4rem 4.8rem 5.6rem;
  position: relative;
  border-radius: 1.6rem;
  background-color: #fff;
}
.business__scope--item::before {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 50%;
  right: 4.8rem;
  color: #2d3c8c;
  counter-increment: count;
  letter-spacing: -0.07em;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 11.2rem;
  line-height: 1;
  opacity: 0.08;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.business__scope--title {
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}
.business__scope--text {
  margin-top: 1em;
}
.business__case--slider {
  --swiper-pagination-bullet-horizontal-gap: .8rem;
  --swiper-pagination-bullet-inactive-color: #d8d8d8;
  --swiper-pagination-bullet-inactive-opacity: .8;
  --swiper-pagination-bullet-size: 1.0rem;
  --swiper-theme-color: #2d3c8c;
}
.business__case--slider .swiper {
  overflow: visible !important;
}
.business__case--slider .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.business__case--slider .swiper-button {
  width: 5.6rem;
  height: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #2d3c8c;
}
.business__case--slider .swiper-button::before {
  content: "";
  width: 1.4rem;
  height: 2rem;
  margin-right: -0.4rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 22' fill='none'><path stroke='%23F9F9F9' stroke-linecap='round' stroke-width='3' d='m1.778 20.33 12.445-9.333L1.778 1.664'/></svg>") no-repeat center center/contain;
}
.business__case--slider .swiper-button::after {
  content: none;
}
.business__case--slider .swiper-button-prev {
  left: -2.8rem;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.business__case--slider .swiper-button-next {
  right: -2.8rem;
}
.business__case--slider .swiper-pagination {
  margin-top: 3.2rem;
  position: relative;
  bottom: auto !important;
  line-height: 0;
}
.business__case .consultation {
  --theme-color: #2d3c8c;
}
.business__case .consultation dd {
  font-weight: 700;
  font-size: 1.8rem;
}
.business__case .suggestion {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  --theme-color: #fa8500;
}
.business__case--item {
  width: 100%;
  padding: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 1.6rem;
  background-color: #f9f9f9;
}
.business__case--inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #fff;
}
.business__case--inner + .business__case--inner {
  margin-top: 4rem;
}
.business__case--inner dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 4rem;
  border-radius: 0.8rem 0 0.8rem 0;
  background-color: var(--theme-color);
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.5;
}
.business__case--inner dd {
  padding: 2.8rem 4rem 4rem;
}

@media screen and (max-width: 833px) {
  .business__lead .common__lead--column--img {
    text-align: center;
  }
  .business__lead .common__lead--column--img img {
    max-width: 23.5rem;
  }
  .business__lead--list {
    grid-template-columns: 1fr;
  }
  .business__lead--title {
    font-size: 2rem;
  }
  .business__lead--detail {
    padding: 4.8rem 2.4rem;
  }
  .business__lead--detail dt {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
  }
  .business__lineup--list {
    grid-template-columns: 1fr;
  }
  .business__lineup--link::after {
    width: 2.4rem;
    right: 1rem;
    bottom: 1rem;
  }
  .business__lineup--text {
    padding: 4rem 2.4rem;
  }
  .business__lineup--text p {
    font-size: 1.4rem;
  }
  .business__lineup--title {
    letter-spacing: 0.05em;
    font-size: 2rem;
  }
  .business__scope--item {
    padding: 4.8rem 2.4rem;
  }
  .business__scope--item::before {
    top: 1.2rem;
    right: 2.4rem;
    font-size: 9.6rem;
    -webkit-transform: none;
            transform: none;
  }
  .business__scope--title {
    font-size: 1.8rem;
  }
  .business__scope--text {
    margin-top: 1.25em;
  }
  .business__case--slider .swiper-button {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0;
    position: relative;
  }
  .business__case--slider .swiper-button::before {
    width: 0.7rem;
    height: 1rem;
    margin-right: -0.2rem;
  }
  .business__case--slider .swiper-button-wrap {
    margin-top: 2.6rem;
    padding: 0 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .business__case--slider .swiper-button-prev {
    left: auto;
  }
  .business__case--slider .swiper-button-next {
    right: auto;
  }
  .business__case--slider .swiper-pagination {
    display: none;
  }
  .business__case .consultation dd {
    font-size: 1.4rem;
  }
  .business__case--item {
    padding: 2.4rem;
  }
  .business__case--inner dd {
    padding: 3.2rem 2.4rem;
  }
  .business__case--inner dd p {
    line-height: 1.8;
  }
}
.recruit__mv {
  margin-bottom: 14rem;
  padding: 16rem 4.4rem 0;
}
.recruit__mv--inner {
  height: 58rem;
  position: relative;
  overflow: hidden;
  border-radius: 3.2rem;
}
.recruit__mv--inner::before, .recruit__mv--inner::after {
  content: "";
  position: absolute;
  z-index: 2;
}
.recruit__mv--inner::before {
  width: 68.5rem;
  height: 57rem;
  top: -23rem;
  right: -30.5rem;
  background: url(../../images/recruit/line01.svg) no-repeat center center/contain;
}
.recruit__mv--inner::after {
  width: 26.8rem;
  height: 23.2rem;
  bottom: -8.8rem;
  left: 2.4rem;
  background: url(../../images/recruit/line02.svg) no-repeat center center/contain;
}
.recruit__mv .main__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__mv .heading__01 {
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}
.recruit__mv .heading__01::before {
  content: none;
}
.recruit__mv .heading__01--label {
  position: absolute;
  bottom: 0.25em;
  left: 0;
  font-weight: 800;
  font-size: 11rem;
  opacity: 0.5;
}
.recruit__mv .heading__01--main {
  font-size: 5.6rem;
}
.recruit__mv--button {
  position: absolute;
  right: 4.4rem;
  bottom: 4rem;
  text-align: center;
}
.recruit__mv--button .btn__02 {
  width: 28.2rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.4rem solid #fa8500;
  border-radius: 5rem;
  background-color: #fff;
  -webkit-box-shadow: 0.4rem 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.4rem 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.16);
  --text-color: #fa8500;
}
.recruit__mv--button .btn__02--text {
  font-weight: 700;
  font-size: 2.4rem;
}
.recruit__mv--button .text-note {
  margin-top: 1em;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
}
.recruit__mv--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.recruit__mv--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(31, 31, 31, 0.2);
}
.recruit__mv--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit__personality .module__imgTxt {
  gap: 0 8.8rem;
}
.recruit__personality .module__imgTxt--text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52.8rem;
          flex: 0 0 52.8rem;
}
.recruit__work--detail .item-inner + .item-inner {
  margin-top: 10rem;
}
.recruit__work--detail dt {
  padding-bottom: 1em;
  border-bottom: 1px solid #dedede;
  font-weight: 700;
  font-size: 2.4rem;
}
.recruit__work--detail dt a {
  position: relative;
  display: block;
}
.recruit__work--detail dt a::after {
  content: "";
  width: 3.2rem;
  position: absolute;
  top: calc(50% - 1.6rem);
  right: 0;
  border-radius: 50%;
  background: #fa8500 url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fff' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center 45%/50% auto;
  aspect-ratio: 1;
}
.recruit__work--detail dd {
  margin-top: 1.25em;
  font-size: 2rem;
}
.recruit__crosstalk {
  position: relative;
}
.recruit__crosstalk--link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}
.recruit__crosstalk .heading__03--label {
  color: rgba(255, 255, 255, 0.3);
}
.recruit__crosstalk--bg {
  z-index: -1;
}
.recruit__crosstalk--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.recruitPersonality__point--title {
  margin-bottom: 7.2rem;
  padding-left: 5.2rem;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.5;
}
.recruitPersonality__point--title::before {
  content: "";
  width: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.recruitPersonality__point--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruitPersonality__point--list > * {
  width: calc((100% - 4.8rem) / 3);
}
.recruitPersonality__point--item {
  padding: 4.8rem 4.8rem;
  border-radius: 3.2rem;
  background-color: #fff;
}
.recruitPersonality__point--item .point-image {
  width: 12rem;
  margin: 0 auto 3.6rem;
}
.recruitPersonality__point--item .point-title {
  margin: 0 -0.2em 1em;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}
.recruitCrosstalk__lead--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruitCrosstalk__lead--header .heading__02 {
  margin-bottom: 0;
}
.recruitCrosstalk__lead--sentence {
  max-width: 50.4rem;
}
.recruitCrosstalk__lead--visual {
  margin-top: 14rem;
  overflow: hidden;
  border-radius: 3.2rem;
}
.recruitCrosstalk__member--list {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(4, 1fr);
}
.recruitCrosstalk__member--item {
  overflow: hidden;
  border-radius: 2.4rem;
  background-color: #fff;
}
.recruitCrosstalk__member--item .member-image {
  aspect-ratio: 240/200;
}
.recruitCrosstalk__member--item .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruitCrosstalk__member--item .member-text {
  padding: 2.4rem;
}
.recruitCrosstalk__member--item .member-title {
  margin-bottom: 0.15em;
  color: #fa8500;
  font-weight: 700;
  font-size: 1.4rem;
}
.recruitCrosstalk__member--item .member-name {
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.5;
}
.recruitCrosstalk__member--item .member-detail {
  margin-top: 0.5em;
  font-size: 1.4rem;
  line-height: 1.6;
}
.recruitCrosstalk__block {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.recruitCrosstalk__block.bg-01 {
  --bg-color: #fff;
}
.recruitCrosstalk__block--title {
  margin-bottom: 8.8rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruitCrosstalk__block--title::before {
  content: "";
  width: 4rem;
  height: 3.2rem;
  position: absolute;
  top: 100%;
  left: calc(50% - 2rem);
  background-color: #fa8500;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.recruitCrosstalk__block--title .title-label {
  padding: 0.75em 8.8rem;
  border-radius: 3.2rem 3.2rem 0 0;
  background: linear-gradient(103.27deg, #ffb737 19.09%, #fa8500 60.36%);
  letter-spacing: 0;
  font-family: "Heebo", sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.5;
  --text-color: #fff;
}
.recruitCrosstalk__block--title .title-main {
  padding: 1em 8.8rem;
  border: 2px solid #fa8500;
  border-top: none;
  border-radius: 0 0 3.2rem 3.2rem;
  letter-spacing: 0.2em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.5;
}
.recruitCrosstalk__block--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruitCrosstalk__block--item + .recruitCrosstalk__block--item {
  margin-top: 4.8rem;
}
.recruitCrosstalk__block--item:nth-child(odd) .recruitCrosstalk__block--text::before {
  right: 100%;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.recruitCrosstalk__block--item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.recruitCrosstalk__block--item:nth-child(even) .recruitCrosstalk__block--text::before {
  left: 100%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.recruitCrosstalk__block--image {
  width: 10rem;
  text-align: center;
}
.recruitCrosstalk__block--image .image-name {
  margin-top: 0.75em;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 1.4rem;
}
.recruitCrosstalk__block--text {
  padding: 4rem 5.6rem;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1.6rem;
  background-color: var(--bg-color, #f9f9f9);
}
.recruitCrosstalk__block--text::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 3.2rem;
  background-color: var(--bg-color, #f9f9f9);
}
.recruitCrosstalk__block--visual {
  margin: 8rem 0;
  overflow: hidden;
  border-radius: 3.2rem;
}
.recruitCrosstalk__block--visual img {
  width: 100%;
}
.recruitCrosstalk__block--visual:last-child {
  margin-bottom: 0;
}
.recruitJobDesc__item {
  border-bottom: 1px solid #dedede;
}
.recruitJobDesc__item:first-of-type {
  border-top: 1px solid #dedede;
}
.recruitJobDesc__header {
  padding: 3.6rem;
  cursor: pointer;
}
.recruitJobDesc__header--inner {
  max-width: 85.6rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruitJobDesc__header--title {
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  line-height: 1.6666666667;
}
.recruitJobDesc__header--icon {
  width: 4rem;
  height: 4rem;
  position: relative;
  border-radius: 50%;
  background-color: #fa8500;
}
.recruitJobDesc__header--icon::before, .recruitJobDesc__header--icon::after {
  content: "";
  width: 40%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.recruitJobDesc__header--icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.recruitJobDesc__header.is-active .recruitJobDesc__header--icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.recruitJobDesc__body {
  display: none;
}
.recruitJobDesc__body--inner {
  max-width: 85.6rem;
  margin: 0 auto;
  padding-bottom: 10rem;
}
.recruitJobDesc__details {
  margin-bottom: 8rem;
  padding: 5.6rem 6.8rem;
  border-radius: 3.2rem;
  background-color: #f9f9f9;
}
.recruitJobDesc__details--title {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 1.8rem;
}
.recruitJobDesc__details .list-circle li::before {
  color: #fa8500;
}
.recruitJobDesc__details .list-circle li + li {
  margin-top: 0.5em;
}
.recruitJobDesc__details--suggestion {
  margin-top: 3.6rem;
}
.recruitJobDesc__details--suggestion dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5em;
  padding: 0 1.25em;
  border-radius: 1.4rem;
  background-color: #fa8500;
  color: #fff;
  letter-spacing: 0.2em;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 2.8rem;
}
.recruitJobDesc__details--table {
  display: grid;
  gap: 0 3.2rem;
  grid-template-columns: auto 1fr;
}
.recruitJobDesc__details--table dt, .recruitJobDesc__details--table dd {
  padding-left: 0;
  font-weight: 500;
  line-height: 1.6;
}
.recruitJobDesc__button {
  margin-top: 10rem;
  text-align: center;
}
.recruitJobDesc__button .btn__02 {
  width: 35.4rem;
  max-width: 100%;
  height: 7.2rem;
  padding: 0 5.8rem;
  border-radius: 3.6rem;
}
.recruitJobDesc__button .btn__02--text {
  font-size: 2rem;
}
.recruitJobDesc__button p {
  margin-top: 1.5em;
  font-size: 1.2rem;
}
.recruitEnvironment__example {
  margin-top: 7.2rem;
  padding: 5.6rem;
  border-radius: 3.2rem;
  background: linear-gradient(27.39deg, #ffb737 15.43%, #fa8500 50.12%);
}
.recruitEnvironment__example--inner {
  max-width: 85.6rem;
  margin: 0 auto;
}
.recruitEnvironment__example--text p {
  margin-bottom: 0.75em;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
}
.recruitEnvironment__example--text ul {
  font-size: 2rem;
}
.recruitEnvironment__example--message {
  margin-top: 1.25em;
  padding: 1.25em;
  border-radius: 2.4rem;
  background-color: #fff;
  font-size: 2rem;
}
.recruitEnvironment__example--message span {
  color: #fa8500;
  font-weight: 700;
}
.recruitEnvironment__other--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: count;
}
.recruitEnvironment__other--item {
  padding: 4rem 22.4rem 4rem 5.6rem;
  position: relative;
  border: 2px solid #fa8500;
  border-radius: 2.4rem;
  background-color: #fff;
}
.recruitEnvironment__other--item::before {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 2.4rem;
  right: 4.8rem;
  color: #fa8500;
  counter-increment: count;
  letter-spacing: -0.07em;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 11.2rem;
  line-height: 1;
  opacity: 0.08;
}
.recruitEnvironment__other--title {
  margin-bottom: 0.5em;
  padding-left: 3.6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
}
.recruitEnvironment__other--title::before {
  content: "";
  width: 2rem;
  position: absolute;
  top: 0.35em;
  left: 0;
  border-radius: 50%;
  background-color: #fa8500;
  aspect-ratio: 1;
}
.recruitEnvironment__other--title .title-label {
  margin-left: 2em;
  padding: 0 1.25em;
  display: inline-block;
  border-radius: 1em;
  background-color: #fa8500;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
}

@media screen and (min-width: 834px) {
  .recruit__lead--column {
    margin-bottom: 7.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recruit__lead--sentence {
    max-width: 50.4rem;
  }
  .recruit__mv--button .btn__02 {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .recruit__mv--button .btn__02:hover {
    background-color: #fa8500;
    --text-color: #fff;
  }
  .recruit__work--detail dt a::after {
    border: 1px solid #fff;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .recruit__work--detail dt a:hover::after {
    border-color: #fa8500;
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fa8500' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .recruit__crosstalk {
    padding-top: 10rem;
    padding-bottom: 10rem;
    position: relative;
  }
  .recruit__crosstalk::before {
    content: "";
    width: calc(50% - 4rem);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 8rem 0;
    background: linear-gradient(97.14deg, #ffb737 11.13%, #fa8500 63.02%);
  }
  .recruit__crosstalk--bg {
    width: calc(50% + 12rem);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
  }
  .recruit__crosstalk--bg img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .recruit__crosstalk .btn__02 {
    position: relative;
    overflow: hidden;
  }
  .recruit__crosstalk .btn__02::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(99deg, #ffb737 13.7%, #fa8500 62.16%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .recruit__crosstalk .btn__02--text {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .recruit__crosstalk .btn__02--arrow {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .recruit__crosstalk:hover .btn__02 {
    border-color: #fff;
  }
  .recruit__crosstalk:hover .btn__02::before {
    opacity: 1;
  }
  .recruit__crosstalk:hover .btn__02--text {
    --text-color: #fff;
  }
  .recruit__crosstalk:hover .btn__02--arrow {
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23fa8500' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
  .recruit__crosstalk:hover .recruit__crosstalk--bg img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .recruitCrosstalk__lead--visual {
    height: 440px;
  }
  .recruitCrosstalk__lead--visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1440px) {
  .recruit__crosstalk {
    padding-top: 8.4vw;
    padding-bottom: 8.4vw;
  }
  .recruitCrosstalk__lead--visual {
    height: auto;
  }
}
@media screen and (max-width: 833px) {
  .recruit__lead--column {
    margin-bottom: 5.6rem;
  }
  .recruit__mv {
    padding: 8.7rem 2.8rem 0;
  }
  .recruit__mv--inner {
    height: calc(100svh - 8.7rem - 2rem);
  }
  .recruit__mv--inner::before {
    width: 28.2rem;
    height: 23.4rem;
    top: -3.8rem;
    right: -14rem;
  }
  .recruit__mv--inner::after {
    width: 11rem;
    height: 9.5rem;
    bottom: 1.2rem;
    left: -2rem;
  }
  .recruit__mv .main__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recruit__mv .heading__01 {
    width: 18.4rem;
  }
  .recruit__mv .heading__01--label {
    font-size: 5.6rem;
  }
  .recruit__mv .heading__01--main {
    font-size: 2.8rem;
  }
  .recruit__personality .module__imgTxt {
    gap: 4rem 0;
  }
  .recruit__personality .module__imgTxt--text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .recruit__work--detail .item-inner + .item-inner {
    margin-top: 4rem;
  }
  .recruit__work--detail dt {
    font-size: 2rem;
  }
  .recruit__work--detail dt a::after {
    content: none;
  }
  .recruit__work--detail dd {
    font-size: 1.4rem;
  }
  .recruit__crosstalk .main__container {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
    border-radius: 0 2.4rem 0 0;
    background: linear-gradient(97.14deg, #ffb737 11.13%, #fa8500 63.02%);
  }
  .recruit__crosstalk--bg {
    width: 100%;
    margin-bottom: -2.4rem;
    aspect-ratio: 36/28;
  }
  .recruitPersonality__lead .heading__02 {
    font-size: 2rem;
  }
  .recruitPersonality__point--title {
    margin-bottom: 4rem;
    padding-left: 2.8rem;
    font-size: 2rem;
  }
  .recruitPersonality__point--title::before {
    top: 0.3em;
  }
  .recruitPersonality__point--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitPersonality__point--list > * {
    width: 100%;
  }
  .recruitPersonality__point--item {
    padding: 4rem 3.2rem;
    border-radius: 2.4rem;
  }
  .recruitPersonality__point--item .point-image {
    width: 10rem;
    margin: 0 auto 2.8rem;
  }
  .recruitPersonality__point--item .point-title {
    margin: 0 -0.2em 1em;
    font-size: 2rem;
  }
  .recruitCrosstalk__lead--header {
    gap: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitCrosstalk__lead--visual {
    margin-top: 4rem;
    border-radius: 2.4rem;
  }
  .recruitCrosstalk__member--list {
    grid-template-columns: 1fr;
  }
  .recruitCrosstalk__member--item .member-image {
    aspect-ratio: 304/200;
  }
  .recruitCrosstalk__block {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
  .recruitCrosstalk__block--title {
    margin-bottom: 5.2rem;
    text-align: center;
  }
  .recruitCrosstalk__block--title::before {
    width: 2.4rem;
    height: 2rem;
    left: calc(50% - 1.2rem);
  }
  .recruitCrosstalk__block--title .title-label {
    padding: 2rem;
    border-radius: 2.4rem 2.4rem 0 0;
    font-size: 2.4rem;
    line-height: 1;
  }
  .recruitCrosstalk__block--title .title-main {
    padding: 1em 1em;
    border-radius: 0 0 2.4rem 2.4rem;
    font-size: 1.6rem;
  }
  .recruitCrosstalk__block--item {
    gap: 0 2.4rem;
  }
  .recruitCrosstalk__block--item + .recruitCrosstalk__block--item {
    margin-top: 3.2rem;
  }
  .recruitCrosstalk__block--image {
    width: 8rem;
    margin-bottom: auto;
  }
  .recruitCrosstalk__block--image .image-name {
    font-size: 1.2rem;
  }
  .recruitCrosstalk__block--text {
    padding: 2rem;
  }
  .recruitCrosstalk__block--text::before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .recruitCrosstalk__block--visual {
    margin: 3.2rem 0;
    border-radius: 2.4rem;
  }
  .recruitCrosstalk__block--visual:last-child {
    margin-bottom: 0;
  }
  .recruitJobDesc__block .heading__02 {
    margin-bottom: 5.6rem;
  }
  .recruitJobDesc__item {
    margin: 0 -2.8rem;
  }
  .recruitJobDesc__header {
    padding: 2.8rem;
  }
  .recruitJobDesc__header--inner {
    gap: 1.2rem;
  }
  .recruitJobDesc__header--title {
    font-size: 1.6rem;
  }
  .recruitJobDesc__header--icon {
    width: 2rem;
    height: 2rem;
  }
  .recruitJobDesc__body {
    padding: 0 2.8rem;
  }
  .recruitJobDesc__body--inner {
    padding-bottom: 5.6rem;
  }
  .recruitJobDesc__details {
    margin-bottom: 5.6rem;
    padding: 3.6rem 2.8rem;
    border-radius: 2rem;
  }
  .recruitJobDesc__details--title {
    font-size: 1.6rem;
  }
  .recruitJobDesc__details .list-circle {
    line-height: 1.5;
  }
  .recruitJobDesc__details--suggestion dt {
    line-height: 2.6rem;
  }
  .recruitJobDesc__details--table {
    gap: 0 1em;
  }
  .recruitJobDesc__button {
    margin-top: 5.6rem;
  }
  .recruitJobDesc__button .btn__02 {
    height: 5.6rem;
    padding: 0 3.6rem;
  }
  .recruitJobDesc__button .btn__02--text {
    font-size: 1.4rem;
  }
  .recruitEnvironment__example {
    margin-top: 5.6rem;
    margin-right: -2.8rem;
    margin-left: -2.8rem;
    padding: 5.6rem 2.8rem;
    border-radius: 2rem;
  }
  .recruitEnvironment__example--text p {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .recruitEnvironment__example--text ul {
    font-size: 1.4rem;
  }
  .recruitEnvironment__example--text li {
    text-align: justify;
    letter-spacing: 0.075em;
    line-height: 1.62;
  }
  .recruitEnvironment__example--text li + li {
    margin-top: 1em;
  }
  .recruitEnvironment__example--message {
    margin-top: 3.2rem;
    padding: 2.4rem 1.6rem;
    font-size: 1.4rem;
  }
  .recruitEnvironment__example--message * {
    letter-spacing: 0.08em;
  }
  .recruitEnvironment__other--item {
    padding: 4.8rem 2.4rem;
  }
  .recruitEnvironment__other--item::before {
    top: 1.2rem;
    right: 2.4rem;
    font-size: 9.6rem;
    -webkit-transform: none;
            transform: none;
  }
  .recruitEnvironment__other--title {
    margin-bottom: 1em;
    padding-left: 2.8rem;
    letter-spacing: 0.2em;
    font-size: 2rem;
  }
  .recruitEnvironment__other--title::before {
    width: 1.8rem;
  }
  .recruitEnvironment__other--title .title-label {
    margin-top: 0.75em;
    margin-left: -2.8rem;
    font-size: 1.4rem;
  }
  .recruitEnvironment__other--text {
    margin-top: 1.25em;
  }
}
.news__navi {
  margin-bottom: 8rem;
}
.news__naviList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news__naviList a {
  min-width: 12rem;
  padding: 0.25em 1em;
  display: inline-block;
  border: 1px solid #2d3c8c;
  border-radius: 0.75em;
  background-color: #fff;
  text-align: center;
  line-height: 1.5;
  --text-color: #2d3c8c;
}
.news__naviList a.is-current {
  background-color: #2d3c8c;
  pointer-events: none;
  --text-color: #fff;
}
.news__archiveList--item + .news__archiveList--item {
  margin-top: 3.2rem;
}
.news__card {
  padding: 3.2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.6rem;
  background-color: #f9f9f9;
}
.news__card--tag {
  min-width: 12rem;
  padding: 0.25em 1em;
  display: inline-block;
  border: 1px solid #2d3c8c;
  border-radius: 0.75em;
  background-color: #fff;
  text-align: center;
  line-height: 1.5;
  --text-color: #2d3c8c;
}
.news__card--title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
}
.news__card--arrow {
  width: 3.2rem;
  margin-left: 4.6rem;
  border: 1px solid #2d3c8c;
  background-color: #2d3c8c;
}
.news__header {
  margin-bottom: 3.2rem;
  padding-top: 18rem;
}
.news__header--date {
  margin-bottom: 0.5em;
  display: inline-block;
}
.news__header--title {
  font-size: 3.2rem;
}
.news__header--tag {
  min-width: 12rem;
  margin-top: 1.5em;
  padding: 0.25em 1em;
  display: inline-block;
  border: 1px solid #2d3c8c;
  border-radius: 0.75em;
  background-color: #fff;
  text-align: center;
  line-height: 1.5;
  --text-color: #2d3c8c;
}
.news__body {
  max-width: 85.6rem;
  margin: 0 auto;
}
.news__body--eyecatch {
  margin-bottom: 8rem;
  overflow: hidden;
  border-radius: 1.6rem;
}
.news__body p {
  line-height: 2;
}
.news__body p:not(:last-child) {
  margin-bottom: 2em;
}
.news__footer {
  margin-top: 10rem;
  padding-top: 10rem;
  border-top: 1px solid #dedede;
}

@media screen and (min-width: 834px) {
  .news__card[href]:hover .news__card--title {
    color: #2d3c8c;
  }
  .news__card[href]:hover .news__card--arrow {
    background-color: #fff;
  }
  .news__card[href]:hover .news__card--arrow path {
    stroke: #2d3c8c;
  }
}
@media screen and (max-width: 833px) {
  .news__navi {
    margin-bottom: 5.6rem;
  }
  .news__naviList {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .news__naviList a {
    width: 100%;
    min-width: 0;
  }
  .news__archiveList--item + .news__archiveList--item {
    margin-top: 1.6rem;
  }
  .news__card {
    padding: 2.4rem;
    gap: 0 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news__card--tag {
    min-width: 10rem;
    margin-left: auto;
  }
  .news__card--title {
    width: 100%;
    margin-top: 2rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    line-height: 1.8;
  }
  .news__card--arrow {
    width: 2.4rem;
    margin-top: 1.2rem;
    margin-left: auto;
  }
  .news__header {
    margin-bottom: 0;
    padding-top: 12rem;
  }
  .news__header--date {
    margin-bottom: 0.35em;
  }
  .news__header--title {
    font-size: 2.4rem;
  }
  .news__header--tag {
    margin-top: 1em;
  }
  .news__body--eyecatch {
    margin-bottom: 4rem;
  }
  .news__body p {
    line-height: 1.8;
  }
  .news__body p:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .news__footer {
    margin-top: 5.6rem;
    padding-top: 5.6rem;
  }
}
.sitemap__container {
  max-width: 85.6rem;
  margin: 0 auto;
}
.sitemap__navi > li {
  padding: 4.2rem 0;
  border-bottom: 1px solid #dedede;
}
.sitemap__navi > li > a {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 2rem;
}
.sitemap__navi > li > a::after {
  content: "";
  width: 3.2rem;
  position: absolute;
  top: calc(50% - 1.6rem);
  right: 0;
  border: 1px solid #2d3c8c;
  border-radius: 50%;
  background: #2d3c8c url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%23FFF' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center center/1.2rem auto;
  aspect-ratio: 1;
}
.sitemap__navi--child {
  margin-top: 3.6rem;
  font-size: 1.8rem;
}
.sitemap__navi--child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sitemap__navi--child li::before {
  content: "・";
}
.sitemap__navi--child li + li {
  margin-top: 0.75em;
}
.sitemap__navi--child a {
  position: relative;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sitemap__navi--child a::after {
  content: "";
  width: 3.2rem;
  position: absolute;
  top: calc(50% - 1.6rem);
  right: 0;
  border-radius: 50%;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%231F1F1F' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>") no-repeat center center/1.2rem auto;
  aspect-ratio: 1;
}

@media screen and (min-width: 834px) {
  .sitemap__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sitemap__navi {
    width: 36.2rem;
  }
  .sitemap__navi > li > a::after {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .sitemap__navi > li > a:hover {
    color: #2d3c8c;
    text-decoration: none;
  }
  .sitemap__navi > li > a:hover::after {
    background-color: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' fill='none'><path fill='%232D3C8C' d='M12 5.182v.75a.75.75 0 0 0 .547-1.263L12 5.182ZM8.456.305a.75.75 0 1 0-1.094 1.026l.547-.513.547-.513ZM0 5.182v.75h12v-1.5H0v.75Zm12 0 .547-.513L8.457.305l-.548.513-.547.513 4.09 4.364.548-.513Z'/></svg>");
  }
}
@media screen and (max-width: 833px) {
  .sitemap__navi:first-child {
    border-top: 1px solid #dedede;
  }
  .sitemap__navi > li {
    padding: 2.4rem 1.6rem;
  }
  .sitemap__navi > li > a {
    font-size: 1.4rem;
  }
  .sitemap__navi > li > a::after {
    width: 2rem;
    top: calc(50% - 1rem);
    background-size: 0.8rem auto;
  }
  .sitemap__navi--child {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    position: relative;
    font-size: 1.2rem;
  }
  .sitemap__navi--child::before {
    content: "";
    width: calc(100% + 3.2rem);
    height: 1px;
    position: absolute;
    top: 0;
    left: -1.6rem;
    background: #dedede;
  }
  .sitemap__navi--child li + li {
    margin-top: 1em;
  }
  .sitemap__navi--child a::after {
    width: 2rem;
    top: calc(50% - 1rem);
    background-size: 0.8rem auto;
  }
}
.contact__form {
  padding: 8.8rem;
  border-radius: 1.2rem;
  background-color: #fff;
}

@media screen and (max-width: 833px) {
  .contact__form {
    padding: 2.4rem 1.6rem;
  }
}
.policy__container {
  padding-top: 10rem;
  border-top: 1px solid #dedede;
}
.policy__block {
  max-width: 85.6rem;
  margin: 0 auto;
  --wp--preset--spacing--40: 4.0rem;
  --wp--preset--spacing--50: 8.0rem;
  --wp--preset--spacing--60: 10.0rem;
}
.policy__block + .policy__block {
  margin-top: 12rem;
}
.policy__block h2 {
  margin-bottom: 1em;
  font-weight: 900;
  font-size: 2.4rem;
}
.policy__block h2:not(:first-child) {
  margin-top: 3em;
}
.policy__block h3 {
  margin-bottom: 1em;
  font-weight: 900;
  font-size: 2rem;
}
.policy__block h3:not(:first-child) {
  margin-top: 3em;
}
.policy__block p {
  line-height: 2;
}
.policy__block ol {
  counter-reset: count;
}
.policy__block ol:not(:first-child) {
  margin-top: 1em;
}
.policy__block ol li {
  padding-left: 1.5em;
  position: relative;
  line-height: 2;
}
.policy__block ol li::before {
  content: counter(count) ".";
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: count;
}
.policy__block ol.space-1 li + li {
  margin-top: 0.2em;
}
.policy__block ul:not(:first-child) {
  margin-top: 1em;
}
.policy__block ul li {
  margin-left: 1em;
  position: relative;
  text-indent: -1em;
  line-height: 2;
}
.policy__block ul li::before {
  content: "・";
}
.policy__block ul.space-1 li + li {
  margin-top: 0.2em;
}
.policy__block .wp-block-table table {
  border-color: #dedede;
  border-right: 1px solid #dedede;
  border-left: 1px solid #dedede;
}
.policy__block .wp-block-table table thead {
  border-bottom-width: 1px;
}
.policy__block .wp-block-table table thead th {
  background-color: #f9f9f9;
}
.policy__block .wp-block-table table thead th:nth-child(1) {
  width: 20rem;
}
.policy__block .wp-block-table table tbody tr td:nth-child(1) {
  width: 20rem;
  font-weight: 700;
}
.policy__block .wp-block-table table th, .policy__block .wp-block-table table td {
  padding: 2rem 3.2rem;
  border-color: #dedede;
  border-right: 0;
  border-left: 0;
  line-height: 1.6;
}
.policy__block .is-block-description {
  margin-top: 2.4rem;
  padding-left: 3.6rem;
  position: relative;
}
.policy__block .is-block-description::before {
  content: "";
  width: 0.4rem;
  position: absolute;
  top: 0.5em;
  bottom: 0.5em;
  left: 0;
  border-radius: 0.2rem;
  background-color: #d9d9d9;
}
.policy__block .wp-block-group {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.policy__block .wp-block-group:not(:first-child) {
  margin-top: 10rem;
}
.policy__block .wp-block-spacer + * {
  margin-top: 0 !important;
}
.policy__block .wp-block-separator {
  margin: 10rem auto;
  border: none;
  border-top: 1px solid #dedede;
}
.policy__block .wp-block-table:not(:first-child) {
  margin-top: 1em;
}
.policy__footer {
  margin-top: 10rem;
}
.policy__footer .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 833px) {
  .policy__container {
    padding-top: 5.6rem;
  }
  .policy__block {
    --wp--preset--spacing--40: 2.0rem;
    --wp--preset--spacing--50: 3.6rem;
    --wp--preset--spacing--60: 4.8rem;
  }
  .policy__block h2 {
    font-size: 1.8rem;
  }
  .policy__block .wp-block-group.is-layout-flex {
    gap: 2.4rem;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .policy__block .wp-block-group:not(:first-child) {
    margin-top: 5.6rem;
  }
  .policy__block .wp-block-separator {
    margin: 4.8rem auto;
  }
  .policy__block .wp-block-table {
    width: auto;
    margin: 0 -2.8rem;
    padding: 0 2.8rem;
  }
  .policy__block .wp-block-table table {
    width: 75rem;
  }
}/*# sourceMappingURL=style.css.map */