@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #333;
  scroll-behavior: smooth;
  background-color: #fff;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .header__container {
    padding: 18px 2.67% 0;
  }
}
.header__logo {
  width: 122px;
  height: 75px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 72px;
    height: 42px;
  }
}
.header__logo:hover {
  opacity: 0.5;
}
.header__button {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__button {
    width: 60px;
    font-size: 12px;
  }
}
.header__button:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.footer__back-to-top {
  height: 60px;
  background: #333;
  color: #fff;
  font: 700 1.6rem "Oswald", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer__back-to-top {
    height: 40px;
  }
}
.footer__back-to-top::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  height: 12px;
  -webkit-mask: url("/public/img/icons/arrow-icon-up.svg") no-repeat center/100% 100%;
          mask: url("/public/img/icons/arrow-icon-up.svg") no-repeat center/100% 100%;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__back-to-top:hover::before {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.footer__info {
  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;
  padding: 50px 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 28px;
    padding: 0 5.34% 50px;
  }
}
.footer__col {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
}
.footer__col:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  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: 41px;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .footer__col:first-child {
    gap: 21px;
    margin: 0;
    padding-left: 0;
  }
}
.footer__logo {
  width: 345px;
  aspect-ratio: 345/50;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 210px;
  }
}
.footer__logo:hover {
  opacity: 0.5;
}
.footer__copyright {
  font-size: 1.4rem;
  color: #4c4948;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
  }
}
.footer__pageup-wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__pageup-wrap {
    text-align: center;
  }
}
.footer__pageup {
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__pageup:hover {
  opacity: 0.7;
}
.footer__pageup-link {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 700;
}
.title {
  font-size: 4.8rem;
  line-height: 1em;
  color: #3163c5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 24px;
  }
}
.title--white {
  color: #fff;
}
.title--above {
  position: relative;
  z-index: 2;
}

