@charset "UTF-8";
/*======================================================= 
    店舗情報（詳細ページ）用スタイル
=======================================================*/
.shop-head{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}
.category-block{
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}
.category-item{
    width: 100px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    text-align: center;
    padding: 5px;
}
.shop-name{
    margin: 0;
}
.shop-name span{
    display: block;
    font-size: 0.5em;
}
.shop-cta .tel{
    font-size: 20px;
    font-weight: bold;
}
.bg-gray{
    padding: 20px 0;
}
.shop-info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}
/* 店舗画像 */
.shop-img {
    min-width: 0;
}
.shop-img img{
    width: 100%;
}
.thumb{
    margin-top: 10px;
}
.thumb img{
    width: 95%;
    margin: auto;
}
.shop-info-link{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.shop-info-link .raiten,
.shop-info-link .contact{
    position: relative;
    display: block;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    padding: 10px 10px 10px 0;
}
.shop-info-link .raiten{
    background-color: #DF0716;
    border: 2px solid #DF0716;
    color: #fff;
}
.shop-info-link .contact{
    background-color: #fff;
    border: 2px solid #454545;
}
.shop-info-link .raiten::after,
.shop-info-link .contact::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f138';
    display: block;
    position: absolute;
    right: 20px;
    top: 30%;
}
.shop-info-link .raiten::after{
    color: #fff;
}
.shop-info-link .raiten:hover{
    background-color: #fff;
    color: #DF0716;
}
.shop-info-link .contact:hover{
    background-color: #454545;
    color: #fff;
}
.shop-info-link .raiten:hover::after{
    color: #DF0716;
}
.shop-info-link .contact:hover::after{
    color: #fff;
}
/* テーブルデザイン削除 */
table tr:nth-of-type(2n+1){
    background-color: transparent;
}
table:not(.has-border-color) :where(th, td){
    border: none;
}
table th{
    font-weight: normal;
    text-align: left;
    background-color: transparent;
    vertical-align: top;
}
.map{
    margin-top: 30px;
}
.shop-tx{
    padding: 50px 0;
}
h3{
    border-bottom: 2px solid #DF0716;
}
/* キャンペーン */
.campaign-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
/* お客様の声 */
.voice-item{
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
/* リンク */
.link-block{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.link-btn{
    position: relative;
    display: block;
    max-width: 280px;
    width: 100%;
    text-align: center;
    background-color: #DF0716;
    color: #fff;
    box-shadow: 0 0 8px #adadad;
    border: 2px solid #DF0716;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    padding: 20px 20px 20px 0;
}
.link-btn::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f138';
    display: block;
    position: absolute;
    right: 20px;
    top: 35%;
    color: #fff;
}
.link-btn:hover{
    background-color: #fff;
    color: #DF0716;
}
.link-btn:hover::after{
    color: #DF0716;
}

/*1000px以下*/
@media screen and (max-width: 1000px){

}

/*750px以下*/
@media screen and (max-width: 750px){
    .shop-cta{
        display: none;
    }
    .shop-info{
        grid-template-columns: 1fr;
        margin: 0;
    }
    .link-block{
        display: block;
    }
    .link-btn{
        margin: 15px auto;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){
    .category-block{
        gap: 10px;
    }
    .category-item{
        width: 80px;
    }
    .campaign-block{
        grid-template-columns: 1fr;
    }
    .shop-name{
        font-size: 20px;
    }
}