@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

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

html {
  font-size: 1px;
  scroll-behavior: smooth;
}

@media (max-width: 430px) {
  html {
    font-size: 0.2325581395vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.0520833333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 1px;
  }
}
body {
  font-size: 16rem;
  font-family: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333333;
}
body.is-active {
  overflow: hidden;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768.1px) {
  .is-sp {
    display: none;
  }
}

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

.inner {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 15rem;
}
@media screen and (min-width: 768.1px) {
  .inner {
    padding-inline: 110rem;
  }
}

.footer {
  padding-top: 48rem;
  background-color: #ECECEC;
}
@media screen and (min-width: 768.1px) {
  .footer {
    padding-top: 56rem;
  }
}

.footer__contents {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 78rem;
}
@media screen and (min-width: 768.1px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__logo {
  width: 312rem;
  height: auto;
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 768.1px) {
  .footer__logo {
    margin-left: 0;
    width: 398rem;
  }
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__links {
  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;
  -webkit-column-gap: 25rem;
     -moz-column-gap: 25rem;
          column-gap: 25rem;
}
@media screen and (min-width: 768.1px) {
  .footer__links {
    -webkit-column-gap: 40rem;
       -moz-column-gap: 40rem;
            column-gap: 40rem;
  }
}

.footer__link {
  font-size: 14rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2.0714285714;
}
@media screen and (min-width: 768.1px) {
  .footer__link {
    font-size: 18rem;
  }
}
.footer__link:not(:last-child) {
  border-right: 1px solid #040404;
  padding-right: 25rem;
}
@media screen and (min-width: 768.1px) {
  .footer__link:not(:last-child) {
    padding-right: 40rem;
  }
}

.footer__copyright {
  margin-top: 40rem;
  padding-block: 18rem 16rem;
  text-align: center;
  background-color: #fff;
  font-size: 12rem;
  font-weight: 300;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .footer__copyright {
    margin-top: 217rem;
    padding-block: 26rem 25rem;
    font-size: 18rem;
  }
}

.bg_fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../img/bg_fixed.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 1;
}
@media screen and (min-width: 768.1px) {
  .bg_fixed {
    background-size: 55%;
    background-position: center right;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  padding-top: 16rem;
  padding-bottom: 16rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768.1px) {
  .header {
    padding-top: 26rem;
    padding-bottom: 26rem;
  }
}
.header.js-active {
  background-color: #fff;
  color: #333333;
}

.header.js-active {
  background-color: #fff;
}
.header.js-active .header__nav-list {
  color: #333333;
}
.header.js-active .header__logo-img {
  background-image: url("../img/logo_black.png");
}
.header.js-active .drawer__icon--bar1,
.header.js-active .drawer__icon--bar2,
.header.js-active .drawer__icon--bar3 {
  background-color: #333333;
}
.header.js-active .drawer__icon--text {
  color: #333333;
}

.header.bg-white {
  background-color: #fff;
}
.header.bg-white .header__nav-list {
  color: #333333;
}
.header.bg-white .header__logo-img {
  background-image: url("../img/logo_black.png");
}
.header.bg-white .drawer__icon--bar1,
.header.bg-white .drawer__icon--bar2,
.header.bg-white .drawer__icon--bar3 {
  background-color: #333333;
}
.header.bg-white .drawer__icon--text {
  color: #333333;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header__logo {
  width: 230rem;
  height: auto;
  aspect-ratio: 338/54;
}
@media screen and (min-width: 768.1px) {
  .header__logo {
    width: 338rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header__logo-img {
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/logo_white.png") no-repeat center center/contain;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768.1px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    font-size: 18rem;
    font-weight: 300;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    margin-left: 140rem;
    width: 100%;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 77rem;
}

.header__tel {
  display: block;
  margin-inline: auto;
  background-color: #4D44A9;
  padding: 11rem 20rem 13rem 78rem;
  font-weight: 600;
  line-height: 1.3636363636;
  letter-spacing: 0.05em;
  border-radius: 10rem;
  position: relative;
  color: #ffffff;
  margin-top: 40rem;
}
.header__tel::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 33rem;
  translate: 0 -50%;
  width: 20rem;
  height: 26rem;
  background: url(../img/icon_phone_white.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768.1px) {
  .header__tel {
    margin-right: 0;
    font-size: 22rem;
    line-height: 1.3636363636;
    padding: 11rem 56rem 13rem 93rem;
    margin-top: 0;
  }
  .header__tel::after {
    width: 27rem;
    height: 35rem;
  }
}

.drawer__icon {
  position: absolute;
  top: 18rem;
  right: 15rem;
  background-color: transparent;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  cursor: pointer;
  z-index: 400;
}
@media screen and (min-width: 768.1px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 24rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}

.drawer__icon--bar1 {
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}

.drawer__icon--bar2 {
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
}

.drawer__icon--bar3 {
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}

.drawer__icon.js-show .drawer__icon--bar {
  height: 19rem;
  position: relative;
}
.drawer__icon.js-show .drawer__icon--bar1 {
  rotate: 45deg;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #333333;
}
.drawer__icon.js-show .drawer__icon--bar2 {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar3 {
  rotate: -45deg;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #333333;
}
.drawer__icon.js-show .drawer__icon--text {
  display: none;
}

.drawer__icon--text {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #ffffff;
  translate: 110%;
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
  z-index: 200;
}
@media screen and (min-width: 768.1px) {
  .drawer {
    display: none;
  }
}

.drawer.js-show {
  translate: 0;
}

.drawer__body {
  padding-top: 60rem;
}

.drawer__title {
  text-align: center;
  font-size: 20rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.drawer__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20%;
  height: 2rem;
  background-color: #333333;
  translate: 0 -50%;
}
.drawer__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 20%;
  height: 2rem;
  background-color: #333333;
  translate: 0 -50%;
}

.drawer__nav-list {
  margin-top: 32rem;
  font-size: 16rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.drawer__nav-item {
  padding-block: 16rem;
  padding-left: 16rem;
  border-bottom: 1px solid #CCCCCC;
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  translate: 0 -150%;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (min-width: 768.1px) {
  .drawer__bg {
    display: none;
  }
}

.drawer__bg.js-show {
  opacity: 1;
  visibility: visible;
}

.fv {
  height: 100svh;
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(145, 114, 114, 0.3);
}

.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fv__video-player {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.fv__contents {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 15rem;
  translate: 0 -50%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768.1px) {
  .fv__contents {
    left: 110rem;
  }
}

.fv__copy-en {
  font-size: 64rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.1875;
}
@media screen and (min-width: 768.1px) {
  .fv__copy-en {
    font-size: 122rem;
    line-height: 1.1885245902;
  }
}
.fv__copy-en .accent {
  background: radial-gradient(circle, #ffbdbd 14%, #ffffff 50%, #ffffff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: none;
}

.fv__copy-ja {
  font-size: 22rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3636363636;
  margin-top: 4rem;
}
@media screen and (min-width: 768.1px) {
  .fv__copy-ja {
    font-size: 42rem;
    line-height: 1.3333333333;
    margin-top: 16rem;
  }
}

.fv__scroll {
  position: absolute;
  bottom: 30rem;
  left: 50%;
  translate: -50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10rem;
  z-index: 10;
}
@media screen and (min-width: 768.1px) {
  .fv__scroll {
    bottom: 45rem;
    gap: 11rem;
  }
}

.fv__scroll-text {
  color: #ffffff;
  font-size: 13rem;
  font-weight: 300;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .fv__scroll-text {
    font-size: 18rem;
    line-height: 1.3333333333;
  }
}

.fv__scroll-icon {
  -webkit-animation: scroll 2s ease infinite;
          animation: scroll 2s ease infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8rem);
            transform: translateY(8rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8rem);
            transform: translateY(8rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.strength {
  padding-top: 72rem;
  padding-bottom: 164rem;
}
@media screen and (min-width: 768.1px) {
  .strength {
    padding-top: 142rem;
    padding-bottom: 198rem;
  }
}

.section__title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4D44A9;
}

.section__title-en {
  font-size: 40rem;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (min-width: 768.1px) {
  .section__title-en {
    font-size: 70rem;
    line-height: 1.4142857143;
  }
}

.section__title-ja {
  font-size: 14rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3571428571;
}
@media screen and (min-width: 768.1px) {
  .section__title-ja {
    font-size: 20rem;
    line-height: 1.35;
    margin-top: -7rem;
  }
}

.strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52rem;
  margin-top: 33rem;
}
@media screen and (min-width: 768.1px) {
  .strength__items {
    gap: 81rem;
    margin-top: 91rem;
    max-width: 1244px;
    margin-inline: auto;
  }
}

.strength__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57rem;
}
@media screen and (min-width: 768.1px) {
  .strength__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 52rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .strength__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768.1px) {
  .strength__item-contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.strength__item-title {
  line-height: 1.4864864865;
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768.1px) {
  .strength__item-title {
    line-height: 1.4909090909;
    padding-bottom: 7rem;
  }
}
.strength__item-title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 90rem;
  height: 2rem;
  background-color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .strength__item-title::before {
    width: 142rem;
    height: 3rem;
  }
}
.strength__item-title .num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 37rem;
  color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .strength__item-title .num {
    font-size: 55rem;
  }
}
.strength__item-title .text {
  font-size: 16rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .strength__item-title .text {
    font-size: 28rem;
    margin-left: 12rem;
  }
}
@media screen and (min-width: 768.1px) {
  .strength__item-title .small {
    font-size: 22rem;
  }
}

.strength__item-copy {
  margin-top: 23rem;
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .strength__item-copy {
    margin-top: 27rem;
    font-size: 20rem;
    line-height: 1.35;
  }
}

.strength__item-text {
  margin-top: 15rem;
  font-size: 12rem;
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (min-width: 768.1px) {
  .strength__item-text {
    margin-top: 19rem;
    font-size: 16rem;
    line-height: 1.875;
  }
}

.strength__item-img {
  width: 100%;
  height: auto;
}
.strength__item-img img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768.1px) {
  .strength__item-img {
    width: 45.6591639871%;
  }
}

.service {
  padding-top: 62rem;
  padding-bottom: 53rem;
  background-color: #EFEFEF;
}
@media screen and (min-width: 768.1px) {
  .service {
    padding-top: 176rem;
    padding-bottom: 41rem;
  }
}

.service__items {
  margin-top: 103rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 86rem;
}
@media screen and (min-width: 768.1px) {
  .service__items {
    margin-top: 130rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    -webkit-column-gap: 41rem;
       -moz-column-gap: 41rem;
            column-gap: 41rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.service__item {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 65rem;
  background-color: #ffffff;
  padding-bottom: 39rem;
  padding-inline: 33rem 31rem;
}
@media screen and (min-width: 768.1px) {
  .service__item {
    padding-top: 86rem;
    padding-bottom: 69rem;
    padding-inline: 29rem;
    width: 386rem;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    place-items: center;
  }
}

.service__item-count {
  position: absolute;
  top: -40rem;
  left: 50%;
  translate: -50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768.1px) {
  .service__item-count {
    top: -70rem;
  }
}
.service__item-count .point {
  width: 61rem;
}
@media screen and (min-width: 768.1px) {
  .service__item-count .point {
    width: 91rem;
  }
}
.service__item-count .text {
  font-family: "Oswald", sans-serif;
  font-size: 54rem;
  font-weight: 700;
  color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .service__item-count .text {
    font-size: 82rem;
  }
}

.service__item-img img {
  height: 108rem;
  width: auto;
}
@media screen and (min-width: 768.1px) {
  .service__item-img img {
    height: 134rem;
  }
}

@media screen and (min-width: 768.1px) {
  .service__item:first-child .service__item-img {
    translate: 16rem;
  }
  .service__item:first-child .service__item-img img {
    height: 154rem;
  }
}

.service__item-title {
  margin-top: 25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3125;
  text-align: center;
}
@media screen and (min-width: 768.1px) {
  .service__item-title {
    margin-top: 34rem;
    font-size: 23rem;
    line-height: 1.5217391304;
  }
}

.service__item-text {
  margin-top: 14rem;
  font-size: 12rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2.0833333333;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768.1px) {
  .service__item-text {
    margin-top: 26rem;
    font-size: 16rem;
    line-height: 1.875;
  }
}

.handling {
  padding-top: 50rem;
  padding-bottom: 164rem;
  background-color: #EFEFEF;
}
@media screen and (min-width: 768.1px) {
  .handling {
    padding-bottom: 265rem;
  }
}

.handling__text {
  text-align: center;
  font-size: 12rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2.0833333333;
  margin-top: 47rem;
}
@media screen and (min-width: 768.1px) {
  .handling__text {
    font-size: 16rem;
    line-height: 1.875;
  }
}

.handling__items {
  margin-top: 28rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36rem;
}
@media screen and (min-width: 768.1px) {
  .handling__items {
    margin-top: 45rem;
    gap: 41rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.handling__item {
  text-align: center;
}
@media screen and (min-width: 768.1px) {
  .handling__item {
    width: 386rem;
  }
}

.handling__img {
  height: auto;
  aspect-ratio: 400/309;
  -o-object-fit: cover;
     object-fit: cover;
}

.handling__item-title {
  color: #ffffff;
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  padding-block: 15rem;
  background-color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .handling__item-title {
    font-size: 20rem;
    line-height: 1.35;
  }
}

.handling__materials {
  margin-top: 55rem;
}
@media screen and (min-width: 768.1px) {
  .handling__materials {
    margin-top: 131rem;
  }
}

.handling__materials-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 12rem;
}
@media screen and (min-width: 768.1px) {
  .handling__materials-text {
    font-size: 16rem;
    margin-left: 220rem;
  }
}

.handling__materials-icon {
  width: 20rem;
  height: 20rem;
  margin-right: 8rem;
}
@media screen and (min-width: 768.1px) {
  .handling__materials-icon {
    margin-right: 7rem;
  }
}

.handling__materials-items {
  margin-top: 26rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22rem;
}
@media screen and (min-width: 768.1px) {
  .handling__materials-items {
    margin-top: 27rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 41rem;
  }
}

.handling__materials-item {
  width: 309rem;
  height: auto;
  aspect-ratio: 309/437;
}
.handling__materials-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768.1px) {
  .handling__materials-item {
    width: 386rem;
  }
}

.company {
  padding-top: 93rem;
  padding-bottom: 111rem;
}
@media screen and (min-width: 768.1px) {
  .company {
    padding-top: 181rem;
    padding-bottom: 224rem;
    padding-inline: 230rem;
  }
}

.company__lists {
  margin-top: 51rem;
}
@media screen and (min-width: 768.1px) {
  .company__lists {
    margin-top: 64rem;
  }
}

.company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 22rem 19rem;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 768.1px) {
  .company__list {
    padding-block: 30rem 27rem;
  }
}

.company__list:first-child {
  border-top: 1px solid #CCCCCC;
}

.company__list__head {
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3571428571;
  width: 26.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768.1px) {
  .company__list__head {
    font-size: 18rem;
    line-height: 1.9444444444;
    width: 21.4516129032%;
  }
}

.company__list__body {
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 1.8333333333;
  font-weight: 300;
  width: 73.5%;
}
@media screen and (min-width: 768.1px) {
  .company__list__body {
    font-size: 16rem;
    line-height: 1.875;
    width: 78.5483870968%;
  }
}

.company__map {
  width: 136.0544217687%;
  height: auto;
  aspect-ratio: 400/299;
  -o-object-fit: cover;
     object-fit: cover;
  translate: -26.5%;
  margin-top: 19rem;
}
@media screen and (min-width: 768.1px) {
  .company__map {
    width: 78.2340862423%;
    translate: 0;
    margin-top: 27rem;
  }
}

.company__philosophy {
  margin-top: 49rem;
}
@media screen and (min-width: 768.1px) {
  .company__philosophy {
    margin-top: 64rem;
  }
}

.company__philosophy-title {
  font-size: 20rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  padding-bottom: 10rem;
  border-bottom: 1px solid #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .company__philosophy-title {
    font-size: 30rem;
    padding-bottom: 13rem;
  }
}

.company__philosophy-text {
  margin-top: 25px;
  text-align: center;
  font-size: 22rem;
  letter-spacing: 0.05em;
  line-height: 1.5909090909;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
}
@media screen and (min-width: 768.1px) {
  .company__philosophy-text {
    margin-top: 46rem;
    font-size: 40rem;
    line-height: 1.5;
  }
}

.company__img {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 51rem;
  gap: 16rem;
}
.company__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/259;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768.1px) {
  .company__img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 64rem;
    gap: 58rem;
  }
  .company__img img {
    width: 591rem;
  }
}

.contact {
  padding-top: 80rem;
  padding-bottom: 158rem;
  background-color: #F4F3FF;
}
@media screen and (min-width: 768.1px) {
  .contact {
    padding-top: 177rem;
    padding-bottom: 190rem;
  }
}

.contact__form {
  margin-top: 67rem;
}
@media screen and (min-width: 768.1px) {
  .contact__form {
    margin-top: 85rem;
    padding-inline: 230rem;
  }
}

.contact__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15rem;
}
@media screen and (min-width: 768.1px) {
  .contact__table {
    gap: 29rem;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12rem;
  padding-bottom: 12rem;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 768.1px) {
  .contact__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding-bottom: 28rem;
  }
}

@media screen and (min-width: 768.1px) {
  .contact__item:last-child {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact__item:last-child .contact__item-head {
    margin-top: 13rem;
  }
}

.contact__item-head {
  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;
  line-height: 1.6363636364;
}
@media screen and (min-width: 768.1px) {
  .contact__item-head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 24.9193548387%;
    gap: 29rem;
  }
}
.contact__item-head p {
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768.1px) {
  .contact__item-head p {
    font-size: 18rem;
    letter-spacing: 0.1em;
  }
}
.contact__item-head span {
  font-size: 11rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #ffffff;
  padding: 5rem 13rem;
  border-radius: 999rem;
}
@media screen and (min-width: 768.1px) {
  .contact__item-head span {
    font-size: 18rem;
    padding: 7rem 20rem 8rem;
    line-height: 1.3333333333;
  }
}
.contact__item-head span.require {
  background-color: #4D44A9;
}
.contact__item-head span.optional {
  background-color: #707070;
}

.contact__item-body {
  width: 100%;
}
@media screen and (min-width: 768.1px) {
  .contact__item-body {
    width: 75.0806451613%;
  }
}

.contact__item-body input, textarea {
  width: 100%;
  font-size: 14rem;
  line-height: 1.2857142857;
  background-color: #fff;
  border: none;
  border-radius: 7rem;
  padding: 14rem;
}
@media screen and (min-width: 768.1px) {
  .contact__item-body input, textarea {
    font-size: 18rem;
    line-height: 1.3333333333;
    padding: 20.5rem;
  }
}

.contact__error-message {
  margin-top: 8rem;
  color: #FE2E24;
  font-weight: 600;
  font-size: 14rem;
}
@media screen and (min-width: 768.1px) {
  .contact__error-message {
    font-size: 18rem;
    margin-top: 12rem;
  }
}

.form-textarea {
  min-height: 214rem;
}
@media screen and (min-width: 768.1px) {
  .form-textarea {
    min-height: 264rem;
  }
}

.contact__submit {
  margin-top: 43rem;
  display: grid;
  place-items: center;
  width: 323rem;
  margin-inline: auto;
  height: 60rem;
  color: #ffffff;
  background-color: #4D44A9;
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768.1px) {
  .contact__submit {
    margin-top: 85rem;
    width: 492rem;
    height: 90rem;
    font-size: 20rem;
  }
}

.contact__tel {
  margin-top: 106rem;
}
@media screen and (min-width: 768.1px) {
  .contact__tel {
    margin-top: 102rem;
    padding-inline: 230rem;
  }
}

.contact__tel-title {
  text-align: center;
  font-size: 18rem;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #4D44A9;
  padding-block: 13rem;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 13rem 73rem 14rem;
    font-size: 25rem;
    line-height: 1.32;
  }
}

.contact__tel-box {
  padding: 33rem 16rem 32rem;
  background-color: #fff;
  border: 3rem solid #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-box {
    padding-block: 70rem 42rem;
    border-width: 5rem;
  }
}

.contact__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 286rem;
  margin-inline: auto;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-number {
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 107rem;
    margin-left: -30rem;
  }
}
.contact__tel-number .icon {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 12.9370629371%;
  aspect-ratio: 38/49;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-number .icon {
    width: 84rem;
  }
}
.contact__tel-number .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 30rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-number .num {
    font-size: 68rem;
  }
}

