@charset "UTF-8";
/* CSS Document */

/**********************************************************
* 共通
**********************************************************/
:root {
  --mainC: #ff662e;
  --font-ja: "Noto Sans JP", sans-serif;
  --header-height: 12rem;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-ja);
  -webkit-font-feature-settings: "pwid", "palt", "pkna";
  -moz-font-feature-settings: "pwid", "palt", "pkna";
  font-feature-settings: "pwid", "palt", "pkna";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media not all and (width < 681px) {
  body {
    min-width: 1400px;
  }
}

main {
  overflow: clip;
  position: relative;
}

img {
  pointer-events: none;
}

.l-wrapper {
  width: min(100% - 40px, 1000px);
  margin-left: auto;
  margin-right: auto;
}

/******　PC、スマホ・タブレット オンリー仕様　******/
@media (width < 681px) {
  .pc_only {
    display: none;
  }
}

@media not all and (width < 681px) {
  .sp_only {
    display: none;
  }
}

/******　ヘッダー　******/
.header {
  position: sticky;
  z-index: 5;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-left: 4.5rem;
	pointer-events: none;
}

.header h1 img {
  height: 4.5rem;
}

@media (width < 681px) {

  .header,
  .fv_regBtn img {
    display: none;
  }
}

/**********************
*　Nav
***********************/
.navtrg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background: #ff662e;
  transition: .4s;
}

.navtrg.on {
  background-color: transparent;
}

.navtrg__inner {
  position: relative;
  width: 15px;
  height: 8px;
}

.navtrg__inner:before,
.navtrg__inner:after {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 1px;
  background: #fff;
  content: "";
  transition: all .3s;
}

.navtrg__inner:before {
  top: 0;
  left: 0;
}

.navtrg__inner:after {
  bottom: 0;
  left: 0;
}

.navtrg.on .navtrg__inner:before,
.navtrg.on .navtrg__inner:after {
  position: absolute;
  top: 50%;
  left: 50%;
}

.navtrg.on .navtrg__inner:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.navtrg.on .navtrg__inner:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: -200%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 191, 124, 1) 3%, rgba(255, 102, 46, 1) 100%);
  padding: 0 20px 25px;
  z-index: 900;
  transition: 0.3s ease-in-out;
}

.nav.active {
  left: 0;
}

.nav .nav__menu {
  margin-top: 35px;
}

.nav .nav__menu__item:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.nav__menu__item>a {
  display: block;
  padding-top: 35px;
  padding-bottom: 35px;
  color: #fff;
}

.nav__menu__item__main,
.nav__menu__item__sub {
  display: block;
}

