@charset "UTF-8";
.mt-50 {
  margin-top: 50px;
}

@media screen and (max-width: 640px) {
  .sp-mt-50 {
    margin-top: 50px;
  }
}
.fpx-19 {
  font-size: 19px;
}
.fpx-21 {
  font-size: 21px;
}
.fpx-34 {
  font-size: 34px;
}

.ln-16 {
  line-height: 1.6;
}

.oval-btn-group-orange .oval-btn {
  border-color: #f0983f;
}
.oval-btn-group-orange .oval-btn .oval-btn__txt {
  background: #f0983f;
}
.oval-btn-group-green .oval-btn {
  border-color: #79c944;
}
.oval-btn-group-green .oval-btn .oval-btn__txt {
  background: #79c944;
}
.oval-btn-group-blue .oval-btn {
  border-color: #5EA6EF;
}
.oval-btn-group-blue .oval-btn .oval-btn__txt {
  background: #5EA6EF;
}

.oval-btn {
  display: block;
  width: 100%;
  height: calc(100% - 4px);
  max-height: 140px;
  border: 2px solid #e5004f;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  border-color: #e5004f;
}
.oval-btn .oval-btn__txt {
  background: #e5004f;
}
.oval-btn__txt {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 65%;
  background: #e5004f;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  white-space: nowrap;
  font-size: 17px;
  padding: 7px 10px;
  font-weight: normal;
  border-top-left-radius: 0.4em;
  border-bottom-left-radius: 0.4em;
}
.oval-btn__img {
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 316/149;
}
.oval-btn-orange {
  border-color: #f0983f;
}
.oval-btn-orange .oval-btn__txt {
  background: #f0983f;
}
.oval-btn-green {
  border-color: #79c944;
}
.oval-btn-green .oval-btn__txt {
  background: #79c944;
}
.oval-btn-blue {
  border-color: #5EA6EF;
}
.oval-btn-blue .oval-btn__txt {
  background: #5EA6EF;
}
.oval-btn:hover .oval-btn__img {
  filter: unset !important;
  opacity: 1 !important;
}
@media screen and (max-width: 640px) {
  .oval-btn {
    height: calc(100% - 3px);
    border-width: 1.5px;
  }
  .oval-btn__txt {
    font-size: 2.5vw;
  }
}

.heading-training {
  color: #80453f;
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  aspect-ratio: 480/53;
}
.heading-training::before {
  content: "";
  background-image: url(../img/training/heading_no-text.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  margin: auto;
  top: 0;
  aspect-ratio: 480/53;
}
@media screen and (max-width: 640px) {
  .heading-training {
    font-size: 3.5vw;
  }
}

.split-color-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  border: 1px solid;
  border-radius: 7px 7px 0px 0px;
  overflow: hidden;
  background-color: white;
  border-color: #333;
}
.split-color-title .split-color-title__main {
  background-color: #333;
}
.split-color-title .split-color-title__sub {
  color: #333;
}
.split-color-title > * {
  padding: 23px 20px;
}
.split-color-title__main {
  width: calc(36% + 65px);
  text-align: left;
  color: white;
  -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 65px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, calc(100% - 65px) 100%, 0% 100%);
}
.split-color-title__main > * {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding-right: 30px;
}
.split-color-title__main > *::before {
  content: none;
}
.split-color-title__main > *::after {
  content: "";
  height: 75%;
  width: 1px;
  right: 0;
  left: unset;
  top: 0;
  margin: auto;
  bottom: 0;
  background: white;
}
.split-color-title__sub {
  width: calc(64% - 65px);
  text-align: center;
  background-color: white;
}
.split-color-title__sub > * {
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
}
.split-color-title-reverse {
  flex-direction: row-reverse;
}
.split-color-title-reverse .split-color-title__main {
  text-align: right;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 65px 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 65px 100%);
}
.split-color-title-reverse .split-color-title__main > * {
  padding-left: 30px;
  padding-right: 0;
}
.split-color-title-reverse .split-color-title__main > *::after {
  left: 0;
  right: unset;
}
.split-color-title-orange {
  border-color: #f0983f;
}
.split-color-title-orange .split-color-title__main {
  background-color: #f0983f;
}
.split-color-title-orange .split-color-title__sub {
  color: #f0983f;
}
.split-color-title-green {
  border-color: #79c944;
}
.split-color-title-green .split-color-title__main {
  background-color: #79c944;
}
.split-color-title-green .split-color-title__sub {
  color: #79c944;
}
.split-color-title-blue {
  border-color: #5EA6EF;
}
.split-color-title-blue .split-color-title__main {
  background-color: #5EA6EF;
}
.split-color-title-blue .split-color-title__sub {
  color: #5EA6EF;
}

