@charset "UTF-8";
/* リセットcss */
/* ブラウザのUAスタイルシートのすべてのスタイルを削除、displayは除く */
*:where(:not(iframe, canvas, img, svg, video, input[type=checkbox], input[type=radio]):not(svg *)) {
  all: unset;
  display: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  font-size: inherit;
  padding: revert;
  overflow-wrap: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

a,
button,
input[type=submit],
input[type=reset],
input[type=button],
input[type=checkbox] {
  cursor: pointer;
}

button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
}

/* ----------------------------------------------
    基本設定
---------------------------------------------- */
html,
body {
  font-size: 62.5%;
}

body.js-fixed {
  overflow: hidden;
}

html {
  scroll-padding-top: 67px;
  scroll-behavior: smooth;
}

body {
  word-break: break-all;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  line-height: 1.4;
  position: relative;
  min-width: 1280px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  word-break: break-all;
}

.en {
  font-family: "Oswald", sans-serif;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.inner {
  width: 1200px;
  position: relative;
  padding: 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
    padding: 0;
  }
}

.fv__sp-logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv__sp-logo {
    pointer-events: none;
    display: block;
    width: 51.2vw;
    max-width: 220px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 990;
  }
}

.title-box .title-en {
  font-size: 2rem;
  font-weight: 900;
  color: #b8d200;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .title-box .title-en {
    font-size: 1rem;
    font-weight: 700;
  }
}
.title-box .title-ja {
  font-size: 6.4rem;
  font-weight: 900;
  color: #031f4b;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .title-box .title-ja {
    font-size: 3.2rem;
  }
}

.sec-disc {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .sec-disc {
    font-size: 1.4rem;
  }
}

.bg-title {
  font-size: 14.3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .bg-title {
    font-size: 7.4rem;
  }
}

.bg-title__blue {
  color: #a2badd;
  opacity: 0.5;
}
.bg-title__blue-2 {
  color: #031f4b;
  opacity: 0.2;
}