.contact__tel-text {
  margin-top: 21rem;
  font-size: 12rem;
  font-weight: 300;
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .contact__tel-text {
    text-align: center;
    margin-top: 27rem;
    font-size: 16rem;
    line-height: 1.875;
  }
}

.recruit {
  padding-top: 58rem;
  padding-bottom: 118rem;
  position: relative;
  background: url("../img/recruit_bg.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768.1px) {
  .recruit {
    padding-top: 132rem;
    padding-bottom: 157rem;
  }
}

.recruit__mask, .recruit__mask--gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recruit__mask--gray {
  background-color: #000;
  opacity: 0.7;
}

.section__title.recruit__title {
  position: relative;
  color: #ffffff;
}

.recruit__inner {
  color: #ffffff;
  position: relative;
  text-align: center;
  max-width: 336rem;
  margin-inline: auto;
}
@media screen and (min-width: 768.1px) {
  .recruit__inner {
    max-width: none;
  }
}

.recruit__copy {
  font-size: 20rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 42rem;
}
@media screen and (min-width: 768.1px) {
  .recruit__copy {
    font-size: 30rem;
    line-height: 1.3333333333;
    margin-top: 45rem;
  }
}

.recruit__text {
  margin-top: 28rem;
  font-size: 12rem;
  font-weight: 300;
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768.1px) {
  .recruit__text {
    margin-top: 31rem;
    font-size: 18rem;
    line-height: 1.9444444444;
  }
}

.recruit__link {
  margin-top: 42rem;
  margin-inline: auto;
  display: grid;
  place-items: center;
  width: 323rem;
  height: 60rem;
  color: #ffffff;
  background-color: #FE2E24;
  font-weight: 600;
  font-size: 14rem;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768.1px) {
  .recruit__link {
    margin-top: 67rem;
    width: 492rem;
    height: 90rem;
    font-size: 20rem;
  }
}
.recruit__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 21rem;
  translate: 0 -50%;
  width: 5rem;
  height: 9rem;
  background: url("../img/arrow_right.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768.1px) {
  .recruit__link::after {
    width: 9rem;
    height: 15rem;
    right: 32rem;
  }
}

.confirm {
  font-size: 16rem;
  padding-top: 160rem;
  padding-bottom: 160rem;
}
@media screen and (min-width: 768.1px) {
  .confirm {
    padding-top: 240rem;
    padding-bottom: 240rem;
  }
}

.confirm__head {
  text-align: center;
  font-size: 40rem;
  font-weight: 700;
  color: #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .confirm__head {
    font-size: 56rem;
  }
}

