@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px; /* 角を丸めて優しく */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.444;
}
@media screen and (min-width: 768px) {
  .c-btn span {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .c-btn {
    padding: 14px 24px;
  }
}

.page-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 20px;
  bottom: 30px;
  cursor: pointer;
  z-index: 100;
  /* 表示切り替えの初期状態 */
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: none;
  /* 重要：bottomはJSで高速に動かすため、transitionには含めない */
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-top {
    right: 40px;
    bottom: 30px;
  }
}
.page-top.is-active {
  opacity: 1;
  visibility: visible;
}
.page-top span {
  font-size: 16px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
  height: 85px;
  margin: 0;
  letter-spacing: 5px;
  text-align: right;
  color: #6e8c71;
  position: relative;
}
.page-top span:before {
  content: "";
  position: absolute;
  top: 2px;
  right: -5px;
  width: 2px;
  height: 20px;
  background: #6e8c71;
  -webkit-transform: skewX(-150deg);
          transform: skewX(-150deg);
}
.page-top span:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 2px;
  height: 85px;
  background: #6e8c71;
}

/* --- タイトルグループ --- */
.c-title__title-group {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .c-title__title-group {
    margin-bottom: 10px;
  }
}

.c-title__ja {
  font-size: 5.3846153846vw;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.4375;
}
@media screen and (min-width: 500px) {
  .c-title__ja {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1280px) {
  .c-title__ja {
    font-size: 32px;
  }
}

.c-title__en {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (min-width: 500px) {
  .c-title__en {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .c-title__en {
    font-size: 24px;
  }
}

/* --- ヒーローセクション（FV） --- */
.c-sub-hero {
  position: sticky;
  padding-top: 72px;
  width: 100%;
  height: 380px;
  top: 0;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 1; /* 次のセクション(z-index: 10等)より下に配置 */
}
@media screen and (min-width: 500px) {
  .c-sub-hero {
    height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .c-sub-hero {
    height: clamp(25.625rem, 27.397vw + 12.474rem, 34.375rem);
    padding-top: 92px;
  }
}
@media screen and (min-width: 1280px) {
  .c-sub-hero {
    height: clamp(35.625rem, 2.083vw + 33.75rem, 36.25rem);
    padding-top: 92px;
  }
}
.c-sub-hero__inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .c-sub-hero__inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .c-sub-hero__inner {
    padding-inline: 120px;
  }
}
.c-sub-hero {
  /* ==========================================================================
     c-breadcrumb (パンくずリスト)
     ========================================================================== */
}
.c-sub-hero .c-breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .c-sub-hero .c-breadcrumb {
    margin-top: 24px;
  }
}
.c-sub-hero .c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  .c-sub-hero .c-breadcrumb__list {
    font-size: 13px;
  }
}
.c-sub-hero .c-breadcrumb__list li {
  margin-right: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4166;
  color: #4a4643;
}
@media screen and (min-width: 1280px) {
  .c-sub-hero .c-breadcrumb__list li {
    font-size: 12px;
    margin-right: 12px;
  }
}
.c-sub-hero .c-breadcrumb__list li:not(:last-child)::after {
  content: "＞";
  margin-left: 6px;
  font-size: 8px;
}
@media screen and (min-width: 768px) {
  .c-sub-hero .c-breadcrumb__list li:not(:last-child)::after {
    font-size: 12px;
    margin-left: 12px;
  }
}
.c-sub-hero .c-breadcrumb__list li a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-sub-hero .c-breadcrumb__list li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.c-sub-hero .c-breadcrumb__list li[aria-current=page] {
  pointer-events: none;
}
.c-sub-hero {
  /* --- タイトルグループ（他でも使い回せる共通パーツ） --- */
}
.c-sub-hero .c-title-group .c-title__ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.444;
  color: #4a4643;
  display: block;
  letter-spacing: 0;
}
@media screen and (min-width: 1280px) {
  .c-sub-hero .c-title-group .c-title__ja {
    font-size: 36px;
  }
}
.c-sub-hero .c-title-group .c-title__en {
  font-size: 12px;
  font-weight: 500;
  color: #6e8c71;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.4583;
}
@media screen and (min-width: 1280px) {
  .c-sub-hero .c-title-group .c-title__en {
    font-size: 24px;
  }
}
.c-sub-hero__bg {
  position: absolute;
  top: -32px;
  right: -51.2820512821vw;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .c-sub-hero__bg {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-sub-hero__bg {
    aspect-ratio: 553/413;
    top: 0;
    right: -90px;
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .c-sub-hero__bg {
    right: -30px;
    width: auto;
    height: auto;
  }
}

.recruit__sub-hero {
  margin-top: 72px;
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../img/recruit-top-environment-cord3.jpg") no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__sub-hero {
    height: 100%;
    margin-top: 92px;
  }
}
.recruit__sub-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #000000 0%, #666666 100%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.recruit__sub-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.recruit__sub-hero__message {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100dvh - 72px);
}
@media screen and (min-width: 768px) {
  .recruit__sub-hero__message {
    height: calc(100dvh - 92px);
    gap: 36px;
  }
}
.recruit__sub-hero__title {
  font-size: 6.1538461538vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (min-width: 500px) {
  .recruit__sub-hero__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__sub-hero__title {
    font-size: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__sub-hero__title {
    font-size: 3.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .recruit__sub-hero__title {
    font-size: 56px;
  }
}
.recruit__sub-hero__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.recruit__sub-hero__sub-title p {
  font-size: 3.5897435897vw;
  line-height: 1.4583;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 500px) {
  .recruit__sub-hero__sub-title p {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__sub-hero__sub-title p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__sub-hero__sub-title p {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .recruit__sub-hero__sub-title p {
    font-size: 24px;
  }
}

.page-template-recruit-contact-jishu .recruit__sub-hero,
.page-template-recruit-contact-recruitment .recruit__sub-hero,
.page-template-recruit-contact-kengaku .recruit__sub-hero,
.page-template-thanks-recruit .recruit__sub-hero {
  background: url("../img/recruit-top-slider-bg1.jpg") no-repeat center center/cover;
}

.post-type-archive-recruit .recruit__sub-hero,
.single-recruit .recruit__sub-hero {
  background: url("../img/recruit-top-slider-bg3.jpg") no-repeat center center/cover;
}

.c-floating-anchor {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 100;
}

.c-floating {
  position: absolute;
  top: -130px;
  width: 100vw;
  height: 260px;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-floating {
    height: 260px;
    top: -160px;
  }
}
@media screen and (min-width: 1280px) {
  .c-floating {
    top: -110px;
  }
}
@media screen and (min-width: 1440px) {
  .c-floating {
    height: 18.0555555556vw;
  }
}
.c-floating .c-floating-text {
  position: absolute;
  top: 150px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  opacity: 1;
  color: #4a4643;
}

.c-path-guide {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  min-width: 800px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-path-guide {
    min-width: 1440px;
  }
}

.c-floating-text__item {
  display: block;
  white-space: nowrap;
  opacity: 1; /* ★最初は全体を隠しておく */
}
.c-floating-text__item span {
  position: absolute;
  opacity: 0;
  display: inline-block;
  will-change: transform;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.2em;
  /* 各文字も最初は透明にしておく */
  visibility: hidden;
  will-change: transform, opacity;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-floating-text__item span {
    font-size: 40px;
  }
}

.p-recruit .l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit .l-header__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }
}
.p-recruit .c-recruit-section-read-text {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit-section-read-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit-section-read-text {
    font-size: 18px;
  }
}
.p-recruit .c-btn-contact--tel span,
.p-recruit .c-btn-contact--line span,
.p-recruit .c-btn-contact--mail span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4375;
}
.p-recruit .c-btn-contact--tel,
.p-recruit .c-btn-contact--line,
.p-recruit .c-btn-contact--mail {
  width: 164px;
  height: 56px;
  color: #ffffff;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.p-recruit .c-btn-contact--tel:hover,
.p-recruit .c-btn-contact--line:hover,
.p-recruit .c-btn-contact--mail:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-recruit .c-btn-contact--tel {
  background-color: #d9966c;
}
.p-recruit .c-btn-contact--tel img {
  width: 24px;
  height: 25px;
}
.p-recruit .c-btn-contact--line {
  background-color: #00b900;
}
.p-recruit .c-btn-contact--line img {
  width: 35px;
  height: 35px;
}
.p-recruit .c-recruit-page-section__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit-page-section__contents {
    gap: 40px;
  }
}
.p-recruit .c-recruit-page-section-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit-page-section-head {
    gap: 20px;
  }
}
.p-recruit .c-recruit-page-section-title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
.p-recruit .c-recruit-page-section-title-top .ja {
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  font-size: 5.3846153846vw;
}
@media screen and (min-width: 500px) {
  .p-recruit .c-recruit-page-section-title-top .ja {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit-page-section-title-top .ja {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit-page-section-title-top .ja {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .c-recruit-page-section-title-top .ja {
    font-size: 40px;
  }
}
.p-recruit .c-recruit-page-section-title-top .en {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6e8c71;
}
@media screen and (min-width: 500px) {
  .p-recruit .c-recruit-page-section-title-top .en {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit-page-section-title-top .en {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .c-recruit-page-section-title-top .en {
    font-size: 18px;
  }
}
.p-recruit .c-recruit__contact {
  width: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact {
    width: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact {
    gap: 16px;
  }
}
.p-recruit .c-recruit__contact .c-btn-contact--tel {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--tel {
    width: 144px;
    height: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--tel {
    width: 164px;
    height: 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--tel span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--tel span {
    font-size: 16px;
  }
}
.p-recruit .c-recruit__contact .c-btn-contact--line {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--line {
    width: 144px;
    height: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--line {
    width: 164px;
    height: 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--line span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--line span {
    font-size: 16px;
  }
}
.p-recruit .c-recruit__contact .c-btn-contact--mail {
  width: 100%;
  background-color: #d9b36e;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--mail {
    width: 144px;
    height: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--mail {
    width: 164px;
    height: 56px;
  }
}
.p-recruit .c-recruit__contact .c-btn-contact--mail img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-recruit__contact .c-btn-contact--mail span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .c-recruit__contact .c-btn-contact--mail span {
    font-size: 16px;
  }
}

.c-single-page__body {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-single-page__body {
    font-size: 16px;
    gap: 24px;
  }
}
.c-single-page__body p {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
}
.c-single-page__body h2.wp-block-heading {
  border-left: 8px solid #6e8c71;
  padding: 2px 0 2px 20px;
  font-weight: 700;
  line-height: 1;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-single-page__body h2.wp-block-heading {
    font-size: 24px;
  }
}
.c-single-page__body h3.wp-block-heading {
  font-size: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid #6e8c71;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-single-page__body h3.wp-block-heading {
    font-size: 18px;
  }
}
.c-single-page__body .wp-block-list li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1em;
}
.c-single-page__body .wp-block-list li::marker {
  font-size: 0.75em;
  color: inherit;
}

.c-recruit-page-section__content-title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  border-bottom: 1px solid #6e8c71;
  font-weight: 700;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .c-recruit-page-section__content-title {
    font-size: 40px;
    padding-bottom: 30px;
  }
}

/* ==========================================================================
   p-about-policy (教育方針セクション)
   ========================================================================== */
.p-about-policy .c-title-group {
  text-align: center;
  margin-bottom: 24px;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .p-about-policy .c-title-group {
    margin-bottom: 60px;
  }
}
.p-about-policy {
  /* --- リード文エリア --- */
}
.p-about-policy__lead-group {
  text-align: center;
  margin-bottom: 24px;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-about-policy__lead-group {
    margin-bottom: 40px;
  }
}
.p-about-policy__lead {
  font-size: 4.6153846154vw;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45833;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about-policy__lead {
    font-size: 24px;
  }
}
.p-about-policy__sub-lead {
  font-size: 4.6153846154vw;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45833;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about-policy__sub-lead {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-policy__sub-lead .u-show-sp {
    display: none;
  }
}
.p-about-policy {
  /* --- 6つのグリッドレイアウト --- */
}
.p-about-policy__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
  padding-top: 27px;
}
.p-about-policy__grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* SVG解説:
     stroke-dasharray='3 16' -> 線の長さ3、間隔16
     stroke-linecap='round'  -> 先端を円形に
     stroke='%23fff'     -> 線の色
  */
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='2.5' y1='2.5' x2='100%25' y2='2.5' stroke='%23fff' stroke-width='5' stroke-dasharray='3 16' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .p-about-policy__grid {
    padding-top: 43px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-policy__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.p-about-policy {
  /* --- 各アイテム（カード風） --- */
}
.p-about-policy__item {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  height: 346px;
}
@media screen and (min-width: 768px) {
  .p-about-policy__item {
    width: 280px;
    height: 386px;
  }
}
.p-about-policy__item:nth-child(1) .p-about-policy__item-en {
  color: #8da9b0;
}
.p-about-policy__item:nth-child(1) .p-about-policy__item-title::after {
  background-color: #8da9b0;
}
.p-about-policy__item:nth-child(2) .p-about-policy__item-en {
  color: #d9966c;
}
.p-about-policy__item:nth-child(2) .p-about-policy__item-title::after {
  background-color: #d9966c;
}
.p-about-policy__item:nth-child(3) .p-about-policy__item-en {
  color: #9ba17b;
}
.p-about-policy__item:nth-child(3) .p-about-policy__item-title::after {
  background-color: #9ba17b;
}
.p-about-policy__item:nth-child(4) .p-about-policy__item-en {
  color: #938291;
}
.p-about-policy__item:nth-child(4) .p-about-policy__item-title::after {
  background-color: #938291;
}
.p-about-policy__item:nth-child(5) .p-about-policy__item-en {
  color: #d9b36e;
}
.p-about-policy__item:nth-child(5) .p-about-policy__item-title::after {
  background-color: #d9b36e;
}
.p-about-policy__item:nth-child(6) .p-about-policy__item-en {
  color: #e8b7b7;
}
.p-about-policy__item:nth-child(6) .p-about-policy__item-title::after {
  background-color: #e8b7b7;
}
.p-about-policy__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8px;
}
.p-about-policy__item-img {
  width: 100%;
  height: auto;
}
.p-about-policy__item-en {
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.p-about-policy__item-title {
  font-size: 18px;
  font-weight: 500;
  color: #4a4643;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 8px;
}
.p-about-policy__item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .p-about-policy__item-title {
    font-size: 24px;
  }
}
.p-about-policy__item-text {
  padding: 10px 15px 4px;
  font-size: 12px;
  line-height: 1.4375;
  letter-spacing: 0.02em;
  color: #4a4643;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-about-policy__item-text {
    font-size: 16px;
  }
}

.p-about-message {
  position: relative;
  z-index: 10;
  background-color: #f5f0e6;
}
@media screen and (min-width: 768px) {
  .p-about-message {
    padding-bottom: 100px;
  }
}
.p-about-message::before {
  position: absolute;
  content: "";
  background: url(../img/about-bottom-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -1px;
  width: 100vw;
  height: 30.7692307692vw;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .p-about-message::before {
    height: 16.6666666667vw;
  }
}
.p-about-message__inner {
  width: 100%;
  padding-inline: 16px;
  background-color: #f5f0e6;
  height: auto;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-about-message__inner {
    padding-inline: 60px;
  }
}
.p-about-message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  z-index: 100;
  top: 0;
  right: 0;
}
.p-about-message__container .c-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-about-message__container .c-title-group {
    margin-bottom: 40px;
  }
}
.p-about-message__content {
  border-radius: 18px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 32px;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-about-message__content {
    padding: 40px 64px;
    gap: 24px;
  }
}
.p-about-message__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #6e8c71;
}
@media screen and (min-width: 768px) {
  .p-about-message__title {
    font-size: 24px;
  }
  .p-about-message__title .u-show-sp {
    display: none;
  }
}
.p-about-message__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-about-message__text {
    max-width: 800px;
    gap: 16px;
  }
}
.p-about-message__text p {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about-message__text p {
    font-size: 16px;
  }
}
.p-about-message__signature {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: end;
  width: 100%;
}
.p-about-message__post {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-message__post {
    font-size: 16px;
  }
}

/* ==========================================================================
   p-about-policy (教育方針セクション)
   ========================================================================== */
.p-news__inner {
  background-color: #b27c59;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 16px;
}
@media screen and (min-width: 500px) {
  .p-news__inner {
    padding-inline: 60px;
  }
}
.p-news .c-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .p-news .c-title-group {
    margin-bottom: 40px;
  }
}
.p-news .c-title-group .c-title__en {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5.3846153846vw;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.4833;
}
@media screen and (min-width: 500px) {
  .p-news .c-title-group .c-title__en {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-news .c-title-group .c-title__en {
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1280px) {
  .p-news .c-title-group .c-title__en {
    font-size: 48px;
  }
}
.p-news .c-title-group .c-title__ja {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  font-size: 3.0769230769vw;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 500px) {
  .p-news .c-title-group .c-title__ja {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-news .c-title-group .c-title__ja {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news .c-title-group .c-title__ja {
    font-size: 24px;
  }
}
.p-news__contents {
  max-width: 900px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 43px;
  padding-bottom: 40px;
}
.p-news__contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* SVG解説:
     stroke-dasharray='3 16' -> 線の長さ3、間隔16
     stroke-linecap='round'  -> 先端を円形に
     stroke='%23fff'     -> 線の色
  */
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='2.5' y1='2.5' x2='100%25' y2='2.5' stroke='%23fff' stroke-width='5' stroke-dasharray='3 16' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.p-news__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-news__category-list {
    gap: 24px;
  }
}
.p-news__category-item a {
  display: block;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.4375;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-news__category-item a {
    padding: 8px 24px;
    font-size: 16px;
  }
}
.p-news__category-item.is-active a,
.p-news__category-item a:hover {
  color: #fff;
}
.p-news__category-item.is-active a, .p-news__category-item:hover a {
  background-color: #6e8c71;
}
.p-news__category-item.is-enrollment.is-active a,
.p-news__category-item.is-enrollment a:hover {
  background-color: #9ba17b;
}
.p-news__category-item.is-info.is-active a,
.p-news__category-item.is-info a:hover {
  background-color: #8da9b0;
}
.p-news__category-item.is-deli.is-active a,
.p-news__category-item.is-deli a:hover {
  background-color: #d9966c;
}
.p-news__category-item.is-other.is-active a,
.p-news__category-item.is-other a:hover {
  background-color: #938291;
}
.p-news {
  /* --- お知らせリスト --- */
}
.p-news__list {
  display: grid;
  gap: 20px;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    grid-template-columns: repeat(2, 3fr);
  }
}
.p-news__item {
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
.p-news__link {
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  height: 100%;
}
.p-news__link:hover {
  opacity: 0.9;
}
.p-news__category {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4285;
  color: #6e8c71;
  border-radius: 20px;
  border: 1px solid;
  border-color: #6e8c71;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__category {
    font-size: 14px;
  }
}
.p-news__category.is-enrollment {
  color: #9ba17b;
  border-color: #9ba17b;
}
.p-news__category.is-info {
  color: #8da9b0;
  border-color: #8da9b0;
}
.p-news__category.is-deli {
  color: #9ba17b;
  border-color: #9ba17b;
}
.p-news__category.is-other {
  color: #938291;
  border-color: #938291;
}
.p-news__title {
  width: 76.9230769231vw;
  height: 40px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #4a4643;
  font-weight: 500;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .p-news__title {
    width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__title {
    height: 48px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news__title {
    width: 400px;
  }
}
.p-news__date {
  font-size: 9px;
  color: #9e9790;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 10px;
  }
}

/* ==========================================================================
   c-pagination (ページネーション共通)
   ========================================================================== */
.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.c-pagination__item a,
.c-pagination__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.444;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
}
.c-pagination__item a {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.c-pagination__item a:hover {
  background-color: #6e8c71;
}
.c-pagination__item.is-active span {
  border: 1px solid #ffffff;
  background-color: #6e8c71;
  color: #fff;
}
.c-pagination__item.is-prev a svg, .c-pagination__item.is-next a svg {
  width: 9px;
  height: 15px;
}
.c-sub-bottom-bg {
  margin-bottom: 100px;
  background-color: #f5f0e6;
  margin-top: -1px;
  position: relative;
  width: 100vw;
  height: 30.7692307692vw;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .c-sub-bottom-bg {
    margin-bottom: unset;
    height: 16.6666666667vw;
  }
}
.c-sub-bottom-bg {
  z-index: 20;
}
.c-sub-bottom-bg::after {
  position: absolute;
  content: "";
  background: url(../img/about-bottom-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   p-news-post (記事詳細コンテンツ)
   ========================================================================== */
.p-news-post {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news-post {
    margin-top: 60px;
  }
}
.p-news-post {
  /* --- 記事ヘッダー --- */
}
.p-news-post__header {
  padding: 30px;
  background-color: #f5f0e6;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-news-post__header {
    padding: 40px 80px;
    gap: 24px;
  }
}
.p-news-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-news-post__meta {
    gap: 16px;
  }
}
.p-news-post__date {
  font-size: 14px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news-post__date {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news-post__date {
    font-size: 24px;
  }
}
.p-news-post__category {
  display: inline-block;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .p-news-post__category {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news-post__category {
    font-size: 16px;
  }
}
.p-news-post__category.is-enrollment {
  background-color: #9ba17b;
}
.p-news-post__category.is-info {
  background-color: #8da9b0;
}
.p-news-post__category.is-deli {
  background-color: #d9966c;
}
.p-news-post__category.is-other {
  background-color: #938291;
}
.p-news-post__title {
  font-size: 20px;
  line-height: 1.4375;
  font-weight: 500;
  color: #4a4643;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-news-post__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news-post__title {
    font-size: 32px;
  }
}
.p-news-post {
  /* --- 記事本文 (WordPressのthe_content出力を想定) --- */
}
.p-news-post__body {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background-color: #fdfcfb;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 60px 100px;
  font-size: 12px;
  line-height: 2;
  color: #4a4643;
  letter-spacing: 0.02em;
  padding: 40px;
}
@media screen and (min-width: 768px) {
  .p-news-post__body {
    padding: 60px 100px;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-news-post__body {
    font-size: 16px;
  }
}
.p-news-post__body p {
  margin-bottom: 1.5em;
}
.p-news-post__body p:last-child {
  margin-bottom: 0;
}
.p-news-post__body img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}
.p-news-post {
  /* --- 記事フッター（一覧へ戻るボタン） --- */
}
.p-news-post__footer {
  margin-top: 40px;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .p-news-post__footer {
    margin-top: 60px;
  }
}
.p-news-post__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-news-post__btn-wrapper .c-btn {
  padding: 14px 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-news-post__btn-wrapper .c-btn:hover {
  background-color: #6e8c71;
}

.page-contact .facility__inner,
.page-thanks .facility__inner,
.page-template-contact .facility__inner,
.page-template-thanks .facility__inner {
  padding-bottom: 100px;
}

.p-contact__inner {
  background-color: #b27c59;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 16px;
}
@media screen and (min-width: 500px) {
  .p-contact__inner {
    padding-inline: 60px;
  }
}
.p-contact .c-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 16px;
}
.p-contact__contents {
  width: 100%;
  max-width: 1040px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact__contents .c-btn {
  margin: 0 auto 2px;
}
.p-contact__contents .c-btn:hover {
  background-color: #6e8c71;
}
.p-contact__lead {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 40px;
  letter-spacing: 0;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    font-size: 16px;
    margin-bottom: 60px;
  }
}
.p-contact {
  /* --- お電話お問い合わせエリア --- */
}
.p-contact__tel-info {
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-info {
    margin-bottom: 54px;
  }
}
.p-contact .contact__box {
  width: 100%;
  background-color: #f5f0e6;
  border-radius: 30px;
  padding: 40px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact .contact__box {
    padding: 60px;
  }
}
.p-contact .contact__box--tel::after {
  content: none;
}
.p-contact {
  /* --- フォーム共通設定 --- */
}
.p-contact__form-wrapper {
  padding: 40px 30px 60px;
  background-color: #ffffff;
  margin: 0 auto;
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrapper {
    padding: 60px 60px 80px;
  }
}
.p-contact__form-wrapper .p-contact__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrapper .p-contact__form-top {
    gap: 24px;
  }
}
.p-contact__form-wrapper .p-contact__sub-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4583;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrapper .p-contact__sub-title {
    font-size: 24px;
  }
}
.p-contact__form-wrapper .p-contact__form-lead {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrapper .p-contact__form-lead {
    font-size: 16px;
  }
}
.p-contact {
  /* テーブルスタイル */
}
.p-contact__form-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-contact__form-table .p-contact__form-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-contact__form-table .p-contact__form-row {
    gap: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-contact__form-table .p-contact__form-row:first-child {
  border-top: 1px solid #d9d9d9;
}
.p-contact__form-table .p-contact__form-label {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 200px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.p-contact__form-table .p-contact__form-label label {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__form-table .p-contact__form-label label {
    font-size: 18px;
  }
}
.p-contact__form-table .p-contact__form-label .c-form-tag--required {
  color: #e8b7b7;
  font-size: 14px;
  margin-left: 6px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form-table .p-contact__form-label .c-form-tag--required {
    margin-left: 8px;
    font-size: 16px;
  }
}
.p-contact__form-table .p-contact__form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 710px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-contact__form-table .p-contact__form-input p {
  width: 100%;
}
.p-contact__form-table .p-contact__form-input {
  /* CF7対策：自動挿入されるspanをブロック化 */
}
.p-contact__form-table .p-contact__form-input .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-table .p-contact__form-input .wpcf7-form-control-wrap {
    font-size: 16px;
  }
}
.p-contact__form-table .p-contact__form-input input[type=text],
.p-contact__form-table .p-contact__form-input input[type=email],
.p-contact__form-table .p-contact__form-input input[type=tel],
.p-contact__form-table .p-contact__form-input input[type=date],
.p-contact__form-table .p-contact__form-input textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form-table .p-contact__form-input input[type=text],
  .p-contact__form-table .p-contact__form-input input[type=email],
  .p-contact__form-table .p-contact__form-input input[type=tel],
  .p-contact__form-table .p-contact__form-input input[type=date],
  .p-contact__form-table .p-contact__form-input textarea {
    font-size: 16px;
  }
}
.p-contact__form-table .p-contact__form-input input[type=text]:focus,
.p-contact__form-table .p-contact__form-input input[type=email]:focus,
.p-contact__form-table .p-contact__form-input input[type=tel]:focus,
.p-contact__form-table .p-contact__form-input input[type=date]:focus,
.p-contact__form-table .p-contact__form-input textarea:focus {
  outline: none;
  border-color: #6e8c71;
}
.p-contact__form-table .p-contact__form-input textarea {
  resize: vertical;
  min-height: 200px;
}
.p-contact {
  /* ラジオボタン */
}
.p-contact__form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.p-contact__form-radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form-radio-group label {
    font-size: 16px;
  }
}
.p-contact__form-radio-group label input[type=radio] {
  accent-color: #6e8c71;
  margin-right: 6px;
  width: 18px;
  height: 18px;
}
.p-contact {
  /* フォーム下部 */
}
.p-contact__form-privacy {
  text-align: center;
  margin-bottom: 10px;
}
.p-contact__form-privacy label {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-contact__form-privacy label {
    font-size: 18px;
  }
}
.p-contact__form-privacy label input[type=checkbox] {
  accent-color: #6e8c71;
  margin-right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.p-contact__form-bottom {
  padding-top: 40px;
}
.p-contact__form-submit-note {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-submit-note {
    font-size: 16px;
  }
}
.p-contact__form-submit .c-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact__form-submit .c-btn-wrapper .c-btn {
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  border-radius: 40px;
  padding: 20px 80px;
  background-color: #6e8c71;
  cursor: pointer;
  border: none;
}
.p-contact__form-submit .c-btn-wrapper .c-btn span {
  font-weight: 700;
}
.p-contact__form-submit .c-btn-wrapper .c-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* CF7のバリデーションエラー表示用 */
.wpcf7-not-valid-tip {
  color: #e8b7b7;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #6e8c71;
  border-radius: 8px;
  text-align: center;
}

.wpcf7-spinner {
  display: none !important;
}

.p-contact__recaptcha-notice {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.6;
  color: #888;
  text-align: center;
}
.p-contact__recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contact__recaptcha-notice a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* 最後に、右下のバッジを非表示にする（まだやっていなければ） */
.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-list-item-label {
  font-weight: 500;
}

.p-contact__form-submit-note {
  font-weight: 500;
}

.p-privacy {
  padding-block: 60px;
  background-color: #f5f0e6;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 100px;
  }
}
.p-privacy__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    padding-inline: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-privacy .c-title-group {
  gap: 2px;
  margin: 0 auto;
  text-align: center;
}
.p-privacy .c-title-group .c-title__ja {
  color: #4a4643;
}
.p-privacy .c-title-group .c-title__en {
  color: #b27c59;
  line-height: 1.5;
}
.p-privacy {
  /* 導入文 */
}
.p-privacy__intro {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
  color: #4a4643;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-privacy__intro {
    font-size: 16px;
    margin-bottom: 30px;
    padding-top: 60px;
  }
}
.p-privacy__contents {
  margin: 0 auto;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-privacy {
  /* セクション（各項目） */
}
.p-privacy__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-privacy__section p {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__section p {
    font-size: 16px;
  }
}
.p-privacy {
  /* 項目見出し [cite: 97, 99, 104, 109, 113, 119, 121] */
}
.p-privacy__section-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__section-title {
    font-size: 18px;
  }
}
.p-privacy {
  /* 箇条書きリスト [cite: 101-103, 106-108, 115-118] */
}
.p-privacy__list {
  padding-left: 0;
}
.p-privacy__list li {
  position: relative;
  list-style: none;
  padding-left: 1.5em;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-privacy__list li {
    font-size: 16px;
  }
}
.p-privacy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.p-privacy__list li:last-child {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.p-recruit .l-header__logo-recruit {
  font-size: 2.5641025641vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.444;
  color: #ffffff;
  padding: 6px 8px;
  border-radius: 5px;
  background-color: #6e8c71;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 500px) {
  .p-recruit .l-header__logo-recruit {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .l-header__logo-recruit {
    font-size: 18px;
    padding: 10px 18px;
    margin-left: 16px;
  }
}
.p-recruit .l-header__logo img {
  width: 71.19px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit .l-header__logo img {
    width: 89px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .l-header__inner {
    padding: 0 40px;
    max-width: 1920px;
  }
}
.p-recruit .l-header__list {
  gap: 20px;
}
.p-recruit .l-header__list .l-header__item .ja {
  font-size: 18px;
}
@media screen and (min-width: 1280px) {
  .p-recruit .l-header__list .l-header__item .ja {
    font-size: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .l-header__list .l-header__item .ja {
    font-size: 16px;
  }
}
.p-recruit .l-header__list .l-header__item .en {
  font-size: 14px;
  font-weight: 500;
  color: #6e8c71;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .p-recruit .l-header__list .l-header__item .en {
    font-size: 12px;
  }
}
.p-recruit .l-header__nav {
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-recruit .l-header__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-recruit .recruit__hero {
  width: 100%;
  height: calc(100dvh - 72px);
  top: 72px;
  position: sticky;
  overflow: hidden;
  -webkit-transition: background-color 0.8s ease;
  transition: background-color 0.8s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__hero {
    height: calc(100dvh - 92px);
    top: 92px;
  }
}
.p-recruit .recruit__hero.is-environment {
  background-color: #f5f0e6 !important;
}
.p-recruit .recruit__hero.is-environment .recruit__hero__bg,
.p-recruit .recruit__hero.is-environment .recruit__hero__slider,
.p-recruit .recruit__hero.is-environment .recruit__hero__inner::before {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.p-recruit .recruit__hero.is-environment .recruit__hero__message {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-recruit .recruit__hero {
    height: calc(100dvh - 92px);
    top: 92px;
  }
}
.p-recruit .recruit__hero__inner {
  width: 100%;
  height: 100%;
}
.p-recruit .recruit__hero__bg {
  height: 100%;
  width: 100%;
}
.p-recruit .recruit__hero__bg::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at center, #000000 0%, #666666 100%);
  opacity: 0.35;
  pointer-events: none;
}
.p-recruit .recruit__hero__slider {
  position: relative;
  height: 100%;
  width: 100%;
}
.p-recruit .recruit__hero__slider-item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  /* フェードアニメーションの設定（25秒周期） */
  -webkit-animation: fadeAnimation 25s infinite;
          animation: fadeAnimation 25s infinite;
  /* 各画像の開始時間を5秒ずつずらす */
}
.p-recruit .recruit__hero__slider-item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-recruit .recruit__hero__slider-item:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.p-recruit .recruit__hero__slider-item:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.p-recruit .recruit__hero__slider-item:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.p-recruit .recruit__hero__slider-item:nth-child(5) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.p-recruit .recruit__hero__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-recruit .recruit__hero__message {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s, -webkit-transform 0.8s ease;
}
.p-recruit .recruit__hero__message.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-recruit .recruit__hero__title {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 9.2307692308vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 500px) {
  .p-recruit .recruit__hero__title {
    font-size: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .recruit__hero__title {
    font-size: 3.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .recruit__hero__title {
    font-size: 56px;
  }
}
.p-recruit .recruit__hero__sub-title {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 5.641025641vw;
  line-height: 1.5;
  letter-spacing: 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 500px) {
  .p-recruit .recruit__hero__sub-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .recruit__hero__sub-title {
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .recruit__hero__sub-title {
    font-size: 32px;
  }
}
.p-recruit .recruit__hero-cta {
  display: inline-block;
  background-color: #6e8c71;
  color: #ffffff;
  border: 2px solid #ffffff;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 4.6153846154vw;
  padding: 24px 30px;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 500px) {
  .p-recruit .recruit__hero-cta {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit .recruit__hero-cta {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit .recruit__hero-cta {
    font-size: 24px;
  }
}
.p-recruit .recruit__hero-cta:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.p-recruit .hero__instagram {
  color: #ffffff;
}
.p-recruit {
  /* フェード用キーフレーム 
    1枚あたり5秒（全体の20%）のサイクル
  */
}
@-webkit-keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  8% {
    /* 約2秒かけてフェードイン */
    opacity: 1;
  }
  20% {
    /* 5秒地点まで表示を維持 */
    opacity: 1;
  }
  28% {
    /* 次の画像と重なりながら約2秒かけてフェードアウト */
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  8% {
    /* 約2秒かけてフェードイン */
    opacity: 1;
  }
  20% {
    /* 5秒地点まで表示を維持 */
    opacity: 1;
  }
  28% {
    /* 次の画像と重なりながら約2秒かけてフェードアウト */
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.p-recruit .recruit__message {
  min-height: 100dvh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 80px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), backdrop-filter 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), backdrop-filter 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), backdrop-filter 0.8s ease;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), backdrop-filter 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 1280px) {
  .p-recruit .recruit__message {
    padding: 120px 40px;
    gap: 24px;
  }
}
.p-recruit .recruit__message.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-recruit .recruit__message.is-show .recruit__message-title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-recruit .recruit__message.is-show .recruit__message-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-recruit .recruit__message.is-show .recruit__message-sign {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.p-recruit .recruit__message-title, .p-recruit .recruit__message-text, .p-recruit .recruit__message-sign {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__message {
    padding: 120px 40px;
  }
}
.p-recruit .recruit__message-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-recruit .recruit__message-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: #6e8c71;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__message-title {
    font-size: 24px;
  }
}
.p-recruit .recruit__message-text-wrap {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__message-text-wrap {
    gap: 16px;
  }
}
.p-recruit .recruit__message-text {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  width: 100%;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__message-text {
    font-size: 16px;
  }
}
.p-recruit .recruit__message-sign {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-recruit .recruit__message-sign {
    font-size: 18px;
  }
}
.p-recruit .scroll_down {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
.p-recruit .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-recruit .scroll_down a {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-align: center;
  display: inline-table;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit .scroll_down a {
    right: 8px;
    font-size: 18px;
  }
}
.p-recruit .scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
}
.p-recruit .scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-recruit .scroll_down a:after {
    width: 2px;
  }
}
.p-recruit .scroll_down a:hover {
  opacity: 0.5;
}
.p-recruit #type01 a:after {
  -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.recruit__Environment {
  position: relative;
  padding: 80px 0;
  background-color: #f5f0e6;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .recruit__Environment {
    padding-inline: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.recruit__Environment .recruit__Environment-card-title-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 16px;
}
.recruit__Environment .recruit__Environment-card-title-sp span {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  border: 1px solid #8da9b0;
  border-radius: 40px;
  line-height: 1.5;
  padding: 4px 16px;
}
@media screen and (min-width: 1280px) {
  .recruit__Environment .recruit__Environment-card-title-sp span {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__Environment .recruit__Environment-card-title-sp {
    display: none;
  }
}
.recruit__Environment__inner {
  max-width: 460px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__Environment__inner {
    max-width: 1200px;
  }
}
.recruit__Environment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.recruit__Environment-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit__Environment-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding: 30px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #9e9790;
}
@media screen and (min-width: 768px) {
  .recruit__Environment-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 4.8611111111vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card {
    padding: 70px 0;
  }
}
.recruit__Environment-card:last-of-type {
  border-bottom: 1px solid #9e9790;
}
.recruit__Environment-card-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 640/427;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__Environment-card-img {
    border-radius: 20px;
    width: 44.4444444444vw;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card-img {
    width: 640px;
  }
}
.recruit__Environment-card-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recruit__Environment-card-img img {
    border-radius: 20px;
  }
}
.recruit__Environment-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 16px;
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card-content {
    padding-top: unset;
    gap: 32px;
  }
}
.recruit__Environment-card-title {
  display: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.recruit__Environment-card-title span {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  border: 1px solid #8da9b0;
  border-radius: 40px;
  line-height: 1.5;
  padding: 4px 16px;
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card-title span {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__Environment-card-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 2.2222222222vw;
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card-title {
    font-size: 32px;
  }
}
.recruit__Environment-card-text {
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .recruit__Environment-card-text {
    line-height: 2.4;
    font-size: 14px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Environment-card-text {
    padding-left: 70px;
    font-size: 18px;
  }
}

.recruit__Benefits {
  position: relative;
  top: -1px;
  background-color: #f5f0e6;
}
.recruit__Benefits-bg {
  padding: 80px 0 40px;
  width: 100%;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits-bg {
    padding: 80px 0 60px;
  }
}
.recruit__Benefits__inner {
  padding-inline: 6.1538461538vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits__inner {
    padding-inline: 24px;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits__inner {
    padding-inline: unset;
  }
}
.recruit__Benefits-body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-body {
    gap: 50px;
  }
}
.recruit__Benefits-img {
  border-radius: 10px;
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits-img {
    height: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-img {
    border-radius: 20px;
    height: 500px;
  }
}
.recruit__Benefits-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-img img {
    border-radius: 20px;
  }
}
.recruit__Benefits-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.recruit__Benefits-content {
  height: 190px;
  padding: 30px 24px;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(158, 151, 144, 0.7);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits-content {
    padding: 40px 30px;
    width: 100%;
    max-width: 580px;
    height: 212px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-content {
    width: 580px;
    height: 224px;
  }
}
.recruit__Benefits-content-title {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: 18px;
  color: #d9b36e;
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-content-title {
    font-size: 24px;
  }
}
.recruit__Benefits-content-title.-skyblue {
  color: #8da9b0;
}
.recruit__Benefits-content-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.recruit__Benefits-content-lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.recruit__Benefits-content-lists li {
  list-style-type: disc; /* 標準の黒丸 */
  list-style-position: outside; /* 2行目以降をインデントさせる */
  margin-left: 0.6em;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .recruit__Benefits-content-lists li {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Benefits-content-lists li {
    font-size: 16px;
  }
}

.p-recruit .about::before {
  content: none;
}
.p-recruit .p-contact__inner {
  background-color: #f5f0e6;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-recruit .p-contact__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.p-recruit .p-contact__form-lead {
  text-align: start;
}
@media screen and (min-width: 768px) {
  .p-recruit .p-contact__form-lead {
    text-align: center;
  }
}
.p-recruit .p-contact__form-lead a {
  color: #6e8c71;
  border-bottom: 1px solid;
}

.page-template-thanks-recruit .p-contact .c-title__ja {
  color: #4a4643;
}
.page-template-thanks-recruit .p-contact .p-contact__lead {
  color: #4a4643;
}
.page-template-thanks-recruit .p-contact .c-btn {
  color: #4a4643;
  border-color: #4a4643;
}
.page-template-thanks-recruit .p-contact .c-btn :hover {
  color: #ffffff;
  border-color: #ffffff;
}

.recruit__Work {
  position: relative;
  top: -2px;
  background-color: #f5f0e6;
}
.recruit__Work-bg {
  padding: 40px 0 80px;
  width: 100%;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .recruit__Work-bg {
    padding: 60px 0 80px;
  }
}
.recruit__Work__inner {
  padding-inline: 6.1538461538vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__Work__inner {
    padding-inline: 24px;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Work__inner {
    padding-inline: unset;
  }
}

.recruit__Practicum {
  position: relative;
  top: -2px;
  background-color: #f5f0e6;
}
.recruit__Practicum-bg {
  padding: 80px 0 40px;
  width: 100%;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background-color: #f5f0e6;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-bg {
    padding: 80px 0;
  }
}
.recruit__Practicum__inner {
  padding-inline: 6.1538461538vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum__inner {
    padding-inline: 24px;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Practicum__inner {
    padding-inline: unset;
  }
}
.recruit__Practicum-card-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-wrap {
    gap: 40px;
  }
}
.recruit__Practicum-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding: 24px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card {
    padding: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    max-width: 540px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Practicum-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: unset;
    padding: 40px;
  }
}
.recruit__Practicum-card-img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  aspect-ratio: 490/327;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-img {
    border-radius: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Practicum-card-img {
    width: 490px;
  }
}
.recruit__Practicum-card-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-img img {
    border-radius: 8px;
  }
}
.recruit__Practicum-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-content {
    padding-top: unset;
    gap: 16px;
  }
}
.recruit__Practicum-card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4375;
  margin-bottom: 4.8px;
  border-bottom: 4.8px solid #e8b7b7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__Practicum-card-title.-skyblue {
  border-bottom: 4.8px solid #8da9b0;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Practicum-card-title {
    font-size: 32px;
  }
}
.recruit__Practicum-card-text {
  padding-top: 8px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .recruit__Practicum-card-text {
    padding-top: unset;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Practicum-card-text {
    font-size: 18px;
    width: 540px;
  }
}

.recruit__Recruitment {
  position: relative;
  top: -2px;
  background-color: #f5f0e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 80px;
  margin-bottom: -2px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.recruit__Recruitment .c-recruit-page-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit__Recruitment .c-recruit-page-section-title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit__Recruitment-bg {
  padding: 40px 0;
  width: 100%;
  border-radius: 40px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment-bg {
    padding: 80px 40px;
    max-width: 760px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment-bg {
    max-width: 1020px;
    padding: 80px 60px;
  }
}
.recruit__Recruitment__inner {
  padding-inline: 6.1538461538vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment__inner {
    padding-inline: 24px;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment__inner {
    padding-inline: unset;
  }
}
.recruit__Recruitment .recruitment-photo {
  border-radius: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-photo {
    height: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-photo {
    height: 600px;
  }
}
.recruit__Recruitment .recruitment-photo img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit__Recruitment .recruitment-title {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4375;
  border-bottom: 1px solid #9ba17b;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-title {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-title {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.recruit__Recruitment .recruitment-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content {
    gap: 40px;
  }
}
.recruit__Recruitment .recruitment-content__read {
  width: 100%;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content__read {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content__read {
    font-size: 16px;
  }
}
.recruit__Recruitment .recruitment-content__title {
  padding-left: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-left: 8px solid #6e8c71;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content__title {
    font-size: 24px;
  }
}
.recruit__Recruitment .recruitment-content__title-read {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  font-size: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content__title-read {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content__title-read {
    font-size: 16px;
  }
}
.recruit__Recruitment .recruitment-content__block-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  font-size: 16px;
  border-bottom: 2px solid #8da9b0;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content__block-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content__block-title {
    font-size: 18px;
  }
}
.recruit__Recruitment .recruitment-content__block-title.-pink {
  border-color: #e8b7b7;
}
.recruit__Recruitment .recruitment-content__block-read {
  padding-top: 12px;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  font-size: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content__block-read {
    padding-top: 15px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content__block-read {
    font-size: 16px;
  }
}
.recruit__Recruitment .recruitment-content-blocks {
  padding-top: 24px;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content-blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.recruit__Recruitment .recruitment-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 270px;
  height: 162px;
  border-radius: 20px;
  padding: 20px;
  border: 1.5px solid #8da9b0;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content-block {
    max-width: unset;
    width: 194px;
    height: 180px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content-block {
    width: 270px;
    height: 202px;
  }
}
.recruit__Recruitment .recruitment-content-block.-pink {
  border-color: #e8b7b7;
}
.recruit__Recruitment .recruitment-content-block-title {
  color: #8da9b0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content-block-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content-block-title {
    font-size: 18px;
  }
}
.recruit__Recruitment .recruitment-content-block-title.-pink {
  color: #e8b7b7;
}
.recruit__Recruitment .recruitment-content-block ul {
  width: 100%;
  padding-top: 16px;
}
.recruit__Recruitment .recruitment-content-block ul li {
  list-style-type: disc; /* 標準の黒丸 */
  list-style-position: outside; /* 2行目以降をインデントさせる */
  margin-left: 1em;
  font-weight: 500;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  line-height: 2;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content-block ul li {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content-block ul li {
    font-size: 14px;
  }
}
.recruit__Recruitment .recruitment-content-block a {
  font-weight: 500;
  margin: auto 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  font-size: 12px;
  color: #6e8c71;
  border-bottom: 1px solid #6e8c71;
}
@media screen and (min-width: 768px) {
  .recruit__Recruitment .recruitment-content-block a {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__Recruitment .recruitment-content-block a {
    font-size: 14px;
  }
}

.recruit-work__works {
  padding: 60px 0 0;
  background-color: #f5f0e6;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works {
    padding: 120px 0 80px;
  }
}
.recruit-work__works-contents {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-contents {
    gap: 80px;
  }
}
.recruit-work__works-content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .recruit-work__works-content {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content {
    padding: 60px 40px;
    gap: 32px;
    max-width: 768px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content {
    max-width: unset;
    padding: 80px 60px;
    gap: 48px;
  }
}
.recruit-work__works-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-top {
    gap: 40px;
  }
}
.recruit-work__works-content-top__read-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-top__read-wrap {
    margin-bottom: unset;
    gap: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-top__read-wrap {
    gap: 40px;
  }
}
.recruit-work__works-content-top__read-wrap a {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #6e8c71;
  border-bottom: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-top__read-wrap a {
    font-size: 16px;
  }
}
.recruit-work__works-content-top picture {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 480/330;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-top picture {
    border-radius: 20px;
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-top picture {
    width: 480px;
    height: 330px;
  }
}
.recruit-work__works-content-top picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-work__works-content-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #d9966c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit-work__works-content-title.-green {
  color: #9ba17b;
}
.recruit-work__works-content-title.-skyblue {
  color: #8da9b0;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-title {
    font-size: 2.2222222222vw;
  }
}
.recruit-work__works-content-top__read {
  font-size: 12px;
  line-height: 2;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-top__read {
    font-size: 16px;
  }
}
.recruit-work__works-content-middle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-middle {
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-middle {
    gap: 40px;
  }
}
.recruit-work__works-article {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  width: 100%;
}
.recruit-work__works-article iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-filter: grayscale(0.2);
          filter: grayscale(0.2);
}
@media screen and (min-width: 768px) {
  .recruit-work__works-article {
    max-width: 500px;
  }
}
.recruit-work__works-content__info {
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #d9966c;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content__info {
    padding: 12px 24px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content__info {
    padding: 30px 40px;
  }
}
.recruit-work__works-content__info.-green {
  border-color: #9ba17b;
}
.recruit-work__works-content__info.-green .recruit-work__works-info-item {
  background-image: linear-gradient(to right, #9ba17b 7px, transparent 7px);
}
.recruit-work__works-content__info.-green .recruit-work__works-info-item:last-child {
  background-image: none;
}
.recruit-work__works-content__info.-skyblue {
  border-color: #8da9b0;
}
.recruit-work__works-content__info.-skyblue .recruit-work__works-info-item {
  background-image: linear-gradient(to right, #8da9b0 7px, transparent 7px);
}
.recruit-work__works-content__info.-skyblue .recruit-work__works-info-item:last-child {
  background-image: none;
}
.recruit-work__works-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 500px) {
  .recruit-work__works-info-list {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-info-list {
    width: 400px;
  }
}
.recruit-work__works-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  background-image: linear-gradient(to right, #d9966c 7px, transparent 7px);
  background-size: 14px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-info-item {
    padding: 6px 0;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-info-item {
    padding: 12px 0;
    gap: 40px;
  }
}
.recruit-work__works-info-item:last-child {
  background-image: none;
}
.recruit-work__works-info-item dt {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0.02em;
  line-height: 1;
  width: 58px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-info-item dt {
    font-size: 18px;
    width: 74px;
  }
}
.recruit-work__works-info-item dt::after {
  position: absolute;
  content: "：";
  left: 70px;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-info-item dt::after {
    left: 86px;
  }
}
.recruit-work__works-info-item dd {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-info-item dd {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-info-item dd {
    font-size: 16px;
  }
}
.recruit-work__works-content-bottom {
  padding: 16px;
  border: 1px solid #d9966c;
  border-radius: 10px;
}
.recruit-work__works-content-bottom.-green {
  border-color: #9ba17b;
}
.recruit-work__works-content-bottom.-green .recruit-work__works-content__message-title {
  background-image: linear-gradient(to right, #9ba17b 8px, transparent 8px);
}
.recruit-work__works-content-bottom.-skyblue {
  border-color: #8da9b0;
}
.recruit-work__works-content-bottom.-skyblue .recruit-work__works-content__message-title {
  background-image: linear-gradient(to right, #8da9b0 8px, transparent 8px);
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content-bottom {
    border-radius: 20px;
    padding: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content-bottom {
    padding: 40px 60px;
  }
}
.recruit-work__works-content__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content__message {
    gap: 16px;
  }
}
.recruit-work__works-content__message-title {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 100%;
  font-size: 18px;
  padding-bottom: 12px;
  text-align: left;
  background-image: linear-gradient(to right, #d9966c 8px, transparent 8px);
  background-size: 16px 1.8px;
  background-position: bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .recruit-work__works-content__message-title {
    font-size: 18px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content__message-title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .recruit-work__works-content__message-title {
    font-size: 24px;
  }
}
.recruit-work__works-content__message-text {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content__message-text {
    font-size: 16px;
  }
}
.recruit-work__works-content__message-name {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 1280px) {
  .recruit-work__works-content__message-name {
    font-size: 16px;
  }
}

.post-type-archive-recruit .recruit__Recruitment {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-recruit .recruit__Recruitment {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.post-type-archive-recruit .recruit__Work {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-recruit .recruit__Work {
    padding-bottom: 120px;
  }
}
.post-type-archive-recruit .recruit__Work-bg {
  border-radius: 40px;
}

.single-recruit .recruit__Recruitment {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .single-recruit .recruit__Recruitment {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.single-recruit .recruit__Work {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .single-recruit .recruit__Work {
    padding-bottom: 120px;
  }
}
.single-recruit .recruit__Work-bg {
  border-radius: 40px;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #4a4643;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 120px;
    padding-right: 120px;
  }
}

main {
  background-color: #f5f0e6;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}

.p-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f5f0e6;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-loader__inner {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.p-loader .l-header__logo {
  margin-left: 30px;
}

body.is-fixed {
  overflow: hidden;
}

/* --- ヘッダー全体 --- */
.l-header {
  width: 100vw;
  height: 72px;
  background-color: #fdfcfb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 92px;
  }
}

.l-header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .l-header__inner {
    max-width: 1440px;
    padding: 0 120px;
  }
}

/* --- ロゴエリア --- */
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  text-decoration: none;
  padding-right: 34px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-inline: auto;
  position: relative;
  z-index: 1001;
}
@media screen and (min-width: 1280px) {
  .l-header__logo {
    padding-right: unset;
    margin-inline: unset;
    gap: 8px;
  }
}
.l-header__logo:hover {
  opacity: 0.6;
}

.l-header__logo img {
  height: 40px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .l-header__logo img {
    height: 50px;
  }
}

.l-header__logo-title-column {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.l-header__logo-title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #4a4643;
}
@media screen and (min-width: 1280px) {
  .l-header__logo-title {
    font-size: 10px;
  }
}
.l-header__logo-title span {
  font-weight: 500;
  font-size: 16px;
  margin-left: 3px;
}
@media screen and (min-width: 1280px) {
  .l-header__logo-title span {
    font-size: 18px;
    letter-spacing: 0.04em;
  }
}

.l-header__logo-title-column > span {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6e8c71;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .l-header__logo-title-column > span {
    font-size: 12px;
  }
}

/* --- ハンバーガーボタン --- */
.l-header__hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: absolute;
  right: 20px;
  z-index: 1001;
}
@media screen and (min-width: 1280px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  background-color: #4a4643;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
}
.l-header__hamburger span:nth-child(1) {
  top: 0;
}
.l-header__hamburger span:nth-child(2) {
  top: 9px;
}
.l-header__hamburger span:nth-child(3) {
  bottom: 0;
}
.l-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

/* --- ナビゲーション --- */
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f5f0e6;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__nav.is-active {
  background-color: #f5f0e6;
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  /* 画面いっぱいの高さを指定 */
  height: calc(100dvh - 72px);
  /* 縦方向に中身が溢れた場合のみスクロールを出す */
  overflow-y: auto;
  /* iOSでのスクロールを滑らかにする設定 */
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header__nav.is-active {
    top: 92px;
    height: calc(100dvh - 92px);
  }
}
.l-header__nav.is-active .l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__nav.is-active .l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 40px;
}
@media screen and (min-width: 1280px) {
  .l-header__nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    z-index: auto;
    -webkit-transition: none;
    transition: none;
  }
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .l-header__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.l-header__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #4a4643;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  gap: 6px;
}
.l-header__item a:hover {
  opacity: 0.6;
}

.l-header__item .ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .l-header__item .ja {
    font-size: 16px;
  }
}

.l-header__item .en {
  font-size: 14px;
  font-weight: 500;
  color: #6e8c71;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .l-header__item .en {
    font-size: 12px;
  }
}

/* --- ヒーローセクション（FV） --- */
.hero {
  padding-top: 72px;
  width: 100%;
  height: 100dvh;
  position: sticky; /* 背面に固定する設定 */
  top: 0;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 1; /* 次のセクション(z-index: 10等)より下に配置 */
}
@media screen and (min-width: 768px) {
  .hero {
    height: 100dvh;
    padding-top: 92px;
  }
}

.hero__inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    padding-inline: 120px;
  }
}

.hero__instagram {
  position: absolute;
  left: 20px;
  top: 25px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #4a4643;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.hero__instagram svg {
  width: 14px;
  height: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .hero__instagram svg {
    width: 18px;
  }
}
.hero__instagram:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .hero__instagram {
    left: 24px;
    font-size: 18px;
  }
}

/* --- 背景スライダー（右から左へ流れる） --- */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: 100%;
  z-index: 1;
}

/* --- 背景スライダー全体 --- */
.hero__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: loop-flow 125s linear infinite;
          animation: loop-flow 125s linear infinite;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .hero__slider {
    -webkit-animation: loop-flow 75s linear infinite;
            animation: loop-flow 75s linear infinite;
  }
}

/* --- 各アイテム --- */
/* --- 各アイテム --- */
.hero__slider-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
.hero__slider-item:nth-child(1) {
  margin-bottom: 130px; /* 大和園風の上下のゆらぎ */
}

.hero__slider-item:nth-child(5n+1) .hero__item-visual {
  margin-bottom: 40px;
  width: 428px;
  height: 389px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+1) .hero__item-visual {
    width: 428px;
    height: 389px;
    margin-top: 130px;
  }
}
.hero__slider-item:nth-child(5n+1) .hero__img-wrap {
  mask-image: url("../img/frame1.svg");
  -webkit-mask-image: url("../img/frame1.svg");
}

.hero__slider-item:nth-child(5n+2) .hero__item-visual {
  width: 422px;
  height: 354px;
  margin-top: 340px;
  margin-left: 20px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+2) .hero__item-visual {
    width: 422px;
    height: 354px;
    margin-top: 340px;
    margin-left: 40px;
  }
}
.hero__slider-item:nth-child(5n+2) .hero__img-wrap {
  mask-image: url("../img/frame2.svg");
  -webkit-mask-image: url("../img/frame2.svg");
}

.hero__slider-item:nth-child(5n+3) .hero__item-visual {
  width: 372.55px;
  height: 321px;
  margin-bottom: 200px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+3) .hero__item-visual {
    width: 372.55px;
    height: 321px;
    margin-bottom: 500px;
  }
}
.hero__slider-item:nth-child(5n+3) .hero__img-wrap {
  mask-image: url("../img/frame3.svg");
  -webkit-mask-image: url("../img/frame3.svg");
}

.hero__slider-item:nth-child(5n+4) .hero__item-visual {
  width: 314px;
  height: 288px;
  margin-top: 400px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+4) .hero__item-visual {
    width: 314px;
    height: 288px;
    margin-top: 500px;
  }
}
.hero__slider-item:nth-child(5n+4) .hero__img-wrap {
  mask-image: url("../img/frame4.svg");
  -webkit-mask-image: url("../img/frame4.svg");
}

.hero__slider-item:nth-child(5n+5) .hero__item-visual {
  width: 427.32px;
  height: 484px;
  margin-bottom: 260px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+5) .hero__item-visual {
    width: 427.32px;
    height: 484px;
    margin-bottom: 300px;
  }
}
.hero__slider-item:nth-child(5n+5) .hero__img-wrap {
  mask-image: url("../img/frame5.svg");
  -webkit-mask-image: url("../img/frame5.svg");
}

.hero__slider-item:nth-child(5n+6) .hero__item-visual {
  width: 422px;
  height: 354px;
  margin-top: 340px;
  margin-left: 20px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+6) .hero__item-visual {
    width: 422px;
    height: 354px;
    margin-top: 340px;
    margin-left: 40px;
  }
}
.hero__slider-item:nth-child(5n+6) .hero__img-wrap {
  mask-image: url("../img/frame2.svg");
  -webkit-mask-image: url("../img/frame2.svg");
}

