@charset "UTF-8";
/* 色の変数 */
/* 色の変数 */
:root {
  --text-color-primary: #6b5400;
  --text-color-second: #9c811e;
  --text-color-third: #e1c981;
}

/* フォントの変数 */
/* トランジションの変数 */
:root {
  --base-duration: 0.4s;
  --base-easing: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --base-delay: 1s;
  --loading-duration: 1.5s;
  --loading-easing: cubic-bezier(0.17, 0.74, 0.83, 0.67);
  --fadeIn-duration: 1s;
  --fadeIn-easing: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --slideDown-duration: 1.5s;
  --slideDown-easing: cubic-bezier(0.17, 0.74, 0.83, 0.67);
  --slideIn-duration: 3s;
  --slideIn-easing: cubic-bezier(0.17, 0.74, 0.83, 0.67);
}

/* オープニングアニメーションの変数 */
:root {
  --fv-wave01-duration: 5.2s;
  --fv-wave02-duration: 5.7s;
  --fv-wave03-duration: 6.2s;
  --fv-image-duration: 10s;
  --fv-lead-en-duration: 11s;
  --fv-lead-ja-duration: 11s;
  --header-duration: 12s;
  --vision-duration: 12.5s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  color: inherit;
  font: inherit;
  vertical-align: top;
}

body {
  background-color: #fff;
  color: var(--text-color-primary);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 1rem;
  overflow-y: scroll;
  width: 100%;
}
@media (max-width: 320px) {
  body {
    font-size: 3.125vw;
  }
}

body.is-scrollLock {
  left: 0;
  position: fixed;
  width: 100%;
}

a[href^="tel:"] {
  pointer-events: none;
}

figure {
  margin: 0;
  padding: 0;
}

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

.wf-loading {
  opacity: 0;
}

.c-button {
  position: relative;
  z-index: 1;
}

.c-button-link {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--text-color-second);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding-block: 14px;
  padding-inline: 66px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .c-button-link {
    padding-block: 10px;
    padding-inline: 32px;
  }
}
.c-button-link span {
  color: var(--text-color-second);
  display: inline-block;
  font-family: shippori-mincho, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  position: relative;
  transition: color var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .c-button-link span {
    font-size: clamp(0.75rem, 0.5108418367rem + 1.0204081633vw, 1rem);
  }
}
.c-button-link em {
  background-color: var(--text-color-second);
  height: 1px;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: scaleX(1);
  transform-origin: center right;
  transition: background-color var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
  width: 18%;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .c-button-link em {
    width: 15%;
  }
}
.c-button-link:before, .c-button-link:after {
  background-color: var(--text-color-second);
  content: "";
  height: 50%;
  position: absolute;
  transition: width var(--base-duration) var(--base-easing);
  width: 0;
}
.c-button-link:before {
  left: 0;
  right: auto;
  top: 0;
}
.c-button-link:after {
  bottom: 0;
  left: auto;
  right: 0;
}

.c-button-link:focus-visible:before {
  left: auto;
  right: 0;
  width: 100%;
}
.c-button-link:focus-visible:after {
  left: 0;
  right: auto;
  width: 100%;
}
.c-button-link:focus-visible span {
  color: #fff;
}
.c-button-link:focus-visible em {
  background-color: #fff;
  transform: scaleX(1);
}

@media (any-hover: hover) {
  .c-button-link:hover:before {
    left: auto;
    right: 0;
    width: 100%;
  }
  .c-button-link:hover:after {
    left: 0;
    right: auto;
    width: 100%;
  }
  .c-button-link:hover span {
    color: #fff;
  }
  .c-button-link:hover em {
    background-color: #fff;
    transform: scaleX(0.7);
  }
}
.c-toTop-button {
  align-items: center;
  bottom: 190px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 100px;
  transition: opacity var(--base-duration) var(--base-easing);
  z-index: 30;
}
@media screen and (max-width: 767.9px) {
  .c-toTop-button {
    bottom: 100px;
    right: clamp(1.25rem, -2.4569515306rem + 15.8163265306vw, 5.125rem);
  }
}

.c-toTop-button__arrow {
  padding-top: 14px;
  position: relative;
  transition: transform var(--base-duration) var(--base-easing);
}
.c-toTop-button__arrow::after {
  aspect-ratio: 1;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  rotate: -135deg;
  top: 0;
  translate: -50% 0;
  width: 20px;
}

