:root {
    --base-width: 100%;
    --base-height: 100%;
    --base-color: #000000;
    --white: #FFFFFF;
    --gray: #f5f5f5;
    --blue: #006b8f;
    --title-color: #333333;
    --center: center;
    --left: left;
    --right: right;
    --base-potision: relative;
    --child-potision: absolute;
    --fixed-potision: fixed;
    --display-flex: flex;
    --justify-space: space-between;
    --flex-wrap: wrap;
    --base-margin: 0 auto;
    --base-padding: 0;
    --base-line: 2em;
    --display-block: block;
    --display-inline: inline-block;
    --cont-width: 1000px;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.8rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.3125rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.652rem;
    --font-size-5xl: 4rem;
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
}
@charset "UTF-8";
#footer__column {
  margin-top: 50px;
  padding: 30px 0 15px 0;
  width: var(--base-width);
  background-color: var(--gray-color);
  z-index: 1;
}
#pagetop {
  position: var(--fixed-potision);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  bottom: 50px;
  right: 10px;
  cursor: pointer;
  z-index: 9;
}

#pagetop a {
  position: var(--child-potision);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: var(--display-block);
  width: var(--base-width);
  text-align: var(--center);
  font-size: 14px;
  color: var(--white-color);
}
.animate {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.0s;
}
.animate:not(:nth-child(3n+1)) {
  margin-left: 0;
}
.animate:not(:nth-child(-n+3)) {
  margin-top: 20px;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.animate.show:nth-of-type(1) {
  transition-delay: 0s;
}
.animate.show:nth-of-type(2) {
  transition-delay: 0.1s;
}
.animate.show:nth-of-type(3) {
  transition-delay: 0.2s;
}
.animate.show:nth-of-type(4) {
  transition-delay: 0.3s;
}
.animate.show:nth-of-type(5) {
  transition-delay: 0.4s;
}
.animate.show:nth-of-type(6) {
  transition-delay: 0.5s;
}
.back-btn {
  text-align: var(--center);
  background-color: var(--blue);
  margin-top: 15px;
  padding: 3px 0;
}
  .back-btn > a {
    color: var(--white);
  }
.footer-logo {
  margin-bottom: 20px
}
  .footer-logo > a > p {
    font-size: var(--font-size-sm);
    color: var(--base-color);
  }
  .footer-logo > a > h3 {
    font-size: var(--font-size-5xl);
    color: var(--blue);
    line-height: 0;
    padding: 30px 0;
  }
    .footer-logo > a > h3::before {
      content: '';
      display: inline-block;
      width: 50px;
      height: 50px;
      margin-right: 10px;
      background-image: url(../images/favicon/favicon.jpg);
      background-size: contain;
      vertical-align: middle;
    }
body {
  background-color: var(--white);
}
@media only screen and (min-width: 768px) {
  #view-port {
    position: var(--base-potision);
    background: url(../images/top.jpg) center bottom/cover no-repeat;
    height: var(--base-height);
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
  #view-port-thanks {
    position: var(--base-potision);
    background: url(../images/thanks_bg.png) center bottom/cover no-repeat;
    background-color: #E9EFEF;
    background-size: 100% auto;
    height: var(--base-height);
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
}
  #contents {
    width: var(--base-width);
    max-width: var(--cont-width);
    height: var(--base-height);
    margin: var(--base-margin);
  }
  .mg {
    margin-top: 50px;
  }
  .mg30 {
    margin-top: 30px;
  }
  .mg100 {
    margin-top: 100px;
  }
  .red {
    color: var(--red-color);
  }
  .shadow {
    filter: drop-shadow(0px 0px 3px rgba(0,107,143,0.6)) drop-shadow(0px 0px 4px #006b8f);
  }
/********************************************header/top関連********************************************************/
  h1 {
    text-align: var(--center);
    color: var(--blue);
    font-size: 3rem;
    font-weight: var(--font-weight-800);
    font-style: italic;
  }
  h2 {
    text-align: var(--center);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-200);
    margin-top: 20px;
  }
  .top {
    position: var(--child-potision);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
    .top > .top-box {
      background-color: rgba(255, 255, 255, .7);
      border: 1px solid var(--blue);
      border-radius: 5px;
      padding: 100px 30px;
    }
/********************************************コンテンツ**************************************************************/
  #contents-title {
    text-align: var(--center);
  }
      #contents-title > p > span.title-main {
        position: var(--base-potision);
        color: var(--title-color);
        font-size: var(--font-size-5xl);
        font-weight: var(--font-weight-700);
        line-height: 1.25em;
        display: inline-block;
        margin-bottom: 1em;
      }
        #contents-title > p > span.title-main:before {
          content: '';
          position: var(--child-potision);
          background-color: var(--title-color);
          bottom: -5px;
          display: inline-block;
          width: 60px;
          height: 3px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          border-radius: 2px;
        }
    #contents-title > p:not(.visible) {
      visibility: hidden;
    }
    .character {
      position: var(--base-potision);
      top: 10px;
      opacity: 0;
      --property: top, opacity;
      --duration: 100ms;
      --delay: -50ms;
      transition-propaty: var(--property);
      transition-timing-function: steps(20,end);
      transition-duration: var(--duration);
      transition-delay: calc( ( var(--duration) + var(--delay) ) * var(--index,0) + var(--delay) );
    }
    .visible .character {
      top: 0;
      opacity: 1;
      will-change: var(--property);
    }

      #contents-title > p > span.title-main-sub {
        font-size: var(--font-size-3xl);
        font-weight: var(--font-weight-700);
        color: var(--blue);
      }

  #contents-text {
    text-align: var(--center);
  }
    #contents-text > p {
      line-height: var(--base-line);
    }

  #center {
    text-align: center;
    margin: 0 auto;
  }

  .qa-box {
    display: inline-block;
  }
    .qa-box > .accordion {
      width: 600px;
      max-width: 600px;
      background-color: #e1e3e4;
    }
      .qa-box > .accordion:not([open]) {
        margin-bottom: 5px;
      }
      .qa-box > .accordion > summary {
        position: var(--base-potision);
        text-align: left;
        padding: 1em 2em;
        border-radius: 5px;
        background-color: #006b8f;
        color: #fff;
        list-style: none;
        font-size: var(--font-size-md);
        font-weight: 600;
        cursor: pointer;
      }
        .qa-box > .accordion > summary > span {
          display: inline-block;
          vertical-align: middle;
        }
        .qa-box > .accordion > summary::before {
          content: "Q.";
          font-size: var(--font-size-md);
          margin-right: 10px;
        }
        .qa-box > .accordion > summary::after {
          position: var(--child-potision);
          transform: translateY(-25%) rotate(45deg);
          width: 7px;
          height: 7px;
          top: 28px;
          right: 15px;
          border-bottom: 3px solid #fff;
          border-right: 3px solid #fff;
          content: '';
          transition: transform .3s;
        }
        .qa-box > .accordion[open] > summary::after {
          transform: rotate(225deg);
        }
        .qa-box > .accordion > p {
          padding-left:1em;
          text-indent:-1em;
          transform: translateY(-10px);
          opacity: 0;
          margin: 0;
          padding: 1em 3em;
          color: #333333;
          text-align: left;
          transition: transform .5s, opacity .5s;
        }
          .qa-box > .accordion > p::before {
            content: "A.";
          }
          .qa-box > .accordion[open] p {
              transform: none;
              opacity: 1;
          }
