@charset "UTF-8";

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  font-size: 62.5%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

body {
  background: #f5f5f5;
  color: #121212;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  word-wrap: break-word;
  transition: background-color .5s ease;
  overflow-x: hidden;
}

body.bg-gray {
  background: #CECECE;
}

body.bg-black {
  background: #262623;
}

main {
  display: block;
  width: 100%;
  z-index: 1;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #121212;
  transition: .3s;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.en {
  font-family: "Poppins", sans-serif;
}

.sp-only {
  display: none;
}

/* header --------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 160px;
  padding: 0 4rem;
}

.page-width {
  padding: 0 20px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 160px;
}

.header-logo {
  max-width: 240px;
  width: 100%;
}

.header-logo a {
  display: block;
}

.header-logo a:hover {
  opacity: .7;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-btn {
  display: flex;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  height: 80px;
  width: 215px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
}

.note-btn {
  background-color: #262623;
}

.mail-btn {
  background-color: #3498DB;
}

.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.note-btn:before {
  background: rgba(255, 255, 255, 0.15);
}

.mail-btn:before {
  background: rgba(0, 0, 0, 0.1);
}

.btn:hover:before {
  transform: scale(1, 1);
}

.btn-icon {
  width: 20px;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* kv -------------------------------------------------*/
.kv {
  position: relative;
  height: 100vh;
  min-height: 900px;
  background-image: url(../images/recruit/imagefv.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 1920px;
  margin: 0 auto;
}

.kv-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  padding: 0 8rem;
  max-width: 880px;
}

.kv-ttl {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.kv-ttl .large {
  font-size: 10rem;
}

.kv-heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 3.2rem;
}

.kv-txt {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 3.2rem;
}

.kv-sokyu {
  margin-top: 2rem;
}

.kv-sokyu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#kv [data-aos="fade-right"] {
  transform: translateX(-50px);
}

#kv [data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

/*  who-------------------------------------------------*/
.who {
  padding-top: 12rem;
  position: relative;
}

.center {
  text-align: center;
}

.ttl-head {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3498DB;
  line-height: 1.33;
  margin-bottom: 1.2rem;
}

.section-ttl {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.39;
  margin-bottom: 2.4rem;
}

.heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
}

.heading .strong {
  font-weight: 700;
}

.who-txt {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8rem;
}

.back-img {
  position: absolute;
  z-index: 0;
}

.who-back-1 {
  left: 0;
  top: 20%;
  max-width: 360px;
  min-width: 120px;
  width: 20.8%;
}

.who-back-2 {
  right: 0;
  bottom: -5%;
  max-width: 360px;
  min-width: 120px;
  width: 20.8%;
}

/*  services-------------------------------------------------*/
.services {
  padding-top: 8rem;
}

.services-back {
  width: 91.66%;
  margin: 0 auto;
}

.services-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-list {
  display: flex;
  gap: 2rem;
  margin-top: -85px;
}

.services-item {
  width: calc((100% - 4rem)/3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.8rem 2.4rem 4rem;
}

.glass {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-right-color: rgba(255, 255, 255, 0.4);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.02);
}

.services-num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4rem;
}

.services-item:nth-of-type(1) .services-num,
.next-item:nth-of-type(1) .next-num {
  background-image: linear-gradient(90deg, #2B4087 0%, #5DD4E8 100%);
}

.services-item:nth-of-type(2) .services-num,
.next-item:nth-of-type(2) .next-num {
  background-image: linear-gradient(270deg, #F26A93 0%, #A80E00 100%);
}

.services-item:nth-of-type(3) .services-num,
.next-item:nth-of-type(3) .next-num {
  background-image: linear-gradient(270deg, #FFFFA7 0%, #FF4000 100%);
}

.services-img {
  width: 61.65%;
  margin: 0 auto;
}

.services-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.66;
  margin: 4rem 0 1.2rem;
}

.services-slider {
  margin: 12rem 0 2.8rem;
}

.services-slider .slick-list,
.services-slider-second .slick-list {
  margin: 0 -14px;
}

.services-slider .slick-slide,
.services-slider-second .slick-slide {
  margin: 0 14px;
}

/*  challenge-------------------------------------------------*/
.challenge {
  padding: 19.7rem 0 12rem;
  position: relative;
}

.challenge-list {
  display: flex;
  gap: 2rem;
  margin-top: 17rem;
}

.challenge-item {
  width: calc((100% - 4rem)/3);
  display: flex;
  flex-direction: column;
  position: relative;
}

.challenge-num {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  margin: 0 auto;
}

.challenge-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.challenge-box {
  border-radius: 12px;
  padding: 2.4rem 2.4rem 4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
}

.challenge-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.challenge-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  width: calc(100% - 14rem);
}

.challenge-img {
  width: 10rem;
}

.challenge-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.challenge-tag,
.voice-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 3.6rem 0 1.6rem;
}

