* {
    margin: 0;
    padding: 0;
}
body {
    position: relative;
    scroll-behavior: smooth;
    animation: disableScroll .1s linear 2.5s both;
    background-color: #d8d0d4;
    color: #041030;
}
a {
    text-decoration: none;
    color: #041030;
}
li {
    list-style: none;
}
img {
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
	-webkit-user-drag: none;
    -khtml-user-drag: none;
    user-select:none;
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #d8d0d4;
}
/* PC用スタイル */
@media screen and (min-width: 769px) {
    #caption {
        position: fixed;
        top: 0;
        left: 0;
        width: 27vw;
        height: 100vh;
        color: #796d88;
        padding: 3vw;
    }
    #caption h2 {
        font-size: 1.5em;
        margin-bottom: 3vw;
    }
    #caption p {
        font-size: .75em;
    }
    #caption strong {
        font-size: .75em;
    }
    .space {
        font-weight: bold;
        margin: 1.5vw 0;
    }
    main {
        width: 60vw;
        padding-left: 37.7vw;
    }
    main img {
        width: 80%;
        margin: 3vw;
    }
    footer {
        position: fixed;
        left: 3vw;
        bottom: 0;
        text-align: center;
        color: #796d88;
        font-size: 10px;
    }
    #pageTop {
        position: fixed;
        right: 3vw;
        bottom: 0;
        display: inline-block;
        padding: 5vw 3vw;
        opacity: 0;
        transform: translateY(100%);
        background: #92889f;
        box-shadow: #796d88 2px 5px 3px;
        letter-spacing: .15em;
        cursor: pointer;
        transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
    }
    #pageTop:hover {
        background-color: #796d88;
        transform: translateY(3px);
        transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
    }
    #pageTop a {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 1vw;
        color: #fff;
        font-size: 2em;
    }
    /* ここからTOPページボタン上下 */
    #pageTop.upMove {
        animation: upAnime .5s forwards cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }
    @keyframes upAnime {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    #pageTop.downMove {
        animation: downAnime .5s forwards cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }
    @keyframes downAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(100%);
        }
    }
    /* ここまで。 */
    #footer-list {
        display: inline-flex;
        text-align: justify;
        border-left: 1px solid #796d88;
        border-right: 1px solid #796d88;
        font-size: 14px;
        margin-bottom: 20px;
    }
    #footer-list li a {
        display: inline-block;
        color: #796d88;
        margin: 5px;
        padding: 5px 15px 5px 15px;
    }
    footer span {
        vertical-align: sub;
        font-size: 16px;
    }
}
/* スマホ用スタイル */
@media screen and (max-width: 768px) {
    #caption {
        color: #796d88;
        margin: 3vw;
    }
    #caption h2 {
        font-size: 1.5em;
        margin-bottom: 3vw;
    }
    #caption p {
        font-size: .75em;
    }
    #caption strong {
        font-size: .75em;
    }
    .space {
        font-weight: bold;
        margin: 1.5vw 0;
    }
    main {
        width: 90vw;
        margin: 10vw auto 0;
    }
    main img {
        width: 100%;
        margin-bottom: 10vw;
    }
    footer {
        text-align: center;
        color: #796d88;
        font-size: 10px;
        padding: 15px;
    }
    #pageTop {
        display: none;
    }
    #footer-list {
        text-align: center;
        width: 100%;
        border-top: 2px solid #796d88;
        border-bottom: 2px solid #796d88;
        font-size: 18px;
    }
    #footer-list li a {
        display: inline-block;
        width: 100%;
        color: #796d88;
        margin: 5px 0;
        padding: 15px 0;
        border-bottom: 1px solid #796d88;
    }
    #footer-list .last-line a {
        border-bottom: none;
    }
    footer p {
        margin-top: 15px;
    }
    footer span {
        vertical-align: sub;
        font-size: 16px;
    }
}