.banner {
  position: relative;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  background: url("./img/common/contact-bg.png") no-repeat center/100% 100%;
  border-radius: 40px;
  min-height: 385px;
  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: 93px;
  padding: 76px 20px 64px;
}
@media screen and (max-width: 767px) {
  .banner {
    min-height: unset;
    border-radius: 20px;
    gap: 65px;
    padding: 110px 17.5px 40px;
    background-image: url("./img/common/contact-bg-sp.jpg");
  }
}
.banner::before {
  content: "";
  position: absolute;
  right: 5.97%;
  top: 12px;
  width: 17.05%;
  min-width: 200px;
  aspect-ratio: 300/200;
  background: url("./img/illustration/time.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 1340px) {
  .banner::before {
    top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .banner::before {
    right: unset;
    left: 50%;
    top: -10px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 44.78%;
    min-width: unset;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .banner--work {
    padding-top: 57px;
  }
}
.banner--work::before {
  top: -20px;
  right: unset;
  left: 12%;
  width: 193px;
  height: 250px;
  background: url("./img/illustration/work.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 1495px) {
  .banner--work::before {
    left: 1%;
  }
}
@media screen and (max-width: 1153px) {
  .banner--work::before {
    width: 27.75%;
    height: initial;
    max-width: initial;
    left: -5%;
  }
}
@media screen and (max-width: 767px) {
  .banner--work::before {
    left: calc(14% + 10px);
    top: -30px;
    width: 27.75%;
    max-width: 200px;
    aspect-ratio: 93/110;
  }
}
.banner__title {
  position: relative;
  z-index: 2;
  font-size: clamp(38px, 2.5vw, 4.4rem);
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 23px;
    line-height: normal;
    text-align: center;
  }
}
.banner__title .highlight {
  background-color: #fff;
  color: #00cac0;
}
.banner__button-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .banner__button-container {
    -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: 55px;
  }
}
.banner__button {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  height: 100px;
  border-radius: 50px;
  border: 4px solid #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff588f), to(#ffb770));
  background-image: linear-gradient(to right, #ff588f, #ffb770);
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .banner__button {
    height: 70px;
    border-width: 2px;
  }
}
.banner__button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -49px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  aspect-ratio: 50/75;
  background: url("./img/icons/phone.svg") no-repeat center/100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .banner__button::before {
    width: 40px;
    top: unset;
    bottom: calc(100% - 15px);
  }
}
.banner__button:hover {
  background-image: unset;
  background-color: #fff;
  border-color: #ff588f;
  color: #ff588f;
}
.banner__button:hover::before {
  -webkit-transform: translate(-50%, -5px);
          transform: translate(-50%, -5px);
}
.banner__button--email::before {
  background: url("./img/icons/email.svg") no-repeat center/100% 100%;
}
.banner__button-text {
  font-size: 2.4rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .banner__button-text {
    font-size: 17px;
    line-height: 1.2941176471em;
  }
}

.mv {
  position: relative;
  padding: 55px 0 175px;
  background-color: #dcf4f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 118px 0 157px;
    overflow-x: hidden;
  }
}
.mv::before, .mv::after {
  content: "";
  position: absolute;
  width: 36.56%;
  max-width: 700px;
  aspect-ratio: 700/300;
  background: url("./img/icons/cloud-bg.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .mv::before, .mv::after {
    width: 93.34%;
  }
}
.mv::before {
  top: 0;
  left: 0;
}
.mv::after {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .mv::after {
    width: 97.34%;
    aspect-ratio: 365/166;
    background: url("./img/icons/mv-cloud-sp.svg") no-repeat center/100% 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.mv__info {
  position: relative;
  z-index: 2;
  width: 44.28%;
  max-width: 850px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.9%;
}
@media screen and (max-width: 767px) {
  .mv__info {
    width: 425px;
    min-width: 425px;
  }
}
.mv__info::before {
  content: "";
  position: absolute;
  right: 106.9%;
  top: 40px;
  width: 45.42%;
  aspect-ratio: 386/500;
  background: url("./img/illustration/work.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .mv__info::before {
    top: calc(100% - 49px);
    right: 47px;
    width: 30%;
    aspect-ratio: 115/150;
  }
}
.mv__info::after {
  content: "";
  position: absolute;
  left: 107.65%;
  top: 65px;
  width: 48.24%;
  aspect-ratio: 410/450;
  background: url("./img/illustration/puzzle.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .mv__info::after {
    left: unset;
    right: 35px;
    top: -33px;
    width: 21.41%;
    aspect-ratio: 91/100;
  }
}
.mv__info-bg-lower::before {
  content: "";
  position: absolute;
  right: 102.71%;
  bottom: -115px;
  width: 55.53%;
  aspect-ratio: 472/350;
  background: url("./img/illustration/career.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .mv__info-bg-lower::before {
    right: unset;
    left: 50px;
    bottom: unset;
    top: calc(100% + 14px);
    width: 33.59%;
    aspect-ratio: 130/96;
  }
}
.mv__info-bg-lower::after {
  content: "";
  position: absolute;
  left: 99.41%;
  bottom: -75px;
  width: 58.82%;
  aspect-ratio: 500/334;
  background: url("./img/illustration/time.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .mv__info-bg-lower::after {
    left: 50%;
    bottom: calc(100% - 43px);
    width: 23.53%;
    aspect-ratio: 100/68;
    -webkit-transform: translateX(-35%);
            transform: translateX(-35%);
  }
}
.mv__info-bubble {
  position: absolute;
  top: 2.82%;
  left: 8.82%;
  width: 23.53%;
}
@media screen and (max-width: 767px) {
  .mv__info-bubble {
    left: 57px;
    top: 0;
  }
}
.mv__title {
  width: 58.83%;
  aspect-ratio: 500/276;
}
.mv__subtitle {
  font-size: clamp(12px, 1.25vw, 2.4rem);
  font-weight: 700;
  line-height: 2em;
}
.mv__stats {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .mv__stats {
    gap: 12px;
  }
}
.mv__stats-item {
  width: 28.4%;
  aspect-ratio: 240/178;
}

.steps {
  background-color: #3163c5;
  padding: 101px 3% 100px;
}
@media screen and (max-width: 767px) {
  .steps {
    padding: 40px 5.34% 50px;
  }
}
.steps__container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  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;
}

.steps__banner-wrap {
  padding-bottom: 100px;
}
.steps__banner-img {
  max-width: 800px;
  width: 100%;
  max-height: 300px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .steps__banner-img {
    width: 100%;
    height: auto;
  }
}
.steps__title {
  margin-top: 109px;
  position: relative;
  width: 75.47%;
  aspect-ratio: 800/160;
}
@media screen and (max-width: 767px) {
  .steps__title {
    width: 85.34%;
    max-width: 500px;
    aspect-ratio: 320/64;
    margin: 0 auto;
  }
}
.steps__title-bubble {
  position: absolute;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 22px 28px 44px;
  color: #3163c5;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2em;
  background: url("./img/steps/bubble.svg") no-repeat center/100% 100%;
  display: inline;
  vertical-align: middle;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .steps__title-bubble {
    font-size: 20px;
    padding: 10px 14px 20px;
  }
}
.steps__list {
  position: relative;
  width: 100%;
  margin: 80px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: step;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .steps__list {
    margin: 30px 0 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    width: 67.2%;
    max-width: 225px;
  }
}
.steps__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 80/76;
  background: url("./img/steps/arrow-right.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .steps__list::before {
    width: 40px;
    aspect-ratio: 40/38;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}
.steps__list-item {
  position: relative;
  width: 42.46%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  counter-increment: step;
  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;
  padding-top: 9.5%;
}
@media screen and (max-width: 767px) {
  .steps__list-item {
    width: 100%;
    padding-top: 11%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 11px;
  }
}
.steps__list-item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26.67%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid #fff;
  background-color: #00cac0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 700 clamp(48px, 3.3333333333vw, 6.4rem) "Oswald", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .steps__list-item::before {
    font-size: 32px;
    width: 26.67%;
    border-width: 2.5px;
  }
}
.steps__list-item-icon {
  width: 53.34%;
  aspect-ratio: 240/168;
}
@media screen and (max-width: 767px) {
  .steps__list-item-icon {
    width: 60%;
    aspect-ratio: 120/64;
  }
}
.steps__list-item-title {
  font-size: 3.2rem;
  line-height: 1.5em;
  color: #3163c5;
  text-align: center;
  margin-top: 23px;
}
@media screen and (max-width: 920px) {
  .steps__list-item-title {
    margin-top: 0;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .steps__list-item-title {
    font-size: 15px;
  }
}

.reasons {
  padding: 100px 3%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reasons {
    padding: 150px 5.34% 50px;
  }
}
.reasons__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.reasons__title {
  position: relative;
  width: 41.67%;
  aspect-ratio: 500/194;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .reasons__title {
    width: 92.54%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.reasons__title::before {
  content: "";
  position: absolute;
  right: calc(100% + 40px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 29.2%;
  aspect-ratio: 146/200;
  background: url("./img/icons/person-csr.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .reasons__title::before {
    right: unset;
    left: 50%;
    top: unset;
    bottom: calc(100% + 10px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 23.55%;
  }
}
.reasons__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 150px;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1024px) {
  .reasons__list {
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .reasons__list {
    margin-top: 50px;
    gap: 50px;
  }
}
.reasons__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .reasons__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .reasons__list-item {
    gap: 30px;
  }
}
.reasons__list-item::before {
  content: "";
  position: absolute;
  right: calc(100% - 120px);
  top: -29px;
  width: 33.34%;
  aspect-ratio: 1/1;
  background: url("./img/reasons/item-bg.svg") no-repeat center/100% 100%;
  z-index: -1;
}
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  .reasons__list-item::before {
    right: calc(100% - 301px);
  }
}
@media screen and (max-width: 1024px) {
  .reasons__list-item::before {
    right: unset;
    left: -5%;
    top: 50%;
    -webkit-transform: translateY(-6%);
            transform: translateY(-6%);
    width: 59.7%;
  }
}
.reasons__list-item--bg-right::before {
  right: unset;
  left: calc(100% - 114px);
  top: 30px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  .reasons__list-item--bg-right::before {
    left: calc(100% - 301px);
  }
}
@media screen and (max-width: 1024px) {
  .reasons__list-item--bg-right::before {
    left: unset;
    right: -5%;
    top: 50%;
    -webkit-transform: translateY(5%) rotate(90deg);
            transform: translateY(5%) rotate(90deg);
  }
}
.reasons__list-item--left-180::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 45px;
}
@media screen and (max-width: 1024px) {
  .reasons__list-item--left-180::before {
    top: 50%;
    -webkit-transform: translateY(13%) rotate(180deg);
            transform: translateY(13%) rotate(180deg);
  }
}
.reasons__list-item-info {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .reasons__list-item-info {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .reasons__list-item-illustration {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .reasons__list-item-illustration {
    width: 89.55%;
  }
}
.reasons__list-item-title {
  font-size: 6.4rem;
  line-height: 1.125em;
  color: #3163c5;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-title {
    font-size: 32px;
  }
}
.reasons__list-item-title .small {
  display: block;
  font-size: 3.2rem;
  line-height: 2.25em;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-title .small {
    font-size: 16px;
    margin-top: 5px;
  }
}
.reasons__list-item-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  margin: 22px 0 42px;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-text {
    font-size: 14px;
    margin: 20px 0 30px;
  }
}
.reasons__list-item-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 32px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-points {
    gap: 14px;
    padding-left: 13px;
  }
}
.reasons__list-item-point {
  position: relative;
  font-size: 2rem;
  line-height: 1.8em;
  color: #fff;
  background-color: #3163c5;
  padding: 2px 17px 2px 29.2px;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-point {
    font-size: 16px;
    line-height: 1;
    padding: 5px 10px 5px 24.2px;
  }
}
.reasons__list-item-point::before {
  content: "";
  position: absolute;
  right: calc(100% - 20px);
  top: 50%;
  -webkit-transform: translateY(-56%);
          transform: translateY(-56%);
  width: 40px;
  aspect-ratio: 40/46;
  background: url("./img/icons/point-icon.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .reasons__list-item-point::before {
    width: 26px;
    aspect-ratio: 26/30;
    right: calc(100% - 13px);
  }
}
@media screen and (max-width: 767px) {
  .reasons__list-item-point--fs-small {
    font-size: 14px;
  }
}

.record {
  background-color: #e8f5fc;
  padding: 100px 3%;
}
@media screen and (max-width: 767px) {
  .record {
    padding: 40px 5.34% 50px;
  }
}
.record__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.record__title {
  position: relative;
  width: 37.5%;
  aspect-ratio: 450/192;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .record__title {
    width: 67.16%;
  }
}
.record__title::before, .record__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 104.17%;
}
.record__title::before {
  right: calc(100% + 50px);
  background: url("./img/record/woman-csr.svg") no-repeat center/100% 100%;
  aspect-ratio: 70/200;
}
@media screen and (max-width: 767px) {
  .record__title::before {
    right: calc(100% + 20px);
  }
}
.record__title::after {
  left: calc(100% + 50px);
  background: url("./img/record/man-serving.svg") no-repeat center/100% 100%;
  aspect-ratio: 50/200;
}
@media screen and (max-width: 767px) {
  .record__title::after {
    left: calc(100% + 20px);
  }
}
.record__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px 0;
  margin: 91px 0 100px;
}
@media screen and (max-width: 1024px) {
  .record__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    margin: 60px auto 80px;
  }
}
@media screen and (max-width: 767px) {
  .record__list {
    gap: 20px;
    margin: 44px 0 50px;
  }
}
.record__list-item {
  width: 46.67%;
  background-color: #fff;
  border-radius: 6px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .record__list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .record__list-item {
    padding: 20px;
  }
}
.record__list-item-img {
  width: 100%;
  aspect-ratio: 480/240;
  overflow: hidden;
}
.record__list-item-title {
  font-size: 3rem;
  line-height: 1.5em;
  color: #3163c5;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .record__list-item-title {
    font-size: 20px;
    margin: 10px 0;
  }
}
.record__list-item-occupations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .record__list-item-occupations {
    gap: 5px;
  }
}
.record__list-item-occupation {
  border-radius: 24px;
  border: 1px solid #3163c5;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.25em;
  color: #3163c5;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .record__list-item-occupation {
    font-size: 14px;
    padding: 5.25px 10px;
  }
}
.record__list-item-note {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 1.6rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .record__list-item-note {
    font-size: 14px;
  }
}

