/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: clip;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

a {
  display: block;
}

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

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

:root {
  --base-font-color: #4d2e1e;
  --main: #f58200;
  --white: #fff;
  --green: #009544;
  --bg-orange: #fce5bd;
  --bg-light-green: #e6facd;
  --bg-emerald: #d7fadc;
  --transition: 0.3s ease;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-21: 1.3125rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-36: 2.25rem;
  --fs-40: 2.5rem;
  --header-height: 100px;
  --lh-18: 1.7222222222;
  --lh-19: 1.7894736842;
  --lh-21: 1.7619047619;
  --lh-24: 1.5;
  --radius20: 20px;
}

@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }
}
@media (max-width: 1024px) {
  :root {
    --fs-17: 1rem;
    --fs-18: 1.0625rem;
    --fs-19: 1.0625rem;
    --fs-21: 1.1875rem;
    --fs-24: 1.25rem;
    --fs-28: 1.5625rem;
    --fs-32: 1.75rem;
    --fs-36: 1.875rem;
    --fs-40: 2.0625rem;
    --radius20: 15px;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-17: 0.875rem;
    --fs-18: 0.9375rem;
    --fs-19: 1rem;
    --fs-21: 1.0625rem;
    --fs-24: 1.0625rem;
    --fs-28: 1.25rem;
    --fs-32: 1.375rem;
    --fs-36: 1.4375rem;
    --fs-40: 1.625rem;
    --header-height: 62px;
    --radius20: 10px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family:
    "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", YuGothic, Meiryo, sans-serif;
  position: relative;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: var(--lh-18);
  color: var(--base-font-color);
  background-color: #fff9ef;
}

main {
  position: relative;
  overflow: clip;
}

.section {
  padding-top: 90px;
  padding-bottom: 130px;
  max-width: 1600px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.inner {
  width: 92%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner--s {
  max-width: 980px;
}
.inner--l {
  max-width: 1100px;
}
.inner--max {
  max-width: 1600px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.btn-container {
  max-width: 465px;
  margin-inline: auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .btn-container {
    margin-top: 30px;
  }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 6%;
}
@media (max-width: 768px) {
  .btn-group {
    gap: 16px;
  }
}
.btn-group .btn {
  margin-inline: unset;
}

.btn {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding: 1em 3.5em;
  color: var(--white);
  width: fit-content;
  min-width: 380px;
  margin-inline: auto;
  background:
    url("../images/icon_arrow_right.svg") no-repeat calc(100% - 1.8em)
      center/0.6em,
    var(--main);
  transition: opacity var(--transition);
  border-radius: var(--radius20);
  text-align: center;
}
@media (max-width: 768px) {
  .btn {
    font-size: 0.9375rem;
    min-width: 250px;
  }
}
.btn--green {
  background-color: var(--green);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn:active {
    opacity: 0.7;
  }
}

.heading-container {
  font-size: var(--fs-40);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 40px;
  }
}

.heading {
  margin-bottom: 0.2em;
}

.heading-en {
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  color: var(--main);
}

.top-btn {
  position: fixed;
  right: 2%;
  bottom: 3%;
  z-index: 10;
  visibility: hidden;
  width: 70px;
  aspect-ratio: 1;
  background:
    url(../images/icon_arrow_down.svg) no-repeat center/30%,
    var(--main);
  transform: scale(-1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(-1);
  transition: opacity var(--transition);
}
.top-btn.is-show {
  visibility: visible;
  opacity: 1;
}
.top-btn.is-stop {
  position: absolute;
  transform: scale(-1) translateY(50%);
}
.top-btn::before {
  background-color: var(--white);
  mask-image: url("../images/icon_chevron_up.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  justify-self: center;
  width: 0.7em;
  aspect-ratio: 14/9;
  content: "";
}
@media (max-width: 1024px) {
  .top-btn {
    width: 60px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top-btn {
    bottom: 65px;
    width: 50px;
    font-size: 14px;
  }
}
.top-btn:hover {
  opacity: 0.9;
}

.entry-btn-group {
  position: fixed;
  right: 10px;
  bottom: 13%;
  z-index: 30;
  display: grid;
  gap: 20px 0;
}
@media (max-width: 768px) {
  .entry-btn-group {
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    transform: translateY(100%);
    transition: transform var(--transition);
  }
  .entry-btn-group.is-show {
    transform: translateY(0);
  }
}

.entry-btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  width: 7.6em;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background:
    url(../images/icon_arrow_right_02.svg) no-repeat calc(100% - 0.65em)
      center/0.55em,
    var(--main);
  transition: opacity 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.entry-btn--visit {
  background-color: var(--green);
}
@media (max-width: 1024px) {
  .entry-btn {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .entry-btn {
    font-size: 12px;
    width: 100%;
    padding: 1em 0.2em;
    text-align: center;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    aspect-ratio: unset;
    background-position-x: calc(100% - 1.5em);
  }
  .entry-btn br {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover,
  .entry-btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .entry-btn:active {
    opacity: 0.7;
  }
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 7px 4% 7px 4.875%;
  background-color: var(--white);
}
.header_logo-wrap {
  height: 100%;
}
.header_logo {
  height: 100%;
  width: auto;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover,
  .header_logo:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.7;
  }
}

.header-nav {
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 2em;
  align-items: center;
  font-size: 1.125rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .header-nav_list {
    font-size: 1.0625rem;
  }
}
.header-nav_link {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover,
  .header-nav_link:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header-nav_link:active {
    opacity: 0.7;
  }
}
.header-nav_btn-wrap {
  display: none;
}
.header-nav_btn {
  font-size: 0.875rem;
  width: 13em;
  padding: 0.9em 1em;
  color: var(--white);
  background-color: var(--main);
  border-radius: var(--radius20);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.header-nav_btn--visit {
  background-color: var(--green);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn:hover,
  .header-nav_btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header-nav_btn:active {
    opacity: 0.7;
  }
}

.hamburger {
  position: fixed;
  top: 14px;
  right: 10px;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 31px);
  height: calc(var(--header-height) - 25px);
}
.hamburger > span {
  position: absolute;
}
.hamburger > span:nth-of-type(1),
.hamburger > span:nth-of-type(2) {
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--base-font-color);
  transform: translateX(-50%);
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 15%;
}
.hamburger > span:nth-of-type(2) {
  top: 38%;
}
.hamburger > span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  color: var(--base-font-color);
  text-align: center;
}
.hamburger.js-close > span:nth-of-type(1) {
  top: 25%;
  transform: translateX(-50%) rotate(25deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  top: 25%;
  transform: translateX(-50%) rotate(-25deg);
}

@media (max-width: 768px) {
  .header {
    position: relative;
    padding: 4px 10px;
    margin-bottom: calc(var(--header-height) * -1);
    background-color: unset;
  }
  .header-nav-container {
    position: fixed;
    inset: 0;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    content: "";
    background: rgba(77, 46, 30, 0.5) !important;
    backdrop-filter: unset;
    overflow-y: auto;
    overscroll-behavior-y: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition);
  }
  .js-active .header-nav-container {
    visibility: visible;
    opacity: 1;
  }
  .header-nav-container::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 1px);
    pointer-events: none;
  }
  .header-nav {
    display: grid;
    margin-left: auto;
    width: min(90%, 400px);
    min-height: 100%;
    padding: var(--header-height) 2em 50px;
    align-content: center;
    background-color: #fff9ef;
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    row-gap: 1.8em;
    font-size: 1rem;
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_item + .header-nav_btn-wrap {
    margin-top: 1em;
  }
  .header-nav_btn-wrap {
    display: block;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  padding: 50px 5% 60px;
  font-size: 0.875rem;
  color: var(--white);
  background-color: var(--base-font-color);
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 2% 80px;
    font-size: 0.75rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 10px;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1em;
  display: block;
  width: 1px;
  height: 0.9em;
  content: "";
  background: var(--white);
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:not(:last-child)::after:hover,
  .footer-nav a:not(:last-child)::after:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:not(:last-child)::after:active {
    opacity: 0.75;
  }
}
@media (width <= 600px) {
  .footer-nav a:nth-last-child(2)::after {
    display: none;
  }
}

.copyright {
  line-height: 1.3;
  text-align: center;
}

/* ------------------------
    mv
------------------------ */
.mv {
  margin-top: var(--header-height);
  padding-top: 2vw;
  padding-bottom: 4vw;
  width: 104%;
  margin-left: -2%;
}

/* ------------------------
    about
------------------------ */
.about {
  position: relative;
}
.about::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(-125px - 4vw);
  left: -7%;
  width: 122.8571428571%;
  aspect-ratio: 142/75;
  z-index: -1;
  background: url(../images/bg_about.svg) no-repeat center/contain;
  min-width: 1630px;
}
@media (max-width: 768px) {
  .about::before {
    min-width: unset;
    width: unset;
    height: 610px;
    background:
      url(../images/deco_10.svg) no-repeat top right/10%,
      url(../images/bg_about_sp.svg) no-repeat center/contain;
    top: calc(-95px - 4vw);
    left: -13%;
  }
}
.about .heading-container {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .about .heading {
    font-size: 1.375rem;
  }
}
.about_txt-container {
  padding-bottom: min(39vw, 300px);
}
@media (max-width: 768px) {
  .about_txt-container {
    position: relative;
    padding-bottom: 24vw;
  }
  .about_txt-container::before {
    content: "";
    display: block;
    background: url(../images/deco_10.svg) no-repeat center/contain;
    width: max(100px, 29%);
    aspect-ratio: 42/25;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.about_txt {
  font-size: var(--fs-21);
  line-height: var(--lh-21);
  padding-left: 1em;
}
.about_txt + .about_txt {
  margin-top: 1.5em;
}
.about_inner {
  position: relative;
}
.about_inner::before {
  content: "";
  display: block;
  background: url(../images/deco_01.png) no-repeat center/contain;
  aspect-ratio: 1;
  width: 270px;
  position: absolute;
  right: -20%;
  z-index: -1;
  bottom: 14%;
}
@media (max-width: 768px) {
  .about_inner {
    width: 91%;
  }
}
.about_img {
  border-radius: var(--radius20);
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .about_img {
    position: relative;
  }
}
.about_img--01 {
  top: 20px;
  right: 2.0909090909%;
  width: 26.3636363636%;
}
@media (max-width: 768px) {
  .about_img--01 {
    width: 37%;
    transform: translate3d(0, 0, 0) translate(50%, -40%) !important;
  }
}
.about_img--02 {
  top: min(26vw, 385px);
  right: 17%;
  width: 27.2727272727%;
}
@media (max-width: 768px) {
  .about_img--02 {
    width: 40%;
    transform: translate(100%, -120%) !important;
    z-index: -2;
  }
}
.about_worries {
  display: grid;
  justify-content: center;
  transform: translateX(5%);
  padding-bottom: 45px;
  background:
    url(../images/deco_02.svg) no-repeat 7% 100%/6.5%,
    url(../images/deco_03.svg) no-repeat 83% 100%/7%;
}
@media (max-width: 1024px) {
  .about_worries {
    transform: translateX(3%);
    background-position-x: 5%, 95%;
  }
}
@media (max-width: 768px) {
  .about_worries {
    transform: translateX(0);
    margin-top: 30px;
    background-size: 0, 41px;
  }
}
.about_worries-txt {
  font-size: var(--fs-24);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about_worries-txt {
    line-height: 1.4;
  }
}
.about_worries-txt + .about_worries-txt {
  margin-top: 1.4em;
}
@media (max-width: 768px) {
  .about_worries-txt + .about_worries-txt {
    margin-top: 1em;
  }
}
.about_worries-txt--check {
  min-width: 15.1em;
  font-weight: 700;
  width: fit-content;
  position: relative;
  padding-left: 1.6em;
  padding-bottom: 0.1em;
  background: url(../images/deco_border_01.svg) no-repeat 1.3em 100% /
    calc(100% - 1.5em) auto;
}
.about_worries-txt--check::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1em;
  aspect-ratio: 49/50;
  background: url(../images/icon_check.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .about_worries-txt--check::before {
    top: 0.2em;
  }
}
.about_worries-txt--long {
  background-image: url(../images/deco_border_02.svg);
  padding-right: 0.3em;
}
.about_worries-txt--long .u-sp-s {
  display: none;
}
@media (max-width: 500px) {
  .about_worries-txt--long {
    background: url(../images/deco_border_01.svg) repeat-y 1.3em 35% /
      calc(100% - 1.5em) 1.4em;
  }
  .about_worries-txt--long .u-sp-s {
    display: block;
  }
}
.about_features {
  text-align: center;
  background-color: var(--bg-light-green);
  padding: 50px 5% 60px;
  border-radius: var(--radius20);
  margin-bottom: 125px;
  position: relative;
}
.about_features::before {
  content: "";
  display: block;
  background: url(../images/deco_01.png) no-repeat center/contain;
  aspect-ratio: 1;
  width: 545px;
  position: absolute;
  left: -20%;
  z-index: -1;
  top: -21%;
}
@media (max-width: 768px) {
  .about_features::before {
    width: 200px;
    top: -3%;
  }
}
.about_features::after {
  content: "";
  display: block;
  background: url(../images/deco_01.png) no-repeat center/contain;
  aspect-ratio: 1;
  width: 310px;
  position: absolute;
  z-index: -1;
  left: -7%;
  bottom: -10%;
}
@media (max-width: 768px) {
  .about_features::after {
    width: 150px;
    bottom: -5%;
  }
}
.about_features-heading {
  font-weight: 700;
  font-size: var(--fs-36);
  margin-bottom: 0.6em;
}
.about_features-cont {
  background-color: var(--white);
  border-radius: var(--radius20);
  padding: 40px 5%;
  background-repeat: no-repeat;
  background-position: 3% 0;
  background-size: 7.5%;
}
@media (max-width: 768px) {
  .about_features-cont {
    background-position: 3% 5px;
    background-size: min(12.5%, 50px);
  }
}
.about_features-cont--01 {
  background-image: url(../images/text_1.svg);
}
.about_features-cont--02 {
  background-image: url(../images/text_2.svg);
}
.about_features-cont--03 {
  background-image: url(../images/text_3.svg);
}
.about_features-cont + .about_features-cont {
  margin-top: 35px;
}
.about_features-cont-heading {
  font-weight: 700;
  font-size: var(--fs-36);
  line-height: 1.4;
  color: var(--main);
  margin-bottom: 0.4em;
}
.about_features-cont-txt {
  font-size: var(--fs-19);
  line-height: var(--lh-19);
}
.about_voice .heading-container {
  padding-bottom: 60px;
  margin-bottom: 0;
  padding-inline: 27%;
  background:
    url(../images/deco_04.svg) no-repeat 20% 25px/6.5%,
    url(../images/deco_05.svg) no-repeat 80% 15px/8%;
}
@media (max-width: 1200px) {
  .about_voice .heading-container {
    padding-inline: 15%;
    background-position:
      5% 25px,
      95% 15px;
  }
}
@media (max-width: 768px) {
  .about_voice .heading-container {
    padding-bottom: 30px;
    background-size: 8.5%, 11%;
  }
}

.voice-slider {
  overflow: visible;
}
.voice-slider .swiper-slide {
  width: 385px;
  height: auto;
}
@media (max-width: 768px) {
  .voice-slider .swiper-slide {
    width: 255px;
  }
}
.voice-slider_txt {
  font-size: var(--fs-21);
  line-height: 1.619047619;
  text-align: justify;
  padding: 1.5em 1em;
  height: 100%;
  background-color: var(--bg-orange);
  border: 1px solid #ff9933;
  border-radius: var(--radius20);
}
@media (max-width: 500px) {
  .voice-slider_txt {
    font-size: 0.9375rem;
  }
}

.pagination_txt {
  display: none;
}
@media (max-width: 768px) {
  .pagination_txt {
    display: block;
    text-align: center;
    padding-top: 1em;
    margin-bottom: -2em;
  }
}

.voice-slider .swiper-pagination {
  position: static;
  margin-top: 35px;
}
.voice-slider .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 1px solid var(--main);
  margin: 0 10px !important;
  opacity: 1;
}
@media (max-width: 768px) {
  .voice-slider .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px !important;
  }
}
.voice-slider .swiper-pagination-bullet-active {
  background-color: var(--main);
}

/* ------------------------
    job
------------------------ */
.job-wrap {
  background: url(../images/bg_01.svg) no-repeat center 0/100%;
  background-color: var(--bg-orange);
}

.job {
  padding-top: 14vw;
  background:
    url(../images/deco_06.svg) no-repeat 94% 8vw/21%,
    url(../images/deco_10.svg) no-repeat 13% 100%/22%;
}
@media (max-width: 768px) {
  .job {
    padding-top: 24vw;
  }
}
.job_heading {
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-36);
  margin-bottom: 55px;
}
.job_heading::before {
  content: "";
  display: block;
  width: 4em;
  aspect-ratio: 75/22;
  background: url(../images/deco_07.svg) no-repeat center/contain;
  margin-inline: auto;
  margin-bottom: 8px;
}

.job-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  max-width: 770px;
  margin-inline: auto;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .job-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.job-link_btn {
  font-weight: 700;
  background:
    url(../images/deco_16.svg) no-repeat center 7%/18px,
    url(../images/icon_arrow_down.svg) no-repeat center 87%/10%,
    var(--main);
  border-radius: 50%;
  aspect-ratio: 1;
  color: var(--white);
  text-align: center;
  display: grid;
  align-content: center;
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .job-link_btn {
    font-size: 1rem;
    line-height: 1.4;
    width: min(39%, 220px);
  }
}
@media (max-width: 500px) {
  .job-link_btn {
    font-size: 0.875rem;
    width: 46%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .job-link_btn:hover,
  .job-link_btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .job-link_btn:active {
    opacity: 0.7;
  }
}
.job-link_txt {
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.job-link_heading {
  font-size: 1.75rem;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .job-link_heading {
    font-size: 1.375rem;
    padding-bottom: 2%;
    margin-top: 0.3em;
  }
}
.job-link_heading::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 2px;
  border-radius: 2px;
}

.job-cont-container {
  margin-bottom: 120px;
}

.job-cont {
  background-color: var(--white);
  border-radius: var(--radius20);
  padding: 60px 5.5% 80px;
  overflow: clip;
}
@media (max-width: 768px) {
  .job-cont {
    padding: 45px 5.5% 50px;
  }
}
.job-cont + .job-cont {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .job-cont + .job-cont {
    margin-top: 60px;
  }
}
.job-cont_heading {
  color: var(--white);
  background-color: var(--main);
  text-align: center;
  font-size: var(--fs-36);
  font-weight: 700;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .job-cont_heading {
    margin-bottom: 30px;
  }
}
.job-cont_top {
  display: grid;
  grid-template-columns: 1fr 48.9795918367%;
  gap: 20px 5%;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .job-cont_top {
    grid-template-columns: 1fr 41%;
  }
}
@media (max-width: 768px) {
  .job-cont_top {
    grid-template-columns: 1fr;
  }
}
.job-cont_img {
  padding-inline: 7%;
}
@media (max-width: 1024px) {
  .job-cont_img {
    padding-inline: 0;
  }
}
@media (max-width: 768px) {
  .job-cont_img {
    padding-inline: 5%;
  }
}
.job-cont_img img {
  border-radius: var(--radius20);
}
.job-cont_sub-heading {
  font-size: var(--fs-32);
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .job-cont_sub-heading {
    margin-bottom: 25px;
  }
}
.job-cont_sub-heading::before {
  content: "";
  width: 1.1em;
  aspect-ratio: 1;
  display: inline-block;
  background: url(../images/icon_orange.svg) no-repeat center/contain;
  margin-right: 5px;
}
.job-cont_sub-heading--center {
  justify-content: center;
}

.job-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 4.5%;
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .job-features {
    gap: 20px 2.5%;
  }
}
@media (max-width: 768px) {
  .job-features {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
.job-features_cont {
  background-color: var(--bg-emerald);
  border-radius: 10px;
  padding: 1.7em 1.2em;
}
@media (max-width: 768px) {
  .job-features_cont {
    padding: 1.2em;
  }
}

.job-detail {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .job-detail {
    margin-bottom: 60px;
  }
}
.job-detail_cont {
  display: flex;
  align-items: start;
  gap: 30px 60px;
}
@media (max-width: 768px) {
  .job-detail_cont {
    display: block;
  }
}
.job-detail_question {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .job-detail_question {
    justify-content: start;
  }
}
.job-detail_question-txt {
  font-size: var(--fs-24);
  line-height: 1.5;
  writing-mode: vertical-rl;
  color: var(--main);
  padding-top: 1.5em;
}
@media (max-width: 768px) {
  .job-detail_question-txt {
    padding-top: 0.7em;
    padding-left: 20px;
    writing-mode: horizontal-tb;
  }
}
.job-detail_question-img {
  width: 74px;
}
@media (max-width: 1024px) {
  .job-detail_question-img {
    width: 56px;
  }
}
@media (max-width: 768px) {
  .job-detail_question-img {
    width: 40px;
    margin-top: -130%;
  }
}

.job-slider {
  margin-top: 17px;
  margin-right: -7%;
}
.job-slider .swiper-slide {
  width: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .job-slider .swiper-slide {
    width: 230px;
  }
}
.job-slider_item {
  height: 100%;
  background-color: #fff9ef;
  border: 1px solid #ff9933;
  border-radius: var(--radius20);
  padding: 1.5em 1.75em;
}
.job-slider_heading {
  font-size: var(--fs-28);
  font-weight: 700;
  text-indent: 0.3em;
  color: var(--main);
  margin-bottom: 0.5em;
}
.job-slider_txt {
  font-size: var(--fs-18);
  text-align: justify;
}
@media (max-width: 500px) {
  .job-slider_txt {
    font-size: 0.9375rem;
  }
}
.job-slider_controller {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 8px;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .job-slider_controller {
    justify-content: center;
    margin-top: 20px;
  }
}
.job-slider .swiper-pagination {
  position: static;
}
.job-slider .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: var(--white);
  border: 1px solid var(--green);
  margin: 0 6px !important;
  opacity: 1;
}
.job-slider .swiper-pagination-bullet-active {
  background-color: var(--green);
}
.job-slider .swiper-button-next,
.job-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  background:
    url(../images/icon_arrow_right_02.svg) no-repeat 53% center/25%,
    var(--green);
  border-radius: 50%;
  margin-top: 0;
}
.job-slider .swiper-button-next::after,
.job-slider .swiper-button-prev::after {
  content: none;
}
.job-slider .swiper-button-prev {
  transform: scale(-1);
}

.job-voice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 4.5%;
  padding-bottom: 85px;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .job-voice {
    gap: 20px 2.5%;
  }
}
@media (max-width: 768px) {
  .job-voice {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
}
.job-voice_cont {
  font-size: var(--fs-17);
  background-color: var(--bg-orange);
  border-radius: var(--radius20);
  padding: 1.5em 1.5em 2.5em;
  position: relative;
}
@media (max-width: 768px) {
  .job-voice_cont {
    margin-bottom: 20%;
  }
  .job-voice_cont:nth-child(2) .job-voice_img {
    right: unset;
    left: 3px;
  }
}
.job-voice_txt {
  line-height: 1.5294117647;
  text-align: justify;
}
.job-voice_img {
  position: absolute;
  width: 40%;
  top: 100%;
  right: 3px;
  transform: translateY(-30%);
}
@media (max-width: 768px) {
  .job-voice_img {
    width: min(30%, 110px);
  }
}

.other-job {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  align-content: start;
  min-height: 300px;
}
@media (max-width: 768px) {
  .other-job {
    grid-template-columns: 1fr;
    row-gap: 20px;
    min-height: 260px;
  }
}
.other-job_heading-container {
  padding-right: 20%;
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .other-job_heading-container {
    margin-left: 7%;
  }
}
.other-job_heading-container::before {
  content: "";
  display: block;
  width: 51%;
  aspect-ratio: 421/418;
  background: url(../images/deco_09.png) no-repeat center/contain;
  top: 0;
  left: 0;
  transform: translate(-34%, -22%);
  position: absolute;
  z-index: -1;
}
.other-job_heading {
  font-size: var(--fs-40);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.other-job_btn-wrap {
  border-radius: var(--radius20);
  overflow: hidden;
  text-align: center;
}
@media (max-width: 768px) {
  .other-job_btn-wrap {
    width: 90%;
    max-width: 440px;
    margin-inline: auto;
  }
}
.other-job_btn {
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--white);
  background-color: var(--main);
  width: 100%;
  vertical-align: bottom;
  min-height: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .other-job_btn {
    min-height: 75px;
  }
}
.other-job_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2em;
  width: 1em;
  aspect-ratio: 128/75;
  transform: translateY(-50%);
  background: url(../images/icon_arrow_down.svg) no-repeat center/contain;
}
.other-job_btn.is-open::after {
  transform: translateY(-50%) scale(-1);
}
.other-job_list {
  font-size: var(--fs-21);
  background-color: #fcfaf0;
  display: none;
}
.other-job_item + .other-job_item {
  border-top: 2px solid var(--main);
}
.other-job_link {
  min-height: 80px;
  display: grid;
  align-content: center;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .other-job_link:hover,
  .other-job_link:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .other-job_link:active {
    opacity: 0.7;
  }
}

.tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}
.tab_btn {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1em 0.3em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tab_btn[data-tab="selection"] {
  background-color: #ffb41e;
}
.tab_btn[data-tab="joining"] {
  background-color: #ff96a0;
}
.tab_btn[data-tab="nurse"] {
  background-color: #ff9623;
}
@media (max-width: 1024px) {
  .tab_btn {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .tab_btn {
    font-size: 0.8125rem;
    min-height: 4em;
    padding: 0.5em;
  }
}
.tab_btn.is-active {
  padding: 1.5em 0.3em;
}
@media (max-width: 768px) {
  .tab_btn.is-active {
    padding: 0.5em;
    min-height: 5em;
  }
}

.panel-wrap {
  position: relative;
  border: 1px solid var(--black);
  margin-bottom: 80px;
}

.panel {
  background-color: var(--bg-orange);
  opacity: 0;
  padding: 80px 40px;
  visibility: hidden;
  pointer-events: none;
  transition: opacity ease-out 0.4s;
  width: 100%;
  border-bottom-left-radius: var(--radius20);
  border-bottom-right-radius: var(--radius20);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .panel {
    padding: 25px 5% 30px;
  }
}
.panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.panel_item-group {
  counter-reset: panel-item-num;
}
.panel_item {
  background-color: #fcfaf0;
  border-radius: var(--radius20);
  padding: 30px 20px;
  counter-increment: panel-item-num;
}
.panel_item + .panel_item {
  margin-top: 30px;
}
.panel_question {
  font-size: var(--fs-24);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  position: relative;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .panel_question {
    padding-bottom: 0.5em;
  }
}
.panel_question::before {
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  content: "Q" counter(panel-item-num);
  color: var(--white);
  background-color: var(--main);
  border-radius: 50%;
  font-weight: 500;
  width: 2.5em;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .panel_question::before {
    font-size: 0.8em;
  }
}
.panel_question::after {
  content: "";
  display: block;
  height: 8px;
  width: calc(90% - 3em);
  background: radial-gradient(
    circle farthest-side,
    #ff9933,
    #ff9933 51%,
    transparent 51%,
    transparent
  );
  background-size: 9px 8px;
  position: absolute;
  bottom: 0;
  left: 3em;
}
@media (max-width: 768px) {
  .panel_question::after {
    width: 100%;
    left: 0;
  }
}
.panel_answer {
  font-size: var(--fs-18);
  padding-left: 4em;
}
@media (max-width: 768px) {
  .panel_answer {
    padding-left: 0.5em;
  }
}

/* ------------------------
    environment
------------------------ */
.environment-wrap {
  background-color: var(--white);
}

.environment {
  padding-bottom: 280px;
  background: url(../images/deco_11.svg) no-repeat 89% 100.2% / max(80px, 13%);
}
@media (max-width: 768px) {
  .environment {
    padding-bottom: 160px;
  }
}

.environment-cont-wrap + .environment-cont-wrap {
  margin-top: 40px;
}

.environment-cont {
  background-color: var(--bg-light-green);
  padding: 50px 85px;
  border-radius: var(--radius20);
  width: 87%;
  display: grid;
  grid-template-columns: 45fr 38fr;
  gap: 20px 4%;
  transform: translateX(-20px);
}
@media (max-width: 1200px) {
  .environment-cont {
    width: 92%;
  }
}
@media (max-width: 1024px) {
  .environment-cont {
    padding: 50px 35px;
  }
}
@media (max-width: 768px) {
  .environment-cont {
    grid-template-columns: 1fr;
    transform: none;
    margin-inline: auto;
    padding: 30px 5.5%;
  }
}
@media (min-width: 769px) {
  .environment-cont:not(.environment-cont--reverse) {
    padding-left: 15%;
  }
}
.environment-cont--reverse {
  grid-template-columns: 38fr 45fr;
  padding-right: 15%;
  margin-left: auto;
  transform: translateX(20px);
}
@media (max-width: 768px) {
  .environment-cont--reverse {
    grid-template-columns: 1fr;
    transform: none;
    margin-inline: auto;
    padding: 30px 5.5%;
  }
}
.environment-cont_heading {
  color: var(--green);
  font-size: var(--fs-32);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.environment-cont_txt {
  font-size: var(--fs-19);
  line-height: 1.5789473684;
}
.environment-cont_img {
  border-radius: var(--radius20);
}
@media (max-width: 768px) {
  .environment-cont_img {
    order: -1;
  }
}
.environment-cont--reverse .environment-cont_img {
  order: -1;
}
.environment-cont_more {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 5px;
}
.environment-cont_voice {
  font-size: var(--fs-24);
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .environment-cont_voice {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .environment-cont_voice {
    font-size: 1rem;
  }
}
.environment-cont_voice::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  aspect-ratio: 221/150;
  margin-left: 5px;
  background: url(../images/icon_arrow_green.svg) no-repeat center/contain;
}
.environment-cont_btn {
  width: 140px;
  transition: opacity var(--transition);
}
@media (max-width: 1024px) {
  .environment-cont_btn {
    width: 90px;
  }
}
@media (max-width: 768px) {
  .environment-cont_btn {
    width: 75px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .environment-cont_btn:hover,
  .environment-cont_btn:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .environment-cont_btn:active {
    opacity: 0.8;
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: var(--bg-orange);
}

.remodal {
  padding-top: 80px;
  padding-bottom: 250px;
  margin-bottom: 0;
  overflow-x: clip;
}

[data-remodal-target] {
  cursor: pointer;
}

.modal {
  position: relative;
  text-align: left;
  background:
    url(../images/deco_14.png) no-repeat 5% 100.5%/19%,
    url(../images/deco_15.png) no-repeat 95% 100.5%/21%,
    var(--white);
  width: min(92%, 1100px);
  padding: 70px 5% 80px;
  margin-inline: auto;
  border-radius: var(--radius20);
}
@media (max-width: 768px) {
  .modal {
    padding-top: 50px;
    padding-bottom: 130px;
    background-size: 0, 33%;
  }
}
.modal .btn {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  width: min(80%, 240px);
  min-width: unset;
  margin-inline: auto;
  text-align: center;
  background-image: url(../images/icon_arrow_right_02.svg);
  background-size: 0.55em;
  background-position: calc(100% - 1.1em);
}
@media (max-width: 768px) {
  .modal .btn {
    font-size: 0.9375rem;
  }
}
.modal .btn[data-remodal-action] {
  background-color: var(--green);
  background-image: url(../images/icon_close.svg);
  background-size: 0.8em;
}
.modal .btn + .btn {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .modal .btn + .btn {
    margin-top: 20px;
  }
}

.environment_qa-list {
  counter-reset: qa-num;
  margin-bottom: 80px;
}
.environment_question {
  font-size: var(--fs-24);
  line-height: var(--lh-24);
  counter-increment: qa-num;
  display: flex;
  align-items: baseline;
  gap: 0.7em;
  margin-bottom: 0.7em;
}
.environment_question::before {
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  content: "Q" counter(qa-num);
  color: var(--white);
  background-color: var(--main);
  border-radius: 50%;
  width: 2.5em;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .environment_question::before {
    font-size: 0.8em;
  }
}
.environment_answer {
  background-color: var(--bg-light-green);
  border-radius: var(--radius20);
  padding: 1.5em;
  text-align: justify;
}
.environment_answer + .environment_question {
  margin-top: 40px;
}

/* ------------------------
    qa
------------------------ */
.qa-wrap {
  background:
    url(../images/bg_02.svg) no-repeat center 0/124%,
    url(../images/deco_12.svg) no-repeat -1% 120px/13%,
    url(../images/deco_13.svg) no-repeat 101% calc(100% - 450px) / 12%;
}
@media (max-width: 768px) {
  .qa-wrap {
    background-size: 116%, 17%, 0;
  }
}

.qa {
  padding-top: max(70px, 5vw);
  padding-bottom: 100px;
}

.slider-wrapper {
  display: flex;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.slide-pic {
  flex: 0 0 auto;
  width: 400px;
  margin-right: 40px;
}
@media (max-width: 1024px) {
  .slide-pic {
    width: 300px;
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .slide-pic {
    width: 200px;
    margin-right: 20px;
  }
}

.slide-pic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius20);
}

/* ------------------------
    cta
------------------------ */
.cta {
  position: relative;
  margin-bottom: -30px;
}
.cta::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 75/4;
  background: url(../images/bg_03.svg) no-repeat center top/100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cta_bg {
  height: 730px;
}
@media (max-width: 768px) {
  .cta_bg {
    height: 500px;
  }
}
.cta_bg img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta_txt {
  font-size: var(--fs-28);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 5vw;
}
@media (max-width: 768px) {
  .cta_txt {
    font-size: 1.0625rem;
  }
} /*# sourceMappingURL=style.css.map */
