@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  color: #4d4d4d;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 3.125rem;
  }
}

h3 {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

span {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

.sponly {
  display: block;
}
@media screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

.pconly {
  display: none;
}
@media screen and (min-width: 768px) {
  .pconly {
    display: block;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-page-top {
  position: fixed;
  right: 0.9375rem;
  bottom: 0.9375rem;
}

.btn {
  padding: 0.5rem 0;
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  border: 1px solid #2e8a57;
  border-radius: 3.125rem;
  background-color: #fff;
  color: #2e8a57;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 1.0625rem 5.3125rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.5rem;
  }
}
.btn:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}

.button__text {
  vertical-align: middle;
}

.btn::after {
  content: "";
  margin-left: 0.625rem;
  width: 1.5625rem;
  height: 1.5625rem;
  display: inline-block;
  background-image: url(../images/common/btn_icon1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn::after {
    margin-left: 0.625rem;
    width: 3rem;
    height: 3rem;
  }
}

.btn.btn--green {
  color: #fff;
  background-color: #2e8a57;
}

.btn.btn--green::after {
  background-image: url(../images/common/btn_icon2.png);
}

.btn.btn--blue {
  color: #fff;
  background-color: #009aff;
  border: 1px solid #009aff;
}

.btn.btn--blue::after {
  background-image: url(../images/common/btn_icon2.png);
}

.app__button-wrapper {
  margin: 3.4375rem auto 1.875rem;
}
@media screen and (min-width: 768px) {
  .app__button-wrapper {
    margin: 5.75rem auto;
  }
}

.app__button-wrapper .button__top {
  text-align: center;
  color: #2e8a57;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .app__button-wrapper .button__top {
    font-size: 1.9375rem;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.modal__content {
  position: absolute;
  z-index: 1001;
  background: #fff;
  padding: 2.5rem 1.25rem;
  border-radius: 1rem;
  max-width: 31.25rem;
  width: 90%;
  text-align: center;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
}
.modal__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.modal__qr {
  width: 12.5rem;
  height: auto;
  margin-bottom: 0.625rem;
  display: block;
}
.modal__caption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.page-top {
  padding-top: 0.9375rem;
  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;
  width: 4.1875rem;
  height: 4.1875rem;
  text-transform: uppercase;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .page-top {
    display: none;
  }
}

.page-top-job-seeker {
  background: url(../images/jobseeker/page-top-sp.png) no-repeat center center/contain;
}

.page-top-company {
  background: url(../images/company/page-top-sp.png) no-repeat center center/contain;
}

.header {
  height: 3.4375rem;
  background-color: #2e8a57;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.8125rem;
  }
}

.header__inner {
  padding: 0 0.875rem 0 1.25rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0.375rem 2.7777777778vw 0.375rem 4.0277777778vw;
  }
}

.header__logo {
  max-width: 6.5625rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 11.5rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .header__nav-item {
    margin-top: 1.875rem;
  }
}

.header__nav-item + .header__nav-item {
  border-left: 1px solid #fff;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--contact {
    margin-top: 0.375rem;
    margin-left: 0.6944444444vw;
  }
}

.header__nav-item a {
  padding: 0 0.3125rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .header__nav-item a {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav-item a {
    font-size: 0.9375rem;
  }
}

.header__nav-item.header__nav-item--contact {
  border-left: none;
}

.header__nav-item.header__nav-item--contact a {
  max-width: 16.25rem;
  padding: 0.5rem 0.625rem 0.5rem 3.125rem;
  border-radius: 3.125rem;
  position: relative;
  height: initial;
  color: #2e8a57;
  font-weight: 800;
  background-color: #fff;
  font-size: 1.25rem;
}

.header__nav-item.header__nav-item--contact-company a {
  max-width: 18.75rem;
}

.header__nav-item.header__nav-item--contact a::before {
  content: "";
  margin-right: 3.125rem;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  position: absolute;
  left: 0.625rem;
  background-image: url(./../images/common/reservation_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: #2e8a57;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  height: 0.3125rem;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.5625rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 14.25rem 0.625rem;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(46, 138, 87, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .header__drawer-item a {
    font-size: 2.25rem;
  }
}

.header__drawer-item.header__drawer-item--contact a {
  color: #2e8a57;
  background-color: #fff;
  border-radius: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1.25rem;
  margin: 0.625rem auto 0;
  font-size: 1.25rem;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-left: 1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url(./../images/common/reservation_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: text-bottom;
}

.flow__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    padding: 4.75rem 1.5625rem 1.0625rem;
    max-width: 65.625rem;
  }
}

@media screen and (min-width: 768px) {
  .flow--company .flow__inner {
    padding: 17.25rem 1.5625rem 1.0625rem;
    max-width: 65.625rem;
  }
}

.flow__title {
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .flow__title {
    margin-bottom: 5.8125rem;
  }
}

.flow--job-seeker {
  background: url(../images/jobseeker/bg-gray-sp.png) no-repeat center top/100% auto, #fff;
  position: relative;
  margin-top: 0;
  padding: 21.8666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow--job-seeker {
    background: url(../images/jobseeker/bg-gray-pc.png) no-repeat center top/100% auto, #fff;
    margin-top: -5.2083333333vw;
    padding: 13.75vw 0 0;
  }
}
.flow--job-seeker .flow__title {
  color: #2e8a57;
}

.flow--company {
  background: url(../images/company/flow-sp.png) no-repeat center top/100% auto;
  position: relative;
  padding: 30.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow--company {
    background: url(../images/company/flow-pc.png) no-repeat center top/100% auto;
    padding: 0;
  }
}
.flow--company .flow__title {
  color: #fff;
  font-size: 1.6875rem;
  line-height: 1.3;
  margin-bottom: 2.875rem;
}
@media screen and (min-width: 768px) {
  .flow--company .flow__title {
    font-size: 3.125rem;
    line-height: 1.2;
    margin-bottom: 5.8125rem;
  }
}

.flow__button-wrapper {
  margin: 6.25rem auto;
}

.flow-list {
  counter-reset: number;
  padding-bottom: 1.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .flow-list {
    padding-bottom: 4.8125rem;
  }
}

.flow-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #2e8a57;
  border-radius: 3.125rem;
  color: #fff;
  position: relative;
  padding: 0 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .flow-list__item {
    padding: 0.3125rem 5rem;
  }
}

