@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}






html {
    font-size: 18px;
}

body {
    background-color: #fff;
    font-size: 1rem;
    margin: 0px;
    /* font-family: "futura-pt", "游ゴシック体", "游ゴシック", "Yu Gothic", sans-serif; */
    font-family: "Yu Mincho", "Noto Serif JP", serif;
}

img {
    max-width: 100%;

}



/* メニュー */
.m-header {
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: visibility 0.2s linear, opacity 0.2s linear;
}

/* メニュー展開時 .activeが付与されている */
.m-header.active {
    visibility: visible;
    opacity: 1;
}

.m-menu {
    background-color: #fff;
    max-width: 100%;
    background: #49a1ffe9;
    /* background: linear-gradient(to right, #ff0000 0%, 赤 #ff7f00 33%, オレンジ #ffff00 66%, 黄 #00ff00 100% 緑); */
    min-height: 100vh;

}


/* メニュー ロゴ ヘッダー */
.m-munu__logo {
    margin-bottom: 70px;
    max-width: 100%;
    height: auto;
}

.m-munu__logo a {
    display: flex;
}

.m-munu__logo a img {
    max-width: 49px;
    max-height: 49px;
    margin: 1vw 0 0 2.5vw;
}

.m-munu__logo a h1 {
    margin: 10px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 1.7rem;
}



/* メニュー コンテンツ */
.m-content {
    margin: 0 auto;
    padding: 7vw 10vw 0;
    box-sizing: border-box;
    max-width: 100%;


}


.m-menu__main-navi {
    margin: 0 0 60px 0;
}

.m-menu__main-navi ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 16px;
}

.m-menu__main-navi li {
    width: calc(50% - 8px);
}

.m-menu__main-navi a {
    display: block;
    padding-bottom: 9.5px;
    color: #fff;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid #fff;
}



.m-menu__contact {
    margin: 0 0 40px 0;
}

.m-contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 18px;
    max-width: 100%;
    background-color: #fff;
    color: #5f5f5f;
    font-weight: 700;
    border-radius: 28px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.m-contact-button:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    background: #fcfcfc;
    transition: background-color 0.5s;
}

.m-contact-button__text {
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    align-items: center;
}

.m-contact-button__text:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}



/* メニュー SNS */
.m-menu__sns {
    margin: 0 0 30px 0;
}


.m-menu__sns ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;

}


.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 50%;
}




.sns-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


.sns-icons:nth-of-type(1) a:hover {
    color: #1877F2;
    /* Twitterの青 */
}

.sns-icons:nth-of-type(2) a:hover {
    color: #1877F2;
    /* Facebookの青 */
}

.sns-icons:nth-of-type(3) a:hover {
    color: #E4405F;
    /* Instagramのピンク */
}




/* ポリシー コピーライト関連 */
.m-menu__sub-navi {
    margin: 0 0 8px 0;
}


.m-menu__sub-navi ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.m-menu__sub-navi li {
    margin: 0;
    padding: 0;
    line-height: 1;
}


.m-menu__sub-navi a {
    line-height: 1;
    font-family: "futura-pt", sans-serif;
    font-size: .7142857143rem;
    color: #fff;
    letter-spacing: .05em;
}

.m-menu__sub-navi li:nth-of-type(n+2) {
    margin-top: 8px;
}

.m-menu__copyright {
    line-height: 1;
    font-family: "futura-pt", sans-serif;
    font-size: .7142857143rem;
    color: #fff;
    letter-spacing: .05em;
    text-align: right;
}




a {
    text-decoration: none;
}

img {
    max-width: 100%;
}



/* ハンバーガーメニュー */
.m-hamburger {
    width: 27px;
    height: 21px;
    position: fixed;
    top: 23px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}


.m-hamburger span {
    display: block;
    background: #000;
    width: 81.4814814815%;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    transition: opacity 0.2s linear;
}

