/* ============================================
   フォント設定
   ============================================ */
/* M PLUS 2フォントはGoogle Fonts CDNから読み込み */

/* ============================================
   基本設定
   ============================================ */
html,body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.4175vw;
}

@media (min-width: 768px) {
    html,body {
        font-size: 15px;
        position: relative;
    }

    body:after {
        content: '';
        display: block;
        width: 100%;
        height: 100vh;
        background: url('../images/bg_pc.jpg') no-repeat top center;
        background-size: 100% auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }
    header {
        width: 620px !important;
    }
    .wrapperMain {
        width: 620px;
        margin: 0 auto;
        box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    .pcInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        width: calc(calc(100% - 620px) / 2);
        height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 3rem;
    }
    .pcCTA {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 100;
        width: calc(calc(100% - 620px) / 2);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }
    .pcCTA a {
        max-width: 266px;
        width: 70%;
        margin-bottom: 4rem;
        display: block;
        transition: transform 0.3s ease-out;
    }
    
    .pcCTA a:hover {
        transform: scale(1.05);
    }
    .pcInfoContent {
        width: 40%;
        margin-bottom: 2rem;
    }
    .pcInfoContent img {
        width: 100%;
        height: auto;
    }
    .pcInfoTitle {
        width: 80%;
        margin-bottom: 2rem;
    }
    .pcInfoText {
        font-size: 1.4rem;
        color: #333;
        line-height: 2.4rem;
    }
    .bottomFixedCta {
        display: none !important;
    }
}

@media (max-width: 1600px) and (min-width: 1200px) {
    .pcInfoTitle {
        width: 100%;
        margin-bottom: 2rem;
    }
    .pcInfoText {
        font-size: 1.2vw;
        line-height: 2em;
    }
    .pcInfoText .break {
        display: none;
    }

}


@media (max-width: 1200px) and (min-width: 769px) {
    aside {
        display: none !important;
    }
}


@media (max-width: 768px) {
    aside {
        display: none;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    vertical-align: bottom;
}

.wrapperMain {
    font-size: 1.6rem;
}

.wrapperMain>section {
    padding: 4rem 2rem;
}

.small {
    font-size: 0.8em !important;
}

/* header */

header {
    padding: 0.6rem 0.6rem 0.6rem 1.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}

header h1 {
    width: 7.7rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

header a {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: #FA7624;
    background: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #FA7624;
    transition: transform 0.3s ease-out;
}

header a:hover {
    transform: scale(1.05);
}

header a:before {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/icon_regist.svg') no-repeat center center;
    background-size: contain;
}

/* /header */

main {
    position: relative;
    z-index: 0;
}

/* pain */

.pain {
    margin-top: -1.7rem;
    background: linear-gradient(180deg, #00559A 0%, #46ACC4 100%);
    padding: 3rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 2rem;
    position: relative;
    z-index: 1;
}

.pain h2 {
    width: 23rem;
    margin-bottom: 2rem;
}

.pain ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 80%;
}

.pain ul li {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    background-color: white;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 1rem 0.9rem;
    border-radius: 0.4rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}

.pain ul li span {
    color: #FA7624;
}

.pain ul li:before {
    content: '';
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    background: url('../images/icon_check.svg') no-repeat center center;
    background-size: contain;
    margin-right: 0.5rem;
}

/* /pain */

/* solution */

.solution {
    background: #fff;
    padding: 7.8rem 2rem 3rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.solution::before {
    content: '';
    display: block;
    width: 100%;
    height: 5.2rem;
    background: url('../images/solution_top.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.solution h2 {
    width: 26rem;
}

.solution ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 1rem;
    width: 100%;
}

.solution ul li {
    width: 10.4rem;
    text-align: center;
    list-style: none;
    background-color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.solution ul li img {
    width: 3.5rem;
    height: auto;
    margin-bottom: 0.5rem;
}

.solution ul li span {
    color: #FA7624;
    font-weight: 800;
}

.solutionDetails {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.solutionDetailsItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: wrap;
}

.solutionDetailsItem:nth-child(even) {
    flex-direction: row-reverse;
}

.solutionDetailsItem img {
    width: 12.8rem;
    height: auto;
}

.solutionDetailsItemContent {
    width: 23rem;
}

.solutionDetailsItemContent>span {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 600;
    font-size: 1.55rem;
    color: white;
    background: #4AAACD;
    padding: 0.4rem 0.8rem;
    display: inline-block;
    margin-bottom: 0.6rem;
}

.solutionDetailsItemContent>h3 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: #333;
    margin-bottom: 0.6rem;
}

.solutionDetailsItemContent>h3 strong {
    color: #FA7624;
    font-weight: inherit;
}

.solutionDetailsItemContent>p {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

.cta {
    display: block;
    transition: transform 0.3s ease-out;
}

.cta:hover {
    transform: scale(1.05);
}

/* /solution */

/* flow */

.flow {
    background: #6BBDDB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flow h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.25);
}

.flow h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_white.png') no-repeat center center;
    background-size: 100% auto;
}

.flow h3 {
    text-align: center;
    width: 32rem;
    margin: 2rem auto;
}

.flow ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flow ul li {
    width: 100%;
    background-color: white;
    position: relative;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 4rem;
    filter: drop-shadow(0px 2.15225px 4.3045px rgba(0, 0, 0, 0.25));
    padding-bottom: 1rem;
}

.flow ul li:before {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #41B4DE;
    position: absolute;
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: white;
    left: 0;
    top: 0;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.flow ul li:after {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: url('../images/icon_arrowwhite.png') no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(160%);
}

.flow ul li:last-child:after {
    display: none;
}

.flow ul li img {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem; 
}

.flow ul li h4 {
    font-weight: bold;
    font-size: 1.6rem;
    color: #0E83AD;
    text-align: center;
}

.flow ul li p {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
    text-align: left;
    padding: 0 1rem 1rem;
}

.normalFlow h3 {
    text-align: center;
    width: 24rem;
    margin: 2rem auto;
}

/* /flow */

/* trainer */

.trainer {
    background: #FF7024;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.trainer h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
}

.trainer h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_white.png') no-repeat center center;
    background-size: 100% auto;
}

.trainerList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.trainerList .trainerItem {
    background: white;
    border-radius: 1rem;
    text-align: center;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 1rem;
}

.trainerList .trainerItem .trainerImageSwiper {
    width: 100%;
    overflow: hidden;
}

.trainerList .trainerItem .trainerImageSwiper .swiper-slide {
    width: auto;
}

.trainerList .trainerItem .trainerImageSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.trainerList .trainerItem .trainerImageSwiper .swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.trainerList .trainerItem .trainerImageSwiper .swiper-pagination-bullet {
    background: #D9D9D9;
    opacity: 1;
    width: 0.8rem;
    height: 0.8rem;
}

.trainerList .trainerItem .trainerImageSwiper .swiper-pagination-bullet-active {
    background: #27A3D0;
}

.trainerList .trainerItem .trainerItemContent {
    padding: 0 2rem 2rem;
}

.trainerList .trainerItem .name {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-align: center;
    color: #27A3D0;
    margin-bottom: 1rem;
}

.trainerList .trainerItem .description {
    text-align: left;
}

/* /trainer */

/* floor */

.floor {
    background: #F0FBFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 4rem 0 !important;
}

.floor h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: #333;
}

.floor h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_black.png') no-repeat center center;
    background-size: 100% auto;
}

.floorList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    width: 100%;
}

