/**** 登録ページcss ****/

/**** 登録タイプ選択 ****/
/* フォームのコンテナを画面の中心に配置 */
h2.form-title{
	text-align: center;
    text-decoration: underline;
}
h2.form-title.t-ad{
	text-decoration-color: #0693e3;
}
h2.form-title.t-ch{
	text-decoration-color: #d9d749;
}
.registration-selection {
    display: flex;
    justify-content: center;
    text-align: center;
}

.user-type-hidden{
	text-align: center;
}

.switch-registration-link{
	text-align: center;
	color: #bababc;
}
.switch-registration-link a{
	color: #bababc;
}

/*
.next-btn{
	background-color: #6e8c65;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
*/

/* ボタンのスタイル */
.registration-selection .btn-container  {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.registration-selection .btn{
	cursor: pointer;
    font-size: 1.125em;
    color: #ffff;
    font-weight: bold;
    border: none;
    margin: 0 20px;
	border-radius: 35px;
	padding: 15px 45px;
}
.registration-selection .btn:hover{
	opacity: 0.8;
}
.registration-selection .btn-ad{
    background-color: #c75c55;
}
.registration-selection .btn-ch{
    background-color: #d89b3a;
}
.wp-block-buttons.is-content-justification-center{
    gap: 2.5em;	
}
.wp-block-buttons>.wp-block-button{
	font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 1500px) {
	.wp-block-buttons>.wp-block-button{
		font-weight: bold;
		font-size: 1.0em;
	}
}
@media (max-width: 767px) {
	.wp-block-buttons>.wp-block-button{
    	font-size: 1.0em;
	}
}

/* 誓約書同意 */
.commitment-text li{
	list-style: none;
}
.agreement-checkbox input{
	float: left;
}
/* チェックボックスのコンテナ */
.custom-agreement-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

/* チェックボックスのラベル */
.custom-agreement-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* 標準のチェックボックスを非表示にする */
.custom-agreement-checkbox input[type="checkbox"] {
    display: none;
}

/* カスタムチェックマークのスタイル */
.custom-agreement-checkbox .checkmark {
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #fff;
	border: 3px solid #aaaabd;
    margin-right: 10px;
    border-radius: 4px; /* Ultimate Memberに似た角丸のデザイン */
    position: relative;
    transition: all 0.2s ease;
}

/* チェックマークのデザイン */
.custom-agreement-checkbox input[type="checkbox"]:checked + .checkmark {
    border-color: #3ba1da; /* チェック時のボーダー色 */
    border: 3px solid #3ba1da;
}

/* チェックマークの表示 */
.custom-agreement-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* チェックボックスがチェックされたときに表示するマーク */
.custom-agreement-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

/* チェックマークのデザイン */
.custom-agreement-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid #3ba1da;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
/* エラーメッセージのスタイル */
.um-field-error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}