.bg-title__right {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.link__btn {
  display: block;
  background-color: #b8d200;
  font-size: 2.4rem;
  font-weight: 600;
  color: #132242;
  text-align: center;
  letter-spacing: 0.12em;
  border-radius: 12px;
  -webkit-box-shadow: 5px 5px 3px rgba(35, 24, 21, 0.15);
          box-shadow: 5px 5px 3px rgba(35, 24, 21, 0.15);
  text-shadow: 5px 5px 3px rgba(35, 24, 21, 0.15);
  height: 65px;
  line-height: 65px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .link__btn {
    font-size: 1.4rem;
    border-radius: 8px;
    letter-spacing: 0.07em;
    -webkit-box-shadow: 3px 3px 2px rgba(35, 24, 21, 0.15);
            box-shadow: 3px 3px 2px rgba(35, 24, 21, 0.15);
    text-shadow: 3px 3px 1px rgba(35, 24, 21, 0.15);
    height: 40px;
    line-height: 40px;
  }
}

/* ----------------------------------------------
    hover
---------------------------------------------- */
a {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
    header
---------------------------------------------- */
header {
  font-size: 1.6rem;
  min-width: 1280px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 990;
}
@media screen and (max-width: 767px) {
  header {
    min-width: 0;
  }
}
header a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #132242;
}

header.js-scroll {
  background-color: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
.header__menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu-btn {
    background-color: #fff;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 900;
  }
  .header__menu-btn .bar-wrap {
    display: block;
    width: 28px;
    height: 17px;
    position: relative;
  }
  .header__menu-btn .bar {
    width: 28px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__menu-btn .bar,
  .header__menu-btn .bar-wrap::before,
  .header__menu-btn .bar-wrap::after {
    display: block;
    background-color: #031f4b;
    height: 2px;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }
  .header__menu-btn .bar-wrap::before,
  .header__menu-btn .bar-wrap::after {
    content: "";
    width: 28px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__menu-btn .bar-wrap::before {
    top: 0;
  }
  .header__menu-btn .bar-wrap::after {
    bottom: 0;
  }
  .header__menu-btn .header__menu-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.3em;
  }
}

/* js */
@media screen and (max-width: 767px) {
  .header__menu-btn.click-js .bar {
    opacity: 0;
  }
  .header__menu-btn.click-js .bar-wrap::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__menu-btn.click-js .bar-wrap::after {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    overflow: scroll;
    background-image: -webkit-gradient(linear, left top, right top, from(#142244), color-stop(#16336a), to(#16336a));
    background-image: linear-gradient(to right, #142244, #16336a, #16336a);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 60px;
    top: -110vh;
    left: 0;
    z-index: 800;
    padding: 60px 0 40px;
    -webkit-transition: top 0.2s 0s ease;
    transition: top 0.2s 0s ease;
  }
}

/* js */
@media screen and (max-width: 767px) {
  .header__nav.show-nav-js {
    top: 0;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .nav__list {
    display: block;
    width: 100%;
    padding: 50px 9%;
    margin: auto;
  }
}

.nav__item {
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .nav__item {
    border-bottom: 1px solid #fff;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .nav__item a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .nav__item a::after {
    content: "";
    display: block;
    background: url(../img/common/arrow.svg) no-repeat center/contain;
    width: 6px;
    height: 8px;
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.header__info {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__info {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header__sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 200px;
    width: 100%;
    margin: 20px auto 46px;
  }
}

@media screen and (max-width: 767px) {
  .header__sns-item {
    width: 34px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .header__tel {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .header__tel p {
    font-size: 1.2rem;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__tel a {
    display: inline-block;
    font-size: 2.9rem;
    font-family: "Oswald", sans-serif;
    color: #fff;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #fff;
    padding: 0 0.2em;
  }
}

.header__line {
  position: relative;
  z-index: 900;
}
.header__line a {
  display: block;
  background-color: #b8d200;
  line-height: 1.3;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .header__line a {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 1.3rem;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0 100%);
    padding-right: 20px;
    padding-left: 18vw;
  }
}
.header__line .br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__line .br-sp {
    display: inline;
  }
}

/* ----------------------------------------------
    footer
---------------------------------------------- */
footer {
  background: url(../img/common/footer-bg.png) no-repeat left bottom/cover;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    background-image: none;
    padding-bottom: 70px;
  }
}
footer .inner {
  width: 1100px;
}
@media screen and (max-width: 767px) {
  footer .inner {
    width: 76vw;
  }
}
footer .footer__wrap-top {
  padding-top: 44px;
}
@media screen and (max-width: 767px) {
  footer .footer__wrap-top {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #142244), color-stop(93%, #163176));
    background-image: linear-gradient(to right, #142244 40%, #163176 93%);
    padding: 30px 0;
  }
}
footer .footer__logo {
  width: 122px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  footer .footer__logo {
    width: 76px;
    margin: 0 auto 33px;
  }
}
footer .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 900px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .footer__nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 240px;
    margin: 0 auto 35px;
  }
}
footer .footer__nav-list:nth-of-type(1) {
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  footer .footer__nav-list:nth-of-type(1) {
    width: 65px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__nav-list:nth-of-type(2) {
    width: 110px;
  }
}
footer .footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 45px;
}
@media screen and (max-width: 767px) {
  footer .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer__nav-item a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__nav-item a::after {
    content: "";
    display: block;
    background: url(../img/common/arrow.svg) no-repeat center/contain;
    width: 6px;
    height: 8px;
  }
}
footer .footer__wrap {
  background-color: rgba(19, 34, 66, 0.3);
  padding-top: 22px;
}
@media screen and (max-width: 767px) {
  footer .footer__wrap {
    background-color: none;
    background: url(../img/common/footer-bg-sp.png) no-repeat right bottom/cover;
    padding-top: 30px;
  }
}
footer .footer__company-name {
  font-weight: 600;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  footer .footer__company-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}
footer .footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
footer .footer__office-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 100px;
}
@media screen and (max-width: 767px) {
  footer .footer__office-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer address {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  footer address {
    font-size: 0.9rem;
  }
}
footer .footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 26px;
}
@media screen and (max-width: 767px) {
  footer .footer__sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .footer__sns-list.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  footer .footer__sns-list.pc-none {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
footer .footer__sns-list.sp-none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .footer__sns-list.sp-none {
    display: none;
  }
}
footer .footer__sns-item {
  width: 30px;
}
@media screen and (max-width: 767px) {
  footer .footer__sns-item {
    width: 18px;
  }
}
footer .copyright {
  background-color: #132242;
}
footer .copyright small {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  footer .copyright small {
    font-size: 1rem;
    text-align: center;
  }
}

/* ----------------------------------------------
    SP用フッターバー
---------------------------------------------- */
.footer-bar {
  background-color: #031f4b;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 900;
}
.footer-bar .footer-bar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-bar .footer-bar__item {
  width: 33.3333333333%;
}
.footer-bar a {
  display: block;
  color: #fff;
  text-align: center;
}
.footer-bar .footer-bar__item-text {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  padding-top: 10px;
}
.footer-bar .img-wrap {
  width: 50px;
  margin: auto;
}
/* ----------------------------------------------
    CONTACT　LINEで完結する
---------------------------------------------- */
.contact {
  background-color: #7490ba;
  padding: 118px 0 105px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 52px 0;
  }
}
.contact .inner {
  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: 767px) {
  .contact .inner {
    display: block;
  }
}
.contact .img-wrap {
  width: 354px;
}
@media screen and (max-width: 767px) {
  .contact .img-wrap {
    width: 190px;
    margin: auto;
  }
}
.contact .contact__contents {
  text-align: center;
  width: 500px;
}
@media screen and (max-width: 767px) {
  .contact .contact__contents {
    width: 100%;
  }
}
.contact .title-box {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .contact .title-box {
    margin-bottom: 16px;
  }
}
.contact .contact__text {
  font-size: 2.3rem;
  color: #031f4b;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact .contact__text {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.contact .apply__line-btn {
  display: block;
  background-color: #06c755;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.14em;
  border-radius: 18px;
  -webkit-box-shadow: 7px 7px 7px rgba(35, 24, 21, 0.3);
          box-shadow: 7px 7px 7px rgba(35, 24, 21, 0.3);
  text-shadow: 7px 7px 6px rgba(35, 24, 21, 0.3);
  width: 500px;
  height: 75px;
  line-height: 75px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact .apply__line-btn {
    font-size: 1.7rem;
    border-radius: 9px;
    -webkit-box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.3);
            box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.3);
    text-shadow: 4px 4px 3px rgba(35, 24, 21, 0.3);
    width: 300px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}

/* ----------------------------------------------
    下層ページ共通FV
---------------------------------------------- */
.lower .fv {
  aspect-ratio: 1280/522;
  overflow: hidden;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .lower .fv {
    aspect-ratio: auto;
    height: 260px;
    margin-bottom: 15px;
  }
}
.lower .fv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 60px;
  height: 100%;
  margin-right: -277px;
}
@media screen and (max-width: 767px) {
  .lower .fv__contents {
    gap: 0 15px;
    margin-right: calc(-15px - min(21vw, 80px));
    padding-top: 50px;
  }
}
.lower .fv__title-box {
  color: #031f4b;
  text-align: center;
}
.lower .subtitle {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .lower .subtitle {
    font-size: 1rem;
  }
}
.lower h1 {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .lower h1 {
    font-size: 3rem;
  }
}
.lower .fv__chara {
  width: 217px;
}
@media screen and (max-width: 767px) {
  .lower .fv__chara {
    width: min(21vw, 80px);
  }
}

/* ----------------------------------------------
    パンくずリスト
---------------------------------------------- */
.breadcrumbs {
  font-size: 1.2rem;
  font-weight: 600;
  color: #103770;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}
.breadcrumbs .inner {
  width: 1010px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .inner {
    width: 90%;
  }
}
.breadcrumbs .aioseo-breadcrumb-separator {
  padding: 0 0.7em;
}

/* ----------------------------------------------
    ページャー
---------------------------------------------- */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 15px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    font-size: 1.4rem;
  }
}
.pagination .page-numbers.current {
  font-weight: 700;
}
.pagination .page-numbers + .page-numbers::before {
  content: ">";
  display: inline-block;
}
.pagination .page-numbers + .page-numbers.dots::before {
  content: none;
}
.pagination .page-numbers.dots + .page-numbers::before {
  content: none;
}

/* ----------------------------------------------
    fade upアニメーション
---------------------------------------------- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}

/* js */
.fade-up.fade-up-on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ----------------------------------------------
    FV
---------------------------------------------- */
.fv {
  position: relative;
}
.fv .fv__text {
  color: #031f4b;
  text-align: right;
  position: absolute;
  right: 5.8vw;
  top: 18vw;
}
@media screen and (max-width: 767px) {
  .fv .fv__text {
    right: 10vw;
    top: 26.6vw;
  }
}
.fv .fv__text h1 {
  font-size: 7vw;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fv .fv__text h1 {
    font-size: 11.2vw;
  }
}
.fv .fv__text p {
  font-size: 1.5vw;
  font-weight: 600;
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .fv .fv__text p {
    font-size: 4vw;
    margin-top: 0.5em;
  }
}

/* ----------------------------------------------
    LINE応募
---------------------------------------------- */
.apply {
  background-color: #7a9cc4;
  padding: 94px 0 75px;
}
@media screen and (max-width: 767px) {
  .apply {
    padding: 70px 0 40px;
  }
}
.apply .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .apply .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.apply .apply__fukidashi .img-wrap:first-of-type {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .apply .apply__fukidashi .img-wrap:first-of-type {
    margin-bottom: 15px;
  }
}
.apply .apply__fukidashi .img-wrap {
  width: 358px;
}
@media screen and (max-width: 767px) {
  .apply .apply__fukidashi .img-wrap {
    width: 255px;
    margin: auto;
  }
}
.apply .apply__contents {
  color: #031f4b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .apply .apply__contents {
    margin-bottom: 50px;
  }
}
.apply .apply__title {
  font-size: 6.9rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .apply .apply__title {
    font-size: 3.6rem;
  }
}
.apply .apply__text {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .apply .apply__text {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
}
.apply .apply__line-btn {
  display: block;
  background-color: #06c755;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.14em;
  border-radius: 18px;
  -webkit-box-shadow: 7px 7px 7px rgba(35, 24, 21, 0.3);
          box-shadow: 7px 7px 7px rgba(35, 24, 21, 0.3);
  text-shadow: 7px 7px 6px rgba(35, 24, 21, 0.3);
  width: 580px;
  height: 87px;
  line-height: 87px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .apply .apply__line-btn {
    font-size: 1.8rem;
    border-radius: 9px;
    -webkit-box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.3);
            box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.3);
    text-shadow: 4px 4px 3px rgba(35, 24, 21, 0.3);
    width: 300px;
    height: 45px;
    line-height: 45px;
  }
}

/* ----------------------------------------------
    募集案件
---------------------------------------------- */
.top-recruit {
  overflow: hidden;
  background: url(../img/top/recruit-bg.png) no-repeat left top/100% auto;
  padding: 86px 0 160px;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    background: url(../img/top/recruit-bg-sp.png) no-repeat left top/100% auto;
    padding: 40px 0 60px;
  }
}
.top-recruit .bg-title {
  white-space: nowrap;
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-recruit .bg-title {
    top: 50%;
    right: -3%;
  }
}
.top-recruit .top-recruit__content {
  width: 1010px;
  position: relative;
  z-index: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top-recruit .top-recruit__content {
    width: auto;
  }
}
.top-recruit .title-ja {
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-recruit .title-ja {
    margin-bottom: 18px;
  }
}
.top-recruit .sec-disc {
  color: #fff;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top-recruit .sec-disc {
    margin-bottom: 20px;
  }
}
.top-recruit .link__btn {
  width: 375px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .top-recruit .link__btn {
    width: 225px;
    margin: 45px auto 0;
  }
}