/********************************************slider***************************************************************/
  .sliderArea {
    width: var(--base-width);
    margin: 30px 0 0;
    overflow-x: hidden;
  }

  .wrap {
    display: flex;
    align-items: center;
    height: 150px;
    overflow: hidden;
  }
  button.slideshow {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    border-radius: 0;
  }
    button.slideshow > .content {
      width: 150px;
      height: 150px;
      margin-right: 10px;
    }
      button.slideshow > .content > img {
        width: var(--base-width);
      }
    .slideshow {
      display: flex;
      -webkit-animation: loop-slide 20s infinite linear 1s both;
      animation: loop-slide 20s infinite linear 1s both;
    }
    .slide-paused:hover .slideshow {
      -webkit-animation-play-state: paused;
      animation-play-state: paused;
    }
    @-webkit-keyframes loop-slide {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

    @keyframes loop-slide {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }
  .carousel {
    outline: none;
    box-sizing: border-box;
  }
    .features-carousel-cell {
      position: var(--base-potision);
      padding: 0;
      width: 150px;
      height: 150px;
      margin-right: 10px;
      counter-increment: gallery-cell;
    }
      .features-carousel-cell img {
        position: var(--child-potision);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: var(--base-width);
        max-width: 150px;
      }
      .features-carousel-cell span {
        width: var(--base-width);
        position: var(--child-potision);
        background-color: var(--darkgray-color);
        text-align: var(--center);
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-300);
        color: var(--white-color);
        padding: 5px 0;
        bottom: 0;
      }

    .flow-carousel-cell {
      position: var(--base-potision);
      padding: 0;
      width: 300px;
      height: 370px;
      padding: 10px;
      margin-right: 10px;
      counter-increment: gallery-cell;
      background-color: #fcfdf5;
    }
      .flow-carousel-cell > .flow-img-box {
        width: var(--base-width);
        height: 200px;
        max-width: 300px;
        max-height: 200px;
      }
        .flow-carousel-cell > .flow-img-box img {
          width: var(--base-width);
          height: var(--base-height);
          object-fit:cover;
          display: block;
        }
      .flow-carousel-cell span {
        width: var(--base-width);
        text-align: var(--left);
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-300);
        margin-left: 30px;
        padding: 0 0 5px 0;
      }
      .flow-carousel-cell p {
        font-size: var(--font-size-xs);
        line-height: var(--base-line);
        margin-top: 15px;
      }
      .number1:before,
      .number2:before,
      .number3:before,
      .number4:before {
          font-family: "Arial", "メイリオ";
          font-size: var(--font-size-md);
          font-weight: var(--font-weight-500);
          position: var(--child-potision);
          color: var(--white);
          top: -10px;
          left: -10px;
          background-color: var(--blue);
          height:40px;
          width:40px;
          border-radius:50%;
          line-height:40px;
          text-align:var(--center);
          z-index: 1;
      }
      .flow-number1:before,
      .flow-number2:before,
      .flow-number3:before,
      .flow-number4:before,
      .flow-number5:before,
      .flow-number6:before,
      .flow-number7:before {
          font-family: "Arial", "メイリオ";
          font-size: var(--font-size-md);
          font-weight: var(--font-weight-500);
          position: var(--child-potision);
          color: var(--white);
          top: 10px;
          left: 0;
          background-color: var(--blue);
          height:30px;
          width:30px;
          border-radius:50%;
          line-height:30px;
          text-align:var(--center);
          z-index: 1;
      }
        .number1:before,
        .flow-number1:before {
            content: "1";
        }
        .number2:before,
        .flow-number2:before {
            content: "2";
        }
        .number3:before,
        .flow-number3:before {
            content: "3";
        }
        .number4:before,
        .flow-number4:before {
            content: "4";
        }
        .flow-number5:before {
            content: "5";
        }
        .flow-number6:before {
            content: "6";
        }
        .flow-number7:before {
            content: "7";
        }
