@charset "UTF-8";
/* Scss Document */
/* CSS Document */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

@font-face {
  src: url(../font/NotoSansJP-VariableFont_wght.woff) format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url(../font/BarlowCondensed-Bold.woff) format("woff");
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/BarlowCondensed-SemiBold.woff) format("woff");
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-display: swap;
}
@font-face {
  src: url(../font/Barlow-Medium.woff) format("woff");
  font-family: "Barlow Condensed";
  font-weight: 500;
  font-display: swap;
}
picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  overflow: hidden;
}

main {
  flex: 1;
  width: 100%;
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.body_text {
  font-size: 3.0769230769vw;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (min-width: 750px) {
  .body_text {
    font-size: 23.0769230769px;
  }
}

/*------------------------------mixin フォント------------------------------*/
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
.bold {
  font-weight: 700;
}

.barlow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.orange {
  color: #FF7801;
}

.white {
  color: #fff;
}

.marker {
  color: #FF7801;
}

/*------------------cta------------------*/
.cv-btn {
  display: block;
  width: 78.6666666667vw;
  height: 17.3333333333vw;
  border-radius: 9999px;
  margin: 0 auto;
  background: #FF7801;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 300ms;
  z-index: 10;
  box-shadow: 0 1.0666666667vw 0 #b04622;
}
@media only screen and (min-width: 750px) {
  .cv-btn {
    width: 590px;
    height: 130px;
    box-shadow: 0 8px 0 #b04622;
  }
}
.cv-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.cv-btn p {
  color: #fff;
  font-size: 4.5333333333vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .cv-btn p {
    font-size: 34px;
  }
}
.cv-btn p .small {
  font-size: 3.7333333333vw;
}
@media only screen and (min-width: 750px) {
  .cv-btn p .small {
    font-size: 28px;
  }
}
.cv-btn .cv-arrow {
  width: 3.7333333333vw;
  height: 3.7333333333vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.7333333333vw;
}
@media only screen and (min-width: 750px) {
  .cv-btn .cv-arrow {
    width: 28px;
    height: 28px;
    right: 28px;
  }
}
.cv-btn .cv-arrow img {
  vertical-align: top;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*-----------------fv------------------*/
.fv {
  background: url(../img/fv_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80.7692307692vw;
  padding: 7.6923076923vw 4.358974359vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .fv {
    height: 605.7692307692px;
    padding: 57.6923076923px 32.6923076923px;
  }
}
.fv::before {
  content: "PR";
  font-size: 2.1333333333vw;
  position: absolute;
  right: 2vw;
  top: 2vw;
  padding: 0.2em 0.5em;
  border: solid 1px #333;
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 750px) {
  .fv::before {
    font-size: 16px;
    right: 15px;
    top: 15px;
  }
}
.fv .text_wrap {
  width: 52.5641025641vw;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap {
    width: 394.2307692308px;
  }
}
.fv .text_wrap .year {
  text-align: center;
  font-size: 3.5897435897vw;
  position: relative;
  padding: 1.2820512821vw 0;
  border-top: solid 0.2564102564vw #89CBFF;
  border-bottom: solid 0.2564102564vw #89CBFF;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .year {
    font-size: 26.9230769231px;
    padding: 9.6153846154px 0;
    border-top: solid 1.9230769231px #89CBFF;
    border-bottom: solid 1.9230769231px #89CBFF;
  }
}
.fv .text_wrap .year .barlow {
  font-size: 4.6153846154vw;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .year .barlow {
    font-size: 34.6153846154px;
  }
}
.fv .text_wrap .sub {
  font-weight: 900;
  font-size: 9.4871794872vw;
  margin-top: 2.8205128205vw;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 0.2564102564vw 0.7692307692vw rgba(3, 5, 107, 0.2);
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .sub {
    font-size: 71.1538461538px;
    margin-top: 21.1538461538px;
  }
}
.fv .text_wrap .main {
  margin-top: 3.0769230769vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  white-space: nowrap;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .main {
    margin-top: 23.0769230769px;
  }
}
.fv .text_wrap .main .left {
  font-size: 3.3333333333vw;
  line-height: 1.3;
  color: #333;
  transform: translateY(-1.5384615385vw);
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .main .left {
    font-size: 25px;
    transform: translateY(-11.5384615385px);
  }
}
.fv .text_wrap .main .left .small {
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .main .left .small {
    font-size: 23.0769230769px;
  }
}
.fv .text_wrap .main .left .d-blue {
  font-size: 3.8461538462vw;
  color: #005EAB;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .main .left .d-blue {
    font-size: 28.8461538462px;
  }
}
.fv .text_wrap .main .right img {
  width: 16.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .main .right img {
    width: 125px;
  }
}
.fv .text_wrap .bottom {
  margin-top: 4.6153846154vw;
  display: grid;
  grid-template-columns: 25.1282051282vw 27.1794871795vw;
  gap: 1.2820512821vw;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .bottom {
    margin-top: 34.6153846154px;
    grid-template-columns: 188.4615384615px 203.8461538462px;
    gap: 9.6153846154px;
  }
}
.fv .text_wrap .bottom li {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5384615385vw 0;
  color: #294f8f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  font-size: 3.0769230769vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .bottom li {
    padding: 11.5384615385px 0;
    font-size: 23.0769230769px;
  }
}
.fv .text_wrap .bottom li::before {
  content: "";
  display: block;
  width: 2.5641025641vw;
  height: 2.5641025641vw;
  background: linear-gradient(to right bottom, #294f8f 50%, transparent 50%);
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .bottom li::before {
    width: 19.2307692308px;
    height: 19.2307692308px;
  }
}
.fv .text_wrap .bottom li .barlow {
  font-size: 4.8717948718vw;
  color: #FF7801;
  font-weight: bold;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .bottom li .barlow {
    font-size: 36.5384615385px;
  }
}
.fv .text_wrap .bottom li .barlow.big {
  font-size: 5.641025641vw;
}
@media only screen and (min-width: 750px) {
  .fv .text_wrap .bottom li .barlow.big {
    font-size: 46.1538461538px;
  }
}
.fv .text_wrap .bottom li.item1 {
  grid-column-start: 1;
  grid-column-end: 3;
}

/*------------------ランキング表 ranking-table------------------*/
.ranking-table {
  background: #e9f5fe;
  padding: 12.8205128205vw 5.1282051282vw 10.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table {
    padding: 96.1538461538px 38.4615384615px 76.9230769231px;
  }
}
.ranking-table--sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4aa7e0;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--sub {
    font-size: 32px;
  }
}
.ranking-table--ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #294f8f;
  font-weight: bold;
  line-height: 1.15;
}
.ranking-table--ttl .main {
  font-size: 8.5333333333vw;
  padding: 0.2666666667vw 0.5333333333vw;
  margin-top: 0.6666666667vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ttl .main {
    font-size: 64px;
    padding: 2px 4px;
    margin-top: 5px;
  }
}
.ranking-table--ttl .main .small {
  font-size: 5.8666666667vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ttl .main .small {
    font-size: 44px;
  }
}
.ranking-table--ttl .main .barlow {
  font-size: 6.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ttl .main .barlow {
    font-size: 50px;
  }
}
.ranking-table--ranking {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 1.2820512821vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking {
    gap: 9.6153846154px;
  }
}
.ranking-table--ranking--item {
  width: 30.7692307692vw;
  background: #fff;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item {
    width: 230.7692307692px;
  }
}
.ranking-table--ranking--item dt {
  padding: 2.0512820513vw 0 1.5384615385vw;
  background: #294f8f;
  color: #fff;
  font-size: 3.5897435897vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.29;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item dt {
    padding: 15.3846153846px 0 11.5384615385px;
    font-size: 26.9230769231px;
  }
}
.ranking-table--ranking--item dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #294f8f;
  font-size: 3.5897435897vw;
  line-height: 1.5;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item dd {
    font-size: 26.9230769231px;
  }
}
.ranking-table--ranking--item dd .mark {
  width: 8.2051282051vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item dd .mark {
    width: 61.5384615385px;
  }
}
.ranking-table--ranking--item .rank {
  position: relative;
}
.ranking-table--ranking--item .rank .bubble {
  position: absolute;
  left: 50%;
  top: -8.4615384615vw;
  transform: translateX(-50%);
  background: #fff;
  font-size: 2.5641025641vw;
  font-weight: bold;
  height: 9.4871794872vw;
  width: 95%;
  padding: 1.2820512821vw 0;
  line-height: 1.2;
  border-radius: 1.2820512821vw;
  color: #294f8f;
  border: solid #294f8f 0.2564102564vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank .bubble {
    top: -55.7692307692px;
    font-size: 19.2307692308px;
    padding: 9.6153846154px 0;
    border-radius: 9.6153846154px;
    border: solid #294f8f 1.9230769231px;
    height: 71.1538461538px;
  }
}
.ranking-table--ranking--item .rank .bubble.small {
  font-size: 2.4358974359vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank .bubble.small {
    font-size: 18.2692307692px;
  }
}
.ranking-table--ranking--item .rank .bubble p {
  position: relative;
}
.ranking-table--ranking--item .rank .bubble p::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2.5641025641vw;
  border: 2.5641025641vw solid transparent;
  border-top: 2.5641025641vw solid #fff;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank .bubble p::before {
    margin-left: -19.2307692308px;
    border: 19.2307692308px solid transparent;
    border-top: 19.2307692308px solid #fff;
  }
}
.ranking-table--ranking--item .rank .bubble p.bubble_01::before {
  top: 150%;
}
.ranking-table--ranking--item .rank dt {
  background: #294f8f;
  font-size: 4.1025641026vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank dt {
    font-size: 30.7692307692px;
  }
}
.ranking-table--ranking--item .rank dt .barlow {
  font-size: 4.6153846154vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank dt .barlow {
    font-size: 34.6153846154px;
  }
}
.ranking-table--ranking--item .rank dd {
  height: 23.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank dd {
    height: 173.0769230769px;
  }
}
.ranking-table--ranking--item .rank dd img {
  position: relative;
}
.ranking-table--ranking--item .rank dd .cv-btn-table {
  color: #fff;
  display: block;
  background: #FF7801;
  width: 26.6666666667vw;
  height: 7.6923076923vw;
  font-size: 2.5641025641vw;
  font-weight: bold;
  line-height: 7.6923076923vw;
  border-radius: 9999px;
  margin-top: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank dd .cv-btn-table {
    width: 200px;
    height: 57.6923076923px;
    font-size: 19.2307692308px;
    line-height: 57.6923076923px;
    margin-top: 19.2307692308px;
  }
}
.ranking-table--ranking--item .rank.no1 img {
  width: 15.3846153846vw;
  margin-top: 1.2820512821vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no1 img {
    width: 115.3846153846px;
    margin-top: 9.6153846154px;
  }
}
.ranking-table--ranking--item .rank.no2 img {
  width: 15.8974358974vw;
  margin-top: 1.0256410256vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no2 img {
    width: 119.2307692308px;
    margin-top: 7.6923076923px;
  }
}
.ranking-table--ranking--item .rank.no3 img {
  width: 19.2307692308vw;
  margin-top: 3.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no3 img {
    width: 144.2307692308px;
    margin-top: 25px;
  }
}
.ranking-table--ranking--item .rank.no3 .cv-btn-table {
  margin-top: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no3 .cv-btn-table {
    margin-top: 19.2307692308px;
  }
}
.ranking-table--ranking--item .star dd {
  height: 11.7948717949vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .star dd {
    height: 88.4615384615px;
  }
}
.ranking-table--ranking--item .star dd img {
  width: 20.5128205128vw;
  position: relative;
  bottom: 0.5128205128vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .star dd img {
    width: 153.8461538462px;
    bottom: 3.8461538462px;
  }
}
.ranking-table--ranking--item .star .numerics {
  margin-left: 0.5128205128vw;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .star .numerics {
    margin-left: 3.8461538462px;
    font-size: 19.2307692308px;
  }
}
.ranking-table--ranking--item .area dt {
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .area dt {
    font-size: 23.0769230769px;
  }
}
.ranking-table--ranking--item .area dd {
  height: 12.8205128205vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .area dd {
    height: 96.1538461538px;
  }
}
.ranking-table--ranking--item .inexperienced dd {
  height: 12.8205128205vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .inexperienced dd {
    height: 96.1538461538px;
  }
}
.ranking-table--ranking--item .jobs dd {
  height: 14.1025641026vw;
  font-size: 2.5641025641vw;
  line-height: 1.1;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .jobs dd {
    height: 115.3846153846px;
    font-size: 23.0769230769px;
  }
}
.ranking-table--ranking--item .jobs dd .barlow {
  color: #FF7801;
  font-size: 250%;
}
.ranking-table--ranking--item .jobs dd .note {
  font-size: 1.7948717949vw;
  text-align: left;
  font-weight: normal;
  color: #333;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .jobs dd .note {
    font-size: 13.4615384615px;
  }
}
.ranking-table--ranking--item .boki dd, .ranking-table--ranking--item .keiri dd {
  height: 18.7179487179vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .boki dd, .ranking-table--ranking--item .keiri dd {
    height: 140.3846153846px;
  }
}
.ranking-table--ranking--item .boki dd span, .ranking-table--ranking--item .keiri dd span {
  margin-top: 0.7692307692vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .boki dd span, .ranking-table--ranking--item .keiri dd span {
    margin-top: 5.7692307692px;
  }
}
.ranking-table--ranking--item .boki dd .barlow, .ranking-table--ranking--item .keiri dd .barlow {
  font-size: 4.8717948718vw;
  line-height: 1;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .boki dd .barlow, .ranking-table--ranking--item .keiri dd .barlow {
    font-size: 36.5384615385px;
  }
}
.ranking-table--ranking--item .zeirishi dt {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .zeirishi dt {
    font-size: 19.2307692308px;
  }
}
.ranking-table--ranking--item .zeirishi dd {
  height: 18.7179487179vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .zeirishi dd {
    height: 140.3846153846px;
  }
}
.ranking-table--ranking--item .zeirishi dd span {
  margin-top: 0.7692307692vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .zeirishi dd span {
    margin-top: 5.7692307692px;
  }
}
.ranking-table--ranking--item .zeirishi dd .barlow {
  font-size: 4.8717948718vw;
  line-height: 1;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .zeirishi dd .barlow {
    font-size: 36.5384615385px;
  }
}
.ranking-table--ranking--item .recruit_list dd {
  padding: 0vw 1.2820512821vw;
  height: 46.1538461538vw;
  font-size: 2.4358974359vw;
  white-space: nowrap;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .recruit_list dd {
    padding: 0vw 9.6153846154px;
    height: 346.1538461538px;
    font-size: 18.2692307692px;
  }
}
.ranking-table--ranking--item .recruit_list dd ul {
  width: 100%;
}
.ranking-table--ranking--item .recruit_list dd ul li {
  background: #71abcf;
  color: #fff;
  border-radius: 0.7692307692vw;
  width: 100%;
  padding: 0.5128205128vw 0vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .recruit_list dd ul li {
    border-radius: 5.7692307692px;
    padding: 3.8461538462px 0;
  }
}
.ranking-table--ranking--item .recruit_list dd ul li + li {
  margin-top: 0.7692307692vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .recruit_list dd ul li + li {
    margin-top: 5.7692307692px;
  }
}
.ranking-table--ranking--item .recruit_list dd ul li.gray {
  background: #e4e4e4;
  color: #bbb;
}
.ranking-table--ranking--item .btn dd {
  height: 14.1025641026vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .btn dd {
    height: 105.7692307692px;
  }
}
.ranking-table--ranking--item .btn dd .cv-btn-table {
  color: #fff;
  display: block;
  background: #FF7801;
  width: 26.6666666667vw;
  height: 7.6923076923vw;
  font-size: 2.5641025641vw;
  font-weight: bold;
  line-height: 7.6923076923vw;
  border-radius: 9999px;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .btn dd .cv-btn-table {
    width: 200px;
    height: 57.6923076923px;
    font-size: 19.2307692308px;
    line-height: 57.6923076923px;
  }
}
.ranking-table .bottom_note {
  margin-top: 2.0512820513vw;
  font-weight: normal;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table .bottom_note {
    margin-top: 15.3846153846px;
    font-size: 19.2307692308px;
  }
}