.flow-list__item + .flow-list__item {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item + .flow-list__item {
    margin-top: 2.9375rem;
  }
}

.flow-list__item::before {
  content: "0" counter(number);
  counter-increment: number;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .flow-list__item::before {
    width: 5.3125rem;
    font-size: 2.1875rem;
  }
}

.flow-list__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border: 0.75rem solid transparent;
  border-top: 0.625rem solid #a4b4b9;
}
@media screen and (min-width: 768px) {
  .flow-list__item:not(:last-of-type)::after {
    bottom: -4.125rem;
    border: 1.875rem solid transparent;
    border-top: 1.25rem solid #a4b4b9;
  }
}

.flow-list__item-wrap {
  padding: 0.5rem 1.25rem 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .flow-list__item-wrap {
    padding: 0.625rem 1.5rem 0.875rem 0;
  }
}

.flow-list__item-text {
  padding-left: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.3;
  border-left: 0.125rem solid #fff;
}
@media screen and (min-width: 768px) {
  .flow-list__item-text {
    padding-left: 1.25rem;
    font-size: 2rem;
  }
}

.flow--company .flow-list {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .flow--company .flow-list {
    padding-bottom: 4.8125rem;
  }
}

.footer {
  background-color: #2e8a57;
}

.footer__inner {
  padding: 0.625rem 0;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 2.1875rem 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 62.5rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
  }
}

.footer__logo {
  max-width: 7.375rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 11rem;
    margin-right: 0.625rem;
  }
}

.footer__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.footer__nav {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    display: block;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__nav-item + .footer__nav-item {
  border-left: 1px solid #fff;
}

.footer__nav-item.footer__nav-item--contact {
  margin-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__nav-item a {
  padding: 0 0.625rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 0.9375rem;
  }
}

.footer__nav-item.footer__nav-item--contact {
  border-left: none;
}

.footer__nav-item.footer__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  border-radius: 3.125rem;
  position: relative;
  height: initial;
  color: #2e8a57;
  background-color: #fff;
}