.flow-box {
  position: relative;
  padding: 18px 20px 0;
  margin: 20px 0;
}
.flow-box__title {
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 2em;
  color: white;
  font-size: 12px;
  padding: 11px 30px;
  line-height: 1;
  background: #333;
  z-index: 2;
}
.flow-box__title p {
  font-weight: bold;
}
.flow-box__content {
  padding: 25px 20px;
  border: 5px solid #333;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.flow-box__point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 70px;
  height: 70px;
  background-color: #333;
  border-radius: 100%;
  color: white;
  line-height: 1.3;
  position: relative;
  font-size: 16px;
}
.flow-box__point:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -60px;
  border: 20px solid transparent;
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-color: #333;
}
.flow-box__point a {
  font-weight: bold;
  color: white;
}
.flow-box__point-small {
  transform: scale(0.7);
}
.flow-box__point-small::after {
  transform: scale(1.3) !important;
  right: calc(-60px - 30%) !important;
}
.flow-box__point-gray {
  filter: grayscale(0.75);
  opacity: 0.6;
  transition: all 0.4s;
}
.flow-box__point-gray:hover {
  filter: grayscale(0);
  opacity: 1;
}
.flow-box-orange .flow-box__title {
  background: #f0983f;
}
.flow-box-orange .flow-box__content {
  border-color: #f0983f;
}
.flow-box-orange .flow-box__point {
  background-color: #f0983f;
}
.flow-box-orange .flow-box__point:not(:last-child)::after {
  border-left-color: #f0983f;
}
.flow-box-green .flow-box__title {
  background: #79c944;
}
.flow-box-green .flow-box__content {
  border-color: #79c944;
}
.flow-box-green .flow-box__point {
  background-color: #79c944;
}
.flow-box-green .flow-box__point:not(:last-child)::after {
  border-left-color: #79c944;
}
.flow-box-blue .flow-box__title {
  background: #5EA6EF;
}
.flow-box-blue .flow-box__content {
  border-color: #5EA6EF;
}
.flow-box-blue .flow-box__point {
  background-color: #5EA6EF;
}
.flow-box-blue .flow-box__point:not(:last-child)::after {
  border-left-color: #5EA6EF;
}
.flow-box__gray {
  filter: grayscale(0.75);
  opacity: 0.6;
  transition: all 0.4s;
}
.flow-box__gray:hover {
  filter: grayscale(0);
  opacity: 1;
}

