@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

h2 {
    height: 120px;
    width: 100%;
    text-align: center;
    padding: 40px;
    position: relative;
    font-size: 24px;
    font-family: "Hina Mincho", serif;
    display: inline-block;
    z-index: 0;
}

h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/shop_top_img.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* 一番奥 */
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.btn_prefecture {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    padding: 24px 30px 0;
}

.btn_prefecture a {
    background-color: rgba(0, 0, 0, 0.5);
    border: #fff 0.5px solid;
    padding: 8px 26px;
    margin: auto;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.1s ease;
}

.btn_prefecture a:hover {
    background-color: rgba(100, 100, 100, 0.5);
}

h3 {
    background: linear-gradient(to left, rgba(28, 28, 28, 0.2), rgb(0, 0, 0));
    font-size: 24px;
    font-family: "Noto sans JP", sans-serif;
    font-weight: 500;
    padding: 16px 0 16px 30px;
    margin-top: 24px;
}

.shop_list+h3 {
    margin-top: 48px;
}

.shop_list {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.shop_group {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 10px;
    margin: 0 10px;
}

.shop_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 8px 10px;
    border-bottom: 1px solid black;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    color: #A82D2D;
}

.shop_location {
    display: flex;
}

.shop_info {
    padding: 4px 10px 0;
}

.shop_info a {
    font-size: 12px;
    font-feature-settings: "palt";
}

.shop_info p {
    color: black;
    padding-top: 4px;
    font-size: 12px;
    font-feature-settings: "palt";
}

.shop_location a {
    padding: 4px 0 0 10px;
    font-size: 14px;
}

.shop_location p {
    font-size: 14px
}

.shop_name a {
    font-size: 12px;
    position: relative;
}

.shop_name a::before {
    content: "→";
    position: absolute;
    top: -7px;
    left: 0;
    font-size: 12px;
    transform: translateY(50%);
}

.shop_payment_img {
    display: grid;
    width: 190px;
    gap: 8px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding-top: 8px;
}

.shop_payment_img img {
    width: 100%;
    height: 100%;
}