.challenge-tag li,
.voice-tag li,
.your-tag,
.results-tag {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3498DB;
  background-color: #EAF7FF;
  padding: 0.4rem 1.6rem;
  border-radius: 999px;
}

.challenge-back-1 {
  width: 20.4%;
  max-width: 353px;
  min-width: 138px;
  top: 12%;
  left: 2%;
}

.challenge-back-2 {
  width: 24.2%;
  max-width: 419px;
  min-width: 166px;
  top: 25%;
  right: -7%;
}

.challenge-back-3 {
  width: 16.7%;
  max-width: 289px;
  min-width: 160px;
  bottom: 0;
  left: 11%;
}

/*  problem-------------------------------------------------*/
.problem-slider {
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  gap:0.4rem;
  overflow: hidden;
  background-color: #121212;
  padding: 3.2rem 0;
  animation: scroll-left 40s linear infinite;
}
.problem-slider-list {
    display: flex;
    align-items: center;
    gap:0.4rem;
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.problem-slider-item{
  display: flex;
  align-items: center;
  gap:1.2rem;
}
.problem-slider-txt {
  font-size: 4.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.problem-slider-img {
  width: 56px;
}

.problem-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem-list {
  display: flex!important;
  gap: 2rem;
  padding: 12rem 0;
  position: relative;
}

.problem-item {
  display: flex!important;
  flex-direction: column;
  width: calc((100% - 4rem)/3);
}

.problem-box {
  border-radius: 20px;
  background-color: #262623;
  position: relative;
  padding: 3.6rem 4rem 4rem;
  flex-grow: 1;
}

.problem-box:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 30px solid transparent;
  border-top: 30px solid #262623;
}

.problem-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #00FF00;
}

.problem-item:nth-child(2) .problem-ttl {
  color: #005EFF;
}

.problem-txt {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 1.6rem 0 2rem;
}

.problem-summary {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
}

.problem-img {
  margin: 6rem auto 0;
  width: 120px;
}