/********************************************flex***************************************************************/
  .base-box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: space-around;
    align-content: space-around;    
  }
    .base-box > div {
      width: 50%;  
    }
      .base-box > div > p.base-box-title {
        font-size: var(--font-size-3xl)!important;
        font-weight: var(--font-weight-700);
        color: var(--blue);
      }
      .base-box > div > p {
        font-size: var(--font-size-md);
        line-height: var(--base-line);
      }
      .base-box > div > .scroll-animation > img {
        width: var(--base-width);
        max-width: 400px;
      }
        .base-box > div > .scroll-animation::after {
          content: "";
          width: 400px;
          height: 100%;
          display: inline-block;
          background: #006b8f;
          position: absolute;
          top: 10px;
          right: 30px;
          z-index: -1;
        }

  .benefits-flex-bg {
    background: url(../images/benefits_bg.png) top center/cover no-repeat;
    height: 400px;
  }
    .benefits-flex {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-around;
      justify-content: space-around;
      -webkit-align-items: center;
      align-items: center;
      -webkit-align-content: center;
      align-content: center;
    }
      .benefits-flex > div {
        position: var(--base-potision);
        background-color: var(--white);
        width: 25%;
        max-width: 200px;
        border-radius: 5px;
        box-shadow: 0 0 8px gray;
      }
        .benefits-flex > div > img {
          max-width: var(--base-width);
          height: auto;
          border-radius: 5px 5px 0 0;
        }
        .benefits-flex > div > p {
          text-align: var(--center);
          font-size: var(--font-size-md);
          line-height: var(--base-line);
          padding: 15px 0;
        }
      .benefits-flex > .rote1 {
        top: 15px!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote2 {
        top: 80px!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote3 {
        top: -5px!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote4 {
        top: 40px!important;
        transform: rotate( 0deg );
      }

  .base-box2 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: space-around;
    align-content: space-around;    
  }
    .base-box2 > div {
      width: 50%;  
    }
      .base-box2 > div > p.base-box2-title {
        font-size: var(--font-size-3xl)!important;
        font-weight: var(--font-weight-700);
        color: var(--blue);
      }
      .base-box2 > div > p {
        font-size: var(--font-size-md);
        line-height: var(--base-line);
      }
      .base-box2 > div > .scroll-animation > img {
        width: var(--base-width);
        max-width: 400px;
      }
        .base-box2 > div > .scroll-animation::after {
          content: "";
          width: 400px;
          height: 100%;
          display: inline-block;
          background: #006b8f;
          position: absolute;
          top: 10px;
          right: 30px;
          z-index: -1;
        }
    .base-box2 > div > ul {
      margin-top: 30px;
    }
      .base-box2 > div > ul > li {
        list-style: none;
        font-size: .85rem;
        line-height: var(--base-line);
      }
        .base-box2 > div > ul > li::before {
          content: '';
          display: inline-block;
          width: 40px;
          height: 40px;
          background-image: url(../images/check.png);
          background-size: contain;
          vertical-align: middle;
        }
/********************************************規約*****************************************************************/
  #fkiyaku {
    text-align: var(--center);
    margin: var(--base-margin);
  }

  #fkiyaku ul {
    width: var(--base-width);
    font-size: 0;
  }
  #link-text {
    text-align: var(--center);
    margin: 10px auto 5px;
    font-size: 0;
  }
    #link-text ul {
      padding: 0;
    }
    #link-text ul li {
      display: var(--display-inline);
      font-size: .8rem;
      color: var(--base-color);
    }
      #link-text ul li:nth-child(1) {
        text-align: var(--left!important);
      }
    #link-text ul li a {
      color: var(--base-color);
      text-decoration: none;
    }
  #fkiyaku ul li {
  font-size: 0.8rem;
  padding:0 10px;
  color: var(--base-color);
  }

  #fkiyaku ul li a {
    color: var(--base-color);
  }

  #fkiyaku ul li a:hover {
    text-decoration: underline;
  }
