@charset "utf-8";

/* リセットCSS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 1s;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}


nav,
main,
footer {
    margin: 0 auto;
    width: min(100%, 1000px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
    background-color: #e8f9f9;
    background-image: url(../image/background.webp);
    background-size: contain;
}

img {
    max-width: 100%;
}

h2 {
    text-align: center;
}


/* ここから */

/* オープニングアニメーション */

#load_animation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #effcff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#load_animation .load_img {
    padding: 50px 0;
}

#load_animation .load_img img {
    width: 50vh;
    height: auto;
    display: none;
}

#load_animation .loading_gif {
    padding: 50px 0;
}

.fadeIn {
    transition: 1s;
    opacity: 0;
}

/* かつ丼　ここから */
/* サイト共通コンテナ */
/* .container {
    max-width: 650px;
    margin: 0 auto;
} */
.title-logo {
    height: 80px;
    position: fixed;
    top: 0;
}

#anniv-book {
    width: 909px;
    height: 641px;
    margin: 0 auto;
    box-shadow: 10px 10px 10px #c2c2c2;
}

ul {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

ul li {
    width: 50%;
    float: left;
}

ul::after {
    content: "";
    display: block;
    clear: both;
}

#prevpage,
#nextpage {
    cursor: pointer;
}

/* かつ丼　ここまで */

.first-view {
    margin-top: 50px;
}

.first-view img {
    display: block;
    height: 100vh;
    object-fit: contain;
    margin: 0 auto;
}

.message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    font-size: 0.6em;
    line-height: 2em;
    margin: -350px auto 100px auto;
    rotate: 0.5deg;
}

.footer {
    font-size: 0.6em;
    text-align: center;
    background-color: #41b8d5;
    padding: 100px;
    color: #fff;
    width: 100%;
}

/* ここからスマホ */
/* ファーストビュー */
@media screen and (max-width:768px) {
    .first-view img {
        height: 70vh;
    }

    /* 本 */
    #anniv-book {
        width: 100%;
        margin: 170px auto 0px auto;
    }

    .message {
        width: 80%;
        height: auto;
    }

    .footer {
        padding: 30px;
    }
}

#rec img {
    height: 70vh;
    width: auto;
}

.fuantei {
    color: blue;
    margin: 50px;
    border-bottom: solid 1px blue;
}