/* 製品特徴セクションの詳細スタイル */

/* 製品特徴タイトルの中央配置 */
.product-features-title {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.tech-content-detailed {
    text-align: left;
    margin-top: 15px;
}

.tech-content-detailed p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ingredient-details,
.usage-details {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.ingredient-details li,
.usage-details li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    font-size: 14px;
}

.ingredient-details li::before,
.usage-details li::before {
    content: "•";
    color: #d4896b;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.ingredient-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #d4896b;
}

.fragrance-note {
    font-style: italic;
    color: #8b5a3c;
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f4f2, #f5f1ef);
    border-radius: 5px;
    border-left: 3px solid #d4896b;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tech-content-detailed {
        margin-top: 10px;
    }
    
    .ingredient-details li,
    .usage-details li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 15px;
    }
    
    .ingredient-note,
    .fragrance-note {
        font-size: 12px;
        padding: 8px;
        margin-top: 12px;
    }
}

/* tech-itemの高さ調整 */
.tech-item {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 25px 20px;
}

.tech-item .tech-icon {
    margin-bottom: 15px;
    align-self: center;
}

.tech-item h4 {
    margin-bottom: 15px;
    text-align: center;
    color: #2c1810;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

/* グリッドレイアウトの調整 */
.technology-grid {
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tech-item {
        padding: 20px 15px;
    }
    
    .tech-item h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}