.body-inner {
  overflow: hidden;
  font-family:hiragino-kaku-gothic-pron, sans-serif;
  /* width: 100vw; */
}
.top-wrap {
  background-color: #3689bb;
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;  
}

.top-wrap-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}

/* .back-top{
    background-color:#3689bb;
    margin-left: 10px;
    position: absolute;
    top: 100px;
    box-sizing: border-box;
    width: 100%;
    height: 80px;
    border-radius: 10px;
} */

.top-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 25px;
}

.top-logo {
  width: 82px;
  height: 82px;
  /* padding-right: 20px; */
  padding-top: 50px;
  /* margin-left: 10px; */
  margin-bottom: 25px;
}

@keyframes cloud{
  0% {
    transform:translate(2px,5px);
  }
  100% {
    transform:translate(-2px,0px);
  }
}

@keyframes river{
  0% {
    transform:translate(2px,4px);
  }
  100% {
    transform:translate(-2px,-4px);
  }
}

.top-cloud1 {
  width: 9.47%;
  position: absolute;
  top: 8%;
  left: 3.7%;
  animation: cloud 3s ease-in-out infinite alternate both;
}

.top-cloud2 {
  width: 4.11%;
  position: absolute;
  top: 4%;
  left: 13%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 0.5s;
}

.top-cloud3 {
  width: 8%;
  position: absolute;
  top: 8%;
  left: 28%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 1s;
}

.top-cloud4 {
  width: 7.16%;
  position: absolute;
  top: 8%;
  left: 45%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 0.7s;

}

.top-cloud5 {
  width: 3.92%;
  position: absolute;
  top: 11%;
  left: 52.7%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 0.8s;
}

.top-cloud6 {
  width: 7.28%;
  position: absolute;
  top: 4.6%;
  left: 59%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 0.2s;
}

.top-cloud7 {
  width: 6.4%;
  position: absolute;
  top: 9.7%;
  left: 82%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 1.2s;
}

.top-cloud8 {
  width: 3.14%;
  position: absolute;
  top: 8.8%;
  left: 90%;
  animation: cloud 3s ease-in-out infinite alternate both;
  animation-delay: 0.2s;
}

.top-wave {
  width: 35%;
  position: absolute;
  animation: cloud 3s ease-in-out infinite alternate both;
  bottom: 0;
  right: 0;
}

.top-river {
  width: 21%;
  position: absolute;
  top: 37%;
  left: 36.2%;
  animation: river 4s ease-in-out infinite alternate both;
}


.top-main {
  padding-right: 40px;
  flex: 1;
  position: relative;
}

