@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;
  }
}

.sp_hide {
  display: none;
}
@media only screen and (min-width: 750px) {
  .sp_hide {
    display: block;
  }
}

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

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

.orange {
  color: #F06B3E;
}

.white {
  color: #fff;
}

.marker {
  color: #F06B3E;
}

/*------------------cta------------------*/
.cv-btn {
  display: block;
  width: 78.6666666667vw;
  height: 17.3333333333vw;
  border-radius: 9999px;
  margin: 0 auto;
  background: #F06B3E;
  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: #F4FAD9;
  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;
  }
}
/*-----------------overview------------------*/
.overview {
  background: #F4FAD9;
  padding: 5.3333333333vw 2.6666666667vw 6.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .overview {
    padding: 40px 20px 50px;
  }
}
.overview h2 .sub {
  text-align: center;
  color: #035E38;
}
.overview h2 .sub span {
  position: relative;
  display: inline-block;
  padding: 0 0.65em 0 0.7em;
  font-size: 3.5897435897vw;
}
@media only screen and (min-width: 750px) {
  .overview h2 .sub span {
    font-size: 26.9230769231px;
  }
}
.overview h2 .sub span::before, .overview h2 .sub span::after {
  content: "";
  display: block;
  background: #035E38;
  width: 2px;
  height: 85%;
  position: absolute;
  bottom: 0;
  transform: rotate(-30deg);
}
.overview h2 .sub span::before {
  left: 0;
}
.overview h2 .sub span::after {
  right: 0;
  transform: rotate(30deg);
}
.overview h2 .main {
  text-align: center;
  font-size: 5.1282051282vw;
  font-weight: 700;
  margin-bottom: 1.2em;
  color: #035E38;
}
@media only screen and (min-width: 750px) {
  .overview h2 .main {
    font-size: 38.4615384615px;
  }
}
.overview h2 .main span {
  font-size: 180%;
  line-height: 0.8;
  font-family: "Barlow Condensed", sans-serif;
}
.overview .three_chart {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 1.5384615385vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart {
    gap: 11.5384615385px;
  }
}
.overview .three_chart .block {
  position: relative;
  border-radius: 1.5384615385vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block {
    border-radius: 11.5384615385px;
  }
}
.overview .three_chart .block::before {
  position: absolute;
  content: "";
  width: 23.0769230769vw;
  height: 6.4102564103vw;
  top: -4.6153846154vw;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block::before {
    width: 173.0769230769px;
    height: 48.0769230769px;
    top: -34.6153846154px;
  }
}
.overview .three_chart .block.no1 {
  border: solid 2px #00B9BE;
}
.overview .three_chart .block.no1::before {
  background: url(../img/ribbon_01.svg) no-repeat center/contain;
}
.overview .three_chart .block.no2 {
  border: solid 2px #005EAE;
}
.overview .three_chart .block.no2::before {
  background: url(../img/ribbon_02.svg) no-repeat center/contain;
}
.overview .three_chart .block.no3 {
  border: solid 2px #09445e;
}
.overview .three_chart .block.no3::before {
  background: url(../img/ribbon_03.svg) no-repeat center/contain;
}
.overview .three_chart .block h3 {
  border-radius: 0.7692307692vw 0.7692307692vw 0 0;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  padding: 0.5em 0;
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block h3 {
    border-radius: 5.7692307692px 5.7692307692px 0 0;
    font-size: 19.2307692308px;
  }
}
.overview .three_chart .block .contents_box {
  background: #fff;
  padding: 2.6666666667vw 2vw 3.3333333333vw;
  border-radius: 0 0 1.5384615385vw 1.5384615385vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block .contents_box {
    padding: 20px 15px 25px;
    border-radius: 0 0 11.5384615385px 11.5384615385px;
  }
}
.overview .three_chart .block .contents_box figure {
  margin: 0 auto;
  max-width: 23.0769230769vw;
  min-height: 6.9230769231vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block .contents_box figure {
    max-width: 173.0769230769px;
    min-height: 51.9230769231px;
  }
}
.overview .three_chart .block .contents_box figure img {
  vertical-align: middle;
}
.overview .three_chart .block .contents_box figure + .text {
  margin-top: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block .contents_box figure + .text {
    margin-top: 20px;
  }
}
.overview .three_chart .block .contents_box .text {
  line-height: 1.6;
  font-size: 3.0769230769vw;
  min-height: 6.4em;
  margin-bottom: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block .contents_box .text {
    font-size: 17.3076923077px;
    margin-bottom: 20px;
    min-height: 4.8em;
  }
}
.overview .three_chart .block .contents_box a {
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 0.5em 0;
  font-size: 2.5641025641vw;
  background: #F06B3E;
  box-shadow: 0 4px 0 #b04622;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block .contents_box a {
    font-size: 19.2307692308px;
  }
}
.overview .three_chart .block:first-child h3 {
  background: #00B9BE;
}
.overview .three_chart .block:first-child figure {
  max-width: 15.3846153846vw;
}
@media only screen and (min-width: 750px) {
  .overview .three_chart .block:first-child figure {
    max-width: 115.3846153846px;
  }
}
.overview .three_chart .block:nth-child(2) h3 {
  background: #005EAE;
}
.overview .three_chart .block:last-child h3 {
  background: #09445e;
}

