@charset "utf-8";
/* CSS Document */
.main-content{
    padding-top: 0;
    margin-top: 0;
}
.main-image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 200px;
}
.main-image img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.mainimage-bottom-menu{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: #000;
}
.mainimage-bottom-menu ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
    flex-direction: column;
}
.mainimage-bottom-menu ul li{
    width: 100%;

}
.mainimage-bottom-menu ul li a{
    color: #FFF;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    background: rgb(17,17,17);
    height: 54px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    border: 1px solid #707070;
    position: relative;
    z-index: 0;
    max-width: 80%;
    margin: 0 auto;
}
.mainimage-bottom-menu ul li a:before{
    content: "";
    width: 100%;
    height: 100%;
    position:absolute;
    z-index:-1;
    left:0;
    transition: 1.0s;
    background: linear-gradient(0deg, rgba(17,17,17,1) 10%, rgba(159,159,159,1) 90%);
}
.mainimage-bottom-menu ul li a:after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    left:0;
    background: linear-gradient(0deg, rgba(159,159,159,1) 10%, rgba(17,17,17,1) 90%);
}
.mainimage-bottom-menu ul li a:hover:before{
    opacity:0;
  }
.mainimage-bottom-menu ul li a img{
    max-width: 30px;
    margin-right: 1rem;
}
@media screen and (min-width: 780px) {
    .main-image {
        height: 380px;
    }
    .main-image img{
        height: 380px;
    }
    .mainimage-bottom-menu ul li{
        width: calc(100% / 3);
    }
    .mainimage-bottom-menu ul{
        flex-direction: row;
    }
    .mainimage-bottom-menu ul li a{
        max-width: 100%;
    }
}
/* introduction */
.introduction{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: url(../img/home/bg_introduction.jpg) center center no-repeat;
    background-size: cover;
    padding: 4rem;
    margin-bottom: 4rem;
}
.introduction .page-title{
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 2rem; 
}
.page-title h1 span:after{
    width: 40%;
    left: 30%;
}
.introduction-body{
    max-width: 960px;
    margin: 0 auto 2rem;
}
/* MMenu Panel */
.menu-panel ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.menu-panel ul li{
    display: block;
    width: 48%;
    position: relative;
    margin: 10px 0 20px;
    height: 180px;
    overflow: hidden;
}
.menu-panel ul li a{
    display: block;
    width: 100%;
    height: 100%;
}
.menu-panel ul li .thumbsnail{
    width: 100%;
}
.menu-panel ul li img{
    width: 100%;
    object-fit: cover;
    z-index: 0;
    transition: 0.5s all;
}
.menu-panel ul li a:hover img{
    transform: scale(1.2, 1.2);
    opacity: 0.8;
    transition: 0.5s all;
}
.menu-panel ul li span{
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #FFF;
    text-align: center;
    font-size: 1.8rem;
    z-index: 1;
    padding: 1rem 0;
}
.menu-panel ul li a:hover span{
    background: rgba(0, 0, 0, 0.8);
    transition: 0.5s all;
}
.menu-panel ul li:nth-child(3n+1){
    margin-left: 0;
}
.menu-panel ul li:nth-child(3n){
    margin-right: 0;
}
@media screen and (min-width: 780px) {
    .menu-panel ul li{
        width: 31.333333%;
        height: 240px;
    }
}