.top-ground {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.top-map {
  position: relative;
  z-index: 2;
  height: 780px;
  width: 100%;
  background-color: #eaf6fa;
  background-size: cover;
  border: 15px solid #fff;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  border-top: none;
  /* border-radius: 0 0 10px 0; */
}

.top-map-img {
  position: absolute;
  left: calc(50vw - 1040px);
  bottom: 0;
  width: 1680px;
  height: 100%;
}

@media screen and (min-width: 1920px) {
  .top-map-img {
    left: 0;
  }
}

.top-town {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.top-car {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  animation: carAnimationWide 8s ease-in infinite;
}

.top-ryoma {
  width: 63.4%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-train {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  animation: trainAnimationWide 15s ease-in infinite;
}

.top-castle {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 500px;
}

@keyframes carAnimationWide {
  from {
    transform: translate(2000px, 250px);
  }
  to {
    transform: translate(-200px, 640px);
  }
}

@keyframes trainAnimationWide {
  from {
    transform: translate(-240px, 180px);
  }
  to {
    transform: translate(1680px, 180px);
  }
}

@media screen and (max-width: 768px) {
  .top-map-img {
    position: absolute;
    left: calc(50vw - 600px);
    bottom: 0;
    width: 840px;
    height: 100%;
  }  
  .top-train {
    width: 120px;
    animation: trainAnimation 15s linear infinite;
  }
  .top-car {
    width: 50px;
    animation: carAnimation 8s linear infinite;
  }
  .top-cloud1 {
    top: 16%;
  }
  
  .top-cloud2 {
    top: 8%;
  }
  
  .top-cloud3 {
    top: 16%;
  }
  
  .top-cloud4 {
    top: 16%;
  }
  
  .top-cloud5 {
    top: 22%;
  }
  
  .top-cloud6 {
    top: 9.2%;
  }
  
  .top-cloud7 {
    top: 19.4%;
  }
  
  .top-cloud8 {
    top: 18.6%;
  }
  .top-river {
    top: 45%;
  }
} 

@keyframes carAnimation {
  from {
    transform: translate(1000px, 180px);
  }
  to {
    transform: translate(-200px, 400px);
  }
}

@keyframes trainAnimation {
  from {
    transform: translate(-240px, 150px);
  }
  to {
    transform: translate(1680px, 150px);
  }
}



.top-girl {
  width: 415px;
  height: auto;
  position: absolute;
  bottom: 0px;
  right: 150px;
  z-index: 10;
}

.top-balloon {
  width: 180px;
  height: auto;
  position: absolute;
  right: 32px;
  bottom: 74px;
}

.top-menu {
  width: 100px;
  height: 100px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  background-color: #005689;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.top-menu-btn {
  width: 45px;
  height: auto;
}

.top-menu:hover {
  background-color: #12b0d6;
}

.top-title-wrap {
  background-color: #569fcc;
  padding-bottom: 18vw;
}
@media screen and (max-width: 1280px) {
  .top-title-wrap {
    padding-bottom: 30vw;
  }
}
.bottom-skew svg,
.bottom-skew-alt svg,
.top-skew svg {
  width: 100%;
  display: block;
}

.bottom-skew,
.bottom-skew-alt,
.top-skew {
  color: #569fcc;
}

.top-skew {
  transform: translateY(1px);
  z-index: 1;
  position: relative;
}

.bottom-skew {
  margin-bottom: -40vw;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.top-title-inner {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  padding-right: 40px;
  padding-left: 40px;
}
.top-title-inner::after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/themes/sss/image/assets/know-img2-1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 40%;
  max-width: 350px;
  aspect-ratio: 237 / 315;
  top: 86%;
  right: calc(10vw - 10px);
  transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .top-title-inner::after {
    top: 90%;
    right: calc(2vw - 10px);
  }
}
/* モバイルサイズ */
@media screen and (max-width: 768px) {
  .top-title-inner::after {
    width: 60%;
    height: 30vh;
    right: -15%;
    top: 95%;
  }
}
/* 小さなモバイルサイズ */
@media screen and (max-width: 480px) {
  .top-title-inner::after {
    width: 100%;
    right: -25%;
    top: 96%;
  }
}
.top-title-outer {
  position: relative;
  margin-top: -20vw;
  z-index: 1;
}

.top-title {
  /* justify-content: center; */
  flex: 1;
  /* padding-left: 100px; */
  /*padding-top: 50px;*/
}

.catch-copy {
  padding-top: 115px;
  padding-right: 25%;
}
.business-know {
  margin-top: 20%;
}
.know-contents {
  margin-top: 3rem;
  position: relative;
}

.know-text {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .know-text {
    max-width: 100%;
  }
}
a.know-btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 200px;
  margin: auto;
  margin-bottom: 2rem;
  padding: 1rem 3rem;
  font-weight: bold;
  border: 2px solid #FFF031;
  color: #3689BB;
  border-radius: 100vh;
  transition: 0.5s;
  background-color: #FFF031;
}
a.know-btn:hover {
  color: #fff;
  background: #27acd9;
}

.top-sub-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  padding-right: 50px;
  padding-left: 20px;
}

.business-wrap {
  justify-content: center;
  flex: 1;
  padding: 15px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.business-inner {
  position: relative;
}

.business-doboku {
  color: #fff;
  font-size: 3vw;
  position: absolute;
  top: 51%;
  left: 42.5%;
}
.business-doboku small {
  display: block;
  font-size: 1vw;
  margin-top: 5px;
  text-align: center;
}

.business-hosou {
  color: #fff;
  font-size: 3vw;
  position: absolute;
  top: 102%;
  left: 13%;
}

.business-kouji {
  color: #fff;
  font-size: 3vw;
  position: absolute;
  top: 102%;
  right: 5%;
}

.business-img {
  width: 100%;
  height: auto;
}

/* main */

.main-wrap {
    background-image: url(../../image/assets/main-back.png);
    background-repeat: repeat;
    padding-top: 20vw;
    padding-left: 40px;
    padding-right: 40px;
    clip-path: polygon(0 0, 100% 30vw, 100% 100%, 0 100%);
    margin-top: -30vw;
    z-index: 1;
    position: relative;
}

.four-k-wrap {
  /* max-width: 1280px; */
  position: relative;
}

.four-k-top-wrap {
  max-width: 500px;
  display: flex;
}

.four-k-top {
  color: #569fcc;
  font-size: 51px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  justify-content: center;
  padding-top: 150px;
  /* position: absolute;
    top: 100px; */
}

.four-k {
  justify-content: center;
  /* position: absolute;
    left: 250px; */
}

.four-k-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: #005689;
  margin-bottom: 200px;
  width: 40%;
}

.four-k-area-outer {
  position: relative;
}

.four-k-area-wrap {
  display: flex;
  width: 100%;
  /* margin-bottom: -30vw; */
}

.four-k-area {
  flex: 1;
  padding: 30px;
}

.four-k-area-child {
  margin-bottom: 70px;
}

.four-k-area:nth-child(2) {
  transform: translateY(-200px);
}

.four-k-area:nth-child(3) {
  transform: translateY(-400px);
}

.back-circle {
  border-radius: 50%;
  background-color: #f0f8fb;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  position: relative;
}

.back-circle-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* position: absolute;
    top: 300px;
    right: 40px; */

.four-k-img {
  /* position: absolute;
    z-index: 1;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px; */
  width: 50%;
  /* transform: translate(50px,50px); */
}

.four-k-img-1 {
  width: 65%;
}

.four-k-img-2 {
  width: 110%;
}

.four-k-img-3 {
  width: 110%;
}

.four-k-img-4 {
  width: 110%;
}

.four-k-item {
  position: relative;
  color: #3689bb;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 52px;
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-top: -50px;
  z-index: 1;
  font-weight: bold;
}

.four-k-sub-item {
  font-size: 24px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #005689;
  word-break: normal;
  height: auto;
  margin-top: 40px;
  margin-left: 40px;
  line-height: 2;
}

.four-k-no-4{
  margin-left: -30px;
}

.four-k-item-text {
  font-size: 3.47vw;
}

.back-stripe-wrap {
  width: 50%;
  transform: translateY(-25vw);
  position: absolute;
  bottom: 0;
  left: 0;
}

.back-stripe {
  background-image: url(../../image/assets/stripe.png);
  height: 260px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-right: 5vw;
  margin-left: -40vw;
}

.back-stripe-alt-wrap {
  flex: 1;
}

.back-stripe-alt {
  background-image: url(../../image/assets/stripe2.png);
  height: 260px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-right: -60vw;
  margin-left: 40px;
  /* margin-left: 60vw; */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  /* padding-right: 5vw; */
  padding-left: 35px;
}

.four-k-bubble-wrap,
.four-k-bubble-wrap-alt {
  position: relative;
  width: 220px;
  /* max-width: 180px; */
  min-width: 120px;
}

.four-k-bubble-wrap .four-k-bubble,
.four-k-bubble-wrap-alt .four-k-bubble-alt {
  position: absolute;
  bottom: 0;
  left: 26px;
  width: 100%;
  height: auto;
}

.four-k-bubble-wrap-alt .four-k-bubble-alt {
  width: 141px;
  left: -55px;
  bottom: 60px;
}

.four-k-human-wrap {
  width: 28vw;
  max-width: 370px;
  min-width: 252px;
  height: auto;
  display: flex;
  align-items: flex-end;
}

.four-k-human {
  width: 100%;
}

.four-k-human-wrap-alt {
  width: 308px;
  /* max-width: 300px; */
  min-width: 200px;
  height: auto;
  display: flex;
  align-items: flex-end;
  
}

.four-k-human-alt {
  width: 100%;
}
.rec-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 35vh;
  margin-top: -30vh;
  text-align: center;

}
@media screen and (max-width: 1024px) {
  .rec-menu {
    margin-top: -20vh;
  }
}
@media screen and (max-width: 768px) {
  .rec-menu {
    margin-top: 5vh;
    padding-bottom: 5vh;
  }
}
.rec-menu img {
  width: 70%;
}
.menu-btn {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 8%;
}
.menu-btn a {
  border-radius: 50%;
  display: block;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  color: #FFF031;
  background: #3689BB;
  text-decoration: none;
  text-align: center;
  margin: 10px 0;
  border: 10px solid #fff;
  transition: .3s;

}
.menu-btn a:hover {
  background: #FFF031;
  color: #3689BB;
}
.menu-btn p {
  position: relative;
  font-weight: bold;
  font-size: 2em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  margin-top: 25%;
}
.menu-btn img {

  width: 25px;
  height: 25px;
  position: relative;
  background: #fff;
  border-radius: 50%;
  padding: 3%;
}