/* ----------------------------------------------
    Instagram
---------------------------------------------- */
.instagram-feed {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .instagram-feed {
    background: url(../img/top/instagram-bg.svg) no-repeat right top/148px 146px;
    padding-bottom: 80px;
  }
}
.instagram-feed .instagram-feed__contents {
  width: 1010px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .instagram-feed .instagram-feed__contents {
    width: 100%;
  }
}
.instagram-feed #sb_instagram #sbi_images {
  margin-bottom: 50px;
}
.instagram-feed #sb_instagram #sbi_load .sbi_load_btn {
  padding-right: 2em;
  padding-left: 2em;
}
.instagram-feed #sb_instagram #sbi_load .sbi_load_btn {
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .instagram-feed #sb_instagram #sbi_load .sbi_load_btn {
    font-size: 1.1rem;
  }
}
.instagram-feed #sb_instagram #sbi_load .sbi_follow_btn a {
  font-size: 1.7rem;
  font-weight: 600;
  padding-right: 2em;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .instagram-feed #sb_instagram #sbi_load .sbi_follow_btn a {
    font-size: 1.1rem;
  }
}
.instagram-feed #sb_instagram #sbi_load .sbi_follow_btn a .svg-inline--fa {
  display: none;
}
.instagram-feed .instagram-feed__btn {
  display: block;
  background-color: #b8d200;
  font-size: 1.7rem;
  font-weight: 600;
  color: #132242;
  text-align: center;
  width: 264px;
  height: 45px;
  line-height: 45px;
}
@media screen and (max-width: 767px) {
  .instagram-feed .instagram-feed__btn {
    font-size: 1.5rem;
    width: 165px;
    height: 28px;
    line-height: 28px;
  }
}

