@charset "utf-8";
 
/* CSS Reset */
html,body,h1,h2,p,ul,li{
margin: 0;
padding: 0;
line-height:1;
font-family: sans-serif;
}
ul{
list-style: none;
}
img{
border:none;
vertical-align: bottom;
max-width: 100%;
height:auto;
}
a{
text-decoration: none;
color: inherit;
}
body{
    background-color:rgb(156, 20, 115) ;
}
.container{
    max-width: 1020px;
    margin:0 auto;
    padding: 15px 0;
}
/*----Header----*/
.headerTop{
    background-color:rgba(146, 25, 110,0.3) ;
    margin: 0 auto;
    box-shadow:0 5px 10px rgba(0,0,0,0.5);
}
header .container{
    display: flex;
    justify-content: space-between;
    padding:15px 10px;
    align-items: center;
}

h1{
    font-size: 40px;
    font-family: 'Great Vibes', cursive;
    color: aliceblue;
}
h1 span{
    font-size: 60px;
    color: rgb(255, 219, 14);
}

.pcnav ul{
    display: flex;
    justify-content: space-between;
}
.pcnav li+li{
    margin-left:20px;

}
.pcnav li{
    font-size: 14px;
    color: azure;
    font-weight: bold;
}

.current{
    color: rgb(255, 219, 14);
}
.pcnav a{
    display: block;
    padding:5px 0;
    transition: 200ms; 
}

.pcnav a:hover{
    color: rgb(255, 219, 14);
}
/* nav underline  ●content:'';疑似要素には必要 */
.pcnav a::after{
    content:"";
    display: block;
    height: 2px;
    margin-top: 5px;
    transform:scaleX(0);
    transition:200ms;
 
}
.pcnav a:hover::after{
    transform:scaleX(1);
}

.spnav,.btn{
    display: none;
}
.copy p{
    font-family: 'Great Vibes', cursive;
    font-size: 45px;
}

.copy p:first-child{
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    margin-bottom: 40px;
    letter-spacing: 5px;

}

/* SNS icons */
.sns{
    position: absolute;
    right:30px;
    bottom: 15vh;
    /* width:35px ; */
 }
.sns i{
    display: block;
    font-size: 35px;
    margin-bottom: 20px;
    color: beige;
    text-shadow: 2px 2px 2px #000;
    transition: 250ms ease-in-out;
    
}
.sns i:hover{
    transform: rotate(360deg) scale(1.5);
    color:rgb(255, 219, 14) ;
}

/* Startボタン*/
.start{
    width: 300px;
    line-height: 50px;
    background-color: rgb(243, 8, 8);
    color:#fff;
    font-size: 24px;
    text-align: center;
    position: absolute;
    margin: auto;
    /* top:0; */
    right:0;
    left:0;
    bottom:20vh;/* inset: auto 0 20vh 0; */
    border-radius: 8px;
    cursor: pointer;
    transition:200ms;
}
.start:hover{
    transform: scale(1.2);
    background:rgb(255, 219, 14) ;
}
.start i{
    transition: 1000ms;
}

.start:hover i{
    transform: rotate(360deg);
}
 
/*矢印アニメーション*/

.arrowBounece i{
    font-size: 50px;
    color:rgb(255, 219, 14) ;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    margin: auto;
    bottom: 10vh;
    right: 0;
    left: 0;
    animation: bounce 2s infinite;  
    
}


/* 矢印の動き */
@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform: translateY(0);
    }
    40%{
        transform:translateY(-30px);
    }
    60%{
        transform:translateY(-15px);
    }

}
/*--------- Animation ---------*/
.copy{
    position: absolute;
    width: 100%;
    text-align: center;
    top:30vh;
    text-shadow: 2px 2px 2px #000;
    color: #FFF;
    font-size: 50px;
    animation:copy 1s ease-in forwards ; 
    opacity: 0;
}
@keyframes copy{
    0%{opacity: 0;}
    100%{opacity:1;} 
}

/* Header */
header{
    background: url(../img/mont-saint-michel_1920.jpg) no-repeat center/cover;
    height: 100vh;
    animation: bg 2s ease-in forwards 1s;
    opacity: 0;  
}
/* ↑ forwards ０~始まって100で終わる */
@keyframes bg{
     100%{opacity:1;}
}



/*メディアクエリ*/
@media screen and (max-width:767px){
/* Header top */
header .container{
    display: block;
    }

h1{
    font-size: 23px;
}
h1 span{
    font-size: 23px;
}
.pcnav{
    display: none;
}
.copy p{
    font-size: 22px;
}
.copy p:first-child{
    font-size: 30px;
}
/*--------- Animation ---------*/
.copy{
    top:20vh;
}

/* Header */
header{
    max-width: 100%;
}

.start{
    width: 150px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    position: absolute;
    margin: auto;
    bottom:25vh;
}
.arrowBounece i{
    font-size: 30px;
    position: absolute;
    margin: auto;
    bottom:10vh;
    right: 0;
    left: 0;
}
.sns{
    width: 180px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    margin: 0 auto;
    bottom: 40vh;
    right: 0;
    left: 0;
    
}
.sns i{
    font-size: 50px;
    /* margin-left: 10px; */
   
}
/* Hamberger Menu */
.btn{
    display: block;
    width:50px;
    height: 50px;
    border: 1px solid #fc0;
    border-radius: 5px;
    position: absolute;
    top:5px;
    right: 5px;
    }
    .btn span,.btn span::before, .btn span::after{
    display:block;
    width:35px;
    height: 3px;
    background: #fc0;
    position: absolute;
    margin: auto;
    inset: 0;
    transition: 200ms ease-in;
    }
    .btn span::before{
    content: "";
    margin-top: -10px;
    }
    .btn span::after{
    content: "";
    margin-top: 10px;
    }
    /* Click時のcss */
    .arrow span{
    background:transparent;
    }
    .arrow span::before{
     transform:rotate(215deg);  
    }
    .arrow span::after{
    transform:rotate(-215deg);
    }
    
/* SP用 nav */
.spnav{
    display: block;
    position: fixed;
    width: 100%;
    background-color: rgba(146, 25, 110,0.3);
    border-color: rgb(83, 7, 60);
    transition: 300ms;
    right:-100%;
    text-align: center;
}
.slide{
    right:0;
}
.spnav ul{
    margin-top: 150px;
}
.spnav li{
    font-size:1.5em;
    text-align: center;
    width: 100%;
    height: 70px;
    line-height: 70px;
}
nav a{
    display: block;
}

}



