@charset "UTF-8";



article {
    display: flex;
    font-family: var(--font-shippori);
}
article > * {
    width: 50%;
}
@media screen and (max-width: 768px) {
    article {
        display: block;
    }
    article > * {
        width: 100%;
    }
}
.aburino {
    background: url(../img/texture-2.jpg) center top;
    background-size: 100% auto;
}
/* header */
.header {
    background: #000;
    padding: 2rem 3rem;
}
.header h1 {
    font-weight: normal;
    font-family: var(--font-shippori);
    display: flex;
    align-items: center;
    font-weight: normal;
}
.header h1 img {
    width: auto;
    height: 7rem;
    margin-right: 1rem;
}
@media screen and (max-width: 768px) {
    .header {
        background: #000;
        padding: 1rem 2rem;
    }    
    .header h1 {
        font-size: 1.2rem;
    }
    .header h1 img {
        height: 6rem;
        margin-right: 1.5rem;        
    }    
}
.meatvillage .header {
    background: #222;
}
/* main */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 56rem;
    background: url(../img/index-bg-1.jpg) no-repeat center / cover;
    position: relative;
}
@media screen and (max-width: 768px) {
    .main {
        height: 44rem;
    }
}
.main > * {
    position: relative;
    z-index: 10;
}
.main::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
}
.meatvillage .main {
    background: url(../img/index-bg-2.jpg) no-repeat center / cover;
}
.main .shop {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .main .shop {
        font-size: 2rem;
    }
}
.main .shop a {
    font-size: 3.6rem;
}
.main .tel {
    margin: 2rem 0 4rem 0;
    text-align: center;
}
.main .tel dt {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}
.main .tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 2.8rem;
}
.main .tel a i {
    font-size: 1.6rem;
    margin-top: 0.9rem;
    margin-right: 0.5rem;
}
/* btn */
.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30rem;
    height: 5.6rem;
    border: solid 0.1rem #fff;
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
    padding-left: 1rem;
}
.btn a i {
    font-size: 1.2rem;
    margin-left: 1.5rem;
    margin-top: 0.2rem;
}
.btn a:hover {
    opacity: 1;
    background: #fff;
    color: #000;
}
/* detail */
.detail {
    padding: 3rem;
}
.detail > div {
    border: solid 0.1rem #fff;
}
@media screen and (max-width: 768px) {

}