/* ----------------------------------------------
    「働いてみたい」を応援します。
---------------------------------------------- */
.work {
  background: url(../img/top/work-bg.png) no-repeat left top/100% auto;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .work {
    background: url(../img/top/work-bg-sp.png) no-repeat left top/100% auto;
  }
}
.work .work__title-box {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .work .work__title-box {
    padding-top: 54px;
  }
}
.work .bg-title {
  font-size: 13rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  opacity: 0.2;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .work .bg-title {
    font-size: min(36px, 9.6vw);
  }
}
.work .work__title {
  font-size: 8rem;
  font-weight: 900;
  color: #fff;
  text-align: right;
  line-height: 1.4;
  width: 990px;
  position: relative;
  z-index: 1;
  margin: 10px auto 60px;
}
@media screen and (max-width: 767px) {
  .work .work__title {
    font-size: 3.5rem;
    width: auto;
    margin: 10px auto 30px;
  }
}
.work .work__title .space {
  margin-left: -0.4em;
}
.work .work__img {
  min-width: 1234px;
  width: 96.4vw;
  margin: 0 0 60px auto;
}
@media screen and (max-width: 767px) {
  .work .work__img {
    min-width: auto;
    width: 90.4vw;
    margin: 0 0 35px auto;
  }
}
.work .work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px 24px;
  width: 990px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .work .work__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.work .work__item {
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 3px rgba(35, 24, 21, 0.15);
          box-shadow: 6px 6px 3px rgba(35, 24, 21, 0.15);
  padding: 28px 20px 34px;
}
@media screen and (max-width: 767px) {
  .work .work__item {
    width: 72vw;
    padding: 23px;
    padding: 23px 43px;
  }
}
@media screen and (max-width: 767px) {
  .work .work__item-chara {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .work .work__item-chara::after {
    content: "";
    display: block;
    background: url(../img/top/work-chara.png) no-repeat center/contain;
    aspect-ratio: 67/116;
    width: 67px;
    position: absolute;
    bottom: 23px;
    right: -25px;
  }
}
.work .work__item-title::before {
  content: "";
  display: block;
  background-color: #b8d200;
  width: 3.5px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: -17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .work .work__item-title::before {
    width: 2px;
    left: -11px;
  }
}
.work .work__item-title {
  font-size: 3.9rem;
  font-weight: 800;
  color: #031f4b;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .work .work__item-title {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}
.work .work__item-subtitle {
  font-size: 3rem;
  font-weight: 800;
  color: #103771;
  line-height: 1.4;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .work .work__item-subtitle {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.work .work__item-text {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .work .work__item-text {
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------
    よくある質問
---------------------------------------------- */
.faq {
  margin-bottom: 217px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-bottom: 77px;
  }
}
.faq .title-box {
  width: 1012px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 767px) {
  .faq .title-box {
    width: 100%;
    margin: 0 auto 28px;
  }
}
.faq .link__btn {
  width: 296px;
}
@media screen and (max-width: 767px) {
  .faq .link__btn {
    width: 178px;
  }
}
.faq .faq__list {
  width: 895px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .faq .faq__list {
    width: 78vw;
    margin: 0 auto 40px;
  }
}
.faq .faq__item {
  -webkit-box-shadow: 0px 0px 12px rgba(19, 33, 66, 0.25);
          box-shadow: 0px 0px 12px rgba(19, 33, 66, 0.25);
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .faq .faq__item {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 8px;
  }
}
.faq .faq__q,
.faq .faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 18px 34px;
}
@media screen and (max-width: 767px) {
  .faq .faq__q,
  .faq .faq__a {
    gap: 12px;
    padding: 12px 14px;
  }
}
.faq .faq__q {
  background-color: rgba(162, 186, 221, 0.3);
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .faq .faq__q {
    font-size: 1.6rem;
  }
}
.faq .faq__a {
  background-color: #fff;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .faq .faq__a {
    font-size: 1.2rem;
  }
}
.faq .faq__a .faq__alpha {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.faq .faq__alpha {
  font-size: 3.1rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #003c83;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .faq .faq__alpha {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------
    ENTRY
---------------------------------------------- */
.entry {
  background: url(../img/top/entry-bg.png) no-repeat right top/100% auto;
  overflow: hidden;
  margin-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .entry {
    background: none;
    margin-bottom: 100px;
  }
}
.entry .inner {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .entry .inner {
    position: static;
    padding-top: 0;
  }
}
.entry .bg-title {
  font-size: 13rem;
  position: absolute;
  top: 10px;
  left: calc(100% - 0.5em);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 100%;
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .entry .bg-title {
    font-size: 6.5rem;
    top: -17px;
    left: calc(100% - 0.4em);
  }
}
.entry .entry__content {
  width: 1020px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .entry .entry__content {
    width: 100%;
  }
}
.entry .title-box {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .entry .title-box {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 767px) {
  .entry .title-ja .entry__title-line2 {
    display: block;
    text-indent: 3em;
  }
}
.entry .sec-disc {
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .entry .sec-disc {
    margin-bottom: 40px;
  }
}
.entry .entry__img {
  width: 87.5vw;
  min-width: 1120px;
  position: relative;
  z-index: 1;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .entry .entry__img {
    width: 100%;
    min-width: auto;
    margin-bottom: 35px;
  }
}
.entry .entry__step {
  width: 1020px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .entry .entry__step {
    width: 100%;
    position: relative;
  }
}
.entry .entry__step-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .entry .entry__step-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px 0;
  }
}
.entry .entry__step-item {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .entry .entry__step-item {
    width: 64.8vw;
  }
}
.entry .entry__step-img::before {
  content: "";
  display: block;
  background-color: #103771;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: -1;
}
.entry .entry__step-img {
  position: relative;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .entry .entry__step-img {
    margin-bottom: 20px;
  }
}
.entry .entry__step-img .img-wrap {
  width: 62px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .entry .entry__step-img .img-wrap {
    width: 40px;
  }
}
.entry .entry__step-text {
  font-size: 2.4rem;
  font-weight: 800;
  color: #103771;
  border-left: 3px solid #b8d200;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .entry .entry__step-text {
    font-size: 1.8rem;
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
}

/* ----------------------------------------------
    1日の流れはシンプル
---------------------------------------------- */
.schedule {
  background: url(../img/top/schedule-bg.png) no-repeat bottom left/100% auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .schedule {
    background: url(../img/top/schedule-bg-top-sp.png) no-repeat top left/100% auto, url(../img/top/schedule-bg-sp.png) no-repeat bottom right/100% auto;
    padding: 50px 0 70px;
  }
}
.schedule .schedule__content {
  text-align: center;
}
.schedule .title-box {
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .schedule .title-box {
    margin-bottom: 16px;
  }
}
.schedule .bg-title {
  font-size: 13rem;
  margin: -58px auto 38px;
}
@media screen and (max-width: 767px) {
  .schedule .bg-title {
    font-size: 4.1rem;
    font-size: 10.9vw;
    margin: -10px auto 28px;
  }
}
.schedule .schedule__list {
  width: 1005px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item:not(:last-of-type) {
    margin-bottom: 36px;
  }
}
.schedule .schedule__item-titlebox {
  border-bottom: 1px solid #16336a;
  width: 540px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item-titlebox {
    width: 100%;
  }
}
.schedule .schedule__item-num {
  font-size: 7rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #103770;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item-num {
    font-size: 3.5rem;
    margin-right: 14px;
  }
}
.schedule .schedule__item-title {
  font-size: 2.7rem;
  font-weight: 800;
  border-left: 3px solid #b8d200;
  padding-left: 17px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item-title {
    font-size: 1.7rem;
    border-left: 2px solid #b8d200;
    padding-left: 10px;
  }
}
.schedule .schedule__item-content {
  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: 767px) {
  .schedule .schedule__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.schedule .schedule__item-text {
  font-size: 1.9rem;
  line-height: 1.8;
  width: 540px;
  padding: 30px 60px 10px 100px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item-text {
    font-size: 1.2rem;
    width: 100%;
    padding: 15px 0 0;
  }
}
.schedule .schedule__item-img {
  width: 450px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__item-img {
    width: 100%;
    padding-top: 15px;
  }
}

/* ----------------------------------------------
    先輩の声
---------------------------------------------- */
.top-voice {
  padding: 110px 0 180px;
}
@media screen and (max-width: 767px) {
  .top-voice {
    padding: 50px 0 100px;
  }
}
.top-voice .inner {
  width: 1080px;
}
@media screen and (max-width: 767px) {
  .top-voice .inner {
    width: 72.8vw;
  }
}
.top-voice .top-voice__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__intro {
    display: block;
    margin-bottom: 25px;
  }
}
.top-voice .top-voice__logo {
  width: 183px;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__logo {
    width: 75px;
  }
}
.top-voice .top-voice__logo .img-wrap {
  width: 100%;
}
.top-voice .top-voice__title-box {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__title-box-sp {
    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;
    margin-bottom: 20px;
  }
}
.top-voice .title-box {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .top-voice .title-box {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .sec-disc {
    font-size: 1.2rem;
  }
}
.top-voice .top-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 94px;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px 0;
    margin-bottom: 44px;
  }
}
.top-voice .top-voice__item {
  background-color: #fff;
  -webkit-box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
          box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
  width: 344px;
  padding: 34px 30px;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__item {
    -webkit-box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.15);
            box-shadow: 4px 4px 4px rgba(35, 24, 21, 0.15);
    width: 69vw;
    padding: 24px 28px 30px;
  }
}
.top-voice .top-voice__item-name-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 18px;
  border-bottom: 0.25px solid #231815;
  padding-bottom: 15px;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__item-name-box {
    padding-bottom: 10px;
    margin-bottom: 17px;
  }
}
.top-voice .img-wrap {
  width: 64px;
}
@media screen and (max-width: 767px) {
  .top-voice .img-wrap {
    width: 48px;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__item-name-text {
    font-size: 1.1rem;
  }
}
.top-voice .top-voice__item-text {
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top-voice .top-voice__item-text {
    font-size: 1.2rem;
  }
}
.top-voice .link__btn {
  width: 296px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-voice .link__btn {
    width: 178px;
    margin: auto;
  }
}

/* ----------------------------------------------
    お知らせ
---------------------------------------------- */
.news {
  padding-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 50px;
  }
}
.news .inner {
  width: 1080px;
}
@media screen and (max-width: 767px) {
  .news .inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .news .inner.news__title-sec {
    width: 100%;
    position: relative;
  }
}
.news .bg-title {
  font-size: 13rem;
  position: absolute;
  white-space: nowrap;
  left: calc(100% - 45px);
}
@media screen and (max-width: 767px) {
  .news .bg-title {
    font-size: 5.3rem;
    position: static;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}
.news .news__content {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news .news__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 20px;
  }
}
.news .title-box {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news .title-box {
    padding: 0 10px 0 8.5vw;
  }
}
.news .news__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 13px;
}
@media screen and (max-width: 767px) {
  .news .news__cat-list {
    gap: 4px 7px;
    width: 77vw;
    margin: auto;
  }
}
.news .news__cat-item a {
  display: block;
  background-color: #a2badd;
  border-radius: 7px;
  font-size: 1.4rem;
  color: #031f4b;
  text-align: center;
  min-width: 112px;
  padding: 4px 10px;
}
@media screen and (max-width: 767px) {
  .news .news__cat-item a {
    font-size: 1rem;
    min-width: 65px;
  }
}
.news .news__cat-item.current a {
  background-color: #031f4b;
  color: #fff;
}
.news .news__list {
  width: 910px;
  margin: auto;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .news .news__list {
    width: 100%;
    margin-bottom: 40px;
  }
}
.news .news__item:first-of-type a {
  border-top: 0.2px solid #231815;
}
.news .news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.2px solid #231815;
  padding: 35px 45px;
}
@media screen and (max-width: 767px) {
  .news .news__item a {
    padding: 20px 7px;
  }
}
.news .news__item-date {
  display: block;
  color: #7f8080;
  width: 122px;
}
@media screen and (max-width: 767px) {
  .news .news__item-date {
    font-size: 1.1rem;
    width: 65px;
  }
}
.news .news__item-cat {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .news .news__item-cat {
    width: 80px;
  }
}
.news .news__item-cat-inner {
  display: inline-block;
  background-color: #a2badd;
  font-size: 1.4rem;
  color: #031f4b;
  text-align: center;
  border-radius: 7px;
  min-width: 112px;
  padding: 4px 10px;
}
@media screen and (max-width: 767px) {
  .news .news__item-cat-inner {
    font-size: 1rem;
    min-width: 65px;
  }
}
.news .news__item-title {
  overflow: hidden;
  white-space: nowrap;
  width: 430px;
  text-overflow: ellipsis;
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  .news .news__item-title {
    font-size: 1.1rem;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.news .img-wrap::before {
  content: "";
  display: block;
  background-color: #231815;
  width: 0.2px;
  height: 85px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .news .img-wrap::before {
    height: 42px;
  }
}
.news .img-wrap {
  width: 79px;
  position: relative;
  padding-left: 45px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news .img-wrap {
    width: 30px;
    padding-left: 13px;
  }
}
.news .link__btn {
  width: 374px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .news .link__btn {
    width: 225px;
    margin: auto;
  }
}
.news .news-none {
  width: 910px;
  margin: auto;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .news .news-none {
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 40px;
  }
}

/* ----------------------------------------------
    募集案件一覧
---------------------------------------------- */
#recruit .fv {
  background: url(../img/recruit/recruit-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url(../img/recruit/recruit-fv.webp) type("image/webp"), url(../img/recruit/recruit-fv.png) type("image/png"));
  background-image: image-set(url(../img/recruit/recruit-fv.webp) type("image/webp"), url(../img/recruit/recruit-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #recruit .fv {
    background: url(../img/recruit/recruit-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/recruit/recruit-fv-sp.webp) type("image/webp"), url(../img/recruit/recruit-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/recruit/recruit-fv-sp.webp) type("image/webp"), url(../img/recruit/recruit-fv-sp.png) type("image/png"));
  }
}
#recruit .breadcrumbs {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #recruit .breadcrumbs {
    margin-bottom: 25px;
  }
}
#recruit .top-recruit {
  background-image: none;
}
#recruit .sec-disc {
  font-size: 2.5rem;
  font-weight: 600;
  color: #031f4b;
}
@media screen and (max-width: 767px) {
  #recruit .sec-disc {
    font-size: 1.8rem;
  }
}
#recruit .recruit__list {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  #recruit .recruit__list {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #recruit .recruit-none {
    font-size: 1.4rem;
  }
}

