@charset "UTF-8";
.anime-fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease; }
  .anime-fadeIn.anime-start {
    opacity: 1; }

.anime-slideDown {
  opacity: 0;
  -webkit-transform: translate(0, -20px);
      -ms-transform: translate(0, -20px);
          transform: translate(0, -20px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-slideDown.anime-start {
    opacity: 1;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }

.anime-slideUp {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
      -ms-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-slideUp.anime-start {
    opacity: 1;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }

.anime-slideRight {
  opacity: 0;
  -webkit-transform: translate(-20px, 0);
      -ms-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-slideRight.anime-start {
    opacity: 1;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }

.anime-slideLeft {
  opacity: 0;
  -webkit-transform: translate(20px, 0);
      -ms-transform: translate(20px, 0);
          transform: translate(20px, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-slideLeft.anime-start {
    opacity: 1;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }

.anime-scaleDown {
  opacity: 0;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-scaleDown.anime-start {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

.anime-scaleUp {
  opacity: 0;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-scaleUp.anime-start {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

.anime-warp {
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .anime-warp.anime-start {
    opacity: 1;
    -webkit-animation: warp 1s ease;
            animation: warp 1s ease; }

@-webkit-keyframes warp {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0); }
  25% {
    -webkit-transform: scale(1.2, 0.2);
            transform: scale(1.2, 0.2); }
  50% {
    -webkit-transform: scale(0.5, 1.5);
            transform: scale(0.5, 1.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes warp {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0); }
  25% {
    -webkit-transform: scale(1.2, 0.2);
            transform: scale(1.2, 0.2); }
  50% {
    -webkit-transform: scale(0.5, 1.5);
            transform: scale(0.5, 1.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/**
  pxをvwに変換

  @return vw
**/
/**
  とあるmedia queryの区間のフォントサイズをvwで動かす
  
  .test{
    font-size: 40px;
  }
  @media only screen and (max-width:1200px){
    .test{
      @include fs-smooth(40, 20, 1200, 768);
    }
  }
  @media only screen and (max-width:768px){
    .test{
      font-size: 20px;
    }
  }
**/
.mv-anime-wolf {
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-transform: translateY(0) translateX(-20%) !important;
      -ms-transform: translateY(0) translateX(-20%) !important;
          transform: translateY(0) translateX(-20%) !important; }
  .mv-anime-wolf.anime-start {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(-50%) !important;
        -ms-transform: translateY(0) translateX(-50%) !important;
            transform: translateY(0) translateX(-50%) !important; }

.mv {
  overflow: hidden;
  position: relative;
  height: 680px;
  background-image: url("./../../../assets/images/common/mv_bg.jpg");
  width: 100%;
  background-size: 420px;
  background-position: center;
  background-repeat: repeat;
  -webkit-animation: bg-move 10s linear infinite;
          animation: bg-move 10s linear infinite; }

@-webkit-keyframes bg-move {
  from {
    background-position: 0 0; }
  to {
    background-position: 420px 420px; } }

@keyframes bg-move {
  from {
    background-position: 0 0; }
  to {
    background-position: 420px 420px; } }
  .mv-inner:before {
    content: "";
    height: -webkit-calc(100% - 80px);
    height: calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    width: calc(100% - 80px);
    border: 4px solid #e60012;
    position: absolute;
    left: 40px;
    z-index: 2;
    top: 40px; }
  .mv-circle.circle-left {
    position: absolute;
    width: 46%;
    left: 85px;
    top: -30px;
    -webkit-animation: rotation-left 20s linear infinite;
            animation: rotation-left 20s linear infinite; }
    .mv-circle.circle-left svg {
      fill: none;
      stroke: #ffffff;
      stroke-opacity: 1.0;
      stroke-width: 1.0; }

@-webkit-keyframes rotation-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@keyframes rotation-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }
  .mv-circle.circle-right {
    position: absolute;
    width: 29%;
    right: 20px;
    bottom: 20px;
    z-index: 4;
    -webkit-animation: rotation-right 16s linear infinite;
            animation: rotation-right 16s linear infinite; }
    .mv-circle.circle-right svg {
      fill: none;
      stroke: #ffffff;
      stroke-opacity: 1.0;
      stroke-width: 1.0; }

@-webkit-keyframes rotation-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotation-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  .mv-wolf {
    overflow: hidden;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 8;
    background: #e60012;
    width: 460px;
    margin-left: 200px;
    -webkit-transform: translateY(-50%) translateX(-50%) skewX(-20deg);
        -ms-transform: translateY(-50%) translateX(-50%) skewX(-20deg);
            transform: translateY(-50%) translateX(-50%) skewX(-20deg); }
    .mv-wolf-main {
      z-index: 5;
      bottom: 0;
      margin-left: 140px;
      left: 50%;
      position: absolute;
      -webkit-transform: translateY(0) translateX(-50%);
          -ms-transform: translateY(0) translateX(-50%);
              transform: translateY(0) translateX(-50%); }
      .mv-wolf-main img {
        height: 662px;
        width: auto; }
    .mv-wolf-inner {
      height: 100%;
      -webkit-transform: skewX(20deg);
          -ms-transform: skewX(20deg);
              transform: skewX(20deg); }
      .mv-wolf-inner-text {
        display: table;
        height: 100%;
        position: relative; }
        .mv-wolf-inner-text .text-area {
          position: static;
          display: table-cell;
          vertical-align: middle;
          text-align: center; }
          .mv-wolf-inner-text .text-area p {
            width: 900px; }
            .mv-wolf-inner-text .text-area p:first-child {
              margin-bottom: 30px; }
            .mv-wolf-inner-text .text-area p svg {
              fill: none;
              stroke: #c5000f;
              stroke-opacity: 1.0;
              stroke-width: 1.0; }
  .mv .page-ttl {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 1000px;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%); }
    .mv .page-ttl:after {
      display: block;
      width: 76%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 8px;
      background: #2954b6;
      z-index: 1;
      content: ""; }
    .mv .page-ttl-in {
      z-index: 8;
      width: 860px;
      padding: 90px 100px;
      position: relative;
      line-height: 1;
      color: #ffffff; }
      .mv .page-ttl-in h1 {
        margin-bottom: 10px;
        font-size: 6rem;
        font-weight: 900; }
      .mv .page-ttl-in .en {
        font-size: 4rem; }

@media screen and (max-width: 1200px) {
  .mv {
    height: 56.66667vw; }
    .mv-circle.circle-left {
      width: 46%;
      left: 7.08333vw;
      top: -2.5vw; }
    .mv-circle.circle-right {
      width: 29%;
      right: 1.66667vw;
      bottom: 1.66667vw; }
    .mv-wolf {
      width: 38.33333vw;
      margin-left: 16.66667vw; }
      .mv-wolf-main {
        margin-left: 11.66667vw; }
        .mv-wolf-main img {
          height: 55.16667vw; }
      .mv-wolf-inner-text .text-area p {
        width: 75vw; }
        .mv-wolf-inner-text .text-area p:first-child {
          margin-bottom: 2.5vw; }
    .mv .page-ttl {
      width: 83.33333vw; }
      .mv .page-ttl-in {
        width: 71.66667vw;
        padding: 7.5vw 8.33333vw 7.5vw 8.33333vw; }
        .mv .page-ttl-in h1 {
          margin-bottom: 0.83333vw;
          font-size: 5vw; }
        .mv .page-ttl-in .en {
          font-size: 3.33333vw; } }

@media screen and (max-width: 896px) {
  .mv-layout {
    position: relative;
    margin-bottom: 0;
    z-index: 2; }
  .mv {
    background-size: 210px;
    height: 74.77679vw; }
    .mv-inner:before {
      left: 30px;
      top: 30px;
      width: -webkit-calc(100% - 60px);
      width: calc(100% - 60px);
      height: -webkit-calc(100% - 60px);
      height: calc(100% - 60px); }
    .mv-inner:after {
      width: 72%;
      height: 33.48214vw;
      content: "";
      position: absolute;
      background: #2954b6;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
          -ms-transform: translateY(-50%) translateX(-50%);
              transform: translateY(-50%) translateX(-50%);
      border-radius: 4px; }
    .mv-circle.circle-left svg {
      width: 78.125vw; }
    .mv-wolf {
      margin-left: 33.48214vw;
      width: 55.80357vw; }
      .mv-wolf-main img {
        height: 71.42857vw; }
    .mv .page-ttl {
      width: 74%;
      z-index: 9; }
      .mv .page-ttl:after {
        display: none; }
      .mv .page-ttl-in {
        margin: 0 auto;
        padding: 6.69643vw 6.69643vw 6.69643vw 6.69643vw; }
        .mv .page-ttl-in h1 {
          font-size: 7.58929vw; }
        .mv .page-ttl-in .en {
          font-size: 6.69643vw; } }

@media screen and (max-width: 414px) {
  .mv {
    height: 305px; }
    .mv-inner:before {
      left: 20px;
      top: 20px;
      width: -webkit-calc(100% - 40px);
      width: calc(100% - 40px);
      height: -webkit-calc(100% - 40px);
      height: calc(100% - 40px); }
    .mv-circle.circle-left {
      left: 10%;
      width: 96.61836vw; }
    .mv-wolf-main img {
      height: 86vw; } }

@media screen and (max-width: 414px) {
  .header-campus {
    left: 10px;
    bottom: 10px; } }

main {
  padding-top: 120px; }

@media screen and (max-width: 869px) {
  main {
    padding-top: 9.66184vw; } }

@media screen and (max-width: 414px) {
  main {
    padding-top: 14.49275vw; } }

@media all and (-ms-high-contrast: none) {
  main:not(:target) {
    overflow: hidden; }
  *::-ms-backdrop, main:not(:target) {
    overflow: hidden; } }

@supports (-ms-ime-align: auto) {
  main {
    overflow: hidden; } }

/**
  pxをvwに変換

  @return vw
**/
/**
  とあるmedia queryの区間のフォントサイズをvwで動かす
  
  .test{
    font-size: 40px;
  }
  @media only screen and (max-width:1200px){
    .test{
      @include fs-smooth(40, 20, 1200, 768);
    }
  }
  @media only screen and (max-width:768px){
    .test{
      font-size: 20px;
    }
  }
**/
.quiz-ttl {
  position: relative; }
  .quiz-ttl:after {
    position: absolute;
    left: 0;
    top: 0;
    background: #e60012;
    width: 5px;
    height: 60px;
    content: "";
    display: block; }
  .quiz-ttl:before {
    position: absolute;
    right: 0;
    top: 0;
    background: #e60012;
    width: 5px;
    height: 60px;
    content: "";
    display: block; }
  .quiz-ttl .title {
    text-align: center;
    margin-bottom: 10px; }
    .quiz-ttl .title:after {
      background: #e60012;
      width: 100%;
      height: 5px;
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateY(0) translateX(-50%);
          -ms-transform: translateY(0) translateX(-50%);
              transform: translateY(0) translateX(-50%);
      z-index: 1; }
    .quiz-ttl .title-in {
      display: inline-block;
      text-align: center;
      position: relative;
      font-weight: 900;
      padding: 0 40px;
      z-index: 4;
      font-size: 4rem;
      overflow: hidden;
      margin-top: -34px;
      background: #fff; }
      .quiz-ttl .title-in > span {
        display: inline-block;
        position: relative;
        z-index: 4; }
        .quiz-ttl .title-in > span:after {
          content: "";
          width: 100%;
          height: 8px;
          background: #fff0f3;
          display: block;
          position: absolute;
          bottom: 14px;
          left: 0;
          z-index: 1; }
        .quiz-ttl .title-in > span > span {
          position: relative;
          z-index: 2; }

@media screen and (max-width: 1200px) {
  .quiz-ttl:after {
    width: 0.41667vw;
    height: 5vw; }
  .quiz-ttl:before {
    width: 0.41667vw;
    height: 5vw; }
  .quiz-ttl .title {
    margin-bottom: 0.83333vw; }
    .quiz-ttl .title:after {
      height: 0.41667vw; }
    .quiz-ttl .title-in {
      padding: 0vw 3.33333vw 0vw 3.33333vw;
      font-size: 3.33333vw;
      margin-top: -2.83333vw; }
      .quiz-ttl .title-in > span:after {
        height: 0.66667vw;
        bottom: 1.16667vw; } }

@media screen and (max-width: 869px) {
  .quiz-ttl .title-in {
    position: relative;
    top: -2.3015vw;
    font-size: 5.52359vw; }
    .quiz-ttl .title-in > span:after {
      bottom: 1.72612vw;
      height: 1.15075vw; } }

@media screen and (max-width: 414px) {
  .quiz-ttl:after {
    height: 20px;
    width: 2px; }
  .quiz-ttl:before {
    width: 2px;
    height: 20px;
    right: -1px; }
  .quiz-ttl .title:after {
    height: 2px; }
  .quiz-ttl .title-in {
    top: -14px;
    font-size: 24px; } }

.result-ttl {
  margin-bottom: 45px; }
  .result-ttl span {
    letter-spacing: 0;
    line-height: 1;
    display: block; }
  .result-ttl .en {
    margin-bottom: 5px;
    color: #e60012;
    font-size: 1.6rem; }
  .result-ttl .jp {
    font-weight: 600;
    font-size: 3rem; }

@media screen and (max-width: 1200px) {
  .result-ttl {
    margin-bottom: 3.75vw; }
    .result-ttl .en {
      margin-bottom: 0.41667vw;
      font-size: 1.33333vw; }
    .result-ttl .jp {
      font-size: 2.5vw; } }

@media screen and (max-width: 896px) {
  .result-ttl {
    margin-bottom: 4.46429vw; }
    .result-ttl .en {
      margin-bottom: 1.11607vw;
      font-size: 3.57143vw; }
    .result-ttl .jp {
      font-size: 3.57143vw; } }

@media screen and (max-width: 414px) {
  .result-ttl .en {
    font-size: 16px; }
  .result-ttl .jp {
    font-size: 16px; } }

.flame-ttl {
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  padding: 60px 0 0 60px; }
  .flame-ttl:after {
    width: 60px;
    height: 5px;
    background: #e60012;
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    position: absolute; }
  .flame-ttl:before {
    position: absolute;
    display: block;
    width: 5px;
    height: 60px;
    background: #e60012;
    content: "";
    top: 0;
    left: 0;
    z-index: 1; }
  .flame-ttl-in .en {
    margin-bottom: 15px;
    color: #e60012;
    font-size: 2.4rem;
    display: block; }
  .flame-ttl-in .title {
    font-size: 4rem;
    font-weight: 600; }
    .flame-ttl-in .title-in:after {
      content: "";
      width: 100%;
      height: 8px;
      background: #fff0f3;
      display: block;
      position: absolute;
      bottom: 8px;
      left: 0;
      z-index: 1; }
    .flame-ttl-in .title span {
      position: relative;
      z-index: 2; }

@media screen and (max-width: 1200px) {
  .flame-ttl {
    margin-bottom: 3.33333vw;
    padding: 5vw 0vw 0vw 5vw; }
    .flame-ttl:after {
      width: 5vw;
      height: 0.41667vw; }
    .flame-ttl:before {
      width: 0.41667vw;
      height: 5vw; }
    .flame-ttl-in .en {
      margin-bottom: 1.25vw;
      font-size: 2vw; }
    .flame-ttl-in .title {
      font-size: 3.33333vw; }
      .flame-ttl-in .title-in:after {
        height: 0.66667vw;
        bottom: 0.66667vw; } }

@media screen and (max-width: 896px) {
  .flame-ttl {
    margin-bottom: 5.02232vw;
    padding: 4.46429vw 0vw 0vw 4.46429vw; }
    .flame-ttl-in .en {
      font-size: 3.57143vw; }
    .flame-ttl-in .title {
      font-size: 5.35714vw; }
      .flame-ttl-in .title-in:after {
        height: 0.89286vw;
        bottom: 0.9206vw; } }

@media screen and (max-width: 414px) {
  .flame-ttl:after {
    width: 20px;
    height: 2px; }
  .flame-ttl:before {
    width: 2px;
    height: 20px; }
  .flame-ttl-in .en {
    font-size: 16px; }
  .flame-ttl-in .title {
    font-size: 24px; } }

.quizBody {
  padding: 0 60px; }

@media screen and (max-width: 896px) {
  .quizBody {
    padding: 0; } }

/**
  pxをvwに変換

  @return vw
**/
/**
  とあるmedia queryの区間のフォントサイズをvwで動かす
  
  .test{
    font-size: 40px;
  }
  @media only screen and (max-width:1200px){
    .test{
      @include fs-smooth(40, 20, 1200, 768);
    }
  }
  @media only screen and (max-width:768px){
    .test{
      font-size: 20px;
    }
  }
**/
.line-layout-sec {
  border: 1px solid #ececec;
  position: relative;
  padding: 30px;
  background: #ffffff;
  margin-bottom: 50px; }
  .line-layout-sec:before {
    width: 1px;
    height: 10px;
    background: #000000;
    position: absolute;
    top: -1px;
    left: -1px;
    content: ""; }
  .line-layout-sec:after {
    width: 10px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: -1px;
    left: -1px;
    content: ""; }
  .line-layout-sec-l:before {
    width: 1px;
    height: 10px;
    background: #000000;
    position: absolute;
    top: -1px;
    right: -1px;
    content: ""; }
  .line-layout-sec-l:after {
    width: 10px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: -1px;
    right: -1px;
    content: ""; }
  .line-layout-sec-r:before {
    width: 1px;
    height: 10px;
    background: #000000;
    position: absolute;
    bottom: -1px;
    right: -1px;
    content: ""; }
  .line-layout-sec-r:after {
    width: 10px;
    height: 1px;
    background: #000000;
    position: absolute;
    bottom: -1px;
    right: -1px;
    content: ""; }
  .line-layout-sec-t:before {
    width: 1px;
    height: 10px;
    background: #000000;
    position: absolute;
    bottom: -1px;
    left: -1px;
    content: ""; }
  .line-layout-sec-t:after {
    width: 10px;
    height: 1px;
    background: #000000;
    position: absolute;
    bottom: -1px;
    left: -1px;
    content: ""; }
  .line-layout-sec-in {
    background: #fbfbfb;
    padding: 40px; }
    .line-layout-sec-in-area {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 20px; }
      .line-layout-sec-in-area .number {
        width: 160px;
        height: 160px;
        text-align: center;
        color: #ffffff;
        background: #3a3531;
        line-height: 1;
        border-radius: 100px;
        position: relative; }
        .line-layout-sec-in-area .number-in {
          z-index: 1; }
          .line-layout-sec-in-area .number-in .en {
            font-size: 2rem;
            display: block;
            margin-bottom: 4px; }
          .line-layout-sec-in-area .number-in p {
            font-weight: 500;
            font-size: 4rem; }
      .line-layout-sec-in-area .text-area {
        padding: 0 0 0 60px;
        width: -webkit-calc(100% - 160px);
        width: calc(100% - 160px);
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1.6; }

@media screen and (max-width: 1200px) {
  .line-layout-sec {
    padding: 30px;
    margin-bottom: 50px; }
    .line-layout-sec-in {
      padding: 3.33333vw; }
      .line-layout-sec-in-area {
        margin-bottom: 1.66667vw; }
        .line-layout-sec-in-area .number {
          width: 13.33333vw;
          height: 13.33333vw; }
          .line-layout-sec-in-area .number-in .en {
            font-size: 1.66667vw;
            margin-bottom: 0.33333vw; }
          .line-layout-sec-in-area .number-in p {
            font-size: 3.33333vw; }
        .line-layout-sec-in-area .text-area {
          padding-left: 5vw;
          width: -webkit-calc(100% - 160px);
          width: calc(100% - 160px);
          font-size: 2vw; } }

@media screen and (max-width: 896px) {
  .line-layout-sec {
    padding: 2.23214vw 2.23214vw 2.23214vw 2.23214vw;
    margin-bottom: 5.58036vw; }
    .line-layout-sec-in {
      padding: 0; }
      .line-layout-sec-in-area {
        display: block;
        margin-bottom: 0; }
        .line-layout-sec-in-area .number {
          border-radius: 0;
          width: 100%;
          height: auto;
          padding: 3.34821vw 1.11607vw 3.34821vw 1.11607vw; }
          .line-layout-sec-in-area .number-in {
            position: static;
            top: auto;
            left: auto;
            -webkit-transform: translateY(0) translateX(0);
                -ms-transform: translateY(0) translateX(0);
                    transform: translateY(0) translateX(0); }
            .line-layout-sec-in-area .number-in .en {
              display: inline-block;
              font-size: 4.46429vw; }
            .line-layout-sec-in-area .number-in p {
              font-size: 4.46429vw;
              display: inline-block; }
        .line-layout-sec-in-area .text-area {
          width: 100%;
          font-size: 3.57143vw;
          padding: 4.46429vw 3.34821vw 4.46429vw 3.34821vw; } }

@media screen and (max-width: 414px) {
  .line-layout-sec-in-area .number-in .en {
    font-size: 20px; }
  .line-layout-sec-in-area .number-in p {
    font-size: 20px; }
  .line-layout-sec-in-area .text-area {
    font-size: 16px; } }

.breadcrumb-list {
  margin-bottom: 40px; }
  .breadcrumb-list .inner ul li {
    font-size: 1.2rem;
    display: inline-block; }
    .breadcrumb-list .inner ul li i {
      display: inline-block;
      margin: 0 5px 0 0; }
    .breadcrumb-list .inner ul li a {
      color: #000000;
      text-decoration: underline; }
      .breadcrumb-list .inner ul li a:after {
        font-family: "icomoon",sans-serif;
        content: "\e902";
        display: inline-block;
        margin: 0 10px;
        vertical-align: middle;
        font-size: 1rem; }

@media screen and (max-width: 896px) {
  .breadcrumb-list {
    margin-bottom: 5.58036vw; }
    .breadcrumb-list .inner ul li {
      font-size: 2.23214vw; }
      .breadcrumb-list .inner ul li a:after {
        margin: 0 5px;
        font-size: 2.23214vw; } }

@media screen and (max-width: 414px) {
  .breadcrumb-list .inner ul li {
    font-size: 10px; }
    .breadcrumb-list .inner ul li a:after {
      margin: 0 5px;
      font-size: 10px; } }

.quiz-reed {
  text-align: center;
  margin-bottom: 45px;
  font-size: 2rem;
  font-weight: 500; }

@media screen and (max-width: 1200px) {
  .quiz-reed {
    margin-bottom: 3.75vw;
    font-size: 1.66667vw; } }

@media screen and (max-width: 869px) {
  .quiz-reed {
    margin-bottom: 6.90449vw;
    font-size: 3.45224vw; }
    .quiz-reed span {
      display: block; } }

@media screen and (max-width: 414px) {
  .quiz-reed {
    margin-bottom: 40px;
    font-size: 15px; } }

.quizBody {
  margin-bottom: 110px; }
  .quizBody-wrap {
    margin-bottom: 10px;
    overflow: hidden; }
  .quizBody-ttl {
    margin-bottom: 50px;
    color: #ffffff;
    padding: 35px 30px;
    line-height: 1;
    position: relative; }
    .quizBody-ttl.beginner {
      background: #2954b6; }
    .quizBody-ttl.intermediate {
      background: #fdd430; }
    .quizBody-ttl.advanced {
      background: #e60012; }
    .quizBody-ttl .jp {
      font-size: 3rem;
      font-weight: 700;
      position: relative;
      z-index: 2; }
    .quizBody-ttl .en {
      position: absolute;
      right: -5px;
      font-size: 10rem;
      bottom: -20px;
      z-index: 1; }

@media screen and (max-width: 1200px) {
  .quizBody {
    margin-bottom: 9.16667vw; }
    .quizBody-wrap {
      margin-bottom: 0.83333vw; }
    .quizBody-ttl {
      margin-bottom: 4.16667vw;
      padding: 2.91667vw 2.5vw 2.91667vw 2.5vw; }
      .quizBody-ttl .jp {
        font-size: 2.5vw; }
      .quizBody-ttl .en {
        right: -0.41667vw;
        font-size: 8.33333vw;
        bottom: -1.66667vw; } }

@media screen and (max-width: 869px) {
  .quizBody {
    padding: 0; }
    .quizBody-ttl {
      padding: 3.45224vw 3.45224vw 3.45224vw 3.45224vw; }
      .quizBody-ttl .jp {
        font-size: 4.60299vw; }
      .quizBody-ttl .en {
        opacity: 0.4;
        font-size: 9.20598vw; } }

@media screen and (max-width: 414px) {
  .quizBody-ttl {
    padding: 20px; }
    .quizBody-ttl .jp {
      font-size: 20px; }
    .quizBody-ttl .en {
      font-size: 40px; } }

input[type="submit"],
input[type="button"] {
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

.submit {
  font-weight: 600;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: 2.4rem;
  background: #e60012;
  width: 300px;
  color: #ffffff;
  line-height: 1;
  padding: 30px 40px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden; }
  .submit[disabled] {
    background: #adadad;
    pointer-events: none; }

.yes-no {
  display: inline-block;
  width: 100%;
  text-align: center; }
  .yes-no ul {
    display: inline-block;
    width: 100%; }
    .yes-no ul li {
      margin: 0 8px;
      text-align: center;
      display: inline-block; }
  .yes-no input[type=radio] {
    display: none; }
  .yes-no input[type="radio"]:checked + label {
    background: #ca3434;
    color: #ffffff; }
  .yes-no .label {
    display: block;
    width: 250px;
    cursor: pointer;
    border: 4px solid #ca3434;
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    color: #ca3434;
    font-size: 2.4rem;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2; }
    .yes-no .label:after {
      z-index: 1;
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ca3434;
      content: "";
      -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yes-no .label span {
      position: relative;
      z-index: 4; }
    .yes-no .label:hover {
      color: #ffffff; }
      .yes-no .label:hover:after {
        top: 0; }

@media screen and (max-width: 1200px) {
  .yes-no ul li {
    margin: 0vw 0.66667vw 0vw 0.66667vw; }
  .yes-no .label {
    width: 20.83333vw;
    padding: 1.25vw 0.83333vw 1.25vw 0.83333vw;
    font-size: 2vw; } }

@media screen and (max-width: 869px) {
  .submit {
    width: 100%;
    font-size: 3.57143vw; }
  .yes-no {
    padding: 0vw 2.23214vw 4.46429vw 2.23214vw; }
    .yes-no ul {
      overflow: hidden; }
      .yes-no ul li {
        float: left;
        width: 50%;
        margin: 0;
        display: block; }
        .yes-no ul li .label {
          padding: 2.23214vw;
          width: 100%;
          border-radius: 4px 0 0 4px;
          font-size: 4.01786vw; }
        .yes-no ul li:last-child .label {
          width: 100%;
          border-radius: 0 4px 4px 0;
          border-left: none; } }

@media screen and (max-width: 869px) {
  .submit {
    font-size: 16px; }
  .yes-no ul li .label {
    font-size: 16px; } }

@media screen and (max-width: 414px) {
  .submit {
    font-size: 16px;
    padding: 15px; }
  .yes-no ul li .label {
    font-size: 16px; } }

.unselected-body p {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  text-align: center; }
  .unselected-body p span {
    text-align: center;
    display: inline-block;
    background: #ffffff;
    z-index: 2;
    position: relative;
    padding: 0 20px; }
  .unselected-body p:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ececec;
    display: inline-block;
    position: absolute;
    bottom: 50%;
    left: 0;
    z-index: 1; }

.unselected-body ul {
  margin-bottom: 40px; }
  .unselected-body ul li {
    display: inline-block;
    margin: 0 2px 5px 2px; }
    .unselected-body ul li a {
      border-radius: 20px;
      line-height: 1;
      padding: 5px 15px;
      background: #e60012;
      display: block;
      font-size: 1.4rem;
      letter-spacing: 0;
      color: #ffffff; }

@media screen and (max-width: 1200px) {
  .unselected-body p {
    margin-bottom: 0.83333vw;
    font-size: 2vw; }
  .unselected-body ul {
    margin-bottom: 5vw; }
    .unselected-body ul li {
      margin: 0vw 0.16667vw 0.41667vw 0.16667vw; }
      .unselected-body ul li a {
        padding: 0.41667vw 1.25vw 0.41667vw 1.25vw;
        font-size: 1.16667vw; } }

@media screen and (max-width: 869px) {
  .unselected-body p {
    margin-bottom: 1.72612vw;
    font-size: 4.14269vw; }
  .unselected-body ul {
    margin-bottom: 6.90449vw; }
    .unselected-body ul li {
      margin: 0vw 0.23015vw 0.57537vw 0.23015vw; }
      .unselected-body ul li a {
        padding: 1.15075vw 2.3015vw 1.72612vw 2.3015vw;
        font-size: 1.61105vw; } }

@media screen and (max-width: 414px) {
  .unselected-body p {
    font-size: 16px; }
  .unselected-body ul {
    margin-bottom: 6.90449vw; }
    .unselected-body ul li {
      margin: 0vw 0.23015vw 0.57537vw 0.23015vw; }
      .unselected-body ul li a {
        font-size: 10px; } }

.mumber-of-responses {
  height: 211px;
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  width: 100px;
  position: fixed;
  left: -100%;
  overflow: hidden;
  top: 50%;
  z-index: 999;
  -webkit-transform: translateY(-50%) translateX(0);
      -ms-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  border-radius: 0 6px 6px 0;
  background: #ffffff;
  box-shadow: 0px 4px 42px 0px rgba(59, 59, 59, 0.1); }
  .mumber-of-responses.js__point {
    opacity: 1;
    left: 0; }
  .mumber-of-responses .ttl {
    line-height: 1;
    padding: 12px 10px;
    font-weight: 600;
    background: #000000;
    text-align: center;
    color: #ffffff;
    font-size: 1.6rem; }
  .mumber-of-responses .progressBar {
    padding: 20px; }
    .mumber-of-responses .progressBar li {
      line-height: 1;
      margin-bottom: 8px;
      height: 20px; }
      .mumber-of-responses .progressBar li:last-child {
        margin-bottom: 0; }
      .mumber-of-responses .progressBar li .icon {
        vertical-align: middle;
        display: inline-block;
        margin-right: 2px;
        width: 20px;
        height: 20px;
        position: relative; }
        .mumber-of-responses .progressBar li .icon .vue-progress-path {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%); }
        .mumber-of-responses .progressBar li .icon .vue-progress-path path {
          stroke-width: 1; }
        .mumber-of-responses .progressBar li .icon .vue-progress-path .background {
          stroke: #ccc; }
      .mumber-of-responses .progressBar li p {
        vertical-align: middle;
        font-weight: 600;
        text-align: center;
        display: inline-block;
        font-size: 1.6rem; }
      .mumber-of-responses .progressBar li.beginner .vue-progress-path .progress {
        stroke: #2954b6; }
      .mumber-of-responses .progressBar li.beginner p {
        color: #2954b6; }
      .mumber-of-responses .progressBar li.intermediate .vue-progress-path .progress {
        stroke: #fedb52; }
      .mumber-of-responses .progressBar li.intermediate p {
        color: #fedb52; }
      .mumber-of-responses .progressBar li.advanced .vue-progress-path .progress {
        stroke: #e81929; }
      .mumber-of-responses .progressBar li.advanced p {
        color: #e81929; }
  .mumber-of-responses .number {
    border-top: 1px solid #dddddd;
    padding: 20px; }
    .mumber-of-responses .number ul {
      display: table;
      width: 100%;
      font-weight: 500;
      line-height: 1;
      position: relative; }
      .mumber-of-responses .number ul:before {
        content: "/";
        font-family: 'Oswald', sans-serif;
        font-size: 3rem;
        display: block;
        text-align: center;
        vertical-align: middle;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
            -ms-transform: translateY(-50%) translateX(-50%);
                transform: translateY(-50%) translateX(-50%); }
      .mumber-of-responses .number ul li {
        display: table-cell;
        text-align: left;
        font-size: 2rem;
        vertical-align: top;
        position: relative;
        top: -5px; }
        .mumber-of-responses .number ul li:last-child {
          top: auto;
          vertical-align: bottom;
          text-align: right;
          position: relative;
          bottom: -5px; }

@media screen and (max-width: 869px) {
  .mumber-of-responses {
    height: auto;
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(0%) translateX(0);
        -ms-transform: translateY(0%) translateX(0);
            transform: translateY(0%) translateX(0);
    width: 100%;
    border-radius: 6px;
    margin-bottom: 6.69643vw; }
    .mumber-of-responses.js__point {
      left: auto;
      opacity: 1; }
    .mumber-of-responses .ttl {
      padding: 2.87687vw 2.3015vw 2.87687vw 2.3015vw;
      font-size: 4.01786vw; }
    .mumber-of-responses .progressBar {
      text-align: center;
      width: 100%;
      display: inline-block;
      padding: 5.75374vw 5.75374vw 5.75374vw 5.75374vw; }
      .mumber-of-responses .progressBar li {
        height: auto;
        margin: 0vw 1.15075vw 0vw 1.15075vw;
        text-align: center;
        display: inline-block; }
        .mumber-of-responses .progressBar li p {
          font-size: 3.57143vw; }
    .mumber-of-responses .number ul {
      text-align: center;
      width: 100%;
      display: inline-block; }
      .mumber-of-responses .number ul:before {
        display: none; }
      .mumber-of-responses .number ul li {
        font-size: 6.69643vw;
        position: static;
        text-align: center;
        display: inline-block; }
        .mumber-of-responses .number ul li:last-child {
          position: static; }
          .mumber-of-responses .number ul li:last-child:before {
            font-size: 6.69643vw;
            margin: 0 5px;
            content: "/";
            font-family: 'Oswald', sans-serif;
            display: inline-block;
            text-align: center; } }

@media screen and (max-width: 414px) {
  .mumber-of-responses .ttl {
    padding: 15px;
    font-size: 18px; }
  .mumber-of-responses .progressBar li {
    font-size: 16px; }
  .mumber-of-responses .number ul li {
    font-size: 20px; } }

.vue-fade-leave-active {
  -webkit-transition: opacity .3s;
  transition: opacity .3s; }

.vue-fade-leave-to {
  opacity: 0; }

/*# sourceMappingURL=../../cssmap/quiz/index.css.map */