.nav__menu__item__main {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

/*.nav__menu__item__sub { margin-top: 10px; font: 400 0.9rem 'Poppins', sans-serif; letter-spacing: 0.5em; text-indent: 0.5em; }*/
.nav__other {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #000;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  color: #fff;
}

.nav__footer__logo img {
  width: 130px;
}

.nav__footer__copy {
  margin-top: 22px;
  font: 400 0.9rem 'Poppins', sans-serif;
  color: #fff;
}

@media print,
screen and (max-width:680px) {
  .nav {
    overflow: scroll;
  }

  .nav__other {
    margin-bottom: 35px;
  }
}

@media print,
screen and (min-width:681px) {
  .navtrg {
    display: none;
  }

  /*
	.navtrg { width: 50px; height: 100%; }
	.navtrg:hover { animation: navtrg .45s 2 forwards; }
	.navtrg__inner { overflow: hidden; }
	
	.navtrg:not(.on):hover .navtrg__inner:before { animation: navtrgBar1 .65s 2 forwards; animation-delay: .1s; }
	.navtrg:not(.on):hover .navtrg__inner:after { animation: navtrgBar2 .65s 2 forwards; }
	
	.nav { max-width: 460px; left: -100%; }
	.nav.active { left: 50px; }
	*/
}

@keyframes navtrg {
  0% {}

  50% {
    width: 60px;
  }

  100% {
    width: 50px;
  }
}

@keyframes navtrgBar1 {
  0% {}

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes navtrgBar2 {
  0% {}

  50% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

/**********************
*　Footer
***********************/
.footer {
  background: #000;
  padding: 20px 20px 35px;
}

.footer .nav__footer {
  margin-top: 35px;
}

.footer__inner {
  position: relative;
}

.go2top {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.go2top:before {
  transform: rotate(315deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
}

.sns__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.sns__links__item {
  width: 36px;
  aspect-ratio: 1;
}

.sns__links__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print,
screen and (max-width:680px) {

  .nav__footer__logo--pc,
  .nav__footer__info {
    display: none;
  }
}

@media print,
screen and (min-width:681px) {
  .footer {
    padding: 90px 20px 40px;
  }

  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1106px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer .nav__menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .footer .nav__menu__item>a {
    padding: 0;
    text-align: center;
  }

  .footer .nav__menu__item:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 10px;
  }

  .footer .nav__menu__item:not(:last-of-type) a {
    position: relative;
  }

  .footer .nav__menu__item:not(:last-of-type) a::after {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    content: "";
  }

  .footer .nav__menu__item__main {
    font-size: 1.4rem;
    font-weight: 700;
  }


  .footer .nav__footer {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .nav__footer__logo--pc {
    width: 139px;
    margin-right: 65px;
  }

  .nav__footer__logo--pc img {
    width: 100%;
  }

  .nav__footer__logo--sp {
    display: none;
  }

  .nav__footer__info {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #fff;
  }

  .go2top {
    top: -20px;
    right: -100px;
  }

  .go2top:hover:before {
    animation: go2toparrow .45s 2 forwards;
  }
}

@keyframes go2toparrow {
  0% {}

  50% {
    transform: translateY(-3px) rotate(315deg);
  }

  100% {
    transform: translateY(0) rotate(315deg);
  }
}

/******　登録ボタン　******/
.regBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: clamp(12rem, 26.47vw, 16rem);
  background: no-repeat url(../img/regBtn_back.webp) center/cover;
}

.regBtn__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.regBtn__shoulder {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.regBtn__shoulder::before,
.regBtn__shoulder::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 120%;
  background-color: #ffffff;
}

.regBtn__shoulder::before {
  inset: 50% auto auto -8%;
  transform: translateY(-50%) rotate(-20deg);
}

.regBtn__shoulder::after {
  inset: 50% -8% auto auto;
  transform: translateY(-50%) rotate(20deg);
}

.regBtn__title {
  display: block;
  width: min(100% - 24px, 72rem);
}

.regBtn__title_innner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  background: linear-gradient(to right, #ffff00 0%, #ffdc00 100%);
  border-radius: 9999px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
  padding: 0.9em;
}

.regBtn__title_innner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 62px;
  aspect-ratio: 1.32258065;
  background: url(../img/icon_fukidashi.svg) no-repeat center/cover;
}

.regBtn__title_innner span {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: #c8003c;
  border-left: 2px solid #000000;
  padding-left: 30px;
  margin-left: 30px;
}

@media (width <=680px) {
  .regBtn__shoulder {
    font-size: 1.6rem;
  }

  .regBtn__title {
    width: min(100% - 24px, 50rem);
  }

  .regBtn__title_innner {
    justify-content: flex-start;
    font-size: clamp(1.5rem, 4.16667vw, 2rem);
    letter-spacing: 0.06em;
    padding-left: clamp(20px, 6.10687vw, 32px);
  }

  .regBtn__title_innner span {
    font-size: clamp(2.3rem, 6.38889vw, 3.2rem);
    letter-spacing: 0.06em;
    padding-left: clamp(10px, 2.8626vw, 15px);
    margin-left: clamp(10px, 2.8626vw, 15px);
  }

  .regBtn__title_innner::after {
    width: clamp(42px, 11.6667vw, 62px);
    right: clamp(10px, 2.8626vw, 30px);
  }
}

/******　追従型登録ボタン（LP1のregBtnと同一スタイル、追従機能のみ追加）　******/
.regBtn.regBtn-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  pointer-events: none;
}

.regBtn.regBtn-fixed.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

/******　メディアリンクボタン　******/
.mediaLink_btn {
  position: relative;
  width: 100%;
  text-align: center;

  &::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #f7f7f7;
  }

  &::before {
    position: absolute;
    left: 50%;
    top: -2.25em;
    width: 100%;
    transform: translateX(-50%);
    content: "＼教育業界の転職ノウハウ満載！／";
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
  }

  a {
    position: relative;
    display: inline-block;
    width: min(100% - 40px, 800px);
    background: url(../img/media_btn_back.png) center/cover no-repeat;
    color: #ffffff;
    font-size: clamp(1.7rem, 4.722vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.05em;
    word-break: keep-all;
    border-radius: 1rem;
    overflow: clip;
    transition: all 0.3s ease;
    padding: 2em;

    span {
      position: relative;
      z-index: 1;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    &::before {
      content: "";
      position: absolute;
      z-index: 1;
      right: 1em;
      top: 50%;
      transform: translateY(-50%);
      width: clamp(1.5rem, 4.1667vw, 2rem);
      aspect-ratio: 1;
      background: no-repeat url(../img/icon_link_wt.svg) center / cover;
    }

    &::after {
      content: "";
      position: absolute;
      z-index: 0;
      inset: 0;
      background-color: var(--mainC);
      transition: all 0.3s ease;
      transform: translateX(-100%);
    }

    &:hover {
      &::after {
        transform: translateX(0);
      }
    }
  }

  .mediaLink_btn__icon {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(1.5rem, 4.1667vw, 2rem);
  }
}

/**********************************************************
* ファーストビュー
**********************************************************/
.fv {
  position: relative;
  margin-top: calc(var(--header-height) * -1);
}

.fv_regBtn {
  position: absolute;
  z-index: 6;
  inset: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 2rem 2rem 0;
}

.fv_regBtn a {
  display: block;
  width: clamp(36rem, 36vw, 50rem);
}

.fv_regBtn img {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.1));
}

@media (width < 681px) {
  .fv {
    margin-top: 0;
		padding-top: 60px;
  }
}

/******　スライド・ロゴ　******/
.logoSlide {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}

.logoSlide .swiper-wrapper {
  transition-timing-function: linear;
}

.logoSlide .swiper-slide {
  width: auto;
}

.logoSlide img {
  object-fit: cover;
  width: auto;
  height: 15rem;
}

.logoSlide_pc {
  display: block;
}

.logoSlide_sp {
  display: none;
}

@media (width < 681px) {
  .logoSlide img {
    height: 10rem;
  }
}

@media (width < 580px) {
  .logoSlide_pc {
    display: none;
  }

  .logoSlide_sp {
    display: block;
  }

  .minusMargin {
    margin-top: -2rem;
  }
}

/**********************************************************
* 新着求人セクション
**********************************************************/
.newArrivals__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
}

