@charset "UTF-8";

html {
    font-size: 62.5%;
    /*16px ＊ 62.5% = 10px*/
}


@media screen and (max-width:414px) {
    .cta_btn_pc {
        display: none;
    }
}

@media screen and (min-width:415px) {
    body {
        background-image: url(../img/IMG_1392-1-scaled-1\ 3.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed
    }

    .cta_btn_sp {
        display: none;
    }

    .cta_btn_pc {
        width: 200px;
        height: 200px;
        position: fixed;
        bottom: 20px;
        right: 10%;
        z-index: 1000;
    }

    .cta_btn_pc:hover {
        opacity: 0.9;
    }

    .cta_btn_pc a img {
        height: 200px;
        width: 200px;
    }
}


main {
    background-color: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    min-width: 360px;
    max-width: 414px;
    margin: 0 auto;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
}



.top_logo {
    background-color: #fff;
    width: 80px;
    height: 110px;
    background-image: url(../img/logo.png);
    background-size: cover;
    position: sticky;
    margin-left: auto;
    /* 要素を右寄せする */
    margin-right: 8%;
    /* 右から8%の余白を指定 */
    top: 0;
    z-index: 100;
}

.top {
    height: 522px;
    background-image: url(../img/top_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: 0;
    margin-bottom: 40px;
}

.top h1 {
    text-align: center;
    position: relative;
    top: 60px;
    font-family: serif;
    color: #333;
}

.cta_btn_sp {
    width: 300px;
    height: 60px;
    border-radius: 30px;
    background: var(--CTA, linear-gradient(180deg, #06C755 0%, #17B156 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: fixed;
    z-index: 1000;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.cta_btn_sp a {
    color: #fff;
    font-weight: 500;
    font-size: 2.0rem;
    text-decoration: none;
    line-height: 60px;
}

.cta_btn_sp:hover {
    opacity: 0.9;
}

.content01 {
    height: 520px;
    width: 90%;
    margin: 0 auto;
}

.content01 h1 {
    text-align: center;
    font-size: 2.4rem;
}

.content01_imagearea_1 {
    width: 200px;
    height: 200px;
    background-image: url(../img/F42D33B5-AB38-4D6B-860C-37B4C6C00F27-320x320.png);
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.content01_imagearea_2 {
    width: 200px;
    height: 200px;
    background-image: url(../img/17B25524-28FE-4270-842D-5F365A5B5E4F-320x320.png);
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.content01_imagearea_3 {
    width: 200px;
    height: 200px;
    background-image: url(../img/G7A4796-320x320.png);
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.content01 ul {
    list-style: none;
    padding: 0;
}

.content01 h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.content01 h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.content01 p {
    font-size: 1.4rem;
    margin-top: 0px;
}

/*==================================================
スライダーのためのcss
===================================*/

.slider {
    position: relative;
    z-index: 1;
    height: 100vh;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    z-index: 3;
    top: 10%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;
    /*矢印の色*/
    border-right: 2px solid #ccc;
    /*矢印の色*/
    height: 20px;
    width: 20px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    transform: rotate(45deg);
}


.content02 h1 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

.content02_title_bold {
    color: #8D8472;
    font-size: 3.0rem;
    font-weight: bold;
}

.content02_imagearea {
    background-image: url(../img/S__32104459\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 420px;
    width: 100%;
    position: relative;
    padding-top: 40px;
    margin-top: 30px;
    /* ボタンとの距離を確保 */
}

.content02 .button_line {
    width: 345px;
    height: 50px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 25px;
    background: linear-gradient(180deg, #06C755 0%, #17B156 100%);
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    /* 位置指定を変更 */
    position: relative;
    /* absoluteからrelativeに変更 */
    margin: 20px auto 0;
    /* 上に余白を追加して中央に配置 */
    display: block;
    /* 中央に配置 */
    transform: none;
    /* transformのプロパティを削除 */
}

.button_line:hover {
    opacity: 0.9;
}

.content02 ul {
    list-style: none;
    padding-left: 0px;
    position: absolute;
    right: 5%;
    top: 40%;
}

.content02 ul li {
    background-color: rgba(255, 255, 255, 0.90);
    height: 40px;
    width: 200px;
    border-radius: 2px;
    font-size: 2.0rem;
    margin-bottom: 10px;
    margin-left: 20px;
    line-height: 40px;
    text-align: left;
}

.content02_check {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_check.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}

.content03 {
    height: 450px;
    background-image: url(../img/content03.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content04 {
    height: 700px;
    background-image: url(../img/content04_1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0px;
}

.content05 {
    text-align: center;
    padding-top: 30px;
    position: relative;

}

.content05 h1 {
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
}

.content05 h2 {
    display: inline-block;
    position: relative;
    left: 15px;
    font-size: 2.0rem;
}

.content05 h2::before {
    content: '';
    display: block;
    height: 4px;
    width: 24px;
    background-color: #DF5656;
    transform: rotate(135deg);
    position: absolute;
    left: -2em;
    bottom: 20px;
}

.content05 h2 span {
    font-size: 3.2rem;
}

.content05 h2 .fs26 {
    font-size: 2.6rem;
}

.content05_reward img {
    width: 100%;
    margin-top: 20px;
}

.content05 div {
    font-size: 1.6rem;
}

.content05 .fukidashi {
    text-align: left;
    background-color: #F0F0F0;
    padding: 15px;
    margin: 20px auto 0px;
    width: 95%;
    border-radius: 4px;
    position: relative;
}

.content05 .fukidashi::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #f0f0f0;
}

.content05_customers {
    margin-top: 20px;
}

.content05_customers .monthly_customers {
    width: 95%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.content05_customers .unit_price {
    width: 95%;
    margin-bottom: 20px;
}

.content05_color img {
    width: 95%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.content05_bonus {
    margin-top: 10px;
}

.content05_bonus img {
    width: 100%;
    margin-top: 10px;
}

.content05_bonyakai {
    margin-top: 20px;
}

.content05_bonyakai img {
    width: 100%;
    margin-top: 10px;
}


.content06 {
    height: 320px;
    background-image: url(../img/content06.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 0px;
}

.content07 h1 {
    background-color: #8D8472;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    text-align: center;
    height: 48px;
    line-height: 48px;
    margin-top: 0;
}

.content07 h2 {
    font-size: 2.4rem;
    position: relative;
    text-align: center;
}

.content07 h2::before {
    content: "";
    width: 25px;
    height: 4px;
    background-color: #DF5656;
    position: absolute;
    top: 40%;
    transform: rotate(135deg);
}

.content07_title_1::before {
    position: absolute;
    left: 30%;
}

.content07_title_2::before {
    position: absolute;
    left: 24%;
}

.content07 ul {
    width: 95%;
    margin: 0 auto;
    background-color: #F2F0EB;
    padding: 20px 30px;
}

.content07 ul li {
    font-size: 1.6rem;
    line-height: 1.8em;
}

.content07 ul li:first-child {
    font-weight: bold;
}

.content08 {
    height: 650px;
    background-image: url(../img/content08_1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: 20px;
}

.content08 .button_line {
    width: 345px;
    height: 50px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 25px;
    background: linear-gradient(180deg, #06C755 0%, #17B156 100%);
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}


.content09 {
    padding: 0 15px 0;
    margin-bottom: 30px;
}

.content09_imagearea {
    width: 233px;
    height: 233px;
    border-radius: 50%;
    background-image: url(../img/S__31948893\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 30px auto 0;
}

.content09 h1 {
    font-size: 2.0rem;
    font-weight: bold;
}

.content09_profile {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.content09_profile_detail {
    font-size: 1.4rem;
}

.content10 {
    text-align: center;
}

.content10 h1 {
    display: inline-block;
    font-size: 2.0rem;
    text-align: left;
}

.content10_imagearea {
    height: 220px;
    background-image: url(../img/IMG_1392-1-scaled-1.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}

.content10_sentence {
    font-size: 1.6rem;
    text-align: left;
    margin-top: 20px;
    padding: 0 15px;
}

.content11 {
    height: 260px;
    background-image: url(../img/content11_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 20px;

}

.content12 h1 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-top: 30px;
}

.content12_title_bold {
    color: #8D8472;
    font-size: 3.0rem;
    font-weight: bold;
}


.content12_imagearea {
    background-image: url(../img/content12_1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 420px;
    width: 100%;
    position: relative;
    padding-top: 40px;
    margin-top: 30px;
    /* ボタンとの距離を確保 */
}

.content12 .button_line {
    width: 345px;
    height: 50px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 25px;
    background: linear-gradient(180deg, #06C755 0%, #17B156 100%);
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    position: relative;
    /* absoluteからrelativeに変更 */
    margin: 20px auto;
    /* 上下に余白を追加して中央配置 */
    display: block;
    /* ボタンを中央に配置 */
}

.content12 ul {
    list-style: none;
    padding-left: 0px;
    position: absolute;
    top: 40%;
}

.content12 ul li {
    background-color: rgba(255, 255, 255, 0.90);
    height: 40px;
    width: 200px;
    border-radius: 2px;
    font-size: 2.0rem;
    margin-bottom: 10px;
    margin-left: 20px;
    line-height: 40px;
    text-align: left;
}

.content12_check {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_check.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}


.content13 h1 {
    font-size: 2.0rem;
    font-weight: bold;
    position: relative;
}

.content13 h1::before {
    content: "";
    width: 25px;
    height: 4px;
    background-color: #DF5656;
    position: absolute;
    top: 40%;
    left: 33%;
    transform: rotate(135deg);
}

.content13 table {
    font-size: 1.6rem;
}

.content13 tr th {
    color: #8D8472;
}

.content14 {
    height: 460px;
    background-image: url(../img/content14_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 30px 0;

}

.content15 {
    margin: 0 auto;
}

.content15 hr {
    width: 90%;
    color: #8D8472;
}

.content15 {
    font-size: 1.6rem;
    position: relative;
    width: 90%;
}

.content15 .q {
    display: inline-block;
    padding-left: 44px;
    line-height: 27px;
    margin-bottom: 8px;
    margin-top: 8px;
    font-weight: 700;
}

.content15 .q::before {
    content: '';
    display: block;
    height: 27px;
    width: 27px;
    background-image: url(../img/content15_q.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 10px;
}

.content15 .a {
    display: inline-block;
    padding-left: 44px;
    line-height: 27px;
}

.content15 .a::before {
    content: '';
    display: block;
    height: 27px;
    width: 27px;
    background-image: url(../img/content15_a.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 10px;
}

.content16 h1 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-top: 30px;
}

.content16_title_bold {
    color: #8D8472;
    font-size: 3.0rem;
    font-weight: bold;
}

.content16_imagearea {
    background-image: url(../img/content16_1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 415px;
    width: 100%;
    position: relative;
    padding-top: 40px;
    margin-top: 30px;
    /* ボタンとの距離を確保 */
}

.content16 .button_line {
    width: 345px;
    height: 50px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 25px;
    background: linear-gradient(180deg, #06C755 0%, #17B156 100%);
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    position: relative;
    /* absoluteからrelativeに変更 */
    margin: 20px auto;
    /* 上下に余白を追加して中央配置 */
    display: block;
    /* ボタンを中央に配置 */
}

.content16 ul {
    list-style: none;
    padding-left: 0px;
    position: absolute;
    right: 5%;
    top: 40%;
}

.content16 ul li {
    background-color: rgba(255, 255, 255, 0.90);
    height: 40px;
    width: 200px;
    border-radius: 2px;
    font-size: 2.0rem;
    margin-bottom: 10px;
    margin-left: 20px;
    line-height: 40px;
    text-align: left;
}

.content16_check {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_check.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
}

.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein {
    animation-name: fadein;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(100px);

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
