@charset "UTF-8";

/**********************************************************************
 * File: 404.css
 * Date: 3 August 2020
 * Modified: 
 * Written by: KotaroW
 * Description:
 *      404! It's 404!
**********************************************************************/

@import url("base-x.css");

html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
}

.mob-background-attachment {
    background-attachment: scroll;
}

a {
    color: #818469;
}

#intro {
    min-height: 100vh;
    position: relative;
    background: url(../image/IMG_1638.jpg) no-repeat center center;
    background-size: cover;
    -webkit-background-size: cover;
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#intro span {
    font-family: "Libre Baskerville", seif;
    font-size: 8vw;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    position: relative;
    z-index: 10;
    height: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}

#intro span:first-of-type {
    opacity: 0.1;
}

#intro span:last-of-type {
    font-size: 3vw;
    color: #ddd;
    margin-top: 0.75em;
}

/***** for intro texts *****/
@keyframes Monkey {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 1em;
        opacity: 1;
    }
}
@-webkit-keyframes Monkey {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 1em;
        opacity: 1;
    }
}
/***** animation ends *****/

/***** contents *****/
#contents {
    position: relative;
    /*z-index: 10;*/
    background: #fff;
}

#contents > section {
    /*position: inherit;*/
    z-index: inherit;
    padding: 5% 0;
}


/***** media query *****/
@media screen and (min-width: 1500px) {
    #intro span {
        font-size: 120px;
    }
    #intro span:last-of-type {
        font-size: 45px;
    }
}

@media screen and (min-width: 1200px) {

}

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

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

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

@media screen and (max-width: 600px) {
    #intro span {
        font-size: 42px;
    }
    #intro span:last-of-type {
        font-size: 18px;
    }
    #customer-bulletin h3 {
        font-size: 21px;
    }
    #reservation div > a {
        font-size: 18px;
    }
}


