@charset "UTF-8";
/**
  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;
    }
  }
**/
.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; } }

#movie {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  background-color: white;
  z-index: 9999; }

#movie_close_btn {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px; }
  #movie_close_btn svg {
    fill: #ffffff; }

body[data-movie-state="play"] {
  overflow: hidden; }
  body[data-movie-state="play"] .cursor-pointwrap {
    display: none; }

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

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

.coloringPage {
  overflow: hidden;
  margin-bottom: 11.45833vw;
  padding-bottom: 1.38889vw; }
  .coloringPage .coloringPage-Cover-Wrap {
    position: relative; }
    .coloringPage .coloringPage-Cover-Wrap:after {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      content: "";
      z-index: 2;
      border: 4px solid #e60012;
      background: #ffffff; }
    .coloringPage .coloringPage-Cover-Wrap:before {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 1.38889vw;
      bottom: -1.38889vw;
      content: "";
      z-index: 2;
      border: 4px solid #e60012; }
    .coloringPage .coloringPage-Cover-Wrap .img-area {
      position: absolute;
      z-index: 5;
      width: 34.72222vw;
      margin-left: -4.72222vw;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0);
          -ms-transform: translateY(-50%) translateX(0);
              transform: translateY(-50%) translateX(0); }
    .coloringPage .coloringPage-Cover-Wrap-layout {
      border-bottom: 4px solid #e60012;
      overflow: hidden;
      z-index: 4;
      position: relative;
      height: -webkit-calc(100% - 8px);
      height: calc(100% - 8px);
      width: -webkit-calc(100% - 8px);
      width: calc(100% - 8px); }
    .coloringPage .coloringPage-Cover-Wrap-body {
      margin: 4px;
      position: relative;
      z-index: 4; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area {
        position: relative;
        z-index: 6;
        padding: 8.05556vw 6.94444vw 8.05556vw 33.33333vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area .name {
          color: #e60012;
          line-height: 1; }
          .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en {
            vertical-align: middle;
            display: inline-block;
            font-size: 10rem; }
            .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en:after {
              vertical-align: middle;
              background: #e60012;
              width: 24px;
              height: 2px;
              content: "";
              margin: 0 20px;
              display: inline-block; }
          .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .number {
            font-weight: 500;
            font-size: 3rem;
            display: inline-block;
            vertical-align: middle; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area h2 {
          margin-bottom: 5px;
          font-size: 4rem;
          font-weight: 600; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area h3 {
          margin-bottom: 20px;
          font-size: 2rem;
          font-weight: 600; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area .text {
          line-height: 2;
          font-size: 1.6rem; }
  .coloringPage .coloringPage-Cover .floater-text {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
    .coloringPage .coloringPage-Cover .floater-text p {
      width: 1207px; }
      .coloringPage .coloringPage-Cover .floater-text p svg {
        fill: none;
        stroke: #fff0f3;
        stroke-opacity: 1.0;
        stroke-width: 1.0; }
      .coloringPage .coloringPage-Cover .floater-text p:nth-child(2n) {
        width: 727px;
        float: right; }
        .coloringPage .coloringPage-Cover .floater-text p:nth-child(2n) svg {
          fill: #fff0f3;
          stroke: none; }

@media screen and (max-width: 1200px) {
  .coloringPage {
    margin-bottom: 13.75vw;
    padding-bottom: 1.66667vw; }
    .coloringPage .coloringPage-Cover-Wrap:before {
      left: 1.66667vw;
      bottom: -1.66667vw; }
    .coloringPage .coloringPage-Cover-Wrap .img-area {
      width: 45vw; }
    .coloringPage .coloringPage-Cover-Wrap-body .text-area {
      padding: 9.66667vw 8.33333vw 9.66667vw 40vw; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en {
        font-size: 8.33333vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en:after {
          width: 2vw;
          height: 0.16667vw;
          margin: 0vw 1.66667vw 0vw 1.66667vw; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .number {
        font-size: 2.5vw; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area h2 {
        margin-bottom: 0.41667vw;
        font-size: 3.33333vw; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area h3 {
        margin-bottom: 1.66667vw;
        font-size: 1.66667vw; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area .text {
        font-size: 1.33333vw; }
    .coloringPage .coloringPage-Cover .floater-text p {
      width: 100.58333vw; }
      .coloringPage .coloringPage-Cover .floater-text p:nth-child(2n) {
        width: 60.58333vw; } }

@media screen and (max-width: 896px) {
  main {
    padding-top: 0; }
  .coloringPage {
    padding-top: 8.92857vw;
    position: relative;
    z-index: 1;
    overflow: inherit;
    margin-bottom: 11.16071vw; }
    .coloringPage .coloringPage-Cover-Wrap .img-area {
      width: -webkit-calc(100% - 8px);
      width: calc(100% - 8px);
      position: relative;
      top: 1.89732vw;
      margin-left: 4px;
      -webkit-transform: translateY(0) translateX(0);
          -ms-transform: translateY(0) translateX(0);
              transform: translateY(0) translateX(0); }
      .coloringPage .coloringPage-Cover-Wrap .img-area img {
        margin-top: -20.08929vw; }
    .coloringPage .coloringPage-Cover-Wrap-layout {
      margin-top: -20px; }
    .coloringPage .coloringPage-Cover-Wrap-body {
      overflow: hidden; }
      .coloringPage .coloringPage-Cover-Wrap-body .text-area {
        padding: 0vw 5.02232vw 9.70982vw 5.02232vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area .name {
          margin-bottom: 1.11607vw;
          vertical-align: bottom; }
          .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en {
            font-size: 11.16071vw; }
            .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en span {
              display: inline-block;
              vertical-align: bottom;
              position: relative;
              top: 10px; }
            .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en:after {
              vertical-align: bottom;
              height: 4px;
              width: 3.57143vw; }
          .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .number {
            vertical-align: bottom;
            font-size: 5.58036vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area h2 {
          font-size: 6.69643vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area h3 {
          line-height: 1.6;
          font-size: 3.57143vw; }
        .coloringPage .coloringPage-Cover-Wrap-body .text-area .text {
          font-size: 2.67857vw; }
    .coloringPage .coloringPage-Cover .floater-text p {
      width: 134.70982vw; }
      .coloringPage .coloringPage-Cover .floater-text p svg {
        stroke-width: 2; }
      .coloringPage .coloringPage-Cover .floater-text p:nth-child(2n) {
        width: 81.13839vw; }
        .coloringPage .coloringPage-Cover .floater-text p:nth-child(2n) svg {
          stroke-width: 0; } }

@media screen and (max-width: 414px) {
  .coloringPage .coloringPage-Cover-Wrap:after {
    border: 3px solid #e60012; }
  .coloringPage .coloringPage-Cover-Wrap:before {
    border: 3px solid #e60012; }
  .coloringPage .coloringPage-Cover-Wrap .img-area {
    width: -webkit-calc(100% - 7px);
    width: calc(100% - 7px);
    top: 2.17391vw;
    margin-left: 3px; }
  .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .en {
    font-size: 50px; }
  .coloringPage .coloringPage-Cover-Wrap-body .text-area .name .number {
    font-size: 25px; }
  .coloringPage .coloringPage-Cover-Wrap-body .text-area h2 {
    font-size: 30px; }
  .coloringPage .coloringPage-Cover-Wrap-body .text-area h3 {
    font-size: 16px; }
  .coloringPage .coloringPage-Cover-Wrap-body .text-area .text {
    font-size: 12px; } }

.award-sec {
  position: relative; }
  .award-sec-inner {
    position: relative;
    margin-bottom: 100px; }
  .award-sec-ttl {
    position: -webkit-sticky;
    position: sticky;
    float: left;
    width: 142px;
    top: 0;
    left: 0; }
    .award-sec-ttl svg {
      fill: none;
      stroke: #e60012;
      stroke-opacity: 1.0;
      stroke-width: 1.0; }
  .award-sec-wrap {
    width: -webkit-calc(100% - 22.41%);
    width: calc(100% - 22.41%);
    float: right; }
    .award-sec-wrap-list {
      margin-bottom: 80px; }
  .award-sec .line-layout-sec-in ul {
    overflow: hidden; }
    .award-sec .line-layout-sec-in ul li {
      float: left;
      width: 48%;
      margin: 0 4% 0 0; }
      .award-sec .line-layout-sec-in ul li:nth-child(2n) {
        margin: 0; }
      .award-sec .line-layout-sec-in ul li .ttl {
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 2rem;
        padding: 0 0 5px 0;
        border-bottom: 1px solid #000000; }
      .award-sec .line-layout-sec-in ul li .text-area {
        margin-bottom: 5px; }
      .award-sec .line-layout-sec-in ul li .quo {
        background: #fdd430;
        text-align: center;
        padding: 20px; }
        .award-sec .line-layout-sec-in ul li .quo-ttl .en {
          font-size: 2rem;
          display: inline-block; }
        .award-sec .line-layout-sec-in ul li .quo-ttl .jp {
          font-weight: 500;
          margin: 0 3px;
          display: inline-block;
          font-size: 1.6rem; }
        .award-sec .line-layout-sec-in ul li .quo-item {
          padding: 5px 10px;
          background: #3a3531;
          color: #ffffff; }

@media screen and (max-width: 1200px) {
  .award-sec-inner {
    margin-bottom: 8.33333vw; }
  .award-sec-ttl {
    width: 11.83333vw; }
  .award-sec-wrap {
    width: -webkit-calc(100% - 16.83vw);
    width: calc(100% - 16.83vw); }
    .award-sec-wrap-list {
      margin-bottom: 6.66667vw; }
  .award-sec .line-layout-sec-in ul li .ttl {
    margin-bottom: 0.83333vw;
    font-size: 1.66667vw;
    padding-right: 0.41667vw; }
  .award-sec .line-layout-sec-in ul li .text-area {
    font-size: 1.16667vw;
    margin-bottom: 1.66667vw; }
  .award-sec .line-layout-sec-in ul li .quo {
    padding: 1.66667vw; }
    .award-sec .line-layout-sec-in ul li .quo-ttl .en {
      font-size: 1.66667vw; }
    .award-sec .line-layout-sec-in ul li .quo-ttl .jp {
      margin: 0vw 0.25vw 0vw 0.25vw;
      font-size: 1.33333vw; }
    .award-sec .line-layout-sec-in ul li .quo-item {
      padding: 0.41667vw 0.83333vw 0.41667vw 0.83333vw; } }

@media screen and (max-width: 896px) {
  .award-sec {
    overflow: hidden;
    margin-bottom: 10.04464vw; }
    .award-sec-inner {
      margin-bottom: 0; }
    .award-sec-wrap {
      width: 100%; }
      .award-sec-wrap-list {
        margin-bottom: 10.04464vw; }
    .award-sec .line-layout-sec {
      margin-bottom: 0; }
      .award-sec .line-layout-sec-in {
        padding: 15px; }
        .award-sec .line-layout-sec-in ul li {
          margin-bottom: 5.58036vw;
          width: 100%;
          float: none; }
          .award-sec .line-layout-sec-in ul li .ttl {
            font-size: 3.57143vw; }
          .award-sec .line-layout-sec-in ul li .text-area {
            font-size: 2.67857vw; }
          .award-sec .line-layout-sec-in ul li .quo {
            padding: 3.34821vw; }
            .award-sec .line-layout-sec-in ul li .quo-ttl .en {
              font-size: 3.57143vw; }
            .award-sec .line-layout-sec-in ul li .quo-ttl .jp {
              font-size: 3.125vw; } }

@media screen and (max-width: 414px) {
  .award-sec .line-layout-sec-in ul li .ttl {
    font-size: 16px; }
  .award-sec .line-layout-sec-in ul li .text-area {
    font-size: 12px; }
  .award-sec .line-layout-sec-in ul li .quo-ttl .en {
    font-size: 16px; }
  .award-sec .line-layout-sec-in ul li .quo-ttl .jp {
    font-size: 14px; } }

@media screen and (max-width: 896px) {
  .flame-ttl-in-svg {
    position: absolute;
    left: 58.81696vw;
    top: 0;
    width: 63.61607vw; }
    .flame-ttl-in-svg svg {
      fill: none;
      stroke: #e60012;
      stroke-opacity: 1.0;
      stroke-width: 1.0; } }

.strat-sec {
  overflow: hidden;
  margin-bottom: 100px; }
  .strat-sec-inner {
    position: relative;
    padding: 0 60px 60px 60px; }
    .strat-sec-inner:after {
      width: 60px;
      height: 5px;
      background: #e60012;
      content: "";
      top: 0;
      left: 0;
      z-index: 1;
      display: block;
      position: absolute; }
    .strat-sec-inner:before {
      position: absolute;
      display: block;
      width: 5px;
      height: 60px;
      background: #e60012;
      content: "";
      top: 0;
      left: 0;
      z-index: 1; }
    .strat-sec-inner-l:after {
      width: 60px;
      height: 5px;
      background: #e60012;
      content: "";
      bottom: 0;
      right: 0;
      z-index: 1;
      display: block;
      position: absolute; }
    .strat-sec-inner-l:before {
      position: absolute;
      display: block;
      width: 5px;
      height: 60px;
      background: #e60012;
      content: "";
      bottom: 0;
      right: 0;
      z-index: 1; }
  .strat-sec-ttl {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px; }
    .strat-sec-ttl:after {
      height: 100%;
      width: 200px;
      background: #f5f5f5;
      content: "";
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      -webkit-transform: skewX(-40deg);
          -ms-transform: skewX(-40deg);
              transform: skewX(-40deg);
      z-index: 1; }
    .strat-sec-ttl p {
      position: relative;
      z-index: 2;
      width: 518px;
      margin: 0 0 20px 0; }
      .strat-sec-ttl p svg {
        fill: none;
        stroke: #e60012;
        stroke-opacity: 1.0;
        stroke-width: 1.0; }
    .strat-sec-ttl h2 {
      position: relative;
      z-index: 4;
      line-height: 1;
      font-size: 4rem;
      font-weight: 800;
      color: #e60012; }
  .strat-sec .line-layout-sec-in-area .number {
    z-index: 30; }
    .strat-sec .line-layout-sec-in-area .number.check {
      background: #eb656b; }
  .strat-sec .line-layout-sec-in-area .text-area-in {
    margin-bottom: 10px; }
  .strat-sec .line-layout-sec-in-area .text-area .text {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 400; }
    .strat-sec .line-layout-sec-in-area .text-area .text a {
      text-decoration: underline; }
  .strat-sec .line-layout-sec-in-area .text-area .btn-area {
    overflow: hidden; }
    .strat-sec .line-layout-sec-in-area .text-area .btn-area li {
      float: left;
      width: 49%;
      margin: 0 2% 0 0; }
      .strat-sec .line-layout-sec-in-area .text-area .btn-area li:nth-child(2n) {
        margin: 0; }
  .strat-sec .line-layout-sec-in-area .text-area .btn {
    line-height: 1.4;
    padding: 15px; }
  .strat-sec .line-layout-sec-in-area .text-area .note {
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    padding: 20px;
    font-size: 1.4rem;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000; }
    .strat-sec .line-layout-sec-in-area .text-area .note:after {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 1px;
      height: 20px;
      content: "";
      background: #000000; }
    .strat-sec .line-layout-sec-in-area .text-area .note:before {
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 1px;
      height: 20px;
      content: "";
      background: #000000; }
    .strat-sec .line-layout-sec-in-area .text-area .note p {
      text-indent: -1em;
      padding-left: 1em; }
  .strat-sec .line-layout-flow {
    position: relative; }
    .strat-sec .line-layout-flow:after {
      display: block;
      position: absolute;
      width: 2px;
      height: 50%;
      -webkit-transform: translateY(-50%) translateX(0);
          -ms-transform: translateY(-50%) translateX(0);
              transform: translateY(-50%) translateX(0);
      top: 50%;
      left: 150px;
      content: "";
      z-index: 4;
      background: #3A3531; }

@media screen and (max-width: 1200px) {
  .strat-sec {
    margin-bottom: 8.33333vw; }
    .strat-sec-inner {
      position: relative;
      padding: 0vw 5vw 5vw 5vw; }
      .strat-sec-inner:after {
        width: 5vw;
        height: 0.41667vw; }
      .strat-sec-inner:before {
        width: 0.41667vw;
        height: 5vw; }
      .strat-sec-inner-l:after {
        width: 5vw;
        height: 0.41667vw; }
      .strat-sec-inner-l:before {
        width: 0.41667vw;
        height: 5vw; }
    .strat-sec-ttl {
      padding-top: 5vw;
      padding-bottom: 5vw; }
      .strat-sec-ttl:after {
        width: 16.66667vw; }
      .strat-sec-ttl p {
        position: relative;
        z-index: 2;
        width: 43.16667vw;
        margin-bottom: 1.66667vw; }
      .strat-sec-ttl h2 {
        font-size: 3.33333vw; }
    .strat-sec .line-layout-sec-in-area .text-area-in {
      margin-bottom: 0.83333vw; }
    .strat-sec .line-layout-sec-in-area .text-area .text {
      margin-bottom: 1.25vw;
      font-size: 1.33333vw; }
    .strat-sec .line-layout-sec-in-area .text-area .btn-area li {
      float: none;
      width: 100%;
      margin: 0 0 10px 0; }
    .strat-sec .line-layout-sec-in-area .text-area .btn {
      line-height: 1.4;
      padding: 15px; }
    .strat-sec .line-layout-sec-in-area .text-area .note {
      margin-bottom: 1.66667vw;
      padding: 1.66667vw;
      font-size: 1.16667vw; }
      .strat-sec .line-layout-sec-in-area .text-area .note:after {
        height: 1.66667vw; }
      .strat-sec .line-layout-sec-in-area .text-area .note:before {
        height: 1.66667vw; }
    .strat-sec .line-layout-flow {
      position: relative; }
      .strat-sec .line-layout-flow:after {
        width: 2px;
        left: 12.5vw; } }

@media screen and (max-width: 896px) {
  .strat-sec {
    margin-bottom: 0; }
    .strat-sec-inner {
      position: relative;
      padding: 0; }
    .strat-sec-ttl {
      margin-bottom: 0;
      padding: 5.58036vw 0vw 7.25446vw 5.58036vw; }
      .strat-sec-ttl p {
        margin-bottom: 0;
        width: 42.41071vw; }
      .strat-sec-ttl h2 {
        font-size: 4.46429vw; }
    .strat-sec .line-layout-sec-in-area .text-area-in {
      margin-bottom: 1.67411vw; }
    .strat-sec .line-layout-sec-in-area .text-area .text {
      margin-bottom: 5.02232vw;
      font-size: 2.67857vw; }
    .strat-sec .line-layout-sec-in-area .text-area .btn {
      padding: 4.46429vw; }
    .strat-sec .line-layout-sec-in-area .text-area .note {
      padding: 2.23214vw;
      font-size: 2.23214vw;
      margin-bottom: 5.58036vw; }
    .strat-sec .line-layout-flow:after {
      display: none; } }

@media screen and (max-width: 414px) {
  .strat-sec-inner:after {
    width: 20px;
    height: 2px; }
  .strat-sec-inner:before {
    width: 2px;
    height: 20px; }
  .strat-sec-ttl p {
    margin-bottom: 15px;
    width: 190px; }
  .strat-sec-ttl h2 {
    font-size: 20px; }
  .strat-sec .line-layout-sec-in-area .text-area-in {
    font-size: 16px; }
  .strat-sec .line-layout-sec-in-area .text-area .text {
    font-size: 12px; }
  .strat-sec .line-layout-sec-in-area .text-area .note {
    font-size: 10px; } }

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