.newArrivals__header_sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mainC);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.newArrivals__header_main {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
}

/******　スライド・新着求人（introSlideと同じデザイン）　******/
.newArrivalsSlide {
  margin-top: 0;
  overflow: visible;
}

@media not all and (width < 681px) {
  .newArrivalsSlide {
    min-width: 1200px;
  }
}

.newArrivalsSlide__data {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0;
  padding: 3rem 3rem 3rem;
}

.newArrivalsSlide__data .co {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.newArrivalsSlide__data .job {
  min-height: calc(1.45em * 2);
  color: var(--mainC);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newArrivalsSlide__data .detail {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  padding-top: 2rem;
  border-top: dotted 2px black;
}

.newArrivalsSlide__fee {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.2rem;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--mainC);
}

.newArrivalsSlide__fee span {
  font-size: 1.8rem;
}

.newArrivalsSlide__fee::before {
  content: url(../img/icon_yen.svg);
  display: inline-block;
  width: 3rem;
  aspect-ratio: 1;
  margin-right: 8px;
}

.newArrivalsPagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  inset: auto;
  width: 100%;
  margin-top: 4rem;
}

.newArrivalsPagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 6px;
}

.newArrivalsPagination .swiper-pagination-bullet-active {
  background-color: black;
}

.newArrivals__more {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 4rem;
}

.newArrivals__more_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 56px;
  background-color: var(--mainC);
  color: #ffffff !important;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  padding-right: 24px;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s, opacity 0.2s;
}

