@charset "UTF-8";
/* 色の変数 */
:root {
  --text-color-primary: #7c7d80;
  --text-color-second: #56554f;
  --accent-color-primary: #ff6b3e;
}

/* トランジションの変数 */
:root {
  --base-duration: 0.6s;
  --base-easing: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --base-delay: 1s;
  --base-scale: 1.05;
  --drawer-duration: 1.5s;
  --drawer-easing: cubic-bezier(0.17, 0.74, 0.83, 0.67);
}

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

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

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

ol,
ul {
  list-style: none;
}

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

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

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

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

body {
  color: var(--text-color-primary);
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  background-color: #fff;
  width: 100%;
  overflow-y: scroll;
}
@media (max-width: 320px) {
  body {
    font-size: 3.125vw;
  }
}

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

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

figure {
  margin: 0;
  padding: 0;
}

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

.wf-loading {
  opacity: 0;
}

.mt-100 {
  margin-top: 6.25rem;
}

.c-button {
  position: relative;
  z-index: 1;
  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;
}

.c-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.75rem;
  border-radius: 90px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(93deg, #FF6B3E 1.18%, #EF942C 50%, #B2D68A 100%);
  background-size: 200% 100%;
  border: none;
  -webkit-transition: background-position var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  letter-spacing: 0.01em;
}
.c-button-link .c-chevron {
  margin-left: 8px;
  -webkit-transition: translate var(--base-duration) var(--base-easing);
  transition: translate var(--base-duration) var(--base-easing);
}

.c-button-link:focus-visible {
  background-position: 100% 0;
  -webkit-transform: scale(var(--base-scale));
          transform: scale(var(--base-scale));
}
.c-button-link:focus-visible .c-chevron {
  translate: 0.3125rem 0;
}

@media (any-hover: hover) {
  .c-button-link:hover {
    background-position: 100% 0;
    -webkit-transform: scale(var(--base-scale));
            transform: scale(var(--base-scale));
  }
  .c-button-link:hover .c-chevron {
    translate: 0.3125rem 0;
  }
}
.c-chevron {
  display: inline-block;
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
}
.c-chevron::after {
  content: "";
  position: absolute;
  width: 9px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  border-radius: 2px;
}

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

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