.recruit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px 30px;
}
@media screen and (max-width: 767px) {
  .recruit__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 14px 20px;
  }
}
.recruit__list .recruit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 3px rgba(35, 24, 21, 0.15);
          box-shadow: 6px 6px 3px rgba(35, 24, 21, 0.15);
  width: 314px;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item {
    width: 69vw;
    max-width: 314px;
  }
}
.recruit__list .recruit__item-img {
  aspect-ratio: 314/214;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-img {
    aspect-ratio: 260/160;
  }
}
.recruit__list .recruit__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.recruit__list .recruit__item-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 27px 15px 22px;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-textbox {
    padding: 20px 25px 15px;
  }
}
.recruit__list .recruit__item-cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-cat-list {
    gap: 6px;
    margin-bottom: 20px;
  }
}
.recruit__list .recruit__item-cat-item {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-cat-item {
    font-size: 1.2rem;
  }
}
.recruit__list .recruit__item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2.7rem;
  font-weight: 700;
  color: #00438c;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.recruit__list .recruit__item-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-text {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}
.recruit__list .recruit__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  width: 95px;
  padding: 0.5em 0;
  margin: auto 0 0 auto;
}
@media screen and (max-width: 767px) {
  .recruit__list .recruit__item-link {
    font-size: 1.2rem;
  }
}
.recruit__list .recruit__item-link::after {
  content: "";
  display: block;
  background: url(../img/common/arrow-bk.svg) no-repeat center/contain;
  width: 9px;
  height: 12px;
}