.newArrivals__more_btn:hover {
  background-color: #e55320;
  box-shadow: 0 6px 20px rgba(255, 102, 46, 0.4);
}

.newArrivals__more_btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 102, 46, 0.2);
}

.newArrivals__more_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  height: 14px;
  aspect-ratio: 1/2;
  background: no-repeat url(../img/arrow_next.svg) center/contain;
  transform: translateY(-50%);
}

/* 新着求人：データ未取得時のローディング */
.newArrivals__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  font-size: 1.6rem;
  color: #999999;
}

@media (width < 681px) {
  .newArrivals__header {
    margin-bottom: 3rem;
  }

  .newArrivals__header_sub {
    font-size: 1.3rem;
  }

  .newArrivals__header_main {
    font-size: 2.3rem;
  }

  .newArrivalsSlide {
    margin-top: 0;
    padding-left: 2rem;
  }

  .newArrivalsSlide__data {
    padding: 2.5rem 2.5rem 2.5rem;
  }

  .newArrivalsSlide__data .co {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .newArrivalsSlide__data .job {
    font-size: 1.8rem;
  }

  .newArrivalsSlide__data .detail {
    font-size: 1.6rem;
  }

  .newArrivalsSlide__fee {
    height: 5.1rem;
    font-size: 1.8rem;
  }

  .newArrivalsSlide__fee span {
    font-size: 1.5rem;
  }

  .newArrivalsSlide__fee::before {
    width: 2.4rem;
  }

  .newArrivalsPagination {
    display: none;
  }

  .newArrivals__more {
    margin-top: 3rem;
  }

  .newArrivals__more_btn {
    width: min(100% - 4rem, 260px);
  }
}

/**********************************************************
* イントロ
**********************************************************/
.intro {
  width: 100%;
  padding: 8rem 0 13rem;
}

.intro__txt {
  width: 100%;
  text-align: center;
  padding: 0 2rem;
  margin-top: 8rem;
}

.intro__txt h3 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.2em;
  word-break: keep-all;
  margin-bottom: 8rem;
}

.intro__txt p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.1em;

  span {
    font-weight: 900;
    color: var(--mainC);
  }
}

@media (width < 681px) {
  .intro {
    padding: 5rem 0 10rem;
  }

  .intro__txt {
    margin-top: 5rem;
  }

  .intro h3 {
    font-size: 2.3rem;
  }

  .intro p {
    font-size: 1.7rem;
    line-height: 2;
    text-align: justify;
  }
}

/******　スライド・イントロ　******/
.introSlide {
  margin-top: 0;
  overflow: visible;
}

@media not all and (width < 681px) {
  .introSlide {
    min-width: 1200px;
  }
}

.intro .swiper-wrapper {
  display: flex;
}

.intro .swiper-slide {
  display: flex;
  flex-direction: column;
  width: clamp(28rem, 44.5vw, 34rem);
  height: auto;
  border-radius: 1rem;
  background-color: #fff5f0;
  overflow: clip;
  text-decoration: none;
  color: inherit;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
  translate: 0 0;
}

.intro .swiper-slide:hover {
  translate: 0 -3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.newIcon {
  position: relative;
}

.newIcon::before {
  content: url(../img/icon_new.svg);
  position: absolute;
  inset: 0 auto auto 0;
  width: 7rem;
  aspect-ratio: 1;
}

.introSlide__img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.619;
}

.introSlide__data {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0;
  padding: 2rem 3rem 3rem 3rem;
}

.introSlide__data .date {
  font-size: 1.4rem;
  color: #F00069;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.introSlide__data .area {
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #666666;
  padding: 0.8rem;
  border-radius: 0.4rem;
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
}

.introSlide__data .co {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.introSlide__data .job {
  min-height: calc(1.45em * 2);
  color: var(--mainC);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.introSlide__data .detail {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 1rem 0;
  border-top: dotted 2px black;
}

.introSlide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 3rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.introSlide__tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border: 1px solid #e0dbd0;
  border-radius: 3px;
  color: #6b6b6b;
  background-color: #f7f5f0;
}

.introSlide__fee {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.2rem;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--mainC);
}

