@charset "UTF-8";
/* カラー */
@font-face {
  font-family: "CaveatRegular";
  src: url(../fonts/asamizo/Caveat-Regular.ttf);
}
.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 {
  position: relative;
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

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

h1, h2, h3, h4, h5, h6, p, li, dt, dd, tr, td, a {
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
}

p, li, dt, dd {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 2;
  font-feature-settings: "palt";
}

.section {
  position: relative;
  padding: clamp(3.75rem, 1.5rem + 9.6vw, 7.5rem) 0;
}

.section + .section {
  margin: clamp(-3.75rem, -1.5rem + -9.6vw, -7.5rem) 0;
}

.section--bg {
  background-image: linear-gradient(45deg, #F7E3D9, #D7C6F7);
  padding: clamp(3.75rem, 1.5rem + 9.6vw, 7.5rem) 0;
}

.container {
  max-width: 1060px;
  padding: 0 clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
  margin: 0 auto;
}

.object {
  position: absolute;
  width: clamp(9.375rem, 3.75rem + 24vw, 18.75rem);
  z-index: -1;
}
.object--top {
  top: 0;
  right: 0;
}
.object--bottom {
  left: 0;
  bottom: 0;
}

.decoration {
  position: relative;
}
.decoration::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(45deg, #F7E3D9, #D7C6F7);
  width: clamp(6.25rem, 3.475rem + 11.84vw, 10.875rem);
  aspect-ratio: 1;
  z-index: -1;
}
.decoration--left::before {
  top: -15px;
  left: -15px;
}
.decoration--right::before {
  top: -15px;
  right: -15px;
}

.title-en {
  display: block;
  font-family: "CaveatRegular";
  font-size: clamp(3.875rem, 2.075rem + 7.68vw, 6.875rem);
  rotate: -10deg;
  transform-origin: left bottom;
}
.title-en--center {
  text-align: center;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .title-en--center {
    text-align: left;
    transform-origin: left bottom;
  }
}

.title {
  color: #fff;
  background-image: linear-gradient(90deg, #edb9b6, #667dd2);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 8px clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
  margin: 0 0 clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.title--center {
  margin: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem) auto clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .title--center {
    margin: 0 0 clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
  }
}

.text + .text {
  margin-top: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}

.header {
  position: relative;
  z-index: 999;
}

.nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #ee869d;
    max-width: 500px;
    width: 100%;
    height: 100vh;
    padding: clamp(1.875rem, 0rem + 8vw, 5rem);
    transform: translateX(100%);
    transition: 0.4s;
  }
  .nav.active {
    transform: none;
  }
}
.nav__list {
  display: grid;
}
.nav__item {
  border-bottom: 1px solid #fff;
}
.nav__link {
  display: block;
  color: #fff;
  padding: 15px 0;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    top: 15px;
    right: 15px;
    padding: 6px;
    cursor: pointer;
    z-index: 1000;
  }
  .hamburger__btn {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hamburger__bar {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ee869d;
    transition: 0.3s;
  }
  .hamburger .top {
    top: 20%;
  }
  .hamburger .middle {
    top: 50%;
  }
  .hamburger .bottom {
    top: 80%;
  }
  .hamburger.active .top {
    transform: rotate(45deg);
    top: 50%;
  }
  .hamburger.active .middle {
    opacity: 0;
  }
  .hamburger.active .bottom {
    transform: rotate(-45deg);
    top: 50%;
  }
}

.fixed {
  position: fixed;
  top: 20px;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .fixed {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    top: initial;
    right: 0;
    bottom: 0;
    padding: 8px;
  }
}
.fixed__btn {
  position: relative;
  display: grid;
  place-content: center;
  width: 200px;
  color: #fff;
  background-image: linear-gradient(90deg, #edb9b6, #667dd2);
  font-weight: 700;
  border-radius: 40px;
  padding: 15px 40px;
}
@media screen and (max-width: 767px) {
  .fixed__btn {
    width: 100%;
    border-radius: 5px;
  }
}
.fixed__btn::after {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 3/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 40%;
  right: 20px;
  transform: skewX(30deg);
  transition: 0.3s;
}
@media (hover: hover) {
  .fixed__btn:hover::after {
    right: 15px;
  }
}

.service__inner {
  display: flex;
  gap: 30px clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
  margin-bottom: clamp(3.125rem, 0.5rem + 11.2vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .service__inner {
    flex-direction: column;
  }
}
.service__img-area {
  width: 45vw;
}
@media screen and (max-width: 767px) {
  .service__img-area {
    width: 100%;
  }
}
.service__img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__inner:nth-of-type(odd) .service__img-area {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .service__inner:nth-of-type(odd) .service__img-area {
    margin: 0;
  }
}
.service__inner:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service__inner:nth-of-type(even) {
    flex-direction: column;
  }
}
.service__inner:nth-of-type(even) .service__img-area {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .service__inner:nth-of-type(even) .service__img-area {
    margin: 0;
  }
}
.service__text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.info {
  background-image: linear-gradient(45deg, #F7E3D9, #D7C6F7);
  padding: clamp(2.5rem, 1rem + 6.4vw, 5rem) 0;
}
.info__inner {
  display: grid;
  grid-template-columns: 1fr clamp(10rem, 3.25rem + 28.8vw, 21.25rem);
  gap: 20px clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
  background: #fff;
  border: 1px solid #000;
  padding: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .info__inner {
    grid-template-columns: auto;
  }
}
.info__name {
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  font-weight: bold;
  border-bottom: 1px dotted #BABABA;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
.info__index {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 30px;
  font-weight: bold;
  padding: 5px 20px;
  margin: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem) 0 clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
.info__map-area {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .info__map-area {
    aspect-ratio: 4/3;
  }
}
.info__map-area iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__img-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
  margin-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .works__img-area {
    grid-template-columns: auto;
  }
}

.skill__inner {
  display: flex;
  gap: 20px clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
  margin-bottom: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .skill__inner {
    flex-direction: column;
  }
}
.skill__text-area {
  flex: 1;
}
.skill__request {
  max-width: 320px;
}
.skill__img-area {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .skill__img-area {
    width: 100%;
  }
}
.skill__img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.skill__bottom {
  display: flex;
  gap: 20px clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
  margin-top: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .skill__bottom {
    flex-direction: column-reverse;
  }
}
.skill__bottom p {
  flex: 1;
}
.skill__bottom img {
  width: clamp(18.75rem, 15rem + 16vw, 25rem);
}
@media screen and (max-width: 767px) {
  .skill__bottom img {
    width: 100%;
  }
}

.voice__inner {
  display: flex;
  align-items: center;
  gap: 20px clamp(1.875rem, 0rem + 8vw, 5rem);
}
@media screen and (max-width: 767px) {
  .voice__inner {
    flex-direction: column;
  }
}
.voice__img-area {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .voice__img-area {
    width: 100%;
  }
}
.voice__img-area img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  max-width: 300px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .voice__img-area img {
    margin: 0 auto;
  }
}
.voice__text-area {
  flex: 1;
}
.voice__position {
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  font-weight: bold;
  line-height: 1.6;
}
.voice__name {
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: bold;
  line-height: 1.6;
}
.voice__name-en {
  color: #ee869d;
  font-family: "CaveatRegular";
  font-size: clamp(2.25rem, 2.025rem + 0.96vw, 2.625rem);
  letter-spacing: 0;
  line-height: 1;
}

.workplace {
  position: relative;
  background: repeating-linear-gradient(-45deg, #FEE3AF, #FEE3AF 8px, #fff 0, #fff 20px);
  padding: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  margin-top: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
}
.workplace__inner {
  background: #fff;
  padding: 50px clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem) clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
.workplace__title {
  position: absolute;
  color: #fff;
  background: #ee869d;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  padding: 5px 20px;
  top: 0;
  left: clamp(0.625rem, -0.5rem + 4.8vw, 2.5rem);
  rotate: -5deg;
}
.workplace img {
  margin-bottom: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}

.recruit__inner {
  background: #fff;
  border-radius: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
  padding: clamp(2.5rem, 1rem + 6.4vw, 5rem) clamp(1.25rem, -0.25rem + 6.4vw, 3.75rem);
}
.recruit__body + .recruit__body {
  margin-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.recruit__lead {
  color: #fff;
  background: #ee869d;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  font-weight: bold;
  padding: 8px 40px;
  margin-bottom: 20px;
}
.recruit dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5px 20px;
  border-bottom: 1px solid #BABABA;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .recruit dl {
    grid-template-columns: auto;
  }
}
.recruit dl:first-of-type {
  border-top: 1px solid #BABABA;
}
.recruit dt, .recruit dd {
  line-height: 1.6;
}
.recruit dt {
  color: #909090;
}
.recruit p {
  line-height: 1.6;
  margin-top: 10px;
}

.about__inner {
  display: flex;
  gap: 20px clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .about__inner {
    flex-direction: column;
  }
}
.about__img-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about__img-area {
    width: 100%;
  }
}
.about__text-area {
  flex: 1;
}

.footer {
  background: #626262;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 20px 80px;
  }
}
.footer__copy {
  color: #fff;
}