.footer__nav-item.footer__nav-item--contact a::before {
  content: "";
  margin-left: 0.625rem;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  background-image: url(./../images/common/download_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mv {
  position: relative;
  margin-top: 3.4375rem;
  padding: 1.4375rem 0 0;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 5.8125rem;
    padding: 5rem 0 0;
  }
}

.mv--job-seeker {
  background: url(../images/jobseeker/mv-sp.png) no-repeat center top/100% auto;
  position: relative;
  z-index: 1;
  height: 226.6666666667vw;
}
@media screen and (min-width: 768px) {
  .mv--job-seeker {
    background: url(../images/jobseeker/mv-pc.png) no-repeat center top/100% auto;
    height: 90.625vw;
  }
}
.mv--job-seeker .mv__lead {
  width: 88.8vw;
}
@media screen and (min-width: 768px) {
  .mv--job-seeker .mv__lead {
    width: 90.4861111111vw;
  }
}
.mv--job-seeker .mv__title {
  display: block;
  width: 64vw;
  margin: 1.5rem 0.125rem 0 auto;
}
@media screen and (min-width: 768px) {
  .mv--job-seeker .mv__title {
    margin: -1.1805555556vw 12.9861111111vw 0 auto;
    width: 42.9166666667vw;
  }
}
.mv--job-seeker .mv__title img {
  width: 100%;
}

.mv--company {
  background: url(../images/company/mv-sp.png) no-repeat center top/100% auto, #f1f1f1;
  position: relative;
  z-index: 1;
  height: 237.3333333333vw;
}
@media screen and (min-width: 768px) {
  .mv--company {
    background: url(../images/company/mv-pc.png) no-repeat center top/100% auto, #f1f1f1;
    height: 85.4166666667vw;
  }
}
.mv--company .mv__lead {
  width: 83.2vw;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__lead {
    width: 65.9722222222vw;
  }
}
.mv--company .mv__title {
  display: block;
  width: 64vw;
  margin: 0.125rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__title {
    margin: -1.1805555556vw 12.9861111111vw 0 auto;
    width: 42.7083333333vw;
  }
}
.mv--company .mv__title img {
  width: 100%;
}
.mv--company .mv__sub-lead {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__sub-lead {
    margin-top: 0.1388888889vw;
  }
}
.mv--company .mv__description {
  width: calc(100% - 10.6666666667vw);
  padding: 2.6666666667vw 2.6666666667vw;
  margin: 2.6666666667vw 5.3333333333vw 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__description {
    width: 38.8888888889vw;
    padding: 1.3888888889vw;
  }
}
.mv--company .mv__description--1 {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__description--1 {
    margin: 1.3888888889vw 0 0 38.1944444444vw;
  }
}
@media screen and (min-width: 768px) {
  .mv--company .mv__description--2 {
    margin: 2.0833333333vw 0 0 45.625vw;
  }
}
.mv--company .mv__badge {
  margin-top: 5.6vw;
  width: 55.7333333333vw;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__badge {
    margin-top: -1.1111111111vw;
    width: 27.0833333333vw;
  }
}
.mv--company .mv__image {
  top: -14.1333333333vw;
  right: -24.8vw;
  width: 69.8666666667vw;
}
@media screen and (min-width: 768px) {
  .mv--company .mv__image {
    top: 52.3611111111vw;
    right: 15.5555555556vw;
    width: 35.7638888889vw;
  }
}

.mv__lead {
  margin: 0 auto;
  display: block;
}
.mv__lead img {
  width: 100%;
}

.mv__sub-lead {
  text-align: center;
  font-size: 3.8666666667vw;
  font-weight: 800;
  margin-top: 2.1333333333vw;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .mv__sub-lead {
    font-size: 2.1527777778vw;
    margin-top: 0.1388888889vw;
  }
}

.mv__title {
  display: block;
  margin: 8vw 29.3333333333vw 0 auto;
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin: -1.1805555556vw 11.25vw 0 auto;
  }
}

.mv__description {
  background: #fff;
  width: 57.3333333333vw;
  border-radius: 2.6666666667vw;
  font-size: 3.7333333333vw;
  padding: 1.3333333333vw 2.6666666667vw;
  margin: 2.6666666667vw 0 0 37.3333333333vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .mv__description {
    width: 38.8888888889vw;
    border-radius: 1.0416666667vw;
    font-size: 1.3888888889vw;
    padding: 1.3888888889vw;
    line-height: 1.5;
  }
}

.mv__description--1 {
  margin: -1.0666666667vw 0 0 37.3333333333vw;
}
@media screen and (min-width: 768px) {
  .mv__description--1 {
    margin: 1.3888888889vw 0 0 38.1944444444vw;
  }
}

.mv__description--2 {
  margin: 4.5333333333vw 0 0 37.3333333333vw;
}
@media screen and (min-width: 768px) {
  .mv__description--2 {
    margin: 2.0833333333vw 0 0 45.625vw;
  }
}

.mv__badge {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9999px;
  background-color: #2e8a57;
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  aspect-ratio: 1/1;
  width: 53.3333333333vw;
  margin: 1.0666666667vw 0 0 5.6vw;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .mv__badge {
    width: 27.0833333333vw;
    margin: -1.1111111111vw 0 0 16.875vw;
    font-size: 3.2638888889vw;
  }
}

