@charset "UTF-8";

/* base
------------------------------------------------------------*/

html {
    font-size: calc(10 / 1280 * 100vw);
}

@media screen and (max-width: 767px) {
    html {
        font-size: calc(10 / 428 * 100vw);
    }
}

body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

li {
    list-style: none;
}



/* common01
------------------------------------------------------------*/

.section__title {
    text-align: center;
}

.section__title-jp {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
}

.section__title-en {
    font-size: 1.6rem;
    font-weight: 400;
    color: #2EA5E4;
    line-height: 1.3;
}

.flex {
    display: flex;
}

.flex--center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex--sb {
    display: flex;
    justify-content: space-between;
}

.flex--wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex--column {
    display: flex;
    flex-direction: column;
}

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


@media screen and (min-width: 768px) {
    .flex--pc {
        display: flex;
    }

    .flex--reverse-pc {
        display: flex;
        flex-direction: row-reverse;
    }

    .flex--center-pc {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flex--sb-pc {
        display: flex;
        justify-content: space-between;
    }

    .flex--sb-r-pc {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .flex--column-pc {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .section__title-jp {
        font-size: 2.4rem;
    }

    .section__title-en {
        font-size: 1.2rem;
    }

    .flex--sp {
        display: flex;
    }

    .flex--center-sp {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flex--column-sp {
        display: flex;
        flex-direction: column;
    }

    .flex--column-r-sp {
        display: flex;
        flex-direction: column-reverse;
    }

    .flex--column-center-sp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flex--sb-sp {
        display: flex;
        justify-content: space-between;
    }
}



/* button
------------------------------------------------------------*/
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.button--orange01 {
    background-color: #FF932D;
    border: 1px solid #FF932D;
    color: #fff;
    transition: all .3s;
}

.button--orange01:hover {
    background-color: #fff;
    color: #FF932D;
}

.button--white01 {
    border: 1px solid #2EA5E4;
    background-color: #fff;
    color: #2EA5E4;
    transition: all .3s;
}

.button--white01:hover {
    background-color: #2EA5E4;
    color: #fff;
}

.button--white02 {
    border: 1px solid #333;
    background-color: #fff;
    transition: all .3s;
}

.button--white02:hover {
    background-color: #333;
    color: #fff;
}

.button--white03 {
    background-color: #fff;
    transition: all .3s;
}

.button--white03:hover {
    background-color: #333;
    color: #fff;
}




/* header
------------------------------------------------------------*/
#header {
    position: fixed;
    z-index: 9980;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.header__container {
    position: relative;
    z-index: 10;
    align-items: center;
    margin: 0 auto;
    padding-left: .7rem;
    padding-right: 1rem;
    width: 106rem;
    height: 7.3rem;
}

.header__logo {
    margin-top: .1rem;
    width: 10rem;
}

.header-nav {
    margin-top: .1rem;
    margin-left: 7.8rem;
}

.header-nav__lists {
    column-gap: 2.7rem;

}

.header-nav__link {
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
}

.header-nav__link::before {
    content: "";
    position: absolute;
    bottom: -.3rem;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: .1rem;
    background-color: #2EA5E4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s cubic-bezier(.73, 0, .26, 1);
}

.header-nav__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.header__button-container {
    margin-left: auto;
    column-gap: 1rem;
}

.header__button01 {
    padding-bottom: .1rem;
    padding-left: .1rem;
    width: 19.4rem;
    height: 4.1rem;
    border-radius: 2.05rem;
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, .25);
    letter-spacing: .09em;
}

.header__button02 {
    padding-left: .1rem;
    padding-bottom: .1rem;
    width: 10.8rem;
    height: 4.1rem;
    border-radius: 2.05rem;
    letter-spacing: .09em;
}

@media screen and (max-width: 767px) {
    .header__container {
        padding-left: 0;
        padding-right: 0;
        width: 37.2rem;
        height: 7.3rem;
    }

    .header__logo {
        margin-bottom: .25rem;
        width: 7.58rem;
    }

    .hamburger {
        margin-right: .1rem;
        margin-bottom: .1rem;
        position: relative;
        width: 3.8rem;
        height: 2.4rem;
        cursor: pointer;
    }

    .hamburger__line {
        position: absolute;
        left: 0;
        width: 100%;
        height: .2rem;
        border-radius: .1rem;
        background-color: #2EA5E4;
        transition: all .3s;
    }

    .hamburger__line:nth-of-type(1) {
        top: 0;
        transform-origin: left;
    }

    .hamburger__line:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        transform-origin: center;
    }

    .hamburger__line:nth-of-type(3) {
        bottom: 0;
        transform-origin: left;
    }

    .hamburger.js-active>.hamburger__line:nth-of-type(1) {
        width: 4.5rem;
        transform: rotate(30deg);
    }

    .hamburger.js-active>.hamburger__line:nth-of-type(2) {
        transform: translateY(-50%) scaleX(0);
        opacity: 0;
    }

    .hamburger.js-active>.hamburger__line:nth-of-type(3) {
        width: 4.5rem;
        transform: rotate(-30deg);
    }

}


/* hamburger-nav
------------------------------------------------------------*/
#body.js-fixed {
    overflow: hidden;
}

.hamburger-nav {
    position: fixed;
    width: 100%;
    height: calc(100vh - 7.3rem - 6.5rem);
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
    overflow-x: hidden;
}

.hamburger-nav__bg {
    position: fixed;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 47rem;
    height: 56rem;
    opacity: 0;
    visibility: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
    transition: all .8s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translate(calc(-40% - 13rem), calc(-54% + 5rem)) skew(6deg);
}

.hamburger-nav.js-open .hamburger-nav__bg {
    opacity: .5;
    visibility: visible;
    clip-path: polygon(0 0, 175% 0, 0 175%);
    transform: translate(-47%, -54%) skew(0);
}

.hamburger-nav__bg-path {
    fill: #419fdc;
    stroke: #fff;
    stroke-width: 1rem;
    transition: all .4s .2s ease-in-out;
}

.hamburger-nav.js-open .hamburger-nav__bg-path {
    stroke-width: .6rem;
}

.hamburger-nav.js-open {
    opacity: 1;
    visibility: visible;
}

.hamburger-nav__lists {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    row-gap: 2rem;
    padding-bottom: 4rem;
    height: 32rem;

}

.hamburger-nav__list {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translate(-1.5rem, 1.2rem);
}

.hamburger-nav.js-open .hamburger-nav__list {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}


.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(1) {
    transition: all .4s .41s;
}

.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(2) {
    transition: all .4s .38s;
}

.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(3) {
    transition: all .4s .35s;
}

.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(4) {
    transition: all .4s .3s;
}

.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(5) {
    transition: all .4s .25s;
}

.hamburger-nav.js-open .hamburger-nav__list:nth-of-type(6) {
    transition: all .4s .2s;
}

.hamburger-nav__link {
    position: relative;
    font-size: 2rem;
}


@media screen and (min-width: 600px) and (max-width: 767px) {
    .hamburger-nav.js-open .hamburger-nav__bg-path {
        stroke-width: .4rem;
    }
}





/* lower-nav
------------------------------------------------------------*/

#lower-nav {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    column-gap: 1rem;
    width: 100%;
    height: 6.5rem;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all .35s;
}

#lower-nav.js-appear {
    opacity: 1;
    visibility: visible;
}


.lower-nav__button01 {
    padding-bottom: .1rem;
    padding-left: .05rem;
    width: 19.4rem;
    height: 4.1rem;
    border-radius: 2.05rem;
    letter-spacing: .09em;
}

.lower-nav__button02 {
    padding-bottom: .1rem;
    padding-left: .1rem;
    width: 10.8rem;
    height: 4.1rem;
    border-radius: 2.05rem;
    letter-spacing: .09em;
}

/* page top button
------------------------------------------------------------*/
.page-top {
    position: fixed;
    z-index: 9970;
    bottom: 3rem;
    right: 3rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #2EA5E4;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.page-top.js-appear {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    background-color: #2EA5E4;
    border: 1px solid #fff;
}