.movie {
  padding: 6.4102564103vw 5.1282051282vw;
  background: #f5f5f5;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .movie {
    padding: 48.0769230769px 38.4615384615px 57.6923076923px;
  }
}
.movie .top {
  font-size: 5.641025641vw;
  display: inline-block;
  position: relative;
  color: #035e38;
}
@media only screen and (min-width: 750px) {
  .movie .top {
    font-size: 34.6153846154px;
  }
}
.movie .top p {
  display: inline-block;
  font-weight: bold;
}
.movie video {
  width: 100%;
  border: solid #ccc 0.5128205128vw;
  border-radius: 3.8461538462vw;
  margin: 0 auto;
  margin-top: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .movie video {
    width: 85%;
    border: solid #ccc 3.8461538462px;
    border-radius: 28.8461538462px;
    margin-top: 19.2307692308px;
  }
}
.movie .bottom {
  margin-top: 2.5641025641vw;
  margin-bottom: 2.5641025641vw;
  font-size: 3.5897435897vw;
}
@media only screen and (min-width: 750px) {
  .movie .bottom {
    font-size: 26.9230769231px;
    margin-top: 19.2307692308px;
    margin-bottom: 19.2307692308px;
  }
}
.movie .bottom .strong {
  color: #F06B3E;
  font-weight: bold;
}

