@charset "UTF-8";
/* animation
----------------------------------------- */
.inview {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.inview.is-anim {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* button
----------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  line-height: 1.15; /* 1 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  font-family: inherit; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible; /* 1 */
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none; /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 2.6666666667vw!important;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: inherit;
  margin: 0;
  font-family: "noto-sans-cjk-jp-regular", sans-serif;
}
*::before,
* ::after {
  box-sizing: inherit;
  margin: 0;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  -webkit-font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
  color: #333333;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  font-family: "noto-sans-cjk-jp-regular", sans-serif;
          font-kerning: normal;
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

h1 {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

img,
iframe,
video {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

ol li,
ul li {
  list-style: none;
}

a {
  -webkit-transition: 0.5s;
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: 0;
}

*:focus-visible {
  outline: none;
}

.wrap {
  overflow-x: hidden;
}

/* header-logo
----------------------------------------- */



/* container
----------------------------------------- */
.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* footer
----------------------------------------- */
.l-footer {
  width: 100%;
  height: 34.4rem;
  background-image: url(../images/common/footer_img_sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* hamburger
----------------------------------------- */
.l-hamburger__toggle {
  -webkit-transition: all 0.5s ease;
  display: block;
  z-index: 3;
  width: 4.6rem;
  height: 3.9rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap span:nth-of-type(1) {
  -webkit-transform: translateY(0.9rem) rotate(-45deg);
          transform: translateY(0.9rem) rotate(-45deg);
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap span:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap span:nth-of-type(3) {
  -webkit-transform: translateY(-0.9rem) rotate(45deg);
          transform: translateY(-0.9rem) rotate(45deg);
}
.l-hamburger__toggle:hover {
  opacity: 1;
}

.l-hamburger__toggleWrap {
  -webkit-transition: all 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span {
  -webkit-transition: all 0.5s ease;
  display: inline-block;
  position: absolute;
  width: 2.6rem;
  height: 0.1rem;
  background-color: #000;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span:nth-of-type(1) {
  top: 0;
  left: 0;
}
.l-hamburger__toggleWrap span:nth-of-type(2) {
  -webkit-transition: all 0.5s ease;
  top: 0.9rem;
  left: 0;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span:nth-of-type(3) {
  bottom: 0;
  left: 0;
}

/* header
----------------------------------------- */
.l-header {
  z-index: 2;
  width: 100%;
  height: 6.4rem;
  background-image: url(../images/common/header_img_sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* menu
----------------------------------------- */
.l-menu {
  -webkit-transition: all 0.5s ease;
  display: block;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 6.1rem 2rem 7rem;
  overflow-y: scroll;
  background-color: #fff;
  opacity: 0;
  transition: all 0.5s ease;
}
.l-menu.is-active {
  -webkit-animation-duration: 0.5s;
  visibility: visible;
  z-index: 2;
          animation-duration: 0.5s;
  opacity: 1;
}

.l-menu__item:not(:last-child) {
  margin: 0 0 4.2rem 0;
}

/* section
----------------------------------------- */
.l-section__title {
  position: relative;
  padding: 0 0 1.9rem;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0em;
  text-align: center;
}
.l-section__title::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4rem;
  height: 0.4rem;
          transform: translate(-50%, 0%);
  background-color: #000000;
  content: "";
}

.l-section__bg {
  position: relative;
}

.l-section__bgImg {
  position: relative;
  overflow: hidden;
}
.l-section__bgImg::before {
  display: block;
  padding-top: 29.87%;
  content: "";
}
.l-section__bgImg img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.l-section__bgImg::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  content: "";
  opacity: 0.6;
}

.l-section__bgText {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
 　　transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  font-size: 5.5rem;
  line-height: 2.5090909091;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0em;
  text-align: center;
}

/* recruit-about
----------------------------------------- */
.p-recruit-about {
  margin: 5.8rem 0 0;
}
.p-recruit-about .l-section__title {
  margin: 2.2rem 0 3.5rem;
}
.p-recruit-about__block:not(:last-child) {
  margin: 0 0 4rem;
}

.p-recruit-about__img {
  position: relative;
  margin: 0 0 1.8rem;
  overflow: hidden;
}
.p-recruit-about__img::before {
  display: block;
  padding-top: 74.93%;
  content: "";
}
.p-recruit-about__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-about__blockTitle {
  position: relative;
  padding: 0 0 0 2rem;
  color: #6187c4;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}
.p-recruit-about__blockTitle::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 0.1rem;
  margin: 0 calc(50% - 50vw);
  background-color: #6187c4;
  content: "";
}

.p-recruit-about__blockText {
  margin: 1.4rem 0 0;
  padding: 0 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0em;
}

/* recruit-application
----------------------------------------- */
.p-recruit-application {
  margin: 0 0 2.3rem;
  padding: 5rem 0 2rem;
  background-color: rgba(232, 236, 239, 0.3);
}
.p-recruit-application .l-container {
  padding: 0 1.6rem;
}

.p-recruit-application__title {
  position: relative;
  width: 34.3rem;
  margin: 0 auto 1.3rem;
  padding: 0.6rem 0 0.8rem;
  background-color: #000000;
  color: #fff;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.3333333333;
  font-family: "noto-sans-cjk-jp-medium", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}
.p-recruit-application__title::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, 0%);
  border-width: 1.3rem 0.75rem 0 0.75rem;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
  content: "";
}

.p-recruit-application__text {
  margin: 4rem 0 3.7rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0em;
}

.p-recruit-application__message {
  margin: 0 0 5rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}

.p-recruit-application__banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0.5rem 0.6rem rgba(0, 0, 0, 0.16);
}
.p-recruit-application__banner::before {
  display: block;
  padding-top: 55.81%;
  content: "";
}
.p-recruit-application__banner img {
  -o-object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: contain;
  font-family: "object-fit: cover;";
}

.p-recruit-application__bannerLink {
  display: block;
}

/* recruit-feature
----------------------------------------- */
.p-recruit-feature {
  position: relative;
  padding: 5.4rem 0;
}
.p-recruit-feature::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translate(-50%, 0%);
  background-color: #e8ecef;
  content: "";
  opacity: 0.3;
}

.l-container {
  position: relative;
  padding: 0 2rem;
}

.p-recruit-feature__inner {
  margin: 4rem 0 0;
}

.p-recruit-feature__block {
  padding: 1.8rem 2rem 2.4rem;
  background-color: #fff;
}
.p-recruit-feature__block:not(:last-child) {
  margin: 0 0 2rem;
}

.p-recruit-feature__img {
  position: relative;
  margin: 0 0 1.8rem;
  overflow: hidden;
}
.p-recruit-feature__img::before {
  display: block;
  padding-top: 66.89%;
  content: "";
}
.p-recruit-feature__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-feature__blockTitle {
  position: relative;
  padding: 0 0 1.8rem;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}
.p-recruit-feature__blockTitle::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% + 4rem);
  height: 0.1rem;
          transform: translate(-50%, 0%);
  background-image: -webkit-linear-gradient(left, #767676, #767676 0.5rem, transparent 0.5rem, transparent 8px);
  background-image: linear-gradient(to right, #767676, #767676 0.5rem, transparent 0.5rem, transparent 8px);
  background-position: left bottom;
  background-size: 0.8rem 0.1rem;
  background-repeat: repeat-x;
  content: "";
}

.p-recruit-feature__blockText {
  margin: 1.4rem 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0em;
}
.p-recruit-feature__blockText .-red {
  color: #e60012;
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}

/* recruit-guideline
----------------------------------------- */
.p-recruit-guideline {
  padding: 4rem 0 2.5rem;
}
.p-recruit-guideline .l-container {
  padding: 0 1rem;
}

.p-recruit-guideline__list {
  margin: 4.4rem 0 0;
}

.p-recruit-guideline__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: flex-start;
  border-top: 0.1rem solid #707070;
  border-right: 0.1rem solid #707070;
  border-left: 0.1rem solid #707070;
  background-color: rgba(232, 236, 239, 0.3);
}
.p-recruit-guideline__row:last-child {
  border-bottom: 0.1rem solid #707070;
}

.p-recruit-guideline__item {
  width: 26.7605633803%;
  padding: 0 0 0 1rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-guideline__detail {
  width: 73.2394366197%;
  padding: 2rem 1.4rem;
  background-color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
}
.p-recruit-guideline__detail .-strong {
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}
.p-recruit-guideline__detailBlock:not(:last-child) {
  margin: 0 0 3rem;
}

.p-recruit-guideline__detailTitle {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-guideline__detailText {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
}
.p-recruit-guideline__detailText:not(:last-child) {
  margin: 0 0 2rem;
}
.p-recruit-guideline__detailText.-m0 {
  margin: 0;
}

.p-recruit-guideline__detailImg {
  position: relative;
  margin: 1rem 0 0;
  overflow: hidden;
}
.p-recruit-guideline__detailImg::before {
  display: block;
  padding-top: 61.44%;
  content: "";
}
.p-recruit-guideline__detailImg img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-guideline__detailDesc {
  margin: 2rem 0 0;
}

.p-recruit-guideline__detailDescWrap {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
}
.p-recruit-guideline__detailDescWrap:not(:last-child) {
  margin: 0 0 2.4rem;
}

/* recruit-kv
----------------------------------------- */
.p-recruit-kv {
  position: relative;
}

.p-recruit-kv__img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.p-recruit-kv__img::before {
  display: block;
  padding-top: 127.73%;
  content: "×";
}
.p-recruit-kv__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-kv__catch {
  position: absolute;
  top: 32.2666666667vw;
  left: 1%;
}
.p-recruit-kv__catch::before {
  -webkit-transform: translate(0%, 0%);
  position: absolute;
  top: 26.4vw;
  left: 18.6666666667vw;
          transform: translate(0%, 0%);
  content: "×";
  color: #fff;
  font-weight: 400;
  font-size: 12vw;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

.p-recruit-kv__catchTextBlock {
  display: inline-block;
  padding: 1.3333333333vw 2.4vw;
  background-color: #333333;
}
.p-recruit-kv__catchTextBlock:first-child {
  margin: 0 0 18.1333333333vw;
}

.p-recruit-kv__catchText {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 7.7vw;
  line-height: 1.4666666667;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0em;
  text-align: center;
}
.p-recruit-kv__catchText .red {
  color: #e60012;
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}

.p-recruit-kv__title {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  padding: 2.6666666667vw 0;
          transform: translate(-50%, 0%);
}
.p-recruit-kv__title::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.76);
  content: "";
  opacity: 0.85;
}

.p-recruit-kv__titleText {
  z-index: 1;
  position: relative;
  font-weight: 400;
  font-size: 7.4666666667vw;
  line-height: 1.7857142857;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}

.p-recruit-kv__line {
  padding: 1.4rem 2.6rem;
  background-color: #24bb45;
}

.p-recruit-kv__lineText {
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0em;
}
.p-recruit-kv__lineText span {
  color: #ffdf00;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.0714285714;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

/* recruit-lead
----------------------------------------- */
.p-recruit-lead {
  padding: 2.8rem 0 3.6rem;
}

.p-recruit-lead__list {
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
          justify-content: center;
}

.p-recruit-lead__item {
  width: 48.115942029%;
  border-radius: 0.8rem;
  background-color: rgba(112, 127, 137, 0.2);
}
.p-recruit-lead__item:not(:nth-child(2n)) {
  margin: 0 2.8985507246% 2.8985507246% 0;
}
.p-recruit-lead__item:nth-child(2n) {
  margin: 0 0 2.8985507246% 0;
}
.p-recruit-lead__item:last-child {
  width: 100%;
  margin: 1rem 0 0;
}
.p-recruit-lead__item:last-child .p-recruit-lead__link {
  height: 3.8rem;
}

.apply-btn {
  color: #fdfdfd;
  background: #12A835;
  font-weight: 700!important;
}

.p-recruit-lead__link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
  height: 5.4rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}

.p-recruit-lead__inner {
  margin: 2.8rem 0 0;
}

.p-recruit-lead__head {
  position: relative;
  margin: 0 0 2.8rem;
  padding: 0 0 2.2rem;
}
.p-recruit-lead__head::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4rem;
  height: 0.4rem;
          transform: translate(-50%, 0%);
  background-color: #000000;
  content: "";
}

.p-recruit-lead__headText {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.8823529412;
  letter-spacing: 0em;
  text-align: center;
}
.p-recruit-lead__headText .-strong {
  color: #6187c5;
  font-weight: 700;
  font-size: 2.9rem;
  line-height: 1.1034482759;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}
.p-recruit-lead__headText.-icon {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.28;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-lead__text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0em;
}
.p-recruit-lead__text .-strong {
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}
.p-recruit-lead__text .-red {
  color: #e60012;
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}

/* recruit-merit
----------------------------------------- */
.p-recruit-merit {
  padding: 4.4rem 0 6rem;
  background-color: #e8ecef;
}
.p-recruit-merit .l-container {
  padding: 0 1rem;
}

.p-recruit-merit__inner {
  margin: 2.8rem 0 0;
}

.p-recruit-merit__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: row;
          align-items: center;
          justify-content: center;
  height: 18.3rem;
  padding: 0 2rem;
  background-color: #fff;
}
.p-recruit-merit__item:not(:last-child) {
  margin: 0 0 1.4rem;
}
.p-recruit-merit__item:nth-child(8) .p-recruit-merit__itemText, .p-recruit-merit__item:nth-child(9) .p-recruit-merit__itemText {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-merit__no {
  position: absolute;
  top: -0.4rem;
  left: 0;
  color: #c3ced6;
  font-style: italic;
  font-weight: 300;
  font-size: 8.5rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0em;
  opacity: 0.6;
}

.p-recruit-merit__itemText {
  position: relative;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.3043478261;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}

/* recruit-message
----------------------------------------- */
.p-recruit-message {
  padding: 0 0 2rem;
  background-color: #e8ecef;
}
.p-recruit-message .l-container {
  padding: 0 1.8rem;
}

.p-recruit-message__eng {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 5.5rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0em;
  text-align: center;
}

.p-recruit-message__inner {
  margin: 1.4rem 0 0;
}

.p-recruit-message__img {
  margin: 4rem 0 3.8rem;
}

.p-recruit-message__text {
  margin: 0 0 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0em;
}

.p-recruit-message__name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
  text-align: right;
}

/* recruit-question
----------------------------------------- */
.p-recruit-question {
  padding: 2.5rem 0 4rem;
}
.p-recruit-question .l-container {
  padding: 0 1rem;
}

.p-recruit-question__inner {
  margin: 4.8rem 0 0;
}

.p-recruit-question__block:not(:last-child) {
  margin: 0 0 3.2rem;
}

.p-recruit-question__blockTitle {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  background-color: #e8ecef;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}
.p-recruit-question__blockTitle::after {
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 1.05rem;
  height: 1.05rem;
  background-image: url(../images/recruit/recruit_question_icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transition: transform 0.3s ease-in-out;  /* smooth transition */
}

.p-recruit-question__blockTitle.close::after {
  -webkit-transform: translate(0%, -50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
}

.p-recruit-question__blockTitle::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.8rem;
  height: 100%;
          transform: translate(0%, -50%);
  background-color: #c0ced8;
  content: "";
}

.p-recruit-question__blockDetail {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: flex-start;
          justify-content: flex-start;
  margin: 1.8rem 0 0;
	display: none;
}

.p-recruit-question__blockIcon {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: block;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 1.6rem 0 0;
  background-color: #c0ced8;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-question__blockText {
  width: calc(100% - 4.1rem);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.125;
  letter-spacing: 0em;
}

/* recruit-reason
----------------------------------------- */
.p-recruit-reason {
  position: relative;
  padding: 3.2rem 0 6.7rem;
}
.p-recruit-reason::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translate(-50%, 0%);
  background-color: #e8ecef;
  content: "";
  opacity: 0.3;
}
.p-recruit-reason .l-container {
  position: relative;
}

.p-recruit-reason__inner {
  position: relative;
  margin: 4rem 0 0;
}
.p-recruit-reason__block:not(:last-of-type) {
  margin: 0 0 4.6rem;
}

.p-recruit-reason__img {
  position: relative;
  margin: 0 0 4.2rem;
  overflow: hidden;
}
.p-recruit-reason__img::before {
  display: block;
  padding-top: 71.1%;
  content: "";
}
.p-recruit-reason__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-reason__desc {
  padding: 3.2rem 1rem;
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 0.6rem rgba(0, 0, 0, 0.42);
}

.p-recruit-reason__item:not(:last-child) {
  margin: 0 0 2.6rem;
}

.p-recruit-reason__itemTitle {
  color: #6187c4;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-reason__itemText {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0em;
}
.p-recruit-reason__itemText .-red {
  color: #e60012;
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}

.p-recruit-reason__application {
  width: 100vw;
  margin: 6.7rem calc(50% - 50vw) 0;
  padding: 3.1rem 0 3.8rem;
  background-color: #e8ecef;
}

.p-recruit-reason__applicationTitle {
  position: relative;
  width: 19.3rem;
  margin: 0 auto 1.3rem;
  padding: 0.6rem 0 0.8rem;
  background-color: #000000;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.12;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
  letter-spacing: 0em;
  text-align: center;
}
.p-recruit-reason__applicationTitle::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  width: 0;
  height: 0;
          transform: translate(-50%, 0%);
  border-width: 1.3rem 0.75rem 0 0.75rem;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
  content: "";
}

.p-recruit-reason__applicationBanner {
  position: relative;
  width: 94.1333333333%;
  margin: 2.9rem auto 0;
  overflow: hidden;
  box-shadow: 0 0.5rem 0.6rem rgba(0, 0, 0, 0.16);
}
.p-recruit-reason__applicationBanner::before {
  display: block;
  padding-top: 55.81%;
  content: "";
}
.p-recruit-reason__applicationBanner img {
  -o-object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: contain;
  font-family: "object-fit: cover;";
}

/* recruit-voice
----------------------------------------- */
.p-recruit-voice .l-container {
  margin: 3rem auto 0;
  padding: 0 1.8rem;
}

.p-recruit-voice__inner {
  margin: 4rem 0 0;
}
.p-recruit-voice__block:not(:last-child) {
  margin: 0 0 5.5rem;
}
.p-recruit-voice__block:first-child .p-recruit-voice__blockImg {
  position: relative;
  margin: 0.5rem 0 0;
  overflow: hidden;
}
.p-recruit-voice__block:first-child .p-recruit-voice__blockImg::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.p-recruit-voice__block:first-child .p-recruit-voice__blockImg img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.p-recruit-voice__block:nth-child(2) .p-recruit-voice__blockImg {
  width: 89.8550724638%;
  margin: 2.3rem auto 2.7rem;
}

.p-recruit-voice__blockTitleEng {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-recruit-voice__blockTitleEng.-no01 {
  width: 21.1rem;
  height: 3.3rem;
  background-image: url(../images/recruit/recruit_voice_no01_sp.svg);
}

.p-recruit-voice__blockTitleEng.-no02 {
  width: 21.3rem;
  height: 3.26rem;
  background-image: url(../images/recruit/recruit_voice_no02_sp.svg);
}

.p-recruit-voice__blockTitleEng.-no03 {
  width: 24.1rem;
  height: 3.3rem;
  background-image: url(../images/recruit/recruit_voice_no03_sp.svg);
}

.p-recruit-voice__blockTitleJp {
  margin: 2rem 0 0;
  color: #6187c4;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.3461538462;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0em;
}

.p-recruit-voice__blockText {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
}
.p-recruit-voice__blockText .-strong {
  font-weight: 700;
  font-family: "noto-sans-cjk-jp-bold", sans-serif;
}

.u-only-sp {
  display: block;
}

.u-only-pc {
  display: none;
}

.recruit_youtube_section {
  text-align: center;
}

.recruit_youtube {
  width: 100%;
  height: 200px;
  margin: 30px auto;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
          align-items: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  backface-visibility: hidden;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  contain: strict;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 50%;
  border-left-color: transparent;
          animation: splide-loading 1s linear infinite;
}

.splide__sr {
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  position: relative;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 50%;
          align-items: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
          transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  opacity: 0.7;
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
}

.splide__pagination__page {
  -webkit-transition: -webkit-transform 0.2s linear;
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.7;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1.4);
  z-index: 1;
          transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  height: 3px;
  background: #ccc;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  -webkit-transform: translate(-50%);
  left: 50%;
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  top: 0;
  right: 0.5em;
  bottom: 0;
  left: auto;
          flex-direction: column;
  padding: 1em 0;
}

@media screen and (min-width: 768px) and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw!important;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 62.5%!important;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  *:focus-visible {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
  .l-container {
    padding: 0 8rem;
  }
  .l-footer {
    height: 44.9rem;
    background-image: url(../images/common/footer_img_pc.jpg);
  }
  .l-header {
    height: 15.8rem;
    background-image: url(../images/common/header_img_pc.jpg);
    background-size: contain;
  }
  .l-section__title {
    padding: 0 0 4.8rem;
    font-weight: 400;
    font-size: 6rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
  }
  .l-section__title::before {
    width: 6.3rem;
    height: 0.6rem;
  }
  .l-section__bgImg {
    position: relative;
    overflow: hidden;
  }
  .l-section__bgImg::before {
    display: block;
    padding-top: 29.58%;
    content: "";
  }
  .l-section__bgText {
    font-weight: 500;
    font-size: 14.7395833333vw;
    line-height: 1.2084805654;
    letter-spacing: 0em;
  }
  .p-recruit-about {
    margin: 0 0 9.6rem;
  }
  .p-recruit-about .l-section__title {
    margin: 5.7rem 0 8.6rem;
  }
  .p-recruit-about__inner {
    width: 66.6666666667%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .p-recruit-about__block:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
  }
  .p-recruit-about__block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-align: start;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
            justify-content: center;
  }
  .p-recruit-about__block:nth-child(even) .p-recruit-about__blockTitle {
    padding: 0 0 1.2rem 0;
  }
  .p-recruit-about__block:nth-child(even) .p-recruit-about__blockText {
    margin: 2.1rem 3.2rem 0 0;
  }
  .p-recruit-about__block:not(:last-child) {
    margin: 0 0 5.7rem;
  }
  .p-recruit-about__img {
    position: relative;
    width: 39.84375%;
    overflow: hidden;
  }
  .p-recruit-about__img::before {
    display: block;
    padding-top: 76.47%;
    content: "";
  }
  .p-recruit-about__desc {
    width: 60.234375%;
  }
  .p-recruit-about__blockTitle {
    padding: 0 0 1.2rem 2.4rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-recruit-about__blockTitle::before {
    width: 100%;
    margin: 0;
  }
  .p-recruit-about__blockText {
    margin: 2.1rem 0 0 3.2rem;
    padding: 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-application {
    margin: 0 0 4.4rem;
    padding: 11.8rem 0 9.7rem;
  }
  .p-recruit-application .l-container {
    max-width: 1440px;
    padding: 0 8rem;
  }
  .p-recruit-application__inner {
    width: 53.125%;
    margin: 0 auto;
  }
  .p-recruit-application__title {
    width: 68rem;
    margin: 0 auto 1.8rem;
    padding: 1.3rem 0 1.5rem;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-recruit-application__title::before {
    bottom: -1.8rem;
    border-width: 1.8rem 1.05rem 0 1.05rem;
  }
  .p-recruit-application__text {
    margin: 5.7rem 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-application__message {
    margin: 0 0 5.7rem;
    color: #000000;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
  }
  .p-recruit-application__banner {
    position: relative;
    overflow: hidden;
  }
  .p-recruit-application__banner::before {
    display: block;
    padding-top: 55.88%;
    content: "";
  }
  .p-recruit-feature {
    padding: 9.6rem 0 8.1rem;
  }
  .l-container {
    max-width: 1440px;
    padding: 0 8rem;
  }
  .p-recruit-feature__inner {
    margin: 5.4rem 0 0;
  }
  .p-recruit-feature__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
    padding: 3rem 3.2rem 3.8rem;
  }
  .p-recruit-feature__block:not(:last-child) {
    margin: 0 0 4.4rem;
  }
  .p-recruit-feature__img {
    position: relative;
    width: 32.1rem;
    margin: 0 2.3rem 0 0;
    overflow: hidden;
  }
  .p-recruit-feature__img::before {
    display: block;
    padding-top: 66.67%;
    content: "";
  }
  .p-recruit-feature__desc {
    width: 84.5rem;
  }
  .p-recruit-feature__blockTitle {
    padding: 0 0 1.6rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.0714285714;
    letter-spacing: 0em;
  }
  .p-recruit-feature__blockTitle::before {
    width: 100%;
  }
  .p-recruit-feature__blockText {
    margin: 2.6rem 0 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .p-recruit-guideline {
    padding: 8.8rem 0 5.4rem;
  }
  .p-recruit-guideline .l-container {
    max-width: 1440px;
    padding: 0;
  }
  .p-recruit-guideline__list {
    width: 88.8888888889%;
    margin: 7.6rem auto 0;
  }
  .p-recruit-guideline__item {
    width: 34.1rem;
    padding: 0;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
  }
  .p-recruit-guideline__detail {
    width: calc(100% - 34.1rem);
    padding: 6.4rem 5.6rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-guideline__detail.-shop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
  }
  .p-recruit-guideline__detail.-shop .p-recruit-guideline__detailText {
    text-align: center;
  }
  .p-recruit-guideline__detailBlock {
    width: 32.4rem;
  }
  .p-recruit-guideline__detailBlock:first-child .p-recruit-guideline__detailTitle {
    margin: 0 0 4.6rem;
  }
  .p-recruit-guideline__detailBlock:not(:last-child) {
    margin: 0 14.4rem 0 0;
  }
  .p-recruit-guideline__detailTitle {
    margin: 0 0 1.4rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
  }
  .p-recruit-guideline__detailText {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-guideline__detailText:not(:last-child) {
    margin: 0 0 4.8rem;
  }
  .p-recruit-guideline__detailText.-m0 {
    margin: 0 0 0.4rem;
  }
  .p-recruit-guideline__detailImg {
    position: relative;
    margin: 0 0 4.6rem;
    overflow: hidden;
  }
  .p-recruit-guideline__detailImg::before {
    display: block;
    padding-top: 87.89%;
    content: "";
  }
  .p-recruit-guideline__detailDesc {
    margin: 0;
  }
  .p-recruit-guideline__detailDescWrap {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-guideline__detailDescWrap:not(:last-child) {
    margin: 0 0 6rem;
  }
  .p-recruit-kv__img {
    position: relative;
    overflow: hidden;
  }
  .p-recruit-kv__img::before {
    display: block;
    padding-top: 51.3%;
    content: "";
  }
  .p-recruit-kv__catch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
    top: 12.53125vw;
    left: 7.6666666667vw;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
  }
  .p-recruit-kv__catch::before {
    -webkit-transform: translate(-50%, 0%);
    top: 4.6875vw;
    left: 50%;
            transform: translate(-50%, 0%);
    color: #333333;
    font-size: 2.8645833333vw;
  }
  .p-recruit-kv__catchTextBlock {
    padding: 0.4427083333vw 0.8333333333vw 0.6510416667vw;
  }
  .p-recruit-kv__catchTextBlock:first-child {
    margin: 0 0 3.5416666667vw;
    padding: 0.3385416667vw 2.8385416667vw 0.546875vw;
  }
  .p-recruit-kv__catchText {
    font-size: 3.3854166667vw;
    line-height: 1.0769230769;
  }
  .p-recruit-kv__title {
    bottom: 11.8229166667vw;
    width: 53.8020833333vw;
    padding: 3.125vw 0;
  }
  .p-recruit-kv__titleText {
    font-size: 3.75vw;
    line-height: 0.6944444444;
  }
  .p-recruit-kv__line {
    -webkit-transform: translate(-50%, 0%);
    display: inline-block;
    position: absolute;
    bottom: 1.8229166667vw;
    left: 50%;
    width: auto;
    padding: 1.5625vw 0.9375vw;
            transform: translate(-50%, 0%);
    background-color: rgba(255, 255, 255, 0);
  }
  .p-recruit-kv__line::before {
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
            transform: translate(-50%, -50%);
    background-color: #08ba32;
    content: "";
    opacity: 0.85;
  }
  .p-recruit-kv__lineText {
    position: relative;
    font-weight: 500;
    font-size: 1.8229166667vw;
    line-height: 1.4285714286;
    letter-spacing: 0em;
  }
  .p-recruit-kv__lineText span {
    font-weight: 700;
    font-size: 2.1875vw;
    line-height: 1.1904761905;
    letter-spacing: 0em;
  }
  .p-recruit-lead {
    padding: 2.1rem 0 6.5rem;
  }
  .p-recruit-lead__inner {
    margin: 0;
  }
  .p-recruit-lead__head {
    margin: 0 0 7.2rem;
    padding: 0 0 2.6rem;
  }
  .p-recruit-lead__head::before {
    width: 6.3rem;
    height: 0.6rem;
  }
  .p-recruit-lead__headText {
    font-weight: 400;
    font-size: 4.5rem;
    line-height: 1.9111111111;
    letter-spacing: 0em;
  }
  .p-recruit-lead__headText .-strong {
    font-weight: 700;
    font-size: 7.6rem;
    line-height: 1.1315789474;
    letter-spacing: 0em;
  }
  .p-recruit-lead__headText.-icon {
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0em;
	 margin-top: -10px;
  }
  .p-recruit-lead__text {
    width: 89.609375%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .p-recruit-merit {
    padding: 8.5rem 0 13rem;
  }
  .p-recruit-merit .l-container {
    max-width: 1410px;
    padding: 0 8rem;
  }
  .p-recruit-merit__inner {
    margin: 9.1rem 0 0;
  }
  .p-recruit-merit__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
    flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
  }
  .p-recruit-merit__item {
    width: 60.9rem;
    height: 31.3rem;
    padding: 0 3.2rem;
  }
  .p-recruit-merit__item:not(:last-child) {
    margin: 0 3.2rem 3.2rem 0;
  }
  .p-recruit-merit__item:not(:nth-child(2n)) {
    margin: 0 3.2rem 3.2rem 0;
  }
  .p-recruit-merit__item:nth-child(2n) {
    margin: 0 0 3.2rem 0;
  }
  .p-recruit-merit__item:nth-child(8) .p-recruit-merit__itemText, .p-recruit-merit__item:nth-child(9) .p-recruit-merit__itemText {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.7142857143;
    letter-spacing: 0em;
  }
  .p-recruit-merit__item:nth-child(5) .p-recruit-merit__itemText {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.7142857143;
    font-family: "noto-sans-cjk-jp-bold", sans-serif;
    letter-spacing: 0em;
  }
  .p-recruit-merit__item:nth-child(9) {
    padding: 0;
  }
  .p-recruit-merit__no {
    top: -1.8rem;
    font-weight: 300;
    font-size: 15rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-recruit-merit__itemText {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .p-recruit-message {
    padding: 0 0 8.3rem;
  }
  .p-recruit-message .l-container {
    max-width: 1160px;
    padding: 0 8rem;
  }
  .p-recruit-message__eng {
    font-weight: 500;
    font-size: 28.3rem;
    line-height: 1.2084805654;
    letter-spacing: 0em;
  }
  .p-recruit-message__inner {
    margin: 0;
  }
  .p-recruit-message__img {
    width: 62%;
    margin: 9rem auto 8.9rem;
  }
  .p-recruit-message__text {
    margin: 0 0 7.6rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .p-recruit-message__name {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.1666666667;
    letter-spacing: 0em;
  }
  .p-recruit-question {
    padding: 5.4rem 0 12.2rem;
  }
  .p-recruit-question .l-container {
    max-width: 1440px;
    padding: 0 8rem;
  }
  .p-recruit-question__inner {
    margin: 5.4rem 0 0;
  }
  .p-recruit-question__block:not(:last-child) {
    margin: 0 0 7rem;
  }
  .p-recruit-question__blockTitle {
    padding: 2rem 4.2rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.1666666667;
    letter-spacing: 0em;
  }
  .p-recruit-question__blockTitle::after {
    right: 3.5rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .p-recruit-question__blockTitle::before {
    width: 1.8rem;
  }

  .p-recruit-question__blockTitle.rotated::after {
    /* 回転させる */
    transform: translate(0%, -50%) rotate(45deg);
}

  .p-recruit-question__blockDetail {
    margin: 4.6rem 0 0 7.2rem;
  }
  .p-recruit-question__blockIcon {
    width: 4.1rem;
    height: 3.8rem;
    margin: 0 3.7rem 0 0;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.1666666667;
    letter-spacing: 0em;
  }
  .p-recruit-question__blockText {
    width: 110rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .p-recruit-reason {
    padding: 8.2rem 0 0;
  }
  .p-recruit-reason__inner {
    margin: 5.45rem 0 0;
  }
  .p-recruit-reason__inner .l-container {
    max-width: 100vw;
    padding: 0;
  }
  .p-recruit-reason__block:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
  }
  .p-recruit-reason__block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: flex-start;
  }
  .p-recruit-reason__block:nth-child(even) .p-recruit-reason__img {
    margin: 0 0 0 1.5625vw;
  }
  .p-recruit-reason__block:not(:last-of-type) {
    margin: 0 0 9.8rem;
  }
  .p-recruit-reason__img {
    position: relative;
    width: 28.8541666667vw;
    margin: 0 1.5625vw 0 0;
    overflow: hidden;
  }
  .p-recruit-reason__img::before {
    display: block;
    padding-top: 100.54%;
    content: "";
  }
  .p-recruit-reason__desc {
    width: 52.0833333333vw;
    padding: 4.4rem 2.6rem;
  }
  .p-recruit-reason__itemTitle {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1428571429;
    letter-spacing: 0em;
  }
  .p-recruit-reason__itemText {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0em;
  }
  .p-recruit-reason__application {
    margin: 0 calc(50% - 50vw);
    padding: 8.8rem 0 9.3rem;
  }
  .p-recruit-reason__applicationTitle {
    width: 29.5rem;
    margin: 0 auto 1.8rem;
    padding: 2rem 0;
    font-weight: 500;
    font-size: 4rem;
    line-height: 0.7;
    letter-spacing: 0em;
  }
  .p-recruit-reason__applicationTitle::before {
    bottom: -1.8rem;
    border-width: 1.8rem 1.05rem 0 1.05rem;
  }
  .p-recruit-reason__applicationBanner {
    width: 35.4166666667%;
    margin: 4rem auto 0;
  }
  .p-recruit-voice {
    margin: 0 0 4rem;
  }
  .p-recruit-voice .l-container {
    max-width: 1880px;
    margin: 5.5rem auto 0;
    padding: 0 8rem;
  }
  .p-recruit-voice__inner {
    margin: 19.4rem 0 0;
  }
  .p-recruit-voice__block:nth-child(odd) .p-recruit-voice__blockWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
  }
  .p-recruit-voice__block:nth-child(odd) .p-recruit-voice__blockWrap .p-recruit-voice__blockImg {
    width: 36.6279069767%;
    margin: 0 1.511627907% 0 0;
  }
  .p-recruit-voice__block:nth-child(odd) .p-recruit-voice__blockWrap .p-recruit-voice__blockTextWrap {
    width: 46.976744186%;
    margin: 0 0 24rem;
  }
  .p-recruit-voice__block:nth-child(even) .p-recruit-voice__blockWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: flex-start;
  }
  .p-recruit-voice__block:nth-child(even) .p-recruit-voice__blockWrap .p-recruit-voice__blockImg {
    width: 33.3720930233%;
    margin: 0 0 0 1.8604651163%;
  }
  .p-recruit-voice__block:nth-child(even) .p-recruit-voice__blockWrap .p-recruit-voice__blockTextWrap {
    width: 50.1162790698%;
    margin: 0 0 12rem;
  }
  .p-recruit-voice__block:nth-child(even) .p-recruit-voice__blockWrap .p-recruit-voice__blockText {
    width: 95.1276102088%;
  }
  .p-recruit-voice__block:not(:last-child) {
    margin: 0;
  }
  .p-recruit-voice__blockTitleEng.-no01 {
    width: 34.24rem;
    height: 5.3rem;
    background-image: url(../images/recruit/recruit_voice_no01_pc.svg);
  }
  
  .p-recruit-voice__blockTitleEng.-no02 {
    width: 34.24rem;
    height: 5.3rem;
    background-image: url(../images/recruit/recruit_voice_no02_pc.svg);
  }
  .p-recruit-voice__blockTitleEng.-no03 {
    width: 34.24rem;
    height: 5.3rem;
    background-image: url(../images/recruit/recruit_voice_no03_pc.svg);
  }
  .p-recruit-voice__blockTitleJp {
    margin: 7rem 0 4.7rem;
    font-weight: 500;
    font-size: 5.5rem;
    line-height: 1.2727272727;
    letter-spacing: 0em;
  }
  .p-recruit-voice__blockText {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
  .recruit_youtube_section {
    margin-bottom: 50px;
  }
  .recruit_youtube {
    width: 60%;
    height: 380px;
    margin: 40px auto;
  } 
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
/*# sourceMappingURL=style.css.map */