@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .menu-btn a {
    width: 150px;
    height: 150px;
    border: 5px solid #fff;
    margin: 5% auto;
  }
  .menu-btn p {
    font-size: 1.3em;
    margin-top: 20%;
  }
  .menu-btn p span {
    font-size: 1em;
  }
}
.achievement {
  margin-top: -17vw;
}

.achievement-wrap {
  position: relative;
  padding-top: 80px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #569fcc;
}

.achievement-section-title {
  width: 100%;
  height: auto;
  max-width: 500px;
}
.achievement-logo {
  display: none;
}

.achievement-p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 70px;
  line-height: 1.7;
}


.achievement-card {
  width: 100%;
  display: flex;
  background-color: #ffffff;
  border-radius: 50px;
}
.achievement-card+.achievement-card { margin-top:50px; }
.achievement-card .photo_box { width:370px; flex-shrink:0; }
.achievement-card .photo_box img { width:100%; border-radius:50px 0 0; }
.achievement-card .author { padding:30px; font-family:"M PLUS Rounded 1c", sans-serif; }
.achievement-card .author small {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #909090;
}
.achievement-card .author b {
  display: block;
  font-size: 31px;
  font-weight: 500;
  color: #606B71;
  margin-top: 15px;
}
.achievement-card .txt_box { padding:95px 3vw 55px 3.25vw; }
.achievement-card .message-title {
  color: #606B71;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 35px;
  letter-spacing: 0.05em;
  font-family:"M PLUS Rounded 1c", sans-serif;
}
.achievement-card .message-title span {
  background-image: linear-gradient(#FFF040, #FFF040);
  background-repeat: no-repeat;
  background-size: 100% 15px;
  background-position: center 25px;
}
.achievement-card .message-title::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -50px;
  width: 158px;
  height: 43px;
  background: url(../../image/assets/message_label.svg) no-repeat;
  background-size: contain;
}
.achievement-card .message-content {
  color: #606B71;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}

/*.achievement-img {
  width: 100%;
  height: auto;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}*/

/*.achievement-area {
 background-color: #FFFFFF;
    padding-left: 30px;
    padding-bottom: 40px;
    border-radius: 0 0 50px 50px;
    margin-right: 35px; 
}*/

.br-sp {
  display: none;
}

.slick-track {
  display: flex!important;
}

.slick-slide {
  height: auto !important;
}

/*.achievement-title {
  font-size: 26px;
  font-family: m-plus-rounded-1p, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #606b71;
  margin: 0;
  font-weight: normal;
  padding: 25px 30px;
  padding-right: 40px;
  min-height: 40px;
  line-height: 1.7;
}

.achievement-genre {
  padding: 10px;
  width: 100px;
  font-family: m-plus-rounded-1p, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #606b71;
  background-color: #f7f8ec;
  border: 1px solid #d1cfb5;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  margin-left: 30px;
}

.achievement-date {
  font-family: m-plus-rounded-1p, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #909090;
  margin-left: 10px;
  display: inline-block;
}*/

.flow-wrap {
  background-color: #569fcc;
  padding-top: 190px;
}

.flow-section-title {
  width: 100%;
  height: auto;
  max-width: 377px;
}

.flow-p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 70px;
  line-height: 1.7;
}

