/*変数*/
:root {

/*色*/
--btn-color: #FFCA00;
--text-color: #333333;

/*ボタンサイズ*/
--btn_width: 450px;
--btn_height: clamp(45px, 22.723px + 4.95vw, 55px);
--btn_font-size: clamp(16px, 2.634px + 2.97vw, 22px);
}

/*---------------*/
/*--申込みボタン--*/
/*---------------*/

.cta_btn--wrap a {
width: 90%;
max-width: var(--btn_width);
height: var(--btn_height);
background-color: var(--btn-color);
border-radius: 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: var(--btn_font-size);
text-decoration: none;
color: var(--text-color);
margin: 0 auto;
border-style: none;
}
.cta_btn--wrap a:hover {
filter: brightness(90%);
}


.cta_btn--wrap button {
width: 90%;
max-width: var(--btn_width);
height: var(--btn_height);
background-color: var(--btn-color);
border-radius: 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: var(--btn_font-size);
text-decoration: none;
color: var(--text-color);
margin: 0 auto;
border-style: none;
}
.cta_btn--wrap button:hover {
filter: brightness(90%);
}