/* =========================================================================
   馬肉の魅力セクション (Horse Meat Appeal)
   ========================================================================= */
.appeal-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.appeal-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.appeal-text-area {
    flex: 1;
}

.appeal-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.appeal-title .highlight {
    color: var(--color-primary);
}

.appeal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.appeal-image-area {
    flex: 1;
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    box-shadow: 10px 10px 0 var(--color-bg-alt);
}

/* =========================================================================
   ブランドコンセプト (Brand Concept)
   ========================================================================= */
.concept-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 248, 243, 0.85);
    /* アイボリーのオーバーレイ */
}

.concept-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.concept-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
}

/* =========================================================================
   3つの約束 (Three Promises)
   ========================================================================= */
.promises-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-alt);
}

.promise-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: 30px;
}

.promise-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 20px;
    color: var(--color-white);
    font-size: 2rem;
    border: 5px solid var(--color-white);
    box-shadow: 0 5px 10px rgba(200, 150, 62, 0.3);
}

.promise-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.promise-title span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.promise-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .appeal-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .concept-title {
        font-size: 1.8rem;
    }

    .promise-card {
        margin-top: 50px;
    }
}