.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  picture-------------------------------------------------*/
.picture {
  position: relative;
  padding: 22.4rem 0;
  background-image: url(../images/recruit/bk/image_bk01.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 39.7vw;
}

.picture-content {
  max-width: 698px;
}

.picture-flex {
  display: flex;
  gap: 0.4rem;
  margin-top: 6rem;
}

.picture-item {
  width: calc((100% - 0.8rem)/3);
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 2rem 0.8rem;
  position: relative;
}
.picture-item:before{
    content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
.picture-item:nth-child(1):before{
  background-image: url(../images/recruit/icon/china_icon.png);
}
.picture-item:nth-child(2):before{
  background-image: url(../images/recruit/icon/usa_icon.png);
}
.picture-item:nth-child(3):before{
  background-image: url(../images/recruit/icon/japan_icon.png);
}
.picture-item:nth-child(3) {
  background-color: #262623;
}

.picture-country {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.picture-year {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.picture-price {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.18;
}

.picture-txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.71;
  margin-top: 0.8rem;
}

.picture-close {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 2rem;
}

.picture-back {
  max-width: 206px;
  top: -18%;
  left: 1%;
}

/* next-------------------------------------------------*/
.next {
  background-color: #262623;
  position: relative;
  padding-bottom: 16rem;
}

.next-ttl {
  width: 35.18%;
  margin: 0 auto;
}

.next .section-info {
  margin-top: -88px;
}

.next-flex {
  display: flex;
  gap: 4rem;
  max-width: 1920px;
  margin: 6rem auto 0;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.next-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
  padding: 6rem 3.2rem;
  width: calc((100% - 8rem)/3);
}

.next-num {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.next-main {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 2rem 0 4rem;
}

.next-txt {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
}

.next-back-1 {
  width: 23.14%;
  max-width: 400px;
  min-width: 160px;
  top: -23%;
  left: 0;
}

.next-back-2 {
  width:34.72% ;
  max-width: 600px;
  min-width: 200px;
  top: -13%;
  right: 0;
}

/*  position-------------------------------------------------*/
.position {
  padding-top: 20.9rem;
  position: relative;
}

.position-table {
  margin-top: 6rem;
}

.position-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  position: relative;
  table-layout: fixed
}

.position-table thead th:nth-child(1),
tbody th {
  width: 162px;
  min-width: 162px;
}

.position-table th,
.position-table td {
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.position-table thead tr th {
  border-top: 1px solid #E5E5E5;
}

.position-table th:first-child,
.position-table td:first-child {
  border-left: 1px solid #E5E5E5;
}

.position-table th,
.position-table td {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.71;
  padding: 1.6rem;
  background-color: #fff;
}

.position-table thead th:nth-child(2) {
  background-color: #3498DB;
  color: #fff;
  font-weight: 700;
}

.position-table tbody td:nth-child(2) {
  background-color: #F9F9F9;
}

.position-table tbody th {
  text-align: left;
}

.position-table td {
  text-align: center;
}

.position-table td span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.nijumaru {
  background-color: #EAF7FF;
  color: #3498DB;
  font-weight: 700;
}

.maru {
  background-color: #E8F0D6;
  color: #4A6A12;
  font-weight: 700;
}

.sankaku {
  background-color: #FCEDD2;
  color: #7A4E0A;
  font-weight: 700;
}

.batsu {
  background-color: #DADADA;
  color: #121212;
  font-weight: 700;
}

.position-back {
  width: 27.77%;
  max-width: 480px;
  min-width: 220px;
  top: -3%;
  right: -7%;
}

/*  results-------------------------------------------------*/
.results {
  margin-top: 16rem;
  position: relative;
  padding: 16rem 0;
}
.results-bg{
  content: "";
  width: 75%;
  height: 100%;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 0 100px 100px 0;
  position:absolute;
  background-image: url(../images/recruit/bk/jisseki_bk.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.results-list {
  display: flex;
  gap: 2rem;
  margin-top: 6rem;
  z-index: 1;
  position: relative;
}

.results-item {
  width: calc((100% - 4rem)/3);
  border-radius: 12px;
  padding: 2.4rem 2.4rem 4rem;
}

.results-head {
  display: flex;
  gap: 4rem;
  margin-bottom: 1.6rem;
}

.results-info {
  width: calc(100% - 14rem);
}

.results-num {
  color: #3498DB;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.results-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.2rem;
}
.results-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.results-img {
  width: 10rem;
}

.results-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.results-back-1 {
  width: 15.04%;
  max-width: 260px;
  min-width: 180px;
  top: -11%;
  right: 20%;
}

.results-back-2 {
  width:23.14% ;
  max-width: 400px;
  min-width: 156px;
  bottom: -33%;
  left: 0;
}

/*  voice-------------------------------------------------*/
.voice {
  padding-top: 14.9rem;
  position: relative;
}

.voice-ttl {
  width: 41.66%;
  margin: 0 auto;
}

.voice .section-info {
  margin-top: -97px;
}

.voice-flex {
  display: flex;
  gap: 10rem;
  margin: 10rem 5rem 0;
}

.voice-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc((100% - 10rem)/2);
}

.voice-badge {
  position: absolute;
  width: 12rem;
  top: -40px;
  left: -60px;
}

.voice-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voice-img {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

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

.voice-info {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 2.4rem 3.2rem 3.2rem;
  flex-grow: 1;
}

.voice-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice-name h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.voice-name p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #3498DB;
}

.voice-tag {
  margin: 1.3rem 0 2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #121212;
}

.voice-back-1 {
  width: 18.51%;
  max-width: 320px;
  top: 5%;
  right: 1%;
}

.voice-back-2 {
  width: 17.76%;
  max-width: 307px;
  min-width: 138px;
  bottom: -1%;
  right: -2%;
}

.voice-back-3 {
  width: 10.59%;
  max-width: 183px;
  bottom: -15%;
  left: 3%;
}

/*  ai-------------------------------------------------*/
.ai {
  margin: 16rem auto 0;
  padding: 0 4rem;
  max-width: 1920px;
  z-index: 1;
  position: relative;
}

.ai-flex {
  display: flex;
  justify-content: space-between;
  padding: 8rem;
  background-image: url(../images/recruit/bk/image_bk02.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
}

.ai .section-ttl {
  margin-bottom: 6rem;
}

.white {
  color: #fff;
}

.ai-list {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  width: 100%;
  max-width: 910px;
  margin-left: 3rem;
}

.ai-item {
  width: calc((100% - 3.4rem)/3);
  background-color: #262623;
  border-radius: 24px;
  text-align: center;
  padding: 4rem 3.2rem;
}

.ai-item h3 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 3.2rem;
}

/*  30s-------------------------------------------------*/
.your {
  padding-top: 16rem;
  position: relative;
}

.your-list {
  display: flex;
  gap: 2rem;
  margin-top: 6rem;
}

.your-item {
  width: calc((100% - 4rem)/3);
  display: flex;
  flex-direction: column;
}

.your-tag {
  text-align: center;
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.your-img {
  width: 64.5%;
  margin: 0 auto;
}

.your-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.your-box {
  background-color: #fff;
  border-radius: 12px;
  margin-top: 0.8rem;
  overflow: hidden;
  flex-grow: 1;
}

.your-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #3498DB;
  padding: 2rem 2.4rem;
}

.your-icon {
  width: 24px;
  animation: rotateAnimation 6s linear infinite;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.your-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.your-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.your-txt {
  padding: 2.4rem 2.4rem 4rem;
  margin-left: 2.4rem;
  list-style-type: disc;
}

.your-txt li {
  list-style-type: disc;
}

.your-back {
  width: 34.72%;
  max-width: 600px;
  min-width: 200px;
  top: 0;
  right: 0;
}

/*  recruit-------------------------------------------------*/
.recruit {
  background-color: #262623;
  border-radius: 120px 120px 0 0;
  margin-top: 19.4rem;
  padding-top: 11.4rem;
  position: relative;
}

.recruit-ttl {
  width: 78%;
  margin: 0 auto;
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
}

.recruit-table {
  margin-top: 6rem;
}

.recruit-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  position: relative;
}

.recruit-table th,
.recruit-table td {
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  font-size: 1.4rem;
  line-height: 1.71;
  padding: 2.8rem 2.4rem;
}

.recruit-table tr:first-child th,
.recruit-table tr:first-child td {
  border-top: 1px solid #E5E5E5;
}

.recruit-table th {
  border-left: 1px solid #E5E5E5;
  background-color: #F9F9F9;
  color: #3498DB;
  font-weight: 700;
  text-align: center;
}

.recruit-table td {
  background-color: #fff;
  font-weight: 400;
  text-align: left;
}

.recruit-back-1 {
  width: 23.14%;
  max-width: 400px;
  min-width: 120px;
  left: 0;
  top: 17%;
}

.recruit-back-2 {
  width: 23.14%;
  max-width: 400px;
  min-width: 120px;
  right: 0;
  top: 40%;
}

/*  flow-------------------------------------------------*/
.flow {
  background-color: #262623;
  padding: 8rem 0 16rem;
  border-radius: 0 0 120px 120px;
  position: relative;
}

.flow-list {
  display: flex;
  gap: 1.1rem;
  margin-top: 6rem;
}

.flow-item {
  width: calc((100% - 3.3rem)/4);
  background-color: #fff;
  border-radius: 24px;
  padding: 3.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.flow-num {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #3498DB;
  margin-bottom: 0.4rem;
}

.flow-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.flow-txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
}

.flow-close-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3498DB;
  margin: 6rem 0 2.4rem;
}

.flow-close-txt {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
}

.flow-back-1 {
  width: 17.36%;
  max-width: 300px;
  min-width: 120px;
  top: -4%;
  left: -2%;
}

.flow-back-2 {
  width: 11.57%;
  max-width: 200px;
  min-width: 138px;
  top: 50%;
  right: 2%;
}

/*  message-------------------------------------------------*/
.message {
  padding-top: 16rem;
}

.message-flex {
  display: flex;
  gap: 6rem;
  margin-top: 6rem;
}

.message-img {
  width: 37rem;
}

.message-photo {
  border-radius: 20px;
  overflow: hidden;
}

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

.message-post {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
  margin: 2.4rem 0 0.4rem;
}

.message-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.message-txt {
  width: calc(100% - 43rem);
}

/*  cta-------------------------------------------------*/
.cta {
  padding-top: 16rem;
  max-width: 1920px;
  margin: 0 auto;
}

.cta-box {
  background-image: url(../images/recruit/bk/image_bk03.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem;
  border-radius: 40px;
  max-width: 1920px;
  margin: 0 4rem;
}

.cta .section-ttl {
  margin-bottom: 4rem;
}

.cta-btn {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.cta-btn .btn {
  height: 72px;
  width: 385px;
}

.cta-txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
  margin-top: 2rem;
}

/*  float-------------------------------------------------*/
.float {
  display: none;
}

/*  footer-------------------------------------------------*/
.footer {
  margin-top: 8rem;
  background-color: #3498DB;
  padding: 2.4rem 0;
}

.footer-copy {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1023px) {
   /*  challenge-------------------------------------------------*/
  .challenge-list {
    flex-direction: column;
    gap: 8rem;
  }

  .challenge-item {
    width: 100%;
  }
  .challenge-num {
    top: -20%;
    width: 30%;
  }
  /*  results-------------------------------------------------*/
.results-list {
  flex-direction: column;
  gap: 2rem;
}
.results-item {
  width: 100%;
}
/*  ai-------------------------------------------------*/
.ai {
  margin: 12rem auto 0;
  padding: 0 2rem;
}

.ai-flex {
  flex-direction: column;
  gap:4rem;
}
.ai-list {
  margin-left: 0;
}
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  /* header --------------------------------------------*/
  .header {
    height: 63px;
    padding: 0 2rem;
  }

  .header-flex {
    height: 63px;
  }

  .header-logo {
    max-width: 100px;
  }


  .header-btn {
    display: none;
  }

  .btn {
    width: 215px;
  }

  /* kv -------------------------------------------------*/
  .kv {
    min-height: auto;
    background-position: center top;
  }

  .kv-content {
    top: auto;
    bottom: 112px;
    transform: none;
    padding: 0 2rem;
  }

  .kv-ttl {
    font-size: 2.4rem;
  }

  .kv-ttl .large {
    font-size: 3rem;
  }

  .kv-heading {
    font-size: 2.4rem;
    margin-top: 2rem;
  }

  .kv-txt {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }

  .kv-sokyu {
    margin-right: -2rem;
    margin-left: -2rem;
  }

  /*  who-------------------------------------------------*/
  .who {
    padding-top: 0;
  }

  .ttl-head {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .section-ttl {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }

  .heading {
    font-size: 1.4rem;
  }

  .who-txt {
    font-size: 2rem;
    margin-top: 4rem;
  }

  .who-back-1 {
    top: -5%;
  }

  /*  services-------------------------------------------------*/
  .services {
    padding-top: 7.4rem;
  }

  .services-back {
    width: 100%;
  }

  .services-list {
    flex-direction: column;
    margin-top: -16px;
  }

  .services-item {
    width: 100%;
    padding: 2.8rem 2rem;
  }

  .services-num {
    margin-bottom: 2rem;
  }


  .services-img {
    width: 44.19%;
  }

  .services-ttl {
    font-size: 2rem;
    margin: 2rem 0 0.8rem;
  }

  .services-slider {
    margin: 8rem 0 2rem;
  }

  .services-slider .slick-list,
  .services-slider-second .slick-list {
    margin: 0 -10px;
  }

  .services-slider .slick-slide,
  .services-slider-second .slick-slide {
    margin: 0 10px;
  }

  /*  challenge-------------------------------------------------*/
  .challenge {
    padding: 8rem 0 12rem;
  }

  .challenge-list {
    margin-top: 10rem;
  }

  .challenge-num {
    top: -15%;
    width: 60%;
  }

  .challenge-head {
    gap: 1.5rem;
  }

  .challenge-ttl {
    font-size: 2rem;
    width: calc(100% - 11.5rem);
  }

  .challenge-tag,
  .voice-tag {
    margin: 2.4rem 0 1.6rem;
  }
.challenge-tag li,
.voice-tag li,
.your-tag,
.results-tag {
  font-size: 1.2rem;
}
  .challenge-back-1 {
    top: -1%;
    left: -10%;
  }

  .challenge-back-2 {
    top: 20%;
    right: -13%;
  }

  .challenge-back-3 {
    left: 0;
  }

  /*  problem-------------------------------------------------*/
.problem-slider-txt {
  font-size: 3.2rem;
}

.problem-slider-img {
  width: 40px;
}
  .problem-list {
    padding: 8rem 0;
    margin-right: -20px;
    margin-left: -20px;
  }
  .problem-list .slick-list{
  margin: 0 -8px;
}
 .problem-list .slick-track {
  display: flex;

}
 .problem-list .slick-slide {
  height: auto !important;
  margin: 0 8px;
}

.problem-arrow {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:absolute;
    top:50%;
    transform:translateY(-50%) ;
    z-index: 1;
}

.problem-arrow.prev-arrow {
    transform: translateY(-50%) rotate(180deg);
    left: 8px;
}
.problem-arrow.next-arrow{
  right:8px;
}

.problem-arrow.prev-arrow::before,
.problem-arrow.next-arrow::before{
    position:absolute;
    content: "";
    width:10px;
    height:10px;
    border-right: 1px solid #121212;
    border-top: 1px solid #121212;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}
  .problem-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 4rem)/3);
  }

  .problem-box {
    padding: 2.4rem 2.8rem 4rem;
  }

  .problem-box:before {
    border: 20px solid transparent;
    border-top: 20px solid #262623;
  }

  .problem-ttl {
    font-size: 1.8rem;
  }

  .problem-txt {
    font-size: 1.4rem;
    margin: 2rem 0;
  }

  .problem-summary {
    font-size: 1.4rem;
  }

  .problem-img {
    margin: 3.9rem auto 0;
    width: 60px;
  }
  /*  picture-------------------------------------------------*/
.picture {
  padding: 10rem 0 0 0;
  background-image:none;
}
.picture-flex {
  gap: 0.6rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.picture-item {
  width: calc((100% - 0.6rem)/2);
  flex-grow: 1;
}
.picture-item:before{
  top: 20px;
  right: 24px;
}
.picture-year {
  font-size: 1.2rem;
}

.picture-price {
  font-size: 4rem;
}

.picture-txt {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.picture-close {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 2rem;
}
.picture-img{
  margin-right:-20px;
  margin-left: -20px;
  margin-top: 4rem;
}
.picture-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.picture-back {
  max-width: 206px;
  top: -18%;
  left: 1%;
}
/* next-------------------------------------------------*/
.next {
  padding:8.3rem 0 12rem;
}

.next-ttl {
width: 53.34%;
}

.next .section-info {
  margin-top: -26px;
}

.next-flex {
  flex-direction: column;
  gap: 2rem;
  margin: 8rem auto 0;
  padding: 0 2rem;
}

.next-item {
  padding: 4rem 3.2rem;
  width: 100%;
}

.next-num {
  font-size: 8rem;
}

.next-main {
  font-size: 2rem;
  margin: 2rem 0 3.2rem;
}

.next-txt {
  font-size: 1.6rem;
}

.next-back-1 {
  top: 15%;
  left: 0;
}

.next-back-2 {
  top: 0;
  right: 0;
}
/*  position-------------------------------------------------*/
.position {
  padding-top: 12rem;
}

.position-table {
  margin-top: 4rem;
  overflow-x: scroll;
  margin-right: -20px;
  margin-left: -20px;
}

.position-table table {
  table-layout: auto;
}

.position-table thead th:nth-child(1),
tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
}

.position-table th,
.position-table td {
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem;
}
.position-table td{
  white-space: nowrap;
}
.position-table td span {
  padding: 0.2rem 0.8rem;
}
.position-back {
  top: -8%;
  right: -14%;
}
/*  results-------------------------------------------------*/
.results {
  margin-top: 12rem;
  padding: 8rem 0 12rem;
}
.results-bg{
  width: calc(100% - 2rem);
  border-radius: 0 60px 60px 0;
}
.results-list {
  margin: 4rem 2rem 0 0;
}

.results-head {
  gap: 1.4rem;
}

.results-info {
  width: calc(100% - 5.4rem);
}

.results-ttl {
  font-size: 2rem;
}

.results-img {
  width: 8rem;
}

.results-back-1 {
  top: -5%;
  right: -4%;
}

.results-back-2 {
  bottom: -5%;
}
/*  voice-------------------------------------------------*/
.voice {
  padding-top: 8.3rem;
}

.voice-ttl {
  width: 76.02%;
}

.voice .section-info {
  margin-top: -31px;
}

.voice-flex {
  flex-direction: column;
  gap: 6rem;
  margin: 6rem 2rem 0;
}

.voice-item {
  width:100%;
}

.voice-badge {
  width: 8rem;
  top: -20px;
  left: -20px;
}

.voice-info {
  padding: 2rem 2.4rem 4rem;
}

.voice-name h3 {
  font-size: 2rem;
}

.voice-name p {
  font-size: 1.2rem;
}

.voice-tag {
  margin: 1.2rem 0;
  padding-bottom: 1.4rem;
}

.voice-back-1,
.voice-back-3 {
  display: none;
}

.voice-back-2 {
  bottom: -8%;
}
/*  ai-------------------------------------------------*/
.ai {
  margin: 12rem auto 0;
  padding: 0 2rem;
}

.ai-flex {
  padding: 8rem 2rem;
}

.ai .section-ttl {
  margin-bottom: 4rem;
}

.ai-list {
  flex-direction: column;
  gap: 1.2rem;
}

.ai-item {
  width: 100%;
  padding: 2.4rem 2rem;
}

.ai-item h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
/*  30s-------------------------------------------------*/
.your {
  padding-top: 12rem;
}

.your-list {
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.your-item {
  width:100%;
}

.your-tag {
  margin: 0 auto 2rem;
}

.your-img {
  width: 55.2%;
}

.your-box {
  margin-top: 2rem;
}

.your-head {
  gap: 1.2rem;
  padding: 2rem;
}

.your-icon {
  width: 20px;
}
.your-ttl {
  font-size: 2rem;
}
/*  recruit-------------------------------------------------*/
.recruit {
  border-radius: 40px 40px 0 0;
  margin-top: 11.9rem;
  padding-top: 3.6rem;
}

.recruit-ttl {
  width: 82.3%;
  top: -5%;
}

.recruit-table {
  margin-top: 4rem;
}
.recruit-table th,
.recruit-table td {
  padding: 1.6rem 2rem;
  display: inline-block;
    width: 100%;
    float: left;
}

.recruit-back-1 {
  top: 10%;
}

.recruit-back-2 {
  top: 28%;
}
/*  flow-------------------------------------------------*/
.flow {
  padding: 8rem 0 12rem;
  border-radius: 0 0 40px 40px;
}

.flow-list {
  flex-direction: column;
  gap: 1.2rem;
  margin: 4rem 2rem 0;
}

.flow-item {
  width: 100%;
  border-radius: 12px;
  padding: 2.4rem 2rem;
}

.flow-num {
  margin-bottom: 1.5rem;
}

.flow-ttl {
  font-size: 2rem;
  margin-bottom: 2.4rem;
}

.flow-close-ttl {
  font-size: 2.4rem;
  margin: 8rem 0 2rem;
}

.flow-close-txt {
  font-size: 1.4rem;
}

.flow-back-1 {
  top: -3%;
  left: 6%;
}

.flow-back-2 {
  top: 68%;
  right: -1%;
}
/*  message-------------------------------------------------*/
.message {
  padding-top: 8rem;
}

.message-flex {
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.message-img {
  width: 100%;
  text-align: center;
}

.message-post {
  margin: 2.4rem 0 0.4rem;
}

.message-name {
  font-size: 2rem;
}

.message-txt {
  width:100%;
}
/*  cta-------------------------------------------------*/
.cta {
  padding-top: 8rem;
}

.cta-box {
  padding: 6rem 2rem;
  margin: 0 2rem;
}
.cta-btn {
  margin-top: 4rem;
}

.cta-btn .btn {
  height: 72px;
  max-width: 322px;
  width: 100%;
}

  /*  float-------------------------------------------------*/
  .float {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }

  .float-btn {
    display: flex;
  }

  .float-btn .btn {
    width: 50%;
  }
  /*  footer-------------------------------------------------*/
.footer {
  margin-top: 4rem;
}
}