/*------------------大事なポイント2つ important_points------------------*/
.important_points {
  padding: 10.2564102564vw 5.1282051282vw;
  background: #F5F5F5;
}
@media only screen and (min-width: 750px) {
  .important_points {
    padding: 76.9230769231px 28.8461538462px;
  }
}
.important_points h2 {
  display: flex;
  align-items: last baseline;
  justify-content: center;
  gap: 1.2820512821vw;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 750px) {
  .important_points h2 {
    gap: 9.6153846154px;
  }
}
.important_points h2 .left {
  font-size: 4.358974359vw;
  line-height: 1.2;
}
@media only screen and (min-width: 750px) {
  .important_points h2 .left {
    font-size: 32.6923076923px;
  }
}
.important_points h2 .left .first {
  display: block;
  background: #61BAA5;
  color: #fff;
  text-align: center;
  border-radius: 1.2820512821vw;
  font-size: 3.0769230769vw;
  padding: 0.15em 0;
  margin-bottom: 0.25em;
}
@media only screen and (min-width: 750px) {
  .important_points h2 .left .first {
    border-radius: 9.6153846154px;
    font-size: 23.0769230769px;
  }
}
.important_points h2 .left .strong {
  font-size: 5.1282051282vw;
  color: #F06B3E;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .important_points h2 .left .strong {
    font-size: 38.4615384615px;
  }
}
.important_points h2 .right {
  font-size: 7.1794871795vw;
  color: #F06B3E;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .important_points h2 .right {
    font-size: 53.8461538462px;
  }
}
.important_points h2 .right::after {
  position: absolute;
  content: "";
  background: url(../img/strong_line.svg) no-repeat center/contain;
  width: 15.3846153846vw;
  height: 6.1538461538vw;
  top: -1.2820512821vw;
  right: -7.1794871795vw;
  transform: rotate(45deg);
}
@media only screen and (min-width: 750px) {
  .important_points h2 .right::after {
    width: 115.3846153846px;
    height: 46.1538461538px;
    top: -9.6153846154px;
    right: -53.8461538462px;
  }
}
.important_points h2 .right span {
  font-size: 12.8205128205vw;
  line-height: 0.9;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .important_points h2 .right span {
    font-size: 96.1538461538px;
  }
}
.important_points .point .point_wrap {
  display: flex;
  align-items: center;
  border: solid 1px #035E38;
  background: #fff;
  padding: 3.8461538462vw;
  gap: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap {
    padding: 28.8461538462px;
    gap: 19.2307692308px;
  }
}
.important_points .point .point_wrap .ng {
  display: flex;
  flex-direction: column;
  gap: 1.2820512821vw;
  width: 30%;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .ng {
    gap: 9.6153846154px;
  }
}
.important_points .point .point_wrap .ng p {
  text-align: center;
  line-height: 1.2;
  font-size: 2.5641025641vw;
  color: #035E38;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .ng p {
    font-size: 19.2307692308px;
  }
}
.important_points .point .point_wrap .ng p .strong {
  font-size: 200%;
  line-height: 1;
  color: #F06B3E;
}
.important_points .point .point_wrap .ng p .ng_wrap {
  display: inline-block;
  padding: 0 1em;
  position: relative;
  transform: rotate(5deg);
}
.important_points .point .point_wrap .ng p .ng_wrap::before, .important_points .point .point_wrap .ng p .ng_wrap::after {
  content: "";
  display: block;
  background: #035E38;
  width: 2px;
  height: 85%;
  position: absolute;
  bottom: 0;
  transform: rotate(-20deg);
}
.important_points .point .point_wrap .ng p .ng_wrap::before {
  left: 0;
}
.important_points .point .point_wrap .ng p .ng_wrap::after {
  right: 0;
  transform: rotate(20deg);
}
.important_points .point .point_wrap .point_list {
  width: 70%;
}
.important_points .point .point_wrap .point_list ul li h3 {
  display: flex;
  align-items: center;
  gap: 1.2820512821vw;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .point_list ul li h3 {
    gap: 9.6153846154px;
  }
}
.important_points .point .point_wrap .point_list ul li h3 .point_number {
  display: inline-block;
  background: #035E38;
  color: #fff;
  line-height: 1;
  font-family: "Barlow Condensed", sans-serif;
  padding: 0.2em 0.4em;
  border-radius: 5px;
  text-align: center;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .point_list ul li h3 .point_number {
    font-size: 19.2307692308px;
  }
}
.important_points .point .point_wrap .point_list ul li h3 .point_number .strong {
  font-size: 200%;
}
.important_points .point .point_wrap .point_list ul li h3 p {
  color: #035E38;
  font-weight: 700;
  font-size: 3.5897435897vw;
  line-height: 1.4;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .point_list ul li h3 p {
    font-size: 23.0769230769px;
  }
}
.important_points .point .point_wrap .point_list ul li .text {
  font-size: 3.0769230769vw;
  margin-top: 0.8em;
}
@media only screen and (min-width: 750px) {
  .important_points .point .point_wrap .point_list ul li .text {
    font-size: 17.3076923077px;
  }
}
.important_points .point .point_wrap .point_list ul li + li {
  margin-top: 1em;
  padding-top: 1em;
  border-top: dashed 2px #61BAA5;
}

