html { scroll-behavior: smooth;}
html, body { margin: 0; background-color: #fcfcfc; }


* { font-family: 'Pretendard'; font-weight: 400; box-sizing: border-box; }
.wrap { width: 600px; max-width: 100%; margin: 0 auto; }
body.model_mode { overflow: hidden; }

.sample { display: none;}

strong { font-weight: bold; }



.header { height: 50px; display: flex; flex-direction: row; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; right: 0; max-width: 600px; margin: 0 auto; background-color: #f7f7f7; z-index: 2; }
.header .leftArea { padding-left: 15px; height: 50px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.header .leftArea .logo { height: 22px; }
.header .middleArea { padding: 15px; display: flex; flex-direction: row; align-items: center; justify-content: center; flex-grow: 1; }
.header .middleArea .sports_name { font-weight: 300; color: #666; }
.header .rightArea { height: 50px; width: 50px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.header .rightArea .btnOpenLeftNav { height: 18px; width: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 22px; color: black; text-decoration: none; }



/* 
//  모달
*/
.modal { display: none; position: fixed; top: 0; bottom: 0; left: 0; right: 0; background-color: rgba(0, 0, 0, 0.3); z-index: 10; }
.modal.on { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.modal .modalBody { display: flex; flex-direction: column;  background-color: white; height :200px; width: 90%; padding: 15px; border-radius: 15px;; }







/* Form */

.form_devided { height: 0; border-top: 1px solid #f2f2f2; }

/* Input Text */
.input_txt_group { display: flex; flex-direction: column; gap: 8px; }
.input_txt_group .lbl { font-weight: 500; font-size: 16px; line-height: 150%; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; }
.input_txt_group.required .lbl:after { width: 4px; height: 4px; content: ''; background-color: #FF931E; border-radius: 4px; display: block; margin-left: 10px; }
.input_txt_group .input_txt { padding: 12px 14px; width: 100%; font-style: normal; font-weight: 400; font-size: 16px; line-height: 125%; border: 1px solid #d0d0d0; border-radius: 4px; }
.input_txt_group .input_txt:focus { border: 1px solid #FF931E; outline: none; }
.input_txt_group .input_txt.readonly { background: #FAFAFA; color: #A6A6A6; }
.input_txt_group .help { font-weight: 400; font-size: 14px; line-height: 14px; color: #555555; }
.input_txt_group .help.off { display: none; }
.input_txt_group .help.error { color: red; }

.input_txt_group.with_icon { position: relative; }
.input_txt_group .icon_search { position: absolute; height: 45px; width: 45px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: "Font Awesome 5 Pro"; content: "\f002"; right: 0; cursor: pointer; }

.input_txt_group .input_row { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; gap: 10px; }

.input_textarea_group { display: flex; flex-direction: column; gap: 8px; }
.input_textarea_group .lbl {  font-weight: 500; font-size: 16px; line-height: 150%; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; }
.input_textarea_group .help { font-weight: 400; font-size: 14px; line-height: 14px; color: #555555; }
.input_textarea { min-height: 160px; padding: 12px 14px; width: 100%; font-style: normal; font-weight: 400; font-size: 16px; line-height: 125%; border: 1px solid #d0d0d0; border-radius: 4px; }

.input_chk_group { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.input_chk_group .input_chk { display: none; }
/* .input_chk_group .input_chk + .img_area { } */
.input_chk_group .input_chk + .img_area .img_checked { display: none; }
.input_chk_group .input_chk + .img_area .img_nochecked { display: block; }
.input_chk_group .input_chk:checked + .img_area .img_checked { display: block; }
.input_chk_group .input_chk:checked + .img_area .img_nochecked { display: none;  }
.input_chk_group .lbl { font-weight: 500; font-size: 16px; line-height: 150%; display: flex; flex-direction: row; flex-grow: 1; justify-content: flex-start; align-items: center; }
.input_chk_group .lbl.gray { color: #AEAEAE; }
/* .input_chk_group .links {} */
.input_chk_group .links .link { color: #aeaeae;}




/* .input_radio_group { } */
.input_radio_group .input_radio { display: none; }
.input_radio_group .input_radio + .radio_btn { display: flex; height: 44px; padding: 8px 16px; justify-content: center; align-items: center; gap: 8px; border-radius: 4px; border: 1px solid var(--stroke-Stroke1_F2F2F2, #E6E6E6); background: var(--Background-BG0_White, #FFF); }
.input_radio_group .input_radio:checked + .radio_btn { background-color: #075BAB; color: white; }




/* Buttons */
a { text-decoration: none; }
.btn { display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 10px; gap: 4px; height: 48px; border-radius: 4px; border: 0; text-decoration: none; }

.btnMain { font-weight: 600; font-size: 16px; line-height: 150%; background-color: #3380ec; color: white; }
.btnWhite { font-weight: 600; font-size: 16px; line-height: 150%; background-color: white; color: #595959; border: 1px solid #595959; }
.btnOrange { font-weight: 600; font-size: 16px; line-height: 150%; background-color: #FF931E; color: white; }
.btnNavy { font-weight: 600; font-size: 16px; line-height: 150%; background-color: #0A2239; color: white; }
.btnText { font-weight: 600; font-size: 16px; line-height: 150%; background-color: transparent; color: #595959; text-decoration: underline; }
.btnGray { font-weight: 600; font-size: 16px; line-height: 150%; background-color: #595959; color: white; text-decoration: none; }

