@charset "utf-8";
@import "common.css";

:root {
  --m_active: #1cdcff;
  --green: #06c270;
}

/**************************************************
SF-LGN-01-01
**************************************************/
#Log.visual {
  background: center center / cover no-repeat url("../img/SF-LGN-01-01_main.png");
  height: 340px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  gap: 2.8rem;
  padding-top: 5rem;
}

#Log.visual h1,
#visual h1 {
  margin-bottom: 1.2rem;
}

.logtitle {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  gap: 1rem;
}

.Logcontainer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.Logcontainer > * {
  margin-bottom: 4rem;
}

.Logcontainer > *:last-child {
  margin-bottom: 0;
}

/* log -> tab */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border_normal);
}

.tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s linear;
  font-size: 1.6rem;
  color: var(--subtxt);
}

.tab.active {
  border-bottom: 1px solid var(--txt_Bk);
  font-weight: bold;
  color: var(--txt_Bk);
}

/* log->input */
.form {
  display: none;
}

.form.active {
  display: block;
}

.input_text {
  font-size: 1.6rem;
  font-weight: bold;
}

.input-group {
  margin-bottom: 1.6rem;
}

.input-group30 {
  margin-bottom: 3rem;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border_normal);
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1.4rem;
  color: var(--subtxt);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden !important;
  -webkit-line-clamp: 1;
  display: -webkit-box;
}

/**************************************************
SF-UMN-07-01
**************************************************/

/* logMore */
.logMore {
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.8rem;
  color: var(--subtxt);
}

.logMore li {
  position: relative;
}

.logMore li::after {
  position: absolute;
  content: "|";
  padding-left: 1rem;
}

.logMore li:last-child:after {
  display: none;
}

/**************************************************

**************************************************/
.m-w660 {
  max-width: 660px;
  margin: 0 auto;
}

#singWrap.flex_sb {
  gap: 8rem;
}

#singWrap.flex_sb > * {
  width: calc(100% / 2);
  text-align: center;
}

.singBox {
  padding: 8rem;
}

.singBtn {
  padding: 1.2rem 2rem;
  font-size: 2rem;
  color: var(--txt_Bk);
  border-radius: 0.7rem;
  margin-top: 4rem;
  border: 1px solid var(--txt_Bk);
  transition: all 0.3s linear;
}

.singBtn i {
  margin-left: 0.5rem;
}

.singBtn:hover {
  border-color: var(--point);
  color: var(--point);
  font-weight: bold;
}

/**************************************************
SF-UMN-03-01
**************************************************/
/* sing_inputWrap  */
.sing_inputWrap .sing_input {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  transition: all 1s linear;
}

.sing_inputWrap .sing_input p {
  width: 20%;
  white-space: nowrap;
}

.sing_inputWrap .sing_input input {
  max-width: 480px;
}

@media (max-width: 600px) {
  .sing_inputWrap .sing_input .btn .none {
    display: none;
  }
}

.singBtn.navy {
  background: var(--navy);
  color: var(--white);
}

.singBtn.navy:hover {
  background: var(--navy);
  color: var(--navy);
  border-color: var(--navy);
}

/**************************************************
SF-UMN-07-01
**************************************************/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.popup-overlay.block {
  display: block;
  display: flex;
}

.popupWrap {
  background: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  max-width: 1000px;
  width: 90%;
}

.popupWrap > * {
  margin-bottom: 4rem;
}

.popupWrap > *:last-child {
  margin-bottom: 0;
}

.poptitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.poptitle h2 {
  font-size: 2.4rem;
}

.close-btn {
  cursor: pointer;
  font-size: 2rem;
}

.btnWrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

/* ---------- popup-table ---------- */
.tableArea {
  max-height: 300px;
  overflow-x: auto;
}

.tableArea table {
  width: 100%;
  border-collapse: collapse;
  width: 100%;
}

.tableArea th {
  background: var(--bg_gray);
}

.tableArea th,
td {
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border_normal);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .popupWrap {
    padding: 3rem 2rem;
  }

  .popupWrap > * {
    margin-bottom: 2rem;
  }

  .poptitle h2 {
    font-size: 2rem;
  }

  .close-btn {
    font-size: 1.8rem;
  }

  input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
}

/**************************************************
SF-INT-02-01 소개
**************************************************/
@font-face {
  font-family: "Shilla_CultureB-Bold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/Shilla_CultureB-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

#Wrap.INF-wrap > * {
  margin-bottom: 0;
}

.visual.INF {
  background: center center / cover no-repeat url("../img/SF-INT-02-01_main.png");
}

.introArea > * {
  margin-bottom: 10rem;
}

.introArea > *:last-child {
  margin-bottom: 0;
}

/* intxtStyle */
.intro_fontStyle {
  font-family: "Shilla_CultureB-Bold";
  font-size: 4rem;
  font-weight: bold;
  list-style: 150%;
  text-align: center;
}

.red {
  color: var(--red);
}

/* inflex */
.intro_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.intro_flex > * {
  width: 48%;
}

.sdStyle {
  box-shadow: -50px 50px 0px 0px #eaeaea;
}

.imgArea .sdStyle {
  margin: 0 0 5rem 5rem;
}

.inBtn_box {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  #Wrap.INF-wrap > * {
    margin-bottom: 10rem;
  }
}

@media (max-width: 800px) {
  /* .intro_flex */
  .intro_flex {
    flex-flow: column;
    align-items: center;
    gap: 2rem;
  }

  .intro_flex .textArea {
    width: 100%;
    text-align: center;
  }

  .intro_flex .imgArea {
    width: 80%;
  }

  .inBtn_box {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* intro */
  #Wrap.INF-wrap > * {
    margin-bottom: 5rem;
  }

  .intro_flex .textArea br {
    display: none;
  }

  .imgArea .sdStyle {
    margin: 0 0 3rem 3rem;
  }

  .sdStyle {
    box-shadow: -30px 30px 0px 0px #eaeaea;
  }
}

/**************************************************
SF-INT-02-02 소개
**************************************************/
.INF-formWrap {
  border-top: 2px solid var(--border_normal);
  border-bottom: 2px solid var(--border_normal);
}