.hero__slider-item:nth-child(5n+7) .hero__item-visual {
  margin-top: 140px;
  width: 428px;
  height: 389px;
}
@media screen and (min-width: 1280px) {
  .hero__slider-item:nth-child(5n+7) .hero__item-visual {
    width: 428px;
    height: 389px;
    margin-top: 30px;
  }
}
.hero__slider-item:nth-child(5n+7) .hero__img-wrap {
  mask-image: url("../img/frame1.svg");
  -webkit-mask-image: url("../img/frame1.svg");
}

/* --- アニメーション共通（以前のものを継続） --- */
.hero__item-visual {
  position: relative;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-animation: mask-safe-zoom 5s ease-in-out infinite alternate;
          animation: mask-safe-zoom 5s ease-in-out infinite alternate;
}

.hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: photo-stay-still 5s ease-in-out infinite alternate;
          animation: photo-stay-still 5s ease-in-out infinite alternate;
  /* ガビり防止の三種の神器 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  outline: 1px solid transparent;
  image-rendering: -webkit-optimize-contrast;
}

/* キーフレーム定義（以前と同じ） */
@-webkit-keyframes mask-safe-zoom {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mask-safe-zoom {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes photo-stay-still {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.111);
            transform: translate(-50%, -50%) scale(1.111);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes photo-stay-still {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.111);
            transform: translate(-50%, -50%) scale(1.111);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes loop-flow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes loop-flow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* --- メッセージエリア --- */
.hero__message {
  top: 40px;
  right: 20px;
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #4a4643;
  background-color: rgba(253, 252, 251, 0.9);
  padding: 32px;
  border-radius: 8px; /* わずかに角を落として優しく */
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .hero__message {
    top: 60px;
    right: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__message {
    top: 5dvh;
    right: 120px;
    gap: 32px;
    padding: 40px;
  }
}

.hero__title {
  text-align: start;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き、右から左行へ */
  text-orientation: upright; /* 文字の向きを正位（直立）にする */
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__title {
    font-size: 4.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .hero__title {
    font-size: 64px;
  }
}
.hero__title span {
  margin-top: 96px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き、右から左行へ */
  text-orientation: upright; /* 文字の向きを正位（直立）にする */
}
@media screen and (min-width: 768px) {
  .hero__title span {
    margin-top: 137px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__title span {
    margin-top: 135px;
  }
}

.hero__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 9px;
  text-align: start;
  padding-top: 98px;
}
@media screen and (min-width: 768px) {
  .hero__sub-title {
    padding-top: 140px;
    gap: 9px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__sub-title {
    padding-top: 9.7222222222vw;
    gap: 9px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__sub-title {
    padding-top: 140px;
  }
}
.hero__sub-title p {
  letter-spacing: 0.1625em;
  line-height: 1.042;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .hero__sub-title p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__sub-title p {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .hero__sub-title p {
    font-size: 24px;
  }
}

/* --- 【重要】次のセクションに設定するCSS（参考） --- */
/*
  .about {
    position: relative;
    z-index: 10;           // ヒーローより上に重ねる
    background-color: s.$back-color; // 背景色を不透明に設定
    margin-top: 0;         // 隙間をあけない
    padding: 100px 0;
  }
  */
.footer {
  position: relative;
  z-index: 10;
  background-color: #f5f0e6;
  color: #fff;
}
.footer__top {
  display: block;
  position: relative;
  width: 100%;
  z-index: 10;
  background: url(../img/about-top-bg-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 6.9444444444vw;
  background: url(../img/footer-top-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__top::after {
  left: 7.6923%;
  position: absolute;
  top: -31px;
  content: "";
  width: 29.5px;
  height: 31px;
  background: url(../img/sprout.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .footer__top::after {
    top: -54px;
    width: 53.1px;
    height: 55.8px;
    left: 13.02%;
  }
}
@media screen and (min-width: 1280px) {
  .footer__top::after {
    top: -60px;
    left: 13.1944%;
    width: 59px;
    height: 62px;
  }
}
.footer__bg-wrap {
  margin-top: -1px;
  height: 100%;
  width: 100%;
  background-color: #b27c59;
}
.footer__inner {
  padding-inline: 24px;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .footer__inner {
    padding-inline: 120px;
  }
}
.footer__content {
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 24px;
  padding-inline: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  padding-top: 24px;
}
@media screen and (min-width: 500px) {
  .footer__content {
    padding-top: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 30px;
    gap: unset;
  }
}
@media screen and (min-width: 1280px) {
  .footer__content {
    padding-inline: unset;
  }
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    gap: 36px;
  }
}
.footer__info .footer__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__info .footer__name {
    font-size: 18px;
  }
}
.footer__info .footer__name span {
  font-size: 28px;
  display: block;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer__info .footer__name span {
    font-size: 32px;
    margin-top: 8px;
  }
}
.footer__info .footer__address-group {
  gap: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .footer__info .footer__address-group {
    gap: 16px;
  }
}
.footer__info .footer__address-group .footer__address {
  font-size: 12px;
  line-height: 1.428571;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__info .footer__address-group .footer__address {
    font-size: 16px;
  }
}
.footer__info .footer__address-group .footer__tel {
  font-size: 12px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__info .footer__address-group .footer__tel {
    font-size: 16px;
  }
}
.footer__info .footer__address-group .footer__tel a {
  color: inherit;
  text-decoration: none;
}
.footer__info .footer__address-group .footer__tel a:hover {
  opacity: 0.7;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    padding-top: 24px;
    gap: 6.6666666667vw;
  }
}
@media screen and (min-width: 1280px) {
  .footer__nav {
    gap: 96px;
  }
}
.footer__nav-unit .footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__nav-unit .footer__nav-list {
    gap: 16px;
  }
}
.footer__nav-unit .footer__nav-list li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4375;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__nav-unit .footer__nav-list li a {
    font-size: 16px;
  }
}
.footer__nav-unit .footer__nav-list li a:hover {
  opacity: 0.7;
}
.footer__nav-unit .footer__nav-list li a svg {
  width: 24px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__nav-unit .footer__nav-list li a svg {
    width: 40px;
  }
}
.footer__copyright {
  width: 100%;
  height: 41px;
  text-align: center;
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 500px) {
  .footer__copyright {
    height: 61px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer__copyright small {
  font-size: 11px;
  line-height: 1.42857;
  letter-spacing: 0;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__copyright small {
    font-size: 14px;
  }
}

/* --- ABOUTセクション全体 --- */
.about {
  position: relative;
  z-index: 10; /* FV(z-index: 1)の上に重ねる */
}
.about::before {
  position: absolute;
  content: "";
  background: url(../img/about-top-bg-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -35.641025641vw;
  width: 100vw;
  height: 35.8974358974vw;
}
@media screen and (min-width: 768px) {
  .about::before {
    top: -14.4444444444vw;
    height: 14.5138888889vw;
    background: url(../img/about-top-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #b27c59; /* 背景色（オフホワイト）でFVを隠す */
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-top: 0;
    padding-bottom: 100px;
  }
}

/* --- コンテンツレイアウト --- */
.about__content {
  padding-inline: 4.1025641026vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .about__content {
    gap: 16px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .about__content {
    padding-inline: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    padding: 50px 40px 0;
  }
}

/* --- メッセージエリア --- */
.about__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 52.3076923077vw;
}
@media screen and (min-width: 768px) {
  .about__message {
    max-width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .about__message {
    max-width: 376px;
  }
}

.about__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  /* --- 5pxの丸いドット線の実装 --- */
  padding-bottom: 18px;
  background-image: radial-gradient(circle, #ffffff 50%, transparent 50%);
  background-size: 14px 3px;
  /* 横：21px（ドット5px + 間隔16px）、縦：5px（ドットの直径） */
  background-repeat: repeat-x;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .about__copy {
    padding-bottom: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .about__copy {
    padding-bottom: 30px;
    gap: 24px;
    background-size: 21px 5px;
  }
}

.about__copy-main {
  font-size: 3.0769230769vw;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4583;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .about__copy-main {
    font-weight: 700;
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .about__copy-main {
    font-size: 24px;
  }
}

.about__copy-sub {
  font-size: 3.0769230769vw;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4583;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .about__copy-sub {
    font-weight: 700;
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .about__copy-sub {
    font-size: 24px;
  }
}

.about__text {
  padding-top: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .about__text {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .about__text {
    padding-top: 30px;
  }
}
.about__text p {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 2.5641025641vw;
  line-height: 2;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .about__text p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .about__text p {
    font-size: 16px;
  }
}

/* --- 写真エリア --- */
.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  aspect-ratio: 400/533;
}
@media screen and (min-width: 768px) {
  .about__image {
    border-radius: 16px;
    max-width: 250px;
  }
}
@media screen and (min-width: 1280px) {
  .about__image {
    width: 27.7777777778vw;
    height: 37.0138888889vw;
    border-radius: 16px;
    max-width: unset;
  }
}
@media screen and (min-width: 1440px) {
  .about__image {
    max-width: 400px;
    max-height: 533px;
  }
}
.about__image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1280px) {
  .about__image img {
    border-radius: 16px;
  }
}

.about__btn {
  padding-top: 18px;
}
@media screen and (min-width: 1280px) {
  .about__btn {
    padding-top: 60px;
  }
}
.about__btn {
  /* --- ボタンパーツ（共通コンポーネント想定） --- */
}
.about__btn :hover {
  background-color: #6e8c71;
}

/* --- 施設一覧セクション --- */
.facility {
  top: -1px;
  position: relative;
  z-index: 10;
  background-color: #f5f0e6;
}
.facility__inner {
  margin: 0 auto;
  padding-inline: 16px;
  max-width: 340px;
}
@media screen and (min-width: 500px) {
  .facility__inner {
    max-width: 440px;
  }
}
@media screen and (min-width: 768px) {
  .facility__inner {
    padding: 60px 24px;
    max-width: 948px;
  }
}
@media screen and (min-width: 1280px) {
  .facility__inner {
    padding: 80px 60px 100px;
    max-width: 1200px;
  }
}

/* セクションタイトル（about__title-groupを継承） */
.facility__head {
  margin: 0 auto 40px 0;
  margin-inline: unset;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .facility__head {
    margin: 0 auto 44px 0;
  }
}
@media screen and (min-width: 1280px) {
  .facility__head {
    margin: 0 auto 60px 0;
  }
}
.facility__head .c-title__ja {
  color: #4a4643;
}
.facility__head .c-title__en {
  color: #b27c59;
}

/* 施設リストのレイアウト */
.facility__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .facility__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .facility__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.facility__card {
  height: 100%;
}
.facility__card-katsura {
  background-color: rgba(217, 150, 108, 0.9);
}
.facility__card-tukushi {
  background-color: #9ba17b;
}
.facility__card-shiomi {
  background-color: #8da9b0;
}

/* 施設カード */
.facility__item {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* 前回の画像で指定したドロップシャドウ */
  /* ナチュラル感を出すため、色を$text-colorベースの15%に調整 */
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  aspect-ratio: 340/299;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .facility__item {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 1280px) {
  .facility__item {
    aspect-ratio: 340/299;
  }
}
.facility__item:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0);
  opacity: 0.8;
}
.facility__item:hover .facility__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* 画像エリア */
.facility__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 340/227;
  overflow: hidden;
  background-color: #f5f0e6;
}

.facility__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* カードテキストエリア */
.facility__body {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.facility__name {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.5;
}
@media screen and (min-width: 500px) {
  .facility__name {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .facility__name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .facility__name {
    font-size: 18px;
  }
}

/* 住所・リンクテキスト */
.facility__link-text {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 500px) {
  .facility__link-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .facility__link-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .facility__link-text {
    font-size: 14px;
  }
}

/* --- ニュースセクション --- */
.news {
  position: relative;
  z-index: 10;
  padding: 60px 20px;
  background-color: #f5f0e6;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 100px 40px;
  }
}
.news::before {
  position: absolute;
  content: "";
  background: url(../img/about-bottom-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -1px;
  width: 100vw;
  height: 30.7692307692vw;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .news::before {
    height: 16.6666666667vw;
  }
}
@media screen and (min-width: 1280px) {
  .news::before {
    height: 240px;
  }
}

.news__inner {
  width: 100%;
  background-color: #f5f0e6;
  height: auto;
  min-height: 254.48px;
}
.news__contents {
  width: 100%;
  position: absolute;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  z-index: 100;
  top: 0;
  right: 0;
}

.news__head {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .news__head {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1440px) {
  .news__head {
    margin-bottom: 60px;
  }
}

/* セクションタイトル（共通パーツ） */
.c-section-title-e-top {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.c-section-title-e-top .en {
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.4583;
}
@media screen and (min-width: 768px) {
  .c-section-title-e-top .en {
    font-weight: 700;
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-section-title-e-top .en {
    font-size: 48px;
  }
}
.c-section-title-e-top .ja {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-section-title-e-top .ja {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-section-title-e-top .ja {
    font-size: 24px;
  }
}

/* ニュースリスト */
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0; /* 両端に余白を入れ、スクロールした際に端がくっつかないようにする */
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 16px;
  /* --- 横スクロールを有効にする設定 --- */
  overflow-x: auto; /* 横方向のはみ出しを許可 */
  white-space: nowrap; /* 子要素を折り返さない */
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  /* パディングで広がった分、ネガティブマージンで位置を調整する（任意） */
  margin-top: -20px;
  margin-bottom: -20px;
  /* スクロールバーを非表示にする（カフェ風の清潔感を保つため） */
}
.news__list::-webkit-scrollbar {
  display: none;
}
.news__list {
  scrollbar-width: none; /* Firefox用 */
}
@media screen and (min-width: 1280px) {
  .news__list {
    overflow-x: visible; /* PCではスクロールさせず、通常通り表示 */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    padding-left: unset;
  }
}

.news__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.news__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 20px;
  text-decoration: none;
  color: #4a4643;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.news__link:hover {
  background-color: rgba(245, 240, 230, 0.3);
}
.news__link:hover .news__title {
  color: #b27c59;
}
.news__link::before {
  position: absolute;
  bottom: 17px;
  right: 20px;
  content: "";
  width: 32px;
  height: 24px;
  /* SVGを型紙として使う */
  -webkit-mask-image: url(../img/news-button.svg);
  mask-image: url(../img/news-button.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  /* 1. ここで「色」をつける（デフォルト色） */
  background-color: #4a4643;
  /* 2. ここで「影」をつける（SVG内にあった影をCSSで再現） */
  /* ツール上の設定：dx=2, dy=2, ぼかし=5(stdDev)×2=10px程度, 不透明度0.1 */
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news__link.is-enrollment::before {
  position: absolute;
  background-color: #9ba17b;
}
.news__link.is-info::before {
  background-color: #8da9b0;
}
.news__link.is-deli::before {
  background-color: #d9966c;
}
.news__link.is-other::before {
  background-color: #938291;
}
.news__link:hover::before {
  /* ホバー時に影を少し強くしたり、色を変えたりも自由自在 */
  -webkit-filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.15));
  background-color: #b27c59;
}

/* カテゴリタグ：変数から色を割り当て */
.news__category {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4285;
  letter-spacing: 0;
  padding: 6px 14px;
  border-radius: 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #6e8c71;
  border: solid 1px #6e8c71;
}
@media screen and (min-width: 1280px) {
  .news__category {
    font-size: 14px;
  }
}
.news__category.is-enrollment {
  color: #9ba17b;
  border-color: #9ba17b;
}
.news__category {
  /* 園児募集 */
}
.news__category.is-info {
  color: #8da9b0;
  border-color: #8da9b0;
}
.news__category {
  /* 休園情報 */
}
.news__category.is-deli {
  color: #d9966c;
  border-color: #d9966c;
}
.news__category {
  /* 桂デリ */
}
.news__category.is-other {
  color: #938291;
  border-color: #938291;
}
.news__category {
  /* その他 */
}

/* タイトル */
.news__title {
  text-align: start;
  width: 51.2820512821vw;
  font-size: 12px;
  min-height: 72px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  white-space: normal;
  /* --- デザイナーのおすすめ：3行以上になる場合に「...」で省略する --- */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 3行まで表示 */
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .news__title {
    max-width: 248px;
  }
}
@media screen and (min-width: 1280px) {
  .news__title {
    font-size: 14px;
  }
}

/* 日付 */
.news__date {
  font-size: 8px;
  color: #9e9790;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 10px;
  }
}

/* もっと見るボタン */
.news__btn-wrapper {
  padding-right: 24px;
  width: 100%;
  margin: 24px auto 0;
  text-align: center;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1280px) {
  .news__btn-wrapper {
    margin: 54px auto 0;
  }
}
.news__btn-wrapper .c-btn {
  padding: 14px 40px;
  border: 1px solid #6e8c71;
  color: #6e8c71;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news__btn-wrapper .c-btn:hover {
  background-color: #6e8c71;
  color: #ffffff;
}

.contact {
  position: relative;
  padding: 50px 0 120px;
  background-color: #f5f0e6;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 60px 0 150px;
  }
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-inline: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-inline: unset;
    gap: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__inner {
    gap: 40px;
  }
}
.contact .c-title__title-group {
  margin: unset;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .contact .c-title__title-group {
    margin-bottom: unset;
  }
}
.contact .c-title__ja {
  color: #4a4643;
}
.contact .c-title__en {
  color: #b27c59;
  font-size: 16px;
}
.contact__note {
  text-align: center;
  font-size: 3.5897435897vw;
  line-height: 1.4375;
  color: #4a4643;
}
@media screen and (min-width: 500px) {
  .contact__note {
    font-size: 16px;
  }
}
.contact__note a {
  color: #6e8c71;
  /* --- ここから：太さ5% オフセット17% 色緑のボーダー --- */
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: inherit;
  text-underline-offset: 17%;
  text-decoration-thickness: 5%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.contact__note a:hover {
  opacity: 0.7;
}
.contact__content {
  width: 100%;
  max-width: 460px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .contact__content {
    max-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: unset;
    padding-bottom: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 120px;
    padding: 48px 77px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__content {
    padding: 60px 120px;
  }
}
.contact__content::before {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #9e9790;
}
@media screen and (min-width: 768px) {
  .contact__content::before {
    display: block;
    width: 1px;
    /* 全体の高さ100% から 上下padding分(60px * 2)を引く */
    height: 145px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__content::before {
    height: calc(100% - 120px);
  }
}
@media screen and (min-width: 768px) {
  .contact__box {
    width: 225px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__box {
    width: 270px;
  }
}
.contact__box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__box-h {
  margin-bottom: 12px;
  font-size: 4.6153846154vw;
  font-weight: 500;
  color: #4a4643;
  line-height: 1.4583;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 500px) {
  .contact__box-h {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .contact__box-h {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__box-h {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.contact__box--tel {
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__box--tel {
    padding-bottom: unset;
  }
}
.contact__box--tel::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* ここでボーダーの「長さ」を調整 */
  width: 150%;
  /* ここでボーダーの「太さ」を調整 */
  height: 1px;
  background-color: #9e9790;
}
@media screen and (min-width: 768px) {
  .contact__box--tel {
    padding-bottom: unset;
  }
  .contact__box--tel::after {
    display: none;
  }
}
.contact__tel-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  color: #6e8c71;
  letter-spacing: 0;
  line-height: 1.45;
  font-size: 7.1794871795vw;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 500px) {
  .contact__tel-number {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .contact__tel-number {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .contact__tel-number {
    font-size: 40px;
  }
}
.contact__tel-number:hover {
  opacity: 0.7;
}
.contact__tel-number svg {
  width: 8.2051282051vw;
  height: 8.2051282051vw;
}
@media screen and (min-width: 500px) {
  .contact__tel-number svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) {
  .contact__tel-number svg {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__tel-number svg {
    width: 40px;
    height: 40px;
  }
}
.contact__time {
  color: #4a4643;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.444;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 500px) {
  .contact__time {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .contact__time {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .contact__time {
    font-size: 18px;
  }
}
.contact__btn-wrapper .c-btn {
  padding: 16px 48px;
  border-radius: 40px;
  background-color: #6e8c71;
  border: none;
  line-height: 1.4583;
  font-size: 18px;
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
  /* --- アニメーションの設定（ここが重要） --- */
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact__btn-wrapper .c-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (min-width: 768px) {
  .contact__btn-wrapper .c-btn {
    padding: 16px 48px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__btn-wrapper .c-btn {
    padding: 20px 63px;
    font-size: 24px;
  }
}

.instagram-top-bg {
  background-color: #ffffff;
  position: relative;
  top: -2px;
  left: 0;
  width: 100%;
  height: 330px;
  z-index: 10;
  overflow: hidden;
}
.instagram-top-bg::before {
  position: absolute;
  width: 100%;
  height: 250px;
  top: 0;
  content: "";
  background: url(../img/instagram-top-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.instagram-top-bg .hero__slider {
  gap: 30px;
  overflow: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop-flow 75s linear infinite;
          animation: loop-flow 75s linear infinite;
}
@media screen and (min-width: 1440px) {
  .instagram-top-bg .hero__slider {
    gap: 60px;
  }
}
.instagram-top-bg .hero__slider-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.instagram-top-bg .hero__slider-item:nth-child(1) {
  margin-bottom: 40px; /* 大和園風の上下のゆらぎ */
}
.instagram-top-bg .hero__slider-item:nth-child(5n+1) .hero__item-visual {
  width: 165.036px;
  height: 150px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+1) .hero__item-visual {
    width: 275.06px;
    height: 250px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+1) .hero__img-wrap {
  mask-image: url("../img/frame1.svg");
  -webkit-mask-image: url("../img/frame1.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+2) .hero__item-visual {
  width: 156.762px;
  height: 150px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+2) .hero__item-visual {
    width: 261.27px;
    height: 250px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+2) .hero__img-wrap {
  mask-image: url("../img/frame2.svg");
  -webkit-mask-image: url("../img/frame2.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+3) .hero__item-visual {
  width: 150px;
  height: 174.09px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+3) .hero__item-visual {
    width: 250px;
    height: 290.15px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+3) .hero__img-wrap {
  mask-image: url("../img/frame3.svg");
  -webkit-mask-image: url("../img/frame3.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+4) .hero__item-visual {
  width: 163.542px;
  height: 150px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+4) .hero__item-visual {
    width: 272.57px;
    height: 250px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+4) .hero__img-wrap {
  mask-image: url("../img/frame4.svg");
  -webkit-mask-image: url("../img/frame4.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+5) .hero__item-visual {
  width: 150px;
  height: 169.896px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+5) .hero__item-visual {
    width: 250px;
    height: 283.16px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+5) .hero__img-wrap {
  mask-image: url("../img/frame5.svg");
  -webkit-mask-image: url("../img/frame5.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+6) .hero__item-visual {
  width: 156.762px;
  height: 150px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+6) .hero__item-visual {
    width: 261.27px;
    height: 250px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+6) .hero__img-wrap {
  mask-image: url("../img/frame2.svg");
  -webkit-mask-image: url("../img/frame2.svg");
}
.instagram-top-bg .hero__slider-item:nth-child(5n+7) .hero__item-visual {
  width: 150px;
  height: 174.09px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .instagram-top-bg .hero__slider-item:nth-child(5n+7) .hero__item-visual {
    width: 250px;
    height: 290.15px;
  }
}
.instagram-top-bg .hero__slider-item:nth-child(5n+7) .hero__img-wrap {
  mask-image: url("../img/frame1.svg");
  -webkit-mask-image: url("../img/frame1.svg");
}

.instagram {
  padding: 0 40px 140px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  top: -3px;
}
@media screen and (min-width: 768px) {
  .instagram {
    padding: 65px 24px;
    padding-bottom: calc(60px + 10.4166666667vw);
  }
}
.instagram__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .instagram__title {
    margin-bottom: 40px;
  }
}
.instagram__title .instagram-title {
  font-size: 36px;
  font-weight: 700;
  color: #b27c59;
  line-height: 1.444;
  letter-spacing: 0;
}
.instagram__title .instagram__sprout {
  width: 36px;
  height: 37px;
}
.instagram__content {
  margin: 0 auto;
  max-width: 848px;
}

.recruit {
  background-color: #f5f0e6;
  position: relative;
  z-index: 10;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .recruit {
    padding-bottom: 60px;
  }
}
.recruit::before {
  content: none;
}
.home .recruit::before {
  position: absolute;
  top: -10.4166666667vw;
  height: 10.4166666667vw;
  width: 100%;
  content: "";
  background: url(../img/recruit-top-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 10;
}
.recruit__inner {
  padding-top: 40px;
  padding-inline: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .recruit__inner {
    padding-inline: unset;
    padding-top: 60px;
  }
}
.recruit__content {
  border-radius: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  background-color: #ffffff;
  padding: 36px 0;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .recruit__content {
    max-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 56px;
    gap: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__content {
    padding: 80px;
    gap: 64px;
  }
}
.recruit__content .c-title__title-group {
  text-align: center;
  margin: unset;
  margin-bottom: 4px;
  text-align: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__content .c-title__title-group .c-title__ja {
  color: #4a4643;
}
.recruit__content .c-title__title-group .c-title__en {
  color: #b27c59;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .recruit__content .c-title__title-group {
    display: none;
  }
}
.recruit__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
  height: 100%;
  aspect-ratio: 384/288;
  padding: 8px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .recruit__image {
    width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .recruit__image {
    width: 384px;
  }
}
.recruit__image img {
  width: 100%;
  height: auto;
}
.recruit__body {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__body .c-title__title-group {
  display: none;
}
@media screen and (min-width: 768px) {
  .recruit__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: unset;
    gap: 40px;
  }
  .recruit__body .c-title__title-group {
    display: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    margin: unset;
    text-align: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .recruit__body .c-title__title-group .c-title__ja {
    color: #4a4643;
  }
  .recruit__body .c-title__title-group .c-title__en {
    color: #b27c59;
    font-size: 16px;
  }
}
.recruit__text {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Zen Maru Gothic", sans-serif;
  font-size: 3.0769230769vw;
  line-height: 2;
  color: #4a4643;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 500px) {
  .recruit__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__text {
    text-align: start;
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .recruit__text {
    font-size: 16px;
  }
}
.recruit__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 500px) {
  .recruit__btn-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit__btn-wrapper .c-btn {
  padding: 14px 40px;
  background-color: #6e8c71;
  color: #ffffff;
  border: none;
}
.recruit__btn-wrapper .c-btn {
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.25);
  /* --- アニメーションの設定（ここが重要） --- */
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.recruit__btn-wrapper .c-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}