/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
input, textarea, button, header {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  max-height: 999999px;
  outline: none;
  box-sizing: border-box;
  background: none;
}

button:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: rgb(0, 0, 0);
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}
body.js-open {
  position: fixed;
}

a {
  font-weight: 500;
  color: rgb(51, 51, 51);
}

/* header */
.c-header {
  width: 100%;
  padding-inline: 1.5rem 0;
  background-color: rgb(255, 255, 255);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s;
}

.js-scrolled .c-header {
  background-color: rgb(255, 255, 255);
}

.c-header__body {
  display: block grid;
  align-items: center;
  grid-template-columns: 1fr 70px;
  height: 70px;
}
@media screen and (min-width: 768px) {
  .c-header__body {
    grid-template-columns: 1fr 360px 75px;
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .c-header__body {
    grid-template-columns: 1fr 400px 85px;
    height: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .c-header__body {
    grid-template-columns: 1fr 460px 95px;
    height: 100px;
  }
}

.c-header__logo {
  position: relative;
  z-index: 60;
}

.c-header__logo-link {
  display: flex;
  width: 240px;
  transition: 0.3s;
}
.c-header__logo-link:hover {
  opacity: 0.5;
}
@media screen and (min-width: 992px) {
  .c-header__logo-link {
    width: 260px;
  }
}
@media screen and (min-width: 1200px) {
  .c-header__logo-link {
    width: 280px;
  }
}
@media screen and (min-width: 1500px) {
  .c-header__logo-link {
    width: 305px;
  }
}

.c-entry__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-entry__button {
    display: block grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 50px;
  }
}
@media screen and (min-width: 992px) {
  .c-entry__button {
    height: 60px;
  }
}

.c-entry__button-link {
  overflow: clip;
  display: block grid;
  grid-template-columns: repeat(2, auto);
  place-content: center;
  place-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: rgb(255, 255, 255);
  position: relative;
  transition: 0.3s;
}
.c-entry__button-link::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
.c-entry__button-link:hover::before {
  width: 250px;
  height: 250px;
}
.c-entry__button-link:first-of-type {
  background-color: rgb(0, 63, 0);
}
.c-entry__button-link:first-of-type::before {
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
}
.c-entry__button-link:last-of-type {
  background-color: rgb(86, 159, 63);
}
.c-entry__button-link:last-of-type::before {
  background: radial-gradient(circle, rgb(171, 209, 109) 0%, rgba(171, 209, 109, 0) 70%);
}

.c-entry__button-en {
  font-family: "Lora", serif;
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 500;
  position: relative;
  z-index: 20;
}

.c-entry__button-jp {
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 600;
  position: relative;
  z-index: 20;
}

.c-header__menu {
  position: relative;
  z-index: 100;
}

.c-hamburger {
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 100;
}

.c-hamburger__body {
  height: 100%;
  padding-block: 0.75rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-hamburger__body {
    padding-block: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__body {
    padding-block: 1.25rem;
  }
}

.c-hamburger__body::before {
  content: "";
  width: 34px;
  height: 3px;
  background-color: rgb(0, 63, 0);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-hamburger__body::before {
    height: 4px;
    top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .c-hamburger__body::before {
    top: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__body::before {
    top: 38px;
  }
}

.js-open .c-hamburger__body::before {
  opacity: 0;
}

.c-hamburger__button {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  appearance: none;
  background: none;
  border: 0;
}

.c-hamburger__button::before,
.c-hamburger__button::after {
  content: "";
  width: 34px;
  height: 3px;
  background-color: rgb(0, 63, 0);
  position: absolute;
  left: 50%;
  transition: 0.3s;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-hamburger__button::before,
  .c-hamburger__button::after {
    height: 4px;
  }
}

.c-hamburger__button::before {
  top: 0px;
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .c-hamburger__button::before {
    top: 6px;
  }
}

.c-hamburger__button::after {
  bottom: 23px;
  transform-origin: left bottom;
}
@media screen and (min-width: 992px) {
  .c-hamburger__button::after {
    bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__button::after {
    bottom: 26px;
  }
}

.js-open .c-hamburger__button::before,
.js-open .c-hamburger__button::after {
  width: 37px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 44px;
    left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    left: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 44px;
    left: 30px;
  }
}

.js-open .c-hamburger__button::before {
  transform: rotate(34deg);
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::before {
    transform: rotate(34deg);
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::before {
    transform: rotate(34deg);
  }
}

.js-open .c-hamburger__button::after {
  transform: rotate(-34deg);
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::after {
    transform: rotate(-34deg);
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::after {
    transform: rotate(-34deg);
  }
}

.c-hamburger__button-text {
  font-family: "Lora", serif;
  font-size: 0.875rem;
  font-weight: bold;
  color: rgb(0, 63, 0);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.c-megamenu {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgb(237, 244, 240);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 80;
}

.c-megamenu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-inline: 1.25rem;
}

.c-megamenu__body {
  width: 100%;
  margin-inline: auto;
}

.c-megamenu__main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: max-content;
  margin-block: 0 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .c-megamenu__main {
    gap: 1rem;
    margin-block: 0 4rem;
  }
}

.c-megamenu__link {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
  font-size: clamp(1.125rem, 0.433rem + 1.92vw, 1.875rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
  transition: 0.3s;
}
.c-megamenu__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-megamenu__link {
    padding-block: 1rem;
    padding-inline: 1rem;
  }
}

.c-megamenu__enrty {
  display: block grid;
  gap: 1.5rem;
  inline-size: 280px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 576px) {
  .c-megamenu__enrty {
    inline-size: 320px;
  }
}
@media screen and (min-width: 768px) {
  .c-megamenu__enrty {
    inline-size: 350px;
  }
}
@media screen and (min-width: 992px) {
  .c-megamenu__enrty {
    inline-size: 400px;
  }
}

.c-megamenu__enrty-button {
  overflow: clip;
  display: block grid;
  grid-template-columns: repeat(2, auto);
  place-content: center;
  place-items: center;
  gap: 1rem;
  width: 100%;
  height: 60px;
  color: rgb(255, 255, 255);
  position: relative;
  transition: 0.3s;
}
.c-megamenu__enrty-button::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
.c-megamenu__enrty-button:hover::before {
  width: 250px;
  height: 250px;
}
.c-megamenu__enrty-button:first-of-type {
  background-color: rgb(0, 63, 0);
}
.c-megamenu__enrty-button:first-of-type::before {
  content: "";
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
}
.c-megamenu__enrty-button:last-of-type {
  background-color: rgb(86, 159, 63);
}
.c-megamenu__enrty-button:last-of-type::before {
  content: "";
  background: radial-gradient(circle, rgb(171, 209, 109) 0%, rgba(171, 209, 109, 0) 70%);
}
@media screen and (min-width: 576px) {
  .c-megamenu__enrty-button {
    height: 65px;
  }
}
@media screen and (min-width: 768px) {
  .c-megamenu__enrty-button {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .c-megamenu__enrty-button {
    height: 80px;
  }
}

.c-megamenu__button-en {
  font-family: "Lora", serif;
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  font-weight: 500;
  position: relative;
  z-index: 20;
}

.c-megamenu__button-jp {
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  font-weight: 600;
  position: relative;
  z-index: 20;
}

/* footer */
.c-footer {
  padding-block: 3.5rem 5rem;
  padding-inline: 1rem;
  background-color: rgb(0, 63, 0);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-footer {
    padding-block: 3.5rem 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .c-footer {
    padding-inline: 3.5rem;
  }
}

.c-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-footer__inner {
    gap: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .c-footer__inner {
    align-items: flex-start;
  }
}

.c-footer__nav {
  display: block grid;
  grid-template-columns: 1fr;
  place-content: center;
  place-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .c-footer__nav {
    grid-template-columns: repeat(3, auto);
    gap: 3rem;
  }
}

.c-footer__nav-link {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-footer__nav-link:hover {
    text-decoration: underline;
  }
  .c-footer__nav-link:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
  }
}

.c-footer__copy {
  width: 100%;
  font-size: clamp(0.813rem, 0.697rem + 0.32vw, 0.938rem);
  font-weight: normal;
  color: rgb(255, 255, 255);
  text-align: center;
  position: relative;
  z-index: 20;
}

.p-pagetop {
  width: 50px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  right: 0;
}
.p-pagetop a {
  display: block;
  transition: 0.3s;
}
.p-pagetop a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .p-pagetop {
    width: 75px;
  }
}

/* component */
.c-innner {
  max-inline-size: 980px;
  margin-inline: auto;
  padding-inline: 4vw;
  box-sizing: revert;
}
@media screen and (min-width: 768px) {
  .c-innner {
    padding-inline: 2rem;
  }
}

.c-headline {
  display: block flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block: 0 2rem;
  font-size: clamp(1.375rem, -0.069rem + 3.01vw, 2.188rem);
  font-weight: 600;
  line-height: 1;
}
.c-headline::before {
  content: attr(data-enttl) "";
  display: block;
  font-family: "Lora", serif;
  font-size: clamp(1.125rem, 0.347rem + 1.62vw, 1.563rem);
  font-weight: 600;
  font-style: italic;
  color: rgb(86, 159, 63);
  line-height: 1;
  text-transform: uppercase;
}
.c-headline::after {
  content: "";
  width: 45px;
  height: 60px;
  background-image: url(../img/headline-fig-01.png);
  background-position: center;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 3rem;
  transform: translateX(-50%);
  opacity: 0.5;
}
@media screen and (min-width: 576px) {
  .c-headline {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .c-headline {
    gap: 2rem;
    margin-block: 0 3rem;
  }
  .c-headline::after {
    content: "";
    width: 63px;
    height: 67px;
    top: 3rem;
  }
}

/* utility */
.u-mbmd {
  margin-block: 0 0.625rem;
}

.p-hero {
  position: relative;
  background-color: rgb(240, 249, 240);
}

.p-hero__fig {
  height: 550px;
}
.p-hero__fig img {
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .p-hero__fig {
    height: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__fig {
    height: 700px;
  }
}
@media screen and (min-width: 1500px) {
  .p-hero__fig {
    height: auto;
  }
}

.p-hero__main {
  display: block flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 576px) {
  .p-hero__main {
    gap: 1rem;
  }
}

.p-hero__copy {
  width: max-content;
  padding-block: 0.625rem 0.875rem;
  padding-inline: 0.875rem 0;
  font-size: clamp(1.375rem, 0.177rem + 5.1vw, 4rem);
  color: rgb(0, 63, 0);
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: rgb(255, 255, 255);
}
.p-hero__copy span {
  font-size: 0.88em;
}
.p-hero__copy strong {
  font-weight: normal;
  color: rgb(86, 159, 63);
}
@media screen and (min-width: 576px) {
  .p-hero__copy {
    padding-inline: 1.375rem 0;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__copy {
    padding-block: 0.625rem 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-hero__copy {
    padding-block: 0.75rem 1.125rem;
    padding-inline: 1.875rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__copy {
    padding-block: 1rem 1.5rem;
    padding-inline: 2.5rem 0;
  }
}

.p-hero__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-block: 0.5rem 0.625rem;
  padding-inline: 1rem;
  font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
  line-height: 1;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 63, 0, 0.9);
}
.p-hero__title span {
  font-family: "Lora", serif;
}
@media screen and (min-width: 576px) {
  .p-hero__title {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-hero__title {
    padding-block: 0.625rem 0.75rem;
    padding-inline: 2rem;
  }
}

.p-aboutus {
  container-type: inline-size;
  padding-block: 0 11.25rem;
  background-color: rgb(240, 249, 240);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-aboutus {
    padding-block: 0 15rem;
  }
}

.p-aboutus__inner {
  display: block grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
  grid-template-areas: "headline" "detail" "fig";
  max-inline-size: 450px;
}
.p-aboutus__inner .c-headline {
  grid-area: headline;
  align-items: flex-start;
  justify-content: flex-start;
  padding-block: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-aboutus__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0 2rem;
    grid-template-areas: "fig headline" "fig detail";
    max-inline-size: 980px;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutus__inner {
    grid-template-columns: 1fr auto;
    gap: 0 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutus__inner {
    grid-template-columns: 1fr 540px;
    gap: 0 4.5rem;
  }
}

.p-aboutus__detail {
  display: block grid;
  gap: 1lh;
  grid-template-rows: repeat(3, auto);
  align-items: start;
  grid-area: detail;
  margin-block: 0 2rem;
}
.p-aboutus__detail p {
  font-size: clamp(1rem, 0.667rem + 0.69vw, 1.188rem);
  line-height: 2.1;
}
.p-aboutus__detail p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-aboutus__detail {
    margin-block: 0;
  }
  .p-aboutus__detail p br {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutus__detail {
    gap: 1.4lh;
  }
}

.p-aboutus__fig {
  grid-area: fig;
}
@media screen and (min-width: 768px) {
  .p-aboutus__fig {
    margin-block: -3.75rem 0;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutus__fig {
    margin-block: -5rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutus__fig {
    margin-inline: max((50cqi - 490px - 40px) * -1, -240px) 0;
  }
}

.p-aboutus__fig-item {
  overflow: clip;
  border-radius: 15px;
}
.p-aboutus__fig-item:first-of-type {
  margin-inline: 0 10%;
}
.p-aboutus__fig-item:last-of-type {
  margin-block: -1rem 0;
  margin-inline: 30% 0;
}
@media screen and (min-width: 992px) {
  .p-aboutus__fig-item:first-of-type {
    margin-inline: 0 19.5%;
  }
  .p-aboutus__fig-item:last-of-type {
    margin-block: -2rem 0;
    margin-inline: 40% 0;
  }
}

.p-aboutus__deco01 {
  max-inline-size: 180px;
  position: absolute;
  top: -11.25rem;
  right: 0;
}
@media screen and (min-width: 476px) {
  .p-aboutus__deco01 {
    max-inline-size: 180px;
    top: -11.25rem;
  }
}
@media screen and (min-width: 576px) {
  .p-aboutus__deco01 {
    max-inline-size: 200px;
    top: -12.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutus__deco01 {
    max-inline-size: 260px;
    top: -15rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutus__deco01 {
    max-inline-size: 300px;
    top: -17.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutus__deco01 {
    max-inline-size: 350px;
    top: -20rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-aboutus__deco01 {
    max-inline-size: 420px;
  }
}

.p-aboutus__deco02 {
  max-inline-size: 120px;
  position: absolute;
  bottom: 5rem;
  right: 1rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-aboutus__deco02 {
    max-inline-size: 130px;
    bottom: 4.375rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutus__deco02 {
    max-inline-size: 140px;
    bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutus__deco02 {
    max-inline-size: 150px;
    bottom: 9.0625rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-aboutus__deco02 {
    max-inline-size: 185px;
    bottom: 15.3125rem;
    right: 3rem;
  }
}

.p-aboutus__deco03 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-aboutjob {
  padding-block: 2rem 7.5rem;
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-aboutjob {
    padding-block: 2rem 10rem;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutjob {
    padding-block: 2rem 12.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutjob {
    padding-block: 2rem 16rem;
  }
}

.p-aboutjob__list {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-inline-size: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  .p-aboutjob__list {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutjob__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-inline-size: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutjob__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.p-aboutjob__box {
  overflow: clip;
  display: block;
  border-radius: 15px;
  position: relative;
}
.p-aboutjob__box:hover .p-aboutjob__fig img {
  scale: 1.05;
  opacity: 0.7;
}

.p-aboutjob__fig {
  overflow: clip;
}
.p-aboutjob__fig img {
  transition: 0.3s;
}

.p-aboutjob__type {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  z-index: 10;
}
@media screen and (min-width: 576px) {
  .p-aboutjob__type {
    bottom: 2.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutjob__type {
    bottom: 3.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutjob__type {
    bottom: 3.75rem;
  }
}

.p-aboutjob__type-item {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 70px;
  height: 26px;
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  color: rgb(255, 255, 255);
  background-color: rgb(0, 63, 0);
}
.p-aboutjob__type-item.fulltime {
  background-color: rgb(0, 63, 0);
}
.p-aboutjob__type-item.parttime {
  background-color: rgb(86, 159, 63);
}
@media screen and (min-width: 992px) {
  .p-aboutjob__type-item {
    width: 88px;
    height: 28px;
  }
}

.p-aboutjob__occupation {
  overflow: clip;
  display: block grid;
  align-items: center;
  height: 40px;
  width: 100%;
  padding-inline: 0.75rem;
  font-size: clamp(0.938rem, 0.049rem + 1.85vw, 1.438rem);
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  background-color: rgb(0, 63, 0);
  background: linear-gradient(143deg, rgba(0, 63, 0, 0.9) 0%, rgba(0, 63, 0, 0.65) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.p-aboutjob__occupation::before {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
  transition: 0.3s;
}
@media screen and (min-width: 576px) {
  .p-aboutjob__occupation {
    height: 45px;
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutjob__occupation {
    height: 50px;
    padding-inline: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutjob__occupation {
    height: 60px;
  }
}

.p-aboutjob__deco01 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-aboutjob__deco02 {
  max-inline-size: 100px;
  position: absolute;
  top: -2rem;
  left: 1rem;
  z-index: 10;
}
@media screen and (min-width: 476px) {
  .p-aboutjob__deco02 {
    max-inline-size: 120px;
    top: 0;
  }
}
@media screen and (min-width: 576px) {
  .p-aboutjob__deco02 {
    max-inline-size: 120px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutjob__deco02 {
    max-inline-size: 180px;
    top: -2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-aboutjob__deco02 {
    max-inline-size: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutjob__deco02 {
    max-inline-size: 220px;
  }
}
@media screen and (min-width: 1500px) {
  .p-aboutjob__deco02 {
    max-inline-size: 260px;
  }
}

.p-environment {
  container-type: inline-size;
  padding-block: 5rem 7.5rem;
  background-color: rgb(240, 249, 240);
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-environment {
    padding-block: 5rem 10rem;
  }
}
@media screen and (min-width: 768px) {
  .p-environment {
    padding-block: 5rem 12.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-environment {
    padding-block: 5rem 15rem;
  }
}

.p-environment__headline {
  margin-block: 0 3.5rem;
  font-size: clamp(1.375rem, 1.042rem + 0.69vw, 1.563rem);
  font-weight: 600;
  text-align: center;
  color: rgb(0, 63, 0);
}

.p-environment__slider {
  margin-block: 0 7rem;
  margin-inline: calc(50% - 50cqi);
}
.p-environment__slider .swiper-wrapper {
  margin-block: 0 1.5rem;
}
.p-environment__slider .swiper-slide {
  height: auto;
}

.p-environment__box {
  display: block grid;
  grid-template-areas: "summary" "occupation" "type";
  gap: 1rem;
  height: 100%;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 576px) {
  .p-environment__box {
    grid-template-areas: "summary summary" "occupation type";
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr auto;
    gap: 1.5rem 1rem;
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}

.p-environment__summary {
  grid-area: summary;
  line-height: 2.2;
}

.p-environment__occupation {
  grid-area: occupation;
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 600;
  line-height: 28px;
  color: rgb(86, 159, 63);
}

.p-environment__type {
  display: flex;
  gap: 0.25rem;
  grid-area: type;
}

.p-environment__type-item {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 88px;
  height: 28px;
}
.p-environment__type-item.fulltime {
  border: 1px solid rgb(0, 63, 0);
  color: rgb(0, 63, 0);
}
.p-environment__type-item.parttime {
  border: 1px solid rgb(86, 159, 63);
  color: rgb(86, 159, 63);
}

.p-environment__slider-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  max-inline-size: 725px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media screen and (min-width: 576px) {
  .p-environment__slider-control {
    gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-environment__slider-control {
    gap: 3rem;
  }
}

.p-environment__slider-button {
  display: flex;
  gap: 0.75rem;
  position: relative;
}
.p-environment__slider-button .swiper-button-next,
.p-environment__slider-button .swiper-button-prev {
  overflow: clip;
  width: 45px;
  height: 45px;
  margin: 0;
  border-radius: 50%;
  background-color: rgb(0, 63, 0);
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transition: 0.3s;
}
.p-environment__slider-button .swiper-button-next.swiper-button-disabled,
.p-environment__slider-button .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  border: 2px solid rgb(220, 220, 220);
  background-color: rgb(255, 255, 255);
}
.p-environment__slider-button .swiper-button-next.swiper-button-disabled::after,
.p-environment__slider-button .swiper-button-prev.swiper-button-disabled::after {
  display: none;
}
.p-environment__slider-button .swiper-button-next::before,
.p-environment__slider-button .swiper-button-prev::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid rgb(220, 220, 220);
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
}
.p-environment__slider-button .swiper-button-next::after,
.p-environment__slider-button .swiper-button-prev::after {
  content: "";
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 10;
}
.p-environment__slider-button .swiper-button-next::before {
  border-right: 2px solid rgb(220, 220, 220);
  left: 12%;
  rotate: 45deg;
}
.p-environment__slider-button .swiper-button-prev::before {
  border-left: 2px solid rgb(220, 220, 220);
  right: 12%;
  rotate: -45deg;
}
@media screen and (min-width: 992px) {
  .p-environment__slider-button {
    gap: 1rem;
  }
  .p-environment__slider-button .swiper-button-next,
  .p-environment__slider-button .swiper-button-prev {
    width: 55px;
    height: 55px;
  }
  .p-environment__slider-button .swiper-button-next::before,
  .p-environment__slider-button .swiper-button-prev::before {
    width: 15px;
    height: 15px;
  }
}

.p-environment__slider-scrollbar {
  width: 100%;
}
.p-environment__slider-scrollbar .swiper-horizontal > .swiper-scrollbar,
.p-environment__slider-scrollbar .swiper-scrollbar.swiper-scrollbar-horizontal {
  opacity: 1 !important;
  width: 100%;
  background-color: rgb(218, 218, 218);
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.p-environment__slider-scrollbar .swiper-scrollbar-drag {
  background-color: rgb(90, 161, 67);
}

.p-data__list {
  display: block grid;
  gap: 1rem;
  max-inline-size: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-data__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    max-inline-size: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-data__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
}

.p-data__list-box {
  overflow: clip;
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding-block: 0 1.5rem;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
}

.p-data__list-headline {
  padding-block: 1.5rem;
  font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.438rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1;
  text-align: center;
  background-color: rgb(86, 159, 63);
}

.p-data__list-icon {
  display: flex;
  justify-content: center;
  padding-inline: 2rem;
}
.p-data__list-icon img {
  max-inline-size: 253px;
}

.p-data__list-sumamry {
  padding-inline: 2rem;
}

.p-environment__deco01 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-environment__deco02 {
  max-inline-size: 80px;
  position: absolute;
  top: -1rem;
  right: 0.5rem;
}
@media screen and (min-width: 476px) {
  .p-environment__deco02 {
    max-inline-size: 110px;
    top: 0;
    right: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .p-environment__deco02 {
    max-inline-size: 120px;
  }
}
@media screen and (min-width: 768px) {
  .p-environment__deco02 {
    max-inline-size: 130px;
  }
}
@media screen and (min-width: 992px) {
  .p-environment__deco02 {
    max-inline-size: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .p-environment__deco02 {
    max-inline-size: 175px;
    right: 2rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-environment__deco02 {
    max-inline-size: 195px;
    right: 5rem;
  }
}

.p-environment__deco03 {
  max-inline-size: 90px;
  position: absolute;
  top: 23%;
  left: 1rem;
}
@media screen and (min-width: 476px) {
  .p-environment__deco03 {
    max-inline-size: 115px;
    top: 22.5%;
  }
}
@media screen and (min-width: 576px) {
  .p-environment__deco03 {
    max-inline-size: 115px;
    top: 22%;
  }
}
@media screen and (min-width: 768px) {
  .p-environment__deco03 {
    max-inline-size: 135px;
    top: 30%;
  }
}
@media screen and (min-width: 992px) {
  .p-environment__deco03 {
    max-inline-size: 155px;
    top: 42.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-environment__deco03 {
    max-inline-size: 185px;
    left: 2rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-environment__deco03 {
    max-inline-size: 205px;
    left: 4rem;
  }
}

.p-merit {
  padding-block: 3rem 9rem;
  position: relative;
}

.p-merit__list {
  display: block grid;
  gap: 1.5rem 2rem;
  max-inline-size: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    grid-template-columns: repeat(2, 1fr);
    max-inline-size: 100%;
  }
}

.p-merit__list-box {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 2rem;
  padding-block: 2rem;
  padding-inline: 2rem;
  border-radius: 10px;
  background-color: rgb(240, 255, 240);
}

.p-merit__list-headline {
  font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.438rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
  text-align: center;
}

.p-merit__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-merit__list-icon img {
  max-inline-size: 335px;
  height: auto;
}

.p-merit__deco01 {
  max-inline-size: 55px;
  position: absolute;
  top: 0;
  left: 1rem;
}
@media screen and (min-width: 476px) {
  .p-merit__deco01 {
    max-inline-size: 60px;
  }
}
@media screen and (min-width: 576px) {
  .p-merit__deco01 {
    max-inline-size: 70px;
    top: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__deco01 {
    max-inline-size: 80px;
    left: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-merit__deco01 {
    max-inline-size: 90px;
    left: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__deco01 {
    max-inline-size: 100px;
    left: 5rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-merit__deco01 {
    max-inline-size: 110px;
    left: 6rem;
  }
}

.p-gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.p-gallery__slider .swiper-slide {
  height: auto;
}

.p-gallery__slider-item {
  height: 100%;
}
.p-gallery__slider-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-entry {
  padding-block: 4rem 3rem;
  padding-inline: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding-block: 5rem 4rem;
  }
}
@media screen and (min-width: 992px) {
  .p-entry {
    padding-block: 6.5rem 5rem;
  }
}

.p-entry__inner {
  display: block grid;
  gap: 1rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  max-inline-size: 450px;
  margin-inline: auto;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-entry__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-inline-size: 100%;
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-entry__inner {
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}

.p-entry__button {
  overflow: clip;
  display: block grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 65px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.438rem);
  color: rgb(255, 255, 255);
  position: relative;
  transition: 0.3s;
}
.p-entry__button::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
.p-entry__button:hover::before {
  width: 250px;
  height: 250px;
}
.p-entry__button:first-of-type {
  background-color: rgb(0, 63, 0);
}
.p-entry__button:first-of-type::before {
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
}
.p-entry__button:last-of-type {
  background-color: rgb(86, 159, 63);
}
.p-entry__button:last-of-type::before {
  background: radial-gradient(circle, rgb(171, 209, 109) 0%, rgba(171, 209, 109, 0) 70%);
}
@media screen and (min-width: 768px) {
  .p-entry__button {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .p-entry__button {
    height: 80px;
  }
}

.p-entry__bg {
  inline-size: 100%;
  block-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-entry__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-fixbutton {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
  background-color: rgb(255, 255, 255);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-fixbutton {
    display: none;
  }
}

.p-fixbutton__link {
  overflow: clip;
  display: block grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 50px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: clamp(0.938rem, 0.758rem + 0.77vw, 1.125rem);
  color: rgb(255, 255, 255);
  position: relative;
  transition: 0.3s;
}
.p-fixbutton__link::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
.p-fixbutton__link:hover::before {
  width: 250px;
  height: 250px;
}
.p-fixbutton__link:first-of-type {
  background-color: rgb(0, 63, 0);
}
.p-fixbutton__link:first-of-type::before {
  background: radial-gradient(circle, rgb(152, 188, 95) 0%, rgba(152, 188, 95, 0) 70%);
}
.p-fixbutton__link:last-of-type {
  background-color: rgb(86, 159, 63);
}
.p-fixbutton__link:last-of-type::before {
  background: radial-gradient(circle, rgb(171, 209, 109) 0%, rgba(171, 209, 109, 0) 70%);
}

.modal_content.l-modal {
  background-color: rgba(228, 238, 191, 0.9);
}
.modal_content .modal_inner {
  margin: 0;
  margin-block: 1.25rem;
  margin-inline: 1rem;
}
@media screen and (min-width: 576px) {
  .modal_content .modal_inner {
    margin-block: 2rem;
    margin-inline: 2rem;
  }
}

.p-modaljob {
  max-inline-size: 450px;
  padding-block: 1.25rem;
  padding-inline: 1rem;
  background-color: rgb(255, 255, 255);
  box-sizing: revert;
}
@media screen and (min-width: 768px) {
  .p-modaljob {
    max-inline-size: 980px;
    padding-block: 2rem;
    padding-inline: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob {
    padding-block: 3rem;
    padding-inline: 4rem;
  }
}

.p-modaljob__head {
  display: block grid;
  margin-block: 0 2rem;
  gap: 2rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-modaljob__head {
    grid-template-columns: repeat(2, 1fr);
    margin-block: 0 3rem;
  }
}

.p-modaljob__head-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 1rem 0;
}
@media screen and (min-width: 476px) {
  .p-modaljob__head-info {
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modaljob__head-info {
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    margin-block: 0 3rem;
  }
}

.p-modaljob__head-badge {
  display: flex;
  gap: 1rem;
}

.p-modaljob__head-badge-item {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 90px;
  height: 30px;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
}
.p-modaljob__head-badge-item.fulltime {
  background-color: rgb(0, 63, 0);
}
.p-modaljob__head-badge-item.parttime {
  background-color: rgb(86, 159, 63);
}
@media screen and (min-width: 768px) {
  .p-modaljob__head-badge-item {
    width: 110px;
    height: 35px;
  }
}

.p-modaljob__head-type {
  font-size: clamp(2rem, 4.17vw, 3.125rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
}

.p-modaljob__head-data {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem 2rem;
  width: max-content;
}
@media screen and (min-width: 476px) {
  .p-modaljob__head-data {
    grid-template-columns: repeat(3, auto);
  }
}
@media screen and (min-width: 768px) {
  .p-modaljob__head-data {
    gap: 1.5rem 3rem;
  }
}

.p-modaljob__head-data-item {
  position: relative;
}
@media not all and (min-width: 476px) {
  .p-modaljob__head-data-item:not(:nth-of-type(2n+2))::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgb(188, 188, 188);
    position: absolute;
    top: 0;
    right: -1.5rem;
  }
}
@media screen and (min-width: 476px) {
  .p-modaljob__head-data-item:not(:nth-of-type(3n+3))::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgb(188, 188, 188);
    position: absolute;
    top: 0;
    right: -1.5rem;
  }
}
.p-modaljob__head-data-item:last-of-type::after {
  display: none;
}

.p-modaljob__head-name {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
  line-height: 1.4;
}
.p-modaljob__head-name span {
  font-size: 0.5em;
}

.p-modaljob__head-year {
  font-size: clamp(0.875rem, 0.431rem + 0.93vw, 1.125rem);
}

.p-modaljob__head-fig {
  overflow: clip;
  height: auto;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-modaljob__head-fig {
    height: 280px;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob__head-fig {
    height: auto;
  }
}
.p-modaljob__head-fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-modaljob__summary {
  margin-block: 0 2rem;
  line-height: 2.4;
}
@media screen and (min-width: 768px) {
  .p-modaljob__summary {
    margin-block: 0 3rem;
  }
}

.p-modaljob__schedule {
  margin-block: 0 2rem;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  background-color: rgb(240, 249, 240);
  border-radius: 10px;
}
@media screen and (min-width: 576px) {
  .p-modaljob__schedule {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modaljob__schedule {
    margin-block: 0 3rem;
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob__schedule {
    margin-block: 0 4rem;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}

.p-modaljob__schedule-headline {
  margin-block: 0 1.5rem;
  font-size: clamp(1.25rem, 0.694rem + 1.16vw, 1.563rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-modaljob__schedule-headline {
    margin-block: 0 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob__schedule-headline {
    margin-block: 0 2.5rem;
  }
}

.p-modaljob__schedule-block {
  display: block grid;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-modaljob__schedule-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob__schedule-block {
    gap: 4rem;
  }
}

.p-modaljob__schedule-box {
  display: block grid;
}
.p-modaljob__schedule-box:last-of-type .p-modaljob__schedule-item:first-of-type::after {
  content: "";
  width: 2px;
  height: 24px;
  background-color: rgb(0, 63, 0);
  position: absolute;
  top: -1.5rem;
  left: 39px;
}
.p-modaljob__schedule-box:last-of-type .p-modaljob__schedule-item:last-of-type:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-modaljob__schedule-box {
    margin-top: 1.5rem;
  }
}

.p-modaljob__schedule-item {
  display: block grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-block: 0 1rem;
  position: relative;
}
.p-modaljob__schedule-item::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: rgb(0, 63, 0);
  position: absolute;
  bottom: 0;
  left: 39px;
}

.p-modaljob__schedule-time {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 32px;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(240, 249, 240);
  border-radius: 10px;
  background-color: rgb(0, 63, 0);
  position: relative;
}

.p-modaljob__schedule-title {
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  font-weight: 600;
  color: rgb(0, 63, 0);
}

.p-modaljob__qanda {
  display: grid;
  gap: 3.5rem;
  margin-block: 2rem;
}
@media screen and (min-width: 768px) {
  .p-modaljob__qanda {
    margin-block: 4rem;
  }
}

.p-modaljob__qanda-head {
  overflow: clip;
  display: grid;
  grid-template-columns: 50px 1fr;
  margin-block: 0 1.5rem;
  border-radius: 15px;
  background-color: rgb(86, 159, 63);
}

.p-modaljob__qanda-icon {
  display: grid;
  place-content: center;
  place-items: center;
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.438rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 63, 0);
}

.p-modaljob__qanda-text {
  padding-block: 0.75rem;
  padding-inline: 0.625rem;
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-modaljob__qanda-text {
    padding-block: 0.875rem;
    padding-inline: 0.75rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modaljob__qanda-text {
    padding-block: 1rem;
    padding-inline: 0.875rem;
  }
}

.p-modaljob__qanda-body {
  padding-inline: 1rem 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-modaljob__qanda-body {
    padding-inline: 4rem 2rem;
  }
}

.p-modalmenu {
  display: block grid;
  place-content: center;
  place-items: center;
}

.p-modalmenu__button {
  overflow: clip;
  display: block grid;
  place-content: center;
  place-items: center;
  inline-size: 200px;
  height: 50px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  color: rgb(255, 255, 255);
  background-color: rgb(86, 159, 63);
  position: relative;
  transition: 0.3s;
}
.p-modalmenu__button::before {
  content: "";
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgb(171, 209, 109) 0%, rgba(171, 209, 109, 0) 70%);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
.p-modalmenu__button:hover::before {
  width: 250px;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .p-modalmenu__button {
    inline-size: 220px;
    height: 60px;
  }
}