/*------------------ランキング表 ranking-table------------------*/
.ranking-table {
  background: #F4FAD9;
  padding: 7.6923076923vw 5.1282051282vw 10.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table {
    padding: 57.6923076923px 38.4615384615px 76.9230769231px;
  }
}
.ranking-table h2 .sub {
  text-align: center;
}
.ranking-table h2 .sub span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em 0 0.7em;
  font-size: 3.5897435897vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table h2 .sub span {
    font-size: 26.9230769231px;
  }
}
.ranking-table h2 .sub span::before, .ranking-table h2 .sub span::after {
  content: "";
  display: block;
  background: #333;
  width: 2px;
  height: 85%;
  position: absolute;
  bottom: 0;
  transform: rotate(-30deg);
}
.ranking-table h2 .sub span::before {
  left: 0;
}
.ranking-table h2 .sub span::after {
  right: 0;
  transform: rotate(30deg);
}
.ranking-table h2 .main {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5641025641vw;
  margin-bottom: 7.6923076923vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table h2 .main {
    gap: 19.2307692308px;
    margin-bottom: 57.6923076923px;
  }
}
.ranking-table h2 .main p {
  line-height: 1.2;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .ranking-table h2 .main p {
    font-size: 34.6153846154px;
  }
}
.ranking-table h2 .main p:first-child {
  color: #035E38;
}
.ranking-table h2 .main p.strong {
  font-size: 8.2051282051vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table h2 .main p.strong {
    font-size: 61.5384615385px;
  }
}
.ranking-table h2 .main p.strong span {
  font-size: 180%;
  line-height: 0.9;
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
  vertical-align: -0.05em;
}
.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;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item {
    width: 230.7692307692px;
  }
}
.ranking-table--ranking--item .bubble {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -7.4358974359vw;
  transform: translateX(-50%);
  background: #fff;
  font-size: 2.5641025641vw;
  font-weight: bold;
  width: 90%;
  padding: 1.2820512821vw 0;
  line-height: 1.2;
  border-radius: 1.2820512821vw;
  color: #035E38;
  border: solid #035E38 0.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .bubble {
    top: -55.7692307692px;
    font-size: 19.2307692308px;
    padding: 9.6153846154px 0;
    border-radius: 9.6153846154px;
    border: solid #035E38 1.9230769231px;
  }
}
.ranking-table--ranking--item .bubble p {
  position: relative;
  white-space: nowrap;
}
.ranking-table--ranking--item .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 .bubble p::before {
    margin-left: -19.2307692308px;
    border: 19.2307692308px solid transparent;
    border-top: 19.2307692308px solid #fff;
  }
}
.ranking-table--ranking--item dt {
  padding: 2.0512820513vw 0 1.5384615385vw;
  background: #035E38;
  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: #035E38;
  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 dt {
  background: #035E38;
  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: #F06B3E;
  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 {
  margin-top: 1.2820512821vw;
  width: 23.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no2 img {
    margin-top: 9.6153846154px;
    width: 173.0769230769px;
  }
}
.ranking-table--ranking--item .rank.no3 img {
  width: 19.2307692308vw;
  margin-top: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .rank.no3 img {
    width: 144.2307692308px;
    margin-top: 19.2307692308px;
  }
}
.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 dd {
  height: 11.7948717949vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .area dd {
    height: 88.4615384615px;
  }
}
.ranking-table--ranking--item .area dd .small {
  font-size: 60%;
}
.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: 105.7692307692px;
    font-size: 23.0769230769px;
  }
}
.ranking-table--ranking--item .jobs dd .barlow {
  color: #F06B3E;
  font-size: 250%;
}
.ranking-table--ranking--item .jobs dd .note {
  font-size: 1.7948717949vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .jobs dd .note {
    font-size: 13.4615384615px;
  }
}
.ranking-table--ranking--item .common dd {
  height: 11.7948717949vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .common dd {
    height: 88.4615384615px;
  }
}
.ranking-table--ranking--item .inexperienced dd {
  height: 16.9230769231vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .inexperienced dd {
    height: 126.9230769231px;
  }
}
.ranking-table--ranking--item .inexperienced dd p {
  font-size: 2.5641025641vw;
  color: #333;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .inexperienced dd p {
    font-size: 19.2307692308px;
  }
}
.ranking-table--ranking--item .occupation dd {
  text-align: left;
  font-size: 3.0769230769vw;
  padding: 2.5641025641vw;
  display: block;
  word-break: break-all;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .occupation dd {
    font-size: 23.0769230769px;
    padding: 19.2307692308px;
  }
}
.ranking-table--ranking--item .occupation dd .recruit_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4%;
}
.ranking-table--ranking--item .occupation dd .recruit_list li {
  text-align: center;
  background: #61BAA5;
  color: #fff;
  border-radius: 0.5128205128vw;
  width: 48%;
}
.ranking-table--ranking--item .occupation dd .recruit_list li.column-2 {
  width: 100%;
}
.ranking-table--ranking--item .occupation dd .recruit_list li.gray {
  background: #ddd;
  color: #aaa;
}
.ranking-table--ranking--item .occupation dd .recruit_list li + li {
  margin-top: 4%;
}
.ranking-table--ranking--item .feature dd {
  display: inline;
  display: block;
  font-size: 3.0769230769vw;
  text-align: justify;
  padding: 2.5641025641vw;
  min-height: 47.4358974359vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .feature dd {
    font-size: 23.0769230769px;
    padding: 19.2307692308px;
    min-height: 315px;
  }
}
.ranking-table--ranking--item .feature dd .small {
  font-size: 3.3333333333vw;
  font-weight: 500;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .feature dd .small {
    font-size: 25px;
  }
}
.ranking-table--ranking--item .btn dd {
  height: 17.9487179487vw;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .btn dd {
    height: 134.6153846154px;
  }
}
.ranking-table--ranking--item .btn dd .cv-btn-table {
  display: block;
  background: #F06B3E;
  width: 24vw;
  height: 10.2564102564vw;
  font-size: 3.3333333333vw;
  font-weight: bold;
  line-height: 10.2564102564vw;
  border-radius: 9999px;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .btn dd .cv-btn-table {
    width: 180px;
    height: 76.9230769231px;
    font-size: 25px;
    line-height: 76.9230769231px;
  }
}
.ranking-table--ranking--item .btn dd .link-btn-table {
  position: relative;
  display: block;
  color: #fff;
  background: #61BAA5;
  width: 26.6666666667vw;
  height: 10.2564102564vw;
  font-size: 3.0769230769vw;
  line-height: 10.2564102564vw;
  border-radius: 9999px;
  padding-right: 1em;
}
@media only screen and (min-width: 750px) {
  .ranking-table--ranking--item .btn dd .link-btn-table {
    width: 200px;
    height: 76.9230769231px;
    font-size: 23.0769230769px;
    line-height: 76.9230769231px;
  }
}
.ranking-table--ranking--item .btn dd .link-btn-table::before {
  position: absolute;
  content: "";
  background: url(../img/cv_icon.svg) no-repeat;
  width: 1em;
  height: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0.5em;
}

