@charset "UTF-8";
/*======================================================= 
    店舗情報用スタイル
=======================================================*/
/* 共通 */
.page-tit-area{
    background-color: #f5f5f5;
    padding: 100px 0;
}
.page-tit-area h1{
    font-size: 24px;
}
.page-tit-area span{
    display: block;
    font-size: 84px;
    background: linear-gradient(to right, #BB171E, #F6B256);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
h2{
    position: relative;
    text-align: center;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
}
h2::after{
    position: absolute;
    content: "";
    width: 2.5em;
    height: 2px;
    background-color: #BB171E;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.shop-tx{
    padding: 30px 0;
}

table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #ddd;
}
table tbody tr{
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-bottom: 1px solid #ddd;
}
table th, table td{
    text-align: left;
    padding: 10px;
}
table th{
    background-color: #f5f5f5;
}

.link-btn-black{
    margin: 50px auto;
}

/*750px以下*/
@media screen and (max-width: 750px){
    .page-tit-area{
        padding: 50px 0;
    }
    .page-tit-area span{
        font-size: 50px;
    }
    table tbody{
        display: block;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){
    h2{
        font-size: 17px;
    }
    .page-tit-area{
        padding: 30px 0;
    }
    .page-tit-area h1{
        font-size: 20px;
    }
    .page-tit-area span{
        font-size: 35px;
    }
}