/*-------------------------------
#header
-------------------------------*/
.page-header{

}

.page-header .mv{
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
/*    height: calc(100vh - 87px);*/
/*    padding: 80px 5vw;*/
    font-size: 4vw;
    font-weight: bold;
/*    background: #FFF url(../img/mv-bg.jpg) no-repeat 50% top fixed;*/
    -webkit-background-size: auto 100%;
         -o-background-size: auto 100%;
            background-size: auto 100%;
}

.page-header .mv .title{
    display: inline-block;
    padding: 1em;
    background: rgba(0,0,0,.75);
    text-align: center;
}

@media(max-width:640px){

    .page-header .mv{
        background: none;
    }

    .page-header .mv:before{
        content:"";
        display:block;
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:100%;
        height:100%;
        background: #FFF url(../img/mv-bg.jpg) no-repeat 50% top;
        -webkit-background-size: auto 100%;
             -o-background-size: auto 100%;
                background-size: auto 100%;
    }
}

.page-header .mv img{
    width: 100%;
/*    max-width:960px;*/
}

.page-header .nav{
    background: #000;
}

.page-header .nav .list{
    display: flex;
    -webkit-align-items: stretch;
            align-items: stretch;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}

.page-header .nav .item{
    width: 20%;
}

.page-header .nav a{
	display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
	padding: 30px 10px;
    height: 100%;
    line-height: 1.5;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.page-header .nav a:hover{
	background: linear-gradient(to bottom,transparent 50%,#600 100%);
}

.page-header .nav a br{
    display: none;
}


@media(max-width:960px){
    
    .page-header .nav a{
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media(max-width:640px){
    
    .page-header .nav a{
        padding-left: 5px;
        padding-right: 5px;
        font-size: 12px;
    }

    .page-header .nav a br{
        display: block;
    }
}


/*-------------------------------
#body
-------------------------------*/


.page-body{
    padding-bottom: 100px;
    /*background: url(../img/hanabi-decoration.png) no-repeat right 10px bottom 10px fixed;
    -webkit-background-size: 200px auto;
         -o-background-size: 200px auto;
            background-size: 200px auto;*/
}

@media(max-width:960px){
    
    .page-body{
        -webkit-background-size: 150px auto;
             -o-background-size: 150px auto;
                background-size: 150px auto;
    }
}

@media(max-width:640px){

    .page-body{
        background-color: #000;
        background-position: right 10px bottom 50px;
        -webkit-background-size: 100px auto;
             -o-background-size: 100px auto;
                background-size: 100px auto;
    }
}


/*-------------------------------
#footer
-------------------------------*/

.page-footer{
    padding: 40px 20px;
    background: #000;
}

.page-footer .link{
    margin-bottom: 1em;
    text-align: center;
}

.page-footer .link a{
    color: #FFF;
}

.page-footer .copyright{
    text-align: center;
    font-size: 10px;
    color: #FFF;
}