/*------------------導入 intro------------------*/
.intro {
  background: #61BAA5;
  padding: 13.3333333333vw 5.3333333333vw 8vw;
}
@media only screen and (min-width: 750px) {
  .intro {
    padding: 100px 40px 60px;
  }
}
.intro--ttl {
  color: #035E38;
  text-align: center;
}
.intro--ttl--wrap {
  position: relative;
  display: inline-block;
  font-weight: bold;
  background: #fff;
  padding: 4.6153846154vw;
  border-radius: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .intro--ttl--wrap {
    padding: 34.6153846154px;
    border-radius: 20px;
  }
}
.intro--ttl--wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -3.3333333333vw;
  border: 3.3333333333vw solid transparent;
  border-top: 3.3333333333vw solid #fff;
}
@media only screen and (min-width: 750px) {
  .intro--ttl--wrap::after {
    margin-left: -25px;
    border: 25px solid transparent;
    border-top: 25px solid #fff;
  }
}
.intro--ttl .sub {
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .intro--ttl .sub {
    font-size: 24px;
  }
}
.intro--ttl .main {
  font-size: 8vw;
  line-height: 1.2;
}
@media only screen and (min-width: 750px) {
  .intro--ttl .main {
    font-size: 60px;
  }
}
.intro--ttl .main .small {
  font-size: 6.4vw;
}
@media only screen and (min-width: 750px) {
  .intro--ttl .main .small {
    font-size: 48px;
  }
}
.intro--img {
  width: 69.3333333333vw;
  height: 54vw;
  margin: 0 auto;
  margin-top: 3.3333333333vw;
  margin-bottom: 4.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .intro--img {
    width: 520px;
    height: 405px;
    margin-top: 25px;
    margin-bottom: 35px;
  }
}
.intro--txt {
  color: #fff;
  font-size: 4vw;
  line-height: 1.75;
  font-weight: normal;
  text-align: justify;
}
@media only screen and (min-width: 750px) {
  .intro--txt {
    font-size: 30px;
  }
}

/*------------------使うべき理由 reason------------------*/
.reason--ttl {
  background: linear-gradient(to bottom, #61BAA5 0%, #61BAA5 50%, #fff 50%, #fff 100%);
  text-align: center;
  padding: 0 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .reason--ttl {
    padding: 0 40px;
  }
}
.reason--ttl h2 {
  color: #fff;
  background: #035E38;
  box-shadow: 4px 4px 0 #FFF;
  padding: 0.8em 0;
  font-size: 5.8666666667vw;
}
@media only screen and (min-width: 750px) {
  .reason--ttl h2 {
    font-size: 44px;
  }
}
.reason--main {
  padding: 8vw 5.3333333333vw 10.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .reason--main {
    padding: 60px 40px 80px;
  }
}
.reason--main ul li {
  display: flex;
  gap: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li {
    gap: 40px;
  }
}
.reason--main ul li .figure {
  width: 37%;
  background: #F4FAD9;
  border-radius: 10px;
  text-align: center;
}
.reason--main ul li .figure span {
  display: inline-block;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10.6666666667vw;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  background: #035E38;
  padding: 0.125em 0.25em;
  border-radius: 0 0 5px 5px;
  min-width: 13.3333333333vw;
  min-height: 11.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .figure span {
    font-size: 80px;
    min-width: 100px;
    min-height: 85px;
  }
}
.reason--main ul li .figure .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 12vw);
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .figure .img {
    height: calc(100% - 90px);
  }
}
.reason--main ul li .figure .img figure {
  width: 20vw;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .figure .img figure {
    width: 150px;
  }
}
.reason--main ul li .text {
  width: 63%;
  padding: 2.6666666667vw 0;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .text {
    padding: 20px 0;
  }
}
.reason--main ul li .text h3 {
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: #035E38;
  line-height: 1.4;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .text h3 {
    font-size: 40px;
  }
}
.reason--main ul li .text p {
  line-height: 1.8;
  margin-top: 1em;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li .text p {
    font-size: 24px;
  }
}
.reason--main ul li + li {
  margin-top: 8vw;
}
@media only screen and (min-width: 750px) {
  .reason--main ul li + li {
    margin-top: 60px;
  }
}