.c-toTop-button__text {
  color: #fff;
  font-family: shippori-mincho, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
  transition: text-shadow var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
}

.c-toTop-button:focus-visible .c-toTop-button__arrow {
  transform: translateY(-10px);
}
.c-toTop-button:focus-visible .c-toTop-button__text {
  text-shadow: 0 0 10px #fff;
}

@media (any-hover: hover) {
  .c-toTop-button:hover .c-toTop-button__arrow {
    transform: translateY(-10px);
  }
  .c-toTop-button:hover .c-toTop-button__text {
    text-shadow: 0 0 10px #fff;
    transform: translateY(-10px);
  }
}
.c-chevron {
  display: inline-block;
  height: 10px;
  position: relative;
  width: 10px;
}
.c-chevron::after {
  aspect-ratio: 1;
  border-bottom: 1px solid var(--text-color-primary);
  border-right: 1px solid var(--text-color-primary);
  content: "";
  height: auto;
  position: absolute;
  width: 10px;
}

.c-chevron--right::after {
  rotate: -45deg;
  top: 50%;
  transform: translateY(-50%);
}

.c-chevron--down::after {
  rotate: 45deg;
  top: 20%;
  transform: translateY(-50%);
  width: 7px;
}



.l-container {
  margin-inline: auto;
  max-width: 1160px;
  padding-inline: 40px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .l-container {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-header {
  align-items: center;
  display: flex;
  height: 104px;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: background-color var(--base-duration) var(--base-easing);
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 767.9px) {
  .l-header {
    height: 60px;
  }
}

/* トップページのヘッダー背景 */
body.home .l-header {
  animation-duration: 6s;
  animation-duration: var(--header-duration);
  animation-fill-mode: forwards;
  animation-name: fadein-header;
  animation-timing-function: ease-out;
  background-color: transparent;
}

@keyframes fadein-header {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
body.is-visit .l-header {
  animation-name: none;
}

/* 下層ページのヘッダー背景 */
body:not(.home) .l-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) -8.25%, rgba(255, 255, 255, 0.8) 50.84%, rgba(255, 255, 255, 0) 100%);
}

body.home .l-header.js-active,
body:not(.home) .l-header.js-active {
  background-color: #fff;
}

.l-header__inner {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
  max-width: 1440px;
  padding-inline: clamp(1.25rem, -1.3142644874rem + 5.3491827637vw, 3.5rem);
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .l-header__inner {
    align-items: start;
    padding-inline: 20px;
  }
}

.l-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
}
.l-header__logo a {
  width: clamp(15.625rem, 4.7981054978rem + 22.5854383358vw, 25.125rem);
}
@media screen and (max-width: 767.9px) {
  .l-header__logo a {
    width: clamp(13.125rem, 4.7544642857rem + 35.7142857143vw, 21.875rem);
  }
}

.l-header__nav {
  z-index: 40;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav {
    background: rgba(255, 255, 255, 0.9);
    height: 100dvh;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    padding-bottom: 60px;
    padding-top: 60px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity var(--base-duration) var(--base-easing), visibility var(--base-duration) var(--base-easing);
    visibility: hidden;
    width: 100%;
  }
  .l-header__nav.js-show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.l-header__nav-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: end;
  position: relative;
  -moz-column-gap: clamp(1rem, -0.1396731055rem + 2.3774145617vw, 2rem);
       column-gap: clamp(1rem, -0.1396731055rem + 2.3774145617vw, 2rem);
  height: 100%;
  row-gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    justify-content: space-between;
  }
}

.l-header__nav-list {
  display: flex;
  -moz-column-gap: clamp(0.875rem, -0.1222139673rem + 2.0802377415vw, 1.75rem);
  align-items: center;
       column-gap: clamp(0.875rem, -0.1222139673rem + 2.0802377415vw, 1.75rem);
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-list {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: calc(100% - 60px);
    justify-content: start;
    max-width: 640px;
    padding-inline: 20px;
    width: 100%;
  }
}

