@charset "utf-8";

/*■■■■■■■■■ 全体 ■■■■■■■■■ */
body {
    overflow-x: hidden !important;
}

#overallTop .top_wrapper {
    background: url(../img/overalltop/pc/fix_bg.webp);
    background-attachment: fixed;
}

#overallTop .inner {
    margin: 0 auto;
}

/* 色 */
#overallTop .c1 {
    background: linear-gradient(90deg, #0079BD 0%, #04A79B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#overallTop .c2 {
    background: linear-gradient(90deg, #0079BD 0%, #04A79B 100%);
}

#overallTop h2,
#overallTop h3,
#overallTop p {
    color: #083461;
}

/* フォント */
#overallTop .description {
    font-size: clamp(1.2rem, 1.3vw, 1.6rem);
    line-height: 2;
}

/* ボタン */
#overallTop .btn {
    display: inline-block;
    transition: .2s;
    border-radius: 50px;
}

#overallTop .btn:hover {
    filter: brightness(1.2);
}

#overallTop .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 1.6vw, 2.4rem);
    font-weight: 500;
    color: #fff;
}

/*■■■■■■■■■ ヘッダー ■■■■■■■■■ */
#overallTop #upper {
    position: fixed;
    height: 80px;
    box-shadow: 0 0 3px rgb(0 0 0 / 5%);
    ;
}

#overallTop #upper .inner {
    max-width: 1920px;
    width: 100%;
    padding: 8px 40px;
}

#overallTop #upper .logo {
    margin: 4px 0 0 12px;
}

#overallTop #upper .logo img {
    height: 2.7vw;
    max-height: 41px;
}

#overallTop #upper .link_btn {
    height: 6vw;
    max-height: 54px;
    width: 31vw;
    max-width: 300px;
    font-size: clamp(2rem, 1.8vw, 2rem);
    letter-spacing: .16vw;
}

#overallTop #upper .head_pc .tel_box {
    margin-right: 29px;
}

#overallTop #upper .head_pc .tel_box .txt {
    font-size: clamp(1.2rem, 1vw, 1.5rem);
}

#overallTop #upper .head_pc .tel_box .tel_number {
    font-size: clamp(1.2rem, 2vw, 3.6rem);
}

/*■■■■■■■■■ メインビジュアル ■■■■■■■■■ */
#overallTop .mv-wrapper {
    text-align: center;
    height: calc(63.3dvw + 88px);
    padding-top: 88px;
}

#overallTop .mv-head {
    padding-top: 113px;
}

#overallTop .mv-wrapper h2 {
    font-size: clamp(5.2rem, 2.3vw, 5.6rem);
    font-weight: 700;
    letter-spacing: 0.4vw;
    margin-bottom: 49px;
}

#overallTop .mv-wrapper h2 span {
    letter-spacing: .3vw;
}

#overallTop .mv-wrapper p {
    font-size: 1.8rem;
    letter-spacing: 0.14em;
}

#overallTop .main-visual.pc_cont {
    width: 100vw;
}

.mv-img-wrapper {
    position: absolute;
    top: 76px;
}

/*■■■■■■■■■ NEWS ■■■■■■■■■ */
#overallTop .news-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 960px;
    max-width: 90%;
    height: 56px;
    padding: 12px 24px;
    margin: -48px auto 100px;
    overflow: hidden;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    will-change: transform;
    background: #fff;
}
/* お知らせ */
#overallTop .news-area .news-list {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
} 
#overallTop .news-area .news-item {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    backface-visibility: hidden; /* Reduces flickering */
    -webkit-backface-visibility: hidden;
} 
/*表示*/
#overallTop .news-area .news-item.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
/*非表示*/
#overallTop .news-area .news-item.prev {
    transform: translateY(-100%);
    opacity: 0;
    z-index: 1;
}
/*カテラベル*/
#overallTop .news-area .news-item .term_label {
    background-color: rgba(1, 122, 188, 1);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    padding: 3px 5px;
    margin-right: 32px;
    flex-shrink: 0;
}
/*タイトル*/
#overallTop .news-area .news-item .news_title_wrap {
    display: block;
    width: calc(100% - 200px);
    overflow: hidden;
}
#overallTop .news-area .news-item .news_title{
    width: 100%;
    overflow: hidden;
    color: rgba(8, 52, 97, 1);
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*more*/
#overallTop .news-area .news_more {
    position: absolute;
    right: 0;
    color: rgba(8, 52, 97, 1);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
