@charset "UTF-8";
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.s-mv {
  position: relative;
  margin-bottom: 4rem;
}
.s-mv .c-mv_ttl {
  width: 70%;
  z-index: 100;
  padding: 2.5rem 2rem 0;
}
a.blank {
  color: rgb(30, 172, 229);
}
.blank .bl {
  position: relative;
  width: 14px;
  display: inline-block;
  height: 14px;
  background: url("../images/new-tab.svg")no-repeat center center/contain;
  color: rgb(30, 172, 229);
  margin-left: 0.5rem;
}
/*
.loop_wrap {
  display: flex;
  width: auto;
  height: 100vw;
  overflow: hidden;
  max-height: 700px;
}
.loop_wrap img {
  width: auto;
  height: 100%;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
*/
@media only screen and (min-width: 1000px) {
  .s-mv {
    padding: 1rem;
    margin-bottom: 6rem;
  }
  .s-mv .c-mv_ttl {
    position: absolute;
    left: 3rem;
    max-width: 50rem;
    top: 5rem;
    width: 30%;
    padding: 0;
  }
}
@media only screen and (min-width: 1367px) {
  .s-mv .c-mv_ttl {
    top: 8rem;
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.left_a {
  opacity: 0;
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.s-history {
  padding: 100px 1rem 7rem;
  margin-top: -100px;
}
.s-history .ttl_wrap {
  overflow: hidden;
}
.inr_ttl {
  color: #0e0d6a;
}
/*
.s-history .cont_inr {
  padding: 0 1rem;
}
*/
.s-history .s-history_ttl {
  max-width: 33rem;
}
.s-history .s-history_number {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 6rem;
  height: 6rem;
  justify-content: center;
  border-radius: 100vh;
  position: relative;
  border: 1px solid #1eace5;
}
/*
.s-history li.active .s-history_number svg.demo {
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
}
.s-history li .s-history_number circle.demo {
  fill: none;
  stroke: transparent;
}
.s-history li.active .s-history_number circle.demo {
  fill: none;
  stroke: #1eace5;
  stroke-width: 1px;
  stroke-dasharray: 314;
  animation: demo_kururi ease 1s;
}
*/
@keyframes demo_kururi {
  from {
    stroke-dashoffset: 314;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.s-history .s-history_number .inr {
  border: 1px solid #1eace5;
  width: 5rem;
  height: 5rem;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.s-history .s-history_number .inr_s {
  width: 4rem;
  height: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  background-color: #1eace5;
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.s-history .s-history__list {
  max-width: 120rem;
  margin: auto;
  position: relative;
  z-index: 0;
}
.s-history .border-line {
  position: absolute;
  top: 0;
  height: 100%;
  width: 3rem;
  background: linear-gradient(0deg, #fff 0%, #f1f1f1 5%, #f1f1f1 70%, #fff 100%);
  left: 1.75rem;
  transform: translateX(-1rem);
  z-index: -1;
  animation: progressBar 0.1s;
}
@keyframes progressBar {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.s-history .s-history__list li, .s-history .s-history__list li .s-history_txtcont, .s-history .s-history__list li .line2 {
  position: relative;
}
.s-history .s-history__list .f-right::before, .s-history .s-history__list .f-left::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  height: 3rem;
  width: 0%;
  background: #f1f1f1;
  z-index: -1;
  transition: all 2s;
  -webkit-transition: all 2s;
}
.s-history .s-history__list li.active.f-right::before, .s-history .s-history__list li.active.f-left::before, .s-history .s-history__list li.active.w-100 .f-left::before, .s-history .s-history__list li.active.w-100 .f-right::before {
  width: 80%;
}
/*
.s-history .s-history__list .f-right::before {
  left: calc(5.3rem / 2);
}
.s-history .s-history__list .f-left::before {
  left: calc(5.3rem / 2);
}
*/
.s-history .s-history__list .f-right .s-history_txtcont::before, .s-history .s-history__list .f-left .s-history_txtcont::before, .s-history .s-history__list li.w-100 .f-right::after, .s-history .s-history__list li.w-100 .f-left::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  background: #0e0d6a;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.s-history .s-history__list .f-right .s-history_txtcont::before {
  transform: translateY(-100%);
}
.line {
  position: relative;
}
.line2 {
  display: flex;
}
/*上下線*/
.line::before, .line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
}
/*左右線*/
.line2::before, .line2::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #fff;
}
/*上線*/
.line::before {
  top: -2px;
  left: 0;
}
.s-history .s-history__list li.active .line::before {
  animation: lineAnime .3s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}
/*右線*/
.line2::before {
  top: 0;
  right: -2px;
}
.s-history .s-history__list li.active .line2::before {
  animation: lineAnime2 .3s linear .3s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}
/*下線*/
.line::after {
  bottom: -2px;
  right: 0;
}
.s-history .s-history__list li.active .line::after {
  animation: lineAnime-1 .3s linear .6s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}
/*左線*/
.line2::after {
  bottom: 0;
  left: -2px;
}
.s-history .s-history__list li.active .line2::after {
  animation: lineAnime2-2 .3s linear .9s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}
@keyframes lineAnime {
  0% {
    left: 0;
    width: 100%;
  }
  50% {
    left: 30%;
    width: 70%;
  }
  51% {
    left: 60%;
    width: 40%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes lineAnime-1 {
  0% {
    right: 0;
    width: 100%;
  }
  50% {
    right: 30%;
    width: 70%;
  }
  51% {
    right: 60%;
    width: 40%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
@keyframes lineAnime2 {
  0% {
    top: 0;
    height: 100%;
  }
  50% {
    top: 30%;
    height: 70%;
  }
  51% {
    top: 60%;
    height: 40%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}
@keyframes lineAnime2-2 {
  0% {
    bottom: 0;
    height: 100%;
  }
  50% {
    bottom: 30%;
    height: 70%;
  }
  51% {
    bottom: 60%;
    height: 40%;
  }
  100% {
    bottom: 100%;
    height: 0;
  }
}
.s-history .s-history__list li .s-history_txtcont {
  color: #0a0d6a;
  border-radius: 10px;
  max-width: 45rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgb(30, 172, 229) 0%, rgb(10, 13, 106));
  padding: 2px;
}
.s-history .s-history__list li .icon_inr {
  width: 5rem;
  height: 5rem;
  position: absolute;
  z-index: 1000;
}
.s-history .s-history__list li .icon_1, .s-history .s-history__list li .icon_3 {
  top: -3rem;
}
.s-history .s-history__list li .icon_inr.icon_2, .s-history .s-history__list li .icon_inr.icon_4 {
  right: 0rem;
}
/*
.s-history .s-history__list li .icon_inr.icon_4 {
  left: calc(-100% + 4rem);
}
*/
.s-history .s-history__list li .icon_2, .s-history .s-history__list li .icon_4 {
  top: 1rem;
}
.s-history .s-history__list li .icon_4 {
  top: -3rem;
}
.s-history .s-history__list li .s-history_inr {
  padding: 2rem 1rem;
  width: calc(100% - 8rem);
  background-color: #fff;
  border-radius: 8px 0 0 8px;
}
.s-history .s-history__list li.f-right .s-history_inr {
  border-radius: 8px 0 0 8px;
}
.s-history .s-history__list li .s-history_inr .ttl {
  font-size: 1.6rem;
  line-height: 1.4;
}
.s-history .s-history__list li .bg {
  width: 8rem;
}
.s-history .s-history__list li .s-history_inr small {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.s-history .s-history__list li .s-history_inr .txt {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #222;
}
/*w-100*/
.s-history .s-history__list li .s-history_inr.w-100 {
  border-radius: 8px
}
.s-history .s-history__list li.w-100, .s-history .s-history__list li .s-history_inr.w-100 {
  width: 100%;
}
.s-history .s-history__list li.w-100 .s-history_txtcont.f-right .s-history_inr {
  border-radius: 8px 0 0 8px;
}
.s-history .s-history__list li.w-100 .s-history_txtcont.f-left .bg, .s-history .s-history__list .f-left .bg, .s-history .s-history__list li .bg {
  border-radius: 0 8px 8px 0;
}
.s-history .s-history__list li.w-100 .s-history_txtcont.f-right {
  float: right
}
.s-history .s-history__list li.w-100 .s-history_txtcont.f-right .s-history_inr.w-100, .s-history .s-history__list li .s-history_txtcont.f-left .s-history_inr.w-100 {
  border-radius: 8px;
}
.s-history .s-history__list li .s-history_img {
  margin-top: 2rem;
}
/*img*/
.s-history .s-history__list li .num01 .bg {
  background: url("../images/his_1.jpg")no-repeat center center/cover;
}
.s-history .s-history__list li .num02 .bg {
  background: url("../images/his_2.jpg")no-repeat center center/cover;
}
.s-history .s-history__list li .num03 .bg {
  background: url("../images/his_3.jpg")no-repeat center center/cover;
}
.s-history .s-history__list li .num04 .bg {
  background: url("../images/his_4.jpg")no-repeat center center/120%, #fff;
}
.s-history .s-history__list li .num05 .bg {
  background: url("../images/his_5.jpg")no-repeat center center/cover;
}
.s-history .s-history__list li .num06 .bg {
  background: url("../images/his_6.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num07 .bg {
  background: url("../images/his_7.jpg")no-repeat center center/cover;
}
.s-history .s-history__list li .num08 .bg {
  background: url("../images/his_8.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num09 .bg {
  background: url("../images/his_9.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num10 .bg {
  background: url("../images/his_10.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num11 .bg {
  background: url("../images/his_11.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num12 .bg {
  background: url("../images/his_12.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num13 .bg {
  background: url("../images/his_13.jpg")no-repeat center center/contain, #fff;
}
.s-history .s-history__list li .num14 .bg {
  background: url("../images/his_14.jpg")no-repeat center center/contain, #fff;
}
@media only screen and (min-width: 1000px) {
  .s-history {
    padding: 200px 2rem 7rem;
    margin-top: -200px;
    position: relative;
  }
  .s-history .s-history_number {
    width: 9.8rem;
    height: 9.8rem;
  }
  /*
  .s-history li.active .s-history_number svg.demo {
    width: 9.8rem;
    height: 9.8rem;
  }
  .s-history .s-history_number .inr {
    width: 6.8rem;
    height: 6.8rem;
  }
  .s-history .s-history_number .inr_s {
    width: 5.3rem;
    height: 5.3rem;
    font-size: 1.6rem;
  }
*/
  .s-history .border-line {
    left: 50%;
    transform: translateX(-50%);
  }
  .s-history .s-history__list li.f-left .border-line {
    left: calc(100% - 3.5rem);
  }
  .s-history .s-history__list li.f-right .border-line {
    left: calc(0% + 3.5rem);
  }
  .s-history .cont_inr {
    padding: 0 1.75rem;
    max-width: 96rem;
  }
  .s-history .s-history_ttl {
    position: absolute;
  }
  .s-history__list li {
    width: calc(50% + 3.4rem);
  }
  .s-history .s-history_number {
    width: 6.8rem;
    height: 6.8rem;
  }
  .s-history .s-history_number span {
    width: 5.3rem;
    height: 5.3rem;
    font-size: 1.6rem;
  }
  .s-history .s-history__list li .icon_inr {
    width: 7.5rem;
    height: 7.5rem;
    right: -3rem;
  }
  .s-history .s-history__list li.w-100 .s-history_number {
    margin: auto;
  }
  .s-history .s-history__list li .s-history_txtcont {
    width: 42rem;
    margin: 4.5rem 0;
  }
  .s-history .s-history__list li .s-history_txtcont.num05-2 {
    margin: 12rem 0 6rem;
  }
  .s-history .s-history__list li .s-history_inr {
    padding: 4rem 2rem;
    width: calc(100% - 16rem);
  }
  .s-history .s-history__list li .s-history_inr .ttl {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .s-history .s-history__list li .s-history_inr .txt {
    font-size: 1.4rem;
  }
  .s-history .s-history__list li .bg {
    width: 16rem;
  }
  /*	f-right*/
  .s-history__list .f-right {
    margin-left: auto;
  }
  .s-history__list .f-right .s-history_txtcont {
    float: right;
  }
  .s-history__list .f-right .s-history_number {
    float: left;
  }
  .s-history .s-history__list li.w-100 .f-right::after {
    left: -12%;
    /*    left: -17.5%;*/
  }
  .s-history .s-history__list .f-right .s-history_txtcont::before {
    left: -9.5%;
    transform: translate(-50%, -50%);
  }
  .s-history .s-history__list li.w-100 .f-right::before {
    left: -10%;
    /*    left: -15%;*/
  }
  /*f-left	*/
  .s-history__list .f-left {
    margin-right: auto;
  }
  .s-history .s-history__list .f-right::before {
    left: calc(5.3rem / 2);
  }
  .s-history .s-history__list .f-left::before {
    right: calc(5.3rem / 2);
  }
  .s-history__list .f-left .s-history_number {
    float: right;
  }
  .s-history__list .f-left .s-history_txtcont {
    float: left;
  }
  .s-history .s-history__list li.num-2020.w-100 .s-history_txtcont.f-left {
    margin-top: 16rem
  }
  .s-history .s-history__list li.w-100 .s-history_txtcont.f-left {
    float: left;
    margin-top: -2rem;
  }
  .s-history .s-history__list li.f-left .s-history_inr, .s-history .s-history__list li.f-right .bg, .s-history .s-history__list li .s-history_txtcont.f-left .s-history_inr, .s-history .s-history__list li.w-100 .s-history_txtcont.f-right .bg {
    border-radius: 0 8px 8px 0;
  }
  .s-history .s-history__list li.w-100 .s-history_txtcont.f-left .bg, .s-history .s-history__list .f-left .bg {
    border-radius: 8px 0 0 8px;
  }
  .s-history .s-history__list li.w-100 .f-left::before {
    right: -10%;
    /*    right: -15%;*/
  }
  .s-history .s-history__list li.w-100 .f-left::after {
    /*    right: -17.5%;*/
    right: -12%;
  }
  .s-history .s-history__list .f-left .s-history_txtcont::before {
    right: -10%;
    transform: translate(50%, -50%);
  }
  .s-history .s-history__list li .icon_inr.icon_2, .s-history .s-history__list li .icon_inr.icon_4 {
    right: -3rem;
  }
  .s-history .s-history__list li.active.f-left::before, .s-history .s-history__list li.active.w-100 .f-right::before {
    width: 40%;
  }
}
@media only screen and (min-width: 1367px) {
  .s-history .cont_inr {
    max-width: 120rem;
  }
  .s-history .s-history_number {
    width: 6.8rem;
    height: 6.8rem;
  }
  .s-history .s-history__list li .s-history_txtcont {
    width: 45rem;
  }
  /*	f-left*/
  .s-history .s-history__list li.w-100 .f-left::before {
    right: -30%;
  }
  .s-history .s-history__list li.w-100 .f-left::after {
    right: -31%;
  }
  .s-history .s-history__list .f-left .s-history_txtcont::before {
    right: -29.5%;
  }
  /*	f-right*/
  .s-history .s-history__list li.w-100 .f-right::before {
    left: -30%;
  }
  .s-history .s-history__list li.w-100 .f-right::after {
    left: -31%;
  }
  .s-history .s-history__list .f-right .s-history_txtcont::before {
    left: -29.5%;
  }
}
@media only screen and (max-width: 999px) {
  .s-history .s-history_number {
    margin-left: -8px;
  }
  .s-history .s-history__list .f-right::before {
    transform: translateY(-50%);
  }
  .s-history .s-history__list .f-left::before {
    transform: translateY(-20%);
  }
  .s-history .s-history__list li.w-100 .f-left::before {
    transform: translateY(-50%);
  }
  .s-history .s-history_ttl {
    margin-bottom: 3rem;
    max-width: 30rem;
  }
  .s-history .s-history__list li .s-history_txtcont {
    float: right;
    max-width: 55rem;
    margin-bottom: 4rem;
    width: calc(100% - 6rem);
  }
  .s-history .s-history__list li .icon_inr {
    right: 0;
    top: -2rem;
  }
  .s-history .s-history__list li .icon_inr.icon_2 {
    top: 4rem;
  }
  .s-history .cont_inr {
    max-width: 64.7rem;
  }
  .s-history .s-history__list .f-right::before, .s-history .s-history__list .f-left::before {
    left: 2rem;
  }
  .s-history .s-history__list .f-right .s-history_txtcont::before, .s-history .s-history__list .f-left .s-history_txtcont::before, .s-history .s-history__list li.w-100 .f-right::after, .s-history .s-history__list li.w-100 .f-left::after {
    left: -8.25rem;
  }
  .s-history .s-history__list li.w-100 .f-left::before {
    left: -13%;
  }
  .s-history .s-history__list li.w-100 .f-right::before {
    left: -15%;
  }
}
@media only screen and (max-width: 678px) {
  .s-history .cont_inr {
    max-width: 36rem;
  }
  .s-history .s-history__list .f-right .s-history_txtcont::before, .s-history .s-history__list .f-left .s-history_txtcont::before, .s-history .s-history__list li.w-100 .f-right::after, .s-history .s-history__list li.w-100 .f-left::after {
    left: -4.5rem;
  }
}
.s-number {
  padding: 7rem 2rem 6rem
}
.s-number .cont_inr {
  max-width: 102rem;
}
.s-number .ttl_wrap {
  display: flex;
  max-width: 84rem;
  margin: auto;
  overflow: hidden;
}
.s-number .ttl_wrap .ttl_img {
  width: calc((100% - 45rem) / 2);
  max-width: 13rem;
}
.s-number .s-number_ttl {
  position: relative;
  text-align: center;
  color: #0e0d6a;
  max-width: 82rem;
  margin: 0 auto;
}
.s-number .s-number_ttl small {
  font-size: 1.8rem;
}
.s-number .s-number_ttl span {
  max-width: 38.6rem;
  display: block;
  margin: auto;
}
.s-number_box .number_ttl {
  color: #fff;
  background: linear-gradient(135deg, rgb(30, 172, 229) 0%, rgb(10, 13, 106));
  text-align: center;
  padding: 1rem;
  font-size: 1.6rem;
  border-radius: 8px;
}
.s-number_box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: #fff;
  padding: 4rem 2rem;
  margin-top: 5rem;
}
.s-number_box__inr {
  max-width: 86rem;
  margin: auto;
}
.s-number_box .big_txt {
  text-align: center;
  font-size: 4rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.s-number_box .big_txt .sub_txt {
  font-size: 1.4rem;
}
.s-number_box .big_txt small {
  font-size: 1.1rem;
  display: block;
}
.red {
  color: #c50000;
}
.s-number_box_logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.s-number_box_logo .logo_left {
  max-width: 28rem;
}
.s-number_box_logo .logo_right {
  max-width: 28rem;
}
.s-number_box__inr .txt {
  margin-top: 2rem;
}
@media only screen and (min-width: 1000px) {
  .s-number_box_logo .logo_left {
    /*    max-width: 21rem;*/
    margin-right: 4rem;
  }
  /*
  .s-number_box_logo .logo_right {
    max-width: 33rem;
  }
*/
  .s-number_box .number_ttl {
    font-size: 1.8rem;
  }
  .s-number_box .big_txt {
    margin-top: 2rem;
    font-size: 7rem;
  }
  .s-number_box .big_txt .sub_txt {
    font-size: 2.4rem;
  }
}
.s-quiz {
  padding: 6rem 2rem 8rem;
}
.s-quiz .cont_inr {
  max-width: 100rem;
}
.s-quiz .s-quiz_ttl {
  max-width: 19rem;
  margin: auto;
  text-align: center;
  display: block;
}
.s-quiz .txt.center {
  margin-top: 3rem;
}
.s-quiz .sub_img {
  margin: 2rem auto 0;
  max-width: 44.6rem;
}
.featherlight .featherlight-content {
  background: transparent;
  width: 100%;
  max-width: 100rem;
  padding: 2rem;
}
.s-quiz_box {
  margin-top: 4rem;
}
#quiz01 {
  margin-top: 0;
}
.s-quiz_box, .modal {
  background: linear-gradient(135deg, rgb(30, 172, 229) 0%, rgb(10, 13, 106));
  border-radius: 10px;
  padding: 2px;
}
.s-quiz_box .s-quiz_box__inr, .modal .modal_inr {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 4rem 1.5rem;
}
.s-quiz_box .s-quiz_box__inr .cont_inr {
  max-width: 86rem;
  margin: auto;
}
.s-quiz_box .s-quiz_box__inr .s-quiz_box-ttl {
  font-size: 1.6rem;
  color: #0e0d6a;
}
.s-quiz_box ul {
  margin-top: 2rem;
}
.s-quiz_box ul li {
  margin-top: 1rem;
}
.s-quiz_box ul li a, .modal .s-quiz_box-ttl {
  background: linear-gradient(135deg, rgb(30, 172, 229) 0%, rgb(10, 13, 106));
  color: #fff;
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 8px;
}
.modal .s-quiz_box-ttl {
  font-size: 1.8rem;
}
.modal .cont_inr {
  max-width: 86rem;
}
.modal .cont_inr .txt {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.4rem;
}
.featherlight .featherlight-close-icon {
  display: none !important;
}
.modal .modal_inr .btn_wrap .btn {
  width: 100%;
}
.modal .modal_inr .btn_wrap .btn a {
  border-radius: 10rem;
}
/*
.featherlight .featherlight-close-icon {
  background-color: #1eace5;
  border-radius: 100vh;
  width: 50px;
  height: 50px;
  color: #fff;
  top: 0;
  right: 0;
}
*/
.modal {
  display: none;
}
.s-quiz_box-hint {
  margin-top: 3rem;
}
.s-quiz_box-hint .left_img {
  max-width: 35rem;
}
.quiz_btn {
  max-width: 34rem;
  margin: 8rem auto 0;
}
.quiz_btn a {
  border-radius: 10rem;
  padding: 2rem;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .modal .modal_inr .btn_wrap {
    justify-content: space-between;
  }
  .modal .modal_inr .btn_wrap .btn {
    width: 48%;
  }
  .modal .modal_inr .btn_wrap.clm3 .btn {
    width: 33%;
  }
  .s-quiz_box-hint {
    justify-content: space-between;
  }
  .s-quiz_box-hint .left_img {
    width: 45%;
    max-width: 40rem;
  }
  .s-quiz_box-hint .txt {
    width: 50%;
  }
  .s-quiz_box .s-quiz_box__inr .s-quiz_box-ttl {
    font-size: 2.2rem;
  }
  .s-quiz_box ul {
    margin-top: 4rem;
  }
  .s-quiz_box ul li a, .modal .s-quiz_box-ttl {
    font-size: 2rem;
  }
  .s-quiz_box .s-quiz_box__inr, .modal .modal_inr {
    padding: 6rem 2rem;
  }
  .modal .cont_inr .txt {
    margin-top: 4.5rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1367px) {
  .modal .modal_inr {
    padding: 6rem 4rem;
  }
  .modal .s-quiz_box-ttl {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 999px) {
  .modal .cont_inr .btn_wrap {
    max-width: 50rem;
    margin: 2rem auto 0;
  }
  .modal .modal_inr .btn_wrap .btn {
    margin-top: 2rem;
  }
  .s-quiz_box-hint {
    justify-content: center;
  }
  .s-number_box_logo .logo_left {
    margin-bottom: 3rem;
  }
}