@media only screen and (min-width: 300px) and (max-width: 767px) {
  #view-port {
    background: url(../images/top.jpg) top center/cover no-repeat;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    margin: 0;
  }
  #view-port-thanks {
    background: url(../images/thanks_bg.png) bottom center/cover no-repeat;
    background-color: #E9EFEF;
    background-size: 100% auto;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    margin: 0;
  }
  #contents {
    padding: 0 10px;
  }
  .mg {
    margin-top: 25px;
  }
  .mg30 {
    margin-top: 20px;
  }
  .mg100 {
    margin-top: 50px;
  }
  br.br {
    display: none;
  }
  .animate {
    opacity: 0;
    flex: none;
    transform: translateY(10px);
    transition: all 1.0s;
  }
  .animate:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .animate:not(:nth-child(-n+3)) {
    margin-top: 0;
  }
/********************************************header/top関連********************************************************/
  h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-800);
    font-style: italic;
  }
  h2 {
    font-size: var(--font-size-md);
    margin-top: 10px;
  }
  .top {
    width: 80%;
  }
    .top > .top-box {
      padding: 50px 30px;
    }
/********************************************コンテンツ**************************************************************/
  #contents-title > p > span.title-main {
    font-size: var(--font-size-3xl);
    margin-bottom: .5em;
  }

  #contents-title > p > span.title-main-sub {
    font-size: var(--font-size-md);
  }
  #contents-text {
    text-align: var(--left);
  }
    #contents-text > p {
      font-size: var(--font-size-sm);
    }

  .qa-box {
    width: var(--base-width);
  }
    .qa-box > .accordion {
      width: var(--base-width);
    }
      .qa-box > .accordion:not([open]) {
        margin-bottom: 5px;
      }
      .qa-box > .accordion > summary {
        position: var(--base-potision);
        text-align: var(--left);
        padding: .5em 1em;
        border-radius: 5px;
        background-color: var(--blue);
        color: var(--white);
        list-style: none;
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-400);
        cursor: pointer;
      }
        .qa-box > .accordion > summary::before {
          margin-right: 5px;
        }
        .qa-box > .accordion > summary::after {
          position: var(--child-potision);
          transform: translateY(-25%) rotate(45deg);
          width: 7px;
          height: 7px;
          top: 16px;
          right: 15px;
          border-bottom: 3px solid #fff;
          border-right: 3px solid #fff;
          content: '';
          transition: transform .3s;
        }
        .qa-box > .accordion > p {
          font-size: var(--font-size-sm);
          padding-left:1em;
          text-indent:-1em;
          transform: translateY(-10px);
          opacity: 0;
          margin: 0;
          padding: 1em 2em;
          color: #333333;
          text-align: left;
          transition: transform .5s, opacity .5s;
        }
          .qa-box > .accordion > p::before {
            content: "A.";
          }
          .qa-box > .accordion[open] p {
              transform: none;
              opacity: 1;
          }