.supervisor-flow, .sales-flow { padding-top: 13px; overflow:hidden; }

.flow-inner {
  display: flex;
  column-gap: 60px;
  border-radius: 50px;
  background-color: #FFF;
  padding: 107px 60px 87px;
}

.flow-heading {
  position: relative;
  color: #3689BB;
  font-size: 27px;
  font-weight: 500;
  width: fit-content;
  background-color: #FFF;
  padding-left: 63px;
  padding-right: 15px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.sales-heading { padding-right:3.5vw; }
.flow-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 53px;
  background: url(../../image/assets/icon_clock.svg) no-repeat;
  background-size: contain;
}
.flow-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #3689BB;
}

.flow-inner .photo-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  margin-block: 40px 50px;
  justify-content: space-between;
}

.flow-inner figure { margin:0; max-width:47.3%; }
.flow-inner figure img { width:100%; border-radius:21px; }

.flow-inner dl {
  color:#606B71;
  display:block;
  margin-block: 30px;
  position: relative;
  border: 1px solid #78C3DE;
  border-radius: 20px;
}
.flow-inner dl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  margin: auto;
  width: 7px;
  height: 20px;
  background: url(../../image/assets/circles.svg) no-repeat;
  background-size: contain;
}
.flow-inner dl:nth-last-child(2)::after { display:none; }
.flow-inner dl dt {
  display: flex;
  padding: 12px 23px;
  align-items: center;
  background-color: #E0F8FF;
  border-radius: 20px 20px 0 0;
  justify-content: space-between;
}
.flow-inner dl dt p { margin:0; font-size:20px; line-height:1; }
.flow-inner dl dt p:nth-child(1) { font-weight:600; }
.flow-inner dl dt p:nth-child(2) { font-weight:300; }
.flow-inner dl dd {
  margin:0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding:10px 23px;
}
.flow-inner dl.no-details dt { border-radius:20px; }
.flow-inner dl.no-details dd { padding:0; }
.flow-inner .note { font-size:16px; font-weight:300; line-height:1.7; color:#606B71; }

.recruitment-wrap {
  background-color: #569fcc;
  color: white;
  padding-top: 160px;
}

.recruitment-inner {
  display: flex;
  align-items: flex-end;
  margin-bottom: 150px;
}

.recruitment-sub {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 2;
  font-feature-settings: "palt";
}

.recruitment-text {
  flex: 1;
}

.recruitment-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #005689;
  color: #ffffff;
  text-align: center;
  /* padding: 10px 0; */
  font-size: 39px;
  border-radius: 20px 20px 0 0;
  height: 97px;
  line-height: 97px;
  margin-bottom: 0;
  margin-top: 105px;
  position: relative;
  z-index: 1;
  font-weight: normal;
}