.adjustment {
  padding: 100px 3%;
}
@media screen and (max-width: 767px) {
  .adjustment {
    padding: 40px 5.34% 50px;
  }
}
.adjustment__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.adjustment__title {
  position: relative;
  width: 41.67%;
  aspect-ratio: 500/206;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .adjustment__title {
    width: 94.92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.adjustment__title::before {
  content: "";
  position: absolute;
  left: calc(100% + 50px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 23.4%;
  aspect-ratio: 117/200;
  background: url("./img/adjustment/man-book.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .adjustment__title::before {
    position: relative;
    left: unset;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 18.25%;
    aspect-ratio: 58/100;
    margin-left: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.adjustment__season {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .adjustment__season {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    margin-top: 30px;
    gap: 45px;
  }
}
.adjustment__season::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 11.67%;
  aspect-ratio: 140/166;
  background: url("./img/adjustment/season-arrow.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .adjustment__season::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
    width: 100%;
    max-width: 69.01px;
    height: 100%;
    max-height: 83px;
    aspect-ratio: 70/83;
  }
}
@media screen and (max-width: 530px) {
  .adjustment__season::before {
    top: 48%;
  }
}
@media screen and (max-width: 337px) {
  .adjustment__season::before {
    top: 49.1%;
  }
}
.adjustment__season-item {
  border: 4px solid #3163c5;
  border-radius: 6px;
  width: 46.67%;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .adjustment__season-item {
    width: 100%;
    border-width: 3px;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
  }
}
.adjustment__season-item--gray {
  border-color: #9a9a9a;
}
.adjustment__season-item-title {
  width: 100%;
  background-color: #3163c5;
  font-size: 3rem;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
  padding: 11px 0;
}
@media screen and (max-width: 767px) {
  .adjustment__season-item-title {
    font-size: 24px;
    padding: 12.25px 0 15.25px;
  }
}
.adjustment__season-item-title--gray {
  background-color: #9a9a9a;
}
.adjustment__season-info {
  padding: 24px 40px 40px;
}
@media screen and (max-width: 767px) {
  .adjustment__season-info {
    padding: 20px 20px 40px;
  }
}
.adjustment__season-img {
  width: 100%;
  max-width: 422px;
  margin: 0 auto 19px;
  aspect-ratio: 422/300;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .adjustment__season-img {
    width: 87.56%;
  }
}
.adjustment__note-container {
  padding: 51px 40px 48px;
  margin-top: 76px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  color: #fff;
  text-align: center;
  background-color: #3163c5;
}
@media screen and (max-width: 767px) {
  .adjustment__note-container {
    padding: 40px 21px;
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .adjustment__note-container {
    padding: 40px 10px;
    font-size: 14px;
  }
}
.adjustment__note-title {
  position: relative;
  font-size: 4.8rem;
  line-height: 1em;
  text-underline-offset: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .adjustment__note-title {
    font-size: 23px;
    text-underline-offset: 9.5px;
    text-align: center;
    margin-bottom: 38px;
  }
}

.fee {
  padding: 100px 3%;
  background-color: #e8f5fc;
}
@media screen and (max-width: 767px) {
  .fee {
    padding: 40px 5.34% 50px;
  }
}
.fee__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.fee__info-wrap {
  padding-top: 49px;
  width: 100%;
  max-width: 752px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 49px;
}
@media screen and (max-width: 767px) {
  .fee__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fee__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
.fee__initial {
  width: 180px;
  height: 180px;
  padding: 10px 27px;
  background-color: #3163c5;
  border-radius: 10px;
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3em;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .fee__initial {
    width: 100%;
    height: 119px;
    font-size: 39px;
  }
}
@media screen and (max-width: 767px) {
  .fee__initial-icon {
    width: 106px;
    height: 119px;
  }
}
.fee__desc-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
.fee__desc-con:first-child {
  margin-bottom: 20px;
}
.fee__desc-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5357142857em;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .fee__desc-title {
    font-size: 20px;
  }
}
.fee__desc-txt {
  font-size: 4.8rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 0.8958333333em;
  color: #3163c5;
}
@media screen and (max-width: 767px) {
  .fee__desc-txt {
    font-size: 39px;
  }
}
.fee__desc-per {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5357142857em;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .fee__desc-per {
    font-size: 20px;
  }
}
.fee__usage-wrap {
  margin-top: 110px;
  width: 100%;
  max-width: 1200px;
}
.fee__usage {
  border-radius: 6px;
  background-color: #fff;
  padding: 0 20px 55px;
}
@media screen and (max-width: 767px) {
  .fee__usage {
    padding: 0 12px 55px;
  }
}
.fee__example {
  position: relative;
}
.fee__example-con {
  position: relative;
  top: -26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 60px;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .fee__example-con {
    top: -26px;
  }
}
.fee__example-con::before {
  content: "";
  position: absolute;
  top: 2px;
  background-image: url("./img/icons/question.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 60px;
  width: 150px;
}
.fee__example-txt {
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fee__example-txt {
    font-size: 20px;
  }
}
.fee__example-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .fee__example-title {
    font-size: 14px;
  }
}
.fee__example-block--border {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
.fee__example-comp {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .fee__example-comp {
    gap: 0;
  }
}
.fee__block {
  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;
}
.fee__place {
  font-size: 1.5rem;
  line-height: 2em;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .fee__place {
    font-size: 11px;
  }
}
.fee__price {
  font-size: 3.6rem;
  font-family: "Oswald", sans-serif;
  line-height: 1em;
  color: #3163c5;
}
@media screen and (max-width: 767px) {
  .fee__price {
    font-size: 28px;
  }
}
.fee__ph {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1em;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767px) {
  .fee__ph {
    font-size: 18px;
  }
}
.fee__icon {
  margin-top: 40px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .fee__icon {
    margin-top: 32px;
    width: 18px;
    height: 18px;
  }
}
.fee__salary {
  margin-top: 29px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fee__salary {
    text-align: initial;
  }
}
.fee__salary-txt {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt';
}
@media screen and (max-width: 767px) {
  .fee__salary-txt {
    font-size: 14px;
  }
}
.fee__list {
  margin-top: 22px;
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .fee__list {
    font-size: 11px;
  }
}
.fee__usage-banner {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fee__usage-banner {
    padding-top: 40px;
  }
}

.faq {
  padding: 100px 3%;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 5.34% 50px;
  }
}
.faq__list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #3163c5;
  border-radius: 6px;
  background-color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    padding: 3px 16px 30px;
  }
}
.faq__list-item-wrapper {
  position: relative;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.faq__list-item-wrapper.active .faq__list-item::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.faq__list-item-wrapper.active .faq__list-item--ans {
  padding: 0 35px 20px 20px;
  max-height: 999px;
  -webkit-transition: max-height 2s ease-out;
  transition: max-height 2s ease-out;
}
@media screen and (max-width: 767px) {
  .faq__list-item-wrapper.active .faq__list-item--ans {
    padding: 0 35px 20px 0;
  }
}
.faq__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 35px 28px 20px;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    font-size: 14px;
    padding: 20px 35px 20px 0;
  }
}
.faq__list-item::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
  width: 10px;
  aspect-ratio: 10/17.5;
  background: url("./img/icons/arrow-icon-up.svg") no-repeat center/100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq__list-item::before {
    width: 8px;
  }
}
.faq__list-item--ans {
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 2s ease-in;
  transition: max-height 2s ease-in;
  -webkit-transition: padding 0.1s ease-out;
  transition: padding 0.1s ease-out;
}
.faq__list-item--ans::before {
  display: none;
}
.faq__list-item-title {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .faq__list-item-title {
    font-size: 14px;
  }
}
.faq__list-item-label {
  position: relative;
  background-color: #3163c5;
  border-radius: 50%;
  margin-right: 12px;
  width: 40px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .faq__list-item-label {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .faq__list-item-label {
    margin: auto 10px auto 0;
    width: 24px;
  }
}
.faq__list-item-label::before {
  content: "Q";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -54%);
          transform: translate(-50%, -54%);
  font: 700 2.4rem "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .faq__list-item-label::before {
    font-size: 14px;
  }
}
.faq__list-item-label--ans {
  background-color: #fff;
  border: 1px solid #00cac0;
}
@media screen and (max-width: 767px) {
  .faq__list-item-label--ans {
    margin: 2px 10px 0 0;
  }
}
.faq__list-item-label--ans::before {
  content: "A";
  color: #00cac0;
}