.introSlide__fee span {
  font-size: 1.8rem;
}

.introSlide__fee::before {
  content: url(../img/icon_yen.svg);
  display: inline-block;
  width: 3rem;
  aspect-ratio: 1;
  margin-right: 8px;
}

.introPagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  inset: auto;
  width: 100%;
  margin-top: 5rem;
}

.introPagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 6px;
}

.introPagination .swiper-pagination-bullet-active {
  background-color: black;
}

@media (width < 681px) {
  .introSlide {
    margin-top: 0;
    padding-left: 2rem;
  }

  .newIcon::before {
    width: 6.6rem;
  }

  .introSlide__data {
    padding: 2rem;
  }

  .introSlide__data .date {
    font-size: 1.2rem;
  }

  .introSlide__data .area {
    font-size: 1.1rem;
  }

  .introSlide__data .co {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .introSlide__data .job {
    font-size: 1.6rem;
  }

  .introSlide__data .detail {
    font-size: 1.4rem;
  }

  .introSlide__tags {
    padding: 0 2.5rem;
  }

  .introSlide__fee {
    height: 5.1rem;
    font-size: 1.8rem;
  }

  .introSlide__fee span {
    font-size: 1.5rem;
  }

  .introSlide__fee::before {
    width: 2.4rem;
  }

  .introPagination {
    display: none;
  }
}

/**********************************************************
* 転職支援者の声
**********************************************************/
.voice {
  background-color: #f7f7f7;
  padding: 12rem 0 10rem;
}

.voice__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.voice__title img {
  width: clamp(6.6rem, 13vw, 10rem);
  margin-bottom: 30%;
}

.voice__title h3 {
  font-size: clamp(2.3rem, 4.56vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 7rem;
}

.voice__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
}

.voice__items {
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: clip;
}

.voiceItems_img {
  position: relative;
}

.voiceItems_img img {
  width: 100%;
  aspect-ratio: 1.48148;
  object-fit: cover;
}

.voiceItems_img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 120px;
  background-color: var(--mainC);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  padding: 0.9rem 0;
}

.voiceItems_data {
  padding: 2rem;
  background-color: #e1f0f0;
}

.voiceItems_data__inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.voiceItems_data__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 11rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.025em;
  text-align: center;
}

.voiceItems_data__item p {
  position: relative;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.voiceItems_data__item p::after {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 25%;
  height: 1px;
}

.voiceItems_data__item.before p::after {
  background-color: #646464;
}

.voiceItems_data__item.after p::after {
  background-color: #ffffff;
}

.voiceItems_data__item.before {
  position: relative;
  width: 45.6%;
  background-color: #ffffff;
  color: #646464;
}

.voiceItems_data__item.before::before {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  z-index: 5;
  width: 16px;
  height: 100%;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
}

.voiceItems_data__item.after {
  width: 54.4%;
  background-color: #dc0069;
  color: #ffffff;
  padding-left: 1.6rem;
}

.voiceItems_data__interview {
  width: 100%;
  padding-top: 2rem;
}

.voiceItems_data__interview_item {
  position: relative;
  padding: 4rem 2rem 3rem;
}

.voiceItems_data__interview_item .title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--mainC);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  text-align: center;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0 9999px 9999px 0;
}

.voiceItems_data__interview_item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.025em;
  color: var(--mainC);
  margin-bottom: 1rem;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.voiceItems_data__interview_item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: justify;
  min-height: calc(1em * 1.6 * 4);
}

/*転職者の声スライド*/
.voiceSlide {
  padding: 0 1rem;
}

.swiperBtn_wrapper {
  display: none;
}