.INF-formWrap > * {
  border-bottom: 1px solid var(--border_normal);
}

.INF-formWrap > *:last-child {
  border-bottom: 0;
}

.INF-form_flex {
  display: flex;
  gap: 1rem;
}

.INF-form_flex > * {
  width: calc(100% / 2);
}

.INF-formGroup {
  display: flex;
  align-items: stretch;
  white-space: nowrap;
}

.INF-formGroup .title {
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--bg_gray);
  padding: 2rem;
  max-width: 160px;
  width: 100%;
  display: flex;
  margin: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.INF-formInput {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0.5rem 2rem;
}

.INF-chtxt {
  font-size: 1.4rem;
}

/* INF-Upload */
.INF-Upload {
  width: 100%;
  padding: 2rem;
}

.INF-Upload .flex {
  gap: 2rem;
}

/* fileupload-> box */
.INF-box {
  border: 1px solid var(--border_normal);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  min-height: 120px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.INF-box img {
  margin: 0 auto 1rem;
}

.INF-box p {
  color: var(--subtxt);
  font-size: 1.4rem;
}

.INF-fileItem {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  background: var(--bg_gray);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.INF-fileItem:last-child {
  margin-bottom: 0;
}

.INF-fileItem button {
  margin-right: 8px;
  color: var(--red);
}

#fileCount {
  font-size: 1.2rem;
  color: var(--red);
}

/* btn */
.btn.del {
  color: var(--red);
  border: 1px solid var(--red);
  background: transparent;
}

.INF-Upload .btn {
  padding: 1rem 2rem;
}

.INF-Upload .btn i {
  margin-right: 1rem;
}

/* editInput */
.editInput {
  width: 100%;
  border: 1px solid var(--border_normal);
}

.editInput .ql-toolbar.ql-snow {
  border: 0;
  border-bottom: 1px solid var(--border_normal);
  text-align: justify;
}

.editInput .ql-container.ql-snow {
  border: 0;
}

.editInput .ql-editor {
  min-height: 400px;
}

.editInput .ql-editor > * {
  font-size: 1.4rem;
  color: var(--subtxt);
}

@media (max-width: 800px) {
  .INF-formGroup .title {
    max-width: 80px;
    padding: 1.5rem;
    font-size: 1.4rem;
  }

  .inBtn_box .btn {
    width: 100%;
    text-align: center;
  }

  .visual.INF {
    background-position: center right 40%;
  }
}

@media (max-width: 480px) {
  .INF .intitle p {
    line-height: 150%;
  }

  .INF-formInput {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .INF-Upload {
    padding: 1rem;
  }

  .INF-Upload .flex_sb {
    gap: 1rem;
    flex-flow: row;
  }

  .INF-Upload .flex {
    gap: 1rem;
  }

  .fileCount {
    margin-left: auto;
  }

  .INF-Upload .btn {
    padding: 1rem;
    min-width: 80px;
    width: 100%;
  }

  .INF-box p {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .INF-formGroup .title {
    max-width: 50px;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .INF-formInput input[type="text"] {
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
  }

  .INF-chtxt,
  .INF-box p,
  .editInput .ql-editor > * {
    font-size: 1.2rem;
  }

  .INF-Upload .flex_sb {
    flex-flow: column;
    align-items: flex-start;
  }
}

/**************************************************
SF-NOT-03-01 공지사항
**************************************************/
.NOT-inputWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.NOT-select-box {
  width: 100%;
  max-width: 16rem;
  position: relative;
  display: flex;
  align-items: center;
}

.NOT-select-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--border_normal);
  border-radius: 7px;
  padding: 0.8rem 1.2rem;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 4.2rem;
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
}

.NOT-select-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--subtxt);
  transition: transform 0.15s ease-in;
  pointer-events: none;
}

/* Not-table */
.NOT-tableArea {
  max-height: 100%;
  overflow-x: auto;
  overflow: auto;
}

.NOT-tableArea table {
  width: 100%;
  border-collapse: collapse;
  width: 100%;
}

.NOT-tableArea th {
  background: var(--bg_gray);
}

.NOT-tableArea th,
td {
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border_normal);
  text-align: center;
  white-space: nowrap;
}

.NOT-tableArea td img {
  margin: 0 auto;
}

.NOT-tableArea .NOT-03-title {
  text-align: justify;
}

/* .NOT-tableArea table th:not(.NOT-03-title),
.NOT-tableArea table td:not(.NOT-03-title) {max-width: 100px; white-space: nowrap;} */
.NOT-tableArea table tbody tr:nth-child(-n + 3) {
  background-color: #f1f7ff;
}

/* label */
.NOT-notlabel,
.NOT-newslabel {
  color: var(--white);
  background: var(--point);
  font-size: 1.4rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  margin: 0;
  margin: 0 auto;
  max-width: 60px;
}

.NOT-newslabel {
  background: var(--green);
}

/* btn */
.NOT-inputWrap .btn i {
  margin-right: 1rem;
}

/* 페이지네이션 */
.pagination.NOT-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.8rem;
}