.contact {
  position: relative;
  padding: 100px 3%;
  background-color: #3163c5;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 5.34% 50px;
  }
}
.contact::before, .contact::after {
  content: "";
  position: absolute;
  width: 20.83%;
  min-width: 225px;
  max-width: 400px;
  aspect-ratio: 400/480;
  background: url("./img/common/contact-bg2.jpg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .contact::before, .contact::after {
    width: 34.67%;
    min-width: unset;
  }
}
.contact::before {
  left: 0;
  top: 0;
}
.contact::after {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contact__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact__form-wrapper {
  position: relative;
  z-index: 2;
  background-color: #fff;
  margin-top: 50px;
  border-radius: 6px;
  padding: 60px 20px;
}
@media screen and (max-width: 767px) {
  .contact__form-wrapper {
    padding: 30px 20px;
    margin-top: 40px;
  }
}
.contact__form-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.contact__form-note {
  font-size: 1.8rem;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form-note {
    font-size: 14px;
    text-align: left;
  }
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 20px;
    gap: 20px;
  }
}
.contact__form-item-label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .contact__form-item-label {
    font-size: 14px;
  }
}
.contact__form-item-label::after {
  content: "任意";
  font-size: 1.4rem;
  line-height: normal;
  color: #fff;
  background-color: #bbb;
  border-radius: 24px;
  padding: 4px 11.6px;
}
@media screen and (max-width: 767px) {
  .contact__form-item-label::after {
    font-size: 12px;
    padding: 2.5px 9.6px;
  }
}
.contact__form-item-label--required::after {
  content: "必須";
  background-color: #ff709f;
}
.contact__form-item-field {
  width: 100%;
  margin-top: 4px;
  font-size: 16px;
}
.contact__form-item-field--textarea {
  height: 200px;
}
.contact__form-item-note {
  font-size: 1.4rem;
  line-height: 2.5714285714em;
}
@media screen and (max-width: 767px) {
  .contact__form-item-note {
    font-size: 12px;
  }
}
.contact__form-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__form-btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-top: 30px;
  }
}
.contact__form-btn {
  border-radius: 40px;
  font: 700 2rem "Noto Sans JP", sans-serif;
  line-height: 2em;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff588f), to(#ffb770));
  background-image: linear-gradient(to right, #ff588f, #ffb770);
  cursor: pointer;
  width: 320px;
  padding: 10px 0;
  border: 2px solid #fff;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__form-btn {
    width: 100%;
    max-width: 300px;
  }
}
.contact__form-btn:hover {
  border-color: #ff588f;
  background-image: unset;
  background-color: #fff;
  color: #ff588f;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=number],
.contact textarea {
  border: none;
  background-color: #f0f0f0;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2em;
  width: 100%;
  padding: 7px 10px;
}
@media screen and (max-width: 767px) {
  .contact input[type=text],
  .contact input[type=email],
  .contact input[type=number],
  .contact textarea {
    font-size: 16px;
    padding: 2.5px 9.6px;
  }
}
.contact textarea {
  height: 100%;
  resize: none;
  overflow-y: auto;
}
.contact input::-webkit-outer-spin-button,
.contact input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

.company {
  padding: 100px 3%;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 40px 5.34% 50px;
  }
}
.company__container {
  width: 100%;
  max-width: 792px;
  margin: 0 auto;
}
.company__list {
  margin-top: 50px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 40px;
    font-size: 12px;
  }
}
.company__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company__list-item-label, .company__list-item-info {
  padding: 19px 0;
}
@media screen and (max-width: 767px) {
  .company__list-item-label, .company__list-item-info {
    padding: 12px 0;
  }
}
.company__list-item-label {
  width: 25.26%;
  min-width: 150px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .company__list-item-label {
    min-width: 104px;
  }
}
.company__list-item-label--border-top {
  border-top: 1px solid #333;
}
.company__list-item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #ccc;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .company__list-item-info {
    padding-left: 0;
  }
}
.company__list-item-info--border-top {
  border-top: 1px solid #ccc;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.block {
  display: block;
}

.text-pink {
  color: #ff709f;
}
.bold {
  font-weight: 700;
}
.anchor {
  position: absolute;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -78px;
  }
}

.mwwp__form .back {
  display: none;
}

.mwwp__form-confirm .contact__form-item-note {
  display: none;
}
.mwwp__form-confirm .contact__form-item-field--textarea {
  height: unset;
}