.mv__badge::after {
  content: "";
  position: absolute;
  top: 66%;
  right: 4%;
  border-style: solid;
  border-width: 2.1333333333vw 0 1.6vw 4.5333333333vw;
  border-color: transparent transparent transparent #2e8a57;
  translate: 100% -50%;
  -webkit-transform: skew(0, 20deg);
          transform: skew(0, 20deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 768px) {
  .mv__badge::after {
    border-width: 0.6944444444vw 0 0.6944444444vw 2.4305555556vw;
  }
}

.mv__image {
  position: relative;
  top: -10.6666666667vw;
  right: -21.3333333333vw;
  width: 72vw;
}
@media screen and (min-width: 768px) {
  .mv__image {
    position: absolute;
    top: 54.6527777778vw;
    right: 15.5555555556vw;
    width: 36.9444444444vw;
  }
}

.mv__image img {
  width: 100%;
}

.mv__image--job-seeker {
  width: 72vw;
}
@media screen and (min-width: 768px) {
  .mv__image--job-seeker {
    width: 37.6388888889vw;
  }
}

.mv__image--company {
  width: 72vw;
}
@media screen and (min-width: 768px) {
  .mv__image--company {
    width: 37.6388888889vw;
  }
}

.jobseeker-link {
  margin: -0.625rem 0 0;
  padding: 0 2.5rem 3.125rem;
  background: #f1f1f1;
}
@media screen and (min-width: 768px) {
  .jobseeker-link {
    margin: -0.625rem 0 0;
    padding: 0 0 8.75rem;
  }
}

.contact__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.contact .contact__title {
  margin-bottom: 3.125rem;
}

.contact__image {
  margin-bottom: 3.375rem;
}
@media screen and (min-width: 768px) {
  .contact__image {
    margin-bottom: 5.1875rem;
  }
}

.contact__image img {
  margin: 0 auto;
}

.contact__button-wrapper {
  margin-bottom: 3.25rem;
}
@media screen and (min-width: 768px) {
  .contact__button-wrapper {
    margin-bottom: 9.6875rem;
  }
}

.reservation {
  background: #f1f1f1;
  margin-top: -42.6666666667vw;
  padding: 52vw 1.25rem 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  .reservation {
    margin-top: -12.0054570259vw;
    padding: 17.0532060027vw 0 3.4106412005vw;
  }
}
.reservation__title {
  text-align: center;
  color: #2e8a57;
}
.reservation__agree {
  margin: 1.875rem 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
.reservation__agree label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.reservation__agree label input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #2e8a57;
}
.reservation__agree label a {
  text-decoration: underline;
  color: #009aff;
}
.reservation__agree label a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .reservation__agree {
    font-size: 1.125rem;
  }
}
.reservation__action {
  text-align: center;
  margin-bottom: 0.625rem;
}
.reservation__action .btn[disabled], .reservation__action .btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.reservation__action .btn:hover {
  cursor: pointer;
}
.reservation__action + p {
  text-align: center;
  margin-bottom: 6.25rem;
}

/*@use "form";
@use "form-checkbox";
@use "form-input";
@use "form-radio";
@use "form-select";
@use "form-submit";
@use "form-textarea";*/
.trouble--job-seeker {
  background: url("../images/jobseeker/bg-gray-sp.png") no-repeat top center/100% auto, #2e8a57;
  color: #fff;
  padding: 7.3125rem 0 0;
}
@media screen and (min-width: 768px) {
  .trouble--job-seeker {
    background: url("../images/jobseeker/bg-gray-pc.png") no-repeat top center/100% auto, #2e8a57;
    padding: 19.125rem 0 0;
  }
}

.trouble--company {
  background: #f1f1f1;
}

.trouble__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .trouble__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.trouble--company .trouble__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble__inner {
    padding: 0 1.5625rem;
    max-width: 81.25rem;
  }
}

.trouble--company .trouble__title {
  font-size: 1.625rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble__title {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}

.trouble .trouble__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.125rem;
  gap: 2.125rem;
}
@media screen and (min-width: 768px) {
  .trouble .trouble__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 3.125rem;
    margin-top: 5rem;
  }
}

.trouble--job-seeker .trouble__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trouble--company .trouble__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble__list {
    margin-top: 3.125rem;
  }
}

.trouble-card__text {
  margin: 1.0625rem auto 0;
}
@media screen and (min-width: 768px) {
  .trouble-card__text {
    margin: 3.75rem auto 0;
  }
}

.trouble--job-seeker .trouble-card__text {
  width: 14.375rem;
}
@media screen and (min-width: 768px) {
  .trouble--job-seeker .trouble-card__text {
    width: 27.8125rem;
  }
}

.trouble--company .trouble-card__text {
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble-card__text {
    width: 21.875rem;
  }
}

.trouble__item {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .trouble__item {
    font-size: 1.5625rem;
  }
}

.trouble-card__image img {
  margin: 0 auto;
}