/* ----------------------------------------------
    募集案件詳細
---------------------------------------------- */
#single-recruit .fv {
  background: url(../img/recruit/recruit-single-fv.png) no-repeat center/cover;
  background-image: -webkit-image-set(url(../img/recruit/recruit-single-fv.webp) type("image/webp"), url(../img/recruit/recruit-single-fv.png) type("image/png"));
  background-image: image-set(url(../img/recruit/recruit-single-fv.webp) type("image/webp"), url(../img/recruit/recruit-single-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #single-recruit .fv {
    background: url(../img/recruit/recruit-single-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/recruit/recruit-single-fv-sp.webp) type("image/webp"), url(../img/recruit/recruit-single-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/recruit/recruit-single-fv-sp.webp) type("image/webp"), url(../img/recruit/recruit-single-fv-sp.png) type("image/png"));
  }
}
@media screen and (max-width: 767px) {
  #single-recruit .fv__contents {
    gap: 0;
    margin-right: max(-16vw, -60px);
  }
}
#single-recruit .inner {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  #single-recruit .inner {
    width: 90%;
  }
}
#single-recruit .single-recruit__title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding-bottom: 35px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #single-recruit .single-recruit__title {
    font-size: 2rem;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
#single-recruit .recruit__item-img {
  margin-bottom: 24px;
}
#single-recruit .recruit__item-cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  #single-recruit .recruit__item-cat-list {
    gap: 5px 10px;
    margin-bottom: 50px;
  }
}
#single-recruit .recruit__item-cat-item {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  border-radius: 7px;
  min-width: 140px;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 767px) {
  #single-recruit .recruit__item-cat-item {
    font-size: 1.5rem;
    min-width: 120px;
  }
}
#single-recruit .job-content {
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  #single-recruit .job-content {
    margin-bottom: 45px;
  }
}
#single-recruit dl {
  padding: 28px 18px;
  border-bottom: 0.2px solid #231815;
}
@media screen and (max-width: 767px) {
  #single-recruit dl {
    padding: 20px 10px;
  }
}
#single-recruit dt {
  font-size: 3rem;
  font-weight: 800;
  color: #103771;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #single-recruit dt {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
}
#single-recruit dt .job-content__num {
  display: inline-block;
  background-color: #103771;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  #single-recruit dt .job-content__num {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
}
#single-recruit dd {
  font-size: 2.2rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #single-recruit dd {
    font-size: 1.6rem;
  }
}
#single-recruit dd .bold {
  font-size: 2.5rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  #single-recruit dd .bold {
    font-size: 2rem;
  }
}
#single-recruit .link__btn {
  width: 375px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #single-recruit .link__btn {
    font-size: 1.6rem;
    width: 250px;
    margin-bottom: 100px;
  }
}

/* ----------------------------------------------
    お知らせ一覧
---------------------------------------------- */
#news {
  overflow: hidden;
}
#news .fv {
  background: url(../img/news/news-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url(../img/news/news-fv.webp) type("image/webp"), url(../img/news/news-fv.png) type("image/png"));
  background-image: image-set(url(../img/news/news-fv.webp) type("image/webp"), url(../img/news/news-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #news .fv {
    background: url(../img/news/news-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/news/news-fv-sp.webp) type("image/webp"), url(../img/news/news-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/news/news-fv-sp.webp) type("image/webp"), url(../img/news/news-fv-sp.png) type("image/png"));
  }
}
#news .fv__contents {
  display: grid;
  gap: 0;
  margin: 0;
}
#news .news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 200px;
}
@media screen and (max-width: 767px) {
  #news .news__content {
    display: block;
  }
}
#news .title-box {
  white-space: nowrap;
}

/* ----------------------------------------------
    お知らせ詳細
---------------------------------------------- */
#single-news {
  position: relative;
  padding-top: 370px;
}
@media screen and (max-width: 767px) {
  #single-news {
    padding-top: 50vw;
  }
}
#single-news .fv__pc-logo {
  width: 33vw;
  min-width: 427px;
  aspect-ratio: 427/472;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #single-news .fv__pc-logo {
    display: none;
  }
}
#single-news .inner {
  width: 920px;
}
@media screen and (max-width: 767px) {
  #single-news .inner {
    width: 90%;
  }
}
#single-news .single-news__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 36px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__info-box {
    gap: 10px 20px;
    width: 90%;
    margin: 0 auto 55px;
  }
}
#single-news .single-news__date {
  font-weight: 700;
  color: #7f8080;
}
#single-news .single-news__item-cat-item {
  background-color: #a2badd;
  border-radius: 7px;
  font-size: 1.4rem;
  color: #031f4b;
  text-align: center;
  min-width: 112px;
  padding: 4px 10px;
}
#single-news .single-news__title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.3;
  border-bottom: 0.2px solid #231815;
  padding: 0 50px 35px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__title {
    font-size: 2.2rem;
    padding: 0 15px 25px;
    margin-bottom: 30px;
  }
}
#single-news .single-news__contents {
  padding: 0 70px 35px;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__contents {
    padding: 0 20px 25px;
  }
}
#single-news .single-news__contents h2 {
  font-size: 4rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__contents h2 {
    font-size: 2rem;
  }
}
#single-news .single-news__contents h3,
#single-news .single-news__contents h4,
#single-news .single-news__contents h5,
#single-news .single-news__contents h6 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__contents h3,
  #single-news .single-news__contents h4,
  #single-news .single-news__contents h5,
  #single-news .single-news__contents h6 {
    font-size: 1.6rem;
  }
}
#single-news .single-news__contents p,
#single-news .single-news__contents a,
#single-news .single-news__contents ul,
#single-news .single-news__contents li {
  font-size: 2.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #single-news .single-news__contents p,
  #single-news .single-news__contents a,
  #single-news .single-news__contents ul,
  #single-news .single-news__contents li {
    font-size: 1.6rem;
  }
}
#single-news .single-news__contents a {
  overflow-wrap: break-word;
  word-break: break-all;
}
#single-news .link__btn {
  width: 375px;
  margin: 240px auto 280px;
}
@media screen and (max-width: 767px) {
  #single-news .link__btn {
    width: 250px;
    margin: 120px auto 140px;
  }
}

