@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;
  font-size: 16px;
}

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;
}

/* 1280px以下 */
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.tab-hidden {
  display: none;
}
@media screen and (max-width: 540px) {
  .tab-hidden {
    display: block;
  }
}

.spc-hidden {
  display: none;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .spc-hidden {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .spc-hidden {
    display: block;
  }
}

.pc-hidden {
  display: none;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .pc-hidden {
    display: block;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .pc-hidden {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .pc-hidden {
    display: block;
  }
}

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

.js-fadein {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  pointer-events: none;
}
.js-fadein.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.l-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15.625%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-inner {
    padding: 0 4.167%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-inner {
    padding: 0 4.167%;
  }
}
@media screen and (max-width: 540px) {
  .l-inner {
    padding: 0 4.267%;
  }
}

.l-mt200 {
  margin-top: 200px;
}

.l-mt100-70 {
  margin-top: 100px;
}
@media screen and (max-width: 840px) {
  .l-mt100-70 {
    margin-top: 70px;
  }
}

.l-mt70-50 {
  margin-top: 70px;
}
@media screen and (max-width: 840px) {
  .l-mt70-50 {
    margin-top: 50px;
  }
}

.l-mt30-25 {
  margin-top: 30px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mt30-25 {
    margin-top: 25px;
  }
}

.l-mt65 {
  margin-top: 65px;
}

.l-mt60 {
  margin-top: 60px;
}

.l-mt50 {
  margin-top: 50px;
}

.l-mt40 {
  margin-top: 40px;
}

.l-mt32 {
  margin-top: 32px;
}

.l-mt30 {
  margin-top: 30px;
}

.c-main-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 22px 130px;
  border: solid 2px #2a84c3;
  background-color: #333;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 16px;
}
.c-main-btn::after {
  content: "";
  position: absolute;
  right: 40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #2a84c3;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-main-btn:hover {
  background-color: #2a84c3;
}
.c-main-btn:hover::after {
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-main-btn {
    width: 100%;
    max-width: 360px;
    padding: 22px 100px;
  }
}
@media screen and (max-width: 540px) {
  .c-main-btn {
    max-width: 240px;
    padding: 13px 75px;
  }
  .c-main-btn::after {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .c-main-btn.p-contact-btn {
    padding: 13px 41px;
  }
}

.p-recruit-contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 18px 133px 18px 109px;
  background-color: #1C1B19;
  border: solid 2px #1C1B19;
  color: #fff;
}
.p-recruit-contact-btn::after {
  content: "";
  position: absolute;
  right: 100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #fff;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-recruit-contact-btn:hover {
  background-color: #fff;
  color: #1C1B19;
}
.p-recruit-contact-btn:hover::after {
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #1C1B19;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media screen and (max-width: 540px) {
  .p-recruit-contact-btn {
    padding: 23px 86px 23px 62px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.8px;
  }
  .p-recruit-contact-btn::after {
    right: 65px;
  }
}

.c-head01 {
  width: 100px;
  height: 77px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-head01 {
    width: 65px;
    height: 54px;
  }
}
@media screen and (max-width: 540px) {
  .c-head01 {
    width: 65px;
    height: 56px;
  }
}

.c-head02 {
  position: relative;
}
.c-head02 .p-h2-en {
  color: #7e7e7e;
  font-family: "Lato", sans-serif;
  font-size: 86px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-head02 .p-h2-en {
    font-size: 64px;
  }
}
@media screen and (max-width: 540px) {
  .c-head02 .p-h2-en {
    font-size: 54px;
  }
}
.c-head02 .p-h2-jp {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 0px;
}
@media screen and (max-width: 840px) {
  .c-head02 .p-h2-jp {
    bottom: -10px;
  }
}
.c-head02.c-head-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-head02.c-head-center .p-h2-jp {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-head03 {
  /* グラデーションの色を設定（左から右へ） */
  background: -webkit-gradient(linear, left top, right top, from(#004687), to(#2a84c3));
  background: linear-gradient(to right, #004687, #2a84c3);
  /* 背景を文字の形に切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 元の文字の色を透明にする */
  color: transparent;
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 840px) {
  .c-head03 {
    font-size: 36px;
  }
}
@media screen and (max-width: 540px) {
  .c-head03 {
    font-size: 28px;
  }
}

/*
<h2 class="c-recruit-h2">
  <span class="p-recruit-h2-en">Features</span>
  <span class="p-recruit-h2-jp">Recruit ONEの強み</span>
</h2>
*/
.c-recruit-h2 {
  position: relative;
  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;
}

.p-recruit-h2-en {
  display: inline-block;
  color: #A8A8A8;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 96px;
  letter-spacing: 4px;
}
.p-recruit-h2-en.p-flow-h2 {
  color: #A0A0A0;
}
.p-recruit-h2-en.p-contact-h2 {
  color: #fff;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-h2-en {
    font-size: 72px;
    line-height: 86.4px;
    letter-spacing: 3.6px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-h2-en {
    font-size: 64px;
    line-height: 76.8px;
    letter-spacing: 3.2px;
  }
}

.p-recruit-h2-jp {
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #0D0D0D;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
}
.p-recruit-h2-jp.p-flow-h2 {
  color: #fff;
}
.p-recruit-h2-jp.p-contact-h2 {
  color: #0D0D0D;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-h2-jp {
    bottom: -7px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1.4px;
  }
  .p-recruit-h2-jp.p-flow-h2 {
    bottom: -15px;
  }
  .p-recruit-h2-jp.p-contact-h2 {
    bottom: -18px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-h2-jp {
    width: 100%;
    bottom: -7px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1.4px;
    text-align: center;
  }
  .p-recruit-h2-jp.p-faq-h2 {
    bottom: 3px;
  }
  .p-recruit-h2-jp.p-flow-h2 {
    bottom: 5px;
  }
  .p-recruit-h2-jp.p-contact-h2 {
    bottom: 4px;
  }
}

.c-lower-mv {
  background-color: #333;
  opacity: 0.8;
}

.c-lower-mv-inner {
  padding-right: 15.625%;
  padding-left: 15.625%;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .c-lower-mv-inner {
    padding-right: 4.1666%;
    padding-left: 4.1666%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-lower-mv-inner {
    padding-right: 4.1666%;
    padding-left: 4.1666%;
  }
}
@media screen and (max-width: 540px) {
  .c-lower-mv-inner {
    padding-right: 6.4%;
    padding-left: 6.4%;
  }
}

.c-lower-mv-h2 {
  padding-top: 212px;
  padding-bottom: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-lower-mv-h2 {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 540px) {
  .c-lower-mv-h2 {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}

.p-lower-mv-head-en {
  color: #7e7e7e;
  font-family: "Lato", sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 120.4px;
  letter-spacing: 4.3px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-lower-mv-head-en {
    font-size: 54px;
    line-height: 75.6px;
    letter-spacing: 2.7px;
  }
}
@media screen and (max-width: 540px) {
  .p-lower-mv-head-en {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 2px;
  }
}

.p-lower-mv-head-jp {
  margin-top: -13px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-lower-mv-head-jp {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .p-lower-mv-head-jp {
    margin-top: -1px;
  }
}

body.body-top {
  position: relative;
  z-index: 0;
  background: transparent;
  overflow-x: hidden; /* 横揺れ防止 */
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body.body-top::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/top-11.webp), url(../img/top/top-10.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
body.body-top.is-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.p-mv {
  margin-top: 100px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mv {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.l-mv-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.l-mv-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) {
  .l-mv-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.l-l-text {
  position: relative;
  z-index: 2;
}

.p-mv-text {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mv-text {
    font-size: 52px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-text {
    font-size: 48px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-text {
    font-size: 40px;
  }
}

.l-r-img {
  position: relative;
  width: 46.46%;
  z-index: 2;
}
.l-r-img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-r-img {
    width: 350px;
    height: 402px;
  }
}
@media screen and (max-width: 540px) {
  .l-r-img {
    width: 300px;
    height: 344px;
  }
}

.l-logo {
  position: absolute;
  left: 0;
  top: -55px;
  width: 1070px;
  height: 800px;
  z-index: 1;
  -webkit-filter: sepia(0.1) brightness(0.3);
  filter: sepia(0.1) brightness(0.3);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-logo {
    left: -4.545%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-logo {
    left: 0.78%;
    top: -30px;
    width: 800px;
    height: 650px;
  }
}

.p-about {
  padding-top: 166px;
  padding-bottom: 283px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-about {
    padding-top: 125px;
    padding-bottom: 140px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-about {
    padding-top: 65px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 540px) {
  .p-about {
    padding-top: 217px;
    padding-bottom: 75px;
  }
}

.l-about-inner {
  position: relative;
}

.l-about-container {
  position: relative;
}

.l-about-sp-img1 {
  position: absolute;
  top: 100px;
  right: 32.5%;
  width: 200px;
  height: 205px;
}

.l-about-sp-img2 {
  position: absolute;
  top: 118px;
  right: 14%;
  width: 200px;
  height: 350px;
}

.p-about-h3 {
  margin-top: 100px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-about-h3 {
    margin-top: 70px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-about-h3 {
    margin-top: 70px;
  }
}
@media screen and (max-width: 540px) {
  .p-about-h3 {
    margin-top: 462px;
  }
}

.p-about-text {
  margin-top: 37px;
}
@media screen and (max-width: 540px) {
  .p-about-text {
    margin-top: 10px;
  }
}

.p-about-btn {
  margin-top: 70px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-about-btn {
    margin-top: 50px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-about-btn {
    margin-top: 56px;
  }
}
@media screen and (max-width: 540px) {
  .p-about-btn {
    margin-top: 35px;
  }
}

.p-about-img1 {
  position: absolute;
  top: 60px;
  right: 14%;
  width: 546px;
  height: 555px;
  z-index: -1;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-about-img1 {
    right: -2%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-about-img1 {
    width: 400px;
    height: 400px;
    top: -60px;
    right: 0;
  }
}

.p-about-img2 {
  position: absolute;
  top: 152px;
  right: 16%;
  width: 320px;
  height: 527px;
  z-index: -1;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-about-img2 {
    right: 0%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-about-img2 {
    width: 200px;
    height: 350px;
    top: 20px;
    right: 0;
  }
}

.p-service {
  margin-top: 283px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-service {
    margin-top: 85px;
  }
}
@media screen and (max-width: 540px) {
  .p-service {
    margin-top: 58px;
  }
}

.l-service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 840px) {
  .l-service-container {
    display: block;
  }
}

.l-l-service {
  max-width: 640px;
}
@media screen and (max-width: 840px) {
  .l-l-service {
    max-width: initial;
  }
}

.p-service-h3 {
  margin-top: 100px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-service-h3 {
    margin-top: 70px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-service-h3 {
    margin-top: 110px;
  }
}
@media screen and (max-width: 540px) {
  .p-service-h3 {
    margin-top: 81px;
  }
}

.p-service-text1 {
  margin-top: 40px;
  font-size: 24px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-service-text1 {
    margin-top: 24px;
  }
}
@media screen and (max-width: 540px) {
  .p-service-text1 {
    margin-top: 25px;
    font-size: 20px;
  }
}

.p-service-text2 {
  margin-top: 30px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-service-text2 {
    margin-top: 25px;
  }
}
@media screen and (max-width: 840px) {
  .p-service-text2 {
    margin-top: 15px;
    font-size: 15px;
  }
}

.p-service-btn {
  margin-top: 35px;
}
@media screen and (max-width: 840px) {
  .p-service-btn {
    margin-top: 47px;
  }
}

.l-service-sp-img1 {
  margin-top: 130px;
}
@media screen and (max-width: 540px) {
  .l-service-sp-img1 {
    margin-top: 100px;
  }
}

.l-service-text-container {
  margin-top: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-service-text-container {
    margin-top: 57px;
  }
}
@media screen and (max-width: 540px) {
  .l-service-text-container {
    margin-top: 24px;
  }
}

.l-r-service {
  padding-top: 210px;
  width: 49.24%;
  height: 790.5px;
}
@media screen and (max-width: 840px) {
  .l-r-service {
    display: none;
  }
}

.p-recruit {
  margin-top: 330px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-recruit {
    margin-top: 325px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit {
    margin-top: 153px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit {
    margin-top: 142px;
  }
}

.l-recruit-cards {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-recruit-cards {
    margin-top: 85px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 540px) {
  .l-recruit-cards {
    margin-top: 85px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.l-recruit-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 28px;
  border: solid 1px #7e7e7e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 540px) {
  .l-recruit-card {
    padding: 29px 38px 31px 34px;
  }
}
.l-recruit-card img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-filter: grayscale(0.8);
  filter: grayscale(0.8);
}

.p-card-title {
  margin-top: 32px;
  font-size: 26px;
}
@media screen and (max-width: 540px) {
  .p-card-title {
    margin-top: 20px;
    font-size: 24px;
  }
}

.p-card-text {
  margin-top: 24px;
  font-size: 15px;
}
@media screen and (max-width: 540px) {
  .p-card-text {
    margin-top: 21px;
  }
}

.p-contact {
  margin-top: 330px;
  margin-bottom: 300px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-contact {
    margin-top: 195px;
    margin-bottom: 105px;
  }
}
@media screen and (max-width: 540px) {
  .p-contact {
    margin-top: 151px;
    margin-bottom: 102px;
  }
}

.l-contact-inner {
  position: relative;
  z-index: 1;
}

.l-contact-container {
  position: relative;
  margin-top: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-contact-container {
    margin-top: 158px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-contact-container {
    margin-top: 54px;
    gap: 80px;
  }
}
@media screen and (max-width: 540px) {
  .l-contact-container {
    margin-top: 84px;
    gap: 80px;
  }
}

.p-contact-text {
  font-size: 15px;
}

.l-contact-img {
  position: absolute;
  top: -180px;
  left: 1.04%;
  z-index: -1;
}
.l-contact-img img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-contact-img {
    left: -3%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-contact-img {
    top: -200px;
    left: -7%;
    width: 250px;
    height: 252px;
  }
}
@media screen and (max-width: 540px) {
  .l-contact-img {
    top: -140px;
    left: -24%;
    width: 199px;
    height: 203px;
  }
}

.c-buzz-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-buzz-head {
    gap: 28px;
  }
}
@media screen and (max-width: 540px) {
  .c-buzz-head {
    gap: 28px;
  }
}

.c-buzz-head__bar {
  display: inline-block;
  width: 60px;
  height: 8px;
  aspect-ratio: 15/2;
  background: #2a7acc;
  background: linear-gradient(120deg, #2a7acc 0%, #2a7acc 90%, transparent 90%, transparent 100%);
}

.c-buzz-head__text {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-buzz-head__text {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .c-buzz-head__text {
    font-size: 28px;
  }
}

.p-mv__buzzcoach {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-inline: 48px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv__buzzcoach {
    margin-top: 70px;
    padding-inline: 84px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv__buzzcoach {
    margin-top: 70px;
    padding-top: 60px;
    padding-inline: 20px;
  }
}

.l-mv-buzzcoach__inner {
  width: 100%;
  max-width: 1620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-buzzcoach__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-mv-buzzcoach__container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-buzzcoach__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .l-mv-buzzcoach__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}

.p-mv-buzzcoach__head-text1,
.p-mv-buzzcoach__head-text2 {
  color: #1c1b19;
  font-family: Inter;
  font-size: 48px;
  font-weight: 600;
  line-height: 72px; /* 150% */
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-mv-buzzcoach__head-text1,
  .p-mv-buzzcoach__head-text2 {
    color: #1c1b19;
    font-family: Inter;
    font-size: 32px;
    line-height: 60px; /* 150% */
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-buzzcoach__head-text1,
  .p-mv-buzzcoach__head-text2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 610px) {
  .p-mv-buzzcoach__head-text1,
  .p-mv-buzzcoach__head-text2 {
    font-size: 32px;
  }
}

.p-mv-buzzcoach__head-text1 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__head-text1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 42px; /* 150% */
    letter-spacing: 1.4px;
  }
}
.p-mv-buzzcoach__head-text1::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 265px;
  height: 15.89px;
  aspect-ratio: 250/15.89;
  background: #ffe35b;
  z-index: -1;
  background: linear-gradient(135deg, #ffe35b 0%, #ffe35b 90%, transparent 90%, transparent 100%);
}
@media screen and (max-width: 1280px) {
  .p-mv-buzzcoach__head-text1::before {
    width: 167px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-buzzcoach__head-text1::before {
    width: 220px;
  }
}
@media screen and (max-width: 610px) {
  .p-mv-buzzcoach__head-text1::before {
    width: 170px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__head-text1::before {
    height: 9.34px;
  }
}

.p-mv-buzzcoach__head-text2 {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__head-text2 {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px; /* 150% */
    letter-spacing: 0.08em;
  }
}
.p-mv-buzzcoach__head-text2::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 200px;
  width: 275px;
  height: 16.59px;
  aspect-ratio: 261/16.59;
  background: #ffe35b;
  z-index: -1;
  background: linear-gradient(135deg, #ffe35b 0%, #ffe35b 90%, transparent 90%, transparent 100%);
}
@media screen and (max-width: 1280px) {
  .p-mv-buzzcoach__head-text2::before {
    left: 130px;
    width: 185px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-buzzcoach__head-text2::before {
    left: 170px;
    width: 220px;
  }
}
@media screen and (max-width: 610px) {
  .p-mv-buzzcoach__head-text2::before {
    left: 130px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__head-text2::before {
    left: 106px;
    height: 9.34px;
  }
}

.p-mv-buzzcoach__title {
  color: #1c1b19;
  font-family: Inter;
  font-size: 76px;
  font-weight: 600;
  line-height: 114px; /* 150% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .p-mv-buzzcoach__title {
    font-size: 64px;
    line-height: 96px; /* 150% */
  }
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__title {
    font-size: 58px;
  }
}

.p-mv-buzzcoach__title-text {
  color: #333;
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 40.8px; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mv-buzzcoach__title-text {
    padding-right: 6px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-buzzcoach__title-text {
    font-size: 18px;
    line-height: 30.6px; /* 170% */
    padding-right: 6px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__title-text {
    font-size: 16px;
    line-height: 27.2px; /* 170% */
    padding-right: 14px;
  }
}

.p-mv-buzzcoach__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 56px 15px 62px;
  border-radius: 5px;
  border: 2px solid #297acc;
  background: #297acc;
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7; /* 170% */
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-buzzcoach__btn {
    padding: 15px 61px 15px 58px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-buzzcoach__btn {
    margin-inline: auto;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7; /* 170% */
    letter-spacing: 1px;
    padding: 14px 55px 13px 60px;
  }
}
.p-mv-buzzcoach__btn:hover {
  background-color: #fff;
  color: #297acc;
}
.p-mv-buzzcoach__btn:hover::after {
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.l-mv-buzzcoach__img {
  width: 50%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-buzzcoach__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-mv-buzzcoach__img {
    width: 100%;
  }
}

.p-buzz-worries {
  background: #f5f5f5;
  overflow: hidden;
}

.l-buzz-worries__inner {
  padding: 0;
}

.l-buzz-worries__container {
  padding-block: 150px;
  padding-inline: 210px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-buzz-worries__container {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 960px) {
  .l-buzz-worries__container {
    padding-inline: 32px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-worries__container {
    gap: 60px;
    padding-block: 80px;
    max-width: 704px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-worries__container {
    gap: 125px;
    padding-top: 40px;
    padding-bottom: 60px;
    padding-inline: 20px;
  }
}

@media screen and (max-width: 540px) {
  .p-buzz-worries__heading {
    position: relative;
  }
}

@media screen and (max-width: 540px) {
  .p-buzz-worries__head-text {
    position: absolute;
    width: 383px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 374px) {
  .p-buzz-worries__head-text {
    font-size: 20px;
  }
}

.p-buzz-head__text-blue {
  color: #297acc;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-head__text-blue {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-head__text-blue {
    font-size: 28px;
  }
}
@media screen and (max-width: 374px) {
  .p-buzz-head__text-blue {
    font-size: 20px;
  }
}

.p-buzz-worries__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-worries__cards {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 35px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-worries__cards {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 18px;
  }
}

.p-buzz-worries__card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 45px 35px 45px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-worries__card {
    padding: 43px 70px 43px 70px;
    gap: 20px;
    max-width: 400px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-worries__card {
    padding: 45px 50px 47px 50px;
    gap: 19px;
    max-width: 400px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-worries__img {
    width: 240px;
    height: 115.59px;
    aspect-ratio: 240/115.59;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-worries__img {
    width: 235px;
    height: 110.83px;
    aspect-ratio: 235/110.83;
    margin-inline: auto;
  }
}

.p-buzz-worries__text {
  color: #626262;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-worries__text {
    font-size: 16px;
    line-height: 1.5; /* 150% */
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-worries__text {
    font-size: 14px;
    line-height: 1.5; /* 150% */
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .worries__text1 {
    padding-left: 1px;
  }
}
@media screen and (max-width: 540px) {
  .worries__text1 {
    padding-left: 10px;
    padding-top: 1px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .worries__text2 {
    padding-left: 11px;
  }
}
@media screen and (max-width: 540px) {
  .worries__text2 {
    padding-left: 18px;
    padding-top: 5px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .worries__text3 {
    margin-left: -7px;
  }
}
@media screen and (max-width: 540px) {
  .worries__text3 {
    padding-left: 2px;
    padding-right: 10px;
    padding-top: 5px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .worries__text4 {
    padding-left: 3px;
  }
}
@media screen and (max-width: 540px) {
  .worries__text4 {
    padding-left: 10px;
    padding-top: 5px;
  }
}

.p-buzz-about {
  background: #297acc;
  overflow: hidden;
}

.l-buzz-about__inner {
  padding-block: 100px;
  padding-inline: 32px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-about__inner {
    padding-block: 80px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-about__inner {
    padding-block: 60px;
    padding-inline: 20px;
  }
}

.l-buzz-about__container {
  border-radius: 30px;
  background: #fff;
  padding-block: 80px;
  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: 541px) and (max-width: 840px) {
  .l-buzz-about__container {
    padding-block: 60px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-about__container {
    padding-block: 50px;
  }
}

@media screen and (max-width: 540px) {
  .p-buzz-about__head {
    gap: 26px;
  }
}

@media screen and (max-width: 540px) {
  .p-buzz-about__head-text {
    padding-left: 0;
  }
}

.p-buzz-about__description {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
  z-index: 1;
  width: 806.32px;
  height: 78.8px;
  text-align: center;
  position: relative;
  margin-top: 55px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__description {
    width: 428.32px;
    height: 119.59px;
    text-align: center;
    margin-top: 61px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__description {
    font-size: 18px;
    width: 305px;
    height: 120.78px;
    margin-top: 37px;
    padding-left: 2px;
  }
}
.p-buzz-about__description::before {
  content: "";
  position: absolute;
  bottom: 45px;
  right: 55px;
  width: 330px;
  height: 10px;
  background: #ffe35b;
  z-index: -1;
  background: linear-gradient(135deg, #ffe35b 0%, #ffe35b 90%, transparent 90%, transparent 100%);
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__description::before {
    right: 70px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__description::before {
    width: 250px;
    height: 7px;
    bottom: 65px;
    right: 35px;
  }
}

.p-buzz-about__flow-wrap-beside {
  margin-top: 62px;
  width: 696px;
}

.p-buzz-about__flow-beside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-buzz-about__flow-beside1 {
  position: relative;
  margin: 0px -15px 0px 0px;
  z-index: 2;
}

.p-buzz-about__flow-beside2 {
  position: relative;
  margin: 0px -15px 0px 0px;
  z-index: 1;
}

.p-buzz-about__flow-beside3 {
  position: relative;
}

.p-buzz-about__support {
  margin-top: 15px;
}

.p-buzz-about__flow-wrap-vertical {
  margin-top: 61px;
  max-width: 664px;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__flow-wrap-vertical {
    margin-top: 62px;
    padding-left: 5px;
  }
}

.p-buzz-about__flow-vertical {
  width: 330px;
  margin-inline: auto;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__flow-vertical {
    width: 220px;
  }
}

.p-buzz-about__flow-text {
  margin-top: 31px;
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__flow-text {
    font-size: 20px;
  }
}

.p-buzz-about__contents {
  max-width: 1012px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 130px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__contents {
    margin-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__contents {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.p-buzz-about__contents::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 8px;
  aspect-ratio: 15/2;
  background: #2a7acc;
  background: linear-gradient(120deg, #2a7acc 0%, #2a7acc 90%, transparent 90%, transparent 100%);
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__contents::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__contents::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-buzz-about__textbox {
  margin-top: 38px;
}

.p-buzz-about__text1 {
  color: #1c1b19;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 1050px) {
  .p-buzz-about__text1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__text1 {
    padding-left: 0;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__text1 {
    padding-left: 0;
    padding-right: 12px;
    margin-top: -2px;
    font-size: 28px;
  }
}

.p-buzz-about__text2 {
  color: #1c1b19;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1050px) {
  .p-buzz-about__text2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__text2 {
    font-size: 28px;
  }
}

.p-buzz-about__text-blue {
  color: #297acc;
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1050px) {
  .p-buzz-about__text-blue {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__text-blue {
    font-size: 28px;
    margin-left: 5px;
  }
}

.p-buzz-about__cards {
  margin-top: 15px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__cards {
    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 (max-width: 540px) {
  .p-buzz-about__cards {
    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;
  }
}

.p-buzz-about__card1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  padding: 16px 102px 16px 99px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: #f5faff;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .p-buzz-about__card1 {
    padding: 16px 50px 16px 50px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1 {
    max-width: 600px;
    padding: 40px 141.67px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .p-buzz-about__card1 {
    padding: 16px 20px 16px 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1 {
    max-width: 315px;
    padding: 40px 43px 40px 43px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 37px;
  }
}
.p-buzz-about__card1::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-13.webp") no-repeat center center/contain;
  width: 40px;
  height: 31.06px;
  aspect-ratio: 40/31.06;
  top: -11px;
  left: 14px;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1::before {
    left: 15px;
  }
}

.p-buzz-about__card1-text {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1-text {
    font-size: 16px;
  }
}

.p-buzz-about__card1-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-buzz-about__card1-textbox p {
  display: inline-block;
}
.p-buzz-about__card1-textbox p:nth-of-type(1) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1-textbox p:nth-of-type(1) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1-textbox p:nth-of-type(1) {
    font-size: 24px;
    padding-left: 5px;
  }
}
.p-buzz-about__card1-textbox p:nth-of-type(2) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1-textbox p:nth-of-type(2) {
    font-size: 44px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1-textbox p:nth-of-type(2) {
    font-size: 32px;
  }
}
.p-buzz-about__card1-textbox p:nth-of-type(3) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1-textbox p:nth-of-type(3) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1-textbox p:nth-of-type(3) {
    font-size: 24px;
    padding-left: 7px;
  }
}
.p-buzz-about__card1-textbox p:nth-of-type(4) {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card1-textbox p:nth-of-type(4) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card1-textbox p:nth-of-type(4) {
    font-size: 18px;
  }
}

.p-buzz-about__card2 {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  padding: 20px 77px 20px 77px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: #f5faff;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .p-buzz-about__card2 {
    padding: 16px 20px 16px 20px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2 {
    max-width: 600px;
    padding: 40px 86.25px 40px 86.23px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 700px) {
  .p-buzz-about__card2 {
    padding: 16px 20px 16px 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2 {
    max-width: 315px;
    padding: 40px 24px 40px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 41px;
  }
}
.p-buzz-about__card2::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-13.webp") no-repeat center center/contain;
  width: 40px;
  height: 31.06px;
  aspect-ratio: 40/31.06;
  top: -11px;
  left: 14px;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2::before {
    left: 15px;
  }
}

.p-buzz-about__card2-text {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-text {
    font-size: 16px;
  }
}

.p-buzz-about__card2-textbox1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox1 {
    padding-left: 6px;
  }
}
.p-buzz-about__card2-textbox1 p {
  display: inline-block;
}
.p-buzz-about__card2-textbox1 p:nth-of-type(1) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(1) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(1) {
    font-size: 24px;
  }
}
.p-buzz-about__card2-textbox1 p:nth-of-type(2) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(2) {
    font-size: 44px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(2) {
    font-size: 32px;
    letter-spacing: -3px;
  }
}
.p-buzz-about__card2-textbox1 p:nth-of-type(3) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
  margin-left: 14px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(3) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox1 p:nth-of-type(3) {
    font-size: 24px;
    margin-left: 16px;
  }
}

.p-buzz-about__card2-textbox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox2 {
    padding-left: 11px;
  }
}
.p-buzz-about__card2-textbox2 p {
  display: inline-block;
}
.p-buzz-about__card2-textbox2 p:nth-of-type(1) {
  color: #1c1b19;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(1) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(1) {
    font-size: 18px;
  }
}
.p-buzz-about__card2-textbox2 p:nth-of-type(2) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
  margin-left: 14px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(2) {
    font-size: 44px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(2) {
    font-size: 32px;
    margin-left: 10px;
  }
}
.p-buzz-about__card2-textbox2 p:nth-of-type(3) {
  color: #297acc;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
  margin-left: 12px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(3) {
    font-size: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-about__card2-textbox2 p:nth-of-type(3) {
    font-size: 24px;
    margin-left: 10px;
  }
}

.p-buzz-solution {
  background: #f5f5f5;
}

.l-buzz-solution__inner {
  padding: 0;
}

.l-buzz-solution__container {
  padding-block: 150px;
  padding-inline: 70px;
  max-width: 1320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 1280px) {
  .l-buzz-solution__container {
    padding-inline: 10px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-solution__container {
    padding-block: 80px;
    padding-inline: 32px;
    gap: 58px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-solution__container {
    padding-block: 60px;
    padding-inline: 20px;
    gap: 47px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-buzz-solution__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 500px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-solution__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 335px;
  }
}

.p-buzz-solution__card {
  width: 32.2033898305%;
  width: 380px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding-top: 50px;
  padding-bottom: 45px;
  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: 841px) and (max-width: 1500px) {
  .p-buzz-solution__card {
    width: 32.2033898305%;
    padding-inline: 10px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution__card {
    width: 100%;
    padding-top: 45px;
    padding-bottom: 40px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-solution__card {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 40px;
    padding-inline: 10px;
  }
}

.buzz-solution__card1 {
  position: relative;
}
.buzz-solution__card1::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-14.webp") no-repeat center center/contain;
  width: 53px;
  height: 40.11px;
  aspect-ratio: 53/40.11;
  top: 13px;
  left: 13px;
}

.buzz-solution__card2 {
  position: relative;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-solution__card2 {
    margin-top: 8px;
    padding-top: 39px;
  }
}
.buzz-solution__card2::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-16.webp") no-repeat center center/contain;
  width: 53px;
  height: 40.11px;
  aspect-ratio: 53/40.11;
  top: 13px;
  left: 13px;
}

.buzz-solution__card3 {
  position: relative;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-solution__card3 {
    margin-top: 6px;
    padding-top: 39px;
  }
}
.buzz-solution__card3::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-18.webp") no-repeat center center/contain;
  width: 53px;
  height: 40.11px;
  aspect-ratio: 53/40.11;
  top: 13px;
  left: 13px;
}

.p-buzz-solution__img {
  max-width: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  aspect-ratio: 250/140.09;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution__img {
    max-width: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-solution__img {
    max-width: 205px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-buzz-solution-wrap {
  text-align: left;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution-wrap {
    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;
  }
}

.p-buzz-solution-head {
  max-width: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #297acc;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.05em;
  margin-top: 24px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution-head {
    max-width: 370px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-solution-head {
    max-width: 205px;
    font-size: 18px;
    margin-top: 22px;
    padding-left: 3px;
  }
}

.buzz-solution-head1 {
  padding-right: 5px;
}

.buzz-solution-head2 {
  padding-right: 15px;
}

.buzz-solution-head3 {
  padding-right: 10px;
}
@media screen and (max-width: 540px) {
  .buzz-solution-head3 {
    padding-right: 5px;
  }
}

.p-buzz-solution-description {
  max-width: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1c1b19;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8; /* 180% */
  letter-spacing: 0.05em;
  margin-top: 22px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-solution-description {
    max-width: 370px;
    font-size: 16px;
    margin-top: 17px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-solution-description {
    max-width: 205px;
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: 0.7px;
    padding-left: 3px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-solution-description-wide {
    max-width: 420px;
  }
}
@media screen and (max-width: 540px) {
  .buzz-solution-description-wide {
    max-width: 205px;
  }
}

.p-buzz-review {
  background: #fff;
}

.l-buzz-review__inner {
  padding: 0;
  padding-inline: 32px;
}
@media screen and (max-width: 540px) {
  .l-buzz-review__inner {
    padding-inline: 20px;
  }
}

.l-buzz-review__container {
  padding-top: 145px;
  padding-bottom: 150px;
  max-width: 1320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 85px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-review__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 65px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-review__container {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 60px;
    padding-left: 3px;
  }
}

.p-buzz-review__cards {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-review__cards {
    max-width: 600px;
    gap: 39px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-review__cards {
    max-width: 335px;
    gap: 30px;
  }
}

.p-buzz-review__card {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding-inline: 40px;
  padding-top: 44px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  position: relative;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-review__card {
    -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: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-review__card {
    -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: 18px;
    padding-inline: 19px;
  }
}
.p-buzz-review__card::before {
  content: "";
  position: absolute;
  background: url("../img/buzzcoach/buzzcoach-20.webp") no-repeat center center/contain;
  width: 47px;
  height: 36.5px;
  aspect-ratio: 47/36.5;
  top: -11px;
  left: 14px;
}

.p-buzz-review__profile {
  max-width: 224px;
  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: 11px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-review__profile {
    gap: 16px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-review__profile {
    gap: 10px;
  }
}

.p-buzz-review__name {
  color: #0d0d0d;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
  margin-left: -5px;
}
@media screen and (max-width: 540px) {
  .p-buzz-review__name {
    font-size: 14px;
    margin-left: 0;
  }
}

@media screen and (max-width: 540px) {
  .buzz-review__name-big {
    font-size: 16px;
  }
}

.p-buzz-review__content {
  width: 73.7931034483%;
  max-width: 642px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-review__content {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-review__content {
    width: 100%;
  }
}

.p-buzz-review__content-head {
  border-bottom: 1px solid #1c1b19;
  padding-bottom: 15px;
}

.p-buzz-review__content-text {
  color: #297acc;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .p-buzz-review__content-text {
    font-size: 18px;
  }
}

.buzz-review__content-text1 {
  max-width: 444.04px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-review__content-text1 {
    max-width: 100%;
    padding-right: 3px;
  }
}
@media screen and (max-width: 540px) {
  .buzz-review__content-text1 {
    max-width: 100%;
  }
}

.buzz-review__content-text2 {
  max-width: 558px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-review__content-text2 {
    max-width: 100%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 540px) {
  .buzz-review__content-text2 {
    max-width: 100%;
    padding-right: 5px;
  }
}

.buzz-review__content-text3 {
  max-width: 452.58px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-review__content-text3 {
    max-width: 100%;
    padding-right: 3px;
  }
}
@media screen and (max-width: 540px) {
  .buzz-review__content-text3 {
    max-width: 100%;
  }
}

.p-buzz-review__description {
  color: #1c1b19;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 2; /* 200% */
  letter-spacing: 0.05em;
  margin-top: 18px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-review__description {
    font-size: 16px;
    padding-right: 3px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-review__description {
    font-size: 14px;
  }
}

.p-buzz-cta {
  background: #f9f9f9;
}

.l-buzz-cta__inner {
  padding: 0;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-cta__inner {
    padding-inline: 30px;
  }
}

.l-buzz-cta__container {
  max-width: 890px;
  margin-inline: auto;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-cta__container {
    padding-top: 80px;
    padding-bottom: 75px;
    max-width: 704px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-cta__container {
    padding-top: 56px;
    padding-bottom: 60px;
    max-width: 335px;
    padding-left: 3px;
  }
}

.p-buzz-cta__imgbox {
  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: 60px;
  background: #ffffff;
  padding-bottom: 60px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-cta__imgbox {
    gap: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-cta__imgbox {
    gap: 30px;
    padding-bottom: 20px;
  }
}

.p-buzz-cta__img1 {
  max-width: 100%;
}

.p-buzz-cta__img2 {
  max-width: 560px;
  aspect-ratio: 560/295.86;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-cta__img2 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-cta__img2 {
    max-width: 295px;
    height: 155.84px;
    aspect-ratio: 295/155.84;
  }
}

.p-buzz-cta__img3 {
  max-width: 560px;
  aspect-ratio: 560/295.86;
}
@media screen and (max-width: 540px) {
  .p-buzz-cta__img3 {
    max-width: 295px;
    height: 155.84px;
    aspect-ratio: 295/155.84;
  }
}

.p-buzz-flow {
  background: #297acc;
}

.l-buzz-flow__inner {
  padding: 0;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-buzz-flow__inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-flow__inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-flow__inner {
    padding-inline: 20px;
  }
}

.l-buzz-flow__container {
  max-width: 1320px;
  padding-top: 145px;
  padding-bottom: 150px;
  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;
  gap: 75px;
  margin-inline: auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-flow__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 57px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-flow__container {
    padding-top: 60px;
    padding-bottom: 57px;
    gap: 48px;
  }
}

.p-buzz-flow__head-bar {
  background: #fff;
  background: linear-gradient(120deg, #fff 0%, #fff 90%, transparent 90%, transparent 100%);
}

.p-buzz-flow__head-text {
  color: #fff;
}

.p-buzz-flow__cards {
  max-width: 1050px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-flow__cards {
    max-width: 704px;
    gap: 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-flow__cards {
    max-width: 335px;
    gap: 20px;
  }
}

.p-buzz-flow__card {
  background: #f6f6f6;
  padding-inline: 55px;
  padding-block: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-flow__card {
    padding-inline: 25px;
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-flow__card {
    padding-inline: 15px;
    gap: 20px;
  }
}

.p-buzz-flow__img {
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 150/151;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-flow__img {
    width: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 120/120.8;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-flow__img {
    width: 90px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 90/90.44;
  }
}

.p-buzz-flow-wrap {
  max-width: 720px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-flow-wrap {
    max-width: 514px;
    gap: 15px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-flow-wrap {
    max-width: 195px;
    gap: 15px;
  }
}

.p-buzz-flow-tag {
  background: #468;
  padding: 0 20px 0 22px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .p-buzz-flow-tag {
    font-size: 18px;
    padding: 0;
    width: 100%;
  }
}

.buzz-flow-tag3 {
  padding: 1px 21.71px 1.59px 21.89px;
}

.p-buzz-flow-text {
  color: #0d0d0d;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-flow-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-flow-text {
    font-size: 14px;
  }
}

.buzz-flow-text1 {
  max-width: 411.81px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .buzz-flow-text1 {
    max-width: 470px;
  }
}
.buzz-flow-text4 {
  max-width: 647.01px;
}
.buzz-flow-text5 {
  max-width: 647.01px;
}
.p-buzz-contact {
  background: #fff;
}

.l-buzz-contact__container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 434.459px;
  -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;
  margin-inline: auto;
  gap: 60px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-buzz-contact__container {
    max-width: 704px;
    gap: 58px;
  }
}
@media screen and (max-width: 540px) {
  .l-buzz-contact__container {
    max-width: 327px;
    gap: 55px;
  }
}

.p-buzz-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-contact__head {
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__head {
    gap: 20px;
  }
}

.p-buzz-contact__head-en {
  color: #297acc;
  text-align: center;
  font-family: Lato;
  font-size: 86px;
  font-weight: 700;
  line-height: 1.2; /* 120% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-contact__head-en {
    font-size: 64px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__head-en {
    font-size: 54px;
  }
}

.p-buzz-contact__head-ja {
  color: #333;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: 1; /* 100% */
  letter-spacing: 0.05em;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-contact__head-ja {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__head-ja {
    font-size: 27px;
  }
}

.p-buzz-contact__message {
  color: #333;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8; /* 180% */
  letter-spacing: 0.05em;
  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;
}

.p-buzz-contact__button {
  width: 360px;
  height: 90px;
  border-radius: 10px;
  border: 2px solid #297acc;
  background: #297acc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 17px;
  cursor: pointer;
}
.p-buzz-contact__button:hover {
  background-color: #fff;
}
.p-buzz-contact__button:hover .p-buzz-contact__link {
  color: #297acc;
}
.p-buzz-contact__button:hover .p-buzz-contact__arrow {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-buzz-contact__button:hover .p-buzz-contact__arrow svg {
  fill: #297acc;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-buzz-contact__button {
    max-width: 360px;
    height: 90px;
  }
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__button {
    max-width: 300px;
    height: 70px;
  }
}

.p-buzz-contact__link {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; /* 文字色変更のアニメーション */
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__link {
    font-size: 16px;
  }
}

.p-buzz-contact__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -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-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* アニメーションのスムーズな移動 */
}
.p-buzz-contact__arrow svg {
  fill: white; /* 初期状態でSVGを白に */
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease; /* アニメーションで色を変更 */
}
@media screen and (max-width: 540px) {
  .p-buzz-contact__arrow {
    padding-left: 5px;
  }
}

.p-corporate-philosophy {
  padding-top: 150px;
  padding-bottom: 232px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-corporate-philosophy {
    padding-bottom: 234px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-corporate-philosophy {
    padding-bottom: 253px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-corporate-philosophy {
    padding-bottom: 253px;
  }
}
@media screen and (max-width: 540px) {
  .p-corporate-philosophy {
    padding-top: 80px;
    padding-bottom: 278px;
  }
}

.l-corporate-philosophy-inner {
  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: 30px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-corporate-philosophy-inner {
    gap: 42px;
  }
}

.p-philosophy-h3 {
  color: #7e7e7e;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 540px) {
  .p-philosophy-h3 {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: 2.7px;
  }
}

.p-philosophy-text {
  font-size: 20px;
  line-height: 60px;
  letter-spacing: 1px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-philosophy-text {
    font-size: 18px;
    line-height: 54px;
    letter-spacing: 0.9px;
  }
}
@media screen and (max-width: 540px) {
  .p-philosophy-text {
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.8px;
  }
}

.l-mvv-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 177px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mvv-text-container {
    gap: 179px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mvv-text-container {
    gap: 88px;
  }
}
@media screen and (max-width: 540px) {
  .l-mvv-text-container {
    gap: 81px;
  }
}

.l-mvv-items {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-mvv-items:nth-child(odd) .l-mvv-item {
  margin-right: auto;
  margin-left: 0;
}
.l-mvv-items:nth-child(odd) .p-mvv-h3 {
  right: 0;
}
.l-mvv-items:nth-child(even) .l-mvv-item {
  margin-left: auto;
  margin-right: 0;
}
.l-mvv-items:nth-child(even) .p-mvv-h3 {
  left: 0;
}
@media screen and (max-width: 840px) {
  .l-mvv-items {
    display: block;
  }
  .l-mvv-items .l-mvv-item {
    margin-right: 0;
    margin-left: 0;
  }
  .l-mvv-items .p-mvv-h3 {
    left: 0;
  }
  .l-mvv-items:nth-child(even) {
    padding-left: 43px;
  }
}
@media screen and (max-width: 540px) {
  .l-mvv-items:nth-child(even) {
    padding-left: 0;
  }
}

.p-mvv-h3 {
  position: absolute;
  top: -22px;
  z-index: 1;
  font-family: "Lato", sans-serif;
  font-size: 183px;
  line-height: 183px;
  letter-spacing: 9.15px;
  /* グラデーションの色を設定（右から左へ） */
  background: -webkit-gradient(linear, right top, left top, from(#004687), to(#2a84c3));
  background: linear-gradient(to left, #004687, #2a84c3);
  /* 背景を文字の形に切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 元の文字の色を透明にする */
  color: transparent;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mvv-h3 {
    top: -25px;
  }
}
@media screen and (max-width: 840px) {
  .p-mvv-h3 {
    position: relative;
    top: 0;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 540px) {
  .p-mvv-h3 {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: 2.7px;
  }
}

.l-mvv-item {
  position: relative;
  z-index: 2;
}
.l-mvv-item.p-mission-item {
  width: 37.272%;
}
.l-mvv-item.p-vision-item {
  width: 50%;
}
.l-mvv-item.p-value-item {
  width: 54.1%;
}
@media screen and (max-width: 840px) {
  .l-mvv-item.p-mission-item {
    width: 100%;
  }
  .l-mvv-item.p-vision-item {
    width: 100%;
  }
  .l-mvv-item.p-value-item {
    width: 100%;
  }
}

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

.p-mvv-title-text {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
  line-height: 40.8px;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mvv-title-text {
    font-size: 24px;
    line-height: 40.8px;
    letter-spacing: 1.2px;
  }
}
@media screen and (max-width: 540px) {
  .p-mvv-title-text {
    font-size: 18px;
    line-height: 30.6px;
    letter-spacing: 0.9px;
  }
}

.p-mvv-title-bar {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #7e7e7e;
}
.p-mvv-title-bar.value-bar {
  margin-right: 40px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mvv-title-bar.value-bar {
    margin-right: 56px;
  }
}

.p-mvv-text {
  margin-top: 81px;
  font-size: 32px;
  line-height: 54.4px;
  letter-spacing: 1.6px;
}
.p-mvv-text.p-value-text {
  margin-top: 0;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mvv-text {
    margin-top: 42px;
    font-size: 28px;
    line-height: 47.6px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-mvv-text {
    margin-top: 39px;
    font-size: 24px;
    line-height: 40.8px;
    letter-spacing: 1.2px;
  }
}

.l-mvv-value-textbox {
  margin-top: 81px;
}
.l-mvv-value-textbox li:nth-child(n+2) {
  margin-top: 41px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mvv-value-textbox li:nth-child(n+2) {
    margin-top: 39px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mvv-value-textbox {
    margin-top: 41px;
  }
  .l-mvv-value-textbox li:nth-child(n+2) {
    margin-top: 29px;
  }
}
@media screen and (max-width: 540px) {
  .l-mvv-value-textbox {
    margin-top: 40px;
  }
  .l-mvv-value-textbox li:nth-child(n+2) {
    margin-top: 29px;
  }
}

.p-mvv-detail {
  margin-top: 13px;
  font-size: 15px;
  line-height: 25.5px;
  letter-spacing: 0.75px;
}

.p-company-profile {
  margin-top: 225px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-company-profile {
    margin-top: 230px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-profile {
    margin-top: 169px;
  }
}

.l-company-profile-inner {
  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: 78px;
}

.p-company-profile-h3 {
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-profile-h3 {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-profile-h3 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1.2px;
  }
}

.l-company-profile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 66.666%;
  max-width: 880px;
}
.l-company-profile-container li {
  padding: 22px 30px;
  background-color: #333;
  opacity: 0.6;
  font-size: 15px;
  line-height: 25.5px;
  letter-spacing: 0.75px;
}
.l-company-profile-container li.s-line-height {
  padding: 6px 30px;
}
@media screen and (max-width: 840px) {
  .l-company-profile-container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 540px) {
  .l-company-profile-container li {
    padding: 20px 27px;
  }
  .l-company-profile-container li.s-line-height {
    padding: 21px 30px;
  }
}

.p-company-profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .p-company-profile-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.p-company-profile-title {
  width: 20.73%;
  max-width: 170px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-profile-title {
    width: 26.397%;
  }
}
@media screen and (max-width: 540px) {
  .p-company-profile-title {
    width: 100%;
  }
}

.p-company-profile-text.s-line-height {
  line-height: 25px;
}

.p-company-contact {
  margin-top: 200px;
  margin-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-contact {
    margin-top: 225px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-contact {
    margin-top: 156px;
    margin-bottom: 100px;
  }
}

.l-company-contact-inner {
  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;
}

.p-company-contact-h3 {
  position: relative;
}

.p-company-contact-h3-en {
  color: #7e7e7e;
  font-family: "Lato", sans-serif;
  font-size: 86px;
  line-height: 86px;
  letter-spacing: 4.3px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-contact-h3-en {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 3.2px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-contact-h3-en {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: 2.7px;
  }
}

.p-company-contact-h3-jp {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-contact-h3-jp {
    bottom: -12px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-contact-h3-jp {
    bottom: -11px;
  }
}

.p-company-contact-text {
  margin-top: 154px;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-contact-text {
    margin-top: 52px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-contact-text {
    margin-top: 82px;
  }
}

.p-company-contact-btn {
  margin-top: 100px;
  padding: 22px 105px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-company-contact-btn {
    margin-top: 81px;
    padding: 23px 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-company-contact-btn {
    margin-top: 79px;
    padding: 14px 41px;
  }
}

.l-company-contact-img {
  position: absolute;
  top: -230px;
  left: 1%;
  width: 28.645%;
  z-index: -1;
}
.l-company-contact-img img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-company-contact-img {
    left: -3%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-company-contact-img {
    width: 31.928%;
    top: -198px;
    left: -7%;
  }
}
@media screen and (max-width: 540px) {
  .l-company-contact-img {
    width: 53.066%;
    top: -104px;
    left: -26%;
  }
}

.p-contact-form {
  margin-top: 155px;
  margin-bottom: 195px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-contact-form {
    margin-top: 120px;
    margin-bottom: 205px;
  }
}
@media screen and (max-width: 540px) {
  .p-contact-form {
    margin-top: 80px;
    margin-bottom: 149px;
  }
}

.l-contact-form-container {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-contact-form-container {
    max-width: 634px;
  }
}
@media screen and (max-width: 540px) {
  .l-contact-form-container {
    max-width: 327px;
  }
}

.l-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 37px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-form-group {
    margin-bottom: 31px;
  }
}
@media screen and (max-width: 540px) {
  .l-form-group {
    margin-bottom: 29px;
  }
}

.l-form-label-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-form-label-wrapper label {
  color: #fff;
  font-size: 18px;
  line-height: 32.4px;
  white-space: nowrap;
}
.l-form-label-wrapper span {
  padding: 1px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 21.6px;
  background: -webkit-gradient(linear, left bottom, left top, from(#2A84C3), to(#004687));
  background: linear-gradient(0deg, #2A84C3 0%, #004687 100%);
}
.l-form-label-wrapper span.p-optional-text {
  background: #8B8B8B;
}
@media screen and (max-width: 540px) {
  .l-form-label-wrapper label {
    font-size: 14px;
    line-height: 25.2px;
  }
}

.p-form-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.p-form-checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.p-form-checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #2A84C3;
}
.p-form-checkbox-item span {
  line-height: 1;
}
.p-form-checkbox-item.is-other {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.p-form-checkbox-item.is-other .p-form-checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.p-form-checkbox-item.is-other textarea {
  width: 100%;
  margin-top: 5px;
}
.wpcf7-form-control {
  font-size: 16px;
}
.wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 540px) {
  .wpcf7-form-control {
    font-size: 14px;
  }
}

.p-form-group-privacy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-form-group-privacy .p-privacy-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #fff;
}
.p-form-group-privacy .p-privacy-inner input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #2a84c3;
}
.p-form-group-privacy .p-privacy-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #3D84B5;
  text-underline-offset: 4px;
}
.p-form-group-privacy .p-privacy-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 540px) {
  .p-form-group-privacy .p-privacy-inner {
    -webkit-box-align: first baseline;
        -ms-flex-align: first baseline;
            align-items: first baseline;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea,
input[list] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 19px 17px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea,
  input[list] {
    margin-top: 6px;
  }
}
@media screen and (max-width: 540px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea,
  input[list] {
    margin-top: 8px;
  }
}

textarea {
  resize: vertical;
}

.p-form-submit {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-form-submit button {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .p-form-submit {
    margin-top: 35px;
  }
}

.p-error-message {
  color: #dc3545;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  border: 1px solid #dc3545;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: none;
  font-weight: bold;
}

.is-error {
  border-color: #dc3545 !important;
  -webkit-box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

body.body-recruit {
  position: relative;
  z-index: 0;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body.body-recruit.is-open {
  overflow: hidden;
}

.accent {
  color: #FF2C55;
}
.accent.prpl {
  padding-right: 10px;
  padding-left: 10px;
}

.p-mv-recruit {
  margin-top: 100px;
  background-color: #0D0D0D;
}
@media screen and (max-width: 840px) {
  .p-mv-recruit {
    margin-top: 70px;
  }
}

.l-mv-recruit-inner {
  padding-left: 18.75%;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mv-recruit-inner {
    padding-left: 3.334%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-recruit-inner {
    padding-left: 10.9375%;
    padding-right: 10.9375%;
  }
}
@media screen and (max-width: 540px) {
  .l-mv-recruit-inner {
    padding-left: 5.333%;
    padding-right: 5.333%;
  }
}

.l-mv-recruit-container {
  position: relative;
  padding-top: 224.4px;
  padding-bottom: 213px;
  width: 46.346%;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mv-recruit-container {
    padding-top: 187px;
    padding-bottom: 183px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-recruit-container {
    padding-top: 100px;
    padding-bottom: 98px;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-mv-recruit-container {
    padding-top: 70px;
    padding-bottom: 87px;
    width: 100%;
  }
}

.p-mv-recruit-head-jp {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 54.4px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 540px) {
  .p-mv-recruit-head-jp {
    font-size: 26px;
    line-height: 44.2px;
    letter-spacing: 1.3px;
  }
}

.p-mv-recruit-head-en {
  margin-top: 22.4px;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 120px; /* 150% */
  letter-spacing: 4px;
  /* グラデーションの色を設定 */
  background: -webkit-gradient(linear, left top, right top, from(#F5F5F5), to(#A5A5A5));
  background: linear-gradient(90deg, #F5F5F5 0%, #A5A5A5 100%);
  /* 背景を文字の形に切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 元の文字の色を透明にする */
  color: transparent;
  display: inline-block;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-recruit-head-en {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-recruit-head-en {
    font-size: 58px;
    line-height: 87px;
    letter-spacing: 2.9px;
  }
}

@media screen and (max-width: 540px) {
  .l-mv-recruit-pc-img1 {
    margin-top: 21px;
  }
}

.p-mv-recruit-text {
  margin-top: 88px;
  color: #fff;
  line-height: 45px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .p-mv-recruit-text {
    margin-top: 76px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-recruit-text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-recruit-text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.8px;
  }
}

.l-mv-recruit-pc-img2 {
  position: absolute;
  top: 80px;
  right: -99%;
  width: 102.2%;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-mv-recruit-pc-img2 {
    right: -97%;
  }
}

.p-recruit-worries {
  position: relative;
  padding-top: 150px;
  z-index: 2;
}

.l-recruit-worries-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .l-recruit-worries-inner {
    gap: 79px;
  }
}

.p-worries-head {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-worries-head {
    font-size: 35px;
    line-height: 52.5px;
    letter-spacing: 1.75px;
  }
}
@media screen and (max-width: 540px) {
  .p-worries-head {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 1.4px;
  }
}

.l-worries-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 81.06%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-worries-img-container {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-worries-img-container {
    width: 126.822%;
  }
}

.l-worries-img {
  width: 60%;
}
.l-worries-img:nth-child(n+2) {
  margin-top: -40px;
}
.l-worries-img:nth-child(odd) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.l-worries-img:nth-child(even) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-worries-img {
    width: 70%;
  }
  .l-worries-img:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .l-worries-img {
    width: 83.793%;
  }
  .l-worries-img:nth-child(n+2) {
    margin-top: 40px;
  }
}

.p-recruit-solution {
  position: relative;
  margin-top: -151px;
  padding-top: 300px;
  background-color: #222;
  z-index: 1;
}
.p-recruit-solution::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 220px 50vw 0 50vw;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}
.p-recruit-solution::after {
  content: "";
  position: absolute;
  bottom: -198px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 50vw 0 50vw;
  border-color: #222 transparent transparent transparent;
  z-index: 2;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution {
    margin-top: -2px;
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .p-recruit-solution::before {
    border-width: 62px 50vw 0 50vw;
  }
  .p-recruit-solution::after {
    bottom: -62px;
    border-width: 62px 50vw 0 50vw;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution {
    margin-top: 56px;
    padding-top: 121px;
    padding-bottom: 103px;
  }
  .p-recruit-solution::before {
    border-width: 65px 50vw 0 50vw;
  }
  .p-recruit-solution::after {
    bottom: -62px;
    border-width: 62px 48vw 0 48vw;
  }
}

.l-solution-inner {
  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;
}

.p-recruit-solution-text1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 76.8px;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution-text1 {
    font-size: 36px;
    line-height: 57.6px;
    letter-spacing: 1.8px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution-text1 {
    font-size: 32px;
    line-height: 51.2px;
    letter-spacing: 1.6px;
  }
}

.p-recruit-solution-text2 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 89.6px;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution-text2 {
    font-size: 32px;
    line-height: 51.2px;
    letter-spacing: 1.6px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution-text2 {
    font-size: 32px;
    line-height: 51.2px;
    letter-spacing: 1.6px;
    text-align: center;
  }
}

.p-recruit-solution-text3 {
  margin-top: 32.6px;
  font-size: 48px;
  line-height: 81.6px;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution-text3 {
    font-size: 30px;
    line-height: 51px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution-text3 {
    font-size: 23px;
    line-height: 40.8px;
    letter-spacing: 1.2px;
  }
}

.p-recruit-solution-text4 {
  margin-top: -4px;
  color: #fff;
  font-size: 32px;
  line-height: 54.4px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution-text4 {
    font-size: 28px;
    line-height: 47.6px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution-text4 {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1px;
  }
}

.p-recruit-solution-text5 {
  color: #fff;
  font-size: 32px;
  line-height: 54.4px;
  letter-spacing: 1.6px;
}
.p-recruit-solution-text5 span {
  font-size: 40px;
  line-height: 68px;
  letter-spacing: 2px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-solution-text5 {
    font-size: 28px;
    line-height: 47.6px;
    letter-spacing: 1.4px;
    text-align: center;
  }
  .p-recruit-solution-text5 span {
    font-size: 36px;
    line-height: 61.2px;
    letter-spacing: 1.8px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-solution-text5 {
    font-size: 24px;
    line-height: 40.8px;
    letter-spacing: 1.2px;
    text-align: center;
  }
  .p-recruit-solution-text5 span {
    font-size: 28px;
    line-height: 47.6px;
    letter-spacing: 1.4px;
  }
}

.p-features {
  position: relative;
  padding-top: 250px;
  padding-bottom: 150px;
  background-color: #BEBEBE;
  z-index: 0;
}
@media screen and (max-width: 840px) {
  .p-features {
    padding-top: 115px;
    padding-bottom: 162px;
  }
}

.l-features-inner {
  position: relative;
}

.l-features-cards {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 78px;
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-features-cards {
    margin-top: 88px;
    gap: 46px;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media screen and (max-width: 540px) {
  .l-features-cards {
    margin-top: 88px;
    gap: 81px;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.l-feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .l-feature-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 38.4px;
  }
}

.p-feature-card-num {
  width: 83.53px;
  font-family: "Lato", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 100.8px;
  /* グラデーションの色を設定 */
  background: linear-gradient(140deg, #231815 0%, #A8A8A8 100%);
  /* 背景を文字の形に切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 元の文字の色を透明にする */
  color: transparent;
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .p-feature-card-num {
    display: none;
  }
}

.p-vertical-line {
  width: 1px;
  background-color: #0D0D0D;
}

.l-feature-card-content {
  width: 36.924%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-feature-card-content {
    width: 100%;
    padding-left: 7.386%;
    padding-right: 7.386%;
  }
}
@media screen and (max-width: 540px) {
  .l-feature-card-content {
    width: 100%;
    padding-left: 2.332%;
    padding-right: 2.332%;
  }
}

.p-feature-card-title-container {
  position: relative;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-feature-card-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14.7px;
  }
}
@media screen and (max-width: 540px) {
  .p-feature-card-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.7px;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-feature-card-num2 {
    font-family: "Lato", sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 58.8px;
    /* グラデーションの色を設定 */
    background: linear-gradient(140deg, #231815 0%, #A8A8A8 100%);
    /* 背景を文字の形に切り抜く */
    -webkit-background-clip: text;
    background-clip: text;
    /* 元の文字の色を透明にする */
    color: transparent;
  }
}
@media screen and (max-width: 540px) {
  .p-feature-card-num2 {
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 50.4px;
    /* グラデーションの色を設定 */
    background: linear-gradient(140deg, #231815 0%, #A8A8A8 100%);
    /* 背景を文字の形に切り抜く */
    -webkit-background-clip: text;
    background-clip: text;
    /* 元の文字の色を透明にする */
    color: transparent;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-feature-card-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-feature-card-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 1.2px;
  }
}

@media screen and (max-width: 840px) {
  .l-feature-card-img1 {
    margin-top: 30px;
    width: 100%;
  }
  .l-feature-card-img1 img {
    width: 100%;
    height: auto;
  }
}

.p-feature-card-text {
  margin-top: 17px;
  font-size: 16px;
  line-height: 35.2px;
  letter-spacing: 0.8px;
}

.l-feature-card-img2 {
  width: 488px;
}

.l-features-bg-img {
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 1264px;
  height: 601px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-features-bg-img {
    width: 100%;
    height: 365px;
  }
}
@media screen and (max-width: 540px) {
  .l-features-bg-img {
    width: 100%;
    height: 178px;
  }
}

.p-reason {
  background-color: #F3F3F3;
  padding-bottom: 150px;
}
@media screen and (max-width: 540px) {
  .p-reason {
    padding-bottom: 65px;
  }
}

.l-reason-inner {
  position: relative;
}
@media screen and (max-width: 840px) {
  .l-reason-inner {
    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;
  }
}

.p-reason-head {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 0;
  letter-spacing: 4px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 1;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-reason-head {
    margin-top: 85px;
    font-size: 72px;
    line-height: 86.4px;
    letter-spacing: 3.6px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 540px) {
  .p-reason-head {
    margin-top: 60px;
    font-size: 72px;
    line-height: 86.4px;
    letter-spacing: 3.6px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.p-reason-h2 {
  position: relative;
  margin-top: 109px;
  z-index: 2;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 840px) {
  .p-reason-h2 {
    margin-top: -13px;
    font-size: 28px;
    line-height: 33.6px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-reason-h2 {
    margin-top: -29px;
    text-align: center;
  }
}

.l-reason-cards {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .l-reason-cards {
    margin-top: 47px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 46px;
    padding-left: 7.386%;
    padding-right: 7.386%;
  }
}
@media screen and (max-width: 540px) {
  .l-reason-cards {
    margin-top: 40px;
    gap: 44px;
    padding-left: 2.332%;
    padding-right: 2.332%;
  }
}

.l-reason-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}

.l-reason-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.l-reason-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.l-reason-card-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-reason-card-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.67px;
}

.p-reason-card-point-text {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.p-reason-card-point-num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 18px;
}

.p-reason-card-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;
}
@media screen and (max-width: 840px) {
  .p-reason-card-title {
    margin-top: 19px;
  }
}

.p-reason-card-text {
  margin-top: 22px;
  color: #231816;
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 840px) {
  .p-reason-card-text {
    margin-top: 20px;
  }
}

.p-faq {
  padding-top: 130px;
  padding-bottom: 150px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-faq {
    padding-top: 28px;
    padding-bottom: 105px;
  }
}
@media screen and (max-width: 540px) {
  .p-faq {
    padding-top: 62px;
    padding-bottom: 132px;
  }
}

.l-accordion-container {
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  width: 71.212%;
}
@media screen and (max-width: 840px) {
  .l-accordion-container {
    margin-top: 66px;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-accordion-container {
    margin-top: 37px;
  }
}

.p-accordion-item {
  width: 100%;
  overflow: hidden;
}
.p-accordion-item:nth-child(n+2) {
  margin-top: 20px;
}
.p-accordion-item summary {
  list-style: none;
  cursor: pointer;
  outline: none;
}
.p-accordion-item summary::marker, .p-accordion-item summary::-webkit-details-marker {
  display: none;
}
.p-accordion-item[open] .accordion-icon {
  border-color: #333;
}
.p-accordion-item[open] .accordion-icon::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-accordion-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 20px;
  background-color: #EFEFEF;
}

.p-label {
  padding: 3px 4px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.9px;
}
.p-label.-q {
  background-color: #333;
}
.p-label.-a {
  background-color: #AEAEAE;
}

.p-faq-text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
}

.accordion-icon {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion-icon::before {
  width: 18px;
  height: 2px;
}
.accordion-icon::after {
  width: 2px;
  height: 18px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-accordion-content {
  background-color: #fff;
}

.p-answer-wrapper {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}

.p-flow {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../img/recruit/recruit-21.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-flow {
    padding-top: 81px;
    padding-bottom: 82px;
  }
}
@media screen and (max-width: 540px) {
  .p-flow {
    padding-top: 62px;
    padding-bottom: 60px;
  }
}

.l-flow-cards {
  margin-top: 83px;
  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: 40px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-flow-cards {
    margin-top: 77px;
    gap: 29px;
  }
}
@media screen and (max-width: 540px) {
  .l-flow-cards {
    margin-top: 35px;
    gap: 29px;
  }
}

.l-flow-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  padding: 25px 55px;
  background-color: #F6F6F6;
  width: 79.545%;
  max-width: 1150px;
}
@media screen and (max-width: 840px) {
  .l-flow-card {
    gap: 30px;
    padding: 20px 30px;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-flow-card {
    gap: 30px;
    padding: 20px 40px;
  }
}

.l-flow-card-img1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  width: 150px;
  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;
}
.l-flow-card-img1 img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-flow-card-img1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    width: 120px;
  }
}
@media screen and (max-width: 540px) {
  .l-flow-card-img1 {
    display: none;
  }
}

.l-flow-card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-flow-h3 {
  display: inline-block;
  margin-top: 20px;
  padding: 0px 20px;
  background-color: #0D0D0D;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 1px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-flow-h3 {
    margin-top: 11px;
  }
}
@media screen and (max-width: 540px) {
  .p-flow-h3 {
    margin-top: 1px;
    font-size: 18px;
    line-height: 30.6px;
    letter-spacing: 0.9px;
  }
}

.p-flow-card-text {
  position: relative;
  margin-top: 20px;
  color: #0D0D0D;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  z-index: 2;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-flow-card-text {
    margin-top: 14px;
  }
}
@media screen and (max-width: 540px) {
  .p-flow-card-text {
    margin-top: 15px;
    font-size: 15px;
    line-height: 22.5px;
    letter-spacing: 0.75px;
  }
}

.l-flow-card-img2 {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 1;
}

.p-recruit-contact {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #F3F3F3;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-contact {
    padding-top: 60px;
    padding-bottom: 59px;
  }
}

.l-contact-content {
  margin-top: 42px;
  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: 47px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-contact-content {
    margin-top: 68px;
    gap: 61px;
  }
}
@media screen and (max-width: 540px) {
  .l-contact-content {
    margin-top: 37px;
    gap: 47px;
  }
}

.p-recruit-contact-text {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.75px;
}

body.body-recruit {
  position: relative;
  z-index: 0;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body.body-recruit.is-open {
  overflow: hidden;
}

.c-recruitment-h3 {
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-recruitment-h3 {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .c-recruitment-h3 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1.2px;
  }
}

.p-recruitment {
  padding-top: 185px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruitment {
    padding-top: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruitment {
    padding-top: 80px;
  }
}

.l-recruitment-inner {
  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;
}

.l-recruitment-type-list {
  padding-top: 80px;
  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: 97px;
  width: 100%;
  max-width: 1210px;
}
@media screen and (max-width: 540px) {
  .l-recruitment-type-list {
    padding-top: 71px;
  }
}

.p-recruitment-type {
  width: 100%;
  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: 100px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruitment-type {
    gap: 50px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruitment-type {
    gap: 38px;
  }
}

.l-recruitment-type-item {
  padding-top: 61px;
  padding-bottom: 61px;
  width: 100%;
  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: 40px;
  border: 1px solid #7e7e7e;
  background-color: #333;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-recruitment-type-item {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 540px) {
  .l-recruitment-type-item {
    padding-right: 21px;
    padding-left: 21px;
  }
}

.p-recruitment-type-name {
  padding: 24px 0px;
  color: #333;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 1.6px;
  background-color: #EEE;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruitment-type-name {
    padding: 20px 0px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruitment-type-name {
    padding: 16px 0px;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}

.p-recruitment-type-text {
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.75px;
}

.p-recruitment-type-img {
  width: 100%;
  max-width: 1100px;
}

.p-recruit-process {
  padding-top: 165px;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .p-recruit-process {
    padding-top: 152px;
  }
}

.l-recruit-process-inner {
  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;
}

.l-process-items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 42px;
}
@media screen and (max-width: 840px) {
  .l-process-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 540px) {
  .l-process-items {
    margin-top: 70px;
  }
}

.l-process-item {
  position: relative;
  padding: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  background: linear-gradient(261deg, #2a84c3 0%, #004687 100%);
}
.l-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 24px;
  height: 24px;
  border-right: 2px solid #2a84c3;
  border-bottom: 2px solid #2a84c3;
  pointer-events: none;
}
@media screen and (max-width: 840px) {
  .l-process-item:not(:last-child)::after {
    top: 100%;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
  }
}

.p-process-item-text {
  padding-top: 14px;
  padding-bottom: 16px;
  color: #fff;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.75px;
}

.l-recruit-process-img {
  position: absolute;
  top: -440px;
  right: -5.208%;
  width: 29.61%;
  z-index: -1;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-recruit-process-img {
    top: -435px;
    right: -5.208%;
    width: 37.916%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-recruit-process-img {
    top: -150px;
    right: -7%;
    width: 32.552%;
  }
}
@media screen and (max-width: 540px) {
  .l-recruit-process-img {
    top: -150px;
    right: -22%;
    width: 53.066%;
  }
}

.p-recruit-faq {
  padding-top: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit-faq {
    padding-top: 175px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-faq {
    padding-top: 155px;
  }
}

.l-recruit-faq-inner {
  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;
}

.l-accordion-container.recruit {
  margin-top: 80px;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 540px) {
  .l-accordion-container.recruit {
    margin-top: 68px;
  }
}

.p-accordion-item.recruit:nth-child(n+2) {
  margin-top: 24px;
}
.p-accordion-item.recruit[open] .accordion-icon {
  border-color: #BEBEBE;
}
.p-accordion-item.recruit[open] .accordion-icon::before {
  margin-top: 10px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-accordion-header.recruit {
  background: #7e7e7e;
}
@media screen and (max-width: 540px) {
  .p-accordion-header.recruit {
    padding: 12px 50px 12px 12px;
  }
}

.p-label.recruit {
  padding: 0;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.8px;
  background-color: transparent;
}
.p-label.recruit.-q {
  color: #004687;
}
.p-label.recruit.-a {
  color: #3d3d3d;
}

.p-faq-text.recruit {
  color: #fff;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 0.75px;
}

.accordion-icon.recruit {
  width: 18px;
  height: 18px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion-icon.recruit::before, .accordion-icon.recruit::after {
  background-color: transparent;
}
.accordion-icon.recruit::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 5px solid #BEBEBE;
  border-bottom: 5px solid #BEBEBE;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}
.accordion-icon.recruit::after {
  display: none;
}

.p-accordion-content.recruit {
  background-color: #939393;
}

.p-answer-wrapper.recruit {
  padding: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-recruit2-contact {
  padding-top: 250px;
  padding-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit2-contact {
    padding-top: 230px;
    padding-bottom: 102px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit2-contact {
    padding-top: 194px;
    padding-bottom: 100px;
  }
}

.l-recruit2-contact-inner {
  position: relative;
}

.l-recruit2-contact-title {
  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;
}

.p-recruit2-contact-title-en {
  color: #7e7e7e;
  font-family: "Lato", sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: 4.3px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-recruit2-contact-title-en {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 3.2px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit2-contact-title-en {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: 2.7px;
  }
}

.p-recruit2-contact-title-jp {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 840px) {
  .p-recruit2-contact-title-jp {
    bottom: -14px;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit2-contact-title-jp {
    bottom: -12px;
  }
}

.l-recruit2-contact-container {
  margin-top: 154px;
  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: 100px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-recruit2-contact-container {
    margin-top: 52px;
    gap: 73px;
  }
}
@media screen and (max-width: 540px) {
  .l-recruit2-contact-container {
    margin-top: 85px;
    gap: 63px;
  }
}

.p-recruit2-contact-btn {
  padding: 13px 41px;
}

.l-recruit-contact-img {
  position: absolute;
  top: -227px;
  left: 1.1458%;
  width: 28.645%;
  z-index: -1;
}
.l-recruit-contact-img img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-recruit-contact-img {
    width: 38.194%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-recruit-contact-img {
    top: -200px;
    left: -7%;
    width: 32.552%;
  }
}
@media screen and (max-width: 540px) {
  .l-recruit-contact-img {
    top: -141px;
    left: -25%;
    width: 53.066%;
  }
}

body.body-recruit {
  position: relative;
  z-index: 0;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body.body-recruit.is-open {
  overflow: hidden;
}

.p-service2 {
  padding-top: 150px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-service2 {
    padding-top: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-service2 {
    padding-top: 161px;
  }
}

.l-service2-inner {
  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: 5px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-service2-inner {
    gap: 100px;
  }
}
@media screen and (max-width: 540px) {
  .l-service2-inner {
    gap: 160px;
  }
}

.l-service-block {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: 629px;
}
@media screen and (max-width: 840px) {
  .l-service-block {
    height: auto;
  }
}

.l-service2-img {
  position: absolute;
  top: 0;
  width: 89.423%;
  z-index: -1;
}
.l-service2-img.tik {
  right: -180px;
}
@media screen and (max-width: 840px) {
  .l-service2-img {
    position: relative;
    width: 100%;
  }
  .l-service2-img.tik {
    right: 0;
  }
}

.l-service2-text-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  width: 48%;
}
.l-service2-text-container.buzz {
  right: 0;
}
@media screen and (max-width: 840px) {
  .l-service2-text-container {
    position: relative;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
  }
}

.p-service2-title {
  margin-top: 59px;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 2.4px;
  /* グラデーションの色を設定（右から左へ） */
  background: -webkit-gradient(linear, right top, left top, from(#004687), to(#2a84c3));
  background: linear-gradient(to left, #004687, #2a84c3);
  /* 背景を文字の形に切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 元の文字の色を透明にする */
  color: transparent;
}
@media screen and (max-width: 840px) {
  .p-service2-title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-service2-title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 1.6px;
  }
}

.p-service2-head {
  margin-top: 40px;
  color: #fff;
  font-size: 24px;
  line-height: 40.8px;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 840px) {
  .p-service2-head {
    margin-top: 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-service2-head {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1px;
  }
}

.p-service2-text {
  margin-top: 32px;
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 840px) {
  .p-service2-text {
    margin-top: 20px;
  }
}

.p-service2-btn {
  margin-top: 72px;
}
@media screen and (max-width: 840px) {
  .p-service2-btn {
    margin-top: 46px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-service-contact {
  padding-top: 112px;
  padding-bottom: 190px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-service-contact {
    padding-top: 252px;
    padding-bottom: 103px;
  }
}
@media screen and (max-width: 540px) {
  .p-service-contact {
    padding-top: 242px;
    padding-bottom: 103px;
  }
}

@media screen and (max-width: 540px) {
  .p-service-contact-text {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.75px;
  }
}

@media screen and (max-width: 540px) {
  .p-service-contact-btn {
    padding: 13px 41px;
  }
}

.p-toku-text {
  font-size: 72px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 3.6px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-toku-text {
    font-size: 40px;
  }
}
@media screen and (max-width: 540px) {
  .p-toku-text {
    font-size: 29px;
  }
}

.p-tokushoho {
  padding-top: 150px;
  padding-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-tokushoho {
    padding-top: 100px;
    padding-bottom: 170px;
  }
}
@media screen and (max-width: 540px) {
  .p-tokushoho {
    padding-top: 80px;
    padding-bottom: 150px;
  }
}

.l-tokushoho-inner {
  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: 40px;
  width: 57.29%;
  max-width: 1100px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-tokushoho-inner {
    width: 77.4647%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-tokushoho-inner {
    max-width: none;
    width: 91.666%;
  }
}
@media screen and (max-width: 540px) {
  .l-tokushoho-inner {
    max-width: none;
    width: 82.933%;
  }
}

.p-tokushoho-text-first {
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 540px) {
  .p-tokushoho-text-first {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.75px;
  }
}

.l-tokushoho-container li:nth-child(n+2) {
  margin-top: 40px;
}

.p-tokushoho-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 540px) {
  .p-tokushoho-title {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.p-tokushoho-text {
  margin-top: 16px;
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.75px;
}
.p-tokushoho-text a {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 4px;
}
.p-tokushoho-text a:hover {
  color: #2a84c3;
  text-decoration-color: #2a84c3;
}
@media screen and (max-width: 540px) {
  .p-tokushoho-text {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.75px;
  }
}

.p-privacy-policy {
  padding-top: 150px;
  padding-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-privacy-policy {
    padding-top: 100px;
    padding-bottom: 170px;
  }
}
@media screen and (max-width: 540px) {
  .p-privacy-policy {
    padding-top: 80px;
    padding-bottom: 150px;
  }
}

.l-privacy-policy-inner {
  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: 40px;
  width: 57.29%;
  max-width: 1100px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-privacy-policy-inner {
    width: 77.4647%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-privacy-policy-inner {
    max-width: none;
    width: 91.666%;
  }
}
@media screen and (max-width: 540px) {
  .l-privacy-policy-inner {
    max-width: none;
    width: 82.933%;
  }
}

.p-privacy-policy-text-first {
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 540px) {
  .p-privacy-policy-text-first {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.75px;
  }
}

.l-privacy-policy-container li:nth-child(n+2) {
  margin-top: 40px;
}

.p-privacy-policy-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 540px) {
  .p-privacy-policy-title {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.p-privacy-policy-text {
  margin-top: 16px;
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 540px) {
  .p-privacy-policy-text {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.75px;
  }
}

.p-thanks {
  padding-top: 250px;
  padding-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-thanks {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-thanks {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.l-thanks-inner {
  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;
}

.p-thanks-head {
  text-align: center;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 840px) {
  .p-thanks-head {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 1.2px;
  }
}

.p-thanks-text {
  margin-top: 80px;
  text-align: center;
  font-size: 15px;
  font-weight: 505;
  line-height: 180%;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 540px) {
  .p-thanks-text {
    text-align: left;
  }
}

.p-thanks-btn {
  margin-top: 100px;
}

.l-thanks-img {
  position: absolute;
  top: -230px;
  left: 7%;
  width: 28.437%;
  z-index: -1;
}
.l-thanks-img img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-thanks-img {
    top: -86px;
    left: -3%;
    width: 41.666%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-thanks-img {
    margin-top: 70px;
    position: relative;
    top: 0;
    left: 0;
    width: 56.818%;
  }
}
@media screen and (max-width: 540px) {
  .l-thanks-img {
    margin-top: 70px;
    position: relative;
    top: 0;
    left: 0;
    width: 68.513%;
  }
}

.p-404 {
  padding-top: 250px;
  padding-bottom: 200px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-404 {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 540px) {
  .p-404 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.l-404-inner {
  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;
}

.p-404-head {
  text-align: center;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 840px) {
  .p-404-head {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 1.2px;
  }
}

.p-404-text {
  margin-top: 80px;
  text-align: center;
  font-size: 15px;
  font-weight: 505;
  line-height: 180%;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 540px) {
  .p-404-text {
    text-align: left;
  }
}

.p-404-btn {
  margin-top: 100px;
}

.l-404-img {
  position: absolute;
  top: -230px;
  left: 7%;
  width: 28.437%;
  z-index: -1;
}
.l-404-img img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-404-img {
    top: -86px;
    left: -3%;
    width: 41.666%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-404-img {
    margin-top: 70px;
    position: relative;
    top: 0;
    left: 0;
    width: 56.818%;
  }
}
@media screen and (max-width: 540px) {
  .l-404-img {
    margin-top: 70px;
    position: relative;
    top: 0;
    left: 0;
    width: 68.513%;
  }
}

/* -------------------------------------- */
/* ヘッダー全体  */
/* -------------------------------------- */
.header {
  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;
  background-color: transparent;
  color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  padding: 3.5px 0px;
  z-index: 100;
}
.header.page-recruit {
  color: #231816;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .header.page-recruit {
    padding: 7px 0px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .header.page-recruit {
    padding: 7px 20px;
  }
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .header {
    padding: 7px 40px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .header {
    padding: 7px 32px;
  }
}
@media screen and (max-width: 540px) {
  .header {
    padding: 7px 24px;
  }
}

/* -------------------------------------- */
/* ナビゲーションメニュー  */
/* -------------------------------------- */
.nav {
  position: static;
  width: auto;
  height: auto;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* --- スマホ表示 (tab) --- */
}
.nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav .nav-item a {
  display: block;
  padding: 5px 0px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}
.nav .nav-item.page-recruit a {
  color: #231816;
}
@media screen and (max-width: 840px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 330px;
    padding-top: 70px;
    padding-bottom: 170px;
    background-color: rgb(0, 0, 0);
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 150;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-out;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  }
  .nav.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav .nav-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: 50px;
    padding: 60px 32px;
  }
  .nav .nav-item {
    display: block;
  }
  .nav .nav-item.page-recruit a {
    color: #fff;
  }
  .nav .nav-item a {
    padding: 0;
    background-color: rgb(0, 0, 0);
  }
}

/* -------------------------------------- */
/* ハンバーガーメニューアイコン */
/* -------------------------------------- */
.hamburger {
  display: none;
}
@media screen and (max-width: 840px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 23px;
    height: 43px;
    background: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 200;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .hamburger .line {
    width: 23px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .hamburger .line.page-recruit {
    background-color: #231816;
  }
  .hamburger:hover .line {
    background-color: #2a84c3;
  }
  .hamburger.is-active:hover .line {
    background-color: #fff;
  }
  .hamburger.is-active .line--top {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-active .line--middle {
    opacity: 0;
  }
  .hamburger.is-active .line--bottom {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.ani-line {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.ani-line::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ani-line:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.ani-line.page-recruit::before {
  height: 2px;
  background-color: #0D0D0D;
}

.footer {
  padding-top: 80px;
  padding-bottom: 42px;
  background-color: #333;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .footer {
    padding-top: 77px;
  }
}

.l-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.l-footer-container {
  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: 840px) {
  .l-footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 72px;
  }
}

@media screen and (max-width: 840px) {
  .f-logo {
    width: 55px;
    height: auto;
  }
}

/* フッター用ナビゲーション */
.f-nav .f-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  list-style: none;
}
@media screen and (max-width: 540px) {
  .f-nav .f-nav-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: 18px;
  }
}
.f-nav .f-nav-item a {
  color: #fff;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 5px 0;
}

.copyright {
  margin-top: 55px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .copyright {
    margin-top: 78px;
  }
}
@media screen and (max-width: 540px) {
  .copyright {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1501px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (min-width: 541px) and (max-width: 840px) {
  .tab-hidden {
    display: none;
  }
}

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

@media screen and (min-width: 1501px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .sp-visible {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .pc-lg-hidden {
    display: none;
  }
}

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

.u-mt40 {
  margin-top: 40px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-fz26 {
  font-size: 26px;
}

.u-fz24 {
  font-size: 24px;
}

.u-fz15 {
  font-size: 15px;
}