/*------------------できること service------------------*/
.service {
  /*padding: vw_b(40) 0 0;
  @include pc{
  	padding: px_b(40) 0 0;
  }*/
}
.service--top {
  background: #fff;
  padding: 0 5.3333333333vw 5.3333333333vw;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .service--top {
    padding: 0 40px 40px;
  }
}
.service--top::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -4vw;
  border: 4vw solid transparent;
  border-top: 4vw solid #fff;
}
@media only screen and (min-width: 750px) {
  .service--top::before {
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #fff;
  }
}
.service--top--illust {
  width: 25.3333333333vw;
  height: 35.6vw;
}
@media only screen and (min-width: 750px) {
  .service--top--illust {
    width: 190px;
    height: 267px;
  }
}
.service--top--txt {
  font-weight: bold;
  text-align: center;
}
.service--top--txt--ttl {
  font-size: 3.7333333333vw;
  line-height: 1.5;
}
@media only screen and (min-width: 750px) {
  .service--top--txt--ttl {
    font-size: 28px;
  }
}
.service--top--txt--ttl .small {
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .service--top--txt--ttl .small {
    font-size: 24px;
  }
}
.service--top--txt--sub {
  font-size: 2.4vw;
  line-height: 1.5;
  margin-top: 2.4vw;
  white-space: nowrap;
}
@media only screen and (min-width: 750px) {
  .service--top--txt--sub {
    font-size: 20px;
    margin-top: 20px;
  }
}
.service--bottom {
  background: #035E38;
  padding: 13.3333333333vw 5.3333333333vw 10.6666666667vw;
  /*padding: vw_b(110) vw_b(40) vw_b(80);
  @include pc{
  	padding: px_b(110) px_b(40) px_b(80);
  }*/
}
@media only screen and (min-width: 750px) {
  .service--bottom {
    padding: 100px 40px 80px;
  }
}
.service--bottom--ttl {
  font-size: 6.6666666667vw;
  text-align: center;
  margin-bottom: 9.0666666667vw;
  color: #fff;
}
@media only screen and (min-width: 750px) {
  .service--bottom--ttl {
    font-size: 50px;
    margin-bottom: 68px;
  }
}
.service--bottom--list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.service--bottom--list--item {
  width: 33.3333%;
  height: 35.3333333333vw;
  background: #fff;
  padding: 5.3333333333vw 0 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .service--bottom--list--item {
    height: 265px;
    padding: 40px 0 40px;
  }
}
.service--bottom--list--item--ttl {
  font-size: 2.4vw;
  text-align: center;
  color: #035E38;
  margin-bottom: 5.0666666667vw;
  font-weight: bold;
  line-height: 1.75;
}
@media only screen and (min-width: 750px) {
  .service--bottom--list--item--ttl {
    font-size: 18px;
    margin-bottom: 38px;
  }
}
.service--bottom--list--item--icon {
  width: 12.9333333333vw;
  height: 12.4vw;
  margin: 0 auto;
}
@media only screen and (min-width: 750px) {
  .service--bottom--list--item--icon {
    width: 97px;
    height: 93px;
  }
}
.service--bottom--list .base {
  background: #F4FAD9;
}

/*------------------早見表 chart------------------*/
.chart {
  padding: 13.3333333333vw 5.3333333333vw 10.6666666667vw;
  background: #F4FAD9;
}
@media only screen and (min-width: 750px) {
  .chart {
    padding: 100px 40px 80px;
  }
}
.chart--ttl {
  text-align: center;
}
.chart--ttl--wrap {
  position: relative;
  line-height: 1.4;
  display: inline-block;
  color: #035E38;
  font-weight: bold;
  background: #fff;
  border-radius: 2.6666666667vw;
  padding: 0.5em 1em;
  font-size: 8vw;
  margin: 0 auto 6.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .chart--ttl--wrap {
    font-size: 60px;
    margin: 0 auto 50px;
    border-radius: 20px;
  }
}
.chart--ttl--wrap .sub {
  display: block;
  color: #61BAA5;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .chart--ttl--wrap .sub {
    font-size: 24px;
  }
}
.chart--ttl--wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -4vw;
  border: 4vw solid transparent;
  border-top: 4vw solid #fff;
}
@media only screen and (min-width: 750px) {
  .chart--ttl--wrap::after {
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #fff;
  }
}
.chart--main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
}
.chart--main ul li {
  width: 49%;
}
.chart--main ul li:last-child {
  margin-top: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .chart--main ul li:last-child {
    margin-top: 40px;
  }
}
.chart--main ul li h3 {
  font-weight: 700;
  text-align: center;
  color: #035E38;
  margin-bottom: 0.5em;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .chart--main ul li h3 {
    font-size: 24px;
  }
}
.chart--main ul li table {
  width: 100%;
  border: solid 2px #61BAA5;
}
.chart--main ul li table tr:first-of-type th {
  border-bottom: solid 2px #F4FAD9;
}
.chart--main ul li table tr:first-of-type td {
  border-bottom: solid 2px #61BAA5;
}
.chart--main ul li table tr th {
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  background: #61BAA5;
  color: #fff;
  vertical-align: middle;
  width: 27%;
}
.chart--main ul li table tr td {
  text-align: center;
  vertical-align: middle;
  background: #fff;
  height: 11.3333333333vw;
  width: 73%;
}
@media only screen and (min-width: 750px) {
  .chart--main ul li table tr td {
    height: 85px;
  }
}
.chart--main ul li table tr td img {
  max-width: 24vw;
  max-height: 6vw;
}
@media only screen and (min-width: 750px) {
  .chart--main ul li table tr td img {
    max-width: 180px;
    max-height: 45px;
  }
}