#overallTop .news-area .news_more .news_arrow {
    font-size: 12px;
}
#overallTop .news-area a:hover {
    opacity: 0.8;
}

/*■■■■■■■■■ ラインナップ ■■■■■■■■■ */
.lineup-wrapper {
    text-align: center;
    margin-bottom: 125px;
}

.lineup-wrapper .inner {
    width: 100%;
    max-width: 1428px;
    margin: 0 auto;
    padding: 0 24px;
}

.lineup-wrapper .head {
    font-size: clamp(2.4rem, 1.85vw, 3.9rem);
    letter-spacing: .2vw;
    margin-bottom: 82px;
}

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

.lineup-content .box {
    width: 45.5%;
}

.lineup-content .logo {
    margin: 0 auto 48px;
}

.lineup-content .chat .logo {
    width: 14.875vw;
    max-width: 276.5px;
    position: relative;
    right: 19px;
}

.lineup-content .avatar .logo {
    width: 17.5vw;
    max-width: 311.5px;
}

.lineup-content .img-wrapper {
    position: relative;
    z-index: 0;
    margin-bottom: 38px;
}

.lineup-content .img-wrapper a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: .2s;
}

.lineup-content .img-wrapper a:hover {
    filter: brightness(1.1);
}

.lineup-content .img-wrapper::after {
    position: absolute;
    content: "";
    width: 105%;
    height: 110%;
    background-image: -webkit-linear-gradient(268deg, #ffffff, #ffffff6b);
    background-image: linear-gradient(268deg, #ffffff, #ffffff6b);
    border-radius: 30px;
    top: 0;
    right: 0;
    left: -0.77vw;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.lineup-content .avatar .img-wrapper::after {
    background: linear-gradient(193deg, #fbfbfb7a, #fbfbfbb0);
    ;
}

.lineup-content .description {
    text-align: left;
    margin-bottom: 52.5px;
}

#overallTop .lineup-content .avatar .btn {
    position: relative;
    right: 11px;
}

#overallTop .lineup-content .link_btn {
    height: 4.5vw;
    max-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 370px;
    width: 23vw;
    font-size: clamp(1.0rem, 1.2vw, 1.8rem);
    font-weight: 400;
}

/*■■■■■■■■■ 学習データ ■■■■■■■■■ */
.service-wrapper {
    overflow: hidden;
}

.service-wrapper .inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.service-wrapper .inner::after {
    content: "";
    position: absolute;
    background: url(../img/overalltop/pc/support_bg.webp) no-repeat 110% 10% / 60%;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.service-content {
    max-width: 1428px;
    width: 100%;
    margin: 0 auto;
    padding: 0 19px;
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 93px;
}

.service-txtbox {
    width: 42%;
    max-width: 486px;
    margin-right: 8%;
}

.service-txtbox .head {
    font-size: clamp(1.5rem, 1.7vw, 2.8rem);
    letter-spacing: .08em;
    line-height: 1.4;
    margin-bottom: 24px;
}

.service-imgbox {
    max-width: 591px;
    width: 50%;
    margin-top: 20px;
}

/*■■■■■■■■■ MEDIA COVERAGE ■■■■■■■■■ */
.mcoverage-wrapper {
    margin-bottom: 196px;
    text-align: center;
}

.mcoverage-wrapper .inner {
    width: 100%;
    max-width: 947px;
    margin: 0 auto;
}

.mcoverage-content .head {
    font-size: clamp(2.4rem, 1.85vw, 3.9rem);
    letter-spacing: .1em;
    width: 23vw;
    max-width: 365px;
    margin: 0 auto 62px;
}

/*■■■■■■■■■ サポート負担 ■■■■■■■■■ */
.support-wrapper {
    text-align: center;
    margin-bottom: 65px;
}

.support-wrapper .inner {
    width: 100%;
    max-width: 1199px;
    margin: 0 auto;
}

.support-txtbox {
    margin-bottom: 34px;
}

.support-wrapper .head {
    font-size: clamp(2.0rem, 2.1vw, 4.2rem);
    line-height: 1.6;
    letter-spacing: .3vw;
    margin-bottom: 31px;
}

.support-wrapper .head span {
    letter-spacing: .2vw;
}

.support-wrapper .head .attention {
    position: relative;
    left: 19px;
    padding-left: -7px;
    font-size: clamp(1.0rem, 1vw, 1.6rem);
    font-weight: 400;
}

.support-txtbox .description,
.support-txtbox .supplement {
    text-align: left;
    width: 100%;
    max-width: 785px;
    margin: 0 auto;
}

#overallTop .support-txtbox .description {
    text-align: left;
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    line-height: 1.9;
    width: 37vw;
    max-width: 697px;
}

.support-txtbox .supplement {
    text-align: right;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.support-imgbox.pc_cont {
    max-width: 1378px;
    width: 100%;
    position: relative;
    left: 84px;
    bottom: 13px;
}

/*■■■■■■■■■ デモをお試しください ■■■■■■■■■ */
.fcta-wrapper {
    position: relative;
    text-align: center;
    height: 100%;
    padding-bottom: 117px;
}

.fcta-wrapper .inner {
    max-width: 1310px;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.fcta-wrapper .head {
    width: 40vw;
    max-width: 600px;
    margin: 0 auto 160px;
    letter-spacing: 0.14em;
    position: relative;
    right: 1.39vw;
    font-size: clamp(2.0rem, 2vw, 4.2rem);
}

#overallTop .fcta-txtbox>h3,
#overallTop .fcta-txtbox>p,
#overallTop .fcta-telbox>p {
    color: #ffffff;
}

.fcta-wrapper .ambassador.pc_cont {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 40vw;
    margin: auto;
    height: 44.5vw;
    max-height: 929px;
}

.fcta-wrapper .ambassador.pc_cont>img {
    height: 100%;
    object-fit: contain;
}

.fcta-wrapper .round_bg {
    position: absolute;
    max-height: 667px;
    width: 100%;
    height: 33vw;
    bottom: 0;
    overflow: hidden;
}

.fcta-content {
    position: relative;
    bottom: 0;
    left: -9vw;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 624px;
    height: 22vw;
    max-height: 422px;
}

.fcta-txtbox {
    margin-bottom: 77px;
}

.fcta-txtbox .pc_cont {
    display: inline-block;
}

.fcta-txtbox>h3 {
    font-weight: 500;
    font-size: clamp(2.0rem, 2vw, 4rem);
    letter-spacing: 0.15vw;
    line-height: 1.4;
    margin-bottom: 24px;
    text-align: left;
}

.fcta-txtbox>p {
    font-size: clamp(1.0rem, 1.3vw, 2rem);
    font-weight: 300;
    letter-spacing: 1.6px;
    text-align: left;
}

.fcta-btnbox {
    position: relative;
    z-index: 1;
    right: 28px;
    display: flex;
    margin-bottom: 69px;
}

#overallTop .fcta-btnbox .btn {
    background: #ffffff;
    border-radius: 50px;
}

#overallTop .fcta-btnbox .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 4vw;
    max-height: 60px;
}

.fcta-btnbox .btn.tel {
    width: 21vw;
    max-width: 297px;
}

.fcta-btnbox .btn.demo {
    width: 21vw;
    max-width: 296px;
    margin-left: 28px;
}

#overallTop .fcta-wrapper .link_btn {
    font-size: clamp(1.2rem, 1.1vw, 2.4rem);
    font-weight: 600;
}