/********************************************slider***************************************************************/
  .wrap {
    display: flex;
    align-items: center;
    height: 100px;
    overflow: hidden;
  }
    button.slideshow > .content {
      width: 100px;
      height: 100px;
      margin-right: 10px;
    }

    .features-carousel-cell {
      width: 100px;
      height: 100px;
    }
      .features-carousel-cell img {
        max-width: 100px;
      }
      .flow-carousel-cell span {
        font-size: var(--font-size-md);
        margin-left: 20px;
      }
      .flow-carousel-cell p {
        font-size: var(--font-size-xs);
        line-height: var(--base-line);
        margin-top: 15px;
      }
      .number1:before,
      .number2:before,
      .number3:before,
      .number4:before {
          font-family: "Arial", "メイリオ";
          font-size: var(--font-size-md);
          font-weight: var(--font-weight-500);
          position: var(--child-potision);
          color: var(--white);
          top: -10px;
          left: -10px;
          background-color: var(--blue);
          height:40px;
          width:40px;
          border-radius:50%;
          line-height:40px;
          text-align:var(--center);
          z-index: 1;
      }
      .flow-number1:before,
      .flow-number2:before,
      .flow-number3:before,
      .flow-number4:before,
      .flow-number5:before,
      .flow-number6:before,
      .flow-number7:before {
          font-family: "Arial", "メイリオ";
          font-size: var(--font-size-xs);
          font-weight: var(--font-weight-500);
          position: var(--child-potision);
          color: var(--white);
          top: 10px;
          left: 5px;
          background-color: var(--blue);
          height:20px;
          width:20px;
          border-radius:50%;
          line-height:20px;
          text-align:var(--center);
          z-index: 1;
      }
/********************************************flex***************************************************************/
    .base-box > div {
      width: var(--base-width);  
    }
      .base-box > div > p.base-box-title {
        font-size: var(--font-size-2xl)!important;
      }
      .base-box > div > p {
        font-size: var(--font-size-xs);
        line-height: var(--base-line);
        margin-bottom: 5px;
      }
      .base-box > div > .scroll-animation > img {
        width: var(--base-width);
        max-width: 100%;
      }
        .base-box > div > .scroll-animation::after {
          content: "";
          width: var(--base-width);
          height: 100%;
          display: inline-block;
          background: #006b8f;
          position: absolute;
          top: 10px;
          right: -10px;
          z-index: -1;
        }

  .benefits-flex-bg {
    background: url(../images/benefits_bg.png) top center/cover no-repeat;
    height: auto;
  }
    .benefits-flex {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-around;
      justify-content: space-around;
      -webkit-align-items: stretch;
      align-items: stretch;
    }
      .benefits-flex > div {
        display: inline-block;
        width: 48%;
        margin-bottom: 20px;
        padding: 10px;
      }
        .benefits-flex > div > img {
          width: var(--base-width);
          max-width: 100%;
          border-radius: 5px 5px 0 0;
        }
        .benefits-flex > div > p {
          font-size: var(--font-size-sm);
          line-height: 1.45em;
          padding: 10px 0;
        }
      .benefits-flex > .rote1 {
        top: 0!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote2 {
        top: 0!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote3 {
        top: 0!important;
        transform: rotate( 0deg );
      }
      .benefits-flex > .rote4 {
        top: 0!important;
        transform: rotate( 0deg );
      }

  .base-box2 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: space-around;
    align-content: space-around;    
  }
    .base-box2 > div {
      width: 100%;  
    }
      .base-box2 > div > p.base-box2-title {
        font-size: var(--font-size-2xl)!important;
      }
      .base-box2 > div > p {
        font-size: var(--font-size-xs);
        line-height: var(--base-line);
        margin-bottom: 5px;
      }
      .base-box2 > div > .scroll-animation > img {
        width: var(--base-width);
        max-width: 100%;
      }
        .base-box2 > div > .scroll-animation::after {
          content: "";
          width: var(--base-width);
          height: 100%;
          display: inline-block;
          background: #006b8f;
          position: absolute;
          top: 10px;
          right: -10px;
          z-index: -1;
        }
    .base-box2 > div > ul {
      margin-top: 15px;
    }
      .base-box2 > div > ul > li {
        list-style: none;
        font-size: var(--font-size-xs);
        line-height: var(--base-line);
      }
        .base-box2 > div > ul > li::before {
          content: '';
          display: inline-block;
          width: 20px;
          height: 20px;
          background-image: url(../images/check.png);
          background-size: contain;
          vertical-align: middle;
        }

}