/* ----------------------------------------------
    FV
---------------------------------------------- */
#service {
  margin-bottom: 300px;
}
@media screen and (max-width: 767px) {
  #service {
    margin-bottom: 150px;
  }
}
#service .fv {
  background: url(../img/service/service-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url(../img/service/service-fv.webp) type("image/webp"), url(../img/service/service-fv.png) type("image/png"));
  background-image: image-set(url(../img/service/service-fv.webp) type("image/webp"), url(../img/service/service-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #service .fv {
    background: url(../img/service/service-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/service/service-fv-sp.webp) type("image/webp"), url(../img/service/service-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/service/service-fv-sp.webp) type("image/webp"), url(../img/service/service-fv-sp.png) type("image/png"));
  }
}
#service .fv__chara {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  #service .fv__chara {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
#service .service__logo {
  width: 170px;
  position: relative;
  z-index: -1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #service .service__logo {
    width: 85px;
  }
}
#service .service-contents__top {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin: -2.5em auto 156px;
}
@media screen and (max-width: 767px) {
  #service .service-contents__top {
    font-size: 1.8rem;
    margin: -2.5em auto 80px;
  }
}
#service .service__item:not(:last-of-type) {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  #service .service__item:not(:last-of-type) {
    margin-bottom: 70px;
  }
}
#service .service__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 95px;
}
@media screen and (max-width: 767px) {
  #service .service__item-title {
    gap: 0 10px;
  }
}
#service .service__item-num {
  font-size: 22.8rem;
  font-family: "Oswald", sans-serif;
  color: #00438c;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #service .service__item-num {
    font-size: 7.8rem;
  }
}
#service .service__item-title-ja {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #service .service__item-title-ja {
    font-size: 2.4rem;
  }
}
#service .service__item-title-en {
  font-size: 2rem;
  font-weight: 800;
  color: #b8d200;
}
@media screen and (max-width: 767px) {
  #service .service__item-title-en {
    font-size: 1.4rem;
  }
}
#service .service__item-inner {
  position: relative;
  width: 100%;
  margin-top: -25px;
}
@media screen and (max-width: 767px) {
  #service .service__item-inner {
    margin-top: -5px;
  }
}
#service .service__item-text {
  background-color: #fff;
  font-size: 2.4rem;
  line-height: 1.8;
  -webkit-box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
          box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
  width: 632px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 77px 50px;
}
@media screen and (max-width: 767px) {
  #service .service__item-text {
    font-size: 1.6rem;
    -webkit-box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
            box-shadow: 7px 7px 10px rgba(35, 24, 21, 0.15), -4px -4px 10px rgba(35, 24, 21, 0.15);
    width: 95%;
    position: relative;
    padding: 35px 20px;
  }
}
#service .service__item-img {
  aspect-ratio: 796/525;
  width: 796px;
  padding-top: 30px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  #service .service__item-img {
    width: 95%;
    padding-top: 0;
    margin: -30px 0 0 auto;
  }
}
#service .service__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service__item:nth-of-type(even) .service__item-title {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#service .service__item:nth-of-type(even) .service__item-title-inner {
  text-align: right;
}
#service .service__item:nth-of-type(even) .service__item-img {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  #service .service__item:nth-of-type(even) .service__item-img {
    margin: -30px auto 0 0;
  }
}
#service .service__item:nth-of-type(even) .service__item-text {
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  #service .service__item:nth-of-type(even) .service__item-text {
    margin-left: auto;
  }
}

/* ----------------------------------------------
    共通部分
---------------------------------------------- */
#corporate .corporate__title-wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #corporate .corporate__title-wrap {
    margin-bottom: 50px;
  }
}
#corporate .title-box {
  width: 960px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #corporate .title-box {
    width: 90%;
  }
}
#corporate .bg-title {
  font-size: 13rem;
  white-space: nowrap;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #corporate .bg-title {
    font-size: min(4.5rem, 12vw);
  }
}
#corporate .inner {
  width: 900px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #corporate .inner {
    width: 80vw;
  }
}

/* ----------------------------------------------
    FV
---------------------------------------------- */
#corporate {
  overflow: hidden;
  position: relative;
}
#corporate .fv {
  background: url(../img/corporate/corporate-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url("../img/corporate/corporate-fv.webp") type("image/webp"), url("../img/corporate/corporate-fv.png") type("image/png"));
  background-image: image-set(url("../img/corporate/corporate-fv.webp") type("image/webp"), url("../img/corporate/corporate-fv.png") type("image/png"));
}
@media screen and (max-width: 767px) {
  #corporate .fv {
    background: url(../img/corporate/corporate-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url("../img/corporate/corporate-fv-sp.webp") type("image/webp"), url("../img/corporate/corporate-fv-sp.png") type("image/png"));
    background-image: image-set(url("../img/corporate/corporate-fv-sp.webp") type("image/webp"), url("../img/corporate/corporate-fv-sp.png") type("image/png"));
  }
}
#corporate .fv-chara {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  #corporate .fv-chara {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
#corporate .fv__contents {
  gap: 0;
  margin-right: -217px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  #corporate .fv__contents {
    margin-right: max(-21vw, -80px);
  }
}

/* ----------------------------------------------
    代表挨拶
---------------------------------------------- */
.message {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .message {
    margin-bottom: 40px;
  }
}
.message .bg-title {
  margin: -0.4em 0 0 0.2em;
}
.message .message__top-text {
  font-size: 2.6rem;
  line-height: 1.85;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .message .message__top-text {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
}
.message .message__text-box {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .message .message__text-box {
    margin-bottom: 40px;
  }
}
.message .message__title2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #031f4b;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 767px) {
  .message .message__title2 {
    font-size: 1.8rem;
  }
}
.message .message__text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .message .message__text {
    font-size: 1.6rem;
  }
}
.message .message__name-box {
  text-align: right;
  margin: 120px 0 180px;
}
@media screen and (max-width: 767px) {
  .message .message__name-box {
    margin: 60px 0 90px;
  }
}
.message .message__name-company {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .message .message__name-company {
    font-size: 2rem;
  }
}
.message .message__name-post {
  font-size: 1.5rem;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .message .message__name-post {
    font-size: 1.2rem;
  }
}
.message .message__name {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .message .message__name {
    font-size: 2.4rem;
  }
}

