/*全体CSS*/
@font-face {
    font-family: "komorebi";
    src: url("CustomFont.eot");
    src: url("../fonts/komorebi/komorebi.woff") format("woff"),
    url("CustomFont.otf") format("opentype"),
    url("CustomFont.svg#filename") format("svg");
}
@font-face {
    font-family: "quicksand";
    src: url("CustomFont.eot");
    src: url("../fonts/quicksand/quicksand.woff") format("woff"),
    url("CustomFont.otf") format("opentype"),
    url("CustomFont.svg#filename") format("svg");
}
*{
    margin: 0pt;
    padding: 0pt;
    color: #367096;
    font-family: komorebi;
}
.heading{
    position: absolute;
    color: aliceblue;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 5px solid;
    border-right: 5px solid;
    width: 200px;
}
/*オープニング*/
.opening{
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: aliceblue;
}
.opening h1{
    position: relative;
    display: flex;
    justify-content: center;
    widows: 100%;
    padding-top: 40vh;
    text-align: center;
    font-size: 1.3em;
}
.opening h1 div{
    margin: 0;
    position: relative;
    height: auto;
    width: auto;
    height: 1em;
    overflow: hidden;
}
.opening h1 div ul{
    margin: 0;
    margin-left: 5pt;
    padding: 0;
    text-align: left;
    animation: sliding-txt 12s ease-in-out infinite;
}
@keyframes sliding-txt{
    0%, 8%{
        transform: translateY(0em);
    }
    12%, 20%{
        transform: translateY(-1.1em);
    }
    24%, 32%{
        transform: translateY(-2.2em);
    }
    36%, 44%{
        transform: translateY(-3.3em);
    }
    48%, 56%{
        transform: translateY(-4.4em);
    }
    61%, 69%{
        transform: translateY(-5.5em);
    }
    73%, 82%{
        transform: translateY(-6.6em);
    }
    86%, 95%{
        transform: translateY(-7.7em);
    }
    99%, 100%{
        transform: translateY(-8.8em);
    }
}
.opening h1 div ul li{
    list-style-type: none;
    height: 1.1em;
}
.locator{
    margin-left: auto;
    margin-right: auto;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
    font-size: 12px;
}
/*メニュー*/
.menu{
    position: relative;
    width: 100%;
    height: 1280pt;
    padding-top: 120pt;
    padding-bottom: 120pt;
    text-align: center;
    background-color: #367096;
}
.menu-selection{
    width: 100%;
    height: 100pt;
    margin-top: 80pt;
    margin-left: auto;
    margin-right: auto;
}
.selection-box{ 
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20pt;
    border-radius: 20pt;
    box-shadow: 6px 6px 6px #08002551,0px 0px 0px #08002551 inset;
    background-color: aliceblue;
    width: 86%;
    height: 200pt;
    text-align: left;
    transition: 0.1s ease-in-out;
}
.selection-box:hover{
    box-shadow: 0px 0px 0px #08002551, 3px 3px 6px #08002551 inset;
    transition: 0.1s ease-in-out;
    cursor: pointer;
}
.selection-box h2{
    z-index: 2;
    position: absolute;
    padding-left: 20pt;
    bottom: 140pt;
    font-family: arial;
    font-weight: bold;
    font-size: 2em;
    color: #4887b7;
}
.selection-box h3{
    z-index: 1;
    position: absolute;
    padding-top: 10pt;
    padding-left: 10pt;
    font-size: 3em;
    color: #4887b7;
    opacity: 0.1;
}
.selection-box p{
    position: absolute;
    padding-top: 70pt;
    padding-left: 20pt;
    padding-right: 20pt;
    color: #64adc4;
}
/* Footer */
.section5{
    padding-bottom: 14px;
    background-color: #2a2a2a;
}
.section5 h2{
    padding-top: 60px; 
    color: #fefcf8;
    text-align: center;
    font-size: 30px;
    padding-bottom: 70px;
}
.section5 .info{
    padding-top: 50px;
    width: 350px;
    height: 120px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a;
    background-color: #282828;
    box-shadow: inset 4px 4px 10px #222;
    -webkit-transition: ease-in-out 0.2s;
            transition: ease-in-out 0.2s;
}
.section5 .info a{
    color: #ccc;
    font-size: 17px;
    text-decoration: none;
    -webkit-transition: ease-in-out 0.2s;
            transition: ease-in-out 0.2s;
}
.section5 .map{
    padding-top: 120px;
    padding-left: 30px;
}
.section5 .map .location{
    padding-top: 30px;
}
.section5 .map .location a{
    display: block;
    text-decoration: none;
    color: #ccc;
    width: 100px;
    padding-left: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-left: 2px solid #ccc;
    -webkit-transition: ease-in-out 0.2s;
            transition: ease-in-out 0.2s;
}
.section5 .map .location a:hover{
    display: block;
    text-decoration: none;
    color: #2a2a2a;
    background-color: #ccc;
    -webkit-transition: ease-in-out 0.2s;
            transition: ease-in-out 0.2s;
}
.section5 .copy{
    text-align: center;
    color: #aaa;
    font-size: 12px;
    font-weight: lighter;
    padding-top: 140px;
}