.l-header__nav-item {
  display: block;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-item {
    padding-block: 14px;
    width: 100%;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header__nav-item:not(:last-of-type)::after {
    background-color: var(--text-color-third);
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
  }
}

.l-header__nav-link {
  color: var(--text-color-primary);
  display: inline-block;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(0.75rem, 0.6075408618rem + 0.2971768202vw, 0.875rem);
  font-weight: 500;
  line-height: 1.57;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-link {
    align-items: center;
    display: flex;
    font-size: clamp(1rem, 0.7608418367rem + 1.0204081633vw, 1.25rem);
    justify-content: space-between;
    width: 100%;
  }
}

.l-header__mega-label {
  align-items: center;
  color: var(--black-green);
  cursor: pointer;
  display: inline-block;
  display: flex;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(0.75rem, 0.6075408618rem + 0.2971768202vw, 0.875rem);
  font-weight: 500;
  gap: 5px;
  line-height: 1.57;
}
@media screen and (max-width: 767.9px) {
  .l-header__mega-label {
    cursor: none;
    font-size: clamp(1rem, 0.7608418367rem + 1.0204081633vw, 1.25rem);
    width: 100%;
  }
}

.l-header__mega {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #fff;
  height: auto;
  opacity: 0;
  padding-block: 40px;
  position: fixed;
  position: absolute;
  right: 0;
  top: 30px;
  transition: opacity var(--base-duration) var(--base-easing), visibility var(--base-duration) var(--base-easing);
  visibility: hidden;
  width: 300px;
}
@media screen and (max-width: 767.9px) {
  .l-header__mega {
    background-color: transparent;
    border: none;
    position: static;
    width: 100%;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    opacity: 1;
    padding-block: 0px;
    visibility: visible;
  }
}

.l-header__mega.js-active {
  opacity: 1;
  transition: opacity var(--base-duration) var(--base-easing), visibility var(--base-duration) var(--base-easing);
  visibility: visible;
}

.l-header__mega-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .l-header__mega-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: none;
    margin-top: 10px;
  }
}

.l-header__mega-item {
  align-items: center;
  color: var(--text-color-primary);
  display: flex;
  font-family: shippori-mincho, sans-serif;
  font-weight: 500;
  justify-content: space-between;
  letter-spacing: 0.338px;
  padding: 10px;
}
@media screen and (max-width: 767.9px) {
  .l-header__mega-item {
    font-size: clamp(0.75rem, 0.6304209184rem + 0.5102040816vw, 0.875rem);
    padding-block: 10px;
  }
}

.l-header__button-wrap {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .l-header__button-wrap {
    gap: 30px;
    margin-top: 30px;
  }
}

.l-header__button a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: shippori-mincho, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.02em;
  overflow: hidden;
  padding: 14px 34px;
  position: relative;
}
.l-header__button a::before {
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
}

.l-header__button a:focus-visible::before {
  left: 100%;
  top: 0;
}

@media (any-hover: hover) {
  .l-header__button a:hover::before {
    left: 100%;
    top: 0;
  }
}
.l-header__button--recruit {
  background-color: #d3b143;
}

.l-header__button--contact {
  background-color: #6b5400;
}

.l-drawer-icon {
  animation-duration: var(--header-duration);
  animation-name: blur-drawer-icon;
  display: flex;
  flex-direction: column;
  height: 22px;
  justify-content: space-between;
  position: fixed;
  right: 20px;
  top: 13px;
  width: 50px;
  z-index: 41;
}

@keyframes blur-drawer-icon {
  0% {
    opacity: 0;
  }
  80% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
body.is-visit .l-drawer-icon {
  animation-name: none;
}

.l-drawer-icon__bar {
  background-color: var(--text-color-primary);
  border-radius: 5px;
  height: 2px;
  transition: rotate var(--base-duration) var(--base-easing), translate var(--base-duration) var(--base-easing);
  width: 100%;
}

.l-drawer-icon__text {
  bottom: -6px;
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 250%;
}
.l-drawer-icon__text::before, .l-drawer-icon__text::after {
  color: var(--text-color-primary);
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(0.625rem, 0.3858418367rem + 1.0204081633vw, 0.875rem);
  font-weight: 300;
  left: 50%;
  position: absolute;
  top: 0;
  transition: opacity var(--base-duration) var(--base-easing);
  translate: -50% 0;
}
.l-drawer-icon__text::before {
  content: "メニュー";
  opacity: 1;
}
.l-drawer-icon__text::after {
  content: "閉じる";
  opacity: 0;
}

.l-drawer-icon.js-show .l-drawer-icon__bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 9px;
}
.l-drawer-icon.js-show .l-drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.l-drawer-icon.js-show .l-drawer-icon__bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -11px;
}
.l-drawer-icon.js-show .l-drawer-icon__text::before {
  opacity: 0;
}
.l-drawer-icon.js-show .l-drawer-icon__text::after {
  opacity: 1;
}