.page-top::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-53%, -54%);
    width: 2.067rem;
    height: 2.367rem;
    background: url(../images/icon_arrow-pagetop_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page-top:hover:before {
    background: url(../images/icon_arrow-pagetop_02.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .page-top {
        bottom: 7rem;
        right: .5rem;
        width: 5.1rem;
        height: 5.1rem;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }

    .page-top::before {
        transform: translate(-51%, -56%);
        width: 1.5rem;
        height: 1.9rem;
    }
}



/* mv
------------------------------------------------------------*/
#mv {
    position: relative;
    margin-top: 7.3rem;
    background: linear-gradient(117.17deg, #2EA5E4 0%, #3CABE6 47%, #c2e7fa 100%);
    overflow: hidden;
}

#mv::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 8.1rem;
    right: -.5rem;
    width: 62.5rem;
    height: 55.5rem;
    background: url(../images/mv_pc_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#mv::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 128rem;
    height: 20.2rem;
    background: url(../images/mv_bg_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.mv__container {
    padding-top: 5.8rem;
    padding-left: 11rem;
    height: 65.7rem;
}

.mv__text {
    font-weight: 700;
    color: #fff;
}

.mv__point {
    margin-left: .2rem;
    padding-right: .05rem;
    padding-bottom: .2rem;
    width: 29.8rem;
    height: 4.8rem;
    border-radius: 2.4rem;
    border: .2rem solid #FDF119;
    font-size: 2.4rem;
    color: #FDF119;
}

.mv__title {
    margin-top: 1.75rem;
    font-size: 4.8rem;
    line-height: 1;
}

.mv__title-01 {
    font-size: 5.6rem;
    letter-spacing: .0205em;
}

.mv__title-02 {
    display: inline-block;
    transform: translate(-.07rem, .2rem);
}

.mv__title-03 {
    display: block;
    margin-top: 1.2rem;
    letter-spacing: .024em;
}

.mv__title-04 {
    display: inline-block;
    transform: translateX(-.3rem);
}

.mv__title-05 {
    display: block;
    margin-top: 2.05rem;
    font-size: 8.8rem;
    letter-spacing: .01636em;
}

.mv__lead {
    position: relative;
    margin-top: 2.65rem;
    margin-left: .2rem;
    font-size: 3.2rem;
    letter-spacing: .045em;
    line-height: 1.47;
}

.mv__lead::before,
.mv__lead::after {
    content: "";
    position: absolute;
    left: 0;
    height: .5rem;
    background-color: #FDF119;
}

.mv__lead::before {
    top: 4.25rem;
    width: 39.6rem;
}

.mv__lead::after {
    top: 8.95rem;
    width: 43.6rem;
}

.mv__button01 {
    position: relative;
    z-index: 10;
    margin-top: 5.15rem;
    padding-bottom: .2rem;
    width: 43.8rem;
    height: 7rem;
    border-radius: 3.5rem;
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: .045em;
}

.mv__button01::before {
    content: "";
    position: absolute;
    top: 1.2rem;
    right: 2.1rem;
    width: 2.3rem;
    height: 4.6rem;
    background: url(../images/icon_arrow-right_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.mv__button01:hover::before {
    background: url(../images/icon_arrow-right_03.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


@media screen and (max-width: 767px) {
    #mv {
        position: relative;
        margin-top: 7.3rem;
        background: linear-gradient(102deg, #2EA5E4 0%, #3CABE6 45%, #c0e6fa 100%);
        overflow: hidden;
    }

    #mv::before {
        top: 34.9rem;
        right: -11.4rem;
        width: 42.8rem;
        height: 28.03rem;
        background: url(../images/mv_pc_02.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    #mv::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 42.8rem;
        height: 26.7rem;
        background: url(../images/mv_bg_02.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .mv__container {
        padding-top: 5rem;
        padding-left: 2.4rem;
        height: 65.4rem;
    }

    .mv__text {
        font-weight: 700;
        color: #fff;
    }

    .mv__point {
        margin-left: .2rem;
        padding-right: .05rem;
        padding-bottom: .1rem;
        width: 19.7rem;
        height: 3rem;
        border-radius: 1.5rem;
        border: .126rem solid #FDF119;
        font-size: 1.6rem;
    }

    .mv__title {
        margin-top: 1.85rem;
        padding-left: .4rem;
        font-size: 3rem;
    }

    .mv__title-01 {
        font-size: 3.6rem;
        letter-spacing: .02028em;
    }

    .mv__title-02 {
        transform: translate(-.07rem, .1rem);
    }

    .mv__title-03 {
        margin-top: .65rem;
        letter-spacing: .024em;
    }

    .mv__title-04 {
        transform: translateX(-.35rem);
    }

    .mv__title-05 {
        margin-top: 1.3rem;
        font-size: 5.6rem;
        letter-spacing: .01625em;
    }

    .mv__lead {
        margin-top: 1.95rem;
        margin-left: .4rem;
        font-size: 2.2rem;
        line-height: 1.465;
    }

    .mv__lead::before,
    .mv__lead::after {
        height: .35rem;
    }

    .mv__lead::before {
        top: 2.8rem;
        width: 27.1rem;
    }

    .mv__lead::after {
        top: 6rem;
        width: 29.9rem;
    }
}


/* problem
------------------------------------------------------------*/
#problem {
    position: relative;
    background-color: #F3F5F5;
}

#problem::before,
#problem::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.problem__container {
    padding-top: 7.2rem;
    padding-bottom: 7.8rem;
    text-align: center;
}

#problem::before {
    left: 0;
    border-width: 10.4rem 0 0 64rem;
    border-color: transparent transparent transparent #fff;
}

#problem::after {
    right: 0;
    border-width: 0 0 10.4rem 64rem;
    border-color: transparent transparent #fff transparent;
}

.problem__lists {
    column-gap: 2rem;
    justify-content: center;
    margin-top: 5.8rem;
    margin-left: .2rem;
}

.problem__bubble {
    position: relative;
    padding-top: 1.7rem;
    width: 24.5rem;
    height: 7.5rem;
    border-radius: 3rem;
    background-color: #ddd;
    color: #333;
    line-height: 1.3;
}

.problem__bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: url(../images/icon_check_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.problem__bubble::after {
    content: "";
    position: absolute;
    bottom: -2.1rem;
    left: 50%;
    transform: translateX(-48%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.2rem 1.05rem 0 1.05rem;
    border-color: #DDDDDD transparent transparent transparent;
}

.problem__img01 {
    margin-left: .5rem;
    width: 23.5rem;
}

.problem__img02 {
    margin-top: 1.9rem;
    margin-left: 2.7rem;
    width: 19.2rem;
}

.problem__img03 {
    margin-top: 2.1rem;
    margin-left: 3.1rem;
    width: 19rem;
}

.problem__img04 {
    margin-top: 1.5rem;
    margin-left: 1.7rem;
    width: 21.1rem;
}

.problem__resolve {
    display: inline-block;
    margin-top: 2rem;
    padding-top: .05rem;
    width: 40.4rem;
    height: 5.1rem;
    font-size: 3.2rem;
    font-weight: 700;
    background-color: #2EA5E4;
    color: #fff;
    transition: all .8s ease;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.problem__resolve.js-appear {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}


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

    #problem::before,
    #problem::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .problem__container {
        padding: 5.05rem 3rem 6rem 3rem;
    }

    #problem::before {
        border-width: 7.25rem 0 0 21.4rem;
    }

    #problem::after {
        border-width: 0 0 7.25rem 21.4rem;
    }

    .problem__lists {
        margin-top: 3.05rem;
        margin-left: 0;
    }

    .problem__list:nth-of-type(2) {
        transform: translateY(-1.3rem);
    }

    .problem__list:nth-of-type(3) {
        transform: translateY(-2.8rem);
    }

    .problem__list:nth-of-type(4) {
        transform: translateY(-3.9rem);
    }

    .problem__bubble {
        padding-top: 1.2rem;
        width: 18.6rem;
        height: 5.7rem;
        border-radius: 2.27rem;
        font-size: 1.212rem;
        line-height: 1.3;
    }

    .problem__list:nth-of-type(even)>.problem__bubble {
        margin-left: auto;
    }

    .problem__bubble::before {
        width: 1.7rem;
        height: 1.7rem;
    }

    .problem__bubble::after {
        bottom: -1.6rem;
        transform: translateX(-49%);
        border-width: 1.9rem .9rem 0 .9rem;
    }

    .problem__resolve {
        margin-top: .8rem;
        padding-top: .2rem;
        width: 25rem;
        height: 3.3rem;
        font-size: 1.8rem;
    }
}



/* about
------------------------------------------------------------*/
.about__container {
    padding-top: 6.7rem;
    padding-bottom: .2rem;
}

.about__body {
    justify-content: center;
    column-gap: 9.1rem;
    margin-top: 1.1rem;
    margin-left: 1.9rem;
}


.about__image {
    width: 27.6rem;
}

.about__text-container {
    margin-top: 3rem;
    width: 44rem;
}

.about__point {
    padding-bottom: .2rem;
    padding-right: .1rem;
    width: 22rem;
    height: 3.8rem;
    border-radius: 1.9rem;
    border: solid 1px #2EA5E4;
    color: #2EA5E4;
}

.about__catch {
    margin-top: .75rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6;

}

.about__lead {
    font-size: 1.6rem;
    line-height: 1.62;
}

.about__lead-01 {
    margin-top: .75rem;
    width: 42rem;
}


@media screen and (max-width: 767px) {
    .about__container {
        padding-top: 5.05rem;
        padding-bottom: .2rem;
    }

    .about__title-en {
        margin-top: .15rem;
    }

    .about__body {
        margin-top: 2.75rem;
        margin-left: 0;
    }


    .about__text-container {
        margin-top: 0;
        width: auto;
        text-align: center;
    }

    .about__point {
        margin: 0 auto;
        padding-left: .05rem;
        padding-bottom: .1rem;
        width: 17rem;
        height: 2.94rem;
        border-radius: 14.7rem;
        border: solid .77px #2EA5E4;
        font-size: 1.236rem;
    }

    .about__catch {
        margin-top: .9rem;
        padding-left: .75rem;
        font-size: 2rem;
    }

    .about__image-sp {
        margin-top: 2.55rem;
        margin-left: 1rem;
        width: 21.15rem;
    }

    .about__lead {
        padding-left: 3.5rem;
        padding-right: 2rem;
        font-size: 1.4rem;
        line-height: 1.578;
        text-align: left;
    }

    .about__lead-01 {
        margin-top: 1.75rem;
        width: auto;
    }
}




/* feature
------------------------------------------------------------*/
#feature {
    overflow: hidden;
}

.feature__container {
    padding-top: 6.7rem;
    padding-bottom: 1.9rem;
}

.feature__title-en {
    margin-top: .5rem;
}

.feature__lists {
    margin-top: 10rem;
}

.feature__list {
    justify-content: center;
}

.feature__list01 {
    position: relative;
    column-gap: 2.3rem;
    margin-left: .7rem;
    padding-bottom: 3rem;
}

.feature__list01::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -5.6rem;
    left: -12rem;
    width: 150rem;
    height: 34.5rem;
    background-color: #E1F5FF;
    transform: skewY(-5.74deg);
    opacity: .7;
}

.feature__list02 {
    margin-top: 3.5rem;
    column-gap: 4.55rem;
    margin-left: 1rem;
    padding-bottom: 4rem;
}


.feature__list03 {
    position: relative;
    column-gap: 5.7rem;
    margin-top: 5.3rem;
    margin-right: 2.9rem;
    padding-bottom: 3rem;
}

.feature__list03::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -4.9rem;
    left: -12rem;
    width: 150rem;
    height: 34.5rem;
    background-color: #E1F5FF;
    transform: skewY(-5.74deg);
    opacity: .7;
}

.feature__list04 {
    column-gap: 6.95rem;
    margin-top: 3.75rem;
    margin-left: 8.35rem;
    padding-bottom: 5rem;
}


.feature__text-container01 {
    width: 38rem;
}


.feature__text-container02 {
    width: 43rem;
}

.feature__text-container03 {
    margin-top: 1.3rem;
    width: 35rem;
}

.feature__text-container04 {
    width: 46rem;
}

.feature__num {
    font-family: "Montserrat", serif;
    font-size: 11rem;
    font-weight: 300;
    color: #2EA5E4;
    line-height: 1;
}

.feature__catch {
    margin-top: .1rem;
    padding-left: 1.62rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2EA5E4;
}

.feature__catch02 {
    margin-top: .2rem;
    padding-left: 1.8rem;
}

.feature__catch03 {
    margin-top: .1rem;
    padding-left: 1.75rem;
    line-height: 1.4;
}

.feature__catch04 {
    margin-top: .1rem;
    padding-left: 2rem;
    line-height: .95;
}


.feature__lead {
    margin-top: 2.46rem;
    padding-left: 1.62rem;
    font-size: 2rem;
}

.feature__lead02 {
    margin-top: 2rem;
    padding-left: 1.8rem;
}

.feature__lead03 {
    margin-top: 2.4rem;
    padding-left: 1.75rem;
}

.feature__lead04 {
    margin-top: 2.45rem;
    padding-left: 2.02rem;
}

.feature__image01 {
    margin-top: 5.35rem;
    width: 33.6rem;
}

.feature__image02 {
    margin-top: 2.5rem;
    width: 39.067rem;
}

.feature__image03 {
    margin-top: 2.45rem;
    width: 30rem;
}

.feature__image04 {
    margin-top: 2.6rem;
    width: 31.1rem;
}



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

    .feature__container {
        padding-top: 5.15rem;
        padding-bottom: 1.9rem;
    }

    .feature__title-jp {
        line-height: 1.21;
    }

    .feature__title-en {
        margin-top: .5rem;
    }

    .feature__lists {
        margin-top: 10.2rem;
        padding-left: 3.9rem;
        padding-right: 5.85rem;
    }

    .feature__list {
        position: relative;
    }

    .feature__list01 {
        margin-left: .5rem;
        padding-bottom: 4rem;
    }

    .feature__list01::before {
        top: -5.1rem;
        left: -5rem;
        width: 50rem;
        height: 30.45rem;
        transform: skewY(-5.05deg);
    }

    .feature__list02 {
        margin-top: 4.5rem;
        margin-left: .8rem;
        padding-bottom: 4.5rem;
    }

    .feature__list03 {
        margin-top: 5.3rem;
        margin-right: 0;
        padding-bottom: 4rem;
    }

    .feature__list03::before {
        top: -4.35rem;
        left: -5rem;
        width: 50rem;
        height: 29.2rem;
        transform: skewY(-4.83deg);
    }


    .feature__list04 {
        margin-top: 4.7rem;
        margin-left: 0;
        padding-bottom: 5rem;
    }


    .feature__text-container01,
    .feature__text-container02,
    .feature__text-container03,
    .feature__text-container04 {
        width: auto;
    }

    .feature__num {
        font-size: 8.8rem;
    }

    .feature__num02 {
        text-align: right;
    }

    .feature__num04 {
        text-align: right;
    }

    .feature__catch {
        margin-top: .5rem;
        padding-left: .5rem;
        font-size: 2rem;
        line-height: 1;
    }

    .feature__catch02 {
        margin-top: .25rem;
        padding-left: .6rem;
    }

    .feature__catch03 {
        margin-top: .2rem;
        padding-left: .5rem;
    }

    .feature__catch04 {
        margin-top: .3rem;
        padding-left: 0;
        white-space: nowrap;
    }

    .feature__lead {
        margin-top: 2.4rem;
        padding-left: .5rem;
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .feature__lead02 {
        margin-top: 2.25rem;
        padding-left: .6rem;
    }

    .feature__lead03 {
        margin-top: 2.4rem;
        padding-left: .5rem;
    }

    .feature__lead04 {
        margin-top: 2.25rem;
        padding-left: 0;
    }

    .feature__image01 {
        position: absolute;
        top: -.73rem;
        right: -1.85rem;
        margin-top: 0;
        width: 17.8rem;
    }

    .feature__image02 {
        position: absolute;
        top: -5.2rem;
        left: .9rem;
        margin-top: 0;
        width: 17.5rem;
    }

    .feature__image03 {
        position: absolute;
        top: -5.55rem;
        right: -1.4rem;
        margin-top: 0;
        width: 14.8rem;
    }

    .feature__image04 {
        position: absolute;
        top: -3.8rem;
        left: 2.1rem;
        margin-top: 0;
        width: 13.15rem;
    }
}



/* function
------------------------------------------------------------*/

.function__container {
    padding: 6.7rem 10.5rem 7.45rem 10.5rem;
    text-align: center;
}

.function__title-en {
    margin-top: .5rem;
}

.function__catch {
    margin-top: 2.3rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.function__lists {
    margin-top: 5.3rem;
}

.function__list {
    position: relative;
    width: 35rem;
    text-align: center;
}

.function__list01::before,
.function__list02::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    width: 1px;
    height: 32.7rem;
    background-color: #929292;
}

.function__list01::before {
    right: -1rem;
}

.function__list02::before {
    right: -.2rem;
}

.function__list03 {
    padding-right: 1.6rem;
}

.function__name {
    position: relative;
    padding-bottom: 16.3rem;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2EA5E4;
}

.function__name::before {
    content: "";
    position: absolute;
    left: 50%;
}

.function__name01::before {
    top: 8.7rem;
    transform: translateX(-47.3%);
    width: 11.2rem;
    height: 10.9rem;
    background: url(../images/icon_message_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.function__name02::before {
    top: 8.5rem;
    transform: translateX(-50.4%);
    width: 11.1rem;
    height: 11.1rem;
    background: url(../images/icon_analyze_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.function__name03::before {
    top: 9.5rem;
    transform: translateX(-42.9%);
    width: 10.267rem;
    height: 8.967rem;
    background: url(../images/icon_template_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.function__disciption {
    padding-left: 3.9rem;
    padding-right: 3.9rem;
    line-height: 1.18;
}

.function__disciption03 {
    padding-left: 3.1rem;
    padding-right: 3.1rem;
}



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

    .function__container {
        padding: 2.95rem 3rem 2.5rem 3rem;
    }

    .function__title-en {
        margin-top: .15rem;
    }

    .function__catch {
        margin-top: 1.55rem;
        font-size: 1.2rem;
    }

    .function__lists {
        margin-top: 2.95rem;
    }

    .function__list {
        position: relative;
        width: auto;
        text-align: center;
    }

    .function__list01 {
        padding-bottom: 3rem;

    }

    .function__list02 {
        padding-top: 2.95rem;
        padding-bottom: 2.95rem;
    }

    .function__list03 {
        padding-top: 2.75rem;
        padding-bottom: 2.95rem;
        padding-right: 0;
    }

    .function__list01::before,
    .function__list02::before {
        top: initial;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 1px;
    }

    .function__name {
        padding-bottom: 10.75rem;
        font-size: 2rem;
    }

    .function__name::before {
        content: "";
        position: absolute;
        left: 50%;
    }

    .function__name01::before {
        top: 6.5rem;
        transform: translateX(-47.3%);
        width: 8.4rem;
        height: 8.5rem;
    }

    .function__name02 {
        padding-bottom: 10.85rem;
    }

    .function__name02::before {
        top: 6.25rem;
        width: 8.5rem;
        height: 8.5rem;
    }

    .function__name03 {
        padding-bottom: 10.85rem;
    }

    .function__name03::before {
        top: 6.25rem;
        transform: translateX(-49%);
        width: 7.95rem;
        height: 7.95rem;
    }

    .function__disciption {
        padding-left: 5.9rem;
        padding-right: 5.8rem;
        font-size: 1.2rem;
        line-height: 1.17;
    }

    .function__disciption02 {
        padding-left: 5.85rem;
        padding-right: 5.7rem;
    }

    .function__disciption03 {
        padding-left: 5.85rem;
        padding-right: 5.75rem;
    }
}



/* price
------------------------------------------------------------*/

.price__container {
    padding-top: 6.7rem;
    padding-bottom: 6.45rem;
    text-align: center;
}

.price__title-en {
    margin-top: .5rem;
}

.subsciption {
    position: relative;
    margin-top: 3.9rem;
    height: 32.9rem;
    background: linear-gradient(99deg, #2EA5E4 0%, #41AEE7 51%, #c3e7fa 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.subsciption::before {
    content: "";
    position: absolute;
    top: 0;
    left: -.5rem;
    width: 20.7rem;
    height: 8.1rem;
    background: url(../images/subscription_bg_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.subsciption::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -.1rem;
    width: 22.2rem;
    height: 10.9rem;
    background: url(../images/subscription_bg_02.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.subsciption__container {
    padding-top: 4.6rem;
}

.subsciption__title {
    line-height: 1.25;
}

.subsciption__title-01 {
    position: relative;
    display: inline-block;
    padding-right: 1.5rem;
    width: 43rem;
    font-size: 2.3rem;
    font-weight: 700;
}

.subsciption__title-01::before,
.subsciption__title-01::after {
    content: "";
    position: absolute;
    top: .3rem;
    width: .2rem;
    height: 2.4rem;
    background-color: #fff;
}

.subsciption__title-01::before {
    left: -.7rem;
    transform: rotate(-14.5deg);
}

.subsciption__title-01::after {
    right: 1.1rem;
    transform: rotate(14.5deg);
}

.subsciption__title-02 {
    display: block;
    margin-top: 1.2rem;
    padding-right: 1.5rem;
    font-size: 6.8rem;
    font-weight: 900;
    color: #FDF119;
}

.subsciption__title-02-01,
.subsciption__title-02-02 {
    font-size: 4.7rem;
}

.subsciption__title-02-01 {
    margin-right: .2rem;
}

.subsciption__title-02-02 {
    margin-left: .6rem;
}

.subsciption__text01 {
    position: absolute;
    top: 7.7rem;
    left: 87rem;
    transform: rotate(8.7deg);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.subsciption__text01::before {
    content: "";
    position: absolute;
    top: -5.3rem;
    left: -3.75rem;
    transform: rotate(-8.5deg);
    width: 14.53rem;
    height: 14.53rem;
    background: url(../images/icon_bubble_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.subsciption__text02 {
    position: absolute;
    font-size: 2.3rem;
    top: 16.3rem;
    left: 34.5rem;
    transform: rotate(-11.5deg);
    font-weight: 700;
}

.subsciption__text03 {
    position: relative;
    margin-top: 1.8rem;
    padding-right: .2rem;
    font-size: 3.1rem;
}

.subsciption__text03::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50.1%);
    width: 45.3rem;
    height: .4rem;
    background-color: #FDF119;
}

.subsciption__text04 {
    margin-top: 1.8rem;
    padding-right: .2rem;
    font-size: 2.3rem;
}

.subsciption__text04-01 {
    font-weight: 700;
    color: #FDF335;
}


.price__button01 {
    position: relative;
    margin: 4.2rem auto 4.1rem;
    padding-bottom: .2rem;
    padding-left: .15rem;
    width: 48.8rem;
    height: 7rem;
    border-radius: 3.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: .045em;
    box-shadow: 0 .4rem .4rem rgba(0, 0, 0, .25);
}

.price__button01::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    right: 2.1rem;
    width: 2.4rem;
    height: 4.8rem;
    background: url(../images/icon_arrow-right_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.price__button01:hover::before {
    background: url(../images/icon_arrow-right_03.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.price-table__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.price__table-body {
    justify-content: center;
    align-items: flex-end;
    margin-top: 4.05rem;

}

.price-table__header-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20.5rem;
    height: 7.55rem;
    font-size: 2rem;
    line-height: 1.2;
}

.price-table__header-cell-01 {
    font-size: 1.8rem;
}

.price-table__header-cell:nth-of-type(odd) {
    background-color: #ddd;
}

.price-table__header-cell:nth-of-type(even) {
    background-color: #f0f0f0;
}

.price-table__chatease {
    width: 22.337rem;
}

.price-table__chatease-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: .4rem;
    height: 9.434rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    background-color: #2EA5E4;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}

.price-table__chatease-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7.55rem;
    border-right: .3rem solid #2EA5E4;
    border-left: .3rem solid #2EA5E4;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2EA5E4;
}

.price-table__chatease-cell-01 {
    font-size: 2.8rem;
}

.price-table__chatease-cell:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -.05rem;
    left: 50%;
    transform: translate(-50%);
    width: 19.2rem;
    height: 1px;
    background-color: #2EA5E4;
}

.price-table__chatease-cell:last-child {
    border-bottom: .3rem solid #2EA5E4;
}

.price-table__other {
    width: 20.4rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.price-table__other-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: .4rem;
    height: 7.3rem;
    border-top-left-radius: 2.7rem;
    border-top-right-radius: 2.7rem;
    background-color: #929292;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}

.price-table__other-header-01 {
    width: 20.2rem;
}

.price-table__other-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7.55rem;
    border-right: .2rem solid #929292;
    font-size: 2rem;
}

.price-table__other-cell-01 {
    font-size: 2.4rem;
}

.price-table__other-cell:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -.05rem;
    left: 50%;
    transform: translate(-50%);
    width: 17.7rem;
    height: 1px;
    background-color: #929292;
}

/* .price-table__other-cell:nth-of-type(2) {
    border-top: .2rem solid #929292;
} */

.price-table__other-cell:last-child {
    border-bottom: .2rem solid #929292;
}

.price-table__month01 {
    margin-top: 1rem;
    font-size: 2rem;
}

.price-table__month02 {
    margin-top: .6rem;
    font-size: 2rem;
}




@media screen and (max-width: 767px) {
    #price {
        overflow: hidden;
    }

    .price__container {
        padding-top: 3.5rem;
        padding-bottom: 6rem;
    }

    .price__title-en {
        margin-top: .15rem;
    }

    .subsciption {
        margin-top: 2.35rem;
        height: 33.4rem;
        background: linear-gradient(95deg, #2EA5E4 0%, #41AEE7 54%, #c3e7fb 100%);
    }

    .subsciption::before {
        top: 0;
        left: 0;
        width: 14.7rem;
        height: 6.1rem;
        background: url(../images/subscription_bg-sp_01.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .subsciption::after {
        bottom: 0;
        right: 0;
        width: 14.7rem;
        height: 6.8rem;
        background: url(../images/subscription_bg-sp_02.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .subsciption__container {
        padding-top: 6.55rem;
    }

    .subsciption__title {
        line-height: 1.25;
    }

    .subsciption__title-01 {
        padding-right: 0;
        width: 30rem;
        font-size: 1.6rem;
    }

    .subsciption__title-01::before,
    .subsciption__title-01::after {
        top: .4rem;
        width: .15rem;
        height: 1.6rem;
    }

    .subsciption__title-01::before {
        left: .9rem;
        transform: rotate(-14deg);
    }

    .subsciption__title-01::after {
        right: .9rem;
        transform: rotate(14deg);
    }

    .subsciption__title-02 {
        margin-top: .55rem;
        padding-right: 0;
        font-size: 4.613rem;
    }

    .subsciption__title-02-01,
    .subsciption__title-02-02 {
        font-size: 3.5rem;
    }

    .subsciption__title-02-01 {
        margin-right: .2rem;
    }

    .subsciption__title-02-02 {
        margin-left: .3rem;
    }

    .subsciption__text01 {
        top: 9.25rem;
        left: 36.45rem;
        transform: rotate(8.5deg);
        font-size: 1.05rem;
        line-height: 1.22;
    }

    .subsciption__text01::before {
        top: -3.55rem;
        left: -2.45rem;
        width: 9.5rem;
        height: 9.5rem;
    }

    .subsciption__text02 {
        top: 16.45rem;
        left: 18rem;
        transform: rotate(-4.4deg);
        font-size: 1.73rem;
    }

    .subsciption__text03 {
        margin-top: 4.65rem;
        padding-right: .1rem;
        font-size: 2.4rem;
    }

    .subsciption__text03::before {
        bottom: .13rem;
        width: 33.85rem;
        height: .288rem;
    }

    .subsciption__text04 {
        margin-top: 1.15rem;
        padding-left: .1rem;
        padding-right: 0;
        font-size: 1.6rem;
    }


    .price__button01 {
        margin: 4rem auto 3.95rem;
        padding-bottom: .25rem;
        padding-left: .2rem;
        width: 30.3rem;
        height: 4.346rem;
        border-radius: 2.17rem;
        font-size: 1.987rem;
        letter-spacing: .0448em;
        box-shadow: 0 .248rem .248rem rgba(0, 0, 0, .25);
    }

    .price__button01::before {
        top: .7rem;
        right: 1.35rem;
        width: 1.5rem;
        height: 3rem;
    }

    .price__button01:hover::before {
        background: url(../images/icon_arrow-right_03.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .price-table__title {
        padding-left: .2rem;
        font-size: 1.6rem;
        line-height: 1.31;
    }

    .price__table-wrapper {
        margin-left: 2.2rem;
        overflow-x: scroll;
    }

    .price__table-body {
        position: relative;
        justify-content: flex-start;
        margin-top: 3.2rem;
        padding-bottom: 2rem;
        width: 72.5rem;
    }

    .price-table__scroll {
        position: absolute;
        top: 18.5rem;
        left: 31rem;
        padding-top: 3rem;
        width: 5.5rem;
        height: 5.5rem;
        border-radius: .8rem;
        background-color: #2EA5E4;
        font-size: 1.3rem;
        color: #fff;
        opacity: .6;
        cursor: pointer;
        transition: all .3s;
        animation: scroll-button 5s infinite;
    }


    @keyframes scroll-button {
        0% {
            transform: rotate(0);
        }

        3% {
            transform: rotate(1deg)
        }

        6% {
            transform: rotate(-1deg)
        }

        9% {
            transform: rotate(1deg)
        }

        12% {
            transform: rotate(-1deg)
        }

        15% {
            transform: rotate(1deg)
        }

        18% {
            transform: rotate(0)
        }

        100% {
            transform: rotate(0);
        }
    }

    .price-table__scroll.js-fadeout {
        opacity: 0;
        visibility: hidden;
    }

    .price-table__scroll::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-45%, -75%) scaleX(1.15);
        width: 2.6rem;
        height: 2.6rem;
        background: url(../images/icon_arrow-right_05.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .price-table__header-cell {
        width: 13.75rem;
        height: 5.05rem;
        font-size: 1.342rem;
    }

    .price-table__header-cell-01 {
        font-size: 1.21rem;
    }

    .price-table__chatease {
        width: 14.987rem;
    }

    .price-table__chatease-header {
        padding-bottom: .2rem;
        height: 6.4rem;
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        font-size: 2.15rem;
    }

    .price-table__chatease-cell {
        height: 5.05rem;
        border-right: .2rem solid #2EA5E4;
        border-left: .2rem solid #2EA5E4;
        font-size: 1.61rem;
    }

    .price-table__chatease-cell:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: -.05rem;
        left: 50%;
        transform: translate(-50%);
        width: 12.88rem;
        height: .67px;
        background-color: #2EA5E4;
    }

    .price-table__chatease-cell-01 {
        font-size: 1.88rem;
    }

    .price-table__chatease-cell:last-child {
        border-bottom: .2rem solid #2EA5E4;
    }

    .price-table__other {
        width: 13.82rem;
    }

    .price-table__other-header {
        position: relative;
        padding-bottom: .2rem;
        height: 5rem;
        border-top-left-radius: 1.7rem;
        border-top-right-radius: 1.7rem;
        font-size: 2.15rem;
    }

    .price-table__other-header-01 {
        width: 13.72rem;
    }


    .price-table__other-cell {
        height: 5.05rem;
        border-right: .1rem solid #929292;
        font-size: 1.34rem;
    }

    .price-table__other-cell-01 {
        font-size: 1.61rem;
    }

    .price-table__other-cell:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: -.05rem;
        left: 50%;
        transform: translate(-50%);
        width: 11.875rem;
        height: .67px;
        background-color: #929292;
    }

    .price-table__other-cell:last-child {
        border-bottom: .1rem solid #929292;
    }

    .price-table__month01 {
        margin-top: 1rem;
        font-size: 1.34rem;
    }

    .price-table__month02 {
        margin-top: .6rem;
        font-size: 1.34rem;
    }
}



/* flow
------------------------------------------------------------*/


#flow {
    background-color: #E1F5FF;
}

.flow__container {
    padding-top: 5.95rem;
    padding-bottom: 6.5rem;
    text-align: center;
}

.flow__title-en {
    margin-top: .5rem;
}

.flow__text01 {
    margin-top: 1.75rem;
    font-size: 2.4rem;
}

.flow__step-container {
    position: relative;
    column-gap: 12.4rem;
    margin-top: 3.45rem;
    padding-left: .15rem;
}

.flow__step-container::before {
    content: "";
    position: absolute;
    top: 12.8rem;
    left: 50%;
    transform: translateX(-33.5%);
    width: 4.167rem;
    height: 4.8rem;
    background: url(../images/icon_triangle_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


.flow__step {
    position: relative;
    padding-top: 2.25em;
    width: 30.9rem;
    height: 30.9rem;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #2EA5E4;
    font-weight: 700;
    color: #2EA5E4;
}

.flow__step01::before {
    content: "";
    position: absolute;
    top: 15.1rem;
    left: 50%;
    transform: translateX(-49.5%);
    width: 11.6rem;
    height: 11.6rem;
    background: url(../images/icon_account_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__step02::before {
    content: "";
    position: absolute;
    top: 16rem;
    left: 50%;
    transform: translateX(-54.7%);
    width: 9.6rem;
    height: 9.9rem;
    background: url(../images/icon_login_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__step-text01 {
    font-size: 3.6rem;
    font-weight: 700;
}

.flow__step-text02 {
    margin-top: .35rem;
    font-size: 2.4rem;
    line-height: 1.2;
}

.flow__button01 {
    position: relative;
    margin: 4.5rem auto 3.8rem;
    padding-bottom: .1rem;
    padding-left: .15rem;
    width: 51.5rem;
    height: 7.8rem;
    border-radius: 3.95rem;
    font-size: 3.1rem;
    font-weight: 700;
    letter-spacing: .045em;
    box-shadow: 0 .4rem .4rem rgba(0, 0, 0, .25);
}

.flow__button01::before {
    content: "";
    position: absolute;
    top: 1.55rem;
    right: 1.9rem;
    width: 2.4rem;
    height: 4.8rem;
    background: url(../images/icon_arrow-right_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__button01:hover::before {
    background: url(../images/icon_arrow-right_03.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__button02 {
    position: relative;
    margin: 0 auto;
    padding-bottom: .2rem;
    width: 32.5rem;
    height: 6.3rem;
    border-radius: 3.15rem;
    font-size: 2.4rem;
    font-weight: 400;
}

.flow__button02::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 2.167rem;
    background: url(../images/icon_arrow-right_02.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__button02:hover::before {
    background: url(../images/icon_arrow-right_04.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



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

    .flow__container {
        padding-top: 4.55rem;
        padding-bottom: 5.05rem;
        text-align: center;
    }

    .flow__title-en {
        margin-top: .15rem;
    }

    .flow__text01 {
        margin-top: 1.55rem;
        font-size: 1.6rem;
    }

    .flow__step-container {
        margin-top: 2.8rem;
        padding-left: 0;
    }

    .flow__step-container::before {
        top: 22.15rem;
        transform: translateX(-49.5%) rotate(90deg);
        width: 2.75rem;
        height: 3.3rem;
    }


    .flow__step {
        margin: 0 auto;
        padding-top: 1.45em;
        width: 20.6rem;
        height: 20.6rem;
    }

    .flow__step01::before {
        top: 10.05rem;
        transform: translateX(-49.7%);
        width: 7.7rem;
        height: 7.7rem;
    }

    .flow__step02 {
        margin-top: 5.6rem;
    }

    .flow__step02::before {
        top: 10.65rem;
        width: 6.6rem;
        height: 6.6rem;
    }

    .flow__step-text01 {
        padding-right: .15rem;
        font-size: 2.4rem;
        letter-spacing: .017em;
    }

    .flow__step-text02 {
        margin-top: .3rem;
        font-size: 1.6rem;
        line-height: 1.19;
    }

    .flow__button01 {
        margin: 3.1rem auto 2.2rem;
        padding-bottom: 0;
        padding-left: .1rem;
        width: 32.7rem;
        height: 4.75rem;
        border-radius: 2.875rem;
        font-size: 1.92rem;
        box-shadow: 0 .24rem .24rem rgba(0, 0, 0, .25);
    }

    .flow__button01::before {
        top: .95rem;
        right: 1.3rem;
        width: 1.45rem;
        height: 2.9rem;
    }

    .flow__button01:hover::before {
        background: url(../images/icon_arrow-right_03.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .flow__button02 {
        padding-bottom: .05rem;
        width: 21.5rem;
        height: 4.3rem;
        border-radius: 2.15rem;
        font-size: 1.5rem;
        box-shadow: 0 .12rem .24rem rgba(0, 0, 0, .25);
    }

    .flow__button02::before {
        right: 1.4rem;
        width: .75rem;
        height: 1.5rem;
    }

    .flow__button02:hover::before {
        background: url(../images/icon_arrow-right_04.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}


/* achievements
------------------------------------------------------------*/

#achievements {
    overflow: hidden;
}

.achievements___container {
    padding-top: 5.9rem;
    padding-bottom: 8.9rem;
}

.achievements__title-en {
    margin-top: .5rem;
}

.achievements__swiper {
    margin-top: 4.05rem;
    padding-bottom: 1rem;
    transform: translateX(-.6rem);
    width: 131.4rem;
}

.achievements__swiper__prev,
.achievements__swiper__next {
    position: absolute;
    z-index: 10;
    top: 21.4rem;
    width: 5.7rem;
    height: 5.7rem;
    border-radius: 50%;
    background-color: #2EA5E4;
}

.achievements__swiper__prev {
    left: 39rem;
}

.achievements__swiper__next {
    right: 40.9rem;
}

.achievements__swiper__prev::before,
.achievements__swiper__next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.333rem;
    height: 2.367rem;
    background: url(../images/icon_slide-arrow_01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.achievements__swiper__prev::before {
    transform: translate(-60.5%, -48.5%) scale(-1);
}

.achievements__swiper__next::before {
    transform: translate(-39.5%, -48.5%);
}

.achievements__slide {
    margin-right: 1.8rem;
    padding: 3.55rem 4rem 0 5.1rem;
    width: 42rem !important;
    height: 50.9rem;
    border-radius: 1.9rem;
    background-color: #fff;
    border: .2rem solid #2EA5E4;
    box-shadow: .4rem .4rem .4rem rgba(0, 0, 0, .25);
    box-sizing: border-box;
}

.achievements__slide-icon {
    margin-top: .25rem;
    margin-right: 1.1rem;
    width: 7.7rem;
}

.achievements__slide-name {
    font-size: 2.4rem;
    font-weight: 700;
}

.achievements__slide-follower {
    margin-top: .35rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
}

.achievements__slide-text01 {
    margin-top: 1.9rem;
    width: 31.5rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.achievements__slide-text02 {
    margin-top: .45rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2EA5E4;
    white-space: nowrap;
}

.achievements__slide-text02-01 {
    margin-left: .1rem;
    font-size: 3.6rem;
}





@media screen and (max-width: 767px) {
    .achievements___container {
        padding-top: 5rem;
        padding-bottom: 7.7rem;
    }

    .achievements__title-en {
        margin-top: .5rem;
    }

    .achievements__swiper {
        margin-top: 5.7rem;
        padding-bottom: 1rem;
        transform: translateX(-36rem);
        width: 116.478rem;
    }

    .achievements__swiper__prev,
    .achievements__swiper__next {
        top: 21.1rem;
        width: 4.358rem;
        height: 4.358rem;
    }

    .achievements__swiper__prev {
        left: 36.1rem;
    }

    .achievements__swiper__next {
        right: 37.73rem;
    }

    .achievements__swiper__prev::before,
    .achievements__swiper__next::before {
        width: 1.1rem;
        height: 1.8rem;
    }

    .achievements__swiper__prev::before {
        transform: translate(-60%, -47%) scale(-1);
    }

    .achievements__swiper__next::before {
        transform: translate(-39%, -47%);
    }

    .achievements__slide {
        margin-right: 1.59rem;
        padding: 3.2rem 4rem 0 4rem;
        width: 37.25rem !important;
        height: 46.6rem;
        border-radius: 1.74rem;
        box-shadow: .366rem .366rem .366rem rgba(0, 0, 0, .25);
    }

    .achievements__slide-icon {
        margin-top: .25rem;
        margin-right: 1.05rem;
        width: 7.05rem;
    }

    .achievements__slide-name {
        margin-top: .05rem;
        font-size: 2.2rem;
    }

    .achievements__slide-follower {
        margin-top: .3rem;
        font-size: 1.28rem;
    }

    .achievements__slide-text01 {
        margin-top: 1.85rem;
        width: 28.9rem;
        font-size: 1.465rem;
    }

    .achievements__slide-text02 {
        margin-top: .35rem;
        font-size: 2.2rem;
    }

    .achievements__slide-text02-01 {
        margin-left: .1rem;
        font-size: 3.3rem;
    }
}


/* faq
------------------------------------------------------------*/
#faq {
    background-color: #E1F5FF;
}

.faq__container {
    padding-top: 5.9rem;
    padding-bottom: 8.95rem;
}

.faq__title-en {
    margin-top: .55rem;
}

.faq__body {
    margin: 3.9rem auto 3rem;
    width: 104rem;
}

.faq__queston {
    position: relative;
    align-items: center;
    padding: .85rem 0 1.5rem 2.8rem;
    background-color: #fff;
    cursor: pointer;
}

.faq__queston:not(:first-child) {
    margin-top: 2rem;
}

.faq__queston::before {
    content: "";
    position: absolute;
    top: 2.3rem;
    right: 2.8rem;
    width: 2.5rem;
    height: 1.4rem;
    transform: scaleY(-1);
    background: url(../images/icon_arrow-up_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
}

.faq__queston.js-active::before {
    transform: scaleY(-1) rotateX(180deg);
}

.faq__q {
    margin-right: 1.7rem;
    font-family: "Zen Old Mincho", serif;
    font-size: 3.6rem;
    color: #2EA5E4;
    line-height: 1;
}

.faq__q-text {
    margin-top: .65rem;
    font-size: 2rem;
}

.faq__answer {
    display: none;
    margin-top: .1rem;
    padding: 1.95rem 7.8rem 2.04rem 8rem;
    background-color: #fff;
    font-size: 2rem;
    line-height: 1.2;
}



@media screen and (max-width: 767px) {
    .faq__container {
        padding-top: 4.55rem;
        padding-bottom: 2rem;
    }

    .faq__title-en {
        margin-top: .7rem;
    }

    .faq__body {
        margin: 2rem auto 3rem;
        width: 36.6rem;
    }

    .faq__queston {
        align-items: flex-start;
        padding: 1.15rem 6rem 1.25rem 1.6rem;
    }

    .faq__queston:not(:first-child) {
        margin-top: 1.1rem;
    }

    .faq__queston::before {
        top: 41.3%;
        right: 1.5rem;
        width: 2rem;
        height: 1.3rem;
    }

    .faq__q {
        margin-right: 1.65rem;
        font-size: 2.4rem;
    }

    .faq__q-text {
        margin-top: .35rem;
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .faq__answer {
        margin-top: .1rem;
        padding: 1.85rem 4.5rem 1.95rem;
        font-size: 1.6rem;
        line-height: 1.19;
    }
}



/* footer
------------------------------------------------------------*/

#footer {
    background-color: #2EA5E4;
}

.footer__container {
    padding-top: 3.6rem;
    padding-bottom: 1.6rem;
    color: #fff;
}

.footter__button {
    margin-right: 5.2rem;
    column-gap: 2.2rem;
}

.footer__button01 {
    position: relative;
    margin-top: .1rem;
    padding-left: .1rem;
    padding-bottom: .2rem;
    width: 33.2rem;
    height: 5.7rem;
    border-radius: 2.8425rem;
    font-size: 2.314rem;
    letter-spacing: .045em;
}

.footer__button01::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-51%);
    width: 1.7rem;
    height: 3.4rem;
    background: url(../images/icon_arrow-right_01.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__button01:hover::before {
    background: url(../images/icon_arrow-right_03.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__button02 {
    position: relative;
    padding-left: .15rem;
    padding-bottom: .05rem;
    width: 25.794rem;
    height: 5rem;
    border-radius: 2.5rem;
    font-size: 1.905rem;
    font-weight: 400;
}

.footer__button02::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.95rem;
    transform: translateY(-49%);
    width: .95rem;
    height: 2.16rem;
    background: url(../images/icon_arrow-right_02.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__button02:hover:before {
    background: url(../images/icon_arrow-right_04.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__nav {
    column-gap: 2.8rem;
    margin-top: 3.3rem;
    padding-right: .1rem;
}

.footer__link {
    position: relative;
    color: #fff;
}

.footer__link::before {
    content: "";
    position: absolute;
    bottom: -.3rem;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: .1rem;
    background-color: #FDF119;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s;
    transition: transform .3s cubic-bezier(.73, 0, .26, 1);

}

.footer__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.footer__copyright {
    margin-top: 3rem;
    font-size: 1.2rem;
    text-align: center;
}


@media screen and (max-width: 767px) {
    .footer__container {
        padding-top: 2.2rem;
        padding-bottom: 7.45rem;
    }

    .footter__button {
        align-items: center;
        margin-right: 0;
        row-gap: .75rem;
    }

    .footer__button01 {
        position: relative;
        margin-top: .1rem;
        padding-left: 0;
        padding-right: .05rem;
        padding-bottom: 0;
        width: 24.2rem;
        height: 4.144rem;
        border-radius: 2.07rem;
        font-size: 1.687rem;
    }

    .footer__button01::before {
        right: 1.1rem;
        transform: translateY(-50%);
        width: 1.25rem;
        height: 2.5rem;
    }

    .footer__button02 {
        padding-top: .1rem;
        padding-left: .1rem;
        width: 21.466rem;
        height: 4.161rem;
        border-radius: 2.08rem;
        font-size: 1.585rem;
    }

    .footer__button02::before {
        right: 1.6rem;
        transform: translateY(-50%);
        width: .8rem;
        height: 1.6rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 1.8rem;
        row-gap: 1.5rem;
        margin-top: 1.9rem;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .footer__nav-list:last-child {
        margin-right: 1.4rem;
    }

    .footer__link {
        font-size: 1.4rem;
        color: #fff;
    }

    .footer__copyright {
        margin-top: 3.05rem;
        font-size: 1rem;
    }
}






/* Tearms ( Terms and Condtions  /  Privacy Policy )
------------------------------------------------------------*/
.terms__container {
    margin: 0 auto;
    width: 100rem;
}

.terms__logo {
    display: block;
    margin: 5.5rem auto 4rem;
    width: 12rem;
    height: 7rem;
}

.terms__logo-img {
    width: 100%;
}

.terms__title {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem 0 3rem 2rem;
    border-bottom: 1px solid #ccc;
    font-size: 3rem;
}

.terms__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-68%);
    width: .8rem;
    height: 4rem;
    background-color: #2EA5E4;
}

.preamble__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #ccc;
    line-break: strict;
    text-align: justify;
}

.preamble {
    font-size: 1.6rem;
}

.preamble__text02 {
    margin-top: 1.6rem;
}

.terms__section-container {
    padding-top: 4rem;
    padding-bottom: 5rem;
    line-break: strict;
    border-bottom: 1px solid #ccc;
    text-align: justify;
}

.terms__section-title {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: #2EA5E4;
}

.terms__text {
    margin-top: 2rem;
    padding-left: 1.6rem;
    font-size: 1.6rem;
}

.terms__provistions-num {
    margin-right: 1.5rem;
}

.terms__provistions-num03 {
    padding-left: .7rem;
    width: 1.8rem;
}

.terms__provistions-preriod {
    margin-right: 1.2rem;
}

.terms__provistions01 {
    margin-top: 2rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    font-size: 1.6rem;
}

.terms__provistions02 {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 1.6rem;
}

.terms__provistions03:first-child {
    margin-top: 3.5rem;
}

.terms__provistions03:not(:first-child) {
    margin-top: .5rem;
}

.terms__provistions03:last-child {
    margin-bottom: 3rem;
}

.terms__provistions-num-double {
    width: 4.5%;
    white-space: nowrap;
}

.terms__provistions-text-double {
    width: 95.5%;
}

.terms__date-container {
    padding-top: 6rem;
    padding-bottom: 12rem;
    text-align: right;
}

.terms__date {
    margin-bottom: .2rem;
    font-size: 1.6rem;
}

.terms__contact {
    margin-top: 2rem;
    padding-left: 2.1rem;
    font-size: 1.6rem;
}

.terms__contact-list {
    margin-top: .2rem;
}

.terms__contact-term {
    margin-right: .5rem;
    width: 9rem;
}

.terms__privacy-end {
    padding-top: 6rem;
    padding-bottom: 12rem;
}

.terms__privacy-end-text {
    padding-left: .5rem;
    font-size: 1.7rem;
}


@media screen and (min-width: 768px) and (max-width: 1023px) {

    .terms__logo {
        margin: 5.5rem auto 3.5rem;
        width: 14.4rem;
        height: 8.4rem;
    }

    .terms__title {
        margin-top: 2.4rem;
        padding: 1.8rem 0 3.6rem 2.4rem;
        font-size: 3.6rem;
    }

    .terms__title::before {
        width: .8rem;
        height: 4.8rem;
    }

    .preamble__container {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .preamble {
        font-size: 1.9rem;
    }

    .preamble__text02 {
        margin-top: 1.9rem;
    }

    .terms__section-container {
        padding-top: 4.8rem;
        padding-bottom: 6rem;
    }

    .terms__section-title {
        margin-bottom: 3rem;
        font-size: 2.6rem;
    }

    .terms__text {
        margin-top: 2.4rem;
        padding-left: 1.9rem;
        font-size: 1.9rem;
    }

    .terms__provistions-num {
        margin-right: 1.8rem;
    }

    .terms__provistions-num03 {
        padding-left: .7rem;
        width: 2rem;
    }

    .terms__provistions-preriod {
        margin-right: 1.6rem;
    }

    .terms__provistions01 {
        margin-top: 2.4rem;
        padding-left: 1.9rem;
        padding-right: 1.9rem;
        font-size: 1.9rem;
    }

    .terms__provistions02 {
        margin-top: 2.4rem;
        padding-right: 1.9rem;
    }

    .terms__provistions03:first-child {
        margin-top: 4rem;
    }

    .terms__provistions03:not(:first-child) {
        margin-top: .6rem;
    }

    .terms__provistions03:last-child {
        margin-bottom: 3.5rem;
    }

    .terms__date {
        margin-bottom: .2rem;
        font-size: 1.9rem;
    }

    .terms__contact {
        margin-top: 2.4rem;
        padding-left: 2.5rem;
        font-size: 1.9rem;
    }

    .terms__contact-list {
        margin-top: .3rem;
    }

    .terms__contact-term {
        width: 10.5rem;
    }

    .terms__privacy-end-text {
        padding-left: .6rem;
        font-size: 2rem;
    }

}

@media screen and (max-width: 767px) {
    .terms__container {
        width: 36rem;
    }

    .terms__logo {
        margin: 4rem auto 3rem;
        width: 10rem;
        height: 6rem;
    }

    .terms__title {
        padding: 1rem 0 3rem 1.5rem;
        font-size: 2rem;
    }

    .terms__title::before {
        transform: translateY(-81.5%);
        width: .6rem;
        height: 3rem;
    }

    .preamble__container {
        padding: 3.5rem .5rem;
    }

    .preamble {
        font-size: 1.4rem;
    }

    .preamble__text02 {
        margin-top: 1.4rem;
    }

    .terms__section-container {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .terms__section-title {
        margin-bottom: 2.2rem;
        font-size: 1.6rem;
    }

    .terms__text {
        margin-top: 1.8rem;
        padding-left: .3rem;
        font-size: 1.4rem;
    }

    .terms__provistions-num {
        margin-right: .8rem;
    }

    .terms__provistions-num03 {
        padding-left: .5rem;
        width: 1.5rem;
    }

    .terms__provistions-preriod {
        margin-right: .7rem;
    }

    .terms__provistions01 {
        margin-top: 1.8rem;
        padding-left: .3rem;
        padding-right: .8rem;
        font-size: 1.4rem;
    }

    .terms__provistions02 {
        margin-top: 1.8rem;
        padding-left: 0;
        padding-right: .8rem;
        font-size: 1.4rem;
    }

    .terms__provistions03:first-child {
        margin-top: 3rem;
    }

    .terms__provistions03:not(:first-child) {
        margin-top: .3rem;
    }

    .terms__provistions03:last-child {
        margin-bottom: 2.5rem;
    }

    .terms__provistions-num-double {
        width: 10%;
    }

    .terms__provistions-text-double {
        width: 90%;
    }

    .terms__date {
        font-size: 1.4rem;
    }

    .terms__contact {
        margin-top: 2rem;
        padding-left: .5rem;
        font-size: 1.4rem;
    }

    .terms__contact-list {
        margin-top: .2rem;
    }

    .terms__contact-term {
        width: 7rem;
    }

    .terms__cotact-description{
        width: 26rem;
    }

    .terms__privacy-end {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }

    .terms__privacy-end-text {
        font-size: 1.5rem;
    }

}



/* Terms of Sale (asct)
------------------------------------------------------------*/
.terms__title-asct{
    border-bottom: 1px solid #2EA5E4;
}

.asct{
    margin: 9rem auto 15rem;
}

.terms__asct-container{
    margin: 0 auto;
    width: 85rem;
}

.asct__list{
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    min-height: 11rem;
    border-top: 1px solid #ccc;
}

.asct__list:last-child{
    border-bottom: 1px solid #ccc;
}

.asct__term{
    padding-left: 3rem;
    width: 25rem;
    font-size: 1.8rem;
    color: #2EA5E4;
}

.asct__link{
    display: block;
}

.asct__suppl{
    position: relative;
    padding-left: 1.7rem;
    font-size: 1.5rem;
}

.asct__suppl:nth-of-type(1){
    margin-top: .3rem;
}

.asct__suppl::before{
    content:"※";
    position: absolute;
    top: 0;
    left: .1rem;
}



@media screen and (max-width: 767px) {
    .asct{
        margin: 6rem auto 12rem;
    }

    .terms__asct-container{
        width: 35rem;
    }

    .asct__list{
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        min-height: initial;
    }

    .asct__term{
        padding-left: .5rem;
        width: auto;
        font-size: 1.5rem;
    }

    .asct__description{
        margin-top: .8rem;
        padding-left: .9rem;
        font-size: 1.35rem;
    }

    .asct__suppl{
        padding-left: 1.5rem;
        font-size: 1.35rem;
    }

    .asct__suppl:nth-of-type(1){
        margin-top: .3rem;
    }

    .asct__suppl::before{
        content:"※";
        position: absolute;
        left: .1rem;
    }
}



/* common02
------------------------------------------------------------*/
.line-br {
    display: block;
}


.font-s20 {
    font-size: 2rem;
}

.font-s24 {
    font-size: 2.4rem;
}

.font-s28 {
    font-size: 2.8rem;
}

.font--blue {
    color: #2EA5E4;
}

.ls-01 {
    letter-spacing: -.111em;
}

@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }

    .line-br-pc {
        display: block;
    }
}


@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }

    .line-br-sp {
        display: block;
    }
}