@media (width < 681px) {
  .voice {
    padding: 7.5rem 0 5rem;
  }

  .voice__title h3 {
    margin-bottom: 4rem;
  }

  .voice__list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }

  .voice__items {
    width: 100%;
  }

  .voice__items__data {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
  }

  .voiceData_line {
    margin: 1.4rem 0;
  }

  .voiceData_txt {
    word-break: break-all;
  }

  .swiperBtn_wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
    padding: 2rem 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: relative;
    inset: 0;
    margin: 0;
    width: auto;
    height: auto;

    &::after {
      content: "";
      display: inline-block;
      width: 2.4rem;
      aspect-ratio: 0.6;
      background-repeat: no-repeat;
      background-position: center;
    }
  }

  .swiper-button-next::after {
    background-image: url(../img/nextArrow.svg);
  }

  .swiper-button-prev::after {
    background-image: url(../img/prevArrow.svg);
  }

  .voicePagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    position: relative;
    /*打ち消し*/
    inset: auto;
    /*打ち消し*/
    width: auto;
    /*打ち消し*/
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 10rem;
    font-size: 1.6rem;
    font-weight: 400;
  }

  .swiper-pagination-current {
    font-weight: 700;
  }
}

/**********************************************************
* ３つの理由
**********************************************************/
.reasons {
  position: relative;
  width: 100%;
  padding: 14rem 0 24rem;
  clip-path: inset(0 0 0 0);
}

.reasons__bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: no-repeat url(../img/bg_earth.svg) center / min(70%, 70rem);
}

.reasons__title {
  --reasons-fontSize: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: var(--reasons-fontSize);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 12rem;
}

.reasons__title::before,
.reasons__title::after {
  content: url(../img/reasons_title_ornament.svg);
  position: absolute;
  display: block;
  width: 6rem;
}

.reasons__title::before {
  left: 40rem;
  top: -3rem;
}

.reasons__title::after {
  right: 40rem;
  bottom: -4rem;
}

.reasons__title strong {
  display: flex;
  align-items: center;
}

.reasons__title span {
  color: var(--mainC);
  font-size: calc(var(--reasons-fontSize) * 3);
  transform: translateY(-6%);
}

.reasons__contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: solid 1px #dddddd;
  padding-bottom: 14rem;
  margin-bottom: 14rem;
}

.reasons__contents:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.reasons__txt__title {
  position: relative;
  padding-left: 17rem;
}

.reasons__txt {
  flex: 1;
}

.reasons__txt__detail {
  font-size: 1.7rem;
  line-height: 2;
  margin-top: 5rem;
}

.reasons__txt__detail.addMargin {
  margin-top: 7rem;
}