.l-main-margin-bottom {
  margin-bottom: clamp(10rem, -1.396731055rem + 23.7741456166vw, 20rem);
}

.l-footer {
  position: relative; padding-bottom: clamp(2.25rem, -0.321rem + 5.36vw, 4.5rem);
  background: url(../img/bg_footer@2x.png) no-repeat top center / cover;
}

.l-footer__title--en {
  background: linear-gradient(180deg, #dcd3ae 0%, #fff 95.95%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: sheila, sans-serif;
  font-size: clamp(4.375rem, -0.6110698366rem + 10.4011887073vw, 8.75rem);
  line-height: 1.7;
  padding-inline-end: 44px;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 767.9px) {
  .l-footer__title--en {
    font-size: clamp(4.375rem, 0.1897321429rem + 17.8571428571vw, 8.75rem);
  }
}

.l-footer__title--ja {
  color: #fff;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(1.125rem, -0.0859026746rem + 2.5260029718vw, 2.1875rem);
  font-weight: 800;
  margin-top: calc(clamp(0.875rem, -0.1222139673rem + 2.0802377415vw, 1.75rem) * -1);
  text-align: center;
  text-shadow: 0px 0px 10px #403a20;
}
@media screen and (max-width: 767.9px) {
  .l-footer__title--ja {
    font-size: clamp(1.125rem, 0.1085778061rem + 4.3367346939vw, 2.1875rem);
  }
}

.l-footer__text {
  color: #fff;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(0.75rem, -0.1047548291rem + 1.7830609212vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6; /* 38.4px */
  margin-top: clamp(0.5rem, -0.0698365527rem + 1.1887072808vw, 1rem);
  text-align: center;
  text-align: center;
  text-shadow: 0px 0px 10px #403a20;
}
@media screen and (max-width: 767.9px) {
  .l-footer__text {
    font-size: clamp(0.75rem, 0.0325255102rem + 3.0612244898vw, 1.5rem);
  }
}

.l-footer__button {
  margin-top: clamp(1.125rem, -0.1571322437rem + 2.6745913819vw, 2.25rem);
}
.l-footer__button .c-button-link {
  margin-inline: auto;
  margin-top: clamp(1.125rem, 0.0487882653rem + 4.5918367347vw, 2.25rem);
}
.l-footer__button .c-button-link span {
  font-size: clamp(1rem, 0.7150817236rem + 0.5943536404vw, 1.25rem);
  letter-spacing: 0;
}

.l-footer__logo {
  margin-inline: auto;
  margin-top: clamp(2.875rem, -0.4015601783rem + 6.8350668648vw, 5.75rem);
  width: 150px;
}
@media screen and (max-width: 767.9px) {
  .l-footer__logo {
    width: 100px;
  }
}

.l-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 767.9px) {
  .l-footer-bottom {
    align-items: end;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.l-footer-bottom__list {
  display: flex;
  gap: clamp(1rem, 0.2877043091rem + 1.485884101vw, 1.625rem);
}
@media screen and (max-width: 767.9px) {
  .l-footer-bottom__list {
    flex-direction: column;
    justify-content: space-between;
    row-gap: 8px;
  }
}

.l-footer-bottom__item a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.l-footer-copyright {
  color: #fff;
  font-size: 0.84375rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767.9px) {
  .l-footer-copyright {
    text-align: right;
  }
}



.p-home-recruit {
  background: url(../img/bg_recruit@2x.png) no-repeat top center/cover;
  overflow: hidden;
  padding-bottom: clamp(5.625rem, -0.7856612184rem + 13.3729569094vw, 11.25rem);
  position: relative;
  z-index: 1;
}
.p-home-recruit::before {
  background: url(../img/recruit-wave.svg) no-repeat center center/cover;
  content: "";
  height: 27.7vw;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -9;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit::before {
    top: 50%;
  }
}

.p-home-recruit__deco-text {
  margin-inline: auto;
  max-width: 1440px;
  position: relative;
  width: 100%;
  z-index: 0;
}
.p-home-recruit__deco-text::before {
  background: url(../img/text_recruit.svg) no-repeat center center/cover;
  content: "";
  height: clamp(18.8125rem, -2.6276002972rem + 44.7251114413vw, 37.625rem);
  left: 0;
  position: absolute;
  top: 9.6vw;
  width: clamp(5.9375rem, -0.8293090639rem + 14.1158989599vw, 11.875rem);
}

.p-home-recruit__container {
  padding-top: 121px;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__container {
    padding-top: 60px;
  }
}

.p-home-recruit__label {
  color: #fff;
  font-size: clamp(1.125rem, -0.0859026746rem + 2.5260029718vw, 2.1875rem);
  font-weight: 500;
  text-align: center;
  text-shadow: 0px 0px 10px #403a20;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__label {
    font-size: clamp(1rem, 0.5216836735rem + 2.0408163265vw, 1.5rem);
  }
}

.p-home-recruit__title {
  align-items: center;
  background: url(../img/img_recuruit-ribbon@2x.png) no-repeat center center/contain;
  display: flex;
  height: clamp(3.125rem, 0.2758172363rem + 5.9435364042vw, 5.625rem);
  justify-content: center;
  margin-inline: auto;
  margin-top: clamp(1.375rem, -0.3345096582rem + 3.5661218425vw, 2.875rem);
  padding-bottom: clamp(0.625rem, -0.3009843982rem + 1.9316493314vw, 1.4375rem);
  width: clamp(18.125rem, -2.5315750371rem + 43.0906389302vw, 36.25rem);
}
.p-home-recruit__title span {
  -webkit-text-stroke: 5px #fff;
  color: #6e674d;
  text-stroke: 5px #fff;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(1.1875rem, -0.1658618128rem + 2.823179792vw, 2.375rem);
  font-weight: 700;
  paint-order: stroke;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__title span {
    font-size: clamp(1rem, 0.5216836735rem + 2.0408163265vw, 1.5rem);
  }
}

.p-home-recruit__body {
  margin-top: clamp(2.25rem, -0.7416419019rem + 6.2407132244vw, 4.875rem);
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__body {
    margin-top: 32px;
  }
}

.p-home-recruit .swiper {
  padding-bottom: 40px;
}

.p-home-recruit .swiper-slide {
  transition: transform var(--base-duration) var(--base-easing);
}

.p-home-recruit .swiper-slide:hover {
  transform: translateY(-20px);
}

.p-home-recruit .slide {
  padding-block: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
}

.slide-media__label {
  padding-bottom: 10px;
  padding-top: 10px;
  transform: rotate(-9.7deg);
  transform: rotate(-8.5deg);
  width: 100%;
}
.slide-media__label span {
  color: #978649;
  display: block;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(1rem, 0.7150817236rem + 0.5943536404vw, 1.25rem);
  font-weight: 800;
  margin-inline: auto;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .slide-media__label span {
    font-size: clamp(0.625rem, 0.0271045918rem + 2.5510204082vw, 1.25rem);
    padding-bottom: 10px;
  }
}
.slide-media__label span::after {
  background: url(../img/img_hukidasi.svg) no-repeat center center/cover;
  bottom: 0;
  content: "";
  flex-shrink: 0;
  height: clamp(1.75rem, 1.3938521545rem + 0.7429420505vw, 2.0625rem);
  left: 50%;
  position: absolute;
  transform: rotate(8.6deg);
  translate: -50% 0;
  width: clamp(9.375rem, 6.5258172363rem + 5.9435364042vw, 11.875rem);
}
@media screen and (max-width: 767.9px) {
  .slide-media__label span::after {
    height: 16px;
    width: 100px;
  }
}

.p-home-recruit .slide-media {
  margin-top: -20px;
  padding: clamp(0.625rem, -0.0872956909rem + 1.485884101vw, 1.25rem);
  rotate: -8deg;
  transform: skew(-8.5deg);
}

.p-home-recruit .slide-media__inner {
  aspect-ratio: 292/503;
  border: 1px solid #fff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 20px rgba(139, 135, 121, 0.5));
  height: auto;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit .slide-media__inner {
    border-radius: 10px;
  }
}

.p-home-recruit .slide-media__img-wrapper {
  height: 110%;
  left: 50%;
  position: absolute;
  rotate: 8deg;
  top: 50%;
  transform: skew(8.5deg);
  translate: -50% -50%;
  width: 110%;
}
.p-home-recruit .slide-media__img-wrapper img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}