/*------------------サービス詳細 detail------------------*/
.detail {
  position: relative;
  background: #035E38;
  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: 38.4615384615vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item--ttl .logo-no2 {
    width: 288.4615384615px;
  }
}
.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: #035E38;
  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 #035E38;
  padding: 5.1282051282vw 3.8461538462vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content {
    border: solid 2.8846153846px #035E38;
    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: #F4FAD9;
  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: #F4FAD9;
  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: 13.3333333333vw;
  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: 100px;
  }
}
.detail--ranking--item .tab_content .table_bottom dl dd figure {
  width: 7.4358974359vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@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 dd p {
  font-size: 80%;
}
.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 .table_occupation {
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_occupation {
    font-size: 23.0769230769px;
  }
}
.detail--ranking--item .tab_content .table_occupation dt {
  background: #F4FAD9;
  text-align: center;
  padding: 1.2820512821vw;
  border: solid 0.2564102564vw #ccc;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_occupation dt {
    padding: 9.6153846154px;
    border: 1.9230769231px #ccc solid;
  }
}
.detail--ranking--item .tab_content .table_occupation dd {
  text-align: center;
  border: solid 0.2564102564vw #ccc;
  border-top: none;
  padding: 2.0512820513vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_occupation dd {
    border: 1.9230769231px #ccc solid;
    padding: 19.2307692308px;
  }
}
.detail--ranking--item .tab_content .table_occupation dd .recruit_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}
.detail--ranking--item .tab_content .table_occupation dd .recruit_list li {
  background: #61BAA5;
  color: #fff;
  width: 32%;
  display: inline-block;
  border-radius: 0.7692307692vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .table_occupation dd .recruit_list li {
    border-radius: 5.7692307692px;
  }
}
.detail--ranking--item .tab_content .table_occupation dd .recruit_list li.gray {
  background: #ddd;
  color: #aaa;
}
.detail--ranking--item .tab_content .table_occupation dd .recruit_list li:nth-last-child(-n+7) {
  margin-top: 2%;
}
.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: #019a5a;
}
.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: 17.9487179487vw;
}
@media only screen and (min-width: 750px) {
  .detail--ranking--item .tab_content .voice_list li .top figure {
    width: 134.6153846154px;
  }
}
.detail--ranking--item .tab_content .voice_list li .top .text_wrap {
  line-height: 1.5;
}
.detail--ranking--item .tab_content .voice_list li .top .text_wrap .bold {
  font-weight: bold;
  font-size: 3.5897435897vw;
  color: #61BAA5;
}
@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 .job_list li h4 {
  font-weight: bold;
  color: #035E38;
  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: #035E38;
  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;
  align-items: center;
  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: #61BAA5;
  color: #fff;
  font-weight: bold;
}
@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;
}
@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: #61BAA5;
}
@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;
  margin-bottom: 1em;
}
@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%, #035E38 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-bottom: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .summary--img {
    margin-bottom: 9.6153846154px;
  }
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19.2307692308px;
  }
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap .contents {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
.summary .recommend_wrap .contents + div {
  margin-top: 5.1282051282vw;
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap .contents + div {
    margin-top: 0;
  }
}
.summary .recommend_wrap .btn {
  width: 100%;
  background: #F06B3E;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 1em 0;
  transition: 300ms;
  z-index: 10;
  border-radius: 9999px;
  box-shadow: 0 1.0666666667vw 0 #b04622;
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap .btn {
    height: auto;
    box-shadow: 0 8px 0 #b04622;
  }
}
.summary .recommend_wrap .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;
}
.summary .recommend_wrap .btn p {
  color: #F4FAD9;
  font-size: 4vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap .btn p {
    font-size: 20px;
  }
}
.summary .recommend_wrap .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) {
  .summary .recommend_wrap .btn .cv-arrow {
    width: 28px;
    height: 28px;
    right: 28px;
  }
}
.summary .recommend_wrap .btn .cv-arrow img {
  vertical-align: top;
}
.summary .recommend_wrap + div {
  margin-top: 10.2564102564vw;
}
@media only screen and (min-width: 750px) {
  .summary .recommend_wrap + div {
    margin-top: 76.9230769231px;
  }
}
.summary .ranking-table_last h2 .sub {
  text-align: center;
}
.summary .ranking-table_last h2 .sub span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em 0 0.7em;
  font-size: 3.5897435897vw;
  color: #fff;
}
@media only screen and (min-width: 750px) {
  .summary .ranking-table_last h2 .sub span {
    font-size: 26.9230769231px;
  }
}
.summary .ranking-table_last h2 .sub span::before, .summary .ranking-table_last h2 .sub span::after {
  content: "";
  display: block;
  background: #fff;
  width: 2px;
  height: 85%;
  position: absolute;
  bottom: 0;
  transform: rotate(-30deg);
}
.summary .ranking-table_last h2 .sub span::before {
  left: 0;
}
.summary .ranking-table_last h2 .sub span::after {
  right: 0;
  transform: rotate(30deg);
}
.summary .ranking-table_last h2 .main {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5641025641vw;
  margin-bottom: 2.5641025641vw;
}
@media only screen and (min-width: 750px) {
  .summary .ranking-table_last h2 .main {
    gap: 19.2307692308px;
    margin-bottom: 19.2307692308px;
  }
}
.summary .ranking-table_last h2 .main p {
  line-height: 1.2;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
@media only screen and (min-width: 750px) {
  .summary .ranking-table_last h2 .main p {
    font-size: 34.6153846154px;
  }
}
.summary .ranking-table_last h2 .main p:first-child {
  color: #fff;
}
.summary .ranking-table_last h2 .main p.strong {
  font-size: 8.2051282051vw;
  color: #F0E13E;
}
@media only screen and (min-width: 750px) {
  .summary .ranking-table_last h2 .main p.strong {
    font-size: 61.5384615385px;
  }
}
.summary .ranking-table_last h2 .main p.strong span {
  font-size: 180%;
  line-height: 0.9;
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
  vertical-align: -0.05em;
}

/*------------------フッター------------------*/
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;
  }
}