.pagination.NOT-page button {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.5rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination.NOT-page button:last-child {
  margin-right: 0rem;
}

.pagination.NOT-page button img {
  width: 1.2rem;
  height: 1.2rem;
}

.pagination.NOT-page span {
  display: flex;
}

.pagination.NOT-page .page-number {
  font-size: 1.3rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  margin-right: 0.4rem;
}

.pagination.NOT-page .page-number.active {
  background: var(--navy);
  color: var(--white);
  font-weight: bold;
}

@media (max-width: 800px) {
  .NOT-inputWrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 첫 줄 3개 */
    grid-template-rows: auto auto; /* 두 줄 */
    gap: 1rem;
  }

  .NOT-inputWrap > *:nth-child(1) {
    grid-column: 1 / 2;
  }

  .NOT-inputWrap > *:nth-child(2) {
    grid-column: 2 / 3;
  }

  .NOT-inputWrap > *:nth-child(3) {
    grid-column: 3 / 4;
  }

  /* 두 번째 줄 (2개의 버튼을 꽉 차게) */
  .NOT-inputWrap > *:nth-child(4) {
    grid-column: 1 / 3; /* 첫 번째와 두 번째 칸을 합쳐서 66% */
    text-align: center;
  }

  .NOT-inputWrap > *:nth-child(5) {
    grid-column: 3 / 4; /* 세 번째 칸 */
    text-align: center;
  }

  .NOT-select-box {
    max-width: 100%;
  }

  .NOT-inputWrap-user {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .NOT-inputWrap-user .NOT-text-box {
    width: 100%;
  }

  .NOT-inputWrap-user .btn.navy {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .NOT-inputWrap {
    display: flex;
    flex-flow: column;
  }

  .NOT-inputWrap .btn,
  .NOT-text-box {
    width: 100%;
  }
}

/**************************************************
SF-MYP-06-01 마이페이지
**************************************************/
.MYP-06-visual {
  background: center center / cover no-repeat url("../img/SF-PHO-05_main.png");
}

input[type="radio"]:checked + label,
input[type="radio"]:focus + label {
  color: black;
}

.MYP-06-titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.MYP-06-title {
  font-size: 2rem;
  font-weight: bold;
}

.MYP-06-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #243786;
}

label.MYP-06-radio {
  margin: 0;
  gap: 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  white-space: nowrap;
}

.MYP-06-wrap .sing_inputWrap .sing_input {
  margin-bottom: 2rem;
}

.MYP-06-wrap .sing_inputWrap .sing_input:last-child {
  margin-bottom: 0;
}

.MYP-btn-width {
  width: 100%;
}

@media (max-width: 1200px) {
  #Wrap.MYP-06-wrap > * {
    margin-bottom: 10rem;
  }
}

@media (max-width: 800px) {
  .MYP-06-visual {
    background-position: center right 40%;
  }

  .MYP-06-wrap .sing_inputWrap .sing_input input {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #Wrap.MYP-06-wrap > * {
    margin-bottom: 5rem;
  }

  .MYP-06-titleBox {
    flex-flow: column;
    margin-bottom: 2rem;
    gap: 2rem;
  }

  .MYP-06-wrap .btnWrap {
    gap: 1rem;
    width: 100%;
  }

  .MYP-06-wrap .btnWrap .btn {
    width: 100%;
  }

  .MYP-06-wrap .mb40 {
    margin-bottom: 2rem;
  }
}

/**************************************************
SF-MYP-06-05 마이페이지
**************************************************/
.MYP-06-inputWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.MYP-06-select-box {
  width: 100%;
  max-width: 16rem;
  position: relative;
  display: flex;
  align-items: center;
}

.MYP-06-select-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--border_normal);
  border-radius: 7px;
  padding: 0.8rem 1.2rem;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 4.2rem;
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
}

.MYP-06-select-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--subtxt);
  transition: transform 0.15s ease-in;
  pointer-events: none;
}

.MYP-06-select-box-max {
  max-width: 230px;
}

/* formWrap */
.MYP-06-formWrap {
  border-top: 2px solid var(--border_normal);
  border-bottom: 2px solid var(--border_normal);
}

.MYP-06-formWrap > * {
  border-bottom: 1px solid var(--border_normal);
}

.MYP-06-formWrap > *:last-child {
  border-bottom: 0;
}

.MYP-06-form_flex {
  display: flex;
  gap: 1rem;
}

.MYP-06-form_flex > * {
  width: calc(100% / 2);
}

.MYP-06-formGroup {
  display: flex;
  align-items: stretch;
  white-space: nowrap;
}

.MYP-06-formGroup .title {
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--bg_gray);
  padding: 2rem;
  max-width: 160px;
  width: 100%;
  display: flex;
  margin: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.MYP-06-formInput {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0.5rem 2rem;
}

.MYP-06-chtxt {
  font-size: 1.4rem;
}

/* MYP-06-Upload */
.MYP-06-Upload {
  width: 100%;
  padding: 2rem;
}

.MYP-06-Upload .flex {
  gap: 2rem;
}

/* fileupload-> box */
.MYP-06-box {
  border: 1px solid var(--border_normal);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  min-height: 120px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.MYP-06-box img {
  margin: 0 auto 1rem;
}

.MYP-06-box p {
  color: var(--subtxt);
  font-size: 1.4rem;
}

.MYP-06-fileItem {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  background: var(--bg_gray);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.MYP-06-fileItem:last-child {
  margin-bottom: 0;
}

.MYP-06-fileItem button {
  margin-right: 8px;
  color: var(--red);
}

#fileCount {
  font-size: 1.2rem;
  color: var(--red);
}

/* btn */
.btn.del {
  color: var(--red);
  border: 1px solid var(--red);
  background: transparent;
}

.MYP-06-Upload .btn {
  padding: 1rem 2rem;
}

.MYP-06-Upload .btn i {
  margin-right: 1rem;
}

/* editInput */
.editInput {
  width: 100%;
  border: 1px solid var(--border_normal);
}

.editInput .ql-toolbar.ql-snow {
  border: 0;
  border-bottom: 1px solid var(--border_normal);
  text-align: justify;
}

.editInput .ql-container.ql-snow {
  border: 0;
}

.editInput .ql-editor {
  min-height: 400px;
}

.editInput .ql-editor > * {
  font-size: 1.4rem;
  color: var(--subtxt);
}

@media (max-width: 800px) {
  .MYP-06-inputWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
  }

  .MYP-06-select-box,
  .MYP-06-select-box-max {
    max-width: 100%;
  }

  .MYP-06-formGroup .title {
    max-width: 80px;
    padding: 1.5rem;
    font-size: 1.4rem;
  }

  .inBtn_box .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .MYP-06-inputWrap {
    display: flex;
    flex-flow: column;
  }

  .MYP-06-inputWrap .btn,
  .MYP-06-text-box {
    width: 100%;
  }

  .MYP-06 .intitle p {
    line-height: 150%;
  }

  .MYP-06-formInput {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .MYP-06-Upload {
    padding: 1rem;
  }

  .MYP-06-Upload .flex_sb {
    gap: 1rem;
    flex-flow: row;
  }

  .MYP-06-Upload .flex {
    gap: 1rem;
  }

  .fileCount {
    margin-left: auto;
  }

  .MYP-06-Upload .btn {
    padding: 1rem;
    min-width: 80px;
    width: 100%;
  }

  .MYP-06-box p {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .MYP-06-formGroup .title {
    max-width: 50px;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .MYP-06-formInput input[type="text"] {
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
  }

  .MYP-06-chtxt,
  .MYP-06-box p,
  .editInput .ql-editor > * {
    font-size: 1.2rem;
  }

  .MYP-06-Upload .flex_sb {
    flex-flow: column;
    align-items: flex-start;
  }
}

/**************************************************
SF-UMN-07-01
**************************************************/
#Wrap.adminLogin {
  background: center right/ cover no-repeat url("../img/admin_Bg.png") #ecedf1;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
}

.adminContainer {
  width: 100%;
  max-width: 900px;
  margin: 0 auto; /*overflow: hidden;*/
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  height: 100%;
}

#Wrap.adminLogin > * {
  margin-bottom: 10rem;
}

#Wrap.adminLogin > *:last-child {
  margin-bottom: 0;
}

