@import url(./color.css);
@import url("//fonts.googleapis.com/earlyaccess/notosanskr.css");
/*공통영역*/

* {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans KR", sans-serif;
}

.wrap {
  width: 100%;
  position: relative;
}

.inner {
  width: calc(100% - 480px);
  max-width: 1440px;
  position: relative;
  margin: auto;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: var(--black);
}

.hidden {
  width: 0px;
  height: 0px;
  border: none;
  outline: none;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}
.swal2-title {
  font-size: 22px !important;
}
/*header*/
header {
  width: 100%;
  z-index: 999;
  position: absolute;
  top: 24px;
  left: 0px;
}

header .inner {
  display: flex;
  justify-content: space-between;
  height: 80px;
  background-color: var(--white);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  box-sizing: border-box;
  border-radius: 20px;
  align-items: center;
}
.header_logo_box {
  display: flex;
  align-items: center;
}
.header_link {
  width: 122px;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}
.header_right {
  display: flex;
  gap: 30px;
  margin-left: 24px;
  margin-right: 8px;
  height: 100%;
  justify-content: right;
  align-items: center;
  cursor: pointer;
}
.header_right img {
  width: 24px;
  display: block;
  height: 24px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.header-right-button img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  object-fit: cover;
}
.header-right-dropdown {
  position: absolute;
  border-radius: 5px;
  bottom: -84px;
  background-color: var(--white);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
  right: 0px;
  transition: all 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  top: -300px;
  z-index: 0;
}
.header-right-dropdown.opened_dd {
  opacity: 1;
  right: 0px;
  top: auto;
  z-index: 10;
}
.hrd-item {
  display: block;
  padding: 12px;
  width: 100%;
  font-size: 14px;
}
.hrd-item:hover {
  background-color: #f5f5f5;
}

.header_logo {
  height: 32px;
}
.header_open {
  width: 100%;
  z-index: 0;
  display: flex;
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: start;
  justify-content: right;
  opacity: 0;
  transition: all 0.5s ease;
  height: 100vh;
}

.header_open.open {
  opacity: 1;
  z-index: 9999;
}

.header_open.open .right_menuarea {
  right: 0px;
}
.right_menuarea-left {
  height: 100%;
  position: relative;
  display: flex;
  box-sizing: border-box;
  gap: 24px;
}
.right_menuarea-right {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  bottom: -12px;
  right: 0px;
}
.right_menuarea {
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: start;
  box-sizing: border-box;
}
.rml-item {
  box-sizing: border-box;
  color: var(--black);
  transition: all 0.3s ease;
  font-weight: lighter;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: left;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 16px;
  border-bottom: 2px solid var(--white);
  white-space: nowrap;
}
.rml-item:hover {
  opacity: 1;
  color: var(--point);
}
.rml-item.active {
  color: var(--point);
  border-bottom: 2px solid var(--point);
  opacity: 1;
}
.menu_line {
  width: 100%;
  display: flex;
  gap: 12px;
  position: absolute;
  opacity: 0;
  top: -300px;
  z-index: 1;
  transition: all 0.3s ease;
  justify-content: right;
}
.menu_line.active {
  top: 0px;
  opacity: 1;
}
.line_menu_link {
  box-sizing: border-box;
  font-size: 14px;
  display: flex;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
  align-items: center;
  background-color: var(--white);
}

.line_menu_link:hover {
  color: var(--point);
}

/*footer*/
.footer {
  background-color: var(--point);
  width: 100%;
  height: 120px;
  position: relative;
  z-index: 9996;
}

.footer .inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_p {
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

/*admin login page*/
#login_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#login_form > img {
  margin: auto;
  margin-bottom: 40px;
  display: block;
}

.login_form_input {
  width: 460px;
  height: 45px;
  background-color: #fafafa;

  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border-radius: 15px;
  padding-left: 16px;
  display: block;
  outline: none;
  margin: auto;
  margin-bottom: 20px;
}

.mainpage_section_01_button_no {
  background-color: var(--gray) !important;
  color: var(--white) !important;
}

.login_button {
  display: block;
  margin: auto;
  margin-top: 32px;
  font-size: 16px;
  color: var(--white);
  font-weight: bold;
  width: 220px;
  height: 45px;
  text-align: center;
  align-items: center;
  background-color: var(--point);
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}
.mobile_header {
  display: none;
}
.mobile_sidebar {
  display: none;
}
.youtube_fullbox_item {
  width: 100%;
  height: 800px;
}

.popup_title {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  word-break: keep-all;
  text-align: center;
}
.popup_img_list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
.popup_img {
  display: block;
  width: 50%;
}

.benner {
  /*
  width: 100%;
  height: 300px;
  background-image: url(../src/newImage/benner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  */
  color: transparent;
  background-color: var(--bg);
  text-align: center;
  height: 30px;
  display: block;
}

section {
  background-color: var(--bg);
  padding-top: 90px !important;
  padding-bottom: 60px !important;
  min-height: 100vh;
  box-sizing: border-box;
}
section .inner {
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/*반응형*/
@media (max-width: 1536px) {
  .inner {
    width: 1400px;
  }
  .left_textArea {
    width: calc(100% - 610px - 306px);
  }
}
@media (max-width: 1400px) {
  section {
    padding-top: 84px !important;
  }
  .inner {
    width: calc(100% - 40px);
  }
  section .inner {
    padding: 20px;
  }

  #pc_header {
    display: none;
  }
  .footer {
    height: 80px;
  }
  .benner {
    height: 0px;
  }
  .footer_p {
    font-size: 8px;
  }
  .footer_logo {
    height: 40px;
  }
  .footer .inner {
    height: 80px;
  }
  .mobile_header {
    display: block;
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: var(--white);
    z-index: 9998;
  }
  .mobile_header .inner {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mb_header_logo {
    height: 20px;
  }
  .mb_header_logo_box {
    height: 20px;
  }
  .mobile_bar_button {
    cursor: pointer;
  }
  .mobile_sidebar {
    position: fixed;
    display: none;
    width: 100%;
    height: calc(100vh - 60px);
    right: 0px;
    overflow-y: scroll;
    top: 60px;
    z-index: 9997;
    background-color: var(--white);
  }
  .mobile_bar_x_button {
    position: fixed;
    z-index: 9999;
  }
  .mobile_sidebar_link_first {
    margin-top: 60px;
  }
  .mobile_sidebar_link {
    font-size: 18px;
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    height: 60px;
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray);
    text-align: center;
  }
  .mobile_sidebar_link:hover {
    background-color: var(--point);
    color: var(--white);
  }
  .mobile_sidebar_link:hover img {
    filter: brightness(0) invert();
  }
  .mobile_submenu {
    display: none;
  }

  .mobile_submenu {
    top: 60px;
    width: 100%;
    background-color: var(--white);
  }
  .mobile_sublink {
    display: flex;
    background-color: #f5f5f5;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    width: 100%;
    padding: 0px 32px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid var(--gray);
  }
  .mobile_sublink:hover {
    background-color: var(--point);
    color: var(--white);
  }
  .login_form_input {
    width: 90%;
  }
  #login_form > img {
    width: 60%;
  }
  #login_form {
    width: calc(100% - 40px);
  }

  .form-title {
    padding: 0px 12px !important;
  }
}