.trouble__item:nth-child(1) img {
  width: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .trouble__item:nth-child(1) img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trouble__item:nth-child(2) img {
  width: 12.875rem;
}
@media screen and (min-width: 768px) {
  .trouble__item:nth-child(2) img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trouble__item:nth-child(3) img {
  width: 9.4375rem;
}
@media screen and (min-width: 768px) {
  .trouble__item:nth-child(3) img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trouble--company .trouble__item:nth-child(3) img {
  width: 6.5rem;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble__item:nth-child(3) img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trouble__arrow {
  margin: 3.5625rem auto 0;
  width: 3.5625rem;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .trouble__arrow {
    margin: 0.875rem auto 0;
    width: 7.0625rem;
  }
}

.trouble--company .trouble__arrow {
  margin: 1.5625rem auto 0;
  width: 2.625rem;
}
@media screen and (min-width: 768px) {
  .trouble--company .trouble__arrow {
    margin: 3.25rem auto 0;
    width: 7.0625rem;
  }
}

.solution--job-seeker {
  background: url("../images/jobseeker/bg-green-sp.png") no-repeat top center/100% auto, #fff;
  margin: -5.9375rem 0 0;
  padding: 7.9375rem 0 0;
}
@media screen and (min-width: 768px) {
  .solution--job-seeker {
    background: url("../images/jobseeker/bg-green-pc.png") no-repeat top center/100% auto, #fff;
    margin: -12rem 0 0;
    padding: 14.25rem 0 0;
  }
}

.solution--company {
  background: #2e8a57;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 16vw, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 16vw, 100% 100%, 0 100%);
  margin: -3.875rem 0 0;
  padding: 6.8125rem 0 0;
}
@media screen and (min-width: 768px) {
  .solution--company {
    -webkit-clip-path: polygon(0 0, 100% 15.625rem, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 15.625rem, 100% 100%, 0 100%);
    margin: -16.25rem 0 0;
    padding: 19.25rem 0 0;
  }
}

.solution__inner {
  margin: auto;
  padding: 0 1.1875rem;
  max-width: 37.5rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .solution__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.solution__content {
  margin-top: 0.9375rem;
}

.solution--company .solution__content {
  margin-top: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .solution--company .solution__content {
    margin-top: 0.9375rem;
  }
}

.solution--company .solution__title {
  font-size: 1.625rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .solution--company .solution__title {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}

.solution__text {
  margin: 0.75rem 0.375rem 1.375rem;
  font-size: 0.875rem;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .solution__text {
    margin: 3.125rem auto 3.4375rem;
    font-size: 1.5625rem;
    line-height: 1.7;
  }
}

.solution--company .solution__text {
  margin: 0.5rem 0.375rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .solution--company .solution__text {
    margin: 3.125rem auto 3.4375rem;
  }
}

.solution--job-seeker .solution-card__text {
  width: 27.8125rem;
}

.solution--company .solution-card__text {
  width: 21.875rem;
}

.solution__image img {
  margin: 0 auto;
}

.solution__button-wrapper {
  margin: 6.25rem auto;
}

.merit {
  background-color: #2e8a57;
  padding-top: 3.875rem;
  padding-bottom: 6.25rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16vw), 0 100%);
}
@media screen and (min-width: 768px) {
  .merit {
    padding-top: 8rem;
    padding-bottom: 11.25rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15.625rem), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15.625rem), 0 100%);
  }
}

.merit__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .merit__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.merit__title {
  margin-bottom: 0.9375rem;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .merit__title {
    margin-bottom: 1.0625rem;
    font-size: 3.125rem;
  }
}
.merit__title .section-title__text {
  color: #fff;
}

.merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .merit__list {
    gap: 2rem;
    margin-bottom: 3.75rem;
  }
}

.merit-card {
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
}

.merit-card__header {
  padding: 0.375rem 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .merit-card__header {
    padding: 1.5rem 1.875rem 1rem;
  }
}

.merit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2e8a57;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .merit-card__title {
    font-size: 1.875rem;
  }
}

.merit-card__body {
  padding: 0 0.625rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .merit-card__body {
    padding: 0 1.875rem 1.875rem;
  }
}

.merit-card__text {
  color: #4d4d4d;
  font-size: 0.875rem;
  line-height: 1.45s;
}
@media screen and (min-width: 768px) {
  .merit-card__text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.merit .app__button-wrapper {
  margin: 0 auto 1.875rem;
}
@media screen and (min-width: 768px) {
  .merit .app__button-wrapper {
    margin: 5.75rem auto;
  }
}

.merit .app__button-wrapper .button__top {
  color: #fff;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .merit .app__button-wrapper .button__top {
    margin: 0 auto;
  }
}

.reason {
  overflow-x: hidden;
  padding: 5rem 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 4.0625rem 0 1.75rem;
  }
}

.reason__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reason__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.reason__title {
  color: #2e8a57;
}

.reason-list {
  counter-reset: number;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .reason-list {
    margin-top: 10.625rem;
  }
}

.reason-list__item {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 14.4375rem;
}
@media screen and (min-width: 768px) {
  .reason-list__item {
    height: 34.75rem;
    padding-top: 6.875rem;
  }
}

