@charset "UTF-8";

/*  店舗案内 */
.store {
    margin: 0 10%;
    color: #FBF4F4;
    text-align: center;
}

.store h2 {
    font-size: 26px;
    padding: 25px 0;
}

.storeguide {
    display: block;
    text-align: center;
}

.storeguide img {
    width: 38%;
}

.storeguide p {
    font-size: 14px;
    text-align: left;
}

/* 店舗情報 */
.storecont {
    margin: 0 10%;
    color: #FBF4F4;
    text-align: center;
}

.storecont h3 {
    font-size: 22px;
    padding: 20px 0;
}

.storecont table {
    margin: 0 auto;
    font-size: 12px;
    text-align: left;
    border-collapse: collapse;
}

.storecont th, td {
    border: solid 0.3px #FBF4F4;
    padding: 0.3rem 2rem 0.3rem 1rem;
    vertical-align: top;
}

/* 予約 */
.reserve {
    margin: 0 10%;
    color: #FBF4F4;
    text-align: center;
    margin: 0;
}

.reserve h3 {
    font-size: 22px;
    padding: 20px 0;
}

.reserve_text {
    font-size: 12px;
    padding: 0 15%;
}

.reservetel {
    padding: 15px;
}

.reservetel h4 {
    font-size: 14px;
    font-weight: lighter;
}

.reservetel p {
    font-size: 22px;
    font-weight: 1000;
}

/* レスポンシブ（tablet） */
@media screen and (min-width:768px) {
    /* 店舗案内 */
    .store h2 {
        font-size: 30px;
        padding: 30px 0;
    }
    .storeguide {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .storeguide img {
        width: 35%;
        margin-right: 3rem;
    }
    .storeguide p {
        font-size: 18px;
    }
    /* 店舗情報 */
    .storecont h3 {
        font-size: 26px;
        padding: 25px 0;
    }
    .storecont table {
        font-size: 18px;
    }
    /* 予約 */
    .reserve h3 {
        font-size: 26px;
        padding: 25px 0;
    }
    .reserve_text {
        font-size: 16px;
        padding: 0 15%;
    }    
    .reservetel {
        padding: 20px;
    }
    .reservetel h4 {
        font-size: 18px;
    }
    .reservetel p {
        font-size: 30px;
    }
}

/* レスポンシブ（pc） */
@media screen and (min-width:1024px) {
    /* 店舗案内 */
    .store h2 {
        font-size: 50px;
        padding: 45px 0;
    }
    .storeguide img {
        width: 35%;
        margin-right: 4rem;
    }
    .storeguide p {
        font-size: 22px;
    }
    /* 店舗情報 */
    .storecont h3 {
        font-size: 40px;
        padding: 30px 0;
    }
    .storecont table {
        font-size: 22px;
    }
    .storecont th, td {
        padding-top: 0.2rem;
    }
    /* 予約 */
    .reserve h3 {
        font-size: 40px;
        padding: 30px 0;
    }
    .reserve p {
        font-size: 20px;
    }    
    .reservetel {
        padding: 30px;
    }
    .reservetel h4 {
        font-size: 22px;
    }
    .reservetel p {
        font-size: 35px;
    }
}

