@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gloock&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  background-color: #faf8f2;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.31s;
  -ms-transition: 0.3s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

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

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

picture {
  display: block;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

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

layout/_header.scss

***************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
}
header .inner {
  width: 100vw;
  padding: 20px 30px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  header .inner {
    padding: 15px 20px;
  }
}

.logo-h {
  max-width: 101px;
  width: 100%;
  height: auto;
  margin-top: 2px;
  transition: all 0.3s linear;
}
.logo-h.is-small {
  max-width: 70px;
}
@media screen and (max-width: 834px) {
  .logo-h {
    max-width: 90px;
  }
}
@media screen and (max-width: 450px) {
  .logo-h {
    max-width: 70px;
  }
  .logo-h.is-small {
    max-width: 50px;
  }
}

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

layout/_footer.scss

***************************/
.footer {
  position: relative;
  margin-top: 12rem;
}
@media screen and (max-width: 834px) {
  .footer {
    margin-top: 5rem;
  }
}
.footer .footer-swiper {
  position: relative;
}
.footer .footer-swiper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.footer .footer-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.footer-cont {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 580px) {
  .footer-cont .f80 {
    font-size: 13vw;
  }
}
.footer-hg {
  margin-bottom: 6rem;
}
@media screen and (max-width: 450px) {
  .footer-hg {
    margin-bottom: 4rem;
  }
}
.footer-hg p {
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .footer-hg p {
    margin-top: 2rem;
  }
}

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

layout/_page-title.scss

***************************/
.c-ttl01 {
  position: relative;
  padding-left: 1em;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .c-ttl01 {
    font-size: 1.6rem;
  }
}
.c-ttl01::before {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  left: 0;
  width: 0.5rem;
  border: 3px solid #9fb8c2;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.c-hg {
  text-align: center;
}
.c-hg h2 {
  text-align: center;
  letter-spacing: 4px;
}
@media screen and (max-width: 450px) {
  .c-hg h2 {
    letter-spacing: 2px;
  }
}
.c-hg h2.tal {
  text-align-last: left;
}
.c-hg_txt {
  margin: 3rem auto 0;
  width: fit-content;
  padding: 1.2rem 2.6rem;
  color: #b8b19d;
  font-weight: 500;
  font-size: 2.1rem;
  background-color: #fff;
  border: 1px solid #e2ded5;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .c-hg_txt {
    font-size: 4.7vw;
  }
}
.c-hg_txt.tal {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 500px) {
  .c-hg_txt {
    padding: 1rem 2rem;
    font-size: 4vw;
  }
}
.c-hg_txt span {
  font-weight: normal;
}
.c-hg.bg-img {
  display: block;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 40vh;
}
@media screen and (max-width: 834px) {
  .c-hg.bg-img {
    height: auto;
    padding: 10rem 0;
  }
}
.c-hg.bg-img .c-hg_txt {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

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

object/component/_box.scss

***************************/
.inner {
  width: 90%;
  margin: 0 auto;
}
.inner.-l {
  max-width: 1510px;
  width: 91%;
}
.inner.-s {
  max-width: 1100px;
}
.inner.-ss {
  max-width: 704px;
}
@media screen and (max-width: 704px) {
  .inner.-ss {
    width: 100%;
  }
}

.block-min500 {
  display: none;
}
@media screen and (max-width: 500px) {
  .block-min500 {
    display: inline;
  }
}

.none-min500 {
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .none-min500 {
    display: none;
  }
}

.rudius-100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

@media screen and (max-width: 834px) {
  .scroll-box {
    width: 150%;
  }
}

.bg-square {
  background-color: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f4f4f4 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f4f4f4 calc(100% - 1px));
  background-size: 14px 14px;
  background-repeat: repeat;
  background-position: center center;
}

/* fadeシリーズ */
/*----------------------------
fade_up ｜下から上へ出現
----------------------------*/
.fade_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fade_up.on {
  transform: translateY(0);
  opacity: 1;
}

