@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@700&display=swap');
html {
    font-size: 62.5%;
}

body {
    color: #3a3a3a;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1 !important;
}

body.nav-open {
    overflow: hidden;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

.sp,
.tb {
    display: none;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.position-relative {
    position: relative !important;
}

.flex-1 {
    flex: 1;
}

.inner {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

.col-white {
    color: #fff !important;
}

.col-blue {
    color: #004aad !important;
}

.col-sky {
    color: #2993ff !important;
}

.fw-bold {
    font-weight: bold;
}

.f-10 {
    font-size: 1rem;
}

.f-16 {
    font-size: 1.6rem;
}

.f-24 {
    font-size: 2.4rem;
}

.f-30 {
    font-size: 3rem;
}

.f-35 {
    font-size: 3.5rem;
}

.f-40 {
    font-size: 4rem;
}

@media screen and (max-width: 768px) {
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
    .f-16 {
        font-size: 1.4rem;
    }
    body {
        font-size: 1.6rem;
    }
    .f-24 {
        font-size: 1.8rem;
    }
    .f-30 {
        font-size: 2rem;
    }
    .f-35 {
        font-size: 2.2rem;
    }
    .f-40 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 480px) {
    .inner {
        width: 90%;
    }
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
    body {
        font-size: 1.4rem;
    }
    .f-24 {
        font-size: 1.7rem;
    }
    .f-30 {
        font-size: 1.8rem;
    }
    .f-35 {
        font-size: 2rem;
    }
    .f-40 {
        font-size: 2.2rem;
    }
}


/********************************************
***************** header ********************
********************************************/

.header-wrapper {
    padding: 30px 50px;
}

.header-menu ul li {
    margin-left: 30px;
}

.header-menu ul li:last-child a {
    padding: 5px 20px;
    color: #fff;
    background-color: #2993ff;
    border-radius: 50px;
}

.hamburger {
    position: fixed;
    right: 0;
    top: 0;
    display: none;
    width: 80px;
    height: 80px;
    padding-top: 7px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #004AAD;
    cursor: pointer;
    z-index: 99;
}

.menu-trigger {
    position: relative;
    width: 40px;
    height: 29px;
    margin-bottom: 4px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #fff;
    transition: all .4s;
    -webkit-animation: menu-bar .75s forwards;
    animation: menu-bar .75s forwards;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

.menu-trigger span:nth-of-type(2) {
    top: 13px;
    -webkit-transition: all .25s .25s;
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    top: 26px;
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
        transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
        transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(13px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(13px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(13px) rotate(0);
        transform: translateY(13px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(13px) rotate(45deg);
        transform: translateY(13px) rotate(45deg);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active .menu-trigger span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-13px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-13px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-13px) rotate(0);
        transform: translateY(-13px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-13px) rotate(-45deg);
        transform: translateY(-13px) rotate(-45deg);
    }
}

@media screen and (max-width: 1100px) {
    .header-wrapper {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 1023px) {
    .header-wrapper {
        height: 80px;
        padding: 10px 20px;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header-menu {
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        width: 100vw;
        height: 100vh;
        padding: 80px 10vw;
        background-color: #fff;
        overflow-y: auto;
        z-index: 10;
    }
    .header-menu.active {
        display: block;
    }
    .header-menu ul li {
        width: 100%;
        margin-left: 0;
    }
    .header-menu ul li a {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid;
    }
    .header-menu ul li:last-child a {
        max-width: 400px;
        margin: 20px auto;
        padding: 20px;
        text-align: center;
        border-radius: 50px;
    }
}

@media screen and (max-width: 600px) {
    .header-logo {
        width: 180px;
    }
}


/********************************************
****************** footer *******************
********************************************/

footer {
    padding: 5em 0;
    text-align: center;
    background: linear-gradient(to right, #004AAD, #0CC0DF);
}

.footer-menu {
    padding: 1em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.footer-meny__v-line {
    margin: 0 5px;
    color: #fff;
    opacity: 0.5;
}

@media screen and (max-width: 480px) {
    .footer-logo img {
        width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .footer-menu {
        font-size: 15px;
    }

    .footer-menu ul {
        flex-direction: column;
        gap: 10px;
    }
}


/************ TOP *************/

.mv {
    background: linear-gradient(to right, #004AAD, #0CC0DF);
}

.mv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 25px 70px 70px;
}

.mv-wrapper-cont {
    padding-right: 60%;
}

.mv-wrapper figure {
    position: absolute;
    top: 0;
    left: 43%;
    right: 0;
}

.mv-wrapper__btn {
    max-width: 315px;
}

.mv-wrapper__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80px;
    margin-top: 20px;
    font-weight: 800;
    color: #fff;
    background-color: #ff8d38;
    border-radius: 16px;
    border: 4px solid #ff8d38;
}

.mv-wrapper__btn a:hover,
.mv-wrapper__btn a.--hover {
    color: #ff8d38;
    background-color: #fff;
    opacity: 1;
    filter: opacity(1);
}

.mv-wrapper__btn a.--hover:hover {
    color: #fff;
    background-color: #ff8d38;
}

.mv-form {
    width: 30%;
    max-width: 400px;
    padding: 6em 30px;
    background-color: #b5e3eb;
}

.mv-form__ttl span {
    color: #099fb8;
}

.mv-form form ul li {
    margin-bottom: 28px;
}

.mv-form form input[type="text"],
.mv-form form input[type="email"],
.mv-form form input[type="tel"],
.mv-form form select {
    display: block;
    width: 100%;
    height: 65px;
    padding: 0 25px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #099fb8;
    border-radius: 15px;
    box-sizing: border-box;
}

.mv-form__submit input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 240px;
    height: 65px;
    margin: 10px auto 0;
    padding: 0px 65px;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #ffde59;
    border-radius: 15px;
    border: none;
    text-wrap: wrap;
    box-sizing: border-box;
    transition: all .2s linear;
    cursor: pointer;
}
.mv-form__submit input[type="submit"]:hover {
    background-color: #ffeda6;
    transform: scale(1.1);
}


@media screen and (max-width: 1024px) {
    .mv {
        align-items: stretch !important;
    }
    .mv-form {
        width: 340px;
    }
    .mv-wrapper {
        padding: 50px;
    }
    .mv-wrapper-cont {
        padding-right: 0;
    }
    .mv-wrapper figure {
        position: relative;
        left: 0;
        max-width: 500px;
        margin: 30px auto 0;
    }
    .mv-wrapper__btn {
        margin: 0 auto;
    }

}

@media screen and (max-width: 768px) {
    .mv .flex-1 {
        flex: none;
        width: 100%;
        text-align: center;
    }
    .mv-form {
        width: 90%;
        margin: 0 auto 50px;
        padding: 30px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 600px) {
    .mv-wrapper {
        padding: 50px 5%;
    }
    .mv-form {
        padding: 30px 20px;
    }
}

.concept {
    background-color: #E8F0FA;
}

.concept-sec h2 span {
    display: inline-block;
    min-width: 180px;
    padding: 12px;
    text-align: center;
    background-color: #BCD4F1;
    border-radius: 20px;
}

.concept-sec__num {
    position: absolute;
    right: 43%;
    top: 0;
    font-size: 16rem;
    font-weight: bold;
    transform: translate(50%, -40%);
}

.concept-sec:nth-of-type(2) .concept-sec__num {
    right: 50%;
    transform: translate(-70%, -65%);
}

.concept-header__left {
    width: 50%;
}

.concept-header__left-box {
    position: relative;
    padding: 60px 20px 60px 280px;
    color: #fff;
    background-color: #2993FF;
    border-radius: 20px;
}

.concept-header__left-box figure {
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 0;
    width: 250px;
}

.concept-header__left-box figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.concept-header__right {
    width: 43%;
}

.concept-body__txt {
    position: relative;
    width: 50%;
    padding: 50px;
}

.concept-body__txt::before,
.concept-body__txt::after {
    content: '';
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    border: 10px solid #2993FF;
}

.concept-body__txt::before {
    top: 0;
    border-bottom: none;
    border-right: none;
}

.concept-body__txt::after {
    bottom: 0;
    border-top: none;
    border-right: none;
}

.concept-body__txt p {
    position: relative;
}

.concept-body__txt p::before,
.concept-body__txt p::after {
    content: '';
    position: absolute;
    right: -50px;
    width: 70px;
    height: 70px;
    border: 10px solid #2993FF;
}

.concept-body__txt p::before {
    top: -50px;
    border-bottom: none;
    border-left: none;
}

.concept-body__txt p::after {
    bottom: -50px;
    border-top: none;
    border-left: none;
}

.concept-body figure {
    width: 43%;
    text-align: center;
}

.concept-body figure img {
    width: 80%;
}

@media screen and (max-width: 1024px) {
    .concept-sec {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    .concept-header__left,
    .concept-header__right,
    .concept-body__txt {
        width: 100%;
    }
    .concept-body figure {
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
    }
    .concept-sec__num {
        right: 0 !important;
        font-size: 10rem;
        transform: translate(0, -100%) !important;
    }
}

@media screen and (max-width: 768px) {
    .concept-body__txt {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 480px) {
    .concept-sec h2 span {
        border-radius: 10px;
    }
    .concept-sec__num {
        font-size: 8rem;
    }
    .concept-header__left-box {
        padding: 15px 15px 15px calc(25% + 25px);
        font-size: 1.2rem;
        border-radius: 20px;
    }
    .concept-header__left-box figure {
        left: 15px;
        top: 15px;
        width: 25%;
    }
    .concept-body__txt {
        padding: 25px;
        font-size: 1.6rem;
    }
    .concept-body__txt::before, 
    .concept-body__txt::after {
        width: 40px;
        height: 40px;
        border-width: 5px;
    }
    .concept-body__txt p::before, 
    .concept-body__txt p::after {
        right: -25px;
        width: 40px;
        height: 40px;
        border-width: 5px;
    }
    .concept-body__txt p::before {
        top: -25px;
    }
    .concept-body__txt p::after {
        bottom: -25px;
    }
}

.price-trial {
    background: linear-gradient(to right, #004AAD, #0CC0DF);
}

.ma_lr_auto {
    margin-left: auto;
    margin-right: auto;
}

.price-value {
    font-size: 13.2rem;
    line-height: 1;
}

.price-tag {
    font-size: 1.9rem;
    text-align: left;
}

.price-tag span {
    font-size: 160%;
}

.price-catch {
    position: absolute;
    left: calc(50% + 300px);
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    color: #fff;
    background-color: #2993FF;
    border-radius: 50%;
    transform: translateY(-35%);
    z-index: -1;
}

.price-add span {
    display: inline-block;
    padding: 30px;
    background-color: #BCD4F1;
    border-radius: 20px;
}

.support {
    text-align: center;
    font-weight: bold;
    border: 10px solid #BCD4F1;
    border-radius: 20px;
}

.support h3 {
    padding: 30px 20px;
    border-bottom: 9px dashed #BCD4F1;
}

.support ul li {
    width: 33.33%;
    font-size: 2.8rem;
}

.support ul li figure {
    padding: 0 20px;
    border-right: 5px solid #BCD4F1;
}

.support ul li:last-child figure {
    border-right: none;
}

.support ul li figure img {
    max-width: 200px;
}

.cta {
    text-align: center;
    padding: 0 5%;
    background-color: #004AAD;
    border-radius: 20px;
}

.cta-ttl {
    font-size: 4.5rem;
}

.cta-btn {
    max-width: 800px;
    margin: 0 auto;
}

.cta-btn__item {
    width: 48%;
    max-width: 315px;
}

/* .cta-btn__item--w .mv-wrapper__btn a {
    color: #004AAD;
    background-color: #fff;
    border-color: #fff;
} */

@media screen and (max-width: 768px) {
    .price-value {
        font-size: 8rem;
    }
    .price-tag {
        font-size: 1.2rem;
    }
    .price-catch {
        left: auto;
        right: -3vw;
        top: 50%;
        width: 170px;
        height: 170px;
        transform: translateY(-10%);
    }
    .support ul li {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
        padding-bottom: 30px;
        border-bottom: 5px solid #BCD4F1;
    }
    .support ul li figure {
        border-right: none;
    }
    .support ul li:last-child {
        margin: 0 auto;
        padding-bottom: 0;
        border-bottom: none;
    }
    .cta-ttl {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 480px) {
    .price-value {
        font-size: 5rem;
    }
    .price-tag {
        font-size: 1rem;
    }
    .price-catch {
        width: 90px;
        height: 90px;
        font-size: 0.9rem;
        transform: translateY(20%);
    }
    .price-add span {
        padding: 15px;
        border-radius: 10px;
    }
    .support {
        border-width: 5px;
    }
    .support h3 {
        padding: 15px 10px;
        border-width: 4px;
    }
    .support ul li {
        font-size: 1.8rem;
    }
    .cta-ttl {
        font-size: 2rem;
    }
    .cta-btn__item {
        width: 100%;
        margin: 0 auto;
    }
}

.faq {
    background-color: #E8F0FA;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list li {
    margin-top: 25px;
    background: #FFFFFF;
    border-radius: 20px;
}

.faq-list__question {
    position: relative;
    padding: 20px 30px 20px 80px;
    font-size: 2.5rem;
    border-bottom: 4px dashed #BCD4F1;
}

.faq-list__answer {
    position: relative;
    padding: 20px 30px 20px 80px;
    font-size: 2.5rem;
}

.faq-list__question::before,
.faq-list__answer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 80px;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.faq-list__question::before {
    content: 'Q';
    color: #FF5757;
}

.faq-list__answer::before {
    content: 'A';
    color: #2993FF;
}

@media screen and (max-width: 768px) {
    .faq-list__question,
    .faq-list__answer {
        font-size: 1.8rem;
    }
    .faq-list__question::before, 
    .faq-list__answer::before {
        top: 9px;
    }
}

@media screen and (max-width: 480px) {
    .faq-list__question, .faq-list__answer {
        font-size: 1.6rem;
        padding: 16px 15px 16px 50px;
    }
    .faq-list__question::before, 
    .faq-list__answer::before {
        width: 50px;
        font-size: 2.4rem;
    }
}

/************ Commercial law & Terms of Service *************/
.law,
.terms {
    padding: 80px 0;
    background-color: #E8F0FA;
}

.law, .law .inner, .law-header,
.terms, .terms .inner, .terms-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.law-header h2,
.terms-header h2 {
    font-weight: bold;
    font-size: 34px;
    margin-bottom: 8px;
}

.law-header span,
.terms-header span {
    font-weight: bold;
    color: #ccc;
    font-size: 20px;
}

.law-body,
.terms-body {
    padding: 60px;
    margin: 40px auto 0;
    max-width: 960px;
    background-color: #fff;
    border-radius: 10px;
}

.law-body__ttl {
    font-size: 19px;
    font-weight: bold;
    margin: 40px 0 16px;
}

.terms-body__ttl {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.terms-body__subttl {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.law-body__txt {   
    font-size: 16px;
    line-height: 174%;
    margin: 14px 0;
    letter-spacing: -0.2px;
}

.terms-body__txt {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: justify;
}

.law-body__table {
    border: 1px solid #999999;
    font-size: 16px;
    line-height: 174%;
    table-layout: fixed;
    margin-top: 24px;
    width: 100%;
    word-break: break-all;
    border-collapse: collapse;
    box-sizing: border-box;
}

.law-body__table th {
    text-align: left;
    font-weight: bold;
    background-color: #f9fafb;
    border-right: 1px solid #999999;
    padding: 10px 12px;
}

.law-body__table td {
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    padding: 10px 12px;
    text-align: justify;
}

.law-body__table td a {
    color: #3254c7;
    text-decoration: underline;
}

.law-body__table td a:hover {
    opacity: 1 !important;
}


/********** FORM ************/

.sub {
    background-color: #FAFAFA;
}

.sub .inner {
    background-color: #fff;
}

.sub-main {
    width: 50%;
}

.sub-form {
    width: 50%;
    padding: 80px 5%;
}

.sub-form form {
    max-width: 700px;
    margin: 0 auto;
}

.sub-form form ul li {
    margin-bottom: 15px;
}

.w_50 {
    width: 48%;
}

.sub-form form span.required {
    margin-left: 15px;
    padding: 2px 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #FF5757;
    border-radius: 30px;
}

.sub-form form input[type="text"],
.sub-form form input[type="tel"],
.sub-form form input[type="email"],
.sub-form form select {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    background: #FFFFFF;
    border: 1px solid #A6A6A6;
    box-sizing: border-box;
    border-radius: 5px;
}

.sub-form form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    background: #FFFFFF;
    border: 1px solid #A6A6A6;
    box-sizing: border-box;
    border-radius: 5px;
}

.sub-form form a {
    color: #2993FF;
    text-decoration: underline;
}

.sub-form form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 248px;
    height: 53px;
    margin: 0 auto;
    font-size: 0;
    background: url(../img/btn_submit.png) no-repeat center / contain;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .sub-main,
    .sub-form {
        width: 100%;
    } 
}

@media screen and (max-width: 480px) {
    .w_50 {
        width: 100%;
    } 
    .w_50 + .w_50 {
        margin-top: 10px;
    }
}

.trial-flow {
    column-gap: 40px;
    row-gap: 10px;
}

.trial-flow li {
    position: relative;
    width: 84px;
    padding: 10px 5px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #D9D9D9;
    border-radius: 5px;
}

.trial-flow__step {
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.trial-flow__step span {
    font-size: 150%;
}

.trial-flow li:last-child {
    color: #fff;
    background-color: #2993FF;
}

.trial-flow li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -32px;
    top: calc(50% - 9px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 18px;
    border-color: transparent transparent transparent #a6a6a6;
}
.disabled {
    opacity: 0.5;
}

.text-gray {
    color: #787878;
}

.error {
    color: red;
}

#NotiflixLoadingWrap circle {
    stroke: #2993FF;
}