.header {
  padding: 18px 0;
  width: 100%;
  background: #23afb7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 104;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
  position: relative;
}
.header .js-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 25px;
  right: 5%;
  z-index: 100;
}
@media not screen and (min-width: 576px) {
  .header .js-btn {
    display: inline-block;
  }
}
.header .js-btn span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.5s;
}
.header .js-btn span:nth-child(1) {
  top: 10%;
}
.header .js-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .js-btn span:nth-child(3) {
  bottom: 10%;
}
.header .js-btn.is-active span {
  transition: all 0.5s;
}
.header .js-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .js-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header .js-btn.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media not screen and (min-width: 576px) {
  .header .g-nav {
    width: 100vw;
    height: 100%;
    position: fixed;
    top: -100vh;
    left: 0;
    transition: ease-in 0.5s;
    z-index: -1;
    touch-action: none;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav.is-active {
    top: 0;
    transition: ease-in 0.5s;
  }
}
.header .g-nav__list {
  display: flex;
  justify-content: flex-end;
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list {
    justify-content: flex-start;
    flex-direction: column;
    padding: 80px 15px 0;
    margin: 30px 0 0;
    height: 100%;
    background: #23afb7;
  }
}
.header .g-nav__list-item {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.header .g-nav__list-item:not(:last-child) {
  margin: 0 45px 0 0;
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item:not(:last-child) {
    margin: 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item:not(:first-child) {
    margin: 20px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    opacity: 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item.is-active {
    opacity: 1;
    transition: opacity 0.5s ease 0.5s;
  }
}

.job-detail__container .job-detail__ttl {
  font-weight: 700;
  font-size: 3rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .job-detail__ttl {
    font-size: 2.4rem;
  }
}
.job-detail__container .job-detail__desc {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .job-detail__desc {
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule {
  margin: 75px 0 0;
  width: 100%;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    padding: 0;
    background: #def9f5;
  }
}
.job-detail__container .schedule__bg {
  padding: 58px 95px 60px;
  max-width: 815px;
  background: #def9f5;
}
@media not screen and (min-width: 1200px) {
  .job-detail__container .schedule__bg {
    width: 80%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__bg {
    padding: 40px 2%;
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__bg {
    padding: 0 15px 0;
  }
}
.job-detail__container .schedule__txt {
  display: block;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__txt {
    padding: 40px;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__txt {
    margin: 0;
    padding: 18px 15px;
  }
}
.job-detail__container .schedule__txt__ttl {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.53;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__txt__ttl {
    font-size: 1.8rem;
  }
}
.job-detail__container .schedule__content {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  margin: 46px 0 0;
  max-width: 380px;
}
@media not screen and (min-width: 992px) {
  .job-detail__container .schedule__content {
    max-width: 60%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__content {
    max-width: 100%;
  }
}
.job-detail__container .schedule__list {
  margin: -10px 0 -10px 30px;
  max-width: 330px;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__list {
    max-width: 100%;
  }
}
.job-detail__container .schedule__item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__item {
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__item:not(:first-child) {
  margin: 20px 0 0;
}
.job-detail__container .schedule__line {
  padding: 0 11px;
  width: 1px;
  height: auto;
  border-top: 5px solid #23afb7;
  border-bottom: 5px solid #23afb7;
  position: relative;
}
.job-detail__container .schedule__line::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #222;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.job-detail__container .schedule__line::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #23afb7;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__line::after {
    top: 58%;
  }
}
.job-detail__container .schedule__line.job-plan::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #23afb7;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__line.job-plan::after {
    top: 58%;
  }
}
.job-detail__container .schedule__foot {
  display: block;
  margin: 50px auto 0;
  padding: 15px 25px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__foot {
    margin: 50px -15px 0;
    width: 110%;
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__thumb {
  max-width: 530px;
  height: 485px;
  border: 1px solid #23afb7;
  position: absolute;
  top: -43px;
  right: 0;
  z-index: 1;
}
@media not screen and (min-width: 1200px) {
  .job-detail__container .schedule__thumb {
    width: 450px;
    height: 400px;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb {
    margin: 42px auto 0;
    position: relative;
    border: none;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb {
    margin: 42px auto 0;
    width: 100%;
    height: 288px;
  }
}
.job-detail__container .schedule__thumb::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #23afb7;
  position: absolute;
  top: 12px;
  left: -11px;
  z-index: -1;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb::before {
    display: none;
  }
}
.job-detail__container .schedule__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-detail__container .schedule__thumb__balloon {
  width: 340px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  right: 0;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb__balloon {
    position: static;
    margin: 0 auto;
    width: 60%;
    right: inherit;
    left: 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb__balloon {
    margin: 12px 0 0;
    width: 100%;
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__thumb__balloon-caption {
  padding: 15px 10px;
  width: 100%;
  position: absolute;
  top: 58%;
  left: 52%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb__balloon-caption {
    width: 80%;
    top: -110px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb__balloon-caption {
    width: 100%;
    top: -30%;
    left: 52%;
  }
}
.job-detail__container .charm {
  margin: 100px 0;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm {
    margin: 40px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__ttl {
    justify-content: flex-end;
    position: relative;
  }
}
.job-detail__container .charm__ttl::before {
  width: 75%;
}
@media not screen and (min-width: 992px) {
  .job-detail__container .charm__ttl::before {
    width: 70%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__ttl::before {
    width: 65%;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__ttl::before {
    width: 50%;
    position: absolute;
    top: 18px;
    right: -4%;
  }
}
.job-detail__container .charm__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px 3%;
  margin: 36px 0 0;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__list {
    display: flex;
    flex-direction: column;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__list {
    gap: 30px 0;
    margin: 20px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item {
    width: 100%;
  }
}
.job-detail__container .charm__item__head {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.job-detail__container .charm__item__head-ttl {
  margin: 0 0 0 23px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__item__head-ttl {
    margin: 0;
    font-size: 1.7rem;
  }
}
.job-detail__container .charm__item__head-icon {
  width: 55px;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__item__head-icon {
    display: none;
  }
}
.job-detail__container .charm__item__desc {
  margin: 15px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__desc {
    margin: 10px 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.job-detail__container .charm__item:last-child {
  padding: 35px 44px 49px 38px;
  background: #def9f5;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item:last-child {
    padding: 18px 15px;
  }
}
.job-detail__container .charm__item__ttl {
  font-weight: 700;
  font-size: 2.7rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__ttl {
    font-size: 1.8rem;
  }
}
.job-detail__container .charm__item__desc {
  margin: 18px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__desc {
    font-size: 1.4rem;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94vh;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .footer {
    height: 94svh;
  }
}
.footer__inner {
  margin: -30px 0 0;
}
@media not screen and (min-width: 576px) {
  .footer__inner {
    padding: 142px 4%;
    width: 100%;
    height: 100%;
  }
}
.footer__ttl {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 4px #666;
}
@media not screen and (min-width: 576px) {
  .footer__ttl {
    font-size: 1.7rem;
  }
}
.footer__list {
  width: 100%;
}
.footer__list__btn {
  display: block;
  margin: 50px auto 0;
  max-width: 320px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  color: #23afb7;
  border: 1px solid #23afb7;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .footer__list__btn {
    margin: 23px auto 0;
    max-width: 315px;
  }
}
.footer__list__btn a {
  display: block;
  padding: 13px 0;
}
.footer__list__btn:not(:first-child) {
  margin: 20px auto 0;
}
.footer__list__btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #23afb7;
  border-right: 2px solid #23afb7;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
}
.footer__copy {
  padding: 8px 0;
  width: 100%;
  text-align: right;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media not screen and (min-width: 576px) {
  .footer__copy {
    text-align: center;
  }
}
@media not screen and (min-width: 576px) {
  .footer__copy.home {
    margin: 264px auto 0;
    text-align: center;
  }
}
.footer__copy-txt {
  display: inline-block;
  padding: 0 2.5%;
  max-width: 1160px;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
}
@media not screen and (min-width: 576px) {
  .footer__copy-txt {
    font-size: 1rem;
  }
}

.job-plan-page {
  overflow-x: hidden;
}
.job-plan-page .job-plan .schedule__thumb__balloon {
  bottom: -180px;
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour {
    margin: 40px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__ttl {
    justify-content: flex-end;
    position: relative;
  }
}
.job-plan-page .job-plan .tour__ttl::before {
  width: 70%;
}
@media not screen and (min-width: 992px) {
  .job-plan-page .job-plan .tour__ttl::before {
    width: 60%;
  }
}
@media not screen and (min-width: 768px) {
  .job-plan-page .job-plan .tour__ttl::before {
    width: 55%;
  }
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__ttl::before {
    width: 40%;
    position: absolute;
    top: 18px;
    right: -4%;
  }
}
.job-plan-page .job-plan .tour__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 26px 0 0;
}
@media not screen and (min-width: 992px) {
  .job-plan-page .job-plan .tour__list {
    flex-direction: column;
  }
}
@media not screen and (min-width: 768px) {
  .job-plan-page .job-plan .tour__list {
    align-items: center;
  }
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__list {
    margin: 0;
  }
}
.job-plan-page .job-plan .tour__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 0 0 20px;
  width: calc((100% - 78px) / 3);
  border-bottom: 1px dashed #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__item:last-child {
    padding: 20px 0 30px;
    border-bottom: none;
  }
}
@media not screen and (min-width: 1200px) {
  .job-plan-page .job-plan .tour__item {
    width: 30%;
  }
}
@media not screen and (min-width: 992px) {
  .job-plan-page .job-plan .tour__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__item {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.job-plan-page .job-plan .tour__item__body {
  margin: 12px 0 0;
}
@media not screen and (min-width: 992px) {
  .job-plan-page .job-plan .tour__item__body {
    margin: 12px 0 0 20px;
    width: 60%;
  }
}
@media not screen and (min-width: 576px) {
  .job-plan-page .job-plan .tour__item__body {
    margin: 12px 0 0;
    width: 100%;
  }
}
.job-plan-page .job-plan .tour__item__head-ttl {
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
}
.job-plan-page .job-plan .tour__item__head-label {
  display: inline-block;
  margin: 10px 0 0;
  padding: 5px 0;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  background: #23afb7;
  color: #fff;
  border-radius: 50px;
}
.job-plan-page .job-plan .tour__item__head-label.label01, .job-plan-page .job-plan .tour__item__head-label.label02 {
  width: 126px;
}
.job-plan-page .job-plan .tour__item__head-label.label03 {
  width: 240px;
}
.job-plan-page .job-plan .tour__item__head-note {
  display: inline-block;
  margin: 0 0 0 10px;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 3;
}
.job-plan-page .job-plan .tour__item__desc {
  margin: 10px 0 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
}
.job-plan-page .job-plan .tour__item__thumb {
  width: 100%;
  height: 227px;
  position: relative;
}
@media not screen and (min-width: 992px) {
  .job-plan-page .job-plan .tour__item__thumb {
    height: 230px;
  }
}
.job-plan-page .job-plan .tour__item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}