.reason-list__item + .reason-list__item {
  margin-top: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .reason-list__item + .reason-list__item {
    margin-top: 10.625rem;
  }
}

@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(odd) {
    padding-right: 40%;
  }
}

@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(even) {
    padding-left: 40%;
  }
}

.reason-list__item:nth-of-type(1) {
  background: url(../images/jobseeker/reason-list-img01-sp.png) no-repeat top center/100% auto;
}
@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(1) {
    background: url(../images/jobseeker/reason-list-img01-pc.png) no-repeat top center/cover;
  }
}

.reason-list__item:nth-of-type(2) {
  background: url(../images/jobseeker/reason-list-img02-sp.png) no-repeat top center/100% auto;
}
@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(2) {
    background: url(../images/jobseeker/reason-list-img02-pc.png) no-repeat top center/cover;
  }
}

.reason-list__item:nth-of-type(3) {
  background: url(../images/jobseeker/reason-list-img03-sp.png) no-repeat top center/100% auto;
}
@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(3) {
    background: url(../images/jobseeker/reason-list-img03-pc.png) no-repeat top center/cover;
  }
}

.reason-list__item-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reason-list__item-img {
    max-width: 37.5rem;
  }
}

.reason-list__item-text-wrap {
  margin: 1.25rem auto 0;
  max-width: 39.375rem;
  width: calc(100% - 2.5rem);
  background: #2e8a57;
  border-radius: 0.625rem;
  color: #fff;
  padding: 1rem 1.25rem 1.1875rem;
}
@media screen and (min-width: 768px) {
  .reason-list__item-text-wrap {
    margin-top: 0;
    padding: 2.0625rem 3.125rem 3.3125rem 3.125rem;
    width: 100%;
  }
}

.reason-list__item-title {
  font-size: 1.625rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason-list__item-title {
    font-size: 1.875rem;
    line-height: 1.3;
  }
}

.reason-list__item-title::before {
  counter-increment: number;
  content: "0" counter(number);
  margin-bottom: 0.9375rem;
  display: block;
  font-size: 5.75rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  color: #4d4d4d;
  top: -19rem;
  left: -1.375rem;
}
@media screen and (min-width: 768px) {
  .reason-list__item-title::before {
    font-size: 11.4375rem;
    top: -15.625rem;
    left: -3.25rem;
  }
}

.reason-list__item:nth-of-type(even) .reason-list__item-title::before {
  right: -1.625rem;
  left: auto;
}
@media screen and (min-width: 768px) {
  .reason-list__item:nth-of-type(even) .reason-list__item-title::before {
    right: -3.25rem;
  }
}

.reason-list__item-text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .reason-list__item-text {
    margin-top: 1.4375rem;
    font-size: 1.1875rem;
    line-height: 1.8;
  }
}

.reason-list__note {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .reason-list__note {
    font-size: 1.1875rem;
  }
}

.jobs {
  overflow-x: hidden;
  background: url(../images/jobseeker/bg-white-sp.png) no-repeat top center/100% auto, #f1f1f1;
  padding: 5.875rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .jobs {
    background: url(../images/jobseeker/bg-white-pc.png) no-repeat top center/100% auto, #f1f1f1;
    padding: 12rem 0 0;
  }
}

.jobs__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .jobs__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.jobs__slick-wrap {
  position: relative;
}

.jobs__title {
  color: #2e8a57;
}

.jobs__image {
  position: absolute;
  width: 8.3125rem;
  top: -5.75rem;
  left: -0.25rem;
}
@media screen and (min-width: 768px) {
  .jobs__image {
    width: 16.375rem;
    top: -12rem;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .jobs__image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: -12rem;
    left: 11.5rem;
  }
}

.jobs-top-text {
  text-align: center;
  margin-top: 1.875rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .jobs-top-text {
    font-size: 1rem;
  }
}

.jobs-card a {
  padding: 0.9375rem 0.9375rem 2.1875rem;
  height: 100%;
  display: block;
  background-color: #fff9ee;
}

.jobs-card a:hover {
  opacity: 1;
}

.jobs-card__item {
  padding: 0 1.3333333333vw 0;
  margin: 8vw 1.3333333333vw 8vw;
  aspect-ratio: 226/427;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .jobs-card__item {
    padding: 0 1.0416666667vw 0;
    margin: 4.8611111111vw 1.0416666667vw 2.0833333333vw;
  }
}

.jobs-card__item::-webkit-scrollbar {
  width: 6px;
  margin-left: 4px;
}

.jobs-card__item::-webkit-scrollbar-track {
  background: transparent;
}

.jobs-card__item::-webkit-scrollbar-thumb {
  background-color: #4d4d4d;
  border-radius: 3px;
}

