html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  aside {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  aside {
    padding-top: 80px;
    box-sizing: border-box;
    height: 100%;
    width: 300px;
    position: fixed;
    overflow: auto;
  }
  aside .logo {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  main {
    margin: 0 50px 0 300px;
  }
}
p {
  font-size: 14px;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
  color: #000;
}
.full-width {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 1024px) {
  .full-width {
    margin: 0;
  }
}
.arrow {
  position: relative;
}
.arrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  transform: rotate(45deg);
  top: -4.5px;
  right: 0;
}
.arrow::after {
  content: '';
  width: 40px;
  height: 1px;
  border: 0px;
  background-color: #000;
  position: absolute;
  top: 1.3px;
  right: 0;
}
.arrow-white {
  position: relative;
}
.arrow-white::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  transform: rotate(45deg);
  top: -4.5px;
  right: 0;
}
.arrow-white::after {
  content: '';
  width: 40px;
  height: 1px;
  border: 0px;
  background-color: #fff;
  position: absolute;
  top: 1.3px;
  right: 0;
}
.heading__title {
  color: $color;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-family: Poppins;
  line-height: 130%;
}
@media screen and (min-width: 1024px) {
  .heading__title {
    font-size: 50px;
  }
}
.heading__subtitle {
  font-size: 14px;
  margin: 6px 0 24px;
  letter-spacing: 0.1em;
}
.heading__lead {
  padding-bottom: 30px;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .heading__lead {
    font-size: 16px;
  }
}
.number__over {
  position: relative;
}
.number__over__back {
  font-family: Futura;
  font-weight: 500;
  font-size: 98px;
  color: #aab7c0;
  opacity: 0.3;
}
.number__over__title {
  font-size: 20px;
  line-height: 140%;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #222;
  position: absolute;
  bottom: 0px;
  left: 40px;
}
.number__description {
  font-size: 15px;
  line-height: 180%;
  margin: 16px 0 40px;
}
@media screen and (min-width: 1024px) {
  .form dl {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  .form dt {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .form dt {
    clear: left;
    float: left;
    width: 20%;
  }
  .form dd {
    margin-left: 20%;
  }
}
.form__title {
  margin: 20px 0 12px;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .form__title {
    margin: 0;
    line-height: 40px;
  }
}
.form__input {
  padding: 13px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #666;
  border-radius: 4px;
}
.form .half {
  width: 49%;
}
.form__radio {
  width: 20px;
  height: 20px;
  margin: 10px 0;
}
.form label {
  margin-right: 10px;
}
.form__textarea {
  width: 100%;
  height: 240px;
  box-sizing: border-box;
  padding: 13px;
}
.form__select {
  width: 100%;
  height: 43px;
  padding: 8px;
}
.form__btn {
  width: 100%;
  line-height: 55px;
  background: #000;
  color: #fff;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .form__btn {
    width: 60%;
  }
}
.must::after {
  content: '*';
  color: #f00;
  margin-left: 8px;
}
.agree {
  margin: 30px 0 10px;
}
@media screen and (min-width: 1024px) {
  .agree {
    margin-top: 70px;
  }
}
.agree__line {
  text-decoration: underline;
  margin-left: 10px;
}
.header {
  background-color: #fff;
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto 20px;
  height: 100%;
}
.header__logo {
  width: 100px;
}
.header__toggle {
  position: absolute;
  right: 0;
  background-color: #f00;
  padding: 10px;
}
.drawer {
  position: absolute;
  right: 0;
  top: 0;
}
.drawer-hidden {
  display: none;
}
.drawer-open {
  display: flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上に */
  cursor: pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
.drawer-open span {
  background: rgba(255,255,255,0);
}
.drawer-open span:before {
  bottom: 6px;
}
.drawer-open span:after {
  top: 6px;
}
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
#drawer-check:checked ~ .nav {
  left: 0; /* メニューを画面に入れる */
}
.nav {
  margin-top: 70px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: 0.5s;
}
.nav__list {
  text-align: center;
  height: calc(100% - 200px);
}
.nav__list__item {
  margin: 30px 0;
}
@media screen and (min-width: 1024px) {
  .nav__list__item {
    margin: 50px 0;
  }
}
.nav__bottom__btns {
  text-align: center;
  display: flex;
}
.nav__bottom__btn {
  line-height: 48px;
  background: #fff;
  border: 1px solid #222;
  width: 46%;
  margin: auto;
}
.nav__bottom__sns {
  text-align: center;
  margin-top: 20px;
}
.side {
  padding-top: 80px;
  text-align: center;
}
.side__logo {
  width: 50%;
  margin: auto;
}
.side__list {
  height: calc(100% - 200px);
}
.side__list__item {
  margin: 30px 0;
}
.side__bottom__btns {
  text-align: center;
  display: flex;
}
.side__bottom__btn {
  line-height: 48px;
  background: #fff;
  border: 1px solid #222;
  width: 46%;
  margin: auto;
}
.side__bottom__sns {
  text-align: center;
  margin-top: 20px;
}
.footer {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
  }
}
.footer__vision {
  margin-top: 55px;
}
@media screen and (min-width: 1024px) {
  .footer__vision {
    width: 300px;
  }
}
.footer__vision__logo {
  width: 50%;
  margin: 20px 0 10px;
}
.footer__address {
  margin: 40px auto;
  display: inline-block;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .footer__address {
    margin: 0 30px;
    width: 600px;
  }
}
.footer__address__map {
  margin: 10px 0 20px;
}
@media screen and (max-width: 1024px) {
  .footer__address__map {
    line-height: 20px;
  }
}
.footer__address__map a {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .footer__address__map a {
    margin-left: 20px;
  }
}
.footer__address__tel a {
  color: #000;
  text-decoration: underline;
}
.footer__btns {
  display: flex;
  justify-content: space-around;
}
.footer__btn {
  border: solid 1px #000;
  line-height: 48px;
  width: 170px;
  font-weight: bold;
  color: #000;
}
.footer__inc {
  display: inline-block;
  margin: 12px 0;
}
@media screen and (min-width: 1024px) {
  .footer__inc {
    margin-top: 50px;
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .sp-hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .pc-hidden {
    display: none;
  }
}
.test {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .test {
    margin-bottom: 20px;
  }
}
.hero {
  padding: 0 24px;
}
@media screen and (min-width: 1024px) {
  .hero__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
}
.hero__message {
  margin-top: 32px;
}
.hero__message__large {
  font-size: 28px;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .hero__message__large {
    font-size: 40px;
  }
}
.hero__message__small {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.about {
  padding: 56px 24px 0;
}
.about__vision {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about__vision {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .about__vision {
    margin: 50px 0 100px;
  }
}
@media screen and (min-width: 1024px) {
  .about__vision__text {
    margin-right: 30px;
    width: 60%;
  }
}
.about__vision__text__title {
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 160%;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .about__vision__text__title {
    white-space: nowrap;
  }
}
.about__vision__text__description {
  font-size: 14px;
  margin: 20px 0;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .about__vision__text__description {
    margin-top: 20px;
  }
}
.about__vision__text__description__half {
  line-height: 30px;
}
.about__vision__img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .about__vision__img {
    width: 70%;
  }
}
.about__message {
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 160%;
  font-weight: bold;
  margin-top: 15px;
}
.about__message__border {
  width: 40px;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 1024px) {
  .about__grids {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .about .pc-only {
    margin-top: 30px;
  }
}
.services {
  padding: 60px 24px 0;
}
@media screen and (max-width: 1024px) {
  .services {
    padding: 30px 24px 0;
  }
}
.services__part {
  position: relative;
  margin: 0 calc(50% - 50vw);
  margin-top: 110px;
}
@media screen and (min-width: 1024px) {
  .services__part {
    margin: 0;
  }
}
.services__part__text {
  background-color: #222;
  color: #fff;
  margin: 92px 0 20px 20px;
  padding: 100px 24px 24px;
  line-height: 180%;
}
@media screen and (min-width: 1024px) {
  .services__part__text {
    padding: 72px 50px 78px 420px;
  }
}
.services__part__text__english {
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
.services__part__text__japanese {
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.services__part__text__normal {
  font-size: 14px;
}
.services__part__img {
  width: 260px;
  position: absolute;
  top: -92px;
}
@media screen and (min-width: 1024px) {
  .services__part__img {
    width: 400px;
    top: -40px;
  }
}
.services .img-right .services__part__img {
  right: 0;
}
.services .img-right .services__part__text {
  margin: 92px 20px 20px 0;
}
@media screen and (min-width: 1024px) {
  .services .img-right .services__part__text {
    padding: 72px 420px 78px 80px;
  }
}
.flow {
  padding: 40px 24px 40px;
  background-color: #f1f3f5;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .flow {
    background-color: #fff;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .flow__bg {
    margin-right: 80px;
  }
}
.flow__bg__img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .flow__bg__img {
    background-color: #f1f3f5;
    padding: 40px;
  }
}
.works {
  padding: 40px 24px;
  line-height: 22.4px;
}
@media screen and (min-width: 1024px) {
  .works {
    padding: 80px 24px 50px;
  }
}
.works__title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 16px;
}
.works__subtitle {
  font-size: 14px;
  font-weight: bold;
  margin: 8px 0;
}
.works__description {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .swiper-container {
    margin: -50px -50px 0 0;
  }
}
.btn-wrapper-sp {
  height: 60px;
  width: 150px;
  display: flex;
  justify-content: space-around;
  margin-left: auto;
  margin-right: -20px;
}
@media screen and (min-width: 1024px) {
  .btn-wrapper-sp {
    display: none;
  }
}
.btn-wrapper-pc {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 190px;
}
@media screen and (max-width: 1024px) {
  .btn-wrapper-pc {
    display: none;
  }
}
.swiper-button-prev {
  position: relative;
  background-image: url("/img/arrow-left.png");
  width: 32px;
  height: 32px;
  top: 25px;
}
.swiper-button-prev:after {
  font-size: 0;
}
.swiper-button-next {
  position: relative;
  background-image: url("/img/arrow-right.png");
  width: 32px;
  height: 32px;
  top: 25px;
}
.swiper-button-next:after {
  font-size: 0;
}
.marketing {
  padding: 40px 24px 40px;
  background-color: #fff;
}
.marketing img {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .marketing {
    background-color: #fff;
  }
}
.marketing__flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .marketing__flex {
    flex-direction: row;
    background-color: #f1f3f5;
    padding: 40px 20px;
  }
}
.marketing__grid {
  padding: 0 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 88px 1fr;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .marketing__grid {
    margin: 0 20px;
    width: 320px;
  }
}
.marketing .grid-top {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
}
.marketing .grid-item {
  font-size: 14px;
  border-top: 1px solid #c9d7e1;
  padding: 12px 0;
  line-height: 160%;
}
.marketing .grid-title {
  font-weight: bold;
}
.company {
  padding: 40px 24px;
}
.company__grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .company__grid {
    max-width: 800px;
    margin: auto;
  }
}
.company .grid-item {
  border-bottom: 1px solid #222;
  padding: 16px 0;
  line-height: 160%;
  font-size: 14px;
}
.company .grid-title {
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .company__forms {
    display: flex;
    justify-content: space-around;
  }
  .company__forms a {
    width: 100%;
  }
}
.company__form {
  font-family: Poppins;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #000;
  padding: 24px 16px 24px 24px;
  margin: 20px 0;
  height: 50px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #000;
}
.company__form__text p {
  font-weight: 600;
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .company__form {
    width: 80%;
    margin: 120px auto 50px;
  }
}
.recruit {
  background-image: url("/img/recruit-bg.png");
  background-size: cover;
  padding: 40px 24px 22px;
  position: relative;
}
.recruit__text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.recruit__text__main {
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
}
.recruit__text__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .recruit__text__link {
    margin-top: 0;
  }
}
.recruit__text__link__text {
  font-size: 16px;
  font-weight: bold;
  margin-right: 50px;
  color: #fff;
}
.recruit::before {
  background-color: #000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