.wpcf7 .tableLine {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 10px;
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .wpcf7 .tableLine {
    grid-template-columns: auto;
  }
}
.wpcf7 dt p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.wpcf7 dd p {
  width: 100%;
  display: flex;
  align-items: center;
}
.wpcf7 .must {
  background: #ee869d;
  color: #fff;
  font-size: 14px;
  display: grid;
  place-content: center;
  padding: 4px 10px;
  border-radius: 5px;
  line-height: 1;
}
.wpcf7 input[type=text] {
  width: 100%;
  border: 1px solid #707070;
  padding: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  border-radius: 5px;
}
.wpcf7 input[type=submit] {
  width: 100%;
  max-width: 320px;
  display: grid;
  place-content: center;
  color: #fff;
  background-image: linear-gradient(90deg, #edb9b6, #667dd2);
  border-radius: 40px;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  padding: 20px 20px;
  margin: 20px auto;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

textarea {
  width: 100%;
  border: 1px solid #707070;
  padding: 1em;
  border-radius: 5px;
  resize: vertical;
}

.entry-btn p {
  width: 100%;
  margin: 0 auto;
}

span.wpcf7-form-control.wpcf7-radio, span.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  gap: 30px;
}

span.wpcf7-list-item {
  margin: 0;
  display: flex;
  gap: 5px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  margin: 0 auto;
}
.recaptcha a {
  text-decoration: underline;
}

.fade {
  translate: 0 50px;
  opacity: 0;
  transition: 0.8s;
}
.fade.show {
  translate: none;
  opacity: 1;
}

.thanks h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.28vw, 2rem);
  font-weight: bold;
  margin-bottom: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
  text-align: center;
}
.thanks__text {
  text-align: center;
  margin-bottom: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.thanks__btn {
  position: relative;
  display: grid;
  place-content: center;
  width: 200px;
  color: #fff;
  background-image: linear-gradient(90deg, #edb9b6, #667dd2);
  font-weight: 700;
  border-radius: 40px;
  padding: 15px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    width: 100%;
    border-radius: 5px;
  }
}
.thanks__btn::after {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 3/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 40%;
  right: 20px;
  transform: skewX(30deg);
  transition: 0.3s;
}
@media (hover: hover) {
  .thanks__btn:hover::after {
    right: 15px;
  }
}/*# sourceMappingURL=page-koyoen-houkan-rec.css.map */