.job-opening {
  padding: 7.6923076923vw 0 15.3846153846vw;
}
@media only screen and (min-width: 750px) {
  .job-opening {
    padding: 57.6923076923px 0 115.3846153846px;
  }
}
.job-opening h2 {
  text-align: center;
  font-weight: bold;
  font-size: 5.1282051282vw;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .job-opening h2 {
    font-size: 38.4615384615px;
  }
}
.job-opening h2 .title_wrap {
  position: relative;
  display: inline-block;
}
.job-opening h2 .title_wrap::before, .job-opening h2 .title_wrap::after {
  content: "";
  background: url(../img/job-opening-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3.8461538462vw;
  height: 5.8974358974vw;
  position: absolute;
  left: -5.1282051282vw;
  bottom: 0;
}
@media only screen and (min-width: 750px) {
  .job-opening h2 .title_wrap::before, .job-opening h2 .title_wrap::after {
    width: 28.8461538462px;
    height: 44.2307692308px;
    left: -38.4615384615px;
  }
}
.job-opening h2 .title_wrap::after {
  left: auto;
  right: -5.1282051282vw;
  transform: scale(-1, 1);
}
@media only screen and (min-width: 750px) {
  .job-opening h2 .title_wrap::after {
    right: -38.4615384615px;
  }
}
.job-opening h2 .title_wrap .small {
  font-size: 4.6153846154vw;
}
@media only screen and (min-width: 750px) {
  .job-opening h2 .title_wrap .small {
    font-size: 34.6153846154px;
  }
}
.job-opening h2 .title_wrap .barlow {
  font-size: 10.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .job-opening h2 .title_wrap .barlow {
    font-size: 76.9230769231px;
  }
}
.job-opening .splide {
  margin-top: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide {
    margin-top: 38.4615384615px;
  }
}
.job-opening .splide .splide__slide {
  display: block;
  width: 74.358974359vw !important;
  background: #fff;
  border-radius: 2.5641025641vw;
  border: solid 0.2564102564vw #294f8f;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide {
    width: 557.6923076923px !important;
    border-radius: 19.2307692308px;
    border: solid 1.9230769231px #294f8f;
  }
}
.job-opening .splide .splide__slide .head {
  text-align: center;
  background: #294f8f;
  color: #fff;
  font-weight: bold;
  font-size: 5.1282051282vw;
  padding: 2.5641025641vw 0;
  width: 100%;
  border-radius: 2.5641025641vw 2.5641025641vw 0 0;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .head {
    font-size: 38.4615384615px;
    padding: 19.2307692308px 0;
    border-radius: 19.2307692308px 19.2307692308px 0 0;
  }
}
.job-opening .splide .splide__slide .body {
  padding: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body {
    padding: 38.4615384615px;
  }
}
.job-opening .splide .splide__slide .body .middle {
  margin-top: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle {
    margin-top: 28.8461538462px;
  }
}
.job-opening .splide .splide__slide .body .middle dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl {
    gap: 19.2307692308px;
  }
}
.job-opening .splide .splide__slide .body .middle dl dt {
  width: 19.2307692308vw;
  padding: 1.2820512821vw 0;
  background: #E9F5FE;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.0256410256vw;
  font-size: 3.5897435897vw;
  color: #294f8f;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl dt {
    width: 144.2307692308px;
    padding: 9.6153846154px 0;
    gap: 7.6923076923px;
    font-size: 26.9230769231px;
  }
}
.job-opening .splide .splide__slide .body .middle dl dt figure {
  width: 5.1282051282vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl dt figure {
    width: 38.4615384615px;
  }
}
.job-opening .splide .splide__slide .body .middle dl dt figure.map {
  width: 3.8461538462vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl dt figure.map {
    width: 28.8461538462px;
  }
}
.job-opening .splide .splide__slide .body .middle dl dd {
  width: calc(100% - 23.0769230769vw);
  font-weight: bold;
  font-size: 3.5897435897vw;
  white-space: nowrap;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl dd {
    width: calc(100% - 173.0769230769px);
    font-size: 26.9230769231px;
  }
}
.job-opening .splide .splide__slide .body .middle dl dd .barlow {
  font-size: 7.6923076923vw;
  color: #FF7801;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .middle dl dd .barlow {
    font-size: 57.6923076923px;
  }
}
.job-opening .splide .splide__slide .body .hashtag {
  padding-top: 3.8461538462vw;
  margin-top: 3.8461538462vw;
  border-top: #ccc solid 0.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .hashtag {
    padding-top: 28.8461538462px;
    margin-top: 28.8461538462px;
    border-top: #ccc solid 1.9230769231px;
  }
}
.job-opening .splide .splide__slide .body .hashtag p {
  line-height: 1.8;
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .hashtag p {
    font-size: 23.0769230769px;
  }
}
.job-opening .splide .splide__slide .body .cv-btn {
  margin-top: 3.8461538462vw;
  width: 64.1025641026vw;
  height: 15.3846153846vw;
  box-shadow: none;
  font-size: 3.5897435897vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__slide .body .cv-btn {
    margin-top: 28.8461538462px;
    width: 480.7692307692px;
    height: 115.3846153846px;
    font-size: 26.9230769231px;
  }
}
.job-opening .splide .splide__pagination {
  bottom: -6.4102564103vw;
}
@media only screen and (min-width: 750px) {
  .job-opening .splide .splide__pagination {
    bottom: -48.0769230769px;
  }
}
.job-opening .splide .splide__pagination__page.is-active {
  background: #294f8f;
  transform: scale(1);
}

