/* fukidashi専用 - PC：丸角ボックス内で左アイコン・右テキスト */
.fukidashi {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--fukidashi-bg);
    box-sizing: border-box;
}

.fukidashi__icon {
    width: 120px;
    min-width: 120px;
    height: 120px;
    flex-shrink: 0;
    align-self: center;
}

.fukidashi__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    margin: 0 !important; /* features.css の main img の margin を上書き */
}

.fukidashi__txt {
    min-width: 0;
    flex: 1;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--fukidashi-text);
    box-sizing: border-box;
    overflow-wrap: break-word;
    align-self: center;
}

.fukidashi__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fukidashi-text);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    /* マーカー風ハイライト */
    background: linear-gradient(transparent 60%, rgba(220, 53, 69, 0.25) 60%);
    padding: 0.1em 0.15em;
    border-radius: 2px;
}

.fukidashi__link:hover {
    opacity: 0.8;
}

.fukidashi__link-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.fukidashi__link-icon svg {
    width: 1.1em;
    height: 1.1em;
    color: inherit;
}

.fukidashi__txt p {
    margin: 0 0 0.5em 0;
}

.fukidashi__txt p:last-child {
    margin-bottom: 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .fukidashi {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        gap: 1rem;
    }
    
    .fukidashi__icon {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }
    
    .fukidashi__txt {
        font-size: 1rem;
    }
}