.confirm__container {
  margin-top: 32rem;
}
@media screen and (min-width: 768.1px) {
  .confirm__container {
    margin-top: 60rem;
    padding-inline: 230rem;
  }
}

@media screen and (min-width: 768.1px) {
  .confirm__text {
    text-align: center;
    font-size: 20rem;
  }
}

.confirm__block {
  margin-top: 48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15rem;
}
@media screen and (min-width: 768.1px) {
  .confirm__block {
    gap: 29rem;
  }
}

.confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12rem;
  padding-bottom: 12rem;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 768.1px) {
  .confirm__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding-bottom: 28rem;
  }
}

.confirm__label {
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768.1px) {
  .confirm__label {
    font-size: 18rem;
    letter-spacing: 0.1em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 24.9193548387%;
    gap: 29rem;
  }
}

.confirm__value {
  width: 100%;
}
@media screen and (min-width: 768.1px) {
  .confirm__value {
    width: 75.0806451613%;
  }
}

.confirm-btn {
  margin-top: 43rem;
  display: grid;
  place-items: center;
  width: 323rem;
  margin-inline: auto;
  height: 60rem;
  color: #ffffff;
  background-color: #4D44A9;
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768.1px) {
  .confirm-btn {
    margin-top: 85rem;
    width: 492rem;
    height: 90rem;
    font-size: 20rem;
  }
}

