@charset "utf-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: YuGothic, "Yu Gothic", 游ゴシック, 游ゴシック体, sans-serif;
    line-height: 1;
    color: #666666;
    background-color: #faf7f3;
}

address {
    font-style: normal;
}

.flex {
    display: flex;
}





/* ここからヘッダー */

header {
    padding-top: 10px;
    background-color: #FFF0F5;

}

h1 {
    text-align: center;
    margin-bottom: 5px;
}

nav {
    padding-bottom: 5px;
}

nav .flex {
    justify-content: center;
    gap: 25px;
}

nav ul li {
    width: 155px;
    line-height: 45px;
    text-align: center;
    background-color: #8c6239;
    font-size: 20px;
    border-radius: 15px;

}

nav ul li a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;

    transition: color .3s, letter-spacing .3s;


}

nav ul li a:hover {

    color: red;
    letter-spacing: 0.1em;

}

nav .current {
    background-color: #d99a9d;
}


/* ここからbody */


.wrap {
    max-width: 1080px;
    margin: 0 auto;
}

h2{
    padding: 30px 0;
    text-align: center;
    font-size: 28px;
}


/* ここからフッター */
footer {
    background-color: #FFF0F5;

}

footer  {

    padding: 10px 0;
    text-align: center;
}



small {
    font-size: 12px;
    color: #666666;
}

.to-top {
    /* ブラウザ右下に固定 */
    position: fixed;
    right: 40px;
    bottom: 50px;
}


/* ここからレスポンシブ対応 */

.wrap {
    width: auto;
    max-width: 960px;
    min-width: 320px;
}




.mv p img {
    max-width: 100%;
    height: auto;
}





.nav-switch {
    display: none;
}

@media screen and (max-width:768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 3;

    }

    nav .flex {
        gap: 5px;
    }


    header nav ul li {
        width: 100%;
        line-height: 35px;
        font-size: 15px;
        padding-bottom: 0px;
    }





    h1 img {
        width: 150px;
        height: auto;
    }

    h1 {
        line-height: 1;
    }






    footer {
        text-align: center;
        padding: 0;
    }



    /*ハンバーガー  */
    .nav-burger {
        display: block;
        width: 30px;
        height: 30px;
        background-color: aqua;

        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 1;


        background-image: url(../images/hamburger.png);
    }

    .nav-switch:checked~.nav-burger {
        background-image: url(../images/close.png);
    }

    .nav-burger:hover {
        cursor: pointer;
    }

    .navi {
        display: none;
    }

    .nav-switch:checked~.navi {
        display: block;
    }

    nav {
        background-color: rgba(232, 215, 197, 0.9);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding-top: 100px;

    }

    nav ul li a:hover {
        color: rgba(255, 255, 255, 0.6);
        background: transparent;
    }



    nav ul {
        flex-direction: column;



    }





}



/* ここからjs関連の記述 */

.googleFonts {
    font-family: "Kaisei Opti", serif;
    font-weight: 700;
    font-style: normal;
}


@keyframes yura {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}


.css_anime {
    animation: yura 8s infinite linear;
}


@keyframes usaBoder-anime {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -80px 0;
    }
}

.slider-area {
    width: 100%;
    height: 30px;

    background-image: url(../images/slide_image_80x30.png);
    background-repeat: repeat-x;
    background-position: 0 0;

    animation: usaBoder-anime 15s linear infinite;
}


@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }

}


.fadeUp{
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 3s forwards;
}

.delay-1 {
    animation-delay: 0S;
}

.delay-2 {
    animation-delay: 0.3S;
}

.delay-3 {
    animation-delay: 0.6S;
}