.reasons__txt .reasons__number {
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.reasons__txt .reasons__number img {
  width: auto;
  height: 16rem;
}

.reasons__img {
  position: relative;
  width: 40rem;
  margin-left: 40px;
}

.reasons__img img {
  width: 100%;
}

.reasons__img .reasons__number {
  display: none;
}

@media (width < 681px) {
  .reasons {
    position: relative;
    width: 100%;
    padding: 12rem 0 10rem;
    clip-path: inset(0 0 0 0);
  }

  .reasons__title {
    --reasons-fontSize: 2.3rem;
    width: 27rem;
    flex-direction: column;
    gap: 1.2rem;
    margin: 0 auto 11rem;
  }

  .reasons__title::before {
    left: 4rem;
    top: -5.8rem;
  }

  .reasons__title::after {
    right: 4rem;
    bottom: -5rem;
  }

  .reasons__title span {
    color: var(--mainC);
    font-size: calc(var(--reasons-fontSize) * 2);
    transform: translateY(-6%);
  }

  .reasons__contents {
    flex-direction: column;
    padding-bottom: 4.5rem;
    margin-bottom: 7.5rem;
  }

  .reasons__txt__title {
    padding-left: 0;
  }

  .reasons__txt {
    margin-top: -1.5rem;
  }

  .reasons__txt__detail {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 2rem;
  }

  .reasons__txt__detail.addMargin {
    margin-top: 2rem;
  }

  .reasons__txt .reasons__number {
    display: none;
  }

  .reasons__img {
    width: 100%;
    margin-left: 0;
  }

  .reasons__img .reasons__number {
    position: absolute;
    left: 0;
    top: -3rem;
    display: block;
  }

  .reasons__img .reasons__number img {
    width: auto;
    height: 9rem;
  }
}

/******　タイトル・アニメーション　******/
.anittl {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.anittl::before {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  content: "";
  transition: 0.4s;
  z-index: 0;
}

.anittl--common {
  display: inline-flex;
  align-items: center;
  height: 3.8rem;
  padding: 0 8px;
}

.anittl--common:not(:last-of-type) {
  margin-bottom: 10px;
}

.anittl--common::before {
  background: linear-gradient(to right, rgba(255, 191, 124, 1) 3%, rgba(255, 102, 46, 1) 100%);
}

.anittl__txt {
  position: relative;
  display: inline-block;
  margin-left: -110%;
  z-index: 5;
}

.anittl__txt--common {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

/*	AOSのフェイドアップをトリガーにしてアニメーション起動	*/
.aos-animate .anittl:before {
  animation: anittlbg .5s 1 0.5s ease-out forwards;
}

.aos-animate .anittl__txt {
  animation: anittltxt .5s 1 1.0s ease-out forwards;
}

@keyframes anittlbg {
  0% {
    left: -100%;
  }

  50% {}

  100% {
    left: 0;
    width: 100%;
  }
}

@keyframes anittltxt {
  0% {}

  50% {}

  100% {
    margin-left: 0;
  }
}

@media (width < 681px) {
  .anittl--common {
    height: 3rem;
    padding-bottom: 2px;
  }

  .anittl--common:not(:last-of-type) {
    margin-bottom: 8px;
  }

  .anittl__txt--common {
    font-size: 2rem;
  }
}

/**********************************************************
* よくある質問
**********************************************************/
.faq {
  background-color: #f7f7f7;
  padding: 20rem 0 15rem;
}

.faq__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__contents h3 {
  font-size: clamp(2.3rem, 4.56vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 8rem;
}

.faq__cont__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.faq__cont__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq__fukidashi {
  position: relative;
  width: 69rem;
  padding: 2.7rem;
  border-radius: 1rem;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
}

.faq__fukidashi.question {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.74;
  letter-spacing: 0.08em;
  background: linear-gradient(to right, rgba(255, 102, 46, 1) 3%, rgba(255, 191, 124, 1) 97%);
}

.faq__fukidashi.answer {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  background-color: #ffffff;
}

.faq__fukidashi.question::before,
.faq__fukidashi.answer::before {
  content: "";
  position: absolute;
  top: 3.5rem;
  display: block;
  width: 2rem;
  height: 2.5rem;
}

.faq__fukidashi.question::before {
  background-color: rgba(255, 191, 124, 1);
  right: -2rem;
  clip-path: polygon(0 0,
      100% 50%,
      100% 50%,
      0 100%);
}

.faq__fukidashi.answer::before {
  background-color: #ffffff;
  left: -2rem;
  clip-path: polygon(0 50%,
      100% 0,
      100% 100%,
      0 50%);
}

.faq__fukidashi.question::after,
.faq__fukidashi.answer::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 12rem;
  height: 12rem;
}

.faq__fukidashi.question.fst::after {
  right: -15rem;
  background: no-repeat center/cover url(../img/faq_Q1.png);
}

.faq__fukidashi.question.snd::after {
  right: -15rem;
  background: no-repeat center/cover url(../img/faq_Q2.png);
}

.faq__fukidashi.question.thd::after {
  right: -15rem;
  background: no-repeat center/cover url(../img/faq_Q3.png);
}

.faq__fukidashi.answer::after {
  left: -15rem;
  background: no-repeat center/cover url(../img/faq_A.png);
}

@media (width < 681px) {
  :root {
    --photoSpace: 10rem;
  }

  .faq {
    padding: 12.5rem 0 var(--photoSpace);
  }

  .faq__contents h3 {
    margin-bottom: 4.5rem;
  }

  .faq__cont__list {
    gap: 4rem;
  }

  .faq__fukidashi {
    position: relative;
    width: calc(100% - var(--photoSpace));
    padding: 0;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
  }

  .faq__fukidashi.question {
    font-size: 1.5rem;
    padding: 1.8rem;
  }

  .faq__fukidashi.answer {
    font-size: 1.4rem;
    padding: 2rem;
    margin-left: var(--photoSpace);
  }

  .faq__fukidashi.question::before,
  .faq__fukidashi.answer::before {
    top: 3rem;
    width: 1.2rem;
    height: 1.5rem;
  }

  .faq__fukidashi.question::before {
    right: -1.2rem;
  }

  .faq__fukidashi.answer::before {
    left: -1.2rem;
  }

  .faq__fukidashi.question::after,
  .faq__fukidashi.answer::after {
    width: 8rem;
    height: 8rem;
  }

  .faq__fukidashi.question.fst::after,
  .faq__fukidashi.question.snd::after,
  .faq__fukidashi.question.thd::after {
    right: calc(var(--photoSpace) * -1);
  }

  .faq__fukidashi.answer::after {
    left: calc(var(--photoSpace) * -1);
  }
}

/**********************************************************
* ご利用の流れ
**********************************************************/
.flow {
  background-color: #f7f7f7;
  padding: 15rem 0 20rem;
}

.flow__title {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.flow__title h3 {
  font-size: clamp(2.3rem, 4.56vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8rem;
}

.flow__title__circle {
  position: absolute;
  top: -14rem;
  right: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21rem;
  height: 21rem;
  background-color: #000000;
  border-radius: 50%;
}

.flow__title__circle::before {
  content: "すべて無料";
  z-index: 5;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
}

.flow__title__circle::after {
  content: "";
  position: absolute;
  z-index: 4;
  bottom: 1rem;
  left: 1rem;
  width: 4.5rem;
  height: 3.5rem;
  background: no-repeat center/cover url(../img/fukidashi_tail.svg);
}

.flow__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7rem;
}

.flowItems {
  width: 45rem;
  background-color: #ffffff;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.flowItems__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.flowItems__title::before {
  order: 2;
  content: "";
  width: 1px;
  height: 2.6rem;
  background-color: #dddddd;
}

.flowItems__title__num {
  order: 1;
  width: 8.3rem;
}

.flowItems__title__jp {
  order: 3;
  color: var(--mainC);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.flowItems__txt {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  border-top: solid 1px #dddddd;
  padding-top: 1.2rem;
  margin-top: 2rem;
}

.flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 8rem 0 3rem;
}

.flow__arrow::before {
  content: "";
  display: block;
  width: 12rem;
  height: 6rem;
  background-color: var(--mainC);
  clip-path: polygon(0 0,
      100% 0,
      50% 100%);
}

.flow__result {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  border-radius: calc(infinity * 1px);
  background: linear-gradient(to right, rgba(255, 102, 46, 1) 3%, rgba(255, 191, 124, 1) 97%);
  padding: 2rem;
}

@media (width < 681px) {
  .flow {
    padding: 10rem 0;
  }

  .flow__title h3 {
    margin-bottom: 3.5rem;
  }

  .flow__title__circle {
    top: -10.5rem;
    right: -1rem;
    width: 9.6rem;
    height: 9.6rem;
  }

  .flow__title__circle::before {
    font-size: 1.4rem;
  }

  .flow__title__circle::after {
    bottom: 0.5rem;
    left: 0.5rem;
    width: 2.1rem;
    height: 1.6rem;
  }

  .flow__contents {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3.6rem;
  }

  .flowItems {
    width: 100%;
    box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.1);
  }

  .flowItems__title {
    gap: 1rem;
  }

  .flowItems__title::before {
    height: 2rem;
  }

  .flowItems__title__num {
    width: 6rem;
  }

  .flowItems__title__jp {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .flowItems__txt {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .flow__arrow {
    margin: 4.5rem 0 2.5rem;
  }

  .flow__arrow::before {
    width: 7rem;
    height: 3.5rem;
  }

  .flow__result {
    font-size: 1.8rem;
  }
}

/**********************************************************
* LEAD SEO追加要素
**********************************************************/
span.en {
  font-size: 1.8rem;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 1.5rem;
  line-height: normal;
}

@media (width < 681px) {
  span.en {
    font-size: 1.6rem;
  }

  img.en_img {
    padding: 20px 0 10px !important;
    max-width: 85% !important;
    margin: auto;
  }
}

.voice__title h3 {
  text-align: center;
}

.faq__contents h3 {
  text-align: center;
}

.flow__title h3 {
  text-align: center;
}

img.en_img {
  padding: 20px 0 30px;
  max-width: 70%;
  margin: auto;
}