@charset "UTF-8";

body{
    font-family:"Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif ;
    line-height: 1.5;
}

.header{
    width: 100%;
    min-height: 100vh;
    background-image:url(../img/mainvisual.jpg) ;
    background-size: cover; 
    background-position: center top;
    padding: 20px 40px;
}

img{
    max-width: 100%;
}

nav ul{
    display: flex;
    justify-content: flex-end;
}

nav li{
    margin-left: 30px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
    filter: drop-shadow(1px 1px 2px #121212);
    font-size: 0.9rem;
}

nav li a:hover{
    color: #e03131;
}

.main-title{
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0; 
    filter: drop-shadow(1px 1px 10px #c0c0c0)  ;
}

.menu-img{
    background-image: url(../img/menu.jpg); 
    position: relative;
    margin-top: 21px;
}

.mask{
    height: 300px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.sec-title{
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    filter: drop-shadow(1px 1px 10px #c0c0c0);
    position: absolute;
    top: 30%;
}

.menu-content{
    display: flex;
    margin: 0 auto;
}

.wrapper{
    padding: 90px 16px 150px 16px;
    text-align: center;
    max-width: 1000px;
}

.menu-item:first-child{
    border-right: solid 1px #000;
}

.menu-item{
    width: 50%;
    padding: 0 45px;
}

.item-title{
    font-size: 2.5rem ;
    font-weight: bold;
    display: inline-block;
    border-bottom: solid 6px #e03131;
    margin-bottom: 70px;
}

.menu-content dl {
    font-size: 0.9rem;
}

.menu-item dl{
    display: flex;
    flex-wrap: wrap;
}

.menu-item dt{
    width: 87%;
    text-align: left;
    border-bottom: dotted 1px #000;
    margin-bottom: 25px;
    font-weight: normal;
}

.menu-item dd{
    width: 13px;
    text-align: right;
    margin-top: 8px;
}

.about-img{
    background-image:url(../img/about.jpg) ; 
    position: relative;
}

.about-content{
    margin: 0 auto;
}

.about-content ul{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.about-content li{
    width: 50%;
    line-height: 2;
    text-align: left;
    padding: 2%;
}

.btn {
    width: 160px;
    height: 50px;
    line-height: 3.5;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn:hover::before{
    height: 100%;
}

.location-img{
    background-image:url(../img/location.jpg) ;
    position: relative;
}

.location-content{
    margin: 0 auto;
}

.map{
    filter: grayscale(1);
    margin-bottom: 20px;
}

.map iframe{
    width: 100%;
    height: 400px;
}

.location-info{
    text-align: left;
    font-size: 0.9rem;
}

.location-info p{
    margin-bottom: 10px;
}

footer{
    font-size: 0.6rem;
    padding: 10px 0;
    text-align: center;
}

@media screen and (max-width:767px) {
    .mask {
        height: 94px;
        background-attachment: scroll;
    }

    .sec-title{
        font-size: 2rem;
    }

    .menu-img{
        margin-top: 10px;
    }

    .wrapper{
        padding: 30px 16px 60px 16px;
    }

    .item-title{
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .menu-item:first-child{
        border-right:none ;
    }

    .menu-content{
        flex-direction: column;
    }

    .menu-item{
        width: 100%;
        padding: 0;
    }

    .about-content li{
        width: 100%;
    }

}