.c-icon-flower {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .c-icon-flower {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-icon-flower--orange {
  background: url(../img/icon_flower--orange@2x.png) no-repeat center center/cover;
}

.c-icon-flower--white {
  background: url(../img/icon_flower--white@2x.png) no-repeat center center/cover;
}

.c-section-title {
  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;
  font-size: clamp(1.5rem, 0.9301634473rem + 1.1887072808vw, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .c-section-title {
    font-size: clamp(1.25rem, 1.0108418367rem + 1.0204081633vw, 1.5rem);
  }
}

.c-section-title--color-secondary {
  color: var(--text-color-second);
}

.c-section-title--orange-flowers {
  position: relative;
  gap: 1.3125rem;
}

.c-section-title--white-flowers {
  position: relative;
  gap: 0.625rem;
}
.c-section-title--white-flowers .c-icon-flower--white:nth-child(2) {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 767.9px) {
  .c-section-title--white-flowers {
    gap: 0.5rem;
  }
}

.c-section-title-en {
  display: block;
  text-align: center;
  color: var(--accent-color-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.c-button-readmore {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  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: 0.75rem;
}

.c-icon-arrow {
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: -webkit-transform var(--base-duration) var(--base-easing);
  transition: -webkit-transform var(--base-duration) var(--base-easing);
  transition: transform var(--base-duration) var(--base-easing);
  transition: transform var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  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;
}
@media screen and (max-width: 767.9px) {
  .c-icon-arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-button-readmore__text {
  display: inline-block;
  color: var(--accent-color-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-button-readmore:focus-visible .c-icon-arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media (any-hover: hover) {
  .c-button-readmore:hover .c-icon-arrow {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.c-recruit {
  margin-top: clamp(2.25rem, -0.3142644874rem + 5.3491827637vw, 4.5rem);
}

.c-recruit__inner {
  background-color: #fff7f7;
  border-radius: 2.8125rem;
  padding-inline: clamp(1.5625rem, -0.2182392273rem + 3.7147102526vw, 3.125rem);
  padding-block: clamp(1.375rem, -0.3345096582rem + 3.5661218425vw, 2.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__inner {
    border-radius: 1.875rem;
    padding-inline: clamp(2rem, 0.0269451531rem + 8.4183673469vw, 4.0625rem);
    padding-block: 3.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-recruit__content {
  padding-left: clamp(0.0625rem, -1.0059435364rem + 2.2288261516vw, 1rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-recruit__subtitle {
  font-size: clamp(2rem, 0.7890973254rem + 2.5260029718vw, 3.0625rem);
  color: var(--accent-color-primary);
  text-transform: uppercase;
  font-weight: 700;
}

.c-recruit__title {
  font-weight: 700;
  font-size: 0.875rem;
}

.c-recruit__catch {
  margin-top: clamp(3.625rem, -0.7912332838rem + 9.2124814264vw, 7.5rem);
  font-size: clamp(1.625rem, 0.6990156018rem + 1.9316493314vw, 2.4375rem);
  color: var(--text-color-second);
  font-weight: 700;
}

.c-recruit__text {
  margin-top: clamp(0.75rem, 0.0377043091rem + 1.485884101vw, 1.375rem);
  font-size: clamp(0.75rem, 0.4650817236rem + 0.5943536404vw, 1rem);
  font-weight: 500;
  line-height: 2;
}

.c-recruit__content .c-button {
  margin-top: clamp(3.625rem, -0.5063150074rem + 8.618127786vw, 7.25rem);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__content .c-button {
    margin-top: clamp(1.75rem, -0.0436862245rem + 7.6530612245vw, 3.625rem);
  }
}
.c-recruit__content .c-button .c-button-link {
  padding-block: 0.875rem;
  padding-left: 2.625rem;
  padding-right: 2.125rem;
  font-size: 1.25rem;
}
.c-recruit__content .c-button .c-chevron {
  width: 10px;
}

.c-recruit__images {
  width: 50%;
  margin-top: clamp(0.375rem, -0.0523774146rem + 0.8915304606vw, 0.75rem);
  margin-left: clamp(2.125rem, -0.4392644874rem + 5.3491827637vw, 4.375rem);
  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: 1.1875rem;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__images {
    width: 100%;
    margin-top: 2.5rem;
    margin-left: 0;
  }
}

.c-recruit__image {
  width: 100%;
  border-radius: 1.875rem;
  aspect-ratio: 485/312;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__image {
    border-radius: 0.9375rem;
  }
}
.c-recruit__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-recruit__decoration--bottom {
  margin-top: clamp(2.625rem, -0.437871471rem + 6.3893016345vw, 5.3125rem);
  height: clamp(6.25rem, -0.8729569094rem + 14.8588410104vw, 12.5rem);
  width: 100%;
  background: url(../img/bg_recruit_bottom@2x.png) no-repeat bottom center/contain;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__decoration--bottom {
    height: 120px;
  }
}

.c-recruit__decoration-img {
  position: absolute;
}

.c-recruit__decoration-img:nth-child(1) {
  left: 10.5%;
  bottom: 11%;
  width: 21.8%;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__decoration-img:nth-child(1) {
    width: 174px;
    bottom: 0;
    left: 3.5%;
  }
}

.c-recruit__decoration-img:nth-child(2) {
  width: 2%;
  left: 32.5%;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__decoration-img:nth-child(2) {
    width: 1.25rem;
  }
}

.c-recruit__decoration-img:nth-child(3) {
  width: 13.125%;
  right: 11.2%;
  bottom: 24%;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__decoration-img:nth-child(3) {
    width: 122px;
    height: 68px;
    bottom: 10px;
    right: 3.5%;
  }
}

.c-recruit__decoration-img:nth-child(4) {
  top: 18.2%;
  right: 26.2%;
  width: 2%;
}
@media screen and (max-width: 767.9px) {
  .c-recruit__decoration-img:nth-child(4) {
    width: 1.25rem;
  }
}

.c-contact {
  background: #fff9a0;
  padding-top: clamp(2.875rem, -0.4015601783rem + 6.8350668648vw, 5.75rem);
  padding-bottom: clamp(2.625rem, -0.3666419019rem + 6.2407132244vw, 5.25rem);
}

.c-contact__inner {
  background: #fff;
  border-radius: 2.375rem;
  padding-inline: clamp(1.875rem, -3.2535289747rem + 10.6983655275vw, 6.375rem);
  padding-top: clamp(1.25rem, -0.3882800892rem + 3.4175334324vw, 2.6875rem);
  padding-bottom: clamp(1.875rem, -0.2618870728rem + 4.4576523031vw, 3.75rem);
}
@media screen and (max-width: 767.9px) {
  .c-contact__inner {
    border-radius: 1rem;
  }
}

.c-contact__title-en {
  margin-top: clamp(0.25rem, -0.0349182764rem + 0.5943536404vw, 0.5rem);
}

.c-contact__content {
  margin-top: clamp(1.875rem, -0.2618870728rem + 4.4576523031vw, 3.75rem);
  display: grid;
  grid-template-columns: 1fr 46%;
  gap: clamp(1rem, -0.1396731055rem + 2.3774145617vw, 2rem);
}
@media screen and (max-width: 767.9px) {
  .c-contact__content {
    grid-template-columns: 1fr;
  }
}

.c-contact__text-title {
  font-size: clamp(0.75rem, 0.3226225854rem + 0.8915304606vw, 1.125rem);
  line-height: 2;
  font-weight: 700;
}

.c-contact__text {
  margin-top: clamp(0.625rem, -0.0872956909rem + 1.485884101vw, 1.25rem);
  font-size: clamp(0.75rem, 0.3226225854rem + 0.8915304606vw, 1.125rem);
  line-height: 2;
  font-weight: 500;
}

.c-contact__representative {
  font-style: normal;
  margin-top: clamp(0.5rem, -0.0698365527rem + 1.1887072808vw, 1rem);
  font-size: clamp(0.75rem, 0.5363112927rem + 0.4457652303vw, 0.9375rem);
  font-weight: 500;
}

.c-contact__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 1.875rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .c-contact__image {
    border-radius: 0.9375rem;
    margin-top: 2.5rem;
  }
}

.c-contact__bottom {
  margin-top: clamp(1.875rem, -0.2618870728rem + 4.4576523031vw, 3.75rem);
  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;
}
@media screen and (max-width: 767.9px) {
  .c-contact__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-contact__info {
  font-style: normal;
}
@media screen and (max-width: 767.9px) {
  .c-contact__info {
    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;
    margin-top: 1.25rem;
  }
}

.c-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.c-contact__tel-icon {
  width: clamp(0.9375rem, -0.1309435364rem + 2.2288261516vw, 1.875rem);
}

.c-contact__tel-number {
  font-size: clamp(1.5rem, 0.3603268945rem + 2.3774145617vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-color-primary);
  font-family: "Oswald", sans-serif;
}

.c-contact__hours {
  margin-top: clamp(0.25rem, -0.0349182764rem + 0.5943536404vw, 0.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .c-contact__hours {
    margin-top: 10px;
  }
}
.c-contact__hours dt {
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  font-size: clamp(0.625rem, 0.1976225854rem + 0.8915304606vw, 1rem);
  border-radius: 5.625rem;
  color: #fff;
  background-color: var(--text-color-primary);
}
.c-contact__hours dd {
  margin-left: clamp(0.25rem, -0.0349182764rem + 0.5943536404vw, 0.5rem);
  font-size: clamp(0.875rem, 0.4476225854rem + 0.8915304606vw, 1.25rem);
}
.c-contact__hours dd small {
  font-size: clamp(0.75rem, 0.4650817236rem + 0.5943536404vw, 1rem);
}

.c-contact__button-wrap {
  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-left: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
  margin-top: clamp(0.4375rem, -0.0611069837rem + 1.0401188707vw, 0.875rem);
  padding-right: clamp(0.3125rem, -0.0436478455rem + 0.7429420505vw, 0.625rem);
}

.c-contact__button-label {
  font-size: clamp(0.75rem, 0.4650817236rem + 0.5943536404vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}

.c-contact__button-wrap .c-button {
  margin-top: 0.4375rem;
}
.c-contact__button-wrap .c-button-link {
  padding-block: 1rem;
  padding-left: 2.125rem;
  padding-right: 2.5rem;
  font-size: 1.25rem;
}
.c-contact__button-wrap .c-contact__mail-icon {
  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: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.c-contact__button-wrap .c-button-shevron {
  margin-left: 1rem;
}

.c-page-header {
  background: url(../img/page/bg_page-header@2x.png) no-repeat bottom center/cover;
  width: 100%;
  height: 20.625rem;
  z-index: -1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .c-page-header {
    height: 15.625rem;
  }
}

.c-page-header__inner {
  padding-top: 11.0625rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .c-page-header__inner {
    padding-top: 7.5rem;
  }
}
.c-page-header__inner::before {
  content: "";
  width: 380px;
  height: 275px;
  background: url(../img/page/bg_deco-circle--white.svg) no-repeat center center/cover;
  position: absolute;
  left: clamp(-3.125rem, -11.530089153rem + 17.5334323923vw, 4.25rem);
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .c-page-header__inner::before {
    width: 190px;
    height: 137px;
    left: clamp(-1.5625rem, -5.7650445765rem + 8.7667161961vw, 2.125rem);
  }
}
.c-page-header__inner::after {
  content: "";
  width: 54.589px;
  height: 53.376px;
  background: url(../img/page/icon_bird--white.png) no-repeat center center/cover;
  position: absolute;
  right: clamp(6.5625rem, -0.9166047548rem + 15.6017830609vw, 13.125rem);
  top: 73%;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .c-page-header__inner::after {
    width: 27.294px;
    height: 26.688px;
    right: clamp(3.28125rem, -0.4583023774rem + 7.8008915305vw, 6.5625rem);
    top: 73%;
  }
}

.c-page-header__title {
  z-index: 1;
  text-align: center;
  color: #5e5b51;
  font-size: 32px;
  font-size: clamp(1.5rem, 0.9301634473rem + 1.1887072808vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-page-header__subtitle {
  text-align: center;
  color: var(--accent-color-primary);
  font-size: clamp(1.25rem, 0.9650817236rem + 0.5943536404vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-loading-bg {
  background-color: #fff;
  height: 100dvh;
  width: 100vw;
  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;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 300;
  opacity: 1; /* 初期から表示 */
}

/* ローディングアイコンは初期状態で非表示 */
.l-loading {
  opacity: 0; /* 初期は透明 */
  -webkit-transition: opacity var(--loading-duration) var(--loading-easing);
  transition: opacity var(--loading-duration) var(--loading-easing);
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 767.9px) {
  .l-loading {
    width: 80%;
  }
}

.l-loading.is-visible {
  opacity: 1; /* フェードイン */
}

/* ロード完了時（フェードアウト） */
.l-loading.is-loaded {
  opacity: 0; /* フェードアウト */
}

/* 2回目以降訪問時のスタイル */
body.is-visit .l-loading-bg {
  display: none; /* 初回以外は非表示 */
}

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

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

.l-header {
  position: fixed;
  top: 2.3125rem;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 767.9px) {
  .l-header {
    max-width: none;
    top: 1.5rem;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 23px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 90px;
  background: #fff;
  -webkit-box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.05);
  height: 5rem;
}
@media screen and (max-width: 767.9px) {
  .l-header__inner {
    height: 3.75rem;
    padding-inline: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.l-header__logo {
  width: clamp(6.25rem, 4.3980312036rem + 3.8632986627vw, 7.875rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav {
  z-index: 40;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav {
    background: url(../img/bg_drawer.png) no-repeat center center/cover;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    position: fixed;
    top: -2.375rem;
    left: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity var(--base-duration) var(--base-easing), visibility var(--base-duration) var(--base-easing);
    transition: opacity var(--base-duration) var(--base-easing), visibility var(--base-duration) var(--base-easing);
    pointer-events: none;
    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.js-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.l-header__nav-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -0.3170505201rem + 3.2689450223vw, 2.625rem);
     -moz-column-gap: clamp(1.25rem, -0.3170505201rem + 3.2689450223vw, 2.625rem);
          column-gap: clamp(1.25rem, -0.3170505201rem + 3.2689450223vw, 2.625rem);
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-inner {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.5rem, -0.0698365527rem + 1.1887072808vw, 1rem);
     -moz-column-gap: clamp(0.5rem, -0.0698365527rem + 1.1887072808vw, 1rem);
          column-gap: clamp(0.5rem, -0.0698365527rem + 1.1887072808vw, 1rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100% - 60px);
    width: 100%;
    gap: 0;
    padding-inline: 20px;
    max-width: 640px;
  }
}

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

.l-header__nav-link {
  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: 8px;
  color: var(--text-color-primary);
  font-size: clamp(0.75rem, 0.4650817236rem + 0.5943536404vw, 1rem);
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-link {
    font-size: 1.25rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-header__nav-icon {
  width: clamp(0.75rem, -0.1047548291rem + 1.7830609212vw, 1.5rem);
  height: clamp(0.75rem, -0.1047548291rem + 1.7830609212vw, 1.5rem);
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .l-header__nav-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.l-header__nav-icon--orange {
  background: url(../img/icon_flower--orange@2x.png) no-repeat center center/cover;
}

.l-header__nav-icon--gray {
  background: url(../img/icon_flower--white@2x.png) no-repeat center center/cover;
}

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

.l-header__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767.9px) {
  .l-header__button-wrap {
    -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-top: 30px;
    gap: 1.5rem;
  }
}

.l-header__button a {
  -webkit-transition: -webkit-transform var(--base-duration) var(--base-easing);
  transition: -webkit-transform var(--base-duration) var(--base-easing);
  transition: transform var(--base-duration) var(--base-easing);
  transition: transform var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  border-radius: 90px;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  display: inline-block;
  display: block;
  padding: 11px 15px;
  color: #fff;
  font-size: clamp(0.75rem, 0.4650817236rem + 0.5943536404vw, 1rem);
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .l-header__button a {
    font-size: 1rem;
  }
}

.l-header__button--recruit {
  width: clamp(5.625rem, 1.3512258544rem + 8.9153046062vw, 9.375rem);
}
@media screen and (max-width: 767.9px) {
  .l-header__button--recruit {
    width: 100%;
  }
}
.l-header__button--recruit a {
  background-color: #ab9e90;
  -webkit-transition: background-color var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-color var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-color var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
  transition: background-color var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
}

.l-header__button--recruit a:focus-visible {
  background-color: var(--accent-color-primary);
  -webkit-transform: scale(var(--base-scale));
          transform: scale(var(--base-scale));
}

@media (any-hover: hover) {
  .l-header__button--recruit a:hover {
    background-color: var(--accent-color-primary);
    -webkit-transform: scale(var(--base-scale));
            transform: scale(var(--base-scale));
  }
}
.l-header__button--contact {
  width: clamp(8.75rem, 6.3281946508rem + 5.0520059435vw, 10.875rem);
}
@media screen and (max-width: 767.9px) {
  .l-header__button--contact {
    width: 100%;
  }
}
.l-header__button--contact a {
  background: linear-gradient(93deg, #ff6b3e 1.18%, #ef942c 50%, #b2d68a 100%);
  background-size: 200% 100%;
  -webkit-transition: background-position var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing);
  transition: background-position var(--base-duration) var(--base-easing), transform var(--base-duration) var(--base-easing), -webkit-transform var(--base-duration) var(--base-easing);
}

.l-header__button--contact a:focus-visible {
  background-position: 100% 0;
  -webkit-transform: scale(var(--base-scale));
          transform: scale(var(--base-scale));
}

@media (any-hover: hover) {
  .l-header__button--contact a:hover {
    background-position: 100% 0;
    -webkit-transform: scale(var(--base-scale));
            transform: scale(var(--base-scale));
  }
}
.l-drawer-icon {
  z-index: 41;
  width: 3.125rem;
  height: 1.375rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  right: 3.125rem;
  top: 2.4375rem;
}

.l-drawer-icon__bar {
  width: 100%;
  height: 4px;
  -webkit-transition: rotate var(--base-duration) var(--base-easing), translate var(--base-duration) var(--base-easing);
  transition: rotate var(--base-duration) var(--base-easing), translate var(--base-duration) var(--base-easing);
}

.l-drawer-icon__bar:nth-of-type(1) {
  background-color: var(--text-color-primary);
}

.l-drawer-icon__bar:nth-of-type(2) {
  background-color: #FFB9A3;
}

.l-drawer-icon__bar:nth-of-type(3) {
  background-color: var(--accent-color-primary);
}

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

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

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

.l-footer {
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: clamp(3.125rem, -0.4364784547rem + 7.4294205052vw, 6.25rem);
}

.l-footer__top {
  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 (max-width: 767.9px) {
  .l-footer__top {
    -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: start;
  }
}

.l-footer__logo {
  margin-top: 0.875rem;
  width: 7.5rem;
}

@media screen and (max-width: 767.9px) {
  .l-footer__nav {
    margin-top: 2.5rem;
  }
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1.25rem, 0.8226225854rem + 0.8915304606vw, 1.625rem);
     -moz-column-gap: clamp(1.25rem, 0.8226225854rem + 0.8915304606vw, 1.625rem);
          column-gap: clamp(1.25rem, 0.8226225854rem + 0.8915304606vw, 1.625rem);
}
@media screen and (max-width: 767.9px) {
  .l-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}

.l-footer__nav-link {
  font-size: 1rem;
  font-weight: 700;
  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-transition: color var(--base-duration) var(--base-easing);
  transition: color var(--base-duration) var(--base-easing);
  gap: 0.375rem;
}
@media screen and (max-width: 767.9px) {
  .l-footer__nav-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-footer__nav-link:focus-visible {
  color: var(--accent-color-primary);
}

@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    color: var(--accent-color-primary);
  }
}
.l-footer__middle {
  margin-top: clamp(0.75rem, -0.1047548291rem + 1.7830609212vw, 1.5rem);
}
@media screen and (max-width: 767.9px) {
  .l-footer__middle {
    margin-top: 2.5rem;
  }
}

.l-footer__company {
  color: #484848;
  font-size: clamp(1.25rem, 0.3952451709rem + 1.7830609212vw, 2rem);
  font-weight: 700;
}

.l-footer__address {
  font-style: normal;
  margin-top: clamp(0.375rem, -0.0523774146rem + 0.8915304606vw, 0.75rem);
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .l-footer__address {
    margin-top: 1rem;
  }
}

.l-footer-bottom {
  margin-top: clamp(1.375rem, -0.3345096582rem + 3.5661218425vw, 2.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .l-footer-bottom {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}

.l-footer-bottom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
}
@media screen and (max-width: 767.9px) {
  .l-footer-bottom__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}

.l-footer-bottom__item a {
  color: #333;
  font-size: 0.8125rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.l-footer-copyright {
  color: #333;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}
@media screen and (max-width: 767.9px) {
  .l-footer-copyright {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
.grecaptcha-badge { display:none; }