/* --- フォームとマイページの共通スタイル --- */
.ta-membership-container {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ta-membership-container h1, .ta-membership-container h4 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}
/* ... (登録フォームのスタイルは変更なし) ... */

/* --- マイページ --- */
.ta-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}
.ta-card h4 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
}
.info-item {
    display: flex; /* ★ 2カラムレイアウトの基本 */
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}
.info-item:last-child { border-bottom: none; }
.info-label { color: #666; }

.info-value-container { display: flex; align-items: center; gap: 8px; }
.info-value { color: #333; text-align: right; font-weight: 600; }
.info-value .description {
    font-size: .75em;
	font-weight: 400;
}
.status-badge {
    background: linear-gradient(45deg, #11998e, #38ef7d);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.edit-btn { background: transparent; border: none; cursor: pointer; color: #999; padding: 0; }
.edit-btn:hover { color: #333; }

/* インライン編集 */
.edit-view { display: none; }
.edit-view input[type="text"],
.edit-view input[type="email"] { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; margin-top: 5px; }
.form-actions { display: none; text-align: right; border-top: 1px solid #e9ecef; padding-top: 15px; margin-top:15px; }
.form-actions button, .form-actions .cancel-link {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid #ccc;
    background: #fff;
}
.form-actions .cancel-link { margin-right: 10px; color: #666; }
.form-actions button.button-primary { background: #2271b1; color: #fff; border-color: #2271b1;}

.tams-license-check {
    display: block;
	margin-top: 20px;
    font-size: 14px;
    text-align: right;
}

/* ボタン */
.action-buttons { margin-top: 20px;}
.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
	box-sizing: border-box;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-regist { background: #ddd; color: #111; }
.btn-logout { background: #f0f0f1; color: #50575e; }
.btn-danger { background: #d63638; color: white; }