@charset "UTF-8";

body {
    width: 100%;
    margin: 0 auto;
    font-family: 'Noto Serif JP',
        serif;
    background-color: #fff;
}




/* スタートページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* ふわふわする蝶々三匹ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.fuwafuwa-1 {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    background: url(img/papillon-1.png) no-repeat center center / 35px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    position: absolute;
    top: -35%;
    left: 5%;

    width: 50%;
    height: 50%;
}

.fuwafuwa-2 {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    background: url(img/papillon-2.png) no-repeat center center / 40px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    position: absolute;
    top: 5%;
    left: 45%;
    width: 50%;
    height: 50%;
}

.fuwafuwa-3 {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    background: url(img/papillon-3.png) no-repeat center center / 35px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    position: absolute;
    top: 43%;
    left: 8%;
    width: 50%;
    height: 50%;
}


@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(-7deg);
    }

    50% {
        transform: translate(0, -7px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(7deg);
    }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */


.start {
    position: relative;
    width: 100%;
    height: 400px;
}


.start img {
    width: 400px;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.fade {
    background: #fff5ef;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fade p {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;


}

.message {
    font-family: 'Noto Serif JP',
        serif;
    font-size: 16px;
    line-height: 168%;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #c7a50c;
    width: 100%;
    padding-top: 300px;
    text-align: center;

}

/*文章の一部の色を指定*/
.highlight {
    color: rgb(43, 106, 240);
}

/* リンクの前に矢印を表示 */
.message a::before {
    content: "➜";
    /* 好きな矢印記号（ ➔ , ≫ , → など） */
    margin-right: -5px;
    /* 矢印と文字の間の隙間 */
    color: rgb(43, 106, 240);
    /* 矢印の色（お好みで変更してください） */
    display: inline-block;
    vertical-align: middle;
}

/* （任意）URL部分を少し小さくして整える */
.message a span {
    font-size: 0.8em;
}


/* ------------------------------------------ */

/* PCのみの表示 */

.sp-only {
    display: none;
}

p.sp-only {
    display: none;
}

.switch {
    display: none;
}

/* レスポンシブデザイン ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/


/* タブレット画面表示の記述 ---------------------------------------*/

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

/* スマホサイズの記述 widht390px --------------------------------*/

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


    .body {
        margin: 0 auto;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    br.sp-only {
        display: block;
    }




    /* スタートページの記述 */

    .start {
        height: 250px;
    }

    .start img {
        width: 250px;
    }

    .message {
        font-size: 10px;
        padding-top: 160px;
    }

    .fuwafuwa-1 {
        top: -45%;
        left: 10%;
        width: 40%;
        height: 60%;
        background-size: 28px auto;
    }

    .fuwafuwa-2 {
        left: 60%;
        width: 50%;
        top: -5%;
        background-size: 25px auto;

    }

    .fuwafuwa-3 {
        top: 40%;
        left: 8%;
        width: 25%;
        height: 60%;
        background-size: 23px auto;
    }

}