/* =============================================================================
   🎯 ICON COMPONENTS - 汎用アイコンコンポーネント
   ============================================================================= */

/* 🔧🔧🔧 【メソッドアイコン】問い合わせ方法用アイコン - 配置統一 🔧🔧🔧 */
.method-icon {
    font-size: 3.5rem;
    width: 90px !important;                   /* 🔧 強制的に固定幅 */
    height: 90px !important;                  /* 🔧 強制的に固定高さ */
    min-width: 90px !important;               /* 🔧 最小幅も固定 */
    max-width: 90px !important;               /* 🔧 最大幅も固定 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0 !important;               /* 🔧 縮小を完全禁止 */
    transition: all 0.3s ease;
    margin: 0 !important;                    /* 🔧 マージンを完全リセット */
    padding: 0 !important;                   /* 🔧 パディングを完全リセット */
    box-sizing: border-box !important;       /* 🔧 ボックスサイジング統一 */
}

.method-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 🔧🔧🔧 【プレースホルダーアイコン】プレースホルダー内のアイコン 🔧🔧🔧 */
.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.placeholder-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* 🔧🔧🔧 【汎用アイコンサイズ】再利用可能なサイズバリエーション 🔧🔧🔧 */

/* 小サイズアイコン */
.icon-sm {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
}

/* 中サイズアイコン */
.icon-md {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
}

/* 大サイズアイコン */
.icon-lg {
    font-size: 3.5rem;
    width: 90px;
    height: 90px;
}

/* 特大サイズアイコン */
.icon-xl {
    font-size: 4rem;
    width: 120px;
    height: 120px;
}

/* 🔧🔧🔧 【アイコンコンテナ】レイアウト用 🔧🔧🔧 */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-container-square {
    border-radius: 15%;
}

.icon-container-rounded {
    border-radius: 20px;
}

/* 🔧🔧🔧 【アイコンカラーバリエーション】テーマ別色分け 🔧🔧🔧 */
.icon-primary {
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.icon-secondary {
    color: #7bb3ff;
    background: rgba(123, 185, 255, 0.1);
}

.icon-success {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.icon-warning {
    color: #ff9f43;
    background: rgba(255, 159, 67, 0.1);
}

.icon-danger {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
} 