.jobs-card__img {
  width: 100%;
  overflow: hidden;
}

.jobs-card__img img {
  width: 100%;
  aspect-ratio: 300/186;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.jobs-card:hover .jobs-card__img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.jobs-card__body {
  margin-top: 1.3125rem;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .jobs-card__body {
    margin-top: 0.9375rem;
    font-size: 1.25rem;
  }
}

.jobs-card__title {
  font-size: 0.5rem;
  border-bottom: solid 2px #ce8c4f;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .jobs-card__title {
    font-size: 1.1875rem;
    padding-bottom: 1.125rem;
  }
}

.jobs-card__body h4 {
  font-size: 0.3125rem;
  padding-top: 0.625rem;
  color: #a9a9a9;
}
@media screen and (min-width: 768px) {
  .jobs-card__body h4 {
    font-size: 0.625rem;
    padding-top: 1.25rem;
  }
}

.jobs-card__body p {
  font-size: 0.3125rem;
  line-height: 1.4;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .jobs-card__body p {
    font-size: 0.625rem;
  }
}

.jobs-swiper {
  position: relative;
  margin: 1.875rem -1.25rem 0;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .jobs-swiper {
    margin: 4.375rem auto 0;
    width: 59.0625rem;
    width: 100%;
  }
}

.jobs-swiper .swiper-slide {
  width: auto;
  background: url("../images/jobseeker/bg-sphone.png") no-repeat top center/cover;
  aspect-ratio: 274/561;
}
@media screen and (min-width: 768px) {
  .jobs-swiper .swiper-slide {
    width: 100%;
  }
}

.jobs-swiper__button-wrap {
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.jobs-swiper .swiper-pagination {
  bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .jobs-swiper .swiper-pagination {
    bottom: 0.625rem;
  }
}

.jobs-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #2e8a57;
  width: 0.625rem;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .jobs-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.jobs-swiper__button-wrap {
  margin: 2.625rem 0 2.6875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .jobs-swiper__button-wrap {
    margin: 2.8125rem 0 3.4375rem 0;
  }
}

.jobs-swiper__button-wrap .swiper-button-prev,
.jobs-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 2.3125rem;
  height: 2.3125rem;
  background-color: #fff;
  border: solid 1px #2e8a57;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .jobs-swiper__button-wrap .swiper-button-prev,
  .jobs-swiper__button-wrap .swiper-button-next {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.jobs-swiper__button-wrap .swiper-button-next {
  margin-left: 13.75rem;
}
@media screen and (min-width: 768px) {
  .jobs-swiper__button-wrap .swiper-button-next {
    margin-left: 16.25rem;
  }
}

.jobs-swiper__button-wrap .swiper-button-prev::before,
.jobs-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #2e8a57;
  border-right: 0.1875rem solid #2e8a57;
}

.jobs-swiper__button-wrap .swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.jobs-swiper__button-wrap .swiper-button-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.jobs-swiper .is-static .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
}
.jobs-swiper .is-static.is-single .swiper-slide, .jobs-swiper .is-static.is-few .swiper-slide {
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .jobs-swiper .is-static.is-single .swiper-slide, .jobs-swiper .is-static.is-few .swiper-slide {
    width: 17.125rem;
  }
}
.jobs-swiper .is-static .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nodata {
  text-align: center;
}

.faq {
  margin-bottom: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-bottom: 4.375rem;
  }
}

.faq__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    padding: 0 1.5625rem;
    max-width: 66.25rem;
  }
}

.faq__title {
  margin: 2.1875rem auto 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .faq__title {
    margin: 3.75rem auto 5.9375rem;
  }
}

.faq__list {
  border-top: solid 1px #2e8a57;
}

.faq-list__item {
  border-bottom: solid 1px #2e8a57;
}

.faq-list__item-question {
  padding: 0.4375rem 2.5rem 0.75rem 2.375rem;
  position: relative;
  font-size: 0.9375rem;
  text-indent: -1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question {
    padding: 0.4375rem 3.75rem 0.4375rem 3.125rem;
    font-size: 1.875rem;
  }
}

.faq-list__item-question::before,
.faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 1.875rem;
  right: 0.75rem;
  width: 1.25rem;
  height: 0.1875rem;
  background: #aed05c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question::before,
  .faq-list__item-question::after {
    top: 2.5rem;
    width: 1.875rem;
    height: 0.3125rem;
    right: 0;
  }
}

.faq-list__item-question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq-list__item-question span {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  display: inline-block;
  color: #aed05c;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question span {
    margin-left: 0;
    font-size: 2.8125rem;
  }
}

