.main {
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 27px; /* ヘッダーの高さ分を上に追加 */
    font-family: "Kaisei Decol", "Zen Maru Gothic", sans-serif;

}

.main-image {
    width: 70vh; /* 画像の幅を100%に設定 */
    height: auto; /* 縦横比を維持 */
    max-width: 100%; /* 最大幅を親要素に合わせる */
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit:  contain;
    height: 75vh;
    width: 100vh;
    margin: 0 auto;
}

.main .title{
    text-align: center;
    color: white;
}


.main h2{
    text-align: center;

}

.main h1 {
    text-align: center;
    padding: 40px 0 10px;
    color: #333;
    padding: 0;
    
}

.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 40px 60px;
    max-width: 1200px;
    margin: auto;
}

.shop {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    
}

.shop:hover {
    transform: translateY(-4px);
}

.shop img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.shop h2 {
    margin: 16px;
    font-size: 17px;
    color: #464646;
    font-family: "Kaisei Decol", "Zen Maru Gothic", sans-serif;

}

.shop h1 {
    margin: 16px;
    font-size: 22px;
    color: #222;
    font-family: "Kaisei Decol", "Zen Maru Gothic", sans-serif;

}

.shop p {
    margin: 0 16px 16px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.shop .aemthumb{
    width: 100%;
    height: auto;
    padding-bottom: 13%;
}

.shop h1 span {
    color: #fff;
}