.adminContainer .logtitle {
  align-items: flex-start;
}

.adminContainer .logtitle p {
  font-size: 1.6rem;
  color: var(--subtxt);
}

.adminLog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.adminLog .left {
  background: center center/ cover no-repeat url("../img/admin_logImg.png");
  min-height: 508px;
  height: 100%;
  width: 100%;
}

.adminLog .right {
  width: 100%;
  padding: 5rem;
}

.formal {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--subtxt);
}

.formal .for-title {
  font-size: 2.4rem;
  color: var(--black);
  font-weight: bold;
}

/*-------------- ✅media✅ -------------- */
@media (max-width: 992px) {
  #Wrap > * {
    margin-bottom: 5rem;
  }

  /* #Wrap >* {display: block;}  overflow: scroll; */
  #Wrap.adminLogin > * {
    overflow: visible;
    margin-bottom: 5rem;
    display: block;
  }

  #Wrap.adminLogin > *:last-child {
    text-align: center;
  }

  /* admin */
  #Wrap.adminLogin {
    padding: 2rem;
    overflow: auto;
  }

  .adminContainer {
    max-width: 100%;
  }

  .adminLog .right {
    padding: 3rem;
  }

  /* .adminLog {flex-flow: column;} */
  .sing_inputWrap .sing_input input {
    width: 50%;
  }
}

@media (max-width: 800px) {
  #Wrap .Logcontainer {
    padding: 2rem;
  }

  #Wrap.adminLogin {
    overflow: scroll;
  }

  #Wrap.adminLogin > * {
    margin-bottom: 5rem;
    height: max-content;
  }

  .title h1,
  h1 {
    font-size: 2.4rem;
  }

  .Logbtn.sm {
    width: 100%;
  }

  /* log */
  #Log.visual,
  #visual {
    padding: 2rem;
  }

  /* admin */
  .adminContainer {
    flex-flow: column;
    height: 100%;
  }

  .adminLog {
    flex-flow: column;
  }

  .adminLog .left {
    min-height: 200px;
  }

  /* sing */
  #singWrap.flex_sb {
    gap: 3rem;
  }

  .singBox {
    padding: 2rem;
  }

  .singBtn {
    margin-top: 2rem;
  }

  /* sing_inputWrap */
  .sing_inputWrap .sing_input {
    flex-flow: row wrap;
  }

  .sing_inputWrap .sing_input p {
    width: 100%;
  }

  /* sing_inputWrap */
  .sing_inputWrap .sing_input input {
    width: calc(65% - 5px);
  }
}

@media (max-width: 480px) {
  /* btn */
  .singBtn {
    font-size: 1.6rem;
    padding: 1.2rem 1.5rem;
  }

  /* Wrap */
  #Wrap > *,
  .introArea > * {
    margin-bottom: 5rem;
  }

  /* title */
  .title h1,
  h1 {
    font-size: 2.4rem;
    line-height: 140%;
  }

  .title p {
    font-size: 1rem;
  }

  .title p br {
    display: none;
  }

  /* log */
  .Logcontainer > * {
    margin-bottom: 3rem;
  }

  .logtitle {
    font-size: 1.8rem;
  }

  /* log -> tab */
  .tab,
  .Logbtn,
  .logMore {
    font-size: 1.4rem;
  }

  /* admin */
  .adminLog .left {
    height: 120px;
  }

  .adminLog .right {
    padding: 2rem;
  }

  .Logbtn.sm {
    width: 100%;
  }

  /* sing */
  #singWrap.flex_sb {
    gap: 2rem;
  }

  #singWrap.flex_sb > * {
    width: calc(100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #singWrap.flex_sb .imgArea {
    width: 11%;
  }

  #singWrap.flex_sb .mt30 {
    margin: 0 0 0 0.5rem;
  }

  #singWrap.flex_sb .singBtn {
    margin-left: auto;
    margin-top: 0;
  }

  #singWrap .boxStyle01 .singBtn.navy {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .title h1,
  h1 {
    font-size: 1.8rem;
  }

  .singBtn {
    font-size: 1.4rem;
    padding: 1rem 1.3rem;
  }
}

/**************************************************
SF-PHO-05-01(user & admin)
**************************************************/
.PHO-05-us-visual {
  background: url(../img/SF-PHO-05_main.png) center center / cover no-repeat;
}

.PHO-05-wrap {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.PHO-05-input-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.PHO-05-select-box {
  width: 100%;
  max-width: 16rem;
  position: relative;
  display: flex;
  align-items: center;
}

.PHO-05-select-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--border_normal);
  border-radius: 7px;
  padding: 0.8rem 1.2rem;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 4.2rem;
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
}

.PHO-05-select-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--subtxt);
  transition: transform 0.15s ease-in;
  pointer-events: none;
}

.PHO-05-text-box {
  width: 100%;
  max-width: 28rem;
}

