main{
    padding-top: var(--header-h);
    overflow: hidden;
}
.bglogo{
    position: absolute;
    /* height: 100%; */
    /* width: 100%; */
    bottom: -15%;
    left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    scale: 4;
    opacity: 0.07;
}
.bglogo img:first-child{
    position: absolute;
    width: 180px;
    opacity: .5;
    filter: brightness(10%) drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}
.bglogo img:last-child{
    position: absolute;
    width: 300px;
    filter: brightness(50%) drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
    /* animation: rotate 30s linear infinite; */
}


/* .contents1,
.contents2{max-width: 1200px;} */

.contents{
    padding: 10%;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    padding: 2rem;
    
    --mxw: 1330px;
    --px25: 25px

}
.content0{
    width: 100%;
    max-width: var(--mxw);
    padding: 25px 25px 0 var(--px25);
}
.content0 p{
    border-left: 4px solid var(--keycolor);
    padding-left: 10px;
    font-size: 1.5em;
}









.header-wrap{
    color: #000;
    background-color: #fffffff6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--bd-test);
}
.gnb_list-lv2{
    background-color: var(--keycolor);
    color: #fff;
}
.gnb_item-lv2:hover{
    background-color: var(--fff2);
    color: #000;
}

.local-head{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    --localhead-h:300px;
    min-width: 290px;
    width: 100%;
    max-height: var(--localhead-h);
    height: 300px;
}
.local-title{
    font-size: 60px;
    font-weight: bold;
    font-family: 'Freesentation-9Black';
    word-spacing: 15px;
    color: var(--fff2);
    text-shadow: var(--text-shadow);
    opacity: 0;
    animation: headopen-span 1s ease-in-out forwards .1s;

}
.local-head-img-wrap {
    border: var(--bd-test);
    border-color: #ffffff00;
    width: calc(100% - 2em);
    /* height: calc(var(--localhead-h) - 50px); */
    height: 0;
    max-width: 1330px;
    border-radius: 30px;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    /* transition: height 2s ease; */
    animation: headopen 1s ease-in-out forwards .1s;
}
.local-head-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(60%)
}



nav{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0 10px;
    
    position: sticky;
    top: var(--header-h);
    transition: top 0.3s;
    z-index: 99;
}
.nav-fixed {
    position: fixed;
    top: calc(var(--header-h) + 5px);
}
.navbar{
    display: flex;
    flex-direction: row;
    border: 1px solid #000;
    padding: 0.5rem;
    
    background-color: #ffffff60;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid #0b0b0b4f;
    border-radius: 1.8rem;
}
.navbar a{
    padding: 0.7rem;
    border-radius: 1.3rem;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}
.navbtn-this{   
    color: #fff;
    background-color: var(--keycolor);
}






/*  */
.fixsize{
    width: 100%;
    max-width: var(--mxw);
    padding: 25px 25px 0 25px;
}

/*  */
.ready{
    margin-top: 10vw;
    text-align: center;
}
.ready h1{
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}
/*  */
.mt-40{
    margin-top: 40px;
}

@media (max-width: 385px){
    .bglogo{
        scale: 2.5;
    }
}
@media (max-width: 333px){
    .local-head-img-wrap {
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 370px){
    .local-title{
        font-size: 50px;
    }
}
@media (max-width: 510px){
    .local-title{
        font-size: 50px;
    }
    .navbar a{
        min-width: 0px;
    }
    .ready {
        margin: 25vw 0 15vw 0;
        font-size: .9em;
    }
    .ready h1{
        font-size: 1.5em;
        font-weight: bold;
        margin-bottom: 5px;
    }
}
/*  */
@keyframes headopen {
    from{height: 0;}
    to{
        height: calc(var(--localhead-h) - 50px);
        border-color: #b7b7b7;}
}
@keyframes headopen-span{
    from{opacity: 0;}
    to{opacity: 100;}
}


