.shopinfo:not(:last-child){
    margin-bottom: 50px;
}
.shopinfo h3 {
    position: relative;
    width: 100%;
    line-height: 1;
    font-weight: bold;
    border-block-end: 2px solid #ccc;
    padding-block-end: 1rem;
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 15px;
}
.shopinfo h3::before {
    position: absolute;
    display: block;
    content: "";
    inset-block-end: 0;
    inset-inline-start: 0;
    margin-block-end: -2px;
    width: 4.5rem;
    height: 2px;
    background: #333;
}

.shopinfo-greet {
    width: 100%;
    box-sizing: border-box;
    padding: 50px 20px;
}
.shopinfo-greet p {
    text-align: left;
}

.shopinfo-address {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.shopinfo-address .address-list {
    padding: 4rem;
}
.shopinfo-address .address-list dl {
    width: 100%;
    font-size: 1rem;
    text-align: left;
}
.shopinfo-address .address-list dl .group {
    display: flex;
    padding-block: 2rem;
    padding-inline: 0;
    gap: 2rem;
    border-bottom: 1px solid #ccc; 
}
.shopinfo-address .address-list dl .group dt {
    min-width: 3.5rem;
    text-align: left;
}


.section-title-etc {
    letter-spacing: 0.2em !important;
}

.shopinfo-point {
    display: grid;
    align-items: baseline;
    grid-template-columns: repeat(3 , 1fr);
    gap: 20px;
    padding: 15px;
    margin-top:50px;
}
@media (max-width: 1140px) {
    .shopinfo-point {
        grid-template-columns: repeat(2, 1fr);
    }
    .shopinfo-address {
        grid-template-columns: 1fr;
    } 
}

.shopinfo-point .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shopinfo-point .items h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.shopinfo-point .items p {
    text-align: left;
    font-size: 1rem;
}

.shopinfo-point .items .image {
    width: 100%;
    margin-bottom: 10px;
}
.shopinfo-point .items .image img {
    width: 100%;
    max-width: 270px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}