.PHO-05-btn {
  width: 100%;
  max-width: 9.6rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--navy);
  border-radius: 0.7rem;
  color: var(--white);
  cursor: pointer;
}

.PHO-05-btn button,
.PHO-05-btn a {
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
  font-weight: 700;
}

.PHO-05-contents-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8rem 4rem;
}

.PHO-05-contents {
  width: 100%;
  max-width: 32rem;
}

.PHO-05-contents-tit-box {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
}

.PHO-05-contents-tit-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 4rem;
  height: 0.3rem;
  background: var(--point);
}

.PHO-05-contents-text-box {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.03rem;
  line-height: 1.3;
  color: var(--subtxt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 1.2rem 0;
}

.PHO-05-contents-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.03rem;
  color: var(--subtxt);
}

.PHO-05-contents-time i {
  color: var(--subtxt);
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.8rem;
}

.pagination button {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.5rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination button:last-child {
  margin-right: 0rem;
}

.pagination button img {
  width: 1.2rem;
  height: 1.2rem;
}

.pagination span {
  display: flex;
}

.pagination .page-number {
  font-size: 1.3rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  margin-right: 0.4rem;
}

.pagination .page-number.active {
  background: var(--navy); /* 현재 페이지 배경 색 */
  color: var(--white);
  font-weight: bold;
}

.PHO-05-pag {
  margin: 4rem 0 10rem;
}

@media (max-width: 1200px) {
  .PHO-05-wrap {
    max-width: calc(100% - 5rem);
    width: 100%;
    margin: 0 auto;
  }

  .PHO-05-input-wrap {
    justify-content: center;
  }

  .PHO-05-contents-container {
    justify-content: center;
    gap: 8rem 4rem;
  }
}

@media (max-width: 768px) {
  .PHO-05-contents-container {
    gap: 4rem 2rem;
  }

  .PHO-05-input-wrap {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: end;
  }

  .PHO-05-select-box,
  .PHO-05-text-box,
  .PHO-05-btn {
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .PHO-05-wrap {
    max-width: calc(100% - 4rem);
  }

  .PHO-05-contents-container {
    gap: 4rem 0;
  }
}

/* SF-PHO-05-03(user) */
@media (max-width: 425px) {
  .PHO-05-input-wrap {
    display: flex;
  }
}

/**************************************************
SF-PHO-05-03(user & admin)
**************************************************/
.PHO-05-media {
  width: 100%;
  max-width: 600px;
  height: 20rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.PHO-05-media img,
.PHO-05-media video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 비율 깨지지 않도록 */
}

/**************************************************
SF-CON-04-01
**************************************************/
/* admin.css 중복 - 시작 */

.contest-filter select {
  margin-left: 1.2rem;
}

.contest-filter button {
  margin-left: 1.2rem;
}

.contest-list {
  text-align: left;
  margin-top: 1.8rem;
  width: 100%;
}

.contest-item .title3 img {
  width: 2.4rem;
  height: 2.4rem;
}

.contest-item {
  width: 100%;
  border: 1px solid #dddddd;
  cursor: pointer;
  border-radius: 0.7rem;
  margin-bottom: 1.6rem;
}

.contest-item .title {
  transition: background 0.3s;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.contest-item .text {
  display: none;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #f1f7ff;
  padding: 2.8rem 2rem;
}

.contest-item.active .title3 img {
  transform: rotate(180deg);
}

.contest-item .title1 {
  margin: 2.4rem;
  padding: 1.2rem 1.6rem;
  background-color: var(--red);
  color: var(--white);
  border-radius: 0.7rem;
}

.contest-item .title2 {
  margin: 2.1rem 1.6rem;
}

.contest-item .title2 h2 {
  color: #2b2b2b;
}

.contest-item .title2 p {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--subtxt);
  margin-top: 0.5rem;
}

.contest-item .title3 {
  margin: 2.8rem;
  margin-left: auto;
}

.contest-item .text ul li img {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.8rem;
}

.contest-item .text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.contest-item .text ul li span {
  font-weight: 400;
  margin-left: 5.4rem;
}

.contest-item .text .textButton {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem; /* 코드 추가 */
}

.contest-item .text .textButton button {
  width: 100%; /* 코드 수정 */
  background-color: var(--navy);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  padding: 1.4rem 0;
  margin-top: 1.5rem;
}

.contest-item .text .textButton button img {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}

/* admin.css 중복 - 끝 */

.CON-04-filter {
  gap: 0;
}

.CON-04-btn .ri-search-line {
  margin-right: 0.4rem;
}

.SF-CON-04-01-select-box1 {
  max-width: 16rem;
}

.SF-CON-04-01-select-box2 {
  max-width: 28rem;
}

/**************************************************
SF-CON-04-02
**************************************************/
.CON-04-modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  max-height: 80rem;
  overflow-x: auto;
  overflow-y: auto;
}

.CON-04-02-modal-wrap {
  height: 100%;
  max-height: 80rem;
}

.CON-04-03-modal-tit-calendar {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #333;
  mask-image: url("../../img/ico_gameCalendar.svg");
  /* -webkit-mask-image: url("../../img/ico_gameCalendar.svg"); */
  mask-repeat: no-repeat;
  /* -webkit-mask-repeat: no-repeat; */
  mask-size: contain;
  /* -webkit-mask-size: contain; */
  display: inline-block;
}

.CON-04-03-content-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.4rem;
  margin-bottom: 2rem;
}

