/* 冷凍庫紹介セクションのスタイル */
.freezer-intro {
    padding: 4rem 0;
    background: var(--white-color);
    border-top: 1px solid var(--border-color);
}

.freezer-intro .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.freezer-intro .section-title {
    font-family: var(--hiehie-heading-font);
    color: var(--title-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.freezer-intro .section-description {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.freezer-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.freezer-item {
    background: var(--white-color);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    width: 320px;
    text-align: center;
}

.freezer-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.freezer-item h3 {
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.freezer-item ul {
    /* list-style: disc inside; */
    color: var(--text-color);
    font-size: 1rem;
    padding-left: 0;
}

@media (max-width: 700px) {
    .freezer-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .freezer-item {
        width: 100%;
    }
}