@import "reset.css";
.bigSection::-webkit-scrollbar {
  display: none;
}

@keyframes picRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
 }
  100% {
    transform: rotate(0deg);
 }
}

@keyframes picRotateTwo {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
 }
  100% {
    transform: rotate(0deg);
 }
}

html,body {
  overflow-x: hidden;
  width: 100vw;
}
.bigSection {
  width: 100%;
  height: 100vh;
}
/* .bigSection .blogCursor {
  position: fixed;
  width: 1%;
  height: 3%;
  z-index: 500;
  background: url(../img/icon/cursor.png) no-repeat;
  background-size: contain;
} */
.bigSection .blogSection {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  background-image: url(/img/paper_texture.png);
  background-size: contain;
  gap: calc(var(--base-padding)/2);
  padding: calc(var(--base-padding)/2) var(--base-padding) 20px;
}
.menuArticle {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  z-index: 300;
  cursor: pointer;
}
.menuArticle ul {
  display: none;
  height: 0px;
  flex-flow: column;
  justify-content: space-between;
  margin-right: 2%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(111, 111, 111, 0.5);
  position: absolute;
  right: 0;
  top: calc(var(--menu-height) + 10px);
  gap: 20px;
  transition: linear 0.3s all;
}
.menuArticle ul::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 25px;
  width: 0;
  height: 0;
  background-color: transparent;
  border-width: 20px; 
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
  transition: linear 0.3s all;
}
.menuArticle ul li {
  height: auto;
  line-height: 100%;
  color: var(--black-color);
  text-align: center;
  letter-spacing: -0.1rem;
  opacity: 0.7;
  font-size: 3rem;
  font-family: "Sriracha", cursive;
  font-weight: 100;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
}
.menuArticle ul li:first-child {
  margin-top: 0;
}
.menuArticle ul li:hover {
  text-shadow: 0 0 10px #95b3cf;
}
.menuArticle .menuIcon {
  background: url(../img/icon/bar.png) no-repeat;
  background-size: contain;
  width: var(--menu-width);
  height: var(--menu-height);
  transition: linear 0.3s all;
  opacity: 0.5;
}
.menuArticle .menuIcon.show {
  width: var(--menu-width-fold);
  height: var(--menu-height-fold);
  transform: rotate(-90deg);
}
.menuArticle :hover {
  opacity: 0.9;
}

.aboutSection {
  height: auto;
  width: 100%;
}
.portfolioSection {
  width: 100%;
  height: auto;
}
.contactSection {
  width: 100%;
}/*# sourceMappingURL=blogMain.css.map */


.subjectBox {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row;
  margin-bottom: 100px;
  width: 100%;
  max-height: 11.7rem;
  height: auto;
}
.subjectBox .subjectIcon {
  width: 50px;
  height: 115px;
  overflow: hidden;
  background: url(../img/icon/subjectIcon.png) no-repeat;
  background-size: contain;
}
.subjectBox header {
  font-family: "Sriracha", cursive;
  display: flex;
  flex-flow: column;
  font-size: 3rem;
  font-weight: 400;
  margin-left: 30px;
  color: var(--black-color);
}
.subjectBox header span {
  font-size: 5rem;
  font-weight: 700;
}
.portfolioSection .subjectBox {
  justify-content: flex-end;
}