@keyframes fade-up-anime {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------------
fade_down ｜上から下へ出現
----------------------------*/
.fade_down {
  transition: 0.8s ease-in-out;
  transform: translateY(-30px);
  opacity: 0;
}

.fade_down.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
fade_left ｜左から出現
----------------------------*/
.fade_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
fade_right ｜右から出現
----------------------------*/
.fade_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

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

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.location-logo .fadeUp {
  animation-duration: 1s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp.fadeUp50 {
  animation-name: fadeUpAnime50;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime50 {
  from {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  display: block;
  width: fit-content;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.c-btn_txt {
  overflow: hidden;
  position: relative;
}
.c-btn_df {
  position: relative;
  transform: translateZ(0);
  transform-origin: 50% 0;
  white-space: nowrap;
}
.c-btn_hv {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, 100%, 0);
  transform-origin: 50% 100%;
  transition-delay: 0s;
  white-space: nowrap;
}
.c-btn:hover {
  opacity: 1;
  color: #fff;
}
.c-btn:hover.is-hoverd .c-text_pivot .c-btn_df {
  transform: translate3d(0, -110%, 0);
  transition: 0.3s ease-out;
  transition-delay: 0s;
}
.c-btn:hover.is-hoverd .c-text_pivot .c-btn_hv {
  transform: translateZ(0);
  transition: 0.3s ease-out;
  transition-delay: 0.04s;
}

.entry-btn {
  position: fixed;
  bottom: 3rem;
  right: 1.5rem;
  z-index: 3;
  width: 180px;
  aspect-ratio: 1/1;
  padding-top: 2rem;
  background-color: #e8bbd6;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .entry-btn {
    font-size: 6vw;
  }
}
@media screen and (max-width: 834px) {
  .entry-btn {
    width: 150px;
    font-size: 2.2rem;
    bottom: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .entry-btn {
    width: 100px;
    padding-top: 1rem;
    font-size: 1.8rem;
  }
}
.entry-btn_ico {
  display: block;
  width: 42px;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 834px) {
  .entry-btn_ico {
    width: 30px;
  }
}
@media screen and (max-width: 450px) {
  .entry-btn_ico {
    width: 22px;
    margin-bottom: 5px;
  }
}
.entry-btn .c-btn_txt {
  margin: 0 auto;
  width: fit-content;
}
.entry-btn_txt {
  width: fit-content;
  margin: 1rem auto 0;
  padding: 4px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #9bb7bb;
  background-color: #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .entry-btn_txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 450px) {
  .entry-btn_txt {
    margin-top: 5px;
    padding: 3px 5px;
    font-size: 8px;
  }
}

.line-btn {
  max-width: 548px;
  width: 100%;
  margin: 3rem auto 0;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
  color: #222;
  background-color: #fff;
}
@media screen and (max-width: 580px) {
  .line-btn {
    max-width: 400px;
    padding: 2rem 1rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .line-btn {
    margin-top: 2rem;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
}
.line-btn .ico {
  width: 72px;
}
@media screen and (max-width: 580px) {
  .line-btn .ico {
    width: 40px;
  }
}
.line-btn:hover {
  color: #000;
}

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

object/object/project/_mv.scss

***************************/
.recruit-mv {
  position: relative;
  margin: 9rem 0 120px;
}
@media screen and (max-width: 834px) {
  .recruit-mv {
    margin-bottom: 28vw;
  }
}
@media screen and (max-width: 450px) {
  .recruit-mv {
    margin-top: 6rem;
  }
}
.recruit-mv_main-wrap {
  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;
}
.recruit-mv_main-img {
  overflow: hidden;
  width: 50%;
}
.recruit-mv_main-img img {
  animation: mv-anime 1s linear forwards;
}
@media screen and (max-width: 834px) {
  .recruit-mv_main-img:first-of-type {
    width: calc(50% - 1.2px);
  }
  .recruit-mv_main-img:last-of-type {
    width: calc(50% + 1.2px);
  }
}
@media screen and (max-width: 613px) {
  .recruit-mv_main-img:first-of-type {
    width: calc(50% - 1px);
  }
  .recruit-mv_main-img:last-of-type {
    width: calc(50% + 1px);
  }
}
@media screen and (max-width: 488px) {
  .recruit-mv_main-img:first-of-type {
    width: calc(50% - 0.8px);
  }
  .recruit-mv_main-img:last-of-type {
    width: calc(50% + 0.8px);
  }
}
@media screen and (max-width: 367px) {
  .recruit-mv_main-img:first-of-type {
    width: calc(50% - 0.6px);
  }
  .recruit-mv_main-img:last-of-type {
    width: calc(50% + 0.6px);
  }
}
.recruit-mv_sub-img {
  position: absolute;
  left: 2.2%;
  bottom: -134px;
  max-width: 250px;
}
@media screen and (max-width: 1100px) {
  .recruit-mv_sub-img {
    bottom: -10vw;
    width: 20vw;
  }
}
@media screen and (max-width: 834px) {
  .recruit-mv_sub-img {
    bottom: -27.8vw;
    right: auto;
    left: 47%;
    transform: translateX(-50%);
    width: 30vw;
  }
}
.recruit-mv_hg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100vw;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .recruit-mv_hg {
    top: 71%;
  }
}
@media screen and (max-width: 834px) {
  .recruit-mv_hg {
    top: 64%;
  }
  .recruit-mv_hg .f32 {
    font-size: 3.84vw;
  }
}
.recruit-mv_hg-ttl {
  text-align: center;
}
.recruit-mv_hg-ttl .en-inter {
  letter-spacing: 1px;
}
.recruit-mv_hg-ttl .en-gloock {
  letter-spacing: 3px;
}
.recruit-mv_hg-ttl span {
  display: block;
}
.recruit-mv_hg-txt {
  margin: 10px auto 30px;
  width: fit-content;
  padding: 0 2rem;
  line-height: 5rem;
  background-color: rgba(178, 186, 190, 0.7);
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .recruit-mv_hg-txt {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 834px) {
  .recruit-mv_hg-txt {
    margin: 1.2vw auto 3.6vw;
    padding: 0 2.5vw;
    line-height: 6vw;
    font-size: 2.52vw;
  }
}

@keyframes mv-anime {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/***************************

object/object/project/_intro.scss

***************************/
.recruit-intro {
  margin-top: 15rem;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .recruit-intro {
    margin-top: calc(28vw + 30px);
  }
}
.recruit-intro_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .recruit-intro_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .recruit-intro_flex .f48 br:last-of-type {
    display: none;
  }
}
.recruit-intro_cont {
  margin-top: 5rem;
  width: 53%;
}
@media screen and (max-width: 1100px) {
  .recruit-intro_cont {
    margin-top: 0;
    width: 100%;
  }
}
.recruit-intro_swiper {
  margin-top: 10rem;
  overflow: visible;
}
@media screen and (max-width: 834px) {
  .recruit-intro_swiper {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-intro_swiper {
    margin-top: 6rem;
  }
}
.recruit-intro_swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.recruit-intro_slide {
  transition: transform 5s linear 2s;
  transform: translateY(0);
}
.recruit-intro_slide:nth-of-type(1) {
  animation: intro-slide-anime 10s infinite;
}
.recruit-intro_slide:nth-of-type(2) {
  animation: intro-slide-anime 10s 2s infinite;
}
.recruit-intro_slide:nth-of-type(3) {
  animation: intro-slide-anime 10s 4s infinite;
}
.recruit-intro_slide:nth-of-type(4) {
  animation: intro-slide-anime 10s 6s infinite;
}
.recruit-intro_slide:nth-of-type(5) {
  animation: intro-slide-anime 10s 8s infinite;
}

@keyframes intro-slide-anime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/***************************

object/object/project/_style.scss

***************************/
.recruit-style {
  margin-top: -6rem;
  padding-top: 28rem;
  background-color: #efece1;
}
@media screen and (max-width: 834px) {
  .recruit-style {
    padding-top: 13rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-style {
    margin-top: -3rem;
    padding-top: 8rem;
  }
}
.recruit-style_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 160px;
}
@media screen and (max-width: 1100px) {
  .recruit-style_flex {
    gap: 9.5vw;
  }
}
@media screen and (max-width: 834px) {
  .recruit-style_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .recruit-style_cont {
    width: 100%;
  }
}
.recruit-style_cont .c-txt:first-of-type {
  margin-top: 4rem;
}
@media screen and (max-width: 395px) {
  .recruit-style_cont .c-txt:first-of-type br {
    display: none;
  }
}
.recruit-style_img-wrap {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .recruit-style_img-wrap {
    margin-top: 2em;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-style_img {
  position: relative;
}
@media screen and (max-width: 834px) {
  .recruit-style_img {
    width: 50%;
  }
}
.recruit-style_img:nth-of-type(1) {
  max-width: 316px;
  width: 19vw;
  left: -8.6vw;
  top: -8.22vw;
}
@media screen and (max-width: 1360px) {
  .recruit-style_img:nth-of-type(1) {
    left: -20px;
  }
}
@media screen and (max-width: 834px) {
  .recruit-style_img:nth-of-type(1) {
    max-width: 55%;
    width: 100%;
    left: auto;
    top: auto;
  }
}
.recruit-style_img:nth-of-type(2) {
  max-width: 240px;
  width: 15vw;
  left: -4vw;
}
@media screen and (max-width: 834px) {
  .recruit-style_img:nth-of-type(2) {
    max-width: 45%;
    width: 100%;
    left: auto;
    margin-top: 20vw;
  }
}
.recruit-style_img:nth-of-type(3) {
  max-width: 200px;
  width: 12vw;
  right: -3vw;
}
@media screen and (max-width: 834px) {
  .recruit-style_img:nth-of-type(3) {
    max-width: 50%;
    width: 100%;
    right: auto;
    margin-top: -18vw;
  }
  .recruit-style_img:nth-of-type(3) img {
    width: 90%;
  }
}
.recruit-style_img:nth-of-type(4) {
  max-width: 200px;
  width: 12vw;
  right: -4.2vw;
  top: -23vw;
}
@media screen and (max-width: 1360px) {
  .recruit-style_img:nth-of-type(4) {
    right: 0;
  }
}
@media screen and (max-width: 834px) {
  .recruit-style_img:nth-of-type(4) {
    max-width: 50%;
    width: 100%;
    top: auto;
    margin-top: 10vw;
  }
}

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

object/object/project/_style.scss

***************************/
.c-system_ttl {
  margin: 0 auto 2rem;
  padding: 0.72em 1.6em;
  width: fit-content;
  background-color: #767676;
  color: #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .c-system_ttl {
    font-size: 1.6rem;
  }
}

.recruit-system .inner {
  position: relative;
  z-index: 2;
}
.recruit-system .inner.-ss {
  padding-bottom: 80vh;
}
@media screen and (max-width: 834px) {
  .recruit-system .inner.-ss {
    padding-bottom: 0;
  }
}
.recruit-system_bg-wrap {
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100lvh;
}
.recruit-system_bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100lvh;
  z-index: -1;
  transition: all 0.1s linear;
  transform: translateX(-50%);
  opacity: 0;
}
.recruit-system_bg.now {
  opacity: 1;
}
.recruit-system_bg img {
  width: 100vw;
  height: 100lvh;
  object-fit: cover;
}
.recruit-system_intro {
  max-width: 560px;
  width: 90%;
  margin: -77vh auto 6rem;
}
@media screen and (max-width: 834px) {
  .recruit-system_intro {
    margin: -90vh auto 4rem;
  }
}
.recruit-system_intro hgroup {
  margin-bottom: 2rem;
}
.recruit-system_intro hgroup .f40 {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_intro hgroup .f40 {
    margin-top: 1rem;
    font-size: 9vw;
  }
}
.recruit-system_art {
  background-color: #fff;
}
.recruit-system_art .inner {
  width: 79%;
}
@media screen and (max-width: 704px) {
  .recruit-system_art .inner {
    width: 90%;
  }
}
.recruit-system_art:not(:first-of-type) {
  padding-top: 9rem;
  border-top: 1px solid #e8e8e8;
}
@media screen and (max-width: 704px) {
  .recruit-system_art:not(:first-of-type) {
    padding-top: 5rem;
  }
}
.recruit-system_art:not(:last-of-type) {
  padding-bottom: 9rem;
}
@media screen and (max-width: 704px) {
  .recruit-system_art:not(:last-of-type) {
    padding-bottom: 5rem;
  }
}
.recruit-system_art:nth-of-type(1) {
  padding-top: 12rem;
  border-radius: 100vmax 100vmax 0 0;
  -webkit-border-radius: 100vmax 100vmax 0 0;
}
@media screen and (max-width: 704px) {
  .recruit-system_art:nth-of-type(1) {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(1) .recruit-system_box {
    margin-top: 40px;
    padding-top: 9rem;
  }
}
.recruit-system_art:nth-of-type(1) .recruit-system_box::before {
  width: 166px;
  aspect-ratio: 166/111;
  top: -32px;
  right: 0;
  background-image: url(../img/recruit/system01-03.webp);
  border: 5px solid #fff;
  box-shadow: 5px 0 18px rgba(0, 0, 0, 0.09);
  transform: rotate(3deg);
  z-index: 2;
}
@media screen and (max-width: 570px) {
  .recruit-system_art:nth-of-type(1) .recruit-system_box::before {
    width: 26vw;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(1) .recruit-system_box::before {
    width: 144px;
    top: -20px;
    right: 20px;
  }
}
.recruit-system_art01-hg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_art01-hg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.recruit-system_art01-hg .recruit-system_box-abtxt {
  max-width: 87px;
}
@media screen and (max-width: 450px) {
  .recruit-system_art01-hg .recruit-system_box-abtxt {
    position: absolute;
    left: 4vw;
    top: -64px;
  }
}
@media screen and (max-width: 550px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box .c-txt:not(:first-of-type) {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box {
    margin-top: 8rem;
  }
}
.recruit-system_art:nth-of-type(2) .recruit-system_box::before {
  width: 85px;
  aspect-ratio: 85/99;
  top: 2.3rem;
  left: 3.4rem;
  background-image: url(../img/recruit/system02-03.webp);
}
@media screen and (max-width: 550px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box::before {
    left: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box::before {
    top: -5rem;
  }
}
.recruit-system_art:nth-of-type(2) .recruit-system_box-abtxt {
  position: absolute;
  max-width: 110px;
  top: 4rem;
  right: 3rem;
}
@media screen and (max-width: 550px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box-abtxt {
    top: -4rem;
    right: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .recruit-system_art:nth-of-type(2) .recruit-system_box-abtxt {
    top: -3rem;
    max-width: 90px;
  }
}
.recruit-system_art02_pic {
  margin: 40px auto 50px;
  max-width: 467px;
  width: 90%;
}
@media screen and (max-width: 709px) {
  .recruit-system_art02_pic {
    margin: 3rem auto;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art02_pic02 {
    text-align: center;
  }
  .recruit-system_art02_pic02 img {
    width: 90%;
  }
}
.recruit-system_art02_hg {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.recruit-system_art:nth-of-type(3) h4 {
  margin-top: -1em;
}
@media screen and (max-width: 770px) {
  .recruit-system_art:nth-of-type(3) h4 {
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(3) h4 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 492px) {
  .recruit-system_art:nth-of-type(3) .marker-bl {
    margin-top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_box {
    margin-top: 5rem;
    padding-top: 4rem;
  }
}
.recruit-system_art:nth-of-type(3) .recruit-system_box::before {
  width: 58px;
  aspect-ratio: 58/102;
  top: 3rem;
  right: 5rem;
  background-image: url(../img/recruit/system03-02.webp);
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_box::before {
    width: 50px;
    top: 2rem;
    right: 1rem;
  }
}
.recruit-system_art:nth-of-type(3) .recruit-system_box-abtxt {
  position: absolute;
  max-width: 107px;
  left: 6.7rem;
  top: 4rem;
}
@media screen and (max-width: 610px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_box-abtxt {
    left: 1rem;
    top: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_box-abtxt {
    top: -2rem;
  }
}
@media screen and (max-width: 390px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_box-abtxt {
    max-width: 90px;
  }
}
.recruit-system_art:nth-of-type(3) .recruit-system_tag {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 630px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_tag {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.recruit-system_art:nth-of-type(3) .recruit-system_tag li {
  width: 38%;
}
@media screen and (max-width: 630px) {
  .recruit-system_art:nth-of-type(3) .recruit-system_tag li {
    width: fit-content;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(4) .recruit-system_box {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
.recruit-system_art:nth-of-type(4) .recruit-system_box-abtxt {
  position: absolute;
  max-width: 100px;
  top: -2rem;
  right: 3rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_art:nth-of-type(4) .recruit-system_box-abtxt {
    max-width: 90px;
    top: -3rem;
    right: 1rem;
  }
}
.recruit-system_art:nth-of-type(4) .recruit-system_tag {
  margin-left: 2rem;
  margin-right: 2rem;
}
.recruit-system_art .recruit-sytem_art04-img_wrap {
  position: relative;
}
.recruit-system_art .recruit-sytem_art04-img {
  position: relative;
}
.recruit-system_art .recruit-sytem_art04-img:nth-of-type(1) {
  max-width: 273px;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 610px) {
  .recruit-system_art .recruit-sytem_art04-img:nth-of-type(1) {
    width: 45vw;
  }
}
.recruit-system_art .recruit-sytem_art04-img:nth-of-type(2) {
  position: absolute;
  max-width: 323px;
  top: 6.4rem;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 610px) {
  .recruit-system_art .recruit-sytem_art04-img:nth-of-type(2) {
    width: 53vw;
    top: 10.5vw;
  }
}
.recruit-system_art .recruit-sytem_art04-img:nth-of-type(3) {
  max-width: 242px;
  top: -5rem;
  left: 2rem;
  z-index: 3;
}
@media screen and (max-width: 610px) {
  .recruit-system_art .recruit-sytem_art04-img:nth-of-type(3) {
    width: 40vw;
    top: -8.2vw;
    left: 3.3vw;
  }
}
.recruit-system_hg {
  margin-bottom: 5rem;
}
@media screen and (max-width: 704px) {
  .recruit-system_hg {
    margin-bottom: 3rem;
  }
}
.recruit-system_hg h3 {
  margin: 2rem 0;
}
@media screen and (max-width: 450px) {
  .recruit-system_hg h3 {
    margin: 1rem 0;
  }
}
.recruit-system_box {
  position: relative;
  padding: 40px 40px 50px;
  background-color: #f4f2ed;
}
@media screen and (max-width: 450px) {
  .recruit-system_box {
    padding: 20px;
  }
  .recruit-system_box .f24 {
    font-size: 5.4vw;
  }
  .recruit-system_box .f40 {
    font-size: 8vw;
  }
}
.recruit-system_box hgroup {
  margin-bottom: 20px;
}
.recruit-system_box::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
.recruit-system_box-flex {
  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;
  gap: 30px;
}
@media screen and (max-width: 450px) {
  .recruit-system_box-flex {
    gap: 15px;
  }
}
.recruit-system_box-flex_img {
  max-width: 135px;
}
.recruit-system_box-flex_img img {
  border-radius: 100vmax 100vmax 0 0;
  -webkit-border-radius: 100vmax 100vmax 0 0;
}
.recruit-system_box-cont {
  max-width: 287px;
}
@media screen and (max-width: 520px) {
  .recruit-system_box-cont .f21 {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_box-cont .f21 {
    font-size: 4vw;
  }
}
.recruit-system_box-cont .c-txt {
  margin-top: 1rem !important;
}
.recruit-system_tag {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em 1.125em;
  color: #8ab3c2;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_tag {
    font-size: 1.5rem;
  }
}
.recruit-system_benefits {
  position: relative;
  margin-top: calc(89px + 8rem);
  padding-bottom: 12rem;
  z-index: 2;
  background-color: #e6eef0;
}
@media screen and (max-width: 834px) {
  .recruit-system_benefits {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits {
    margin-top: 30vw;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits .c-txt {
    line-height: 1.5;
  }
}
.recruit-system_benefits .c-txt br {
  display: none;
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits .c-txt br {
    display: block;
  }
}
.recruit-system_benefits::before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1406/177;
  top: -88px;
  left: 0;
  background: url(../img/recruit/system-benefits_bg.webp) no-repeat center center/cover;
  z-index: 1;
}
@media screen and (max-width: 795px) {
  .recruit-system_benefits::before {
    top: -11.1vw;
  }
}
@media screen and (max-width: 704px) {
  .recruit-system_benefits::before {
    top: -12.3vw;
  }
}
@media screen and (max-width: 640px) {
  .recruit-system_benefits::before {
    top: calc(-12.3vw + 1px);
  }
}
.recruit-system_benefits-hg {
  position: relative;
  margin: -2rem 0 1.5rem;
}
.recruit-system_benefits-hg::before {
  position: absolute;
  content: "";
  width: 87px;
  aspect-ratio: 87/83;
  bottom: -2px;
  left: -1rem;
  background: url(../img/recruit/system-benefits01.webp) no-repeat top left/cover;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .recruit-system_benefits-hg::before {
    top: -4rem;
    bottom: auto;
  }
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits-hg::before {
    top: -5rem;
  }
}
.recruit-system_benefits-hg p {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits-hg p {
    margin-bottom: 2rem;
  }
}
.recruit-system_benefits-hg p img {
  max-width: 138px;
}
.recruit-system_benefits-list {
  margin: 3.5rem 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
  }
}
@media screen and (max-width: 426px) {
  .recruit-system_benefits-list br {
    display: none;
  }
}
.recruit-system_benefits-ttl {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 508px) {
  .recruit-system_benefits-ttl {
    font-size: 3.4vw;
    line-height: 1.3;
    gap: 5px;
  }
}
@media screen and (max-width: 426px) {
  .recruit-system_benefits-ttl {
    font-size: 1.4rem;
  }
}
.recruit-system_benefits-check {
  display: inline-block;
  max-width: 28px;
}
@media screen and (max-width: 450px) {
  .recruit-system_benefits-check {
    max-width: 24px;
  }
}

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

object/object/project/_education.scss

***************************/
.recruit-education {
  padding: 15rem 0 10rem;
  background-color: #efece1;
}
@media screen and (max-width: 834px) {
  .recruit-education {
    padding: 5rem 0;
  }
}
.recruit-education .c-ttl01 {
  margin-top: 8rem;
}
@media screen and (max-width: 450px) {
  .recruit-education .c-ttl01 {
    margin-top: 5rem;
  }
}
.recruit-education .c-hg_txt {
  position: relative;
}
.recruit-education .c-hg_txt::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  top: 50%;
  right: calc(5em + 2.6rem + 0.3em);
  background-color: #bfb1a0;
}
@media screen and (max-width: 500px) {
  .recruit-education .c-hg_txt::before {
    width: 15px;
    right: calc(5em + 2rem + 0.3em);
  }
}
@media screen and (max-width: 609px) {
  .recruit-education .f40 {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 418px) {
  .recruit-education .f40 {
    font-size: 6vw;
  }
}
.recruit-education_flex {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 418px) {
  .recruit-education_flex .c-txt br {
    display: none;
  }
}
.recruit-education_flex.-last {
  margin-top: 9rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 834px) {
  .recruit-education_flex.-last {
    margin-top: 5rem;
    gap: 1rem;
  }
}
.recruit-education_flex.-last .c-ttl01 {
  margin-top: 0;
}
.recruit-education_ttl {
  width: 535px;
}
@media screen and (max-width: 1100px) {
  .recruit-education_ttl {
    width: 100%;
  }
}
.recruit-education_ttl .marker-bl,
.recruit-education_ttl .marker-pink {
  margin-right: 5px;
}
.recruit-education_ttl .marker-bl {
  margin-top: 1.5rem;
}
@media screen and (max-width: 450px) {
  .recruit-education_ttl .marker-bl {
    margin-top: 1rem;
  }
}
.recruit-education_cont {
  width: calc(100% - 580px);
}
@media screen and (max-width: 1100px) {
  .recruit-education_cont {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_cont .c-txt:not(:first-of-type) {
    margin-top: 1rem;
  }
}
.recruit-education_box {
  position: relative;
  margin-top: 9.5rem;
  background-color: #faf8f2;
}
@media screen and (max-width: 834px) {
  .recruit-education_box {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_box {
    margin-top: 12rem;
  }
}
.recruit-education_box::before, .recruit-education_box::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
.recruit-education_box::before {
  width: 63px;
  aspect-ratio: 63/240;
  top: -5.7rem;
  left: 21rem;
  background-image: url(../img/recruit/education01-01.webp);
}
@media screen and (max-width: 1100px) {
  .recruit-education_box::before {
    left: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .recruit-education_box::before {
    top: -10rem;
  }
}
@media screen and (max-width: 600px) {
  .recruit-education_box::before {
    width: 44px;
    top: -8rem;
    left: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_box::before {
    top: -10rem;
    left: 20vw;
  }
}
.recruit-education_box::after {
  width: 96px;
  aspect-ratio: 96/201;
  top: -2rem;
  right: 20rem;
  background-image: url(../img/recruit/education01-02.webp);
}
@media screen and (max-width: 1100px) {
  .recruit-education_box::after {
    right: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .recruit-education_box::after {
    top: -6rem;
  }
}
@media screen and (max-width: 600px) {
  .recruit-education_box::after {
    width: 70px;
    right: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_box::after {
    top: -8rem;
    right: 5.8rem;
  }
}
.recruit-education_box-inner {
  position: relative;
  margin: 0 auto;
  padding: 7rem 0 6rem;
  max-width: 967px;
  width: 90%;
}
@media screen and (max-width: 834px) {
  .recruit-education_box-inner {
    padding: 7rem 0 3rem;
  }
}
.recruit-education_box h4 img {
  width: 199px;
}
@media screen and (max-width: 558px) {
  .recruit-education_box h5 {
    line-height: 1.5;
  }
}
.recruit-education_box h5 br {
  display: none;
}
@media screen and (max-width: 558px) {
  .recruit-education_box h5 br {
    display: block;
  }
}
.recruit-education_box-abtxt {
  position: absolute;
  max-width: 111px;
  top: 8rem;
  right: 3rem;
}
@media screen and (max-width: 1100px) {
  .recruit-education_box-abtxt {
    right: -6rem;
  }
}
@media screen and (max-width: 834px) {
  .recruit-education_box-abtxt {
    max-width: 100px;
    top: 6rem;
    right: -3rem;
  }
}
@media screen and (max-width: 600px) {
  .recruit-education_box-abtxt {
    max-width: 80px;
    top: 8rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_box-abtxt {
    top: 3rem;
    right: -2rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education .scroll-box {
    width: 800px;
  }
}
.recruit-education_list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-areas: "item01 item02" "item03 item03";
}
@media screen and (max-width: 834px) {
  .recruit-education_list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
    grid-template-areas: "item01" "item02" "item03";
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_list {
    margin-top: 4rem;
    grid-row-gap: 1rem;
  }
  .recruit-education_list .f21 {
    font-size: 1.6rem;
  }
  .recruit-education_list .txt-underline {
    text-underline-offset: 7px;
  }
}
@media screen and (max-width: 417px) {
  .recruit-education_list.f14 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 393px) {
  .recruit-education_list.f14 {
    font-size: 1.2rem;
  }
}
.recruit-education_list-item {
  padding: 3rem 5rem;
  background-color: #ede9dc;
}
@media screen and (max-width: 834px) {
  .recruit-education_list-item {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_list-item {
    padding: 1.5rem 2rem;
  }
}
.recruit-education_list-item:nth-of-type(1) {
  grid-area: item01;
  background-color: #f2efe5;
}
.recruit-education_list-item:nth-child(2) {
  grid-area: item02;
}
.recruit-education_list-item:nth-child(2) .recruit-education_dtl-list {
  grid-template-columns: 0.8fr 1fr 0.7fr;
}
@media screen and (max-width: 450px) {
  .recruit-education_list-item:nth-child(2) .recruit-education_dtl-list {
    grid-template-columns: 0.6fr 0.4fr;
  }
}
.recruit-education_list-item:nth-child(3) {
  grid-area: item03;
}
.recruit-education_dtl-list {
  margin-top: 3.6rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
@media screen and (max-width: 450px) {
  .recruit-education_dtl-list {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 424px) {
  .recruit-education_dtl-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 417px) {
  .recruit-education_dtl-list {
    font-size: 1.3rem;
  }
}
.recruit-education_dl-wrap {
  margin-top: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .recruit-education_dl-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 834px) {
  .recruit-education_dl-wrap {
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_dl-wrap {
    margin-top: 2rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .recruit-education_wrap-dl {
    width: calc((100% - 6rem) / 3);
  }
}
@media screen and (max-width: 834px) {
  .recruit-education_wrap-dl {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_wrap-dl {
    width: calc((100% - 1rem) / 2);
  }
}
.recruit-education_wrap-dl:last-of-type {
  width: 22%;
}
@media screen and (max-width: 1100px) {
  .recruit-education_wrap-dl:last-of-type {
    width: fit-content;
  }
}
.recruit-education_wrap-dl dt {
  margin-bottom: 2rem;
}
@media screen and (max-width: 450px) {
  .recruit-education_wrap-dl dt {
    margin-bottom: 1rem;
  }
}
.recruit-education_wrap-dl dd li {
  line-height: 1.5;
}
.recruit-education_dl {
  position: relative;
  margin-top: 5rem;
  padding: 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 834px) {
  .recruit-education_dl {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_dl {
    margin-top: 3rem;
    padding: 2rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 440px) {
  .recruit-education_dl .f24 {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 396px) {
  .recruit-education_dl .f18 {
    font-size: 3.6vw;
  }
  .recruit-education_dl .f24 {
    font-size: 4vw;
  }
  .recruit-education_dl .f24.mt20 {
    margin-top: 2px;
  }
}
.recruit-education_dl::before {
  position: absolute;
  content: "";
  width: 92px;
  aspect-ratio: 92/74;
  top: -14px;
  left: -2rem;
  background: url(../img/recruit/education-dl_abtxt.svg) no-repeat top left/cover;
}
@media screen and (max-width: 834px) {
  .recruit-education_dl::before {
    top: -2.6rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-education_dl::before {
    width: 70px;
  }
}
.recruit-education_dt {
  width: 341px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .recruit-education_dt {
    width: 100%;
  }
}
.recruit-education_dt img {
  max-width: 62px;
}
.recruit-education_dt span {
  display: block;
}
.recruit-education_dd {
  line-height: 2;
  width: calc(100% - 341px - 14rem);
}
@media screen and (max-width: 834px) {
  .recruit-education_dd {
    width: 100%;
  }
}

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

object/object/project/_career.scss

***************************/
.recruit-career {
  padding: 12rem 0 10rem;
}
@media screen and (max-width: 834px) {
  .recruit-career {
    padding: 5rem 0;
  }
}
.recruit-career_flex {
  margin-top: 5rem;
  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;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .recruit-career_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-career_flex-img {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .recruit-career_flex-img {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .recruit-career_scroll picture {
    min-width: 150%;
  }
}
@media screen and (max-width: 450px) {
  .recruit-career_scroll picture {
    min-width: 215%;
  }
}
.recruit-career_cont {
  width: 470px;
}
@media screen and (max-width: 834px) {
  .recruit-career_cont {
    width: 100%;
  }
}
.recruit-career_box {
  margin-top: 5.5rem;
  padding: 40px 60px 45px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .recruit-career_box {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 600px) {
  .recruit-career_box {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 3rem 2rem 1rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-career_box {
    gap: 0;
  }
}
.recruit-career_box br {
  display: none;
}
@media screen and (max-width: 450px) {
  .recruit-career_box br {
    display: block;
  }
  .recruit-career_box .marker-bl {
    margin: 0 auto;
    display: block;
    width: fit-content;
    text-align: center;
    line-height: 1.3;
  }
}
.recruit-career_box-img_wrap {
  position: relative;
  max-width: 283px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .recruit-career_box-img_wrap {
    max-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .recruit-career_box-img_wrap {
    max-width: 100%;
  }
}
.recruit-career_box-cont {
  width: calc(100% - 330px);
}
@media screen and (max-width: 834px) {
  .recruit-career_box-cont {
    width: calc(100% - 230px);
  }
}
@media screen and (max-width: 600px) {
  .recruit-career_box-cont {
    width: 100%;
  }
}
.recruit-career_box-img {
  position: relative;
  z-index: 2;
  max-width: 160px;
}
@media screen and (max-width: 834px) {
  .recruit-career_box-img {
    margin-top: 4rem;
    max-width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .recruit-career_box-img {
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .recruit-career_box-img {
    max-width: 100px;
  }
}
.recruit-career_box-abtxt {
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 1;
  max-width: 158px;
}
@media screen and (max-width: 834px) {
  .recruit-career_box-abtxt {
    max-width: 130px;
  }
}
@media screen and (max-width: 600px) {
  .recruit-career_box-abtxt {
    left: auto;
    right: 11.6rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-career_box-abtxt {
    max-width: 100px;
    right: 7.6rem;
  }
}
.recruit-career_list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .recruit-career_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

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

object/object/project/_about.scss

***************************/
.recruit-about {
  overflow: hidden;
}
.recruit-about .c-hg.bg-img {
  background-image: url(../img/recruit/about-hg_bg.webp);
}
.recruit-about_flex {
  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;
  gap: 30px;
}
.recruit-about_flex:nth-of-type(1) {
  position: relative;
  margin-top: -4rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 834px) {
  .recruit-about_flex:nth-of-type(1) {
    margin-top: 5rem;
  }
}
.recruit-about_flex:nth-of-type(1) .recruit-about_flex-img {
  margin-top: 0;
  width: 50%;
  border-radius: 100vmax 100vmax 0 0;
  -webkit-border-radius: 100vmax 100vmax 0 0;
}
@media screen and (max-width: 834px) {
  .recruit-about_flex:nth-of-type(1) .recruit-about_flex-img {
    position: absolute;
    top: -8vw;
    right: -10%;
    width: 60%;
    opacity: 0.3;
    z-index: -1;
  }
}
@media screen and (max-width: 834px) and (max-width: 571px) {
  .recruit-about_flex:nth-of-type(1) .recruit-about_flex-img {
    top: -20%;
  }
}
.recruit-about_flex:nth-of-type(1) .recruit-about_flex-img img {
  max-width: 434px;
  width: 100%;
}
.recruit-about_flex:nth-of-type(1) .recruit-about_cont {
  width: 510px;
}
@media screen and (max-width: 834px) {
  .recruit-about_flex:nth-of-type(1) .recruit-about_cont {
    width: 100%;
  }
}
@media screen and (max-width: 571px) {
  .recruit-about_flex:nth-of-type(1) .recruit-about_cont .c-txt br:not(:nth-of-type(3)) {
    display: none;
  }
}
.recruit-about_flex:nth-of-type(2) {
  margin-top: 3rem;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .recruit-about_flex:nth-of-type(2) {
    margin-top: 5rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-about_cont span {
  display: block;
}
.recruit-about_box {
  margin-top: 7rem;
  padding: 6rem 7rem;
  background-color: #efece1;
}
@media screen and (max-width: 834px) {
  .recruit-about_box {
    margin-top: 5rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-about_box {
    margin-top: 3rem;
  }
}
.recruit-about_box h4 img {
  max-width: 152px;
}
.recruit-about_box-flex {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 550px) {
  .recruit-about_box-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.recruit-about_box-flex h5 {
  width: fit-content;
}
.recruit-about_box-flex .c-txt {
  width: calc(100% - 260px);
}
@media screen and (max-width: 834px) {
  .recruit-about_box-flex .c-txt {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 550px) {
  .recruit-about_box-flex .c-txt {
    width: 100%;
  }
}
.recruit-about_box-list {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 6rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 834px) {
  .recruit-about_box-list {
    grid-column-gap: 3rem;
  }
}
@media screen and (max-width: 550px) {
  .recruit-about_box-list {
    margin-top: 3rem;
    grid-column-gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-about_box-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruit-about_box-item .en-inter {
  margin: 2.5rem 0 2rem;
}
@media screen and (max-width: 450px) {
  .recruit-about_box-item .en-inter {
    margin: 1rem 0;
  }
}
.recruit-about_ttl {
  position: relative;
  margin: 9rem auto 0;
  width: fit-content;
  text-align: center;
}
.recruit-about_ttl .img {
  position: absolute;
  right: -12rem;
  top: -2.6rem;
  max-width: 99px;
}
@media screen and (max-width: 600px) {
  .recruit-about_ttl .img {
    max-width: 80px;
    top: -6rem;
    right: -5rem;
  }
}
.recruit-about_list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 2.4rem;
  grid-template-areas: "item01 item02 item03" "item04 item02 item06" "item04 item05 item06" "item07 item05 item08";
}
@media screen and (max-width: 1100px) {
  .recruit-about_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .recruit-about_list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item01 item02" "item03 item04" "item05 item06" "item07 item08";
  }
}
@media screen and (max-width: 450px) {
  .recruit-about_list {
    margin-top: 3rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
}
.recruit-about_item {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}
.recruit-about_item:nth-of-type(1) {
  grid-area: item01;
}
@media screen and (max-width: 900px) {
  .recruit-about_item:nth-of-type(1) .fc-blue {
    margin-top: 6vw;
  }
}
@media screen and (max-width: 660px) {
  .recruit-about_item:nth-of-type(1) .fc-blue {
    margin-top: 10vw;
  }
}
.recruit-about_item:nth-of-type(2) {
  grid-area: item02;
}
.recruit-about_item:nth-of-type(2) .recruit-about_list-img {
  max-width: 224px;
  margin: 15px auto 0;
}
.recruit-about_item:nth-of-type(3) {
  grid-area: item03;
}
.recruit-about_item:nth-of-type(3) .img {
  margin-left: 1rem;
  bottom: 1rem;
}
@media screen and (max-width: 450px) {
  .recruit-about_item:nth-of-type(3) .img {
    margin-left: 5px;
    bottom: 5px;
  }
}
.recruit-about_item:nth-of-type(3) img {
  max-width: 34px;
}
@media screen and (max-width: 450px) {
  .recruit-about_item:nth-of-type(3) img {
    max-width: 20px;
  }
}
.recruit-about_item:nth-of-type(4) {
  grid-area: item04;
}
.recruit-about_item:nth-of-type(4) .img {
  margin-right: 1.5rem;
  bottom: 1.2rem;
  max-width: 6rem;
}
@media screen and (max-width: 450px) {
  .recruit-about_item:nth-of-type(4) .img {
    margin-right: 5px;
    bottom: 6px;
    max-width: 4rem;
  }
}
.recruit-about_item:nth-of-type(5) {
  grid-area: item05;
}
.recruit-about_item:nth-of-type(6) {
  grid-area: item06;
}
@media screen and (max-width: 900px) {
  .recruit-about_item:nth-of-type(6) .fc-blue {
    margin-top: 10vw;
  }
}
.recruit-about_item:nth-of-type(7) {
  grid-area: item07;
}
.recruit-about_item:nth-of-type(7) img {
  max-width: 109px;
}
.recruit-about_item:nth-of-type(8) {
  grid-area: item08;
}
.recruit-about_item:nth-of-type(8) .f21 {
  position: relative;
}
.recruit-about_item:nth-of-type(8) .img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 65px;
}
@media screen and (max-width: 1010px) {
  .recruit-about_item:nth-of-type(8) .img {
    top: -4rem;
    transform: translateY(0);
  }
}
@media screen and (max-width: 570px) {
  .recruit-about_item:nth-of-type(8) .img {
    top: -3rem;
    max-width: 40px;
  }
}
.recruit-about_item h5 {
  margin: 0 auto;
  padding: 1rem 1.7rem;
  width: fit-content;
}
.recruit-about_item .img {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 660px) {
  .recruit-about_item .f80 {
    font-size: 10vw;
  }
  .recruit-about_item .f56 {
    font-size: 7vw;
  }
}

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

object/object/project/_staff.scss

***************************/
.recruit-staff {
  margin-top: 14rem;
}
@media screen and (max-width: 834px) {
  .recruit-staff {
    margin-top: 5rem;
  }
}
.recruit-staff .c-hg.bg-img {
  background-image: url(../img/recruit/staff-hg_bg.webp);
}
.recruit-staff_swiper {
  max-width: 1237px;
  margin: -65px auto 0;
}
.recruit-staff_slide {
  width: 25%;
}
@media screen and (max-width: 1126px) {
  .recruit-staff_slide {
    width: 33.3333333333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 848px) {
  .recruit-staff_slide {
    width: 50%;
  }
}
@media screen and (max-width: 571px) {
  .recruit-staff_slide {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .recruit-staff_slide {
    width: 100%;
  }
}
.recruit-staff_slide:nth-of-type(even) {
  margin-top: 3rem;
}
.recruit-staff_slide .marker-bl, .recruit-staff_slide .marker-ocher {
  margin-top: 5px;
}
@media screen and (max-width: 571px) {
  .recruit-staff_slide .marker-bl, .recruit-staff_slide .marker-ocher {
    display: block;
    width: fit-content;
  }
}
.recruit-staff_slide .marker-wht {
  display: block;
  width: fit-content;
}
.recruit-staff_slide p:not(.recruit-staff_slide-abtxt) {
  position: absolute;
  left: 3rem;
}
.recruit-staff_slide p:not(.recruit-staff_slide-abtxt):nth-of-type(2) {
  bottom: 12rem;
}
.recruit-staff_slide p:not(.recruit-staff_slide-abtxt):last-of-type {
  bottom: 5rem;
}
.recruit-staff_slide.first .recruit-staff_slide-abtxt {
  max-width: 159px;
}
.recruit-staff_slide.first .recruit-staff_slide-img {
  max-width: 134px;
  margin-top: -4rem;
  margin-left: 4.8vw;
}
.recruit-staff_slide.second .recruit-staff_slide-abtxt {
  max-width: 183px;
}
.recruit-staff_slide.second .recruit-staff_slide-img {
  max-width: 193px;
  margin-top: -3.8rem;
  margin-left: 2.4vw;
}
.recruit-staff_slide.third .recruit-staff_slide-abtxt {
  max-width: 167px;
}
.recruit-staff_slide.third .recruit-staff_slide-img {
  max-width: 137px;
  margin-top: -7rem;
  margin-left: 6vw;
}
.recruit-staff_slide.fourth .recruit-staff_slide-abtxt {
  max-width: 172px;
}
.recruit-staff_slide.fourth .recruit-staff_slide-img {
  max-width: 206px;
  margin-top: -5rem;
  margin-left: 3vw;
}
.recruit-staff_slide.fifth .recruit-staff_slide-abtxt {
  max-width: 169px;
}
.recruit-staff_slide.fifth .recruit-staff_slide-img {
  max-width: 211px;
  margin-top: -4rem;
  margin-left: 4vw;
}
.recruit-staff_slide.sixth .recruit-staff_slide-abtxt {
  max-width: 180px;
}
.recruit-staff_slide.sixth .recruit-staff_slide-img {
  max-width: 129px;
  margin-top: -4rem;
  margin-left: 4.8vw;
}
@media screen and (max-width: 450px) {
  .recruit-staff_slide-img img {
    max-height: 330px;
  }
}

.cursor {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  transform: scale(0);
  transition: all 0.3s linear;
  width: 125px;
  aspect-ratio: 1/1;
  color: #fff;
  background-color: rgba(118, 118, 118, 0.9);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  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;
}
.cursor.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.modal-open {
  padding: 0;
  border-width: 0;
  background-color: transparent;
  cursor: pointer; /* クリック可能な状態を維持 */
}

.open-btn img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 100;
  z-index: 40;
  background-color: rgba(34, 34, 34, 0.9);
}

.modal-dialog.is-active {
  opacity: 1;
  display: flex;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 40;
}

.modal-content {
  position: relative;
  max-width: 90vw;
}
.modal-content_inner {
  position: relative;
  max-width: 728px;
  width: 100%;
  max-height: 90vh;
  margin: 0 auto;
  padding: 6rem 7rem;
  z-index: 41;
  background-color: #fff;
  overflow-y: auto;
  max-height: 90vh;
}
@media screen and (max-width: 834px) {
  .modal-content_inner {
    padding: 3rem 4rem;
  }
}
@media screen and (max-width: 450px) {
  .modal-content_inner {
    padding: 3rem 2rem;
  }
}

.recruit-staff_modal-flex {
  position: relative;
  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;
  gap: 3rem;
}
@media screen and (max-width: 666px) {
  .recruit-staff_modal-flex .f21 {
    font-size: 1.8rem;
  }
  .recruit-staff_modal-flex .f24 {
    font-size: 2rem;
  }
  .recruit-staff_modal-flex .f32 {
    font-size: 2.8rem;
  }
}
.recruit-staff_modal-flex::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #ddd;
}
@media screen and (max-width: 666px) {
  .recruit-staff_modal-flex::before {
    width: 210px;
  }
}
@media screen and (max-width: 500px) {
  .recruit-staff_modal-flex::before {
    width: 100%;
  }
}
.recruit-staff_modal-cont {
  width: 50%;
}
@media screen and (max-width: 666px) {
  .recruit-staff_modal-cont {
    width: 210px;
  }
}
.recruit-staff_modal-cont .en-gloock {
  margin-bottom: 3rem;
}
@media screen and (max-width: 500px) {
  .recruit-staff_modal-cont .fc-wht {
    margin-top: 93vw;
  }
}
@media screen and (max-width: 450px) {
  .recruit-staff_modal-cont .fc-wht {
    margin-top: 97vw;
  }
}
.recruit-staff_modal-cont .marker-bl:nth-of-type(2),
.recruit-staff_modal-cont .marker-ocher:nth-of-type(2) {
  margin-top: 7px;
}
.recruit-staff_modal-cont .bd-btm {
  margin-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 666px) {
  .recruit-staff_modal-cont .bd-btm {
    margin-top: 3rem;
  }
}
.recruit-staff_modal-cont .bd-btm span {
  display: block;
}
.recruit-staff_modal-cont .en-inter {
  line-height: 1.6;
}
.recruit-staff_modal-img {
  width: 45%;
}
@media screen and (max-width: 666px) {
  .recruit-staff_modal-img {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 500px) {
  .recruit-staff_modal-img {
    position: absolute;
  }
}
@media screen and (max-width: 500px) {
  .recruit-staff_modal-img {
    top: 5rem;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .recruit-staff_modal-img {
    top: 4rem;
  }
}
.recruit-staff_modal-img img {
  border-radius: 100vmax 100vmax 0 0;
  -webkit-border-radius: 100vmax 100vmax 0 0;
}
.recruit-staff_modal-dl {
  margin-top: 4rem;
  padding: 5.6rem 5rem 8.5rem;
  background-color: #faf8f2;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
@media screen and (max-width: 834px) {
  .recruit-staff_modal-dl {
    padding: 3rem;
  }
}
.recruit-staff_modal-dl .ff-robot {
  margin-right: 10px;
}
.recruit-staff_modal-dl .bd-btm {
  padding-bottom: 1rem;
  line-height: 1.3;
  border-bottom: 1px solid #dedede;
}
.recruit-staff_modal-dl .bd-btm:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (max-width: 500px) {
  .recruit-staff_modal-dl .bd-btm:not(:first-of-type) {
    margin-top: 3rem;
  }
}
.recruit-staff_modal-dl .c-txt {
  margin-top: 1rem !important;
}

.batu-btn {
  all: unset;
  position: absolute;
  width: 54px;
  aspect-ratio: 1/1;
  top: -24px;
  right: -10px;
  background-color: #222;
  z-index: 42;
  cursor: pointer;
  text-align: center;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .batu-btn {
    width: 40px;
    top: -10px;
    right: -5px;
  }
}

.swiper-button_wrap {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 571px) {
  .swiper-button_wrap {
    margin-top: 0rem;
  }
}

.swiper-button_next, .swiper-button_prev {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  background: rgba(118, 118, 118, 0.5);
  right: auto;
  top: auto;
  left: auto;
  margin-top: auto;
  display: block;
  color: #fff;
  transition: all 0.3s linear;
}
.swiper-button_next:hover, .swiper-button_prev:hover {
  opacity: 1;
  background: #767676;
}
.swiper-button_next i, .swiper-button_prev i {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

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

object/object/project/_message.scss

***************************/
.recruit-message {
  margin-top: 9rem;
  padding: 14rem 0 9rem;
  background-color: #efece1;
}
@media screen and (max-width: 834px) {
  .recruit-message {
    margin-top: 5rem;
    padding: 5rem 0;
  }
}
.recruit-message_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
.recruit-message_flex:nth-of-type(1) {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recruit-message_flex:nth-of-type(2) {
  margin-top: 5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .recruit-message_flex:nth-of-type(2) {
    margin-top: 3rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recruit-message_ttl {
  width: 672px;
}
@media screen and (max-width: 910px) {
  .recruit-message_ttl .f32 {
    margin-top: 63vw;
  }
}
@media screen and (max-width: 761px) {
  .recruit-message_ttl br {
    display: none;
  }
}
.recruit-message_img {
  width: calc(100% - 770px);
}
@media screen and (max-width: 1100px) {
  .recruit-message_img {
    width: calc(100% - 702px);
  }
}
@media screen and (max-width: 910px) {
  .recruit-message_img {
    position: absolute;
    top: 20rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .recruit-message_img {
    top: 34vw;
  }
}
.recruit-message_cont {
  width: 48%;
}
@media screen and (max-width: 834px) {
  .recruit-message_cont {
    width: 100%;
  }
}
.recruit-message_cont .c-txt:nth-of-type(3) {
  margin: 3rem 0 0 auto;
  display: block;
  width: fit-content;
}
.recruit-message_cont .c-txt:nth-of-type(3) span {
  display: block;
}

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

object/object/project/_requit.scss

***************************/
.recruit-requit {
  margin-top: 16rem;
}
@media screen and (max-width: 834px) {
  .recruit-requit {
    margin-top: 5rem;
  }
}
.recruit-requit_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 610px) {
  .recruit-requit_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.recruit-requit_list {
  width: calc(100% - 290px);
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1100px) {
  .recruit-requit_list {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 834px) {
  .recruit-requit_list {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 610px) {
  .recruit-requit_list {
    width: 100%;
  }
}
.recruit-requit_item {
  padding: 2.2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 9.7rem;
  border-top: 1px solid #ddd;
  line-height: 1.8;
}
@media screen and (max-width: 1100px) {
  .recruit-requit_item {
    gap: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .recruit-requit_item {
    padding: 2rem 1rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
}
.recruit-requit_item .ff-yugo {
  width: 8rem;
}
@media screen and (max-width: 450px) {
  .recruit-requit_item .ff-yugo {
    width: 7.5rem;
  }
}
.recruit-requit_item p {
  width: calc(100% - 17.7rem);
}
@media screen and (max-width: 1100px) {
  .recruit-requit_item p {
    width: calc(100% - 11rem);
  }
}
@media screen and (max-width: 450px) {
  .recruit-requit_item p {
    width: 100%;
  }
}

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

object/object/project/_flow.scss

***************************/
.recruit-flow {
  margin-top: 13rem;
}
@media screen and (max-width: 834px) {
  .recruit-flow {
    margin-top: 5rem;
  }
}
.recruit-flow_list {
  margin-top: 4rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 5%;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .recruit-flow_list {
    grid-column-gap: 3%;
  }
}
@media screen and (max-width: 834px) {
  .recruit-flow_list {
    min-width: 1100px;
  }
}
@media screen and (max-width: 450px) {
  .recruit-flow_list {
    min-width: 250%;
  }
}
.recruit-flow_list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  top: 28%;
  left: 0;
  z-index: -1;
  background-color: #eee;
}
@media screen and (max-width: 1100px) {
  .recruit-flow_list::before {
    top: 8vw;
  }
}
@media screen and (max-width: 834px) {
  .recruit-flow_list::before {
    top: 28%;
  }
}
@media screen and (max-width: 450px) {
  .recruit-flow_list::before {
    width: 80%;
    top: 25%;
    left: 10%;
  }
}
.recruit-flow_item {
  position: relative;
}
.recruit-flow_item .f18 {
  margin: 2rem 0 1.5rem;
}
.recruit-flow_item .c-txt {
  margin-top: 0 !important;
}
.recruit-flow_fig {
  width: 100%;
  aspect-ratio: 1/1;
  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;
  background-color: #bfd3db;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .recruit-flow_fig {
    width: 80%;
    margin: 0 auto;
  }
}
.recruit-flow_fig img {
  width: 50%;
}
@media screen and (max-width: 450px) {
  .recruit-flow_fig img {
    width: 40%;
  }
}
.recruit-flow_abtxt {
  position: absolute;
  content: "";
  width: 98px;
  padding: 9px;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: #777;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .recruit-flow_abtxt {
    font-size: 1.5rem;
  }
}
.recruit-flow_abtxt::before {
  position: absolute;
  content: "";
  width: 13px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #777;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

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

object/utility/_background.scss

***************************/
.bg-lightocher {
  background-color: #f2efe5;
}

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

object/utility/_link.scss

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

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.6rem;
  }
}
.c-txt:not(:first-of-type) {
  margin-top: 2em;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.7vw;
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.fc-wht {
  color: #fff;
}

.fc-gray {
  color: #999;
}

.fc-blue {
  color: #8ab3c2;
}

.marker-bl {
  display: inline-block;
  padding: 5px;
  background-color: #cedee4;
}

.marker-wht {
  display: inline-block;
  padding: 3px 10px;
  background-color: #fff;
}

.marker-pink {
  display: inline-block;
  padding: 5px;
  background-color: #e2d6c7;
}

.marker-ocher {
  display: inline-block;
  padding: 5px;
  background-color: #cec8b6;
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.bd-blue {
  padding: 5px 16px;
  border: 1px solid #b0c8d1;
}

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

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 834px) {
  .mt20 {
    margin-top: 1rem;
  }
  .mt30,
  .mt40 {
    margin-top: 2rem;
  }
  .mt45,
  .mt50 {
    margin-top: 3rem;
  }
}
.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mr0 {
  margin-right: 0px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

.mr65 {
  margin-right: 65px;
}

.mr70 {
  margin-right: 70px;
}

.mr75 {
  margin-right: 75px;
}

.mr80 {
  margin-right: 80px;
}

.mr85 {
  margin-right: 85px;
}

.mr90 {
  margin-right: 90px;
}

.mr95 {
  margin-right: 95px;
}

.mr100 {
  margin-right: 100px;
}

.ml0 {
  margin-left: 0px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.ml65 {
  margin-left: 65px;
}

.ml70 {
  margin-left: 70px;
}

.ml75 {
  margin-left: 75px;
}

.ml80 {
  margin-left: 80px;
}

.ml85 {
  margin-left: 85px;
}

.ml90 {
  margin-left: 90px;
}

.ml95 {
  margin-left: 95px;
}

.ml100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

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

object/utility/_font.scss

***************************/
.en-inter {
  font-family: "Inter", sans-serif;
}

.en-gloock {
  font-family: "Gloock", serif;
}

.ff-yugo {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}