.fcta-telbox {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.fcta-telbox .info {
    font-size: clamp(1.2rem, 1.1vw, 2.3rem);
    position: relative;
    padding-right: 24px;
    margin-right: 24px;
    line-height: 1.1;
}

.fcta-telbox .info::after {
    content: "";
    width: 1px;
    height: 3px;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
}

#overallTop .fcta-telbox>p {
    margin-left: 19px;
    line-height: 1.1;
    text-align: right;
}

#overallTop .fcta-telbox .info>small {
    font-size: clamp(1.0rem, .9vw, 1.7rem);
}

#overallTop .fcta-telbox .tel_num {
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(1.6rem, 2vw, 4.1rem);
}

/*■■■■■■■■■ フッター ■■■■■■■■■ */
#overallTop #under {
    padding: 44px 0 27px;
}

#overallTop #under .f_inner {
    display: block;
}

#overallTop #under .f_logo {
    width: 14vw;
    max-width: 229px;
    margin: 0 auto 41px;
    position: relative;
}

#overallTop #under .f_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#overallTop #under .f_link p {
    margin: 0 30px;
}


/*■■■■■■■■■　Macサイズ ■■■■■■■■■ */
@media screen and (max-width: 1680px) and (min-width: 768px) {

    /*■■■■■■■■■　ヘッダー ■■■■■■■■■ */

    #overallTop #upper .logo img {
        height: 4vw;
        max-height: 40px;
    }

    /*■■■■■■■■■　メインビジュアル ■■■■■■■■■ */
    #overallTop .mv-head {
        padding-top: 5.8vw;
    }

    #overallTop .mv-wrapper h2 {
        margin-bottom: 2.85vw;
    }

    /*■■■■■■■■■ ラインナップ ■■■■■■■■■ */
    #overallTop .lineup-wrapper {
        margin-bottom: 6.42vw;
    }

    #overallTop .lineup-wrapper .head {
        margin-bottom: 4vw;
    }

    #overallTop .lineup-wrapper .inner {
        max-width: 1328px;
        padding: 0 4vw;
    }

    #overallTop .lineup-content .img-wrapper::after {
        border-radius: 2vw;
    }

    #overallTop .lineup-content .box {
        width: 46%;
    }

    /*■■■■■■■■■ 学習データ ■■■■■■■■■ */
    #overallTop .service-content {
        max-width: 1249px;
        padding: 0 0 0 1.2vw;
    }

    /*■■■■■■■■■ MEDIA COVERAGE ■■■■■■■■■ */
    #overallTop .mcoverage-wrapper {
        margin-bottom: 10.12vw;
    }

    #overallTop .m-coverage {
        width: 52vw;
        max-width: 828px;
        margin: 0 auto;
    }

    /*■■■■■■■■■ サポート負担 ■■■■■■■■■ */
    #overallTop .support-imgbox.pc_cont {
        width: 75vw;
        max-width: 1205px;
        margin: 0 auto;
        right: 0;
        left: 4.1vw;
    }

    #overallTop .support-txtbox .description,
    #overallTop .support-txtbox .supplement {
        width: 44vw;
    }

    /*■■■■■■■■■ デモをお試しください ■■■■■■■■■ */
    #overallTop .fcta-wrapper {
        padding-bottom: 6.8vw;
    }

    #overallTop .fcta-wrapper .head {
        margin-bottom: 9vw;
    }

    /*■■■■■■■■■ フッター ■■■■■■■■■ */
    #overallTop .fcta-wrapper .ambassador.pc_cont {
        height: 48vw;
        left: 41.5vw;
    }

    #overallTop .fcta-content {
        top: 1vw;
        left: 0;
        width: 50vw;
        max-width: 100%;
    }

    #overallTop .fcta-btnbox {
        margin-bottom: 3vw;
    }

    #overallTop .fcta-txtbox {
        margin-bottom: 4.4vw;
    }

    #overallTop .fcta-telbox {
        margin-bottom: 2vw;
    }

    #overallTop .fcta-btnbox .btn {
        padding: 0;
        height: 3.7vw;
    }

    #overallTop .fcta-btnbox .btn.tel {
        width: 18vw;
        max-width: 260px;
    }

    #overallTop .fcta-btnbox .btn.demo {
        width: 18vw;
        max-width: 259px;
    }
}

