@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  height: 100%;
}

html {
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  color: #000000;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  background-color: #ffffff;
}

summary::-webkit-details-marker { /* Safari 브라우저용 사용자 정의 스타일 */
  display: none;
}

summary {
  list-style-type: none; /* 그 외의 브라우저용 사용자 정의 스타일 */
  cursor: pointer;
}
summary ul li {
  margin-top: 1rem;
}

sup {
  font-size: 50%;
  padding: 0.1rem 0.3rem;
  margin: 0 0.1rem;
  height: 0.5rem;
  background-color: #FF9000;
  color: #ffffff;
  vertical-align: super;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.container .activity {
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 1.5rem 2rem;
}
.container .activity::-webkit-scrollbar {
  width: 0.7rem;
  background-color: #F2F2F2;
}
.container .activity > summary {
  height: 100%;
}
.container .activity > summary h1 {
  font-family: "Questrial", sans-serif;
  font-weight: 700;
  font-size: 7rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-bottom: 1.5rem;
  margin-left: -0.5rem;
}
.container .activity[open] > summary {
  pointer-events: none;
  height: auto;
}
.container .activity--watch {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(25%, auto));
  grid-auto-flow: dense;
  color: #1B86F2;
}
.container .activity--watch .video {
  border: solid 0.2rem #1B86F2;
  padding: 0.5rem;
  word-break: keep-all;
}
.container .activity--watch .video[open] {
  background-color: #1B86F2;
  color: #ffffff;
}
.container .activity--watch .video__study {
  padding-top: 2rem;
}
.container .activity--watch .video__study a {
  color: #ffffff;
  font-size: 0.7rem;
}
.container .activity--watch .video__study p {
  line-height: 1.3;
}
.container .activity--watch .video__study img {
  padding-top: 1rem;
}
.container .activity--watch .video:nth-child(2n+1) summary p {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}
.container .activity--watch .video:nth-child(2n) {
  grid-column: span 2;
  grid-row: span 2;
}
.container .activity--watch .video:nth-child(2n) summary p {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
}
.container .activity--watch .video:nth-child(3n) summary p {
  font-family: "Nanum Myeongjo", serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
}
.container .activity--watch .video:nth-child(5n) {
  grid-column: span 1;
  grid-row: span 3;
}
.container .activity--watch .video:nth-child(5n) summary p {
  font-weight: 300;
}
.container .activity--watch .video img {
  width: 100%;
}
.container--read {
  width: 80%;
}
.container--read h1 {
  color: #FF9000;
}
.container--read::-webkit-scrollbar-thumb {
  background: #FF9000;
}
.container--read a {
  color: #FF9000;
  font-style: italic;
}
.container--watch {
  width: 10%;
}
.container--watch h1 {
  color: #1B86F2;
}
.container--watch::-webkit-scrollbar-thumb {
  background: #1B86F2;
}
.container--visit {
  width: 10%;
}
.container--visit h1 {
  color: #10BB3B;
}
.container--visit::-webkit-scrollbar-thumb {
  background: #10BB3B;
}
.container--visit .visit {
  position: relative;
}
.container--visit .visit summary {
  background-color: #ffffff;
  padding: 1rem;
  border: solid 0.2rem #10BB3B;
  min-height: 10rem;
  color: #10BB3B;
  font-size: 3rem;
  word-break: break-all;
}
.container--visit .visit summary div {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}
.container--visit .visit summary div img {
  visibility: hidden;
  width: auto;
  min-width: 10rem;
}
.container--visit .visit summary:hover {
  color: #ffffff;
  background-color: #10BB3B;
}
.container--visit .visit summary:hover img {
  visibility: visible;
}
.container--visit .visit details {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 90%;
}

