.prefecture-list-section .ttl-article {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 50px;
    text-align: center;
    font-size: clamp(12px, 12/768*100vw, 16px);
    border-radius: 25px;
    background: #f4f5f8;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 25px;
}
.prefecture-list-section .ttl-article::after {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -4px);
    display: block;
    width: 15px;
    aspect-ratio: 1/1;
    background: #f4f5f8;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
}

.prefecture-link-list__header {
    text-align: center;
    background: #F4F5F8;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
    padding: 4px;
}
.prefecture-link-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.prefecture-link-list ul > li {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.prefecture-link-list ul > li:nth-child(3n+1) {
    border-left: 1px solid #e5e5e5;
}

.prefecture-link-list ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 4px;
    color: inherit;
}

.prefecture-link-list ul > li > a.is-disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media all and (min-width: 769px) {
    .prefecture-link-list > ul {
        grid-template-columns: repeat(4, 1fr);
    }
    .prefecture-link-list ul > li:nth-child(3n+1) {
        border-left: 0;
    }
    .prefecture-link-list ul > li:nth-child(4n+1) {
        border-left: 1px solid #e5e5e5;
    }
}

.prefecture-shop-list + .prefecture-shop-list {
    margin-top: 30px;
}

.prefecture-shop-list__prefecture {
    text-align: center;
    background: #F4F5F8;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
    padding: 4px;
    font-weight: bold;
}

.shop-list > li {
    border: 1px solid #e5e5e5;
    border-top: 0;
}

.shop-card {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
}

.shop-card__text {
    line-height: 1.2;
    flex: 1 1 auto;
}

.shop-card__link {
    flex: 0 0 auto;
}

.shop-card__shop-name {
    font-weight: bold;
    word-break: break-all;
    margin-bottom: 1em;
}

.shop-card__address {
    word-break: break-all;
    margin-bottom: 0;
}

.shop-card .btn {
    min-width: auto;
    width: 100px;
    box-shadow: none;
    padding-block: 4px;
    margin-bottom: 0;
}

.shop-card .btn::after {
    background-image: url(/shop/common/images/arrow-right-white.svg);
}