.recruitment-title:after {
  content: "";
  display: block;
  background-color: #005689;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: -1;
  margin-left: -155px;
}

.recruitment-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: slategrey;
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.recruitment-table td,
.recruitment-table th {
  vertical-align: top;
}

.recruitment-table td { font-weight:300; }

.recruitment-table-wrap {
  overflow-x: auto;
}

.recruitment-item-wrap {
  font-size: 18px;
  font-weight: 600;
  color: #606b71;
}

.recruitment-item {
  font-weight: bold;
  text-align: left;
  padding: 30px 35px;
  white-space: nowrap;
}

.recruitment-main-wrap {
  transform: translateY(20vw);
  margin-top: -20vw;
}

.sub {
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 1.7;
}

.recruitment-item-wrap:nth-child(odd) {
  background-color: #ffffff;
}

.recruitment-item-wrap:nth-child(even) {
  background-color: #e9f2f8;
}

.balance-wrap {
  display: flex;
  column-gap: 4.2%;
  background: #FFF;
  padding: 53px 60px;
  border-radius: 50px;
  position: relative;
  bottom: calc((20vw + 110px) * -1);
  justify-content: space-between;
}
.balance-wrap .photo { width:181px; flex-shrink:0; }
.balance-wrap .photo img { width:100%; }
.balance-wrap .txt { color: #606B71; }
.balance-wrap .txt .mid {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  width: fit-content;
  font-family: "M Plus Rounded 1c", sans-serif;
}
.balance-wrap .txt .mid span {
  background-image: linear-gradient(#FFF040, #FFF040);
  background-repeat: no-repeat;
  background-size: 100% 15px;
  background-position: center 25px;
}
.balance-wrap .txt .come {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}


.last {
  border-radius: 0px 0px 20px 20px;
  padding-bottom: 97px;
}

.map-outer {
  padding-top: calc(20vw + 250px);
  background-image: url(../../image/assets/main-back.png);
  background-repeat: repeat;
  margin-top: -20vw;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 824px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-wrap {
  background-color: #3689bb;
  color: #ffffff;

  padding-top: 110px;
  position: relative;
}

.footer-wrap-inner {
  display: flex;
  /* padding: 100px; */
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.back-to-top-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #3689BB;
  transition: 0.3s all;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.back-to-top-btn:hover {
  background-color: #55ABE0;
}

.footer-logo-wrap {
  width: 260px;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  padding-top: 50px;
}

.footer-logo-wrap .top-logo {
    width: 82px;
    height: 82px;
    padding-right: 20px;
    padding-top: 0;
    margin-bottom: 0;
}

.info-wrap {
  flex: 2;
  padding-right: 75px;
  padding-left: 40px;
  position: relative;
}

.copyright {
  position: absolute;
  bottom: 105px;
  left: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 3px;
}

.info {
  line-height: 1.7;
}

.info dt {
  width: 100px;
}

.info dd {
  margin-left: 0;
  flex: 1;
}

.recruitment-copy-title {
  color: #fff031;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  margin: 0;
  line-height: 1.3;
}

.recruitment-copy {
  width: 100%;
  height: auto;
}

.footer-logo {
  width: 157px;
  height: auto;
}

dl {
  display: flex;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

dl dt {
  font-weight: bold;
  justify-content: right;
  /* padding-bottom: 5px; */
}

.inquiry-no {
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #3689bb;
  margin-top: 70px;
  background-color: #c7deec;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: bold;
}

.tel-wrap {
  margin: 20px 0px 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-mark {
  margin-right: 10px;
}

.tel-no {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 42px;
  display: inline-block;
  font-weight: bold;
}

.time {
  border-top: solid 1px #afd0e4;
  border-bottom: solid 1px #afd0e4;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.form-wrap {
  background-color: #005689;
  border-radius: 50px 0 0 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 105px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.form-wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 100%;
  height: 100%;
  width: calc(100% + 50vw - 640px);
  background-color: #005689;
  z-index: -1;
}

.form {
  max-width: 700px;
  width: 100%;
}

.form-wrap-outer {
  flex: 3;
}

.form-top-wrap {
  background-color: #005689;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 5px dotted #ffffff;
  padding-bottom: 35px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.form-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 30px;
  flex: 1;

  /* margin-bottom: 50px; */
}

.form-title-sub {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  /* justify-content: space-between; */
  /* width: 310px; */
  /* margin-left: 55px; */
}

.form-table th {
  border: 0px none;
  padding: 5px 0;
}

.form-table td {
  padding: 5px 0 0 30px;
}

.form-table {
  background-color: #005689;
  position: relative;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-box {
  background-color: #c7deec;
  border-radius: 8px;
  border-color: white;
  padding: 10px;
  border: 1px solid #fff;
  max-width: 100%;
  box-sizing: border-box;
  width: 220px;
}

.form-box-short {
  width: 60px;
}

.form-box-long {
  width: 100%;
}

.form-box.textarea {
  width: 100%;
}

.footer-table-item {
  font-weight: 600;
  color: white;
  text-align: left;
  padding-bottom: 10px;
  font-size: 18px;
  vertical-align: baseline;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 35px;
  line-height: 1.7;
  white-space: nowrap;
}

.item {
  font-weight: 600;
  border: solid 1px #fff031;
  color: #fff031;
  font-size: 11px;
  display: inline-block;
  padding: 1px 2px;
  vertical-align: middle;
  margin-left: 20px;
}

.item-a {
  color: yellow;
  font-weight: normal;
  font-size: 10px;
}

.send-btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 40px;
  text-decoration: none;
  color: #ffffff;
  background-color: #4bbdc1bc;
  width: 273px;
  text-align: center;
  font-size: 22px;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.send-btn:hover {
  background-color: #15DBD3;
}

.drawer {
  transform: translateX(300px);
  width: 300px;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: #005689;
  transition: 0.3s all;
  overflow-y: auto;
}

.drawer.active {
  transform: translateX(0);
}

.drawer-button {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}

.drawer-button:hover {
  background-color: #12b0d6;
}

.drawer-button img {
  width: 30px;
}

.drawer-button-label {
  color: #fff;
}

.drawer-list {
  margin-top: 156px;
  list-style-type: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.drawer-list li {
  display: block;
}

.drawer-list a {
  display: inline-block;
  padding: 10px 0 10px 25px;
  margin-bottom: 25px;
  text-decoration: none;
  position: relative;
}

.drawer-list a:link,
.drawer-list a:visited {
  color: #fff;
}

.drawer-list a:hover {
  color: #5ADFFF;
}

.drawer-list a:after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 1px;
  width: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.drawer-list a:hover:after {
  width: 100%;
}

.drawer-home { width:50.7%; margin:35px auto; }
.drawer-home a {
  color: #FFF;
  height: 50px;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 33px;
  border: 1px solid #FFF;
}
.drawer-home a:hover {
  background-color: #FFF;
  color: #005689;
}

.drawer-tel {
  padding: 50px;
  text-align: center;
}

.drawer-tel-text {
  color: #fff;
  font-size: 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.drawer-tel-btn {
  display: block;
  padding: 20px 15px;
  background-color: #4BBDC1;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 23px;
  color: #fff;
  position: relative;
}

.drawer-tel-btn:before {
  position: absolute;
  content: url(../../image/assets/drawer-tel.svg);
  top: 25px;
  left: 30px;
}

.drawer-tel-btn:link {
  color: #fff;
  text-decoration: none;
  border-radius: 30px;

}

.drawer-tel-info {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.pc-hide {
  display: none;
}

@keyframes animContent {
  from {
    /* Add starting values for animation */
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    /* Add Ending values for animation */
    transform: translateY(0);
    opacity: 1;
  }
}

.animate {
  transform: translateY(80px);
  transition: 0.6s all;
}

.animate.active {
  opacity: 1;
  transform: translateY(0);
}

.error {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 11px;
}

p.catchcopy-sub {
  color: #fff031;
  font-family: 'Noto Sans', sans-serif;
  margin-bottom: 60px;
  font-size: 25px;
  font-weight: 700;
  padding-left: 20px;
}

@media screen and (max-width: 1280px) {
  .form-wrap {
    margin-right: 0;
  }
  .form-top-wrap {
    display: block;
  }
  .form-title {
    margin-bottom: 25px;
  }
  .form-table,
  .form-table tbody,
  .form-table tr,
  .form-table td,
  .form-table th {
    display: block;
  }

  .form-table td {
    padding-left: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .map-wrap {
    height: 570px;
  }
  .drawer {
    width: 100%;
    transform: translateX(100%);
  }
  .pc-hide {
    display: block;
  }
  .br-sp {
    display: inline-block;
  }
  .copyright {
    font-size: 10px;
  }
  .top-wrap,
  .top-wrap-inner {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
  .top-title {
    padding: 0;
  }
  .achievement {
    margin-top: -18vw;
  }
  .top-logo-wrap {
    flex-direction: row;
    padding: 15px;
  }
  .top-menu {
    width: 72px;
    height: 72px;
    border-bottom-left-radius: 40px;
  }
  .drawer-list {
    margin-top: 86px;
    padding: 0 90px
  }
  .drawer-list a {
    font-size: 20px;
  }
  .drawer-button {
    width: 72px;
    height: 72px;
    border-bottom-left-radius: 40px;
  }
  .drawer-button img {
    width: 30px;
    height: auto;
    margin-bottom: 8px;
  }
  .drawer-button-label {
    font-size: 14px;
  }
  .drawer-tel {
    padding: 0 50px;
    text-align: center;
  }
  .drawer-tel-text {
    font-size: 18px;
  }
  .top-menu-btn {
    width: 34px;
    height: auto;
  }
  .top-logo {
    margin-right: 12px;
    padding-top: 0;
    margin-bottom: 0;
    width: 46px;
    height: auto;
  }
  .top-logo-name {
    width: 95px;
    height: auto;
  }
  .top-sub-title {
    padding-left: 0;
    padding-right: 0;
  }
  .recruitment-sub {
    padding: 0 20px;
  }
  .top-main {
    background-color: #569fcc;
    padding: 0 0 15px 0;
  }
  .top-map {
    width: auto;
    /* height: auto; */
  }
  .top-girl {
    width: 345px;
  }
  .top-title-inner {
    display: block;
    position: relative;
  }
  
  .top-title-wrap {
    margin-top: 0;
    padding: 0;
    margin: 0;
    width: auto;
  }
  .top-title-inner {
    padding-top: 45px;
    width: auto;
  }
  .back-stripe-wrap {
    margin-left: -30px;
    margin-right: 0;
    padding-right: 0;
    position: static;
    width: auto;
    transform: translateY(0);
  }
  .back-stripe-alt {
    margin-left: 0;
    height: 170px
  }
  .catchcopy-sub{
    text-align: center;
  }
  .business-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .four-k-area-wrap {
    display: block;
    margin-bottom: 0;
  }
  .four-k-area {
    transform: none !important;
  }
  .four-k-sub {
    padding: 0 15px;
  }
  .back-stripe {
    transform: none;
  }
  .main-wrap {
    padding-bottom: 20vw;
  }
  @media screen and (max-width: 1024px) {
    .main-wrap {

    }
  }
  .footer-wrap-inner {
    flex-direction: column;
  }
  .info-wrap {
    order: 2;
  }
  .form-wrap-outer {
    order: 1;
    margin-left: 25px;
  }
  .form-wrap {
    margin-right: 0;
  }
  .info-wrap {
    padding-top: 75px;
    padding-bottom: 30px;
  }
  .copyright {
    position: static;
    margin-top: 25px;
  }
  .top-map {
    height: 450px;
    background-position: 65% bottom;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .top-girl {
    right: 50%;
    width: 200px;
    margin-right: -100px;
    margin-bottom: 15px;
    right: 180px;
  }
  .top-balloon {
    bottom: 50px;
    right: 12px;
    width: 103px;
  }
  .top-title-outer .top-skew {
    display: none;
  }
  .top-title-outer {
    margin-top: 0;
  }
  .top-title-inner {
    padding-right: 40px;
    padding-left: 40px;
  }
  .business-wrap {
    padding-bottom: 150px;
  }
  .four-k-top {
    flex: 1;
    padding-top: 0;
  }
  .four-k-img-wrap {
    flex: 1;
  }
  .main-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
  .four-k-sub-item {
    margin-left: 0;
    padding: 0 20px;
  }
  .achievement-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
  .four-k-top-wrap {
    padding-top: calc(10vw + 50px);
    align-items: center;
  }
  .four-k-top {
    font-size: 28px;
    white-space: nowrap;
    margin-top: 80px;
  }
  .four-k {
    width: 80%;
  }
  .four-k-sub-item {
    margin-top: 25px;
    font-size: 18px;
  }
  .four-k-no-4{
    margin-left: 0;
  }
  .four-k-area {
    padding-right: 0;
    padding-left: 0;
  }
  .four-k-area-child {
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  .achievement-logo {
    display: block;
    width: 100%;
    height: auto;
  }
  .back-stripe {
    padding-right: 10px;
    height: 150px;
    margin-bottom: 30px;
  }
  .recruitment-inner {
    display: block;
  }
  .achievement-card {
    display: block;
    border-radius: 25px;
  }
  .achievement-card .photo_box {
    width: 100%;
  }
  .achievement-card .photo_box img {
    border-radius: 25px 25px 0 0;
  }
  .achievement-card .txt_box {
    padding: 50px 15px 25px;
  }
  .achievement-title {
    padding: 15px;
    font-size: 17px;
  }
  .flow-wrap {
    padding-top: 115px;
  }
  .flow-section-title { max-width:253px; }
  .flow-inner{
    display: block;
    padding: 30px 15px;
    border-radius: 25px;
  }
  .flow-inner .photo-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .flow-inner figure {
    max-width: 58.5%;
  }
  .flow-inner .sales-flow { margin-top:60px; }
  .flow-inner dl dt p:nth-child(1) {
     font-size: 17px;
  }
  .flow-inner dl dt p:nth-child(2) {
    font-size: 14px;
  }
  .balance-wrap {
    display: block;
    padding: 40px 15px 70px;
  }
  .balance-wrap .photo {
    margin: 0 auto 30px;
  }
  .balance-wrap .txt .mid {
    font-size: 21px;
  }
  .balance-wrap .txt .mid span {
    background-size: 100% 11px;
    background-position: center 20px;
  }
  .balance-wrap .txt .come {
     font-size: 15px;
  }
  .four-k-area-wrap {
    margin-bottom: 100px;
  }
  .four-k-item-text {
    flex: 1;
    text-align: center;
    transform: translateX(-42px);
    font-size: 44px;
  }
  .business-doboku {
    font-size: 29px;
    top: 48%;
    left: 41%;
  }
  .business-doboku small { font-size:10px; }
  .business-kouji {
    font-size: 29px;
  }
  .business-hosou {
    font-size: 29px;
  }
  
  .recruitment-title {
    font-size: 25px;
    line-height: 60px;
    height: 77px;
  }
  .recruitment-title:after {
    width: 200px;
    height: 200px;
    margin-left: -100px;
  }
  .four-k-item {
    font-size: 38px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .four-k-area-child:nth-child(2) {
    padding-top: 30px;
  }
  .four-k-sub {
    margin-bottom: 65px;
  }
  .four-k-bubble-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .back-stripe-alt {
    padding-left: 10vw;
    margin-top: 30vw;
  }
  .recruitment-item {
    padding: 15px;
  }
  .recruitment-item-wrap,
  .recruitment-table {
    font-size: 15px;
  }
  .sub {
    padding: 15px;
  }
  .achievement-genre {
    width: 60px;
    margin-left: 15px;
    font-size: 11px;
  }
  .form-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
  .four-k-area {
    padding-right: 15px;
    padding-left: 15px;
  }
  .info-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
  .tel-no {
    font-size: 30px;
  }
  .info {
    font-size: 15px;
  }
  .four-k-sub {
    width: auto;
  }
  .form-title {
    font-size: 28px;
  }
  .four-k-human-wrap-alt {
    width: 60vw;
  }
  .footer-logo-wrap {
    display: flex;
  }
  .footer-logo-wrap .top-logo {
    width: 70px;
  }
  
}

@media screen and (max-width: 480px) {
  .four-k-bubble-wrap {
    transform: translateX(60px); 
  }
  .four-k-bubble-wrap .four-k-bubble, .four-k-bubble-wrap-alt .four-k-bubble-alt {
      position: absolute;
      width: 100%;
      height: auto;
  }
  .four-k-bubble-wrap .four-k-bubble {
    width: 140px;
    bottom: 15px;
    left: 74px;
  }
  .four-k-bubble-wrap-alt .four-k-bubble-alt {
    width: 96px;
    left: -12px;
    bottom: 50px;
  }
  .four-k-bubble-wrap-alt {
    transform: translateX(-30px);
  }
  .tel-no a:hover,
  .tel-no a:link,
  .tel-no a:visited,
  .tel-no{
    color: #FFFFFF;
    text-decoration: none;
  }
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #FFFFFF;
  }
}

@media screen and (min-width: 1280px) {
  .four-k-item-text {
    font-size: 52px;
  }
  .business-doboku {
    font-size: 52px;
  }
  .business-kouji {
    font-size: 52px;
  }
  .business-hosou {
    font-size: 52px;
  }
}