/* =============================================================================
   🔘 BUTTON COMPONENTS - 汎用ボタンコンポーネント
   ============================================================================= */

/* 🔧🔧🔧 【基本ボタン】再利用可能なベーススタイル 🔧🔧🔧 */
.services-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 55px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 🔧🔧🔧 【ボタンバリエーション】用途別カラーパターン 🔧🔧🔧 */

/* プライマリボタン（主要アクション） */
.services-btn-primary {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.9), rgba(68, 160, 141, 0.8));
    color: white;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

/* セカンダリボタン（副次アクション） */
.services-btn-secondary {
    background: linear-gradient(135deg, rgba(123, 185, 255, 0.9), rgba(65, 105, 225, 0.8));
    color: white;
    border: 2px solid rgba(123, 185, 255, 0.3);
}

/* カレンダーボタン（スケジュール関連） */
.services-btn-calendar {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.9), rgba(255, 140, 0, 0.8));
    color: white;
    border: 2px solid rgba(255, 159, 67, 0.3);
}

/* 🔧🔧🔧 【ホバー効果】統一されたインタラクション 🔧🔧🔧 */

/* 基本ホバー効果 */
.services-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* バリエーション別ホバー効果 */
.services-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.services-btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(123, 185, 255, 0.4);
}

.services-btn-calendar:hover {
    box-shadow: 0 8px 25px rgba(255, 159, 67, 0.4);
}

/* 🔧🔧🔧 【ボタンコンテナ】レイアウト用スタイル 🔧🔧🔧 */
.services-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

/* 🔧🔧🔧 【アクションボタン】問い合わせ系で使用 - 左右均等配置 🔧🔧🔧 */
.method-action {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 10px 18px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    margin: 0 !important;             /* 🔧 左右マージンを強制的に0 */
    text-align: left !important;      /* 🔧 テキストを左寄せ */
}

.method-action:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
} 