@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #fff;
    font-family: 'Noto Sans JP', "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.5;
    background: url(../images/footer_bg.png), linear-gradient(#000000, #555555);
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.container {
    overflow: hidden;
}

.inner {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

input:hover,
a:hover img {
    outline: 0;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.mv .contents {
    margin-left: 8%;
    display: inline-block;
}

.mv .contents .heading {
    font-size: 3.2rem;
    text-align: center;
}

.mv .contents .logo {
    text-align: center;
    margin-top: 40px;
}

.mv .contents .logo img {
    width: 520px;
}

.mv .contents .title {
    font-size: 7.4rem;
    font-weight: 300;
    text-align: center;
}

.mv .contents .box {
    width: 485px;
    border: 1px solid #fff;
    margin: 30px auto 0;
    padding: 10px 0;
    box-sizing: border-box;
}

.mv .contents .box .text {
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.2;
}

.mv .contents .box .text span {
    font-size: 3.6rem;
}

.mv .mv_video-area {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.mv .mv_video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
    opacity: 0.1;
    -webkit-animation: fade_in linear 7s;
    animation: fade_in linear 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}


@-webkit-keyframes fade_in {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}



@keyframes fade_in {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}




/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about {
    padding: 100px 0;
}

.about .box.box01 {
    margin-top: 100px;
}

.about .box.box02 {
    margin-top: 400px;
}

.about .box.box03 {
    margin-top: 500px;
}

.about .box.box04 {
    margin-top: 400px;
}

.about .box.box05 {
    margin-top: 400px;
}

.about .box .title {
    font-size: 3.8rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.about .box .title span {
    font-size: 6rem;
}

.about .box .text {
    font-size: 2.1rem;
}

.about .box .text span {
    font-size: 1.6rem;
}

.about .box.box01 .text {
    text-align: center;
    margin-top: 30px;
}

.about .box.box04 .text {
    text-align: center;
}

.about .box .video_box {
    position: relative;
}

.about .box .video_box .tablet {
    position: absolute;
    z-index: 10;
    top: 49.7%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: auto;
    border-radius: 20px;
}

.about .box .video_box .laptop {
    position: absolute;
    z-index: 10;
    top: 38.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 71%;
}

.about .box.box01 .title,
.about .box.box04 .title {
    text-align: center;
}

.about .box.box01 .video_box {
    width: 760px;
    height: auto;
    margin: 20px auto;
}

.about .box.box02 {
    position: relative;
}

.about .box.box02 .video_box {
    width: 870px;
    height: auto;
    position: absolute;
    top: -200px;
    right: -350px;
}

.about .box.box03,
.about .box.box05 {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about .box.box03 .video_box {
    width: 820px;
    height: auto;
    position: absolute;
    top: -100px;
    left: -150px;
}

.about .box.box04 .video_box {
    width: 1200px;
    height: auto;
    margin: 0 auto 30px;
}

.about .box.box05 .video_box {
    width: 1090px;
    height: auto;
    position: absolute;
    top: -200px;
    left: -500px;
}

/* ----------------------------------------------------------
youtube
---------------------------------------------------------- */

.youtube {
    padding: 400px 0 100px;
}

.youtube .video {
    text-align: center;
}

.youtube .video_box {
    position: relative;
}

.youtube .video_box .laptop {
    position: absolute;
    z-index: 10;
    top: 38.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 71%;
}


/* ----------------------------------------------------------
achievement
---------------------------------------------------------- */

.achievement {
    padding: 100px 0;
}

.achievement .title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500;
}

.achievement .layout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.achievement .layout .img:first-of-type {
    margin-right: 100px;
}

/* ----------------------------------------------------------
price
---------------------------------------------------------- */

.price {
    padding: 100px 0;
}

.price .title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500;
}

.price .zero_plan {
    text-align: center;
    margin-top: 50px;
}

.price .price_title {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.price .box {
    margin-top: 150px;
}

.price .layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.price .layout .img {
    width: 32%;
    margin-bottom: 75px;
}

.price .btn {
    text-align: center;
}

.price .btn a {
    color: #fff;
    font-size: 2rem;
    background-color: #00a9e7;
    padding: 8px 100px 10px;
    border-radius: 5px;
}

/* ----------------------------------------------------------
faq
---------------------------------------------------------- */

.faq {
    padding: 100px 0;
}

.faq .title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500;
}

.faq .faq_box {
    width: 840px;
    padding: 30px 20px;
    box-sizing: border-box;
    margin: 0 auto;
    border-top: 2px solid #fff;
    cursor: pointer;
}

.faq .faq_box:first-of-type {
    margin-top: 50px;
}

.faq .faq_box:last-of-type {
    border-bottom: 2px solid #fff;
}

.faq .faq_box dt {
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
}

.faq .faq_box dt:after {
    content: '';
    height: calc(18px / 2 * tan(60deg));
    width: 16px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 10px;
}

.faq .faq_box.active dt:after {
    transform: rotate(180deg);
}

.faq .faq_box dd {
    font-size: 1.8rem;
    padding-top: 30px;
    display: none;
}


/* ----------------------------------------------------------
contact
---------------------------------------------------------- */

.contact {
    padding: 100px 0 100px;
}

.contact .inner .form {
    text-align: center;
    overflow: hidden;
}

/* .contact .inner .form iframe {
    margin-top: -80px;
    margin-bottom: -80px;
} */

/* .contact .title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500;
    margin-bottom: 100px;
}

.contact .layout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.contact .layout dt {
    font-size: 2.4rem;
    width: 250px;
    position: relative;
    padding-left: 50px;
}

.contact .layout dt::before {
    content: '必須';
    color: #000;
    background-color: #fff;
    font-size: 1.3rem;
    border-radius: 5px;
    padding: 0 5px 2px;
    position: absolute;
    left: 0;
    top: 8px;
}

.contact .layout dd {
    width: 480px;
}

.contact .layout dd input {
    font-size: 2rem;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.contact .layout dd select {
    font-size: 2rem;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

.contact .privacy,
.contact .notes {
    text-align: center;
}

.contact .notes a {
    text-decoration: underline;
}

.contact .notes a:hover {
    text-decoration: none;
}

.contact .privacy {
    margin-top: 10px;
}

.contact .privacy input {
    margin-right: 5px;
}


.contact .btn {
    text-align: center;
    margin-top: 20px;
}

.contact .btn input {
    color: #fff;
    font-size: 2rem;
    background-color: #00a9e7;
    padding: 8px 100px 10px;
    border-radius: 5px;
}

/* form_contact  */
/* 
.contact.form_contact {
    padding: 200px 0 100px;
}

.contact.form_contact .form_contact_title {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.contact.form_contact .box {
    margin-top: 100px;
}

.contact.form_contact .form_contact_layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact.form_contact .form_contact_layout .img {
    width: 32%;
    margin-bottom: 75px;
}

*/
/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer .layout {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer .layout li:first-of-type {
    margin-right: 20px;
}

.footer .layout li a {
    text-decoration: underline;
}

.footer .layout li a:hover {
    text-decoration: none;
}


/* ----------------------------------------------------------
step
---------------------------------------------------------- */

.step {
    color: #000;
    background-color: #fff;
    padding: 100px 0 100px;
    position: relative;
}

.step:before {
    content: '';
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: -100px;
    left: 0;
    background-color: #fff;
    transform: skewY(5deg);
}

.step .title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500;
}

.step .title span {
    font-size: 3.4rem;
}

.step .credit_card {
    text-align: center;
    font-size: 2.8rem;
    margin: 70px auto 100px;
}

.step .credit_card span {
    padding: 15px 190px;
    border: 1px solid #000;
}

.step .layout {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step .layout .box {
    z-index: 10;
}

.step .layout .arrow {
    width: calc(100% + 100px);
    height: 6px;
    background-color: #000;
    position: absolute;
    top: 67px;
    left: 0;
}

.step .layout .arrow:after {
    content: '';
    height: calc(19px / 2 * tan(60deg));
    width: 18px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #000;
    position: absolute;
    right: -15px;
    top: -5px;
}

.step .layout .text {
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 20px;
}

.step .notes {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 70px;
}

/* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

.float_btn {
    position: fixed;
    right: 40px;
    bottom: 70px;
    z-index: 100;
}

.float_btn img {
    -webkit-filter: drop-shadow(0 0 10px #000);
    filter: drop-shadow(0 0 10px #000);
    transition: 0.5s;
}

.float_btn img:hover {
    -webkit-filter: drop-shadow(0 0 5px #00a9e7);
    filter: drop-shadow(0 0 5px #00a9e7);
}


@media only screen and (max-width: 1024px) {
    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    body {
        background-size: 150%;
    }

    .inner {
        width: 95%;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv .contents {
        margin-left: 0;
        width: 100%;
    }

    .mv .contents .heading {
        font-size: 3.4rem;
    }

    .mv .contents .title {
        font-size: 8rem;
    }

    .mv .contents .box {
        width: 550px;
    }

    .mv .contents .box .text {
        font-size: 2.4rem;
    }

    .mv .contents .box .text span {
        font-size: 4rem;
    }

    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about .box.box01 {
        margin-top: 100px;
    }

    .about .box.box02,
    .about .box.box03,
    .about .box.box04,
    .about .box.box05 {
        margin-top: 200px;
    }

    .about .about_text {
        font-size: 4.2rem;
    }

    .about .box .title {
        font-size: 4.2rem;
    }

    .about .box .title span {
        font-size: 6rem;
    }

    .about .box .text {
        text-align: center;
    }

    .about .box .video_box {
        position: relative;
    }

    .about .box .video_box .tablet {
        width: 93%;
        height: auto;
        border-radius: 7px;
    }

    .about .box .title {
        text-align: center;
    }

    .about .box.box01 .video_box {
        width: 70%;
        height: auto;
        margin: 20px auto;
    }

    .about .box.box02 {
        position: relative;
    }

    .about .box.box02 .video_box {
        width: 70%;
        height: auto;
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
    }

    .about .box.box03,
    .about .box.box05 {
        position: relative;
        display: block;
    }

    .about .box.box03 .video_box {
        width: 70%;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto;
    }

    .about .box.box04 .video_box {
        width: 70%;
        height: auto;
        margin: 20px auto;
    }

    .about .box.box05 .video_box {
        width: 70%;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto;
    }



    /* ----------------------------------------------------------
youtube
---------------------------------------------------------- */

    .youtube {
        padding: 100px 0;
    }

    .youtube .video_box {
        width: 70%;
        width: 70%;
        margin: 0 auto;
    }

    .youtube .video_box iframe {
        width: 77%;
        height: 100%;
    }


    /* ----------------------------------------------------------
achievement
---------------------------------------------------------- */

    .achievement {
        padding: 100px 0;
    }

    .achievement .layout .img:first-of-type {
        margin-right: 50px;
    }

    /* ----------------------------------------------------------
    price
    ---------------------------------------------------------- */

    .price {
        padding: 100px 0;
    }

    .price .title {
        font-size: 3.4rem;
    }

    .price .box {
        padding: 50px 25px;
    }

    .price .btn a {
        font-size: 1.8rem;
        padding: 8px 40px 10px;
    }

    /* ----------------------------------------------------------
    faq
    ---------------------------------------------------------- */

    .faq .faq_box {
        width: 100%;
    }


    /* ----------------------------------------------------------
    contact
    ---------------------------------------------------------- */

    .contact .title {
        font-size: 4.2rem;
    }

    .contact .inner iframe {
        width: 100%;
    }


    /* ----------------------------------------------------------
step
---------------------------------------------------------- */

    .step .credit_card span {
        padding: 15px 100px;
    }

    .step .layout .box {
        width: 20%;
    }

    .step .layout .box .img {
        text-align: center;
    }

    .step .layout .box .img img {
        width: 110px;
    }

    .step .layout .arrow {
        width: calc(100% - 4%);
        height: 6px;
        top: 52px;
        left: 5%;
    }

    .step .layout .arrow:after {
        right: -1%;
        top: -5px;
    }

    .step .layout .text {
        font-size: 1.8rem;
        text-align: center;
    }

    /* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

    .float_btn {
        right: 30px;
        bottom: 50px;
    }

    .float_btn img {
        width: 130px;
    }

}

@media only screen and (max-width: 599px) {


    body {
        background: url(../images/footer_bg.png), linear-gradient(#000000, #555555);
        background-size: 300%;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv .contents {
        margin-left: 0;
        width: 100%;
    }

    .mv .contents .heading {
        font-size: 5.2vw;
    }

    .mv .contents .logo {
        margin-top: 30px;
    }

    .mv .contents .logo img {
        width: 90%;
    }

    .mv .contents .title {
        font-size: 10.8vw;
    }

    .mv .contents .box {
        width: 90%;
    }

    .mv .contents .box .text {
        font-size: 4vw;
        line-height: 1.3;
    }

    .mv .contents .box .text span {
        font-size: 5.8vw;
    }

    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about {
        padding: 10% 0;
    }

    .about .box.box01 {
        margin-top: 10%;
    }

    .about .box.box02,
    .about .box.box03,
    .about .box.box04,
    .about .box.box05 {
        margin-top: 20%;
    }

    .about .about_text {
        font-size: 3.2rem;
    }

    .about .box {
        margin-top: 20%;
    }

    .about .box .title {
        font-size: 3.2rem;
    }

    .about .box .title span {
        display: block;
        font-size: 4.2rem;
        line-height: 1.3;
    }

    .about .box .list .heading {
        font-size: 2.4rem;
    }

    .about .box .list .text {
        font-size: 2rem;
        margin-left: 20px;
    }

    .about .box.box01 .video_box {
        width: 100%;
    }

    .about .box.box02 {
        position: relative;
    }

    .about .box.box02 .video_box {
        width: 100%;
    }

    .about .box.box03 .video_box {
        width: 100%;
    }

    .about .box.box04 .video_box {
        width: 100%;
    }

    .about .box.box05 .video_box {
        width: 100%;
    }

    /* ----------------------------------------------------------
youtube
---------------------------------------------------------- */

    .youtube {
        padding: 10% 0;
    }

    .youtube .video_box {
        width: 100%;
    }

    .youtube .video_box iframe {
        width: 77%;
        height: 100%;
    }

    /* ----------------------------------------------------------
    achievement
    ---------------------------------------------------------- */

    .achievement {
        padding: 10% 0;
    }

    .achievement .title {
        font-size: 3.4rem;
    }

    .achievement .layout {
        margin-top: 10%;
        padding: 0 10px;
    }

    .achievement .layout .img:first-of-type {
        margin-right: 20px;
    }

    /* ----------------------------------------------------------
    price
    ---------------------------------------------------------- */

    .price {
        padding: 10% 0;
    }

    .price .title {
        font-size: 3.4rem;
    }

    .price .zero_plan {
        margin-top: 10%;
    }

    .price .layout {}

    .price .box {
        padding: 50px 0;
        margin-top: 10%;
    }

    .price .price_title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .price .layout .img {
        width: 49%;
        margin-bottom: 2%;
    }

    .price .layout .img:nth-of-type(5),
    .price .layout .img:last-of-type {
        margin-bottom: 10%;
    }

    /* ----------------------------------------------------------
faq
---------------------------------------------------------- */

    .faq {
        padding: 10% 0;
    }

    .faq .title {
        font-size: 3.4rem;
    }

    .faq .faq_box {
        padding: 20px 10px;
    }

    .faq .faq_box:first-of-type {
        margin-top: 10%;
    }

    .faq .faq_box dt {
        font-size: 2rem;
    }

    .faq .faq_box dt:after {
        height: calc(15px / 2 * tan(60deg));
        width: 13px;
        top: 8px;
    }

    .faq .faq_box.active dt:after {
        transform: rotate(180deg);
    }

    .faq .faq_box dd {
        font-size: 1.6rem;
        padding-top: 20px;
    }

    /* ----------------------------------------------------------
    contact
    ---------------------------------------------------------- */

    .contact {
        padding: 10% 0;
    }

    .contact .title {
        font-size: 3.4rem;
        margin-bottom: 10%;
    }

    .contact .layout {
        display: block;
        margin-bottom: 40px;
    }

    .contact .layout dt {
        font-size: 2rem;
        width: 100%;
        position: relative;
        padding-left: 45px;
        margin-bottom: 10px;
    }

    .contact .layout dt::before {
        font-size: 1.2rem;
        border-radius: 3px;
        padding: 0 5px 1px;
        top: 6px;
    }

    .contact .layout dd {
        width: 100%;
    }

    .contact .layout dd input {
        font-size: 1.6rem;
        padding: 5px;
    }

    .contact .privacy,
    .contact .notes {
        font-size: 1.4rem;
    }

    .contact .notes {
        text-align: left;
    }

    .contact .btn input {
        font-size: 1.8rem;
    }

    /* form_contact  */

    .contact.form_contact {
        padding: 200px 0 10%;
    }

    .contact.form_contact .box {
        margin-top: 100px;
    }

    .contact.form_contact .form_contact_layout {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .contact.form_contact .form_contact_title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .contact.form_contact .form_contact_layout .img {
        width: 49%;
        margin-bottom: 2%;
    }

    .contact.form_contact .form_contact_layout .img:nth-of-type(5),
    .contact.form_contact .form_contact_layout .img:last-of-type {
        margin-bottom: 10%;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer .layout li a {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
step
---------------------------------------------------------- */

    .step {
        padding: 10% 0;
    }

    .step .title {
        font-size: 3.4rem;
    }

    .step .title span {
        font-size: 2.8rem;
    }

    .step .credit_card {
        font-size: 2rem;
        margin: 7% auto 10%;
    }

    .step .credit_card span {
        padding: 10px 20px;
    }

    .step .layout {
        display: block;
    }

    .step .layout .box {
        width: 100%;
        margin-bottom: 50px;
        position: relative;
        z-index: 10;
    }

    .step .layout .box .img {
        text-align: center;
    }

    .step .layout .box .img img {
        width: 40%;
    }

    .step .layout .arrow {
        width: 6px;
        height: calc(100% - 20px);
        top: 67px;
        left: calc(50% - 3px);
    }

    .step .layout .arrow:after {
        content: '';
        height: calc(19px / 2* tan(60deg));
        width: 18px;
        -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background-color: #000;
        position: absolute;
        right: -6px;
        bottom: -5px;
        top: auto;
    }

    .step .layout .text {
        font-size: 1.8rem;
    }

    .step .layout .text br {
        display: none;
    }

    .step .layout .text span {
        font-size: 1.8rem;
        background-color: #fff;
        padding: 5px 15px;
        border: 1px solid #000;
    }

    /* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

    .float_btn {
        right: 20px;
        bottom: 40px;
    }

    .float_btn img {
        width: 90px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/