.CON-04-03-info-item {
  width: 100%;
  max-width: 50%;
  height: 4.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.CON-04-03-info-item .CON-04-03-item-tit {
  width: 100%;
  max-width: 16rem;
  height: 100%;
  background: var(--bg_gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.CON-04-03-info-item p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
}

.CON-04-03-info-item span {
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
  padding: 0 1.2rem;
}

.CON-04-03-select {
  height: 3.6rem !important;
}

.CON-04-03-match-table-container {
  overflow-x: auto;
  max-width: 100%;
}

.CON-04-03-match-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.CON-04-03-match-table thead {
  width: 100%;
  height: 4.2rem;
  background: var(--bg_gray);
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
  border-top: 2px solid var(--border_normal);
  border-bottom: 1px solid var(--border_normal);
  color: var(--txt_Bk);
}

.CON-04-03-match-table thead tr th:nth-child(1) {
  width: 16rem;
}

.CON-04-03-match-table thead tr th:nth-child(2) {
  text-align: left;
  padding: 0 0.8rem;
}

.CON-04-03-match-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.CON-04-03-match-table tbody .personal span,
.CON-04-03-match-table tbody .team span {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.03rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.5rem;
  color: var(--white);
}

.CON-04-03-match-table tbody .personal span {
  background: var(--point);
}

.CON-04-03-match-table tbody .team span {
  background: #06c270;
}

.CON-04-03-match-table tbody td:nth-child(2) {
  text-align: left;
  padding: 1.6rem 0.8rem;
}

.CON-04-03-match-table tbody td:nth-child(2) .CON-04-03-red {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  color: #ff4a4a;
}

.CON-04-03-match-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.CON-04-03-match-group:nth-last-child(1) {
  margin-bottom: 0;
}

.CON-04-03-match-weights {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.CON-04-03-match-weights span,
.CON-04-03-match-group span {
  background: var(--bg_gray);
  padding: 0.8rem 1.6rem;
  color: var(--subtxt);
  border-radius: 0.5rem;
}

/**************************************************
SF-CON-04-03
**************************************************/
.CON-04-04-poptitle {
  width: 100%;
  min-width: 60rem;
}

.CON-04-04-poptitle-tit {
  width: 100%;
  min-width: 60rem;
}

.CON-04-modal-sub-tit p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--txt_Bk);
}

.CON-04-04-date {
  width: 100%;
  min-width: 60rem;
}

.CON-04-modal-date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.CON-04-modal-date strong {
  width: 100%;
  max-width: 8rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  border-radius: 0.5rem;
  color: var(--white);
  padding: 0.8rem 0;
  text-align: center;
}

.CON-04-modal-date span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
}

/* State */
/* 경기예정 */
.match-scheduled {
  background-color: #06c270;
}

/* 경기중 */
.match-scheduled {
  background-color: #ff4a4a;
}

/* 경기종료 */
.match-scheduled {
  background-color: var(--subtxt);
}

/**************************************************
SF-CON-04-04
**************************************************/
.CON-04-03-modal-tit-matchBracket {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #333;
  mask-image: url("../../img/ico_matchBracket.svg");
  /* -webkit-mask-image: url("../../img/ico_matchBracket.svg"); */
  mask-repeat: no-repeat;
  /* -webkit-mask-repeat: no-repeat; */
  mask-size: contain;
  /* -webkit-mask-size: contain; */
  display: inline-block;
}

.CON-04-modal-tit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.CON-04-modal-tit h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
}

.CON-04-modal-back {
  cursor: pointer;
  font-size: 2rem;
}

.CON-04-04-modal-wrap {
  height: 100%;
  max-height: 80rem;
  overflow-y: scroll;
  overflow-x: auto;
  white-space: nowrap;
}

.CON-04-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.CON-04-02-select-wrap {
  width: 100%;
  justify-content: space-between;
  gap: 1.2rem;
}

.CON-04-04-select-wrap {
  min-width: 60rem;
}

.CON-04-02-select-box1 {
  width: 100%;
  max-width: 100%;
}

.CON-04-02-select-box2 {
  width: 100%;
  max-width: 100%;
}

.CON-04-02-select-box3 {
  width: 100%;
  max-width: 100%;
}

.CON-04-02-btn {
  width: 100%;
  max-width: 10rem;
}

.CON-04-rank {
  width: 100%;
  min-width: 60rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.CON-04-rank-1,
.CON-04-rank-2,
.CON-04-rank-3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.7rem;
  padding: 1.2rem;
}

.CON-04-rank-1 {
  background: #fffbe4;
  border: 1px solid #c6912c;
}

.CON-04-rank-2 {
  background: #f5f5f5;
  border: 1px solid #858585;
}

.CON-04-rank-3 {
  background: #faece1;
  border: 1px solid #a26550;
}

.CON-04-rank-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--black);
  letter-spacing: -0.03rem;
}

.CON-04-rank-player strong {
  font-size: 2rem;
  font-weight: 700;
}

.CON-04-rank-player span {
  font-size: 1.4rem;
}

.CON-04-video-info {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0.8rem 4rem;
  background: var(--bg_gray);
  border: 1px solid var(--border_normal);
  border-radius: 0.7rem;
}

.CON-video-none,
.CON-video-available {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.CON-video-none span,
.CON-video-available span {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--white);
  text-align: center;
  line-height: 2.8rem;
  border-radius: 0.7rem;
}

.CON-video-none span {
  background: var(--subtxt);
}

.CON-video-available span {
  background: var(--point);
}

.CON-video-none span,
.CON-video-available span {
  font-size: 1.2rem;
  letter-spacing: -0.03rem;
}

.CON-video-none p,
.CON-video-available p {
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
}

