@charset "UTF-8";
/* カラー */
.only-pc { /*PCのみ*/
  display: block;
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
}

.only-tab { /*タブレット以下*/
  display: none;
}
@media screen and (max-width: 1024px) {
  .only-tab {
    display: block;
  }
}

.only-sp { /*スマホのみ*/
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block;
  }
}

.except-sp { /*スマホ以外*/ }
@media screen and (max-width: 767px) {
  .except-sp {
    display: none;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.akurakita {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

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

h1, h2, h3, h4 {
  letter-spacing: 0.1em;
}

p {
  font-size: clamp(0.9375rem, 0.9rem + 0.16vw, 1rem);
  color: #004056;
  line-height: 1.8;
}

.container {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn-wrap {
  margin-top: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
}

.btn {
  position: relative;
  display: grid;
  place-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#f4677d), to(#f4856b));
  background: linear-gradient(to right, #f4677d 0%, #f4856b 100%);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
  border-radius: 50px;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.975rem + 0.64vw, 1.375rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 20px 50px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn {
    min-width: 80%;
  }
}
.btn::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 30px;
  height: 1px;
  top: 50%;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .btn:hover::after {
    right: 10px;
  }
}

.btn-text {
  display: block;
  max-width: 450px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .btn-text {
    width: 80%;
  }
}

.title {
  margin-bottom: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.title img {
  height: clamp(2rem, 1.7rem + 1.28vw, 2.5rem);
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  z-index: 999;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    position: fixed;
    -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;
    width: 100%;
    height: 100vh;
    background: #C8E3E2;
    opacity: 0.9;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__inner.active {
    -webkit-transform: none;
            transform: none;
  }
}
.header__logo-area {
  padding: 0 30px;
}
.header__logo {
  color: #00A5B7;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.header__logo span {
  font-size: 18px;
}
.header__lead {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__lead {
    display: block;
    color: #00A5B7;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .nav {
    min-width: 280px;
    margin-top: 20px;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 50px;
}
@media screen and (max-width: 1024px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .nav__item {
    width: 100%;
    border-bottom: 1px solid #00A5B7;
    text-align: center;
    padding: 15px 0;
  }
  .nav__item:first-child {
    border-top: 1px solid #00A5B7;
  }
}
@media screen and (max-width: 1024px) {
  .nav__link {
    display: block;
    color: #00A5B7;
  }
}
.nav__entry {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background: #FBFFB2;
  color: #F45E78;
  border-left: solid 6px #F45E78;
  font-weight: bold;
  padding: 24px;
}
@media screen and (max-width: 1024px) {
  .nav__entry {
    display: block;
    background: none;
    color: #00A5B7;
    border: none;
    padding: 0;
    font-weight: normal;
  }
}
.nav__entry img {
  width: 26px;
}

.fixed {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fixed {
    position: fixed;
    display: grid;
    grid-template-columns: 50px 1fr;
    width: 100%;
    max-width: 450px;
    background: #fff;
    left: 10px;
    bottom: 10px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .fixed {
    max-width: initial;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .fixed__btn-area {
    border-top: solid 4px #F45E78;
    background: #FBFFB2;
  }
  .fixed__btn-area a {
    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: 5px;
    height: 100%;
    color: #F45E78;
    font-weight: bold;
  }
  .fixed__btn-area img {
    width: 26px;
  }
}

.hamburger {
  height: 50px;
  padding: 12px;
  cursor: pointer;
}
.hamburger__btn {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger__bar {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #F45E78;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger .top {
  top: 30%;
}
.hamburger .bottom {
  top: 70%;
}
.hamburger.active .top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.hamburger.active .bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}

.fade-in {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fade-in.show {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

/* ===============================================
# main
=============================================== */
.mv {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .mv {
    padding-top: 0;
  }
}

.about {
  background: #C8E3E2;
}
.about__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .about__inner {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 767px) {
  .about__title {
    width: 70%;
    margin: 0 auto;
  }
}
.about__text {
  font-weight: bold;
}
.about__text + .about__text {
  margin-top: 20px;
}

.recruitment {
  position: relative;
  padding: clamp(2.5rem, 1rem + 6.4vw, 5rem) 0 0;
}
.recruitment::before {
  content: "";
  position: absolute;
  background: #C8E3E2;
  width: 100%;
  height: clamp(5rem, 2.375rem + 11.2vw, 9.375rem);
  -webkit-clip-path: polygon(29.013% 39.587%, 29.013% 39.587%, 31.716% 50.307%, 34.534% 61.199%, 37.497% 71.72%, 40.637% 81.329%, 43.987% 89.484%, 47.576% 95.642%, 51.436% 99.263%, 55.6% 99.805%, 60.097% 96.726%, 64.96% 89.484%, 64.96% 89.484%, 68.466% 83.109%, 71.964% 77.316%, 75.455% 72.299%, 78.944% 68.25%, 82.433% 65.362%, 85.926% 63.827%, 89.426% 63.839%, 92.936% 65.589%, 96.46% 69.271%, 100% 75.078%, 100% 0%, 0% 0%, 0% 14.603%, 0% 14.603%, 3.5% 12.375%, 6.813% 10.799%, 9.96% 10.026%, 12.961% 10.203%, 15.835% 11.48%, 18.603% 14.007%, 21.285% 17.931%, 23.9% 23.403%, 26.47% 30.572%, 29.013% 39.587%);
          clip-path: polygon(29.013% 39.587%, 29.013% 39.587%, 31.716% 50.307%, 34.534% 61.199%, 37.497% 71.72%, 40.637% 81.329%, 43.987% 89.484%, 47.576% 95.642%, 51.436% 99.263%, 55.6% 99.805%, 60.097% 96.726%, 64.96% 89.484%, 64.96% 89.484%, 68.466% 83.109%, 71.964% 77.316%, 75.455% 72.299%, 78.944% 68.25%, 82.433% 65.362%, 85.926% 63.827%, 89.426% 63.839%, 92.936% 65.589%, 96.46% 69.271%, 100% 75.078%, 100% 0%, 0% 0%, 0% 14.603%, 0% 14.603%, 3.5% 12.375%, 6.813% 10.799%, 9.96% 10.026%, 12.961% 10.203%, 15.835% 11.48%, 18.603% 14.007%, 21.285% 17.931%, 23.9% 23.403%, 26.47% 30.572%, 29.013% 39.587%);
  top: -1px;
  left: 0;
  z-index: -1;
}
.recruitment__inner {
  position: relative;
}
.recruitment__inner::before {
  content: "";
  position: absolute;
  width: clamp(6.25rem, 1rem + 22.4vw, 15rem);
  aspect-ratio: 4/3;
  background: url(../images/recruit-green/bg-flower.png) no-repeat center center/contain;
  top: 0;
  right: 0;
}
.recruitment__title {
  max-width: clamp(15.625rem, 10rem + 24vw, 25rem);
  margin: 0 auto clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
}
.recruitment__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: clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
}
.recruitment__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 80px;
}
@media screen and (max-width: 767px) {
  .recruitment__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitment__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .recruitment__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitment__img-area {
  width: 45vw;
}
@media screen and (max-width: 767px) {
  .recruitment__img-area {
    width: 100%;
  }
}
.recruitment__item:nth-child(odd) .recruitment__img-area {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .recruitment__item:nth-child(odd) .recruitment__img-area {
    margin: 0;
  }
}
.recruitment__item:nth-child(even) .recruitment__img-area {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .recruitment__item:nth-child(even) .recruitment__img-area {
    margin: 0;
  }
}
.recruitment__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruitment__lead {
  color: #F45E78;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.375rem, 1.075rem + 1.28vw, 1.875rem);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
.recruitment__lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(63%, transparent), color-stop(0%, #FBFFB2));
  background: linear-gradient(transparent 63%, #FBFFB2 0%);
}
.recruitment__text {
  font-weight: bold;
  margin-bottom: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}

.outline {
  padding-top: clamp(4.375rem, 1.75rem + 11.2vw, 8.75rem);
}
.outline__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: clamp(2.5rem, 1rem + 6.4vw, 5rem);
}
@media screen and (max-width: 767px) {
  .outline__body {
    grid-template-columns: auto;
  }
}
.outline dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  border-bottom: 1px dotted #F45E78;
  padding: 12px 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .outline dl {
    padding: 15px 0;
  }
}
.outline dl:first-child {
  border-top: 1px dotted #F45E78;
}
.outline dt {
  color: #F45E78;
}
.outline__lead-area {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1rem + 6.4vw, 5rem);
}
@media screen and (max-width: 767px) {
  .outline__lead-area {
    text-align: left;
  }
}
.outline__img-wrap {
  width: 450px;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .outline__img-wrap {
    width: 100%;
  }
}

.message {
  position: relative;
  background: #C8E3E2;
  padding: clamp(6.25rem, 2.5rem + 16vw, 12.5rem) 0;
  margin-top: -80px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .message {
    margin-top: -40px;
  }
}
.message::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: clamp(5rem, 2.375rem + 11.2vw, 9.375rem);
  -webkit-clip-path: polygon(29.013% 39.587%, 29.013% 39.587%, 31.716% 50.307%, 34.534% 61.199%, 37.497% 71.72%, 40.637% 81.329%, 43.987% 89.484%, 47.576% 95.642%, 51.436% 99.263%, 55.6% 99.805%, 60.097% 96.726%, 64.96% 89.484%, 64.96% 89.484%, 68.466% 83.109%, 71.964% 77.316%, 75.455% 72.299%, 78.944% 68.25%, 82.433% 65.362%, 85.926% 63.827%, 89.426% 63.839%, 92.936% 65.589%, 96.46% 69.271%, 100% 75.078%, 100% 0%, 0% 0%, 0% 14.603%, 0% 14.603%, 3.5% 12.375%, 6.813% 10.799%, 9.96% 10.026%, 12.961% 10.203%, 15.835% 11.48%, 18.603% 14.007%, 21.285% 17.931%, 23.9% 23.403%, 26.47% 30.572%, 29.013% 39.587%);
          clip-path: polygon(29.013% 39.587%, 29.013% 39.587%, 31.716% 50.307%, 34.534% 61.199%, 37.497% 71.72%, 40.637% 81.329%, 43.987% 89.484%, 47.576% 95.642%, 51.436% 99.263%, 55.6% 99.805%, 60.097% 96.726%, 64.96% 89.484%, 64.96% 89.484%, 68.466% 83.109%, 71.964% 77.316%, 75.455% 72.299%, 78.944% 68.25%, 82.433% 65.362%, 85.926% 63.827%, 89.426% 63.839%, 92.936% 65.589%, 96.46% 69.271%, 100% 75.078%, 100% 0%, 0% 0%, 0% 14.603%, 0% 14.603%, 3.5% 12.375%, 6.813% 10.799%, 9.96% 10.026%, 12.961% 10.203%, 15.835% 11.48%, 18.603% 14.007%, 21.285% 17.931%, 23.9% 23.403%, 26.47% 30.572%, 29.013% 39.587%);
  top: -1px;
  left: 0;
}
.message__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(1.25rem, -1rem + 9.6vw, 5rem);
}
@media screen and (max-width: 767px) {
  .message__title-wrap {
    -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;
  }
}
.message__img-area {
  position: relative;
  width: 50vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .message__img-area {
    width: calc(100% + 20px);
  }
}
.message__title-area {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .message__title-area {
    width: 80%;
  }
}
.message__title-area img {
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
.message__name {
  font-weight: bold;
}
.message__name span {
  display: inline-block;
  font-size: 20px;
  margin-left: 20px;
}
.message__text-area {
  position: relative;
  padding: clamp(2.5rem, 1.375rem + 4.8vw, 4.375rem) clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
}
.message__text-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: -1;
}
.message__text-area + .message__text-area {
  margin-top: 60px;
}
.message__lead {
  color: #F45E78;
  font-size: clamp(1.125rem, 0.825rem + 1.28vw, 1.625rem);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.message__text + .message__lead {
  margin-top: 30px;
}

.job {
  padding: clamp(4.375rem, 1.75rem + 11.2vw, 8.75rem) 0;
}
.job__lead {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: #F45E78;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  font-weight: bold;
}
.job__lead span {
  color: #fff;
  background: #F45E78;
  font-size: 15px;
  font-weight: normal;
  padding: 4px 6px;
  line-height: 1;
}
.job__lead::before, .job__lead::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #F45E78;
}
.job__detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(0.625rem, -0.5rem + 4.8vw, 2.5rem) auto;
}
.job__detail dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  line-height: 1.6;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .job__detail dl {
    grid-template-columns: auto;
    padding: 20px 0;
  }
}
.job__detail dl:first-child {
  border-bottom: 1px dotted #004056;
}
.job__detail li {
  padding-left: 16px;
  text-indent: -16px;
}

.occupation {
  display: grid;
  gap: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.occupation__inner {
  background: #FEF5F7;
  border: 2px solid #F45E78;
  padding: 10px 20px;
}
.occupation__lead {
  position: relative;
  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;
  color: #F45E78;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  font-weight: bold;
  cursor: pointer;
}
.occupation__lead::before, .occupation__lead::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #F45E78;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.occupation__lead::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.occupation__lead.active::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.occupation__content {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  -webkit-transition: 0.3s ease max-height;
  transition: 0.3s ease max-height;
}
@media screen and (max-width: 767px) {
  .occupation__content {
    padding: 0;
  }
}
.occupation__content dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .occupation__content dl {
    grid-template-columns: auto;
  }
}
.occupation__content dl:not(:last-child) {
  border-bottom: 1px dotted #F45E78;
}
.occupation__content dl:first-child {
  border-top: 2px solid #F45E78;
  margin-top: 10px;
  padding-top: 20px;
}
.occupation__content dt, .occupation__content dd {
  color: #F45E78;
  line-height: 1.6;
}
.occupation__notes {
  font-size: 14px;
  padding-left: 14px;
  text-indent: -14px;
}

.form {
  position: relative;
  background-image: radial-gradient(#F7F2FF 20%, transparent 20%), radial-gradient(#F7F2FF 20%, transparent 20%);
  background-size: 12px 12px;
  padding: clamp(3.75rem, 1.5rem + 9.6vw, 7.5rem) 0 clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
}
.form::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: clamp(5rem, 2.375rem + 11.2vw, 9.375rem);
  -webkit-clip-path: polygon(64.96% 84.135%, 64.96% 84.135%, 60.096% 91.375%, 55.599% 94.454%, 51.435% 93.913%, 47.574% 90.293%, 43.985% 84.135%, 40.636% 75.981%, 37.496% 66.372%, 34.534% 55.849%, 31.717% 44.953%, 29.016% 34.225%, 29.016% 34.225%, 26.471% 25.214%, 23.9% 18.047%, 21.284% 12.575%, 18.602% 8.649%, 15.834% 6.12%, 12.96% 4.839%, 9.96% 4.656%, 6.813% 5.423%, 3.5% 6.99%, 0% 9.21%, 0% 100%, 100% 100%, 100% 69.697%, 100% 69.697%, 96.46% 63.889%, 92.936% 60.207%, 89.426% 58.456%, 85.925% 58.446%, 82.432% 59.982%, 78.943% 62.873%, 75.454% 66.927%, 71.963% 71.95%, 68.466% 77.75%, 64.96% 84.135%);
          clip-path: polygon(64.96% 84.135%, 64.96% 84.135%, 60.096% 91.375%, 55.599% 94.454%, 51.435% 93.913%, 47.574% 90.293%, 43.985% 84.135%, 40.636% 75.981%, 37.496% 66.372%, 34.534% 55.849%, 31.717% 44.953%, 29.016% 34.225%, 29.016% 34.225%, 26.471% 25.214%, 23.9% 18.047%, 21.284% 12.575%, 18.602% 8.649%, 15.834% 6.12%, 12.96% 4.839%, 9.96% 4.656%, 6.813% 5.423%, 3.5% 6.99%, 0% 9.21%, 0% 100%, 100% 100%, 100% 69.697%, 100% 69.697%, 96.46% 63.889%, 92.936% 60.207%, 89.426% 58.456%, 85.925% 58.446%, 82.432% 59.982%, 78.943% 62.873%, 75.454% 66.927%, 71.963% 71.95%, 68.466% 77.75%, 64.96% 84.135%);
  left: 0;
  bottom: 0;
}
.form__inner {
  position: relative;
}
.form__inner::after {
  content: "";
  position: absolute;
  background: url(../images/recruit-green/bg-flower.png) no-repeat center center/contain;
  width: clamp(7.5rem, 3rem + 19.2vw, 15rem);
  aspect-ratio: 1/1;
  right: 0;
  bottom: -300px;
}
@media screen and (max-width: 767px) {
  .form__inner::after {
    bottom: -170px;
  }
}
.form__content {
  background: #fff;
  border: 1px solid #F45E78;
  border-top: clamp(0.25rem, 0.025rem + 0.96vw, 0.625rem) solid #F45E78;
  padding: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem) clamp(1.25rem, -1.75rem + 12.8vw, 6.25rem);
}

.c-form__item + .c-form__item {
  margin-top: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
.c-form__cont--select {
  max-width: 200px;
}
.c-form input[type=text], .c-form input[type=email] {
  padding: 8px;
  border: solid #004056 1px;
  width: 100%;
}
.c-form textarea {
  padding: 8px;
  border: solid #004056 1px;
  width: 100%;
  line-height: 1.6;
  resize: vertical;
}
.c-form select {
  position: relative;
  padding: 8px 30px 8px 8px;
  border: solid #004056 1px;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
}
.c-form ::-webkit-input-placeholder {
  color: #ccc;
}
.c-form ::-moz-placeholder {
  color: #ccc;
}
.c-form :-ms-input-placeholder {
  color: #ccc;
}
.c-form ::-ms-input-placeholder {
  color: #ccc;
}
.c-form ::placeholder {
  color: #ccc;
}
.c-form .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.c-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-form .wpcf7-radio {
    gap: 5px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-form .wpcf7-radio .wpcf7-list-item {
    width: calc((100% - 20px) / 2);
  }
}
.c-form .wpcf7-radio span.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.c-form .wpcf7-radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #004056;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.c-form .wpcf7-radio span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #F45E78;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.c-form .wpcf7-radio input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
.c-form .wpcf7-list-item {
  margin: 0;
}
.c-form__btn-wrap {
  text-align: center;
  margin-top: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.c-form input[type=submit] {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 260px;
  background: -webkit-gradient(linear, left top, right top, from(#f4677d), to(#f4856b));
  background: linear-gradient(to right, #f4677d 0%, #f4856b 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-form input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.8125rem, 0.775rem + 0.16vw, 0.875rem);
  margin: 0 auto;
}
.recaptcha a {
  text-decoration: underline;
}

span.wpcf7-spinner {
  display: none;
}

.info {
  padding: clamp(3.125rem, 1.25rem + 8vw, 6.25rem) 0 clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.info__inner {
  max-width: 840px;
}
.info__title {
  margin-bottom: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.info__title img {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .info__title img {
    height: 70px;
  }
}
.info__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info__text {
    text-align: left;
  }
}
.info__text + .info__text {
  margin-top: 10px;
}
.info__body {
  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: 20px;
  margin: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem) 0 0;
}
.info__logo {
  max-width: 280px;
}
.info__lead {
  color: #fff;
  background: #F45E78;
  padding: 0 20px;
}
.info__tel {
  color: #F45E78;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.075em;
}
.info__name {
  color: #F45E78;
}

.footer {
  margin-top: auto;
}
.footer__inner {
  border-top: 1px solid #F45E78;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding-bottom: 60px;
  }
  .footer__inner--bottom {
    padding-bottom: 0;
  }
}
.footer small {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #F45E78;
  margin: 15px auto;
}

.thanks {
  padding-top: clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
}
.thanks__title {
  color: #F45E78;
  font-size: clamp(1.5rem, 0.9rem + 2.56vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin: 0 0 50px;
}
.thanks__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}/*# sourceMappingURL=page-recruit-green.css.map */