/*■■■■■■■■■　タブレット縦 / スマホサイズ ■■■■■■■■■ */
@media screen and (max-width: 767px) {

    /*■■■■■■■■■ 全体 ■■■■■■■■■ */
    #overallTop .pc_cont {
        display: none;
    }

    #overallTop .sp_cont {
        display: block;
    }

    #overallTop .btn {
        width: 100%;
    }

    #overallTop .top_wrapper {
        background: url(../img/overalltop/sp/fix_bg.webp) no-repeat top center / 100%;
        background-attachment: local;
    }

    /*■■■■■■■■■ ヘッダー ■■■■■■■■■ */
    #overallTop #upper {
        height: 64px;
        box-shadow: none;
    }

    #overallTop #upper .logo {
        margin: 0;
    }

    #overallTop #upper .logo img {
        height: 7.5vw;
    }

    #overallTop #upper .inner {
        padding: 2.3vw 3.7vw;
        justify-content: center;
    }

    #overallTop .mv-wrapper {
        height: 171.1vw;
    }

    #overallTop .mv-img-wrapper {
        top: 9.8vw;
    }

    #overallTop .mv-head {
        padding-top: 17.1vw;
    }

    #overallTop .mv-head .c1 {
        background: linear-gradient(90deg, #0490a7 4.8%, #04A79B 26.86%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #overallTop .mv-wrapper h2 {
        font-size: 9.8rem;
        line-height: 13vw;
        letter-spacing: 0.6vw;
        margin-bottom: 3.7vw;
    }

    #overallTop .mv-wrapper p {
        font-size: 4.2rem;
        line-height: 6.8rem;
    }

    /*■■■■■■■■■ メインビジュアル ■■■■■■■■■ */
    #overallTop .mv-wrapper {
        height: 179.3vw;
        padding-top: 12.2vw;
    }

    /*■■■■■■■■■ NEWS ■■■■■■■■■ */
    #overallTop .news-area {
        width: 100%;
        max-width: 96%;
        height:80px ;
        margin: 0 auto 10vw;
        padding: 2vw;
    }
    #overallTop .news-area .news-list {
        align-items: end;
    }
    /* お知らせ */
    #overallTop .news-area .news-item {
    }
    /* カテラベル */
    #overallTop .news-area .news-item .term_label {
        font-weight: 300;
        margin-right: 2.5vw;
    }
    /* タイトル */
    #overallTop .news-area .news-item .news_title_wrap{
        width: calc(100% - 120px);
    }
    #overallTop .news-area .news-item .news_title {   
        font-size: 14px;
        white-space: normal;
        text-align: left;
        line-height: 1.3;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        overflow: hidden;
        -webkit-box-orient: vertical;
        padding:0 0 1px;
    }
    /* more */
    #overallTop .news-area .news_more {
        bottom: 0;
        font-size: 12px;
        font-weight: 400;
    }
    
    /*■■■■■■■■■ ラインナップ ■■■■■■■■■ */
    #overallTop .lineup-wrapper {
        margin-bottom: 18.4vw;
    }

    .lineup-content {
        display: block;
    }

    #overallTop #overallTop .inner {
        padding: 0 7.2vw;
    }

    .lineup-wrapper .head {
        font-size: 8.3rem;
        margin-bottom: 14vw;
    }

    .lineup-wrapper .inner {
        padding: 0 5vw;
    }

    .lineup-content .box {
        width: 100%;
    }

    .lineup-content .box.chat {
        margin-bottom: 18.8vw;
    }

    .lineup-content .chat .logo {
        width: 69vw;
        max-width: 382px;
        margin-bottom: 3.7vw;
        right: 0;
    }

    .lineup-content .avatar .logo {
        width: 80vw;
        max-width: 442px;
        margin-bottom: 3.4vw;
    }

    .lineup-content .img-wrapper {
        margin-bottom: 8.5vw;
        padding: 0 2vw;
    }

    .lineup-content .img-wrapper::after {
        width: 102%;
        box-shadow: 5px 7px 10px #4d727b12;
        background: linear-gradient(55deg, #ffffff, #ffffff6b);
        border: none;
        border-radius: 3.8vw;
        left: -1.8vw;
    }

    #overallTop .description {
        font-size: 4.2rem;
        margin-bottom: 6.3vw;
        line-height: 1.78;
        letter-spacing: 0;
    }

    #overallTop .link_btn {
        padding: 3vw 10vw;
    }

    #overallTop .lineup-content .link_btn {
        font-size: 3.8rem;
        font-weight: 500;
        padding: 0;
        letter-spacing: 0.4vw;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        height: 12.5vw;
        max-height: 68px;
    }

    #overallTop .lineup-content .avatar .btn {
        right: 0;
    }

    #overallTop .lineup-content .avatar .description {
        margin-bottom: 6vw;
        line-height: 1.8;
    }

    #overallTop .lineup-content .avatar .link_btn {
        font-size: 3.9vw;
        letter-spacing: 0.4vw;
        font-weight: 500;
    }

    /*■■■■■■■■■ 学習データ ■■■■■■■■■ */
    #overallTop .service-wrapper {
        margin-bottom: 0;
    }

    #overallTop .service-wrapper .inner::after {
        position: static;
        background: none;
    }

    #overallTop .service-content {
        display: block;
        padding: 0;
        margin-bottom: 13.4vw;
    }

    #overallTop .service-txtbox {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 4.8vw;
    }

    #overallTop .service-wrapper .description {
        letter-spacing: .4vw;
        margin-bottom: -2vw;
    }

    #overallTop .service-txtbox .head {
        letter-spacing: 0.3vw;
        line-height: 1.74;
        margin-bottom: 6.4vw;
    }

    #overallTop .service-imgbox {
        max-width: 100%;
        width: 100%;
    }

    #overallTop .service-txtbox .head {
        font-size: 4.69vw;
    }

    /*■■■■■■■■■ MEDIA COVERAGE ■■■■■■■■■ */
    #overallTop .mcoverage-wrapper {
        margin-bottom: 25.7vw;
    }

    #overallTop .mcoverage-content {
        padding: 0 5.7vw;
    }

    #overallTop .mcoverage-content .head {
        width: 100%;
        font-size: 6.2vw;
        max-width: 100%;
        margin-bottom: 9.7vw;
    }

    #overallTop .m-coverage.sp_cont {
        position: relative;
        left: 2.2vw;
    }

    /*■■■■■■■■■ サポート負担 ■■■■■■■■■ */
    #overallTop .support-wrapper {
        margin-bottom: 13vw;
    }

    #overallTop .support-wrapper .head .attention {
        display: block;
        text-align: right;
        left: -4.5vw;
        bottom: .9vw;
        font-size: 2.7vw;
    }

    #overallTop .support-txtbox {
        margin-bottom: 10.7vw;
    }

    #overallTop .support-txtbox .head {
        font-size: 6.5vw;
        letter-spacing: 0.1vw;
        line-height: 1.45;
        margin-bottom: 2vw;
    }

    #overallTop .support-txtbox .description {
        padding: 0 5vw;
        width: 89.9vw;
        font-size: 3.7vw;
        line-height: 1.85;
        letter-spacing: 0.05vw;
        margin-bottom: 1.8vw;
    }

    #overallTop .support-txtbox .supplement {
        font-size: 2.5vw;
        position: absolute;
        padding-top: 0.9vw;
        right: 5.5vw;
    }

    /*■■■■■■■■■ デモをお試しください ■■■■■■■■■ */
    #overallTop .fcta-wrapper {
        height: 91.6vw;
        padding: 0;
    }

    #overallTop .fcta-wrapper .inner {
        padding: 33vw 4.7vw 0;
    }

    #overallTop .fcta-txtbox {
        position: relative;
        width: 100%;
        margin: 0;
    }

    #overallTop .fcta-txtbox>h3 {
        font-size: 5.5vw;
        line-height: 1.5;
        margin-bottom: 2.6vw;
    }

    #overallTop .fcta-txtbox>h3 .pc_cont {
        display: none;
    }

    #overallTop .fcta-txtbox::after {
        content: "無料";
        max-width: 94px;
        width: 15vw;
        letter-spacing: 0.3vw;
        color: #ffffff;
        background: #ffffff87;
        border: 1px solid #ffffffbf;
        border-radius: 30px;
        padding: 2.1vw 1.5vw;
        position: absolute;
        top: -12vw;
        left: -44.1vw;
        right: 0;
        margin: auto;
        font-size: 4.5vw;
    }

    #overallTop .fcta-content {
        left: 0;
        max-width: 100%;
    }

    #overallTop .fcta-wrapper .ambassador {
        position: absolute;
    }

    #overallTop .fcta-wrapper .head {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        position: absolute;
        top: -15vw;
        left: 0.8vw;
        letter-spacing: 0.3vw;
        font-size: 6.25vw;
    }

    #overallTop .fcta-wrapper .fcta-btnbox {
        display: none;
    }

    #overallTop .fcta-txtbox>p {
        font-size: 4.5rem;
        line-height: 1.5;
    }

    #overallTop .fcta-btnbox .btn {
        height: 13.6vw;
    }

    #overallTop .fcta-btnbox .btn.tel,
    #overallTop .fcta-btnbox .btn.demo {
        width: 100%;
        max-width: 100%;
    }

    #overallTop .fcta-btnbox .btn.tel {
        width: 100%;
        margin-bottom: 5vw;
        padding: 0;
    }

    #overallTop .fcta-btnbox .btn.demo {
        margin: 0;
    }

    #overallTop .fcta-telbox .info {
        text-align: center;
        line-height: 1.25;
        margin-right: 6vw;
        font-size: 3.6vw;
        margin-left: 3vw;
    }

    #overallTop .fcta-telbox.pc_cont {
        display: none;
    }

    #overallTop .conv-wrapper {
        padding: 13vw 5vw 7.2vw;
        background: url(../img/overalltop/sp/fcta_bg.webp) no-repeat 100% / cover;
    }

    #overallTop .conv-wrapper .fcta-btnbox {
        display: block;
        width: 100%;
        right: 0;
        margin-bottom: 10vw;
    }

    #overallTop .conv-wrapper .fcta-btnbox .btn {
        width: 100%;
        padding: 0;
    }

    #overallTop .fcta-telbox .tel_num {
        margin: 0;
        font-size: 5.5vw;
    }

    #overallTop .fcta-telbox .info>small {
        font-size: 2.6vw;
        padding-left: 5.2vw;
    }

    #overallTop .fcta-telbox .info::after {
        height: 7vw;
        top: 1.3vw;
    }

    #overallTop .link_btn {
        font-weight: 600;
        padding: 0;
        height: 100%;
        font-size: 4.7vw;
    }

    /*■■■■■■■■■ フッター ■■■■■■■■■ */
    #overallTop #under {
        padding: 6.5vw 0vw 24.375vw;
    }

    #overallTop #under .f_logo {
        width: 100%;
        margin: 0 auto 6.25vw;
    }

    #overallTop #under .f_logo img {
        height: 7.5vw;
        max-height: 41px;
        width: 100%;
        max-width: 220px;
    }

    #overallTop #under .f_link {
        margin-bottom: 6.25vw;
    }

    #overallTop #under .f_link p {
        font-size: 2.9vw;
    }   

}

/*■■■■■■■■■　スマホサイズ ■■■■■■■■■ */
@media screen and (max-width: 640px) {

    /*■■■■■■■■■ ヘッダー ■■■■■■■■■ */
    #overallTop .mv-wrapper h2 {
        font-size: 2.8rem;
    }

    #overallTop .mv-wrapper p {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    /*■■■■■■■■■ ラインナップ ■■■■■■■■■ */
    .lineup-wrapper .head {
        font-size: 7.5vw;
    }

    #overallTop .description {
        font-size: 3.75vw;
    }

    #overallTop .lineup-content .link_btn {
        font-size: 3.4vw;
    }

    #overallTop .lineup-content .avatar .link_btn {
        font-size: 3.9vw;
    }

    /*■■■■■■■■■ サービス ■■■■■■■■■ */
    #overallTop .service-txtbox .head {
        font-size: 4.69vw;
        white-space: nowrap;
    }

    /*■■■■■■■■■ デモをお試しください ■■■■■■■■■ */
    #overallTop .fcta-txtbox>p {
        font-size: 4.06vw;
    }
}