/* 대진표 */
.tournament-bracket {
  width: 100%;
  max-width: 60rem;
  min-width: 60rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.match-left,
.match-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.match {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.2rem;
}

.player {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  color: #999;
  border: 1px solid #ddd;
  border-radius: 0.7rem;
  padding: 0.6rem 1rem;
}

.player strong {
  font-size: 1.4rem;
  font-weight: 600;
}

.player span {
  font-size: 1.2rem;
  font-weight: 400;
}

.match-line {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.btn-sports-video {
  position: absolute;
  right: -25%;
  top: 50%;
  transform: translatey(-50%);
}

.btn-sports-video {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1.2rem;
  letter-spacing: -0.03rem;
}

.match,
.match-line-left2,
.match-line-left3,
.semifinal-wrap,
.final-match,
.match-line-right2,
.match-line-right3,
.match-line-right4 {
  position: relative;
}

.match-line-left2 .btn-sports-video {
  position: absolute;
  transform: translatey(-50%);
}

.CON-04-04-first .match-line-left2 .btn-sports-video {
  right: 20%;
  top: 50%;
}

.match-line-left3 .btn-sports-video {
  position: absolute;
  transform: translatey(-50%);
}

.CON-04-04-first .match-line-left3 .btn-sports-video {
  right: 20%;
  top: 50%;
}

.match-line-left4 .btn-sports-video {
  position: absolute;
  right: 125%;
  top: 49%;
  transform: translatey(-50%);
}

.match-line-right4 .btn-sports-video {
  position: absolute;
  left: 125%;
  top: 49%;
  transform: translatey(-50%);
}

.player-semifinal {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(50%, -60%);
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border_normal);
  width: 100%;
  min-width: 6.4rem;
  border-radius: 0.7rem;
  letter-spacing: -0.03rem;
}

.player-semifinal-right {
  right: 0%;
  top: 50%;
  transform: translate(8%, -60%);
}

.player-semifinal strong {
  font-size: 1.4rem;
  font-weight: 600;
}

.player-semifinal span {
  font-size: 1.2rem;
  font-weight: 400;
}

.player-semifinal-1,
.player-semifinal-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.8rem;
  gap: 0.4rem 0;
}

.player-semifinal-1 {
  border-bottom: 1px solid var(--border_normal);
}

.btn-sports-video-rg {
  left: -25%;
}

.final-match {
  width: 100%;
}

.final-match img {
  width: 50%;
  z-index: 1;
  margin: 0 auto;
}

.final-match .btn-sports-video {
  position: absolute;
  top: 50%;
  left: 43%;
  transform: translate(0, 260%);
}

.match-win-player {
  width: 100%;
  max-width: 10rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  background: #fffbe4;
  border: 1px solid #c6912c;
  border-radius: 0.7rem;
  padding: 0.8rem 0.4rem;
  margin: 0 auto;
  color: var(--txt_Bk);
}

.match-win-player strong {
  font-size: 1.6rem;
  font-weight: 700;
}

.match-win-player span {
  font-size: 1.2rem;
  font-weight: 400;
}

.SF-CON-04-01-notice {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ff4a4a;
  text-align: center;
}

/* State */
.player-rg {
  align-items: flex-start;
}

.btn-vd-registered {
  background: var(--point);
}

.btn-vd-unregistered {
  background: var(--subtxt);
}

.flipped-x {
  transform: scaleX(-1);
}

.flipped-y {
  transform: scaleY(-1);
}

/**************************************************
SF-CON-04-04 대진표수정 추가
**************************************************/
.CON-04-04-second .tournament-bracket {
  width: 100%;
  max-width: 75rem;
  min-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .match {gap: 3rem;} */
.CON-04-04-second .match-line {
  gap: 0rem;
}

.CON-04-04-second .btn-sports-video {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--white);
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: -0.03rem;
}

.CON-04-04-second #match-1 .btn-sports-video {
  position: absolute;
  right: 0%;
  top: 30%;
  transform: translatey(-50%);
}

/* 대진표 */
.CON-04-04-second .match-list .match {
  margin-bottom: 2.61rem;
  gap: 2.61rem;
}

.CON-04-04-second .match-progress
  /* 대진표 라인 재정렬 */
.CON-04-04-second .match {
  gap: 0rem !important;
}

.CON-04-04-second .match-list {
  gap: 0;
}

.CON-04-04-second .match-line11 {
  margin-top: 2.3rem;
}

.CON-04-04-second .match-line12 {
  margin-top: 6.8rem;
}

/* .match-line13 {margin-top: 7.7rem;} */
.CON-04-04-second .match-line21 {
  margin-top: 5.8rem;
  height: 104px;
  width: 25.94px;
}

.CON-04-04-second .match-line22 {
  margin-top: 6.8rem;
}

.CON-04-04-second .match-line23 {
  margin-top: 10.3rem;
}

.CON-04-04-second .match-line31 {
  margin-top: 11rem;
  height: 154px;
}

.CON-04-04-second .match-line32 {
  margin-top: 19.6rem;
  height: 154px;
}

.CON-04-04-second .match-line41 {
  margin-top: 18.5rem;
  height: 1053px;
  width: 75.6px;
}

.CON-04-04-second .match-line21.ll {
  margin-top: 5.85rem;
  width: 25.94px;
  height: 104px;
}

.CON-04-04-second .match-line22.ll {
  margin-top: 6.75rem;
}

.CON-04-04-second .match-right img {
  transform: scaleX(-1);
}

.CON-04-04-second .match-line22 {
  height: 73.5px;
}

.CON-04-04-second .match-line22.li6 {
  height: 74px;
}

.CON-04-04-second .match-line23 {
  width: 25.94px;
  height: 104px;
}

.CON-04-04-second .match-line23.rli6 {
  margin-top: 10.4rem;
}

.CON-04-04-second .match-line22.rli7 {
}

/* 대진표 */
.CON-04-04-second .btn-sports-video {
  position: absolute;
  transform: translatey(-50%);
}

.CON-04-04-second .match .btn-sports-video.b001,
.b002,
.b003,
.b004 {
  top: 33%;
  right: -25%;
}

.CON-04-04-second .match .btn-sports-video.b005,
.b006,
.b007,
.b008 {
  top: 33%;
  left: -25%;
}

.CON-04-04-second .match-line .btn-sports-video.b009 {
  top: 68%;
  right: 20%;
}

.CON-04-04-second .match-line .btn-sports-video.b010,
.b012,
.b014,
.b016 {
  top: 73%;
  right: 20%;
}

.CON-04-04-second .match-line .btn-sports-video.b011,
.b013,
.b015 {
  top: 76%;
  right: 20%;
}

.CON-04-04-second .match-line .btn-sports-video.b017 {
  top: 69%;
  right: -5%;
}

.CON-04-04-second .match-line .btn-sports-video.b018,
.b020,
.b022,
.b024 {
  top: 73%;
  right: -5%;
}

.CON-04-04-second .match-line .btn-sports-video.b019,
.b021,
.b023 {
  top: 76%;
  right: -5%;
}