.p-home-recruit .slide-title-wrap {
  background: linear-gradient(84deg, #e3ddb9 9.89%, #d5d49b 90.97%);
  margin-inline: auto;
  padding-block: 8px;
  padding-inline: clamp(0.875rem, 0.0202451709rem + 1.7830609212vw, 1.625rem);
  transform: rotate(-10.411deg) skewX(-18deg);
  transform: rotate(-8.5deg) skewX(-18deg);
  width: -moz-fit-content;
  width: fit-content;
}

.p-home-recruit .slide-title {
  -webkit-text-stroke: 6px #fff;
  color: #46463d;
  text-stroke: 5px #fff;
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(1.125rem, 0.6976225854rem + 0.8915304606vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.09em;
  paint-order: stroke;
  transform: rotate(0deg) skewX(18deg);
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit .slide-title {
    font-size: clamp(0.875rem, 0.2771045918rem + 2.5510204082vw, 1.3rem);
  }
}

.p-home-recruit .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
}

.p-home-recruit .swiper-pagination-bullet {
  cursor: pointer;
  height: 1rem;
  transition: var(--transition);
  vertical-align: top;
  width: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit .swiper-pagination-bullet {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.p-home-recruit .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-inline: 10px;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-inline: 6px;
  }
}

.p-home-recruit .swiper-pagination-bullet-active {
  background: #d3b143;
  opacity: 1;
}

.p-home-recruit__bottom {
  margin-top: clamp(1.5rem, -0.3519687964rem + 3.8632986627vw, 3.125rem);
}

.p-home-recruit__button-label {
  color: var(--text-color-second);
  font-family: shippori-mincho, sans-serif;
  font-size: clamp(1rem, 0.7150817236rem + 0.5943536404vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__button-label {
    font-size: clamp(0.875rem, 0.5162627551rem + 1.5306122449vw, 1.25rem);
    padding-inline: clamp(0.625rem, -0.5707908163rem + 5.1020408163vw, 1.875rem);
  }
}
.p-home-recruit__button-label::before, .p-home-recruit__button-label::after {
  background-color: var(--text-color-second);
  content: "";
  display: block;
  height: 32px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 1px;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__button-label::before, .p-home-recruit__button-label::after {
    height: clamp(1.25rem, 0.5325255102rem + 3.0612244898vw, 2rem);
  }
}
.p-home-recruit__button-label::before {
  left: 0;
  rotate: -45deg;
}
.p-home-recruit__button-label::after {
  right: 0;
  rotate: 45deg;
}

.p-home-recruit__button {
  margin-top: 18px;
}
.p-home-recruit__button .c-button-link {
  background-color: #d3b143;
  border: 1px solid #d3b143;
  margin-inline: auto;
}
.p-home-recruit__button .c-button-link span {
  color: #fff;
  font-size: clamp(1.125rem, 0.6976225854rem + 0.8915304606vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.9px) {
  .p-home-recruit__button .c-button-link span {
    font-size: clamp(1.125rem, 0.7662627551rem + 1.5306122449vw, 1.5rem);
  }
}
.p-home-recruit__button .c-button-link em {
  background-color: #fff;
}
.p-home-recruit__button .c-button-link:before, .p-home-recruit__button .c-button-link:after {
  background-color: #fff;
  content: "";
}
.p-home-recruit__button .c-button-link:focus-visible:before {
  left: auto;
  right: 0;
  width: 100%;
}
.p-home-recruit__button .c-button-link:focus-visible:after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-home-recruit__button .c-button-link:focus-visible span {
  color: #d3b143;
}
.p-home-recruit__button .c-button-link:focus-visible em {
  background-color: #d3b143;
}
@media (any-hover: hover) {
  .p-home-recruit__button .c-button-link:hover:before {
    left: auto;
    right: 0;
    width: 100%;
  }
  .p-home-recruit__button .c-button-link:hover:after {
    left: 0;
    right: auto;
    width: 100%;
  }
  .p-home-recruit__button .c-button-link:hover span {
    color: #d3b143;
  }
  .p-home-recruit__button .c-button-link:hover em {
    background-color: #d3b143;
  }
}

.grecaptcha-badge { display:none; }
.anchor-target { scroll-margin-top: 120px; }
@media screen and (max-width: 767.9px) {
	.anchor-target { scroll-margin-top: 80px; }}