.faq-list__item-answer {
  padding: 0.4375rem 2.5rem 0.75rem 2.375rem;
  display: none;
  font-size: 0.9375rem;
  text-indent: -1.25rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer {
    padding: 0 2.5rem 2.8125rem 3.125rem;
    font-size: 1.875rem;
  }
}

.faq-list__item-answer span {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  display: inline-block;
  color: #3fb484;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer span {
    margin-left: 0;
    font-size: 2.8125rem;
  }
}

.feature {
  overflow-x: hidden;
  padding-top: 2.375rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.feature__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature__inner {
    padding: 0;
    max-width: 68.125rem;
  }
}

.feature__title {
  color: #2e8a57;
  font-size: 1.6875rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}

.feature-list {
  counter-reset: number;
  margin: 1.8125rem 0 1.875rem;
  padding: 0 0 0;
}
@media screen and (min-width: 768px) {
  .feature-list {
    margin: 4.375rem 0 7.3125rem;
    padding: 0 2.5rem 0 0;
  }
}

@media screen and (min-width: 768px) {
  .feature-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.feature-list__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.feature-list__item-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-list__item-img {
    max-width: 26rem;
  }
}

.feature-list__item:nth-of-type(1) .feature-list__item-img {
  margin: 0 0 0 auto;
  width: 14.4375rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(1) .feature-list__item-img {
    margin: 10rem 0 0 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.feature-list__item:nth-of-type(2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(2) {
    margin-top: 7.0625rem;
  }
}

.feature-list__item:nth-of-type(2) .feature-list__item-img {
  margin: 0 0 0 auto;
  width: 13.1875rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(2) .feature-list__item-img {
    margin: -3.75rem -1.0625rem 0 -2.375rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.feature-list__item:nth-of-type(3) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(3) {
    margin-top: 6.0625rem;
  }
}

.feature-list__item:nth-of-type(3) .feature-list__item-img {
  margin: 0 1.25rem 0 auto;
  width: 12.5625rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(3) .feature-list__item-img {
    margin: -1.125rem 0.8125rem 0 -1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.feature-list__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .feature-list__item-img img {
    width: auto;
  }
}

.feature-list__item-text-wrap {
  margin: 2.0625rem auto 0;
  max-width: 39.375rem;
  width: 100%;
  background: #2e8a57;
  border-radius: 0.625rem;
  color: #fff;
  padding: 0.3125rem 0.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item-text-wrap {
    margin-top: 0;
    padding: 2.0625rem 2.5rem 2.3125rem 3.125rem;
    width: 39.1875rem;
    min-height: 14.25rem;
  }
}

.feature-list__item:nth-of-type(even) .feature-list__item-text-wrap {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(even) .feature-list__item-text-wrap {
    margin-left: 2.5rem;
  }
}

.feature-list__item-title {
  font-size: 1.625rem;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature-list__item-title {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}

.feature-list__item-title::before {
  counter-increment: number;
  content: "0" counter(number);
  margin-bottom: 0.9375rem;
  display: block;
  font-size: 6.5rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  color: #4d4d4d;
  top: -11rem;
  left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .feature-list__item-title::before {
    top: -1.1875rem;
    left: -27.25rem;
  }
}

@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(2) .feature-list__item-title::before {
    top: -5.9375rem;
    left: 45.75rem;
  }
}

@media screen and (min-width: 768px) {
  .feature-list__item:nth-of-type(3) .feature-list__item-title::before {
    top: -8.4375rem;
    left: -27.25rem;
  }
}

.feature-list__item-text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.58;
}
@media screen and (min-width: 768px) {
  .feature-list__item-text {
    margin-top: 0.625rem;
    font-size: 1.1875rem;
    line-height: 2;
  }
}

.feature-list__note {
  font-size: 0.875rem;
  line-height: 1.58;
}
@media screen and (min-width: 768px) {
  .feature-list__note {
    font-size: 1.1875rem;
    line-height: 1.8;
  }
}

.container__inner {
  margin: 3.4375rem auto;
  padding: 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container__inner {
    margin: 5.8125rem auto;
    padding: 1.5625rem;
    max-width: 75rem;
  }
}
.container__inner h1 {
  text-align: center;
  color: #2e8a57;
  margin: 3.125rem 0;
  font-weight: 800;
}
.container__inner h2 {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  -moz-text-align-last: left;
       text-align-last: left;
}
.container__inner ol li {
  list-style: auto inside;
  text-indent: -1em;
  padding-left: 1em;
}
.container__inner ul li {
  list-style: disc inside;
  text-indent: -1em;
  padding-left: 1em;
}
.container__inner ul li > ul li {
  list-style: circle inside;
  text-indent: -1em;
  padding-left: 1em;
}
.container__inner ul li > ol li {
  list-style: auto inside;
  text-indent: -1em;
  padding-left: 1em;
}
.container__inner a {
  color: #009aff;
}