.floorList .floorItem {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.floorList .floorItem .description {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    text-align: center;
}

/* /floor */

/* compare */

.compare {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 !important;
}

.compare h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.compare h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_black.png') no-repeat center center;
    background-size: 100% auto;
}

.compareDescription {
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
    text-align: right;
    width: 100%;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.compareWrapper {
    width: 100%;
}

/* /compare */

/* plan */

.plan {
    background: #6BBDDB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.plan h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.25);
}

.plan h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_white.png') no-repeat center center;
    background-size: 100% auto;
}

.planDescription {
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
    text-align: right;
    width: 100%;
}

.plan h3 {
    width: 17rem;
}

.planList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    width: 100%;
}

.planList h3 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
}

.planList .planItem {
    background: white;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid white;
}

.planList .planItem h4 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
    line-height: 1.2;
    height: 11rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.planList .planItem.light h4 {
    background: #81BA5D;
}

.planList .planItem.basic h4 {
    background: #DA8530;
}

.planList .planItem.grand h4 {
    background: #91874E;
}
.planList .planItem.company h4 {
    background: #453B81;
}

.planList .planItem h4 span {
    font-size: 1.6rem;
}

.planList .planItemContent {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.planList .planItemContent li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.planList .planItemContent li:after {
    content: '';
    display: block;
    width: 70%;
    height: 1px;
    margin-top: 0.8rem;
    background-color: #DADADA;
}

.planList .planItemContent li:last-child:after {
    display: none;
}

.planList .planItemContent li h5 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    border-radius: 2rem;
    display: inline-block;
    padding: 0.5rem 2rem;
}

.planList .planItem.light .planItemContent li h5 {
    background-color: #D8EBCC;
}

.planList .planItem.basic .planItemContent li h5 {
    background-color: #FEE0C3;
}

.planList .planItem.grand .planItemContent li h5 {
    background-color: #E0DCC6;
}

.planList .planItem.company .planItemContent li h5 {
    background-color: #DCD8F2;
}

.planList .planItemContent li p span.notax {
    font-size: 1.8rem;
    font-weight: 700;
}

