@charset "UTF-8";
/* 페이버로지 - 로컬 폰트 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@font-face {
  font-family: "paper5";
  src: url("/fonts/Paperlogy-5.ttf") format("truetype");
}
html {
  overflow: auto;
}

body {
  word-break: keep-all;
  overflow-x: hidden;
  width: 100vw;
  max-width: 1350px;
  margin: 0 auto;
}
body .mo_only {
  display: none;
}
body input {
  width: 100%;
  background: none;
}
body #go-edit {
  position: fixed;
  border: 1px solid black;
  padding: 5px 10px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 24px;
}
body #go-edit:hover {
  background: #0A2955;
  color: white;
  transition: 0.3s;
}
body #schedule {
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 250, 0.3137254902);
  letter-spacing: -0.3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Pretendard";
  padding: 2% 5%;
  text-align: center;
  line-height: 1;
}
body #schedule .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2vw;
}
body #schedule .title h1 {
  font-size: clamp(18px, 3.2vw, 52px);
  font-family: "paper5";
  color: #0A2955;
  font-weight: bold;
  display: flex;
  align-items: center;
}
body #schedule .title h1 input {
  width: 150px;
  text-align: right;
}
body #schedule .title h1 input:nth-of-type(1) {
  margin-right: 20px;
}
body #schedule .title h1 span {
  color: #00A1E9;
  margin-left: 20px;
}
body #schedule .title .timeChange {
  border: 1px solid ccc;
  padding: 5px 20px;
  font-size: clamp(12px, 0.9vw, 20px);
  background: #d92727;
  color: white;
  width: unset;
}
body #schedule .title .timeChange:hover {
  background: #0A2955;
  color: yellow;
  transition: 0.3s;
}
body #schedule .title img {
  width: 14vw;
  min-width: 80px;
}
body #schedule table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
body #schedule table thead {
  background-color: #ddeaf3;
}
body #schedule table thead th {
  padding: 0.7% 4px;
  font-size: clamp(14px, 1.1vw, 22px);
  vertical-align: middle;
  border: 1px solid #ccc;
  font-weight: bold;
}
body #schedule table thead th:nth-of-type(2) {
  color: #d92727;
}
body #schedule table thead th:nth-last-of-type(1) {
  color: #1555af;
}
body #schedule table tbody tr:nth-of-type(3n+1) {
  background: #5e728f;
}
body #schedule table tbody tr:nth-of-type(3n+1) td {
  color: white;
  font-size: clamp(12px, 1.2vw, 20px);
  font-weight: 600;
}
body #schedule table tbody tr:nth-of-type(3n+1) td input {
  color: white;
  font-size: clamp(12px, 1.2vw, 20px);
  font-weight: 600;
}
body #schedule table tbody tr td {
  padding: 0.7% 4px;
  font-size: clamp(12px, 0.9vw, 20px);
  vertical-align: middle;
  border: 1px solid #ccc;
  color: #272727;
}
body #schedule table tbody tr td input {
  text-align: center;
}
body #schedule table tbody tr td.closed {
  color: #eb3c3c;
  font-weight: 600;
}
body #schedule table tbody tr td.holiday {
  background: #eb3c3c;
  font-weight: 600;
}
body #schedule table tbody tr td.sat {
  background: #1d53b9;
}
body #schedule table tbody tr td.sun {
  background: #eb3c3c;
}
body #schedule .notice {
  font-size: clamp(14px, 1.1vw, 22px);
  margin-top: 20px;
  color: #555;
}

@media screen and (max-width: 768px) {
  body .mo_only {
    display: block;
  }
  body #schedule {
    width: 100%;
    height: 100vh;
    padding: 0;
  }
  body #schedule .title {
    margin-bottom: 14px;
  }
  body #schedule .title h1 {
    font-size: clamp(18px, 3.2vw, 52px);
  }
  body #schedule .title .edit {
    font-size: clamp(12px, 0.9vw, 20px);
  }
  body #schedule table {
    width: 100%;
  }
  body #schedule table thead th {
    padding: 10px 4px;
  }
  body #schedule table tbody tr td {
    padding: 2%;
  }
  body #schedule .notice {
    margin-top: 14px;
  }
}/*# sourceMappingURL=style.css.map */