.component-container {
    width: 100%;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 1rem 0;
}

.top-text {
    text-align: center;
    font-size: 1.9rem;
    color: #4b5563;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding-bottom: 10px;
    border: none;
    font-family: 'Noto Serif', serif;
}

.divider-line {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 2px;
}

.main-banner {
    background-color: #f5efe2;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.main-banner h1 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #1f2937;
}

.symbol-container {
    position: absolute;
    top: 0;
    right: 2rem;
    margin-top: -1.5rem;
}

.symbol-image {
    width: 7rem;
    height: 7rem;
}

.handle-title {
    font-size: 3rem;
    font-weight: normal;
    font-family: arial;
    letter-spacing: 3px;
}
.reason-text {
    font-size: 1.9rem;
    font-weight: 400;
    margin-left: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-text {
        font-size: 1.25rem;
    }
    .symbol-container {
        right: 1rem;
    }
    .symbol-image {
        width: 6rem;
        height: 6rem;
    }
    .handle-title {
        font-size: 2.5rem;
    }
    .reason-text {
        font-size: 1.25rem;
    }
}


.handle-title {
    font-size: 3rem;
    font-weight: 700;
}
.reason-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.feature-box {
    padding: 1rem 1rem .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    background: #fdf0df;
    text-align: left;
}

.feature-box::before,
.feature-box::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #ef4444;
}

.feature-box::before {
    bottom: 5px;
    height: 1px;
}

.feature-box::after {
    bottom: 1px;
    height: 2px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    object-fit: contain;
}

.text-content {
    color: #E80080;
    font-size: 1.7rem;
    line-height: 1.3;
}

.text-content .highlight {
    font-weight: 700;
    font-size: 1.9rem;
}

@media (max-width: 640px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    .text-content {
        font-size: 1.25rem;
        margin-top: 1rem;
    }
}