/* ----------------------------------------------
    会社概要
---------------------------------------------- */
.company::before {
  content: "";
  display: block;
  background-color: #142244;
  aspect-ratio: 510/190;
  width: max(510px, 39vw);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company::before {
    width: 60vw;
  }
}

.company {
  position: relative;
  padding-top: 95px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 50px;
    margin-bottom: 100px;
  }
}
.company .inner {
  width: 942px;
}
@media screen and (max-width: 767px) {
  .company .inner {
    width: 90%;
  }
}
.company .bg-title {
  margin: 0 0 -0.6em 0.2em;
}
.company .company-profile {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .company .company-profile {
    padding-bottom: 40px;
  }
}
.company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 22px;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .company dl {
    gap: 0 15px;
    font-size: 1.6rem;
  }
}
.company dt,
.company dd {
  border-bottom: 0.2px solid #231815;
}
.company dt {
  font-weight: 600;
  color: #00438c;
  width: 210px;
  padding: 26px 32px;
}
@media screen and (max-width: 767px) {
  .company dt {
    width: 80px;
    padding: 1em 0;
  }
}
.company dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 26px 42px;
}
@media screen and (max-width: 767px) {
  .company dd {
    padding: 1em 0;
  }
}

.company__location-list .company__location-map {
  aspect-ratio: 510/266;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .company__location-list .company__location-map {
    margin-bottom: 10px;
  }
}
.company__location-list .company__location-map iframe {
  width: 100%;
  height: 100%;
}
.company__location-list .company__location-office {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .company__location-list .company__location-office {
    font-size: 1.8rem;
  }
}
.company__location-list dl {
  font-size: 2.1rem;
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .company__location-list dl {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}
.company__location-list dt,
.company__location-list dd {
  border-top: 0.2px solid #231815;
}
.company__location-list dt {
  font-weight: 600;
  color: #00438c;
}
/* ----------------------------------------------
    警備業標識
---------------------------------------------- */
@media screen and (max-width: 767px) {
  #corporate .sign .inner {
    width: 90%;
  }
}

.sign {
  margin-bottom: 270px;
}
@media screen and (max-width: 767px) {
  .sign {
    margin-bottom: 130px;
  }
}
.sign .sign-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 80px;
}
@media screen and (max-width: 767px) {
  .sign .sign-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sign a {
  display: block;
  width: 680px;
}
@media screen and (max-width: 767px) {
  .sign a {
    width: 100%;
  }
}
.sign .img-wrap {
  width: 224px;
}
/* ----------------------------------------------
    FV
---------------------------------------------- */
#interviews {
  overflow: hidden;
  margin-bottom: 300px;
}
@media screen and (max-width: 767px) {
  #interviews {
    margin-bottom: 120px;
  }
}
#interviews .fv {
  background: url(../img/interviews/interviews-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url(../img/interviews/interviews-fv.webp) type("image/webp"), url(../img/interviews/interviews-fv.png) type("image/png"));
  background-image: image-set(url(../img/interviews/interviews-fv.webp) type("image/webp"), url(../img/interviews/interviews-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #interviews .fv {
    background: url(../img/interviews/interviews-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/interviews/interviews-fv-sp.webp) type("image/webp"), url(../img/interviews/interviews-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/interviews/interviews-fv-sp.webp) type("image/webp"), url(../img/interviews/interviews-fv-sp.png) type("image/png"));
  }
}
#interviews .fv__chara {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media screen and (max-width: 767px) {
  #interviews .fv__chara {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@media screen and (max-width: 767px) {
  #interviews .fv__contents {
    gap: 0;
  }
}

/* ----------------------------------------------
    先輩の声
---------------------------------------------- */
.story .story__inner {
  width: 1050px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .story .story__inner {
    width: 90%;
  }
}
.story .title-box {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .story .title-box {
    margin-bottom: 70px;
  }
}
.story .story__contents {
  position: relative;
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .story .story__contents {
    margin-bottom: 80px;
  }
}
.story .bg-title {
  font-size: 7.8rem;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .story .bg-title {
    font-size: 4rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    position: static;
    width: 90%;
    margin: auto;
  }
}
.story .bg-title.bg-title__left {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  right: auto;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .story .bg-title.bg-title__left {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    position: static;
  }
}
.story .story__img {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .story .story__img {
    margin-bottom: 40px;
  }
}
.story .story__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #103771;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .story .story__title {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
}
.story .story__text {
  font-size: 2.4rem;
  line-height: 1.8;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .story .story__text {
    font-size: 1.6rem;
    width: 90%;
  }
}

/* ----------------------------------------------
    FV
---------------------------------------------- */
#privacy {
  margin-bottom: 300px;
}
@media screen and (max-width: 767px) {
  #privacy {
    margin-bottom: 120px;
  }
}
#privacy .fv {
  background: url(../img/privacy/privacy-fv.png) no-repeat top/cover;
  background-image: -webkit-image-set(url(../img/privacy/privacy-fv.webp) type("image/webp"), url(../img/privacy/privacy-fv.png) type("image/png"));
  background-image: image-set(url(../img/privacy/privacy-fv.webp) type("image/webp"), url(../img/privacy/privacy-fv.png) type("image/png"));
}
@media screen and (max-width: 767px) {
  #privacy .fv {
    background: url(../img/privacy/privacy-fv-sp.png) no-repeat center/cover;
    background-image: -webkit-image-set(url(../img/privacy/privacy-fv-sp.webp) type("image/webp"), url(../img/privacy/privacy-fv-sp.png) type("image/png"));
    background-image: image-set(url(../img/privacy/privacy-fv-sp.webp) type("image/webp"), url(../img/privacy/privacy-fv-sp.png) type("image/png"));
  }
}
#privacy .fv__contents {
  margin: 0;
}

/* ----------------------------------------------
    プライバシーポリシー
---------------------------------------------- */
#privacy .inner {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  #privacy .inner {
    width: 90%;
  }
}
#privacy .privacy__box {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__box {
    margin-bottom: 50px;
  }
}
#privacy .privacy__title {
  font-size: 2.2rem;
  color: #00438c;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__title {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }
}
#privacy .privacy__text,
#privacy .privacy__item {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__text,
  #privacy .privacy__item {
    font-size: 1.6rem;
  }
}
#privacy .privacy__list {
  margin-top: 1.7em;
}
#privacy .privacy__item {
  margin-bottom: 1.7em;
}/*# sourceMappingURL=style.css.map */