/* logo slider */
.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__slide img {
  height: auto;
  width: 100%;
}

/**/
.main_wrap {
  min-height: 100vh;
  position: relative;
}

.bridge_contents {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bridge_contents p {
  font-size: 3.0769230769vw;
}
@media only screen and (min-width: 750px) {
  .bridge_contents p {
    font-size: 19.2307692308px;
  }
}
.bridge_contents .top span {
  display: inline-block;
  position: relative;
  padding: 0 1.2em;
  line-height: 1.2;
  font-weight: 600;
  color: #035E38;
  font-size: 4.1025641026vw;
}
@media only screen and (min-width: 750px) {
  .bridge_contents .top span {
    font-size: 23.0769230769px;
  }
}
.bridge_contents .top span::before, .bridge_contents .top span::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 2px;
  background: #035E38;
}
.bridge_contents .top span::before {
  transform: rotate(-20deg);
  left: 0;
}
.bridge_contents .top span::after {
  transform: rotate(20deg);
  right: 0;
}
.bridge_contents .loading {
  display: flex;
  justify-content: center;
}
.bridge_contents .loading .spinner {
  width: 15.3846153846vw;
  height: 15.3846153846vw;
  border: 4px solid rgba(0, 0, 0, 0.1);
  /* Or use a CSS var for this color */
  border-radius: 50%;
  border-top-color: #61BAA5;
  animation: spin 1s ease-in-out infinite;
}
@media only screen and (min-width: 750px) {
  .bridge_contents .loading .spinner {
    width: 76.9230769231px;
    height: 76.9230769231px;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.bridge_contents .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2820512821vw;
}
@media only screen and (min-width: 750px) {
  .bridge_contents .bottom {
    gap: 9.6153846154px;
  }
}
.bridge_contents .bottom figure {
  margin: 0;
}/*# sourceMappingURL=style.css.map */