/*------------------サービス詳細 detail------------------*/
.detail {
  position: relative;
  background: #294f8f;
  padding: 7.6923076923vw 5.1282051282vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail {
    padding: 57.6923076923px 38.4615384615px;
  }
}
.detail--ttl {
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.detail--ttl .sub {
  display: inline-block;
  font-size: 4.1025641026vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail--ttl .sub {
    font-size: 30.7692307692px;
  }
}
.detail--ttl .sub::before, .detail--ttl .sub::after {
  content: "";
  display: block;
  background: #fff;
  width: 0.2564102564vw;
  height: 92%;
  position: absolute;
  left: -2.5641025641vw;
  bottom: 0;
  transform: rotate(-30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ttl .sub::before, .detail--ttl .sub::after {
    width: 1.9230769231px;
    left: -19.2307692308px;
  }
}
.detail--ttl .sub::after {
  left: auto;
  right: -2.5641025641vw;
  transform: rotate(30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ttl .sub::after {
    right: -19.2307692308px;
  }
}
.detail--ttl .main {
  display: block;
  font-weight: bold;
  font-size: 6.1538461538vw;
  margin-top: 1.2820512821vw;
  color: #fff;
  line-height: 1;
}
@media only screen and (min-width: 750px) {
  .detail--ttl .main {
    font-size: 46.1538461538px;
    margin-top: 9.6153846154px;
  }
}
.detail--ranking {
  margin-top: 14.1025641026vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking {
    margin-top: 105.7692307692px;
  }
}
.detail--ranking--item {
  padding: 7.6923076923vw 5.1282051282vw 10.2564102564vw;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item {
    padding: 57.6923076923px 38.4615384615px 76.9230769231px;
  }
}
.detail--ranking--item--circle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -30%);
  width: 30.7692307692vw;
  height: 30.7692307692vw;
  border-radius: 9999px;
  background: #fff;
  text-align: center;
  padding-top: 3.8461538462vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--circle {
    width: 230.7692307692px;
    height: 230.7692307692px;
    padding-top: 28.8461538462px;
  }
}
.detail--ranking--item--circle .crown {
  width: 18.4615384615vw;
  margin: 0 auto;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--circle .crown {
    width: 138.4615384615px;
  }
}
.detail--ranking--item--circle .rank {
  font-size: 4.1025641026vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--circle .rank {
    font-size: 30.7692307692px;
  }
}
.detail--ranking--item--circle .rank .barlow {
  font-size: 6.1538461538vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--circle .rank .barlow {
    font-size: 46.1538461538px;
  }
}
.detail--ranking--item--ttl--logo {
  display: block;
  margin: 0 auto;
  width: 25.641025641vw;
  position: relative;
  margin-top: -1.5384615385vw;
  z-index: 3;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--ttl--logo {
    width: 192.3076923077px;
    margin-top: -11.5384615385px;
  }
}
.detail--ranking--item--ttl .logo-no2 {
  width: 20.5128205128vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--ttl .logo-no2 {
    width: 153.8461538462px;
  }
}
.detail--ranking--item--ttl .logo-no3 {
  width: 38.4615384615vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--ttl .logo-no3 {
    width: 288.4615384615px;
  }
}
.detail--ranking--item--ttl .logo-no3 figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail--ranking--item--service-img {
  border: 0.2564102564vw solid #eee;
  margin-top: 3.8461538462vw;
  margin-bottom: 5.1282051282vw;
  width: 100%;
  display: block;
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--service-img {
    border: 1.9230769231px solid #eee;
    margin-top: 28.8461538462px;
    margin-bottom: 38.4615384615px;
  }
}
.detail--ranking--item .tab_menu {
  z-index: 2;
  position: relative;
  width: 23.0769230769vw;
  background-color: #ccc;
  color: #888;
  line-height: 9.2307692308vw;
  font-size: 3.0769230769vw;
  font-weight: bold;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 2.0512820513vw 2.0512820513vw 0 0;
  cursor: pointer;
  margin: 0 1.2820512821vw;
  box-sizing: border-box;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_menu {
    width: 173.0769230769px;
    line-height: 69.2307692308px;
    font-size: 23.0769230769px;
    margin: 0 9.6153846154px;
    border-radius: 15.3846153846px 15.3846153846px 0 0;
  }
}
.detail--ranking--item input:checked + .tab_menu {
  background-color: #294f8f;
  color: #fff;
}
.detail--ranking--item input[name=tab_menu1] {
  display: none;
}
.detail--ranking--item input[name=tab_menu2] {
  display: none;
}
.detail--ranking--item input[name=tab_menu3] {
  display: none;
}
.detail--ranking--item .tab_content {
  display: none;
  z-index: 1;
  clear: both;
  border: solid 0.3846153846vw #294f8f;
  padding: 5.1282051282vw 3.8461538462vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content {
    border: solid 2.8846153846px #294f8f;
    padding: 38.4615384615px 28.8461538462px;
  }
}
.detail--ranking--item .tab_content .table_top {
  display: flex;
}
.detail--ranking--item .tab_content .table_top dl {
  width: 50%;
  font-size: 3.0769230769vw;
  font-weight: bold;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .table_top dl dt {
  background: #e9f5fe;
  text-align: center;
  padding: 1.2820512821vw;
  border: solid 0.2564102564vw #ccc;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl dt {
    padding: 9.6153846154px;
    border: 1.9230769231px #ccc solid;
  }
}
.detail--ranking--item .tab_content .table_top dl dd {
  text-align: center;
  border: solid 0.2564102564vw #ccc;
  border-top: none;
  height: 10.7692307692vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl dd {
    border: 1.9230769231px #ccc solid;
    border-top: none;
    height: 80.7692307692px;
  }
}
.detail--ranking--item .tab_content .table_top dl dd figure {
  width: 23.0769230769vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl dd figure {
    width: 173.0769230769px;
  }
}
.detail--ranking--item .tab_content .table_top dl dd .num {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl dd .num {
    font-size: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .table_top dl dd .barlow {
  font-size: 6.1538461538vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_top dl dd .barlow {
    font-size: 46.1538461538px;
  }
}
.detail--ranking--item .tab_content .table_top dl:not(:first-child) dt, .detail--ranking--item .tab_content .table_top dl:not(:first-child) dd {
  border-left: none;
}
.detail--ranking--item .tab_content .table_bottom {
  display: flex;
}
.detail--ranking--item .tab_content .table_bottom dl {
  width: 33.3333333333%;
  font-size: 3.0769230769vw;
  font-weight: bold;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_bottom dl {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .table_bottom dl dt {
  background: #e9f5fe;
  text-align: center;
  padding: 1.2820512821vw;
  border: solid 0.2564102564vw #ccc;
  border-top: none;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_bottom dl dt {
    padding: 9.6153846154px;
    border: 1.9230769231px #ccc solid;
    border-top: none;
  }
}
.detail--ranking--item .tab_content .table_bottom dl dd {
  text-align: center;
  border: solid 0.2564102564vw #ccc;
  border-top: none;
  height: 10.7692307692vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_bottom dl dd {
    border: 1.9230769231px #ccc solid;
    border-top: none;
    height: 80.7692307692px;
  }
}
.detail--ranking--item .tab_content .table_bottom dl dd figure {
  width: 7.4358974359vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_bottom dl dd figure {
    width: 55.7692307692px;
  }
}
.detail--ranking--item .tab_content .table_bottom dl:not(:first-child) dt, .detail--ranking--item .tab_content .table_bottom dl:not(:first-child) dd {
  border-left: none;
}
.detail--ranking--item .tab_content .point_wrap {
  margin-top: 3.8461538462vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap {
    margin-top: 28.8461538462px;
  }
}
.detail--ranking--item .tab_content .point_wrap h3 {
  text-align: center;
  font-weight: bold;
  font-size: 3.5897435897vw;
  position: relative;
  display: inline-block;
  line-height: 1;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap h3 {
    font-size: 26.9230769231px;
  }
}
.detail--ranking--item .tab_content .point_wrap h3::before, .detail--ranking--item .tab_content .point_wrap h3::after {
  content: "";
  display: block;
  background: #333;
  width: 0.2564102564vw;
  height: 95%;
  position: absolute;
  left: -1.7948717949vw;
  bottom: 0;
  transform: rotate(-30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap h3::before, .detail--ranking--item .tab_content .point_wrap h3::after {
    width: 1.9230769231px;
    left: -13.4615384615px;
  }
}
.detail--ranking--item .tab_content .point_wrap h3::after {
  left: auto;
  right: -1.7948717949vw;
  transform: rotate(30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap h3::after {
    right: -13.4615384615px;
  }
}
.detail--ranking--item .tab_content .point_wrap ul {
  text-align: left;
  padding-left: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap ul {
    padding-left: 38.4615384615px;
  }
}
.detail--ranking--item .tab_content .point_wrap ul li {
  font-size: 3.0769230769vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap ul li {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .point_wrap ul li::before {
  content: "";
  background: url(../img/check.svg) no-repeat center/contain;
  width: 3.8461538462vw;
  height: 3.8461538462vw;
  position: absolute;
  left: -5.1282051282vw;
  top: 0.7692307692vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap ul li::before {
    width: 28.8461538462px;
    height: 28.8461538462px;
    left: -38.4615384615px;
    top: 5.7692307692px;
  }
}
.detail--ranking--item .tab_content .point_wrap ul li .green {
  font-weight: bold;
  color: #294f8f;
}
.detail--ranking--item .tab_content .point_wrap ul li:not(:first-child) {
  margin-top: 2.0512820513vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .point_wrap ul li:not(:first-child) {
    margin-top: 15.3846153846px;
  }
}
.detail--ranking--item .tab_content .voice_list li .top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .top {
    gap: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .voice_list li .top figure {
  width: 16.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .top figure {
    width: 125px;
  }
}
.detail--ranking--item .tab_content .voice_list li .top .text_wrap {
  line-height: 1.5;
  flex: 1;
}
.detail--ranking--item .tab_content .voice_list li .top .text_wrap .bold {
  font-weight: bold;
  font-size: 3.5897435897vw;
  color: #4aa7e0;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .top .text_wrap .bold {
    font-size: 26.9230769231px;
  }
}
.detail--ranking--item .tab_content .voice_list li .top .text_wrap .name {
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .top .text_wrap .name {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .voice_list li .body_text {
  margin-top: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .body_text {
    margin-top: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .voice_list li:not(:first-child) {
  margin-top: 3.8461538462vw;
  padding-top: 3.8461538462vw;
  border-top: solid 0.2564102564vw #ccc;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li:not(:first-child) {
    margin-top: 38.4615384615px;
    padding-top: 28.8461538462px;
    border-top: solid 1.9230769231px #ccc;
  }
}
.detail--ranking--item .tab_content .note {
  font-size: 2.5641025641vw;
  margin-top: 2.0512820513vw;
  font-weight: normal;
  color: #333;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .note {
    font-size: 19.2307692308px;
    margin-top: 15.3846153846px;
  }
}
.detail--ranking--item .tab_content .job_list li h4 {
  font-weight: bold;
  color: #294f8f;
  position: relative;
  font-size: 3.5897435897vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li h4 {
    font-size: 26.9230769231px;
  }
}
.detail--ranking--item .tab_content .job_list li h4::before {
  content: "";
  display: block;
  background: #294f8f;
  height: 0.2564102564vw;
  width: 53.8461538462vw;
  position: absolute;
  right: 2.5641025641vw;
  top: 50%;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li h4::before {
    height: 1.9230769231px;
    width: 403.8461538462px;
    right: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .job_list li dl {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.7948717949vw;
  gap: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li dl {
    margin-top: 13.4615384615px;
    gap: 9.6153846154px;
  }
}
.detail--ranking--item .tab_content .job_list li dl dt {
  width: 16.9230769231vw;
  padding: 1.2820512821vw;
  font-size: 2.5641025641vw;
  text-align: center;
  background: #4aa7e0;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li dl dt {
    width: 126.9230769231px;
    padding: 9.6153846154px;
    font-size: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .job_list li dl dd {
  font-size: 3.0769230769vw;
  flex: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li dl dd {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .job_list li:not(:first-child) {
  margin-top: 3.8461538462vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .job_list li:not(:first-child) {
    margin-top: 28.8461538462px;
  }
}
.detail--ranking--item #tab_a:checked ~ #tab_a_content, .detail--ranking--item #tab_b:checked ~ #tab_b_content, .detail--ranking--item #tab_c:checked ~ #tab_c_content,
.detail--ranking--item #tab_d:checked ~ #tab_d_content, .detail--ranking--item #tab_e:checked ~ #tab_e_content, .detail--ranking--item #tab_f:checked ~ #tab_f_content,
.detail--ranking--item #tab_g:checked ~ #tab_g_content, .detail--ranking--item #tab_h:checked ~ #tab_h_content, .detail--ranking--item #tab_i:checked ~ #tab_i_content {
  display: block;
}
.detail--ranking--item .cv_top {
  margin-top: 5.1282051282vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .cv_top {
    margin-top: 38.4615384615px;
  }
}
.detail--ranking--item .cv_top span {
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-size: 3.5897435897vw;
  margin-bottom: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .cv_top span {
    font-size: 26.9230769231px;
    margin-bottom: 19.2307692308px;
  }
}
.detail--ranking--item .cv_top span::before, .detail--ranking--item .cv_top span::after {
  content: "";
  display: block;
  background: #333;
  width: 0.2564102564vw;
  height: 95%;
  position: absolute;
  left: -1.7948717949vw;
  bottom: 0;
  transform: rotate(-30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .cv_top span::before, .detail--ranking--item .cv_top span::after {
    width: 1.9230769231px;
    left: -13.4615384615px;
  }
}
.detail--ranking--item .cv_top span::after {
  left: auto;
  right: -1.7948717949vw;
  transform: rotate(30deg);
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .cv_top span::after {
    right: -13.4615384615px;
  }
}
.detail--ranking--item .cv-btn {
  z-index: 10;
  margin-top: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .cv-btn {
    margin-top: 38.4615384615px;
  }
}
.detail--ranking--item + li {
  margin-top: 12.8205128205vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item + li {
    margin-top: 96.1538461538px;
  }
}

/*------------------まとめ summary------------------*/
.summary {
  padding: 10.7692307692vw 5.1282051282vw 10.2564102564vw;
  background: #4aa7e0;
}
@media only screen and (min-width: 750px) {
  .summary {
    padding: 80.7692307692px 38.4615384615px 76.9230769231px;
  }
}
.summary--ttl {
  text-align: center;
  color: #fff;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .summary--ttl {
    font-size: 34.6153846154px;
  }
}
.summary--ttl .mark {
  margin-right: 0.6666666667vw;
  font-weight: bold;
  font-size: 7.1794871795vw;
  padding: 0 1.0256410256vw 0.5128205128vw;
  background: linear-gradient(to bottom, transparent 15%, #294f8f 15.1%);
}
@media only screen and (min-width: 750px) {
  .summary--ttl .mark {
    margin-right: 5px;
    font-size: 53.8461538462px;
    padding: 0 7.6923076923px 3.8461538462px;
  }
}
.summary--ttl .mark .small {
  font-size: 5.641025641vw;
}
@media only screen and (min-width: 750px) {
  .summary--ttl .mark .small {
    font-size: 42.3076923077px;
  }
}
.summary--img {
  display: block;
  margin-top: 7.6923076923vw;
  margin-bottom: 7.6923076923vw;
}
@media only screen and (min-width: 750px) {
  .summary--img {
    margin-top: 57.6923076923px;
    margin-bottom: 57.6923076923px;
  }
}
.summary--top h3 {
  position: relative;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0.2666666667vw 0.5333333333vw #294f8f;
  margin-bottom: 0.5em;
  color: #fff;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--top h3 {
    text-shadow: 0 2px 4px #294f8f;
    font-size: 32px;
  }
}
.summary--top h3::before, .summary--top h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  background: url(../img/summary_strong.svg) no-repeat center/contain;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top h3::before, .summary--top h3::after {
    width: 40px;
    height: 40px;
  }
}
.summary--top h3::before {
  left: 0;
}
.summary--top h3::after {
  right: 0;
  transform: scale(-1, 1);
}
.summary--top--change {
  background: #fff;
  box-shadow: 0 0 1.0666666667vw rgba(3, 94, 56, 0.5);
  border-radius: 5px;
  padding: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change {
    box-shadow: 0 0 8px rgba(3, 94, 56, 0.5);
    padding: 40px;
  }
}
.summary--top--change ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li {
    gap: 40px;
  }
}
.summary--top--change ul li .person {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .person {
    gap: 10px;
  }
}
.summary--top--change ul li .person--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e9f5fe;
  border-radius: 50%;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .person--icon {
    width: 100px;
    height: 100px;
  }
}
.summary--top--change ul li .person--icon figure {
  width: 9.3333333333vw;
  height: 9.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .person--icon figure {
    width: 70px;
    height: 70px;
  }
}
.summary--top--change ul li .person p {
  font-size: 1.8666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .person p {
    font-size: 14px;
  }
}
.summary--top--change ul li .career {
  width: 100%;
}
.summary--top--change ul li .career dl {
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  font-size: 2.6666666667vw;
  line-height: 1.4;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .career dl {
    font-size: 20px;
  }
}
.summary--top--change ul li .career dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #294f8f;
  color: #fff;
  width: 20%;
  padding: 0.5em;
}
.summary--top--change ul li .career dl dd {
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: #e9f5fe;
  color: #294f8f;
  width: 40%;
  padding: 0.5em;
}
.summary--top--change ul li .career dl dd .small {
  font-size: 70%;
}
.summary--top--change ul li .career dl dd .barlow {
  line-height: 1;
  font-size: 140%;
}
.summary--top--change ul li .career dl dd:first-of-type .barlow {
  font-weight: 500;
}
.summary--top--change ul li .career dl dd:last-of-type {
  position: relative;
  font-weight: 700;
  background: #FDE9E2;
  color: #FF7801;
}
.summary--top--change ul li .career dl dd:last-of-type::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -1vw;
  width: 1.3333333333vw;
  height: 2.6666666667vw;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #FF7801;
  transform: translateY(-50%);
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li .career dl dd:last-of-type::before {
    left: -7.5px;
    width: 10px;
    height: 20px;
  }
}
.summary--top--change ul li .career dl + dl {
  margin-top: 5px;
}
.summary--top--change ul li + li {
  margin-top: 5.3333333333vw;
  padding-top: 5.3333333333vw;
  border-top: dashed 1px #4aa7e0;
}
@media only screen and (min-width: 750px) {
  .summary--top--change ul li + li {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.summary--box-top li {
  width: 100%;
  margin-bottom: 0.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li {
    margin-bottom: 5px;
  }
}
.summary--box-top li dl {
  display: flex;
  border: #294f8f solid 0.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl {
    border: #294f8f solid 2px;
  }
}
.summary--box-top li dl dt {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #294f8f;
  color: #fff;
  text-align: center;
  padding: 0.8em 0;
  font-size: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl dt {
    font-size: 20px;
  }
}
.summary--box-top li dl dd {
  width: 50%;
  background-color: #fff;
  color: #294f8f;
  font-size: 2.6666666667vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl dd {
    font-size: 20px;
  }
}
.summary--box-top li dl dd:not(.recruitment) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.summary--box-top li dl dd .barlow {
  color: #FF7801;
  font-size: 5.3333333333vw;
  margin-left: 0.6666666667vw;
  margin-right: 0.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl dd .barlow {
    font-size: 40px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.summary--box-top li dl dd .note {
  font-size: 1.6vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl dd .note {
    font-size: 12px;
  }
}
.summary--box-top li dl dd .star {
  margin-right: 5px;
}
.summary--box-top li dl dd .star img {
  height: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-top li dl dd .star img {
    height: 32px;
  }
}
.summary--box-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.summary--box-bottom li {
  width: calc(33.3333333333% - 0.4444444444vw);
}
@media only screen and (min-width: 750px) {
  .summary--box-bottom li {
    width: calc(33.3333333333% - 3.3333333333px);
  }
}
.summary--box-bottom li dl {
  border: #294f8f solid 0.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-bottom li dl {
    border: #294f8f solid 2px;
  }
}
.summary--box-bottom li dl dt {
  background: #294f8f;
  color: #fff;
  text-align: center;
  font-size: 2.6666666667vw;
  padding: 0.3em 0 0.4em;
}
@media only screen and (min-width: 750px) {
  .summary--box-bottom li dl dt {
    font-size: 20px;
  }
}
.summary--box-bottom li dl dd {
  font-size: 2.6666666667vw;
  color: #294f8f;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0.5em 0;
}
@media only screen and (min-width: 750px) {
  .summary--box-bottom li dl dd {
    font-size: 20px;
  }
}
.summary--box-bottom li + li {
  margin-left: 0.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .summary--box-bottom li + li {
    margin-left: 5px;
  }
}
.summary .cta_top_text {
  margin-top: 7.6923076923vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .summary .cta_top_text {
    margin-top: 57.6923076923px;
  }
}
.summary .cta_top_text span {
  font-weight: 700;
  display: inline-block;
  background: #e9f5fe;
  color: #294f8f;
}
.summary .cta_top_text span:not(.barlow) {
  font-size: 3.2vw;
  padding: 0.6em 1.2em;
  position: relative;
  border-radius: 0.6666666667vw;
  margin-bottom: 3.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .summary .cta_top_text span:not(.barlow) {
    font-size: 24px;
    border-radius: 5px;
    margin-bottom: 25px;
  }
}
.summary .cta_top_text span .barlow {
  font-size: 130%;
  vertical-align: -0.04em;
  margin-right: 3px;
}
.summary .cta_top_text span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2.6666666667vw;
  border: 2.6666666667vw solid transparent;
  border-top: 2.6666666667vw solid #e9f5fe;
}
@media only screen and (min-width: 750px) {
  .summary .cta_top_text span::after {
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 20px solid #e9f5fe;
  }
}
.summary .summary-btn {
  margin-top: 1.2820512821vw;
  /*margin-top: vw(30);
  @include pc{
  	margin-top: px(30);
  }*/
}
@media only screen and (min-width: 750px) {
  .summary .summary-btn {
    margin-top: 9.6153846154px;
  }
}

/*------------------フッター------------------*/
footer {
  text-align: center;
  padding: 6.1538461538vw 0;
  background: #000;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  footer {
    padding: 46.1538461538px 0;
  }
}
footer .link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  footer .link-list {
    gap: 38.4615384615px;
  }
}
footer .link-list a {
  color: #fff;
  font-size: 3.5897435897vw;
  text-decoration: underline;
  margin-bottom: 2.5641025641vw;
  font-weight: normal;
}
@media only screen and (min-width: 750px) {
  footer .link-list a {
    font-size: 26.9230769231px;
    margin-bottom: 19.2307692308px;
  }
}
footer small {
  margin-top: 2.5641025641vw;
  color: #fff;
  font-size: 3.0769230769vw;
  font-weight: normal;
}
@media only screen and (min-width: 750px) {
  footer small {
    margin-top: 19.2307692308px;
    font-size: 23.0769230769px;
  }
}/*# sourceMappingURL=style.css.map */