.shops {
    font-family: "Noto Serif JP", serif;
    padding: 60px 20px;
    padding-top: 60px;
    max-width: 1100px;
    margin: auto;
}

/****** ヒーロー ******/

.hero {
    position: relative;
    height: 472px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
}

.hero-title {
    position: absolute;
    z-index: 10;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    opacity: 0;
    animation: fadeTitle 1.2s ease-out 0s forwards;
}
@keyframes fadeTitle {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 472px;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeIn 0.75s forwards;
    animation-delay: 0.1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/****** お近くの店舗 ******/
.shops-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.shops-list {
    margin-top: 30px;
    display: grid;
    gap: 50px;
}

.shop-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
}

.shop-photo img {
    width: 100%;
    max-height: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.shop-content {
    padding: 30px;
}

.shop-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.shop-data {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.shop-data li {
    margin-bottom: 6px;
    font-size: 1rem;
}

.manager {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.manager-photo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

/* テキスト部分 */
.manager-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.manager-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.manager-comment {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}
/* レスポンシブ */
@media (max-width: 768px) {
    .manager-comment {
        font-size: 15px;
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

.map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .shops-title {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .manager {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* javascript連携用 */
.special-info, .shop-card, .shops-title {
    opacity: 0;
    transform: translateY(40px);
}
.fade {
    opacity: 1;
    transform: translateY(0);
    transition: .8s ease;
}