@charset "UTF-8";
body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  background: #fff;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  width: 100%;
}

.logo {
  height: 40px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -440px;
  width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
  z-index: 1200;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

.side-menu.open {
  right: 0;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.close-btn {
  font-size: 36px;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  line-height: 1;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}

.menu-list li {
  font-size: 20px;
  color: #2346a0;
  padding: 24px 32px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0px 20px;
  border-radius: 12px;
}

.menu-list li:hover {
  background: #4E96FF;
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  /*   padding: 32px 0 0 0; */
  padding: 32px 0px 0px 100px;
  min-height: 100vh;
}

.pc-sidebar {
  width: 275px;
  background: #e6f0ff;
  border-radius: 18px;
  margin-right: 32px;
  padding: 18px 0 18px 0;
  box-shadow: 0 2px 8px rgba(35, 70, 160, 0.06);
  height: -moz-fit-content;
  height: fit-content;
}

.pc-menu-list {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0;
}

.pc-menu-title {
  font-weight: 700;
  color: #2346a0;
  background: #d0e3ff;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.pc-menu-title .active {
  color: #fff;
  background-color: #4E96FF;
}

.pc-menu-list li {
  color: #2346a0;
  background: #f3f7ff;
  padding: 13px 20px;
  border-radius: 12px;
  margin: 0 10px 8px 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.pc-menu-list li:hover,
.pc-menu-list .active {
  background: #4E96FF;
  color: #fff !important;
  text-decoration: none !important;
}
.pc-menu-list li:hover a:-webkit-any-link,
.pc-menu-list .active a:-webkit-any-link {
  color: #fff !important;
  cursor: pointer;
  text-decoration: none;
}

a:-webkit-any-link {
  cursor: pointer;
  text-decoration: none;
  color: #2346a0;
}

.main-content {
  flex: 1;
  max-width: 700px;
  margin: 0;
  padding: 0 16px 40px 0;
  min-height: 100vh;
}

.main-title {
  color: #2346a0;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.main-desc {
  color: #e53935;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.manual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manual-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f7ff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(35, 70, 160, 0.03);
}

.manual-item span {
  font-weight: 500;
  color: #222;
}

.pdf-link {
  color: #2346a0;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.pdf-link:hover {
  color: #1a2e6c;
  text-decoration: underline;
}

header,
.logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 901px) {
  header,
  .logo-area,
  .menu-btn {
    display: none !important;
  }
}
@media (max-width: 900px) {
  header,
  .logo-area,
  .menu-btn {
    display: flex;
  }
}
@media (max-width: 400px) {
  .side-menu {
    width: 88vw;
    min-width: 0;
    overflow-y: auto;
  }
  .menu-list li {
    font-size: 1.2rem;
    padding: 18px 16px;
    margin: 0px 24px;
  }
}
@media (max-width: 600px) {
  .main-content {
    max-width: 100vw;
    margin: 24px 0 0 0;
    padding: 0 8px 24px 8px;
  }
  .main-title {
    font-size: 1.3rem;
    margin: 15px 20px;
  }
  .manual-item {
    font-size: 1rem;
    padding: 14px 10px;
    margin-bottom: 12px;
    margin: 11px 16px;
    border-radius: 8px;
  }
  .pdf-link {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 0;
  }
  .pc-sidebar {
    display: none;
  }
  .main-content {
    max-width: 100vw;
    padding: 0 8px 24px 8px;
  }
}
.dash {
  display: inline-block;
  width: 100%;
  height: 2243px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/dash.png);
}
@media (max-width: 900px) {
  .dash {
    max-width: 100vw;
    height: 1483px;
  }
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.video-card {
  background: #f3f6fd;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2346a0;
  margin-bottom: 12px;
}

.ytp-cued-thumbnail-overlay-image {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-embed {
  width: 100%;
  max-width: 750px;
  height: 350px;
  /* 적절한 비율(16:9)에 맞춘 높이 */
  border: none;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .video-embed {
    max-width: 100vw;
    height: 200px;
  }
}

/* install_pc.html */
.pdf_install0 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install0.png);
}
@media (max-width: 900px) {
  .pdf_install0 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install1 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install1.png);
}
@media (max-width: 900px) {
  .pdf_install1 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install2 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install2.png);
}
@media (max-width: 900px) {
  .pdf_install2 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install3 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install3.png);
}
@media (max-width: 900px) {
  .pdf_install3 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install4 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install4.png);
}
@media (max-width: 900px) {
  .pdf_install4 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install5 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install5.png);
}
@media (max-width: 900px) {
  .pdf_install5 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install6 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install6.png);
}
@media (max-width: 900px) {
  .pdf_install6 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install7 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install7.png);
}
@media (max-width: 900px) {
  .pdf_install7 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install8 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install8.png);
}
@media (max-width: 900px) {
  .pdf_install8 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_install9 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_install9.png);
}
@media (max-width: 900px) {
  .pdf_install9 {
    max-width: 100vw;
    height: 510px;
  }
}

