@charset "utf-8";

.mv {
  width: max(1320px, 100%);
  margin-top: 181px;

  @media screen and (max-width: 1320px) {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  @media screen and (max-width: 768px) {
    width: 100%;
    margin-top: calc(108px + 0.1746031746 * (100vw - 390px));
  }
  @media screen and (max-width: 390px) {
    margin-top: calc(108 / 390 * 100vw);
  }
}

/* feature  ------------------------------*/

.feature {
  padding: 80px 0 100px;
}
.feature .ttl02 {
  margin-bottom: 50px;
}

.feature .list_feature {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 44px 0;
  padding: 0 25px;
}
.feature .list_feature .card {
  width: 30%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.feature .list_feature .card figure {
  position: relative;
  z-index: 0;

  width: 200px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature .list_feature .card figure::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: #f6f7fa;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
}
.feature .list_feature .card figure figcaption {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: -10px;
  color: #fff;
  background: var(--color02);
  font-weight: 500;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: #fff;
  width: 80px;
  text-align: center;
  border-radius: 12px;
}
.feature .list_feature .card figure img {
  width: 50%;
}
.feature .list_feature .card h3 {
  margin: 20px 0 15px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 24px;
  line-height: calc(36 / 24);
  color: var(--color01);

  text-align: center;
}

@media screen and (max-width: 768px) {
  .feature {
    padding: calc(50 / 390 * 100vw) 0;
  }
  .feature .ttl02 {
    margin-bottom: calc(30 / 390 * 100vw);
  }

  .feature .inner {
    width: 100%;
  }
  .feature .wrapper_slide {
    width: 89.74%;
    margin: 0 auto;
    position: relative;
  }

  .feature .list_feature {
    gap: unset;
    padding: 0;
    flex-flow: nowrap;
  }
  .feature .list_feature .card {
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    gap: 0 calc(10 / 390 * 100vw);
  }
  .feature .list_feature .card figure {
    width: 28.57%;
  }
  .feature .list_feature .card figure::after {
    border-radius: calc(999 / 390 * 100vw);
  }
  .feature .list_feature .card figure figcaption {
    display: none;
  }

  .feature .list_feature .card .box_text {
    width: 68.57%;
  }
  .feature .list_feature .card h3 {
    margin: 0 0 calc(5 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    line-height: calc(32.4 / 18);
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: calc(37 / 390 * 100vw);
    right: calc(-15 / 390 * 100vw);
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: calc(-15 / 390 * 100vw);
    right: auto;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-image: url("../img/common/icon_arrow02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
  }
  .swiper-button-prev::after {
    transform: scale(-1, 1);
  }
}

/* area  ------------------------------*/

.area {
  background: #f6f7fa;
  padding: 100px 0 125px;
  height: 688px;
  overflow: hidden;
}
.area .inner {
  position: relative;
  z-index: 0;
}

.area .box_text {
  width: 790px;
}
.area .ttl02 {
  margin-bottom: 50px;
  text-align: left;
}
.area .ttl02::after {
  left: 0;
  transform: translate(0, 0);
}

.area .box_list {
  margin: 30px 0 20px;
  display: flex;
  flex-flow: wrap;

  gap: 10px;
}
.area .box_list li {
  width: 18.8%;
  aspect-ratio: 150 / 80;
  border-radius: 10px;
  background: #fff;
  color: var(--color01);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
}
.area .text00.size_s {
  font-size: 14px;
  line-height: calc(25.2 / 14);
}

.area .box_img {
  position: absolute;
  z-index: -1;
  top: -201px;
  right: -221px;
  width: 785px;
}

.area .box_img img {
  object-fit: cover;
  object-position: bottom left;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1750px) {
  .area .box_img {
    right: clamp(0px, calc(0px - 0.4680851064 * (100vw - 1280px)), 9999px);
  }
}
@media screen and (max-width: 1280px) {
  .area .box_img {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .area {
    background: #f6f7fa;
    padding: calc(50 / 390 * 100vw) 0;
    height: auto;
    overflow: hidden;
  }

  .area .box_text {
    width: 100%;
  }
  .area .ttl02 {
    margin-bottom: calc(30 / 390 * 100vw);
  }
  .area .ttl02 + .text00 {
    font-size: calc(16 / 390 * 100vw);
  }

  .area .box_list {
    margin: calc(18 / 390 * 100vw) 0 calc(12 / 390 * 100vw);
    justify-content: space-between;
    gap: calc(10 / 390 * 100vw) 0;
  }
  .area .box_list li {
    width: 31.43%;
    aspect-ratio: 110 / 60;
    border-radius: calc(10 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .area .text00.size_s {
    font-size: calc(14 / 390 * 100vw);
    line-height: calc(25.2 / 14);
  }

  .area .box_img {
    top: -18.3%;
    right: -14%;
    width: calc(200 / 390 * 100vw);
    height: auto;
  }
}

/* what  ------------------------------*/

.what {
  background: #f5f5f5;
  padding: 100px 0 100px;
}
.what .ttl02 {
  margin-bottom: 50px;
}

.what .ttl02 + .box_text {
  position: relative;
  z-index: 1;
  background: var(--color01);
  border-radius: 10px;
  width: 900px;
  height: 120px;
  margin: 0 auto 0;
  padding: 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.what .ttl02 + .box_text::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-color: var(--color01);
  bottom: -19px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 35px;

  aspect-ratio: 35 / 20;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.wrapper_img {
  background: #fff;
  border-radius: 15px;
  padding: 90px 50px 50px;
  margin: -60px 0 80px;
}
.what .wrapper_img .box_img {
  position: relative;
  z-index: 0;
  width: 800px;
  margin: 0 auto 50px;
}
.what .wrapper_sample {
  position: relative;
  z-index: 0;

  display: flex;
  justify-content: space-between;
}
.what .wrapper_sample:nth-of-type(1):after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-image: repeating-linear-gradient(to bottom, var(--color01) 0 3px, transparent 3px 8px);
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.what .wrapper_sample .sample {
  width: 45.76%;
}

.what .wrapper_sample .sample ul {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.what .wrapper_sample .sample li {
  position: relative;
  z-index: 0;
  width: 45.5%;
}
.what .wrapper_sample .sample li:nth-of-type(1):after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-color: var(--color01);
  top: 50%;
  right: -65px;
  width: 20px;
  aspect-ratio: 20 / 50;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.what .wrapper_sample .sample li h3 {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: calc(45 / 24);
  color: #222;
  margin-bottom: 4px;
}
.what .wrapper_sample .sample li img {
  padding: 0 13px;
}

.what .wrapper_sample .sample li:nth-of-type(2) h3 {
  color: var(--color01);
}
.what .wrapper_sample .sample .text00 {
  margin-top: 12px;
}
.what .wrapper_sample .sample .text00 strong {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: calc(39.6 / 18);
  color: var(--color01);
  margin-bottom: 6px;
}

.what .wrapper_more {
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  width: 900px;
  padding: 40px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  border: 2px solid #fff;
}
.what .wrapper_more:hover,
.what .wrapper_more:active {
  border: 2px solid var(--color01);
}

.what .wrapper_more .box_img {
  width: 46.3%;
  padding-right: 50px;

  text-align: center;
  color: #0a0a0a;
  border-right: 1px solid #ccc;
  span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: calc(32.4 / 14);
    margin-bottom: 5px;
  }
}

.what .wrapper_more .box_text {
  position: relative;
  z-index: 0;
  width: 53.7%;
  padding-left: 50px;
  font-weight: bold;
  font-size: 18px;
  line-height: calc(32.4 / 18);
  color: var(--color01);
}
.what .wrapper_more .box_text::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-image: url("../img/common/icon_arrow01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 60px;
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .what {
    padding: calc(50 / 390 * 100vw) 0;
  }
  .what .ttl02 {
    margin-bottom: calc(30 / 390 * 100vw);
  }

  .what .ttl02 + .box_text {
    border-radius: calc(10 / 390 * 100vw);
    width: 88.57%;
    height: auto;
    margin: 0 auto 0;
    padding: calc(20 / 390 * 100vw);
    text-align: left;
    font-size: calc(16 / 390 * 100vw);
  }
  .what .ttl02 + .box_text::after {
    bottom: calc(-19 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
  }
  .wrapper_img {
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(129 / 390 * 100vw) calc(20 / 390 * 100vw) calc(50 / 390 * 100vw);
    margin: calc(-89 / 390 * 100vw) 0 calc(30 / 390 * 100vw);
  }
  .what .wrapper_img .box_img {
    width: 100%;
    margin: 0 auto calc(14 / 390 * 100vw);
  }
  .what .wrapper_sample {
    flex-flow: wrap;
    gap: calc(32 / 390 * 100vw) 0;
  }
  .what .wrapper_sample:nth-of-type(1):after {
    background-image: repeating-linear-gradient(to left, var(--color01) 0 calc(3 / 390 * 100vw), transparent calc(3 / 390 * 100vw) calc(8 / 390 * 100vw));
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
  }

  .what .wrapper_sample .sample {
    width: 100%;
  }
  .what .wrapper_sample .sample li {
    width: 45.16%;
  }
  .what .wrapper_sample .sample li:nth-of-type(1):after {
    top: 52%;
    right: -14%;
    width: calc(10 / 390 * 100vw);
  }
  .what .wrapper_sample .sample li h3 {
    font-size: calc(18 / 390 * 100vw);
    line-height: calc(32.4 / 18);
    margin-bottom: 1px;
  }
  .what .wrapper_sample .sample li img {
    padding: 0;
  }
  .what .wrapper_sample .sample .text00 {
    margin-top: calc(6 / 390 * 100vw);
  }
  .what .wrapper_sample .sample .text00 strong {
    font-size: calc(18 / 390 * 100vw);
    line-height: calc(32.4 / 18);
    margin-bottom: -1px;
  }

  .what .wrapper_more {
    border-radius: calc(10 / 390 * 100vw);

    width: 100%;
    padding: calc(30 / 390 * 100vw) calc(25 / 390 * 100vw);
    flex-flow: column;
  }

  .what .wrapper_more .box_img {
    width: 100%;
    padding-right: 0;
    padding-bottom: calc(20 / 390 * 100vw);
    margin-bottom: calc(25 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);

    border-right: 0;
    border-bottom: 1px solid #ccc;
    span {
      font-size: calc(14 / 390 * 100vw);
      line-height: 1;
      margin-bottom: calc(15 / 390 * 100vw);
    }
  }
  .what .wrapper_more .box_text {
    width: 100%;
    padding-left: 0;

    font-size: calc(16 / 390 * 100vw);
    line-height: calc(28.8 / 16);
  }
  .what .wrapper_more .box_text::after {
    width: calc(60 / 390 * 100vw);
  }
}

/* strenht  ------------------------------*/

.strenght {
  background: var(--color02);
  padding: 100px 0 100px;
}
.strenght .ttl02 {
  color: #fff;
  margin-bottom: 50px;
}

.strenght .ttl02::after {
  background: #fff;
}

.strenght .wrapper_strength {
  display: flex;
  justify-content: space-between;
}
.strenght .wrapper_strength .box_data {
  position: relative;
  z-index: 0;
  width: 56.25%;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.strenght .wrapper_strength .box_data::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-image: url("../img/common/icon_and.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 50%;
  right: -45px;
  transform: translate(0, -50%);
  width: 60px;
  aspect-ratio: 1;
}
.strenght .wrapper_strength .box_data .data_content {
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 22px 0;
}
.strenght .wrapper_strength .box_data .data_content dt {
  width: 22.222%;
  padding: 0 19px;
  font-weight: bold;
  font-size: 22px;
  line-height: calc(36 / 24);
  color: var(--color01);
  border-right: 1px solid #ccc;
}
.strenght .wrapper_strength .box_data .data_content dd {
  width: 77.778%;
  padding: 0 20px 0 20px;
  background: #fff;
}
.strenght .wrapper_strength .box_list {
  width: 41.4%;
  background: #fff;
  border-radius: 10px;

  display: flex;
  flex-flow: column;
  justify-content: center;
}
.strenght .wrapper_strength .box_list h3 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 24px;
  line-height: calc(36 / 24);
  text-align: center;
  color: var(--color01);
  margin-bottom: 20px;
}
.strenght .wrapper_strength .box_list ul {
  font-weight: 500;
  font-size: 18px;
  line-height: calc(32.4 / 18);
  text-align: left;

  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-left: 55px;
}
.strenght .wrapper_strength .box_list ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.strenght .wrapper_strength .box_list ul li::before {
  content: "";
  background-color: var(--color01);
  width: 10px;
  aspect-ratio: 1;
  border-radius: 99px;
}

@media screen and (max-width: 768px) {
  .strenght {
    padding: calc(50 / 390 * 100vw) 0;
  }
  .strenght .ttl02 {
    margin-bottom: calc(30 / 390 * 100vw);
  }
  .strenght .wrapper_strength {
    flex-flow: column;
    gap: calc(40 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_data {
    width: 100%;
    gap: calc(10 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_data::after {
    top: auto;
    bottom: calc(-50 / 390 * 100vw);
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(60 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_data .data_content {
    flex-flow: column;
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(25 / 390 * 100vw) calc(20 / 390 * 100vw) calc(15 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_data .data_content dt {
    width: 100%;
    padding: 0;
    font-size: calc(18 / 390 * 100vw);
    line-height: 1;
    border-right: unset;
    margin-bottom: 13px;
  }
  .strenght .wrapper_strength .box_data .data_content dd {
    width: 100%;
    padding: 0;
    font-size: calc(16 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_list {
    width: 100%;
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_list h3 {
    font-size: calc(18 / 390 * 100vw);
    line-height: calc(36 / 18);
    margin-bottom: 0;
    text-align: left;
  }
  .strenght .wrapper_strength .box_list ul {
    font-size: calc(16 / 390 * 100vw);
    line-height: calc(28.8 / 16);
    gap: calc(6 / 390 * 100vw);
    margin-left: 0;
  }
  .strenght .wrapper_strength .box_list ul li {
    display: flex;
    align-items: center;
    gap: calc(5 / 390 * 100vw);
  }
  .strenght .wrapper_strength .box_list ul li::before {
    width: calc(10 / 390 * 100vw);
    border-radius: calc(99 / 390 * 100vw);
  }
}

/* recruit  ------------------------------*/

.recruit {
  background: linear-gradient(var(--color02) 0%, var(--color02) 50%, #fff 50%);
}
.recruit .inner {
  position: relative;
  z-index: 0;
  padding: 100px 0;
}
.recruit .inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-image: url("../img/top/img_recruit01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: -320px;
  width: 125%;
  height: 100%;
  border-radius: 0 30px 30px 0;
}
.recruit .ttl02 {
  margin: 0 0 30px;
  text-align: left;
  color: #fff;
}
.recruit .ttl02::after {
  background: #fff;
  left: 0;
  transform: translate(0);
}

.recruit .text00 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 80px;
}
.btn00 {
  width: fit-content;
  font-weight: bold;
  font-size: 18px;
  line-height: calc(32.4px / 18);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}
.btn00:hover {
  gap: 30px;
}
.btn00::after {
  content: "";
  background-image: url("../img/common/icon_arrow03.svg");
  background-color: rgba(1, 1, 1, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 999px;
  transition: 0.3s;
}
.btn00:hover:after {
  filter: invert(1);
  background-color: rgba(1, 1, 1, 1);
}

@media screen and (max-width: 768px) {
  .recruit {
  }
  .recruit .inner {
    padding: calc(50 / 390 * 100vw) 0;
  }
  .recruit .inner::after {
    background-image: url("../img/top/img_recruit01_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: calc(-20 / 390 * 100vw);
    width: 105.71%;
    height: 100%;
    border-radius: 0 calc(15 / 390 * 100vw) calc(15 / 390 * 100vw) 0;
  }
  .recruit .ttl02 {
    margin: 0 0 calc(28 / 390 * 100vw);
  }
  .recruit .text00 {
    font-size: calc(24 / 390 * 100vw);
    line-height: calc(43.2 / 24);
    margin-bottom: calc(24 / 390 * 100vw);
  }
  .btn00 {
    font-size: calc(18 / 390 * 100vw);
    gap: calc(20 / 390 * 100vw);
  }
  .btn00:hover {
    gap: calc(30 / 390 * 100vw);
  }
  .btn00::after {
    width: calc(60 / 390 * 100vw);
    border-radius: calc(999 / 390 * 100vw);
  }
}