.m-hamburger:before,
.m-hamburger:after {
    content: "";
    display: block;
    background: #000;
    height: 2px;
    position: absolute;
    right: 0;
    transition: width 0.2s linear, background-color 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, width 0.2s linear, background-color 0.2s linear;
    transition: transform 0.2slinear, width 0.2s linear, background-color 02s linear, -webkit-transform 0.2s linear;
}


.m-hamburger:before {
    width: 100%;
    top: 0;
}


.m-hamburger:after {
    width: 66.6666666667%;
    top: calc(100% - 2px);
}


.m-hamburger.active {}



.m-hamburger.active span,
.m-hamburger.active:before,
.m-hamburger.active:after {
    background: #fff;
}

.m-hamburger.active span {
    opacity: 0;
}

.m-hamburger.active:before {
    transform: translateY(9px) rotate(45deg);
}


.m-hamburger.active:after {
    width: 100%;
    transform: translateY(-9px) rotate(-45deg);
}







/* l-free-trial関連 ..................................................................*/
.m-free-trial {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    z-index: 2;
}


.m-free-trial__content {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 0 15px 0;

}

.m-free-trial__button {
    display: block;
    padding: 8px;
    max-width: 100%;
    min-width: 90%;
    font-size: 0.7rem;
    font-weight: 1000;
    line-height: 1.5;
    text-align: center;
    background: #f1f7ffef;
    border-radius: 30px;
    box-shadow: 0 0 10px #ffffff;
    color: #000;


}

.m-free-trial__button strong {
    font-size: 1.15rem;
    color: #00cc42;

}




/* header-line ..................................................................*/
.header-line {
    max-width: 100%;
    min-width: 100%;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: start;
    position: fixed;
    z-index: 10;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

}

.header-line-image {
    max-width: 3.125rem;
    max-height: 3.125rem;
    margin: 0.75vw 0 0 2.5vw;
}


.header-line-text {
    margin: 0.8rem 0 0 0.625rem;
    font-size: 1rem;
    font-weight: bold;
}






.heading-21 {
    position: relative;
    margin: 0 3rem;
    padding: .5em .7em .4em;
    border-bottom: 3px solid #2589d0;
    color: #333333;
}

.heading-21::before,
.heading-21::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.heading-21::before {
    background-color: #2589d0;
}

.heading-21::after {
    bottom: -11px;
    background-color: #fff;
}







.box-010 {
    position: relative;
    width: 100%;
    margin: 5rem auto;
    padding: 2.5em 1.5em 1.5em;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #e0efff;
    color: #333333;
}

.box-010 span {
    position: absolute;
    top: -15px;
    transform: translateX(-.3em) rotate(-5deg);
    padding: .5em 2em;
    border-right: 2px dotted rgb(0 0 0 / 10%);
    border-left: 2px dotted rgb(0 0 0 / 10%);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-color: rgb(255 255 255 / 40%);
    font-weight: 600;
    color: #333333;
}

.box-010 p {
    margin: 0;
}

/* about....................................................... */
.about {
    max-width: 100%;
    padding: 10rem 0 1rem 0;

}



.about-caption {
    font-size: 1.5rem;
    margin: 1rem 6rem;
    color: #3c3c3c;
    flex-wrap: wrap;
    /* 横幅がいっぱいになると次の行に折り返す */

}



/* 注意事項ボックス */
.price__note {
    margin: 10px 0 0 0;
    padding: 0 20px;
}




.button-54 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 300px;
    margin: 0 auto;
    padding: .9em 3em .9em 2em;
    border: 1px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #2589d0;
    font-size: 1em;
}

.button-54::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #2589d0;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.button-54:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}