.flow-group {
  display: inline-flex;
  flex-wrap: nowrap;
  margin: auto;
}
.flow-group-wrap {
  width: 100%;
  overflow: hidden;
}
.flow-group .flow-box {
  position: relative;
}
.flow-group .flow-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 0;
  right: -20px;
  border: 20px solid transparent;
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-color: #333;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}
.flow-group .flow-box-orange::after {
  border-left-color: #f0983f !important;
}
.flow-group .flow-box-orange.to-green::after {
  border-left-color: #79c944 !important;
}
.flow-group .flow-box-orange.to-green .flow-box__content {
  background: linear-gradient(90deg, #f0983f 0%, #79c944 100%);
  border: 0;
  padding: 27.5px 22.5px;
  position: relative;
}
.flow-group .flow-box-orange.to-green .flow-box__content::before {
  content: "";
  position: absolute;
  background-color: white;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
}
.flow-group .flow-box-green::after {
  border-left-color: #79c944 !important;
}
.flow-group .flow-box-green.to-blue::after {
  border-left-color: #5EA6EF !important;
}
.flow-group .flow-box-green.to-blue .flow-box__content {
  background: linear-gradient(90deg, #79c944 0%, #5EA6EF 100%);
  border: 0;
  padding: 27.5px 22.5px;
  position: relative;
}
.flow-group .flow-box-green.to-blue .flow-box__content::before {
  content: "";
  position: absolute;
  background-color: white;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
}
.flow-group .flow-box-blue::after {
  border-left-color: #5EA6EF !important;
}
.flow-group .flow-box-blue.to-green::after {
  border-left-color: #5EA6EF !important;
}
.flow-group .flow-box-blue.to-green .flow-box__content {
  background: linear-gradient(90deg, #5EA6EF 0%, #5EA6EF 100%);
  border: 0;
  padding: 27.5px 22.5px;
  position: relative;
}
.flow-group .flow-box-blue.to-green .flow-box__content::before {
  content: "";
  position: absolute;
  background-color: white;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
}
@media screen and (max-width: 640px) {
  .flow-group {
    transform: scale(0.8);
    margin-left: -70px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

.title-box-blue {
  border-color: #1880e8 !important;
}
.title-box-blue::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #5EA6EF 3px, #5EA6EF 7px);
}
.title-box-blue::before {
  background-color: #5EA6EF;
}
.title-box-blue .title-box__title {
  background-color: #5EA6EF;
  border-color: #1880e8;
}
.title-box-blue .title-box__title::after {
  border-right-color: #0c4075; /*折り返し部分*/
}
.title-box-pastel-1 {
  border-color: #ff3333 !important;
}
.title-box-pastel-1::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #ff7f7f 3px, #ff7f7f 7px);
}
.title-box-pastel-1::before {
  background-color: #ff7f7f;
}
.title-box-pastel-1 .title-box__title {
  background-color: #ff7f7f;
  border-color: #ff3333;
}
.title-box-pastel-1 .title-box__title::after {
  border-right-color: #b20000; /*折り返し部分*/
}
.title-box-pastel-2 {
  border-color: #ff3399 !important;
}
.title-box-pastel-2::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #ff7fbf 3px, #ff7fbf 7px);
}
.title-box-pastel-2::before {
  background-color: #ff7fbf;
}
.title-box-pastel-2 .title-box__title {
  background-color: #ff7fbf;
  border-color: #ff3399;
}
.title-box-pastel-2 .title-box__title::after {
  border-right-color: #b20059; /*折り返し部分*/
}
.title-box-pastel-3 {
  border-color: #ff33ff !important;
}
.title-box-pastel-3::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #ff7fff 3px, #ff7fff 7px);
}
.title-box-pastel-3::before {
  background-color: #ff7fff;
}
.title-box-pastel-3 .title-box__title {
  background-color: #ff7fff;
  border-color: #ff33ff;
}
.title-box-pastel-3 .title-box__title::after {
  border-right-color: #b200b2; /*折り返し部分*/
}
.title-box-pastel-4 {
  border-color: #9933ff !important;
}
.title-box-pastel-4::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #bf7fff 3px, #bf7fff 7px);
}
.title-box-pastel-4::before {
  background-color: #bf7fff;
}
.title-box-pastel-4 .title-box__title {
  background-color: #bf7fff;
  border-color: #9933ff;
}
.title-box-pastel-4 .title-box__title::after {
  border-right-color: #5900b2; /*折り返し部分*/
}
.title-box-pastel-5 {
  border-color: #3333ff !important;
}
.title-box-pastel-5::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #7f7fff 3px, #7f7fff 7px);
}
.title-box-pastel-5::before {
  background-color: #7f7fff;
}
.title-box-pastel-5 .title-box__title {
  background-color: #7f7fff;
  border-color: #3333ff;
}
.title-box-pastel-5 .title-box__title::after {
  border-right-color: #0000b2; /*折り返し部分*/
}
.title-box-pastel-6 {
  border-color: #3399ff !important;
}
.title-box-pastel-6::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #7fbfff 3px, #7fbfff 7px);
}
.title-box-pastel-6::before {
  background-color: #7fbfff;
}
.title-box-pastel-6 .title-box__title {
  background-color: #7fbfff;
  border-color: #3399ff;
}
.title-box-pastel-6 .title-box__title::after {
  border-right-color: #0059b2; /*折り返し部分*/
}
.title-box-pastel-7 {
  border-color: #28c5c5 !important;
}
.title-box-pastel-7::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #5bdede 3px, #5bdede 7px);
}
.title-box-pastel-7::before {
  background-color: #5bdede;
}
.title-box-pastel-7 .title-box__title {
  background-color: #5bdede;
  border-color: #28c5c5;
}
.title-box-pastel-7 .title-box__title::after {
  border-right-color: #125b5b; /*折り返し部分*/
}
.title-box-pastel-8 {
  border-color: #2ad780 !important;
}
.title-box-pastel-8::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #6ae3a6 3px, #6ae3a6 7px);
}
.title-box-pastel-8::before {
  background-color: #6ae3a6;
}
.title-box-pastel-8 .title-box__title {
  background-color: #6ae3a6;
  border-color: #2ad780;
}
.title-box-pastel-8 .title-box__title::after {
  border-right-color: #146d40; /*折り返し部分*/
}
.title-box-pastel-9 {
  border-color: #36d336 !important;
}
.title-box-pastel-9::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #75e175 3px, #75e175 7px);
}
.title-box-pastel-9::before {
  background-color: #75e175;
}
.title-box-pastel-9 .title-box__title {
  background-color: #75e175;
  border-color: #36d336;
}
.title-box-pastel-9 .title-box__title::after {
  border-right-color: #197119; /*折り返し部分*/
}
.title-box-pastel-10 {
  border-color: #8de732 !important;
}
.title-box-pastel-10::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #b3ef76 3px, #b3ef76 7px);
}
.title-box-pastel-10::before {
  background-color: #b3ef76;
}
.title-box-pastel-10 .title-box__title {
  background-color: #b3ef76;
  border-color: #8de732;
}
.title-box-pastel-10 .title-box__title::after {
  border-right-color: #4d8910; /*折り返し部分*/
}
.title-box-pastel-11 {
  border-color: #baba21 !important;
}
.title-box-pastel-11::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #dfdf48 3px, #dfdf48 7px);
}
.title-box-pastel-11::before {
  background-color: #dfdf48;
}
.title-box-pastel-11 .title-box__title {
  background-color: #dfdf48;
  border-color: #baba21;
}
.title-box-pastel-11 .title-box__title::after {
  border-right-color: #4d4d0e; /*折り返し部分*/
}
.title-box-pastel-12 {
  border-color: #ff9933 !important;
}
.title-box-pastel-12::after {
  background: repeating-linear-gradient(-45deg, white, white 3px, #ffbf7f 3px, #ffbf7f 7px);
}
.title-box-pastel-12::before {
  background-color: #ffbf7f;
}
.title-box-pastel-12 .title-box__title {
  background-color: #ffbf7f;
  border-color: #ff9933;
}
.title-box-pastel-12 .title-box__title::after {
  border-right-color: #b25900; /*折り返し部分*/
}

.tra-block {
  max-width: 700px;
  margin: 10px auto 20px;
  border-radius: 7px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 4px 23px rgba(0, 0, 0, 0.1);
  background: rgba(51, 51, 51, 0.1);
}
.tra-block__item-table {
  border-spacing: 0;
  width: 100%;
}
.tra-block__item-table td:nth-child(1) {
  background-color: #333333;
}
.tra-block__item-table td:nth-child(2) {
  background-color: #4d4d4d;
}
.tra-block__item-table td:nth-child(3) {
  background-color: #666666;
}
.tra-block__item-table td:nth-child(4) {
  background-color: gray;
}
.tra-block__item-table td:nth-child(5) {
  background-color: #999999;
}
.tra-block__item {
  display: block;
  padding: 25px 16px;
}
.tra-block__item > * {
  text-align: center !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  border: unset !important;
  padding: 0 !important;
  margin: auto 5px !important;
}
.tra-block__item > *::before, .tra-block__item > *::after {
  content: none !important;
}
.tra-block__content {
  padding: 25px 20px 40px;
  font-size: 16px;
}
.tra-block-orange {
  background: rgba(240, 152, 63, 0.1);
}
.tra-block-orange .tra-block__item-table td:nth-child(1) {
  background: #ec3838;
}
.tra-block-orange .tra-block__item-table td:nth-child(2) {
  background: #ee5e30;
}
.tra-block-orange .tra-block__item-table td:nth-child(3) {
  background: #ee8b30;
}
.tra-block-orange .tra-block__item-table td:nth-child(4) {
  background: #eead30;
}
.tra-block-orange .tra-block__item-table td:nth-child(5) {
  background: #eed030;
}
.tra-block-orange .tra-block__item-table-reverse td:nth-child(5) {
  background: #ec3838;
}
.tra-block-orange .tra-block__item-table-reverse td:nth-child(4) {
  background: #ee5e30;
}
.tra-block-orange .tra-block__item-table-reverse td:nth-child(3) {
  background: #ee8b30;
}
.tra-block-orange .tra-block__item-table-reverse td:nth-child(2) {
  background: #eead30;
}
.tra-block-orange .tra-block__item-table-reverse td:nth-child(1) {
  background: #eed030;
}
.tra-block-green {
  background: rgba(121, 201, 68, 0.1);
}
.tra-block-green .tra-block__item-table td:nth-child(1) {
  background: #0aa350;
}
.tra-block-green .tra-block__item-table td:nth-child(2) {
  background: #33bb40;
}
.tra-block-green .tra-block__item-table td:nth-child(3) {
  background: #79c944;
}
.tra-block-green .tra-block__item-table td:nth-child(4) {
  background: #9be53d;
}
.tra-block-green .tra-block__item-table td:nth-child(5) {
  background: #c6e177;
}
.tra-block-green .tra-block__item-table-reverse td:nth-child(5) {
  background: #0aa350;
}
.tra-block-green .tra-block__item-table-reverse td:nth-child(4) {
  background: #33bb40;
}
.tra-block-green .tra-block__item-table-reverse td:nth-child(3) {
  background: #79c944;
}
.tra-block-green .tra-block__item-table-reverse td:nth-child(2) {
  background: #9be53d;
}
.tra-block-green .tra-block__item-table-reverse td:nth-child(1) {
  background: #c6e177;
}
.tra-block-blue {
  background: rgba(94, 166, 239, 0.1);
}
.tra-block-blue .tra-block__item-table td:nth-child(1) {
  background: #5655f6;
}
.tra-block-blue .tra-block__item-table td:nth-child(2) {
  background: #3478f6;
}
.tra-block-blue .tra-block__item-table td:nth-child(3) {
  background: #5EA6EF;
}
.tra-block-blue .tra-block__item-table td:nth-child(4) {
  background: #5dc8fa;
}
.tra-block-blue .tra-block__item-table td:nth-child(5) {
  background: #6dd9d9;
}
.tra-block-blue .tra-block__item-table-reverse td:nth-child(5) {
  background: #5655f6;
}
.tra-block-blue .tra-block__item-table-reverse td:nth-child(4) {
  background: #3478f6;
}
.tra-block-blue .tra-block__item-table-reverse td:nth-child(3) {
  background: #5EA6EF;
}
.tra-block-blue .tra-block__item-table-reverse td:nth-child(2) {
  background: #5dc8fa;
}
.tra-block-blue .tra-block__item-table-reverse td:nth-child(1) {
  background: #6dd9d9;
}

.inner_conte_800 {
  width: 800px;
  /* margin: 0 auto; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}
@media screen and (max-width: 640px) {
  .inner_conte_800 {
    width: 95% !important;
  }
}

#recruit .main {
  background-image: url(../img/recruit/main_saiyo-2.jpg);
  background-position: center;
  height: 340px;
}
@media screen and (max-width: 640px) {
  #recruit .main {
    height: 240px;
    margin-top: 50px;
  }
}