.book img {
  width: 100%;
}
.book--contents {
  padding-top: 1rem;
  color: #FF9000;
}
.book--contents__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.book--contents__info .book-info {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.book--contents__info .book-info li:last-child:before {
  content: "|";
  padding-right: 0.5rem;
}
.book--contents__study {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  line-height: 1.6;
  word-break: keep-all;
}
.book--contents__study .study-annotation {
  margin-top: 2rem;
}
.book--contents__study .study-annotation p {
  font-size: 70%;
  padding: 0.5rem 0;
}
.book--contents__study .study-annotation a {
  color: #FF9000;
}

.book {
  margin-bottom: 1rem;
}
.book[open] .book--spine {
  background-color: #FF9000;
}
.book[open] .book--spine * {
  color: #ffffff !important;
}
.book[open] .book--spine .line, .book[open] .book--spine .smallline {
  background-color: #ffffff;
}
.book[open] .book--spine .version span {
  border: solid 0.1rem #ffffff;
}
.book[open] .book--spine svg path {
  fill: #ffffff !important;
}
.book .book--spine {
  width: 85%;
  min-width: 800px;
  display: flex;
  flex-direction: row;
  color: #FF9000;
  background-color: #ffffff;
  border: solid 2px #FF9000;
  align-items: center;
}
.book .book--spine:hover {
  background-color: #FF9000;
}
.book .book--spine:hover * {
  color: #ffffff !important;
}
.book .book--spine:hover .line, .book .book--spine:hover .smallline {
  background-color: #ffffff;
}
.book .book--spine:hover .version span {
  border: solid 0.1rem #ffffff;
}
.book .book--spine:hover svg path {
  fill: #ffffff !important;
}
.book .book--spine h1, .book .book--spine p {
  padding: 0;
  white-space: nowrap;
}
.book .book9 {
  padding: 2.5rem 4rem;
  justify-content: space-between;
}
.book .book9 h1 {
  font-size: 2.5rem;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 600;
}
.book .book9 div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7vw;
}
.book .book9 div ol {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
}
.book .book9 div svg {
  width: 5rem;
}
.book .book9 div svg path {
  fill: #FF9000;
}
.book .book8 {
  padding: 2.5rem 0 2.5rem 3rem;
  gap: 10%;
  justify-content: space-between;
}
.book .book8 h1 {
  font-size: 2.5rem;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-weight: 600;
}
.book .book8 div {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-weight: 600;
}
.book .book8 div p:first-child::after {
  content: "|";
  padding-left: 0.5rem;
}
.book .book8 svg {
  height: 3rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.book .book8 svg path {
  fill: #FF9000;
}
.book .book7 {
  padding: 2.5rem 4rem;
  position: relative;
}
.book .book7 div {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.book .book7 div svg {
  height: 3rem;
  margin-right: 7rem;
}
.book .book7 div svg path {
  fill: #FF9000;
}
.book .book7 h1 {
  font-size: 1.8rem;
  font-family: "Nanum Myeongjo", serif;
  letter-spacing: 0.1rem;
}
.book .book7 h3, .book .book7 p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  padding-bottom: 1rem;
  letter-spacing: -0.1rem;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
}
.book .book7 h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.book .book7 p {
  font-size: 1.2rem;
  font-weight: 500;
}
.book .book6 {
  padding: 1.5rem 0rem;
  width: 100%;
  height: 3.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.book .book6 h1 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 2rem;
}
.book .book6 svg {
  height: 3.5rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.book .book6 svg path {
  fill: #FF9000;
}
.book .book5 {
  padding: 1rem 3rem;
  gap: 1rem;
  justify-content: space-between;
}
.book .book5 .line {
  width: 20%;
  height: 1px;
  background-color: #FF9000;
}
.book .book5 .row-box {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.book .book5 h1 {
  font-size: 2.3rem;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 500;
}
.book .book5 p {
  font-size: 0.9rem;
  line-height: 1.3;
}
.book .book5 p strong {
  font-weight: 500;
  padding-right: 0.1rem;
}
.book .book5 p span {
  font-size: 0.8rem;
}
.book .book5 svg {
  height: 3rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.book .book5 svg path {
  fill: #FF9000;
}
.book .book4321 {
  width: 100%;
  position: relative;
  gap: 10%;
}
.book .book4321 .volume {
  position: absolute;
  left: 2rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  font-size: 0.9rem;
  font-weight: 700;
}
.book .book4321 .magazine {
  padding-left: 6rem;
}
.book .book4321 .magazine span {
  font-size: 0.65rem;
  font-weight: 400;
}
.book .book4321 .magazine span strong {
  font-weight: 700;
}
.book .book4321 .episode {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.book .book4321 .episode svg {
  height: 3rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.book .book4321 .episode svg path {
  fill: #FF9000;
}
.book .book4321 .episode span {
  font-size: 0.8rem;
}
.book .book4321 .version {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 3rem;
}
.book .book4321 .version span {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 0.1rem #FF9000;
  border-radius: 50%;
  font-size: 0.6rem;
}
.book .book4321 .line {
  width: 2px;
  height: 3rem;
  background-color: #FF9000;
  margin: 0 1rem 0 0.8rem;
}
.book .book4321 .smallline {
  width: 0.1rem;
  height: 1rem;
  background-color: #FF9000;
  margin: 0 0.3rem;
}

@media (max-width: 1000px) {
  .container .activity--read .book--contents__info {
    flex-direction: column;
    gap: 0.5rem;
  }
  .container .activity--read .book--contents__study {
    grid-template-columns: repeat(2, 1fr);
  }
  .container .activity--watch {
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  }
}
/*# sourceMappingURL=style.css.map */