/* 画面幅が768p以下（タブレットサイズ）なら変更 */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    body {
        background-color: #fff;
        font-size: 1rem;
        margin: 0px;
        /* font-family: "futura-pt", "游ゴシック体", "游ゴシック", "Yu Gothic", sans-serif; */
        font-family: "Yu Mincho", "Noto Serif JP", serif;
    }

    img {
        max-width: 100%;

    }



    /* メニュー */
    .m-header {
        visibility: hidden;
        opacity: 0;
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        min-width: 100%;
        height: 100vh;
        overflow-y: scroll;
        transition: visibility 0.2s linear, opacity 0.2s linear;
    }

    /* メニュー展開時 .activeが付与されている */
    .m-header.active {
        visibility: visible;
        opacity: 1;
    }

    .m-menu {
        background-color: #fff;
        padding: 4rem 0 14px;
        max-width: 100%;
        background: #49a1ffe9;
        /* background: linear-gradient(to right, #ff0000 0%, 赤 #ff7f00 33%, オレンジ #ffff00 66%, 黄 #00ff00 100% 緑); */
        min-height: 100vh;

    }


    /* メニュー ロゴ ヘッダー */
    .m-munu__logo {
        margin-bottom: 70px;
        max-width: 100%;
        height: auto;
    }

    .m-munu__logo a {
        display: flex;
    }

    .m-munu__logo a img {
        max-width: 3.125rem;
        max-height: 3.125rem;
        margin: 0.75vw 0 0 2.5vw;
    }

    .m-munu__logo a h1 {
        margin: 10px auto 0px;
        text-align: center;
        color: #fff;
        font-size: 1.7rem;
    }



    /* メニュー コンテンツ */
    .m-content {
        margin: 0 auto;
        padding: 7rem 22.5px 0;
        box-sizing: border-box;
        max-width: 100%;


    }


    .m-menu__main-navi {
        margin: 0 0 60px 0;
    }

    .m-menu__main-navi ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 16px;
    }

    .m-menu__main-navi li {
        width: calc(50% - 8px);
    }

    .m-menu__main-navi a {
        display: block;
        padding-bottom: 9.5px;
        color: #fff;
        line-height: 1;
        text-align: center;
        font-weight: 700;
        border-bottom: 1px solid #fff;
    }



    .m-menu__contact {
        margin: 0 0 40px 0;
    }

    .m-contact-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 18px;
        max-width: 100%;
        background-color: #fff;
        color: #5f5f5f;
        font-weight: 700;
        border-radius: 28px;
        line-height: 1;
        position: relative;
        z-index: 1;
    }

    .m-contact-button:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
        height: 100%;
        border-radius: 30px;
        z-index: -1;
        background: #fcfcfc;
        transition: background-color 0.5s;
    }

    .m-contact-button__text {
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        align-items: center;
    }

    .m-contact-button__text:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background-size: 100% 100%;
    }



    /* メニュー SNS */
    .m-menu__sns {
        margin: 0 0 30px 0;
    }


    .m-menu__sns ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 12px;

    }


    .sns-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 46px;
        height: 46px;
        border: 1px solid #fff;
        border-radius: 50%;
    }




    .sns-icons a {
        display: inline-block;
        margin: 0 10px;
        font-size: 30px;
        color: #ffffff;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .sns-icons:nth-of-type(1) a:hover {
        color: #1877F2;
        /* Twitterの青 */
    }

    .sns-icons:nth-of-type(2) a:hover {
        color: #1877F2;
        /* Facebookの青 */
    }

    .sns-icons:nth-of-type(3) a:hover {
        color: #E4405F;
        /* Instagramのピンク */
    }




    /* ポリシー コピーライト関連 */
    .m-menu__sub-navi {
        margin: 0 0 8px 0;
    }


    .m-menu__sub-navi ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }


    .m-menu__sub-navi li {
        margin: 0;
        padding: 0;
        line-height: 1;
    }


    .m-menu__sub-navi a {
        line-height: 1;
        font-family: "futura-pt", sans-serif;
        font-size: .7142857143rem;
        color: #fff;
        letter-spacing: .05em;
    }

    .m-menu__sub-navi li:nth-of-type(n+2) {
        margin-top: 8px;
    }

    .m-menu__copyright {
        line-height: 1;
        font-family: "futura-pt", sans-serif;
        font-size: .7142857143rem;
        color: #fff;
        letter-spacing: .05em;
        text-align: right;
    }




    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
    }



    /* ハンバーガーメニュー */
    .m-hamburger {
        width: 27px;
        height: 21px;
        position: fixed;
        top: 23px;
        right: 20px;
        cursor: pointer;
        z-index: 1001;
    }


    .m-hamburger span {
        display: block;
        background: #000;
        width: 81.4814814815%;
        height: 2px;
        position: absolute;
        top: calc(50% - 1px);
        right: 0;
        transition: opacity 0.2s linear;
    }

    .m-hamburger:before,
    .m-hamburger:after {
        content: "";
        display: block;
        background: #000;
        height: 2px;
        position: absolute;
        right: 0;
        transition: width 0.2s linear, background-color 0.2s linear, -webkit-transform 0.2s linear;
        transition: transform 0.2s linear, width 0.2s linear, background-color 0.2s linear;
        transition: transform 0.2slinear, width 0.2s linear, background-color 02s linear, -webkit-transform 0.2s linear;
    }


    .m-hamburger:before {
        width: 100%;
        top: 0;
    }


    .m-hamburger:after {
        width: 66.6666666667%;
        top: calc(100% - 2px);
    }


    .m-hamburger.active {}



    .m-hamburger.active span,
    .m-hamburger.active:before,
    .m-hamburger.active:after {
        background: #fff;
    }

    .m-hamburger.active span {
        opacity: 0;
    }

    .m-hamburger.active:before {
        transform: translateY(9px) rotate(45deg);
    }


    .m-hamburger.active:after {
        width: 100%;
        transform: translateY(-9px) rotate(-45deg);
    }







    /* l-free-trial関連 ..................................................................*/
    .m-free-trial {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 100%;
        z-index: 2;
    }


    .m-free-trial__content {
        display: flex;
        justify-content: center;
        gap: 16px;
        padding: 0 0 15px 0;

    }

    .m-free-trial__button {
        display: block;
        padding: 8px;
        max-width: 100%;
        min-width: 90%;
        font-size: 0.7rem;
        font-weight: 1000;
        line-height: 1.5;
        text-align: center;
        background: #f1f7ffef;
        border-radius: 30px;
        box-shadow: 0 0 10px #ffffff;
        color: #000;


    }

    .m-free-trial__button strong {
        font-size: 1.15rem;
        color: #00cc42;

    }




    /* header-line ..................................................................*/
    .header-line {
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: start;
        position: fixed;

    }

    .header-line-image {
        max-width: 3.125rem;
        max-height: 3.125rem;
    }


    .header-line-text {
        margin: 0.8rem 0 0 0.625rem;
        font-size: 1rem;
        font-weight: bold;
    }





    .heading-21 {
        margin: 0 1rem 0 1rem;
    }



    /* about....................................................... */
    .about {
        max-width: 100%;
        padding: 150px 0.625rem 0 0.625rem;
    }


    .about-sub-title {
        font-size: 2rem;
        text-align: center;
        line-height: 30px;
        margin-top: 0px;
        padding-bottom: 20px;
        color: #3178d4;
        font-weight: bold;
    }



    .about-caption {
        font-size: 1rem;
        margin: 1rem 0 0 0;
        color: #3c3c3c;
        flex-wrap: wrap;
        /* 横幅がいっぱいになると次の行に折り返す */

    }





    /* 注意事項ボックス */
    .price__note {
        /* max-height: 0; */
        /* 初期は閉じる */
        overflow: hidden;
        /* background: #f0f8ff; */
        /* 薄い青色背景 */
        border-radius: 8px;
    }






}