﻿@keyframes show {
  0% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes hide {
  0% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.js-fadeIn {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-fadeIn.is-fadeInUp {
  transform: translateY(16px);
}
.js-fadeIn.is-show {
  opacity: 1;
  transform: none;
}
.nav-sticky {
  position: sticky;
  top: 76px;
  background: #fff;
  padding: 1rem 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .nav-sticky {
    top: 60px;
    overflow: auto;
    padding: 1rem 2rem 1rem 0;
  }
}
.nav-sticky__list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .nav-sticky__list {
    justify-content: flex-start;
    gap: 1rem;
  }
}
.nav-sticky__link {
  color: #192942;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .nav-sticky__link {
    font-size: 12px;
  }
}
.nav-sticky__link::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.4rem;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background: #192942;
  margin-left: 0.4rem;
  transform: translateY(-0.1rem);
}
@media screen and (max-width: 768px) {
  .nav-sticky__link::after {
    margin-left: 0.2rem;
  }
}
.recruit {
  scroll-margin-top: 80px;
  background: #f8f8fa;
}
.recruit__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 3.5%;
}
@media screen and (max-width: 768px) {
  .recruit__list {
    gap: 20px 4%;
  }
}
.recruit__item {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    width: 48%;
  }
}
.recruit__link {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit__link {
    font-size: 11px;
  }
}
.recruit__image {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .recruit__image {
    margin-bottom: 4px;
  }
}
.about {
  scroll-margin-top: 80px;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto 1fr;
}
@media screen and (max-width: 768px) {
  .about__grid {
    display: block;
  }
}
.about__grid .title {
  grid-area: 1/1/2/2;
  align-self: flex-end;
  font-size: clamp(18px, 10.2713567839px + 0.0100502513 * 100vw, 24px);
  margin-bottom: 1.6em;
}
.about__grid .image {
  grid-area: 1/2/4/3;
}
@media screen and (max-width: 768px) {
  .about__grid .image {
    width: 100%;
    max-width: 400px;
  }
}
.about__grid .desc {
  grid-area: 2/1/3/2;
  font-size: 14px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about__grid .desc {
    margin: 36px 0;
  }
}
.about .target {
  grid-area: 3/1/4/2;
  align-self: flex-start;
  width: 68%;
  font-size: 14px;
  border: 2px solid #192942;
  border-radius: 10px;
  padding: 0 24px 24px;
}
@media screen and (max-width: 768px) {
  .about .target {
    width: 100%;
  }
}
.about .target__title {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  background: #fff;
  padding: 0 0.5rem;
  transform: translateY(-12px);
}
.about .target__list {
  font-size: 14px;
}
.about .target__item::before {
  content: "・";
  display: inline-block;
}
.point {
  scroll-margin-top: 80px;
}
.point__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}
@media screen and (max-width: 768px) {
  .point__grid {
    display: block;
  }
}
.point__grid:not(:last-child) {
  margin-bottom: 100px;
}
.point__grid:nth-of-type(2n) .title {
  grid-area: 1/2/2/3;
}
.point__grid:nth-of-type(2n) .image {
  grid-area: 1/1/3/2;
  margin: 0 10% 0 auto;
}
@media screen and (max-width: 768px) {
  .point__grid:nth-of-type(2n) .image {
    margin: 0 0 24px;
  }
}
.point__grid:nth-of-type(2n) .desc {
  grid-area: 2/2/3/3;
}
.point__grid .title {
  grid-area: 1/1/2/2;
  align-self: flex-end;
  font-size: clamp(18px, 10.2713567839px + 0.0100502513 * 100vw, 24px);
  margin-bottom: 1.6em;
}
.point__grid .image {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) {
  .point__grid .image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 24px;
  }
}
.point__grid .desc {
  grid-area: 2/1/3/2;
  align-self: flex-start;
  font-size: 14px;
  margin-bottom: 2em;
}
.point__grid .desc p:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .point__grid .desc p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.jobs {
  scroll-margin-top: 80px;
}
.entry {
  scroll-margin-top: 80px;
}
.entry .entry-steps {
  max-width: 500px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .entry .entry-steps {
    margin-bottom: 40px;
  }
}
.entry .entry-steps__list {
  display: flex;
}
.entry .entry-steps__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.entry .entry-steps__item.is-current span,
.entry .entry-steps__item.is-current i {
  opacity: 1;
}
.entry .entry-steps__item:last-child::after {
  display: none;
}
.entry .entry-steps__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 6px;
  height: 8px;
  background: #192942;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: translateY(-50%);
}
.entry .entry-steps__item span {
  font-weight: 700;
  line-height: 1;
  opacity: 0.2;
}
.entry .entry-steps__item i {
  display: block;
  width: 10px;
  height: 10px;
  background: #192942;
  border-radius: 50%;
  opacity: 0.2;
}
.entry .entry-form {
  max-width: 500px;
  margin: 0 auto;
}
.entry .entry-form__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .entry .entry-form__bottom > * {
    width: 100%;
  }
}
.entry .privacy {
  width: 100%;
  height: 120px;
  border: 1px solid #e4e4e4;
  font-size: 12px;
  padding: 1.5rem;
  overflow: auto;
}
.entry .privacy dl:not(:last-child) {
  margin-bottom: 1rem;
}
.entry .privacy dl dt {
  font-weight: 700;
}
.complete {
  text-align: center;
}
.complete__catch {
  display: inline-block;
  background: linear-gradient(-30deg, #8a1ba3 0%, #ee2344 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-weight: 900;
  font-size: clamp(32px, 11.3902847571px + 0.02680067 * 100vw, 48px);
  line-height: 1.2;
  margin-bottom: 36px;
}
.complete__bottom {
  margin-top: 60px;
}



.sorta-field-input {
    border: 1px solid #e4e4e4;
    font-size: 14px;
    padding: 1rem 1.5rem;
    width: 100%;
    /* height: auto;
    background: #f8f8fa;
    border-color: #f8f8fa;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1.3rem 1rem */
}

@media only screen and (max-width: 576px) {
    .sorta-field-input {
        padding: 1rem .75rem
    }
}

.sorta-field-input::-moz-placeholder {
    color: #bfbfbf
}

.sorta-field-input:-ms-input-placeholder {
    color: #bfbfbf
}

.sorta-field-input::placeholder {
    color: #bfbfbf
}
.sorta-field-container:not(:last-of-type) {
    margin-bottom: 2rem;
}

.sorta-field-label {
        display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: .4rem;
}

.sorta-field-textarea {
    width: 100%;
    position: relative;
    border: 1px solid #e4e4e4;
    font-size: 14px;
    padding: 1rem 1.5rem;
    height: 200px;
}

.sorta-form .sorta-field-container:nth-child(6) .sorta-field-label {
    display: none;
}

.sorta-form .sorta-field-container:nth-child(6) label {
    font-size: 14px;
    margin-left: 5px;
}

.sorta-submit-button {
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    background: #192942;
    border-radius: 5em;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 12px 2.4em;
        height: 80px;
    min-width: 380px;
    font-size: 16px;
    padding: 0 3em;
    margin: 40px auto 0 auto;
}

.sorta-success {
    background: #e4e4e4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
}