.tutorial1 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/tutorial1.png);
}
@media (max-width: 900px) {
  .tutorial1 {
    max-width: 100vw;
    height: 510px;
  }
}

.tutorial2 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/tutorial2.png);
}
@media (max-width: 900px) {
  .tutorial2 {
    max-width: 100vw;
    height: 510px;
  }
}

.tutorial3 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/tutorial3.png);
}
@media (max-width: 900px) {
  .tutorial3 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_catalog1 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_catalog1.png);
}
@media (max-width: 900px) {
  .pdf_catalog1 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_catalog2 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_catalog2.png);
}
@media (max-width: 900px) {
  .pdf_catalog2 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_catalog3 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_catalog3.png);
}
@media (max-width: 900px) {
  .pdf_catalog3 {
    max-width: 100vw;
    height: 510px;
  }
}

.pdf_catalog4 {
  display: inline-block;
  width: 100%;
  height: 1000px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/pdf_catalog4.png);
}
@media (max-width: 900px) {
  .pdf_catalog4 {
    max-width: 100vw;
    height: 510px;
  }
}

.icon_1 {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_1.png);
  margin-right: 5px;
}

.icon_2 {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_2.png);
  margin-right: 5px;
}

.icon_3 {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_3.png);
  margin-right: 5px;
}

.icon_dashboard {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_dashboard.png);
  margin-right: 5px;
}

.icon_game {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_game.png);
  margin-right: 5px;
}

.icon_info {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_info.png);
  margin-right: 5px;
}

.icon_m {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_m.png);
  margin-right: 5px;
}

.icon_pc {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_pc.png);
  margin-right: 5px;
}

.icon_people {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_people.png);
  margin-right: 5px;
}

.icon_pro {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_pro.png);
  margin-right: 5px;
}

.icon_tutorial {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_tutorial.png);
  margin-right: 5px;
}

.icon_0 {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_0.png);
  margin-right: 5px;
}

.icon_book {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_book.png);
  margin-right: 5px;
}

.icon_video {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_video.png);
  margin-right: 5px;
}

.icon_download {
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../pdf/icon_download.png);
  margin-right: 5px;
}

/* activity.html */
.activity .step-title {
  margin-bottom: 20px;
}
.activity .table-scroll {
  width: 300px;
}
.activity .table-scroll img {
  min-width: 300px !important;
  max-width: 70% !important;
}

/* manual.html */
.manual body {
  font-family: "Noto Sans KR", Arial, sans-serif;
  background: #f7f9fb;
  margin: 0;
  padding: 0;
  color: #222;
}
.manual .main-content {
  max-width: 700px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 28px;
}
.manual h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.manual .desc {
  text-align: left;
  color: #666;
  margin-bottom: 24px;
}
.manual .steps {
  list-style: decimal inside;
  padding-left: 0;
  margin-bottom: 24px;
}
.manual .steps li {
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.manual .step-title {
  font-weight: 400;
}
.manual .download-btn {
  display: block;
  margin: 12px 0 0 0;
  background: #2ec4f1;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.manual .download-btn:hover {
  background: #1d7d9b;
}
.manual .info-box {
  display: flex;
  align-items: flex-start;
  background: #f1f7fd;
  border-left: 10px solid #2ec4f1;
  border-radius: 10px;
  padding: 18px 18px 18px 16px;
  margin-bottom: 18px;
  gap: 16px;
  font-size: 1rem;
}
.manual a:-webkit-any-link {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.manual .info-box-n {
  display: flex;
  align-items: flex-start;
  background: #F9F9FC;
  border-radius: 10px;
  padding: 18px 18px 18px 16px;
  margin-bottom: 18px;
  font-size: 1rem;
  flex-flow: column;
}
.manual .info-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2ec4f1;
  margin-right: 8px;
  min-width: 28px;
}
.manual .example {
  color: #666;
  font-size: 0.98em;
  margin-left: 2px;
}
.manual .red {
  color: #e74c3c !important;
  font-weight: 600;
}
.manual .blue {
  color: #2ec4f1 !important;
  font-weight: 600;
}
.manual .info-list {
  margin: 8px 0 0 0;
  padding-left: 18px;
  font-size: 0.98em;
}
.manual .info-list li {
  margin-bottom: 2px;
}
.manual .table-section {
  margin: 32px 0 24px 0;
}
.manual .table-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.05em;
}
.manual .table-scroll {
  overflow-x: auto;
  background: #f7f9fb;
  border: 1px solid #e0e6ef;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 18px;
}
.manual .table-scroll img {
  min-width: 500px;
  max-width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .manual .container {
    max-width: 98vw;
    padding: 2vw 2vw;
  }
  .manual h1 {
    font-size: 1.3rem;
  }
  .manual .steps li,
  .manual .info-box,
  .manual .table-title {
    font-size: 0.98rem;
  }
  .manual .info-num {
    font-size: 1.1rem;
    min-width: 22px;
  }
  .manual .download-btn {
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
  }
  .manual .table-scroll img {
    min-width: 320px;
  }
}/*# sourceMappingURL=edu.css.map */