@keyframes spSlideIn {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .sp-slidein-start {
      opacity: 0;
      transform: translateY(100px);
    }

    .sp-slidein-animate {
      animation: spSlideIn 1s ease;
    }
}

body {
    background-color: #fff;
}

body * {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body a, body a:visited{
    color: var(--brand-blue);
}

/* pitch */
.index-pitch {
    margin-bottom: 65px;
    padding-bottom: 100px;
    padding-top: 175px;
    background-size: cover;
    max-width: 100%;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    background: rgb(243,249,254);
    background: linear-gradient(135deg, #F4F2EF 0%, #F4F8FC 50%, #F5FAF4 100%);
}

.index-pitch-cta, .index-pitch-cta:visited {
    position: relative;
    display: none;
    background-color: #111;
    padding: 12px 30px 12px 50px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
}

.index-pitch-cta img {
    position: absolute;
    top: 12px;
    left: 20px;
    height: 20px;;
}

@media (max-width: 768px) {
    .index-pitch-cta, .index-pitch-cta:visited {
        display: inline-block;
    }
}


.index-pitch h1 {
    max-width: 1000px;
    margin: 25px auto 35px auto;
    font-size: 3rem;
    font-weight: 900;
    line-height: 3.2rem;
    text-align: center;
    color: #111;
}

@media (max-width: 768px) {
    .index-pitch {
        margin: 10px 10px 10px 10px;
    }
}

.index-pitch p {
    position: relative;
    margin: 20px auto;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.35rem;
    color: #555;
    text-align: center;
    font-weight: normal;
}

@media (max-width: 768px) {
    .index-pitch p {
        padding: 0 10px 0 40px;
        text-align: left;
    }
}

.index-pitch p>span {
    position: absolute;
    display: inline-block;
    font-size: 3rem;
    color: #5DAA21;
    transform: translateY(-4px) translateX(-30px);
}

/* highlight */
.index-highlight h3 {
    font-size: 18px;
    margin: 50px auto 50px auto;
    line-height: 1.2;
    text-align: center;
    font-weight: normal;
    max-width: 800px;
    padding: 0 10px;
}

.index-highlight h3 b {
    font-weight: bold;
}

/* quote */

.index-quote {
    max-width: 600px;
    margin: 0 auto 10px auto;
    padding: 25px;
}



.index-quote p {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.5;
    text-align: center;
}

.index-quote-star, .index-quote-star * {
    fill: #9ED8DB;
}

.index-quote p cite {
    font-size: 13px;
}

/* feature */
.index-feature {
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto 25px auto;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1.5fr;
    background-color: #F4F8FC;
    border-radius: 10px;
    padding: 0;
    align-items: center;
    overflow: hidden;
}

.index-feature img {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .index-feature {
        display: block;
        margin: 0 10px 10px 10px;
    }
}

.index-feature>div {
    padding: 20px;
}

.index-feature h2 {
    max-width: 1000px;
    margin: 25px auto;
    font-size: 40px;
    font-weight: 900;
    line-height: 3.2rem;
    text-align: left;
    color: #111;
}

.index-feature p {
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 10px 0;
}

.index-feature li {
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 5px 0;
}

.index-feature li>span {
    display: inline-block;
    font-size: 2.2rem;
    transform: translateY(4px);
    margin-left: 0;
    color: #5DAA21;
}

/* feature rev2 */
.index-feature.rev2 {
    background-color: #FDF5F6;
}

.index-feature.rev2>div:last-child {
    padding: 0 0 0 20px;
}

/* feature rev3 */
.index-feature.rev3 {
    background-color: #F3F9FE;
}

/* container */
.index-container {
    background: #fff;
    width: calc(100% - 20px);
    overflow: auto;
    z-index: 4;
    margin: 20px auto;
    border-radius: 5px;
    max-width: 1000px;
}

/* tabs */
.index-tabs li {
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.index-tabs {
    max-width: 960px;
    margin: 25px 20px 35px 20px;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid var(--ui-tabs-border);
    text-align: center;
}

.index-tabs li * {
    user-select: none;
    pointer-events: none;
}

.index-tabs a {
    position: relative;
    display: inline-block;
    padding: 10px 0 12px 28px;
    margin: 0 20px 0 0;
    font-size: 14px;
    cursor: pointer;
    color: var(--ui-tabs-unselected);
}

.index-tabs a span {
    font-size: 10px;
    padding: 2px 5px;
    background-color: #f0f0f0;
    color: #888;
}

.index-tabs a svg {
    position: absolute;
    top: 7px;
    left: -10px;
    max-height: 20px;
    fill: var(--ui-tabs-unselected);
}

.index-tabs li[active] a {
    color: var(--ui-tabs);
    font-weight: 900;
}

.index-tabs li[active] a svg {
    fill: var(--ui-tabs);
}

.index-tabs li[active] a::after {
    position: absolute;
    bottom: -3px;
    left: -2px;
    content: '';
    background: var(--ui-tabs-selected);
    width: calc(100% + 8px);
    height: 6px;
    border-radius: 2px;
}

.index-tabs li[active] a svg {
    color: var(--ui-tabs);
}

/* index-list */
.index-list {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .index-list {
        display: grid;
        grid-template-columns: 1fr;
    }
}


.index-list-item-active * {
    pointer-events: none;
}

.index-list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.index-list-item:hover {
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.index-list-item-orange .index-list-item-content {
    background-color: var(--brand-orange);
}

.index-list-item-pink .index-list-item-content {
    background-color: var(--brand-pink);
}

.index-list-item-green .index-list-item-content {
    background-color: var(--brand-green);
}

.index-list-item-blue .index-list-item-content {
    background-color: var(--brand-blue);
}

.index-list-item-content {
    padding: 20px;
}

.index-list-item-content h2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px 0;
}


.index-list-item-content p {
    font-size: .9rem;
    line-height: 1.2rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-decoration: none;
}

.index-list-item-content a, .index-list-item-content a:visited {
    display: block;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.index-list-item-content a svg {
    position: relative;
    display: inline-block;
    fill: #fff;
    width: 20px;
    height: 20px;
    transform: translateY(4px);
}

.index-list-item-image {
    display: grid;
    align-content: center;
}

.index-list-item-image img {
    width: 100%;
    max-width: 100%;
}

/* coming soon */

.index-list-item-coming-soon {
    display: grid;
    border: dashed 5px #ddd;
    border-radius: 5px;
    align-content: center;
    text-align: center;
    min-height: 200px;
}

.index-list-item-coming-soon p {
    font-size: .9rem;
    line-height: 1.2rem;
    color: #888;
    margin: 0 0 10px 0;
    text-decoration: none;
}

.index-list-item-coming-soon h2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 900;
    color: #888;
    margin: 0 0 10px 0;
}

.index-list-item-coming-soon a {
    font-weight: 900;
}

.index-content {
    padding: 25px;
}

.index-content p, .index-content ol, .index-content ul {
    margin-bottom: 25px;
    line-height: 1.4rem;
    font-size: 1.0rem;
}

.index-content p b, .index-content li b {
    font-weight: bold;
}


.index-content li {
    margin-bottom: 10px;
}

.index-content h3 {
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 0 0 25px 0;
}

.index-content img {
    width: 100%;
    max-width: 100%;
}

.index-content ul li {
    font-size: 1.0rem;
    margin-bottom: 10px;
    line-height: 1.5rem;
    background: url(../img/bullet.svg) no-repeat 0 7px;
    background-size: 10px;
    padding-left: 25px;
}

/* feature */
.sai-feature {
    position: relative;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 1000px;
  }

  .sai-feature .sai-feature-grid {
    display: grid;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    align-content: start;
  }

  @media only screen and (min-width: 801px) {
    .sai-feature .sai-feature-grid {
      display: grid;
      grid-auto-columns: 1fr;
      grid-auto-flow: column;
      
    }
  }

  @media only screen and (max-width: 800px) {
    .sai-feature .sai-feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      
    }
  }

  .sai-feature .sai-feature-cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #F5FBFB;
    opacity: 71%;
    transition: all .5s;
  }

  .sai-feature .sai-feature-col:nth-child(2) .sai-feature-cover {
      background-color: #FDF5F6;
  }

  .sai-feature .sai-feature-col:nth-child(3) .sai-feature-cover {
      background-color: #F3F9FE;
  }

  .sai-feature-col:hover .sai-feature-cover {
    opacity: 86%;
  }

  .sai-feature-col {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
  }

  .sai-feature-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all .5s;
  }

  .sai-feature-col:hover .sai-feature-img {
    transform: scale(1.2);
  }
  
  .sai-feature-content {
    position: relative;
    z-index: 3;
    padding: 20px 10px;
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: 300px;
  }

  .sai-feature-content svg, .sai-feature-content svg g {
      fill: #55505C;
  }
  
  .sai-feature p {
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #55505C;
  }

  .sai-feature p small {
    font-size: 12px;
    color: #55505C;
  }

  @media only screen and (max-width: 800px) {

  }