.CON-04-04-second .match-line .btn-vd-registered.b025 {
  top: 71%;
  right: 20%;
}

.CON-04-04-second .match-line .btn-vd-registered.b026,
.b027,
.b028 {
  top: 78%;
  right: 20%;
}

.CON-04-04-second .match-line .btn-vd-registered.b029 {
  top: 71%;
  right: -5%;
}

.CON-04-04-second .match-line .btn-vd-registered.b030,
.b031,
.b032 {
  top: 78%;
  right: -5%;
}

.CON-04-04-second .match-line .btn-vd-registered.b033 {
  top: 26%;
  left: 18%;
}

.CON-04-04-second .match-line .btn-vd-registered.b034 {
  top: 76%;
  left: 18%;
}

.CON-04-04-second .match-line .btn-vd-registered.b035 {
  top: 29.5%;
  left: 55%;
}

.CON-04-04-second .match-line .btn-vd-registered.b036 {
  top: 86%;
  left: 55%;
}

.CON-04-04-second .final-match .btn-vd-registered.b037 {
  top: 110%;
  left: 46%;
}

/**************************************************
SF-CON-04-05
**************************************************/
.CON-04-05-modal-tit-matchBracket {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #333;
  mask-image: url("../../img/ico_applyStatus.svg");
  /* -webkit-mask-image: url("../../img/ico_applyStatus.svg"); */
  mask-repeat: no-repeat;
  /* -webkit-mask-repeat: no-repeat; */
  mask-size: contain;
  /* -webkit-mask-size: contain; */
  display: inline-block;
}

.CON-04-05-teamInfo,
.CON-04-05-applicantList {
  background: var(--white);
  border: 1px solid var(--border_normal);
  margin-bottom: 2rem;
}

.CON-04-05-teamInfo:nth-last-child(1) {
  background: var(--white);
  border: 1px solid var(--border_normal);
  margin-bottom: 2rem;
}

.CON-04-05-teamInfo-th,
.CON-04-05-applicantList-th {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 1.6rem 2rem;
}

.CON-04-05-teamInfo-th strong,
.CON-04-05-applicantList-th strong {
  font-size: 1.6rem;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
}

.CON-04-05-teamInfo-td,
.CON-04-05-applicantList-td {
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  font-size: 1.4rem;
  letter-spacing: -0.03rem;
}

.CON-04-05-teamInfo-td .CON-04-05-teamInfo-td-tit,
.CON-04-05-applicantList-td .CON-04-05-applicantList-td-tit {
  width: 100%;
  max-width: 12rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.CON-04-05-applicantList-td {
  padding: 2rem 4rem 1rem;
}

.CON-04-05-applicant-phone-wrap,
.applicant-email-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.applicant-email-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.applicant-email-input,
.applicant-email-custom-domain {
  width: 8rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  outline: none;
  transition: border 0.2s ease-in-out;
}

.applicant-email-domain {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  background: white;
  color: #999;
  cursor: pointer;
}

.applicant-email-domain::-ms-expand {
  display: none;
}

.SF-CON-04-01-notice-tx-lf {
  text-align: left;
  padding: 0 4rem;
}

.CON-04-05-fee-info-box {
  background: var(--bg_gray);
  padding: 1.2rem 2rem;
  margin: 1.2rem 4rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.03rem;
}

.CON-04-05-fee-info-box .fee-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
  margin-bottom: 0.8rem;
}

.CON-04-05-fee-info-box .fee-account {
  padding: 0.4rem 0;
}

.CON-04-05-fee-info-box .fee-note {
  font-size: 1.3rem;
  font-weight: 300;
}

/* 탭 버튼 컨테이너 */
.CON-04-05-tab-info-container {
  display: flex;
  margin-bottom: 1.2rem;
}

.CON-04-05-tab-button {
  flex: 1;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  text-align: center;
  background: var(--white);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.CON-04-05-tab-button.active {
  background: var(--navy);
  color: white;
  letter-spacing: -0.03rem;
}

/* 탭 내용 */
.CON-04-05-tab-content {
  display: none;
}

.CON-04-05-tab-content.active {
  display: block;
}

/* 버튼 영역 */
.CON-04-05-btnWrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.CON-04-05-tab-btn-individual {
  border-radius: 0.7rem 0 0 0.7rem;
  border: 1px solid var(--navy);
}

.CON-04-05-tab-btn-team {
  border-radius: 0 0.7rem 0.7rem 0;
  border: 1px solid var(--navy);
}

.CON-04-05-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.CON-04-05-table thead {
  width: 100%;
  height: 4.2rem;
  background: var(--bg_gray);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.03rem;
  color: var(--txt_Bk);
}

.CON-04-05-table th,
td {
  font-size: 1.4rem;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--border_normal);
  text-align: center;
  white-space: nowrap;
}

.CON-04-05-table td label {
  margin-bottom: 0;
}

.CON-04-05-table td label input {
  color: #333;
  padding: 9px;
}

.CON-04-05-table td label input::placeholder {
  color: var(--subtxt);
}

.CON-04-05-table td label input.date-input {
  max-width: 85px;
  background: transparent; /* 배경 투명 */
  border-radius: 7px;
  border: 1px solid var(--border_normal);
}

.CON-04-05-btn-add {
  background: var(--white);
  color: var(--navy);
}

.CON-04-05-btn-save {
  background: var(--navy);
  color: var(--white);
}

/**************************************************
SF-CON-04-01(admin)
**************************************************/
@media (max-width: 790px) {
  .contest-item .title {
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
  }

  .contest-item .title2 {
    width: 52rem;
    margin: 1.6rem;
  }

  .contest-item .title1 {
    margin: 1.6rem 1.6rem 1.6rem;
  }

  .contest-item .title3 {
    margin: 1.6rem;
    margin-left: auto;
  }

  .contest-item .text .textButton {
    flex-wrap: wrap;
    gap: 0;
  }
}

/**************************************************
SF-CON-04-07
**************************************************/



/* 적용안되는 폰트사이즈 임의 이동 */

@media (max-width: 480px) {
        .contest-item .title2 p {
      font-size: 1rem;
    }
}