.planList .planItemContent li p span.tax {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: #818181;
    margin-left: 0.5rem;
    transform: translateY(-0.4rem);
}

.planList .planItemContent li p strong {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    color: #333;
    font-weight: 600;
}

.planList .planItemContent li p span.oneTime {
    font-size: 1.4rem;
    display: block;
    margin-bottom: -0.8rem;
}

.planList .planItemContent li p:last-child strong {
    color: #FA7624;
}

.planList .planItemContent li p:last-child .notax {
    color: #FA7624;
}

.planList .light svg path {
    stroke: #D7E5CE !important;
}

.planList .basic svg path {
    stroke: #F37401 !important;
}

.planList .grand svg path {
    stroke: #D4CFB2 !important;
}

.planList .company svg path {
    stroke: #DCD8F2 !important;
}

.planList.individual:after {
    content: '';
    display: block;
    width: 1px;
    height: 4.2rem;
    margin: 0 auto;
    background-color: white;
}

.membershipfee {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    border: 1px solid white;
    border-radius: 0.6rem;
    height: 10.6rem;
    position: relative;
}

.membershipfee:before {
    content: '';
    display: block;
    width: 1px;
    height: 3rem;
    border-left: 1px dotted white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.membershipfee > * {
    width: 50%;
}

.membershipfee h3 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
}

.membershipfee p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.membershipfee p strong {
    font-family: 'Oswald', sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
}

.membershipfee p span {
    font-size: 1.4rem;
}

.company .membershipfee h3 {
    line-height: 1.2;
    transform: translateY(-0.5rem);
}

.company .membershipfee h3 span {
    font-size: 1.6rem;
}

/* /plan */

/* address */

.address {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.address h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: #333;
}

.address h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 0;
    background: url('../images/line_dot_black.png') no-repeat center center;
    background-size: 100% auto;
}

.address dl {
    width: 100%;
}

.address dt {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

.address dd {
    margin-bottom: 1.6rem;
}

/* /address */

/* faq */

.faq {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
}

.faq h2 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-align: center;
    color: #333;
}

.faq h2:after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 0.7rem;
    margin: 1rem auto 1.6rem;
    background: url('../images/line_dot_black.png') no-repeat center center;
    background-size: 100% auto;
}

.faqList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    width: 100%;
}

.faqList .faqItem {
    background: #F9F9F9;
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
}

.faqList .faqItem h3 {
    font-weight: 600;
    font-size: 1.6rem;
    color: #333;
    padding-right: 2rem;
    position: relative;
    cursor: pointer;
}

.faqList .faqItem h3:before {
    content: 'Q.';
    display: inline-block;
    font-weight: 900;
    font-family: 'M PLUS 2', sans-serif;
    margin-right: 0.5rem;
}

.faqList .faqItem h3:after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url('../images/icon_plus.png') no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: background-image 0.3s ease;
}

.faqList .faqItem.active h3:after {
    background-image: url('../images/icon_minus.png');
}

.faqList .faqItem p {
    margin-top: 1.6rem;
    padding-left: 2.1rem;
    text-indent: -1.1rem;
}

.faqList .faqItem p:before {
    content: 'A.';
    display: inline-block;
    font-weight: 900;
    font-family: 'M PLUS 2', sans-serif;
    margin-right: 0.5rem;
    color: #F27600;
}


/* /faq */

/* ============================================
   ナンバリング（trialFlow / normalFlow）
   ============================================ */
.trialFlow ul {
    counter-reset: trial-flow-number;
    gap: 0.5rem;
}

.trialFlow ul li {
    counter-increment: trial-flow-number;
    position: relative;
}

.trialFlow ul li::before {
    content: counter(trial-flow-number);
}

.normalFlow ul {
    counter-reset: flow-number;
}

.normalFlow ul li {
    counter-increment: flow-number;
    position: relative;
}

.normalFlow ul li::before {
    content: counter(flow-number);
}

/* footer */

footer {
    background: #6BBDDB;
    padding: 4rem 2rem 11rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer p {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #fff;
}

footer img {
    width: 9.6rem;
}

/* /footer */

/* bottomFixedCta */

.bottomFixedCta {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    flex-flow: wrap;
    padding: 1rem;
    align-items: stretch;
}

.bottomFixedCta a {
    border: 1px solid #fff;
    border-radius: 10rem;
    padding: 1rem 1rem 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 80%;
    font-size: 1.8rem;
}

.bottomFixedCta .trial:before {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/icon_regist.svg') no-repeat center center;
    background-size: contain;
}

.bottomFixedCta .trial {
    background: #FF7024;
}

.bottomFixedCta .linefriend {
    background: #4CC764;
}

.bottomFixedCta .linefriend>span {
    font-size: inherit;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
}

.bottomFixedCta .linefriend .small {
    font-size: 1rem !important;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-top: -0.3rem;
}

/* /bottomFixedCta */