.back-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 24rem;
  display: block;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}

.confirm__text {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 14rem;
}
@media screen and (min-width: 768.1px) {
  .confirm__text {
    font-size: 18rem;
  }
}

.thanks__back {
  margin-top: 43rem;
  display: grid;
  place-items: center;
  width: 323rem;
  margin-inline: auto;
  height: 60rem;
  color: #ffffff;
  background-color: #4D44A9;
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768.1px) {
  .thanks__back {
    margin-top: 85rem;
    width: 492rem;
    height: 90rem;
    font-size: 20rem;
  }
}

.lower__header {
  margin-top: 68rem;
  width: 100%;
  aspect-ratio: 430/195;
}
@media screen and (min-width: 768.1px) {
  .lower__header {
    margin-top: 106rem;
    aspect-ratio: 1920/404;
  }
}

.recruit__header {
  background: url("../img/recruit/recruit_fv_sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768.1px) {
  .recruit__header {
    background-image: url("../img/recruit/recruit_fv.jpg");
  }
}

.lower__inner {
  position: relative;
  padding-inline: 15rem;
  height: 100%;
}
@media screen and (min-width: 768.1px) {
  .lower__inner {
    padding-inline: 340rem;
  }
}

.lower__title {
  font-size: 30rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
}
@media screen and (min-width: 768.1px) {
  .lower__title {
    font-size: 57rem;
    left: 340rem;
    translate: 0 -50%;
  }
}

.lower__main {
  padding-top: 15rem;
  padding-bottom: 69rem;
}
@media screen and (min-width: 768.1px) {
  .lower__main {
    padding-top: 38rem;
    padding-bottom: 75rem;
  }
}

.breadcrumb {
  font-size: 14rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14rem;
}
@media screen and (min-width: 768.1px) {
  .breadcrumb {
    font-size: 18rem;
    gap: 18rem;
  }
}

.breadcrumb__link {
  color: #4D44A9;
}

.lower-recruit__text {
  font-size: 12rem;
  font-weight: 300;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  margin-top: 29rem;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__text {
    font-size: 16rem;
    line-height: 1.3125;
    margin-top: 49rem;
  }
}

.lower-recruit__lists {
  margin-top: 55rem;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__lists {
    margin-top: 48rem;
  }
}

.lower-recruit__list {
  padding-block: 22rem 19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__list {
    padding-block: 30rem 27rem;
  }
}

.lower-recruit__list:first-child {
  border-top: 1px solid #CCCCCC;
}

.lower-recruit__list-head {
  font-size: 14rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 106rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__list-head {
    font-size: 18rem;
    width: 266rem;
  }
}

.lower-recruit__list-body {
  font-size: 12rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__list-body {
    font-size: 16rem;
    line-height: 1.875;
  }
}
.lower-recruit__list-body p {
  width: 90%;
}

.lower-recruit__list-items {
  width: 90%;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__list-items {
    width: 98%;
    margin-bottom: 27rem;
  }
}

.lower-recruit__list-item {
  list-style: decimal;
  margin-left: 20rem;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__list-item {
    margin-left: 24rem;
  }
}

.lower-recruit__form {
  padding-bottom: 140rem;
}
@media screen and (min-width: 768.1px) {
  .lower-recruit__form {
    padding-bottom: 161rem;
  }
}

.lower-section__title {
  font-size: 20rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.35;
  padding-bottom: 10rem;
  border-bottom: 1px solid #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .lower-section__title {
    font-size: 30rem;
    line-height: 1.3333333333;
    padding-bottom: 13rem;
  }
}

.recruit__form {
  margin-top: 34rem;
}
@media screen and (min-width: 768.1px) {
  .recruit__form {
    margin-top: 35rem;
  }
}

.recruit__form input,
.recruit__form textarea,
.recruit__form select {
  background-color: #F1F1F1;
}

.recruit__form select {
  border: none;
  padding: 10rem 15rem;
  font-size: 14rem;
  letter-spacing: 0.05em;
  width: 172rem;
  border-radius: 7rem;
  color: #707070;
  appearance: none; /* ブラウザデフォルトの矢印を削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/recruit/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 18rem center;
  background-size: 9rem 5rem;
}
@media screen and (min-width: 768.1px) {
  .recruit__form select {
    padding: 21rem 24rem;
    font-size: 18rem;
    width: 222rem;
    background-position: right 23rem center;
    background-size: 11rem 7rem;
  }
}

.recruit__form input[type=number] {
  width: 172rem;
}

.fixed__tel {
  display: block;
  margin-inline: auto;
  background-color: #4D44A9;
  font-size: 19rem;
  width: 270rem;
  padding-block: 12rem;
  padding-left: 72rem;
  font-weight: 600;
  line-height: 1.3636363636;
  letter-spacing: 0.05em;
  border-radius: 10rem 0 0 0;
  position: relative;
  color: #ffffff;
  margin-top: 40rem;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  opacity: 1;
}
.fixed__tel::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 36rem;
  translate: 0 -50%;
  width: 20rem;
  height: 26rem;
  background: url(../img/icon_phone_white.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768.1px) {
  .fixed__tel {
    display: none;
  }
}

.privacy__header {
  position: relative;
  background: url("../img/privacy/privacy_fv_sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768.1px) {
  .privacy__header {
    background-image: url("../img/privacy/privacy_fv.jpg");
  }
}
.privacy__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 112, 112, 0.3);
}

.lower-privacy__items {
  margin-top: 48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 63rem;
  padding-bottom: 70rem;
}
@media screen and (min-width: 768.1px) {
  .lower-privacy__items {
    margin-top: 79rem;
    gap: 88rem;
    padding-bottom: 98rem;
  }
}

.lower-privacy__title {
  font-size: 20rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 10rem;
  border-bottom: 1px solid #4D44A9;
}
@media screen and (min-width: 768.1px) {
  .lower-privacy__title {
    font-size: 30rem;
    padding-bottom: 13rem;
  }
}

.lower-privacy__text {
  margin-top: 22rem;
  font-size: 12rem;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768.1px) {
  .lower-privacy__text {
    margin-top: 38rem;
    font-size: 16rem;
    line-height: 1.875;
  }
}