/*
Theme Name: lepres-lab
*/
.borderTopAnime:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  z-index: 999;
  border-bottom: solid 4px #00478B;
  transform: translateX(-50%);
  animation: border_anim 2s linear forwards;
}
@media (max-width:768px) {
  .borderTopAnime:before {
    content: none;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.borderBottomAnime:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  border-bottom: solid 4px #00478B;
  transform: translateX(-50%);
  animation: border_anim 2s linear forwards;
}
@media (max-width:768px) {
  .borderBottomAnime:after {
    content: none;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.borderLeftAnime:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  z-index: 0;
  border-left: solid 4px #00478B;
  animation: borderLeftAnim 2s linear forwards;
  z-index: -1;
}
@media (max-width:768px) {
  .borderLeftAnime:before {
    animation: none;
    content: none;
  }
}

@keyframes borderLeftAnim {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.header {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: calc(100vh - 150px);
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header {
    height: 100vh;
  }
}
@media (max-width:768px) {
  .header {
    height: calc(100vh - 60px);
  }
}
.header .headerLeft {
  align-items: center;
  position: relative;
}
@media (max-width:1024px) {
  .header .headerLeft {
    width: 100%;
    border-bottom: 5px solid #00478B;
    border-right: none;
    box-shadow: 0 5px 5px rgba(51, 51, 51, 0.6);
    display: flex;
    height: 100%;
    background-image: url("../images/graf-rabbit.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
  }
}
@media (max-width:768px) {
  .header .headerLeft {
    border-bottom: 5px solid #00478B;
    border-right: none;
    box-shadow: 0 5px 5px rgba(51, 51, 51, 0.6);
    display: flex;
    height: 100%;
    background-image: url("../images/graf-rabbit.png");
    background-size: cover;
    background-position: left;
  }
}
.header .headerLeft .title {
  width: 300%;
  height: auto;
  top: 0;
  left: 0;
  font-family: "cinema-script", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #00478B;
  transform: rotate(-15deg) translateX(-30%) translateY(10%);
  z-index: 0;
}
@media (max-width:1024px) {
  .header .headerLeft .title {
    height: auto;
    top: -50%;
    left: -50%;
    position: absolute;
    row-gap: 0;
    flex-direction: column;
    padding: 10px;
    transform: rotate(-15deg) translateX(-30%) translateY(10%);
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header .headerLeft .title {
    top: -40%;
    left: -40%;
    transform: rotate(-25deg) translateX(-30%) translateY(10%);
  }
}
@media (max-width:768px) {
  .header .headerLeft .title {
    width: 200%;
    height: auto;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5%;
    row-gap: 0;
    flex-direction: column;
    transform: rotate(-35deg) translateX(-30%) translateY(10%);
  }
}
.header .headerLeft .title h1 {
  text-align: center;
  width: 100%;
  font-size: 8em;
  color: #F6AB43;
  text-shadow: 3px 3px 2px rgba(51, 51, 51, 0.8);
}
@media screen and (max-width:1024px) {
  .header .headerLeft .title h1 {
    font-size: 5em;
    color: #F6AB43;
    text-align: center;
    background-color: #00478B;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header .headerLeft .title h1 {
    font-size: 2em;
    margin-bottom: 0;
  }
}
@media screen and (max-width:768px) {
  .header .headerLeft .title h1 {
    font-size: 5em;
    color: #F6AB43;
    text-align: center;
    background-color: #00478B;
  }
}
.header .headerLeft .title h4 {
  width: 100%;
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
  padding-left: 100px;
  color: #F6AB43;
}
@media (max-width:1024px) {
  .header .headerLeft .title h4 {
    font-size: 1.7em;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header .headerLeft .title h4 {
    font-size: 1em;
    margin-top: 5px;
  }
}
@media (max-width:768px) {
  .header .headerLeft .title h4 {
    font-size: 1.7em;
    color: #333;
    padding-left: 0;
    text-shadow: 1px 1px 1px rgba(250, 250, 250, 0.8);
  }
}
.header .headerRight {
  background-image: url("../images/graf-rabbit.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media (max-width:1024px) {
  .header .headerRight {
    border-bottom: 3px solid #00478B;
    display: none;
  }
}
@media (max-width:768px) {
  .header .headerRight {
    border-bottom: 3px solid #00478B;
    display: none;
  }
}

.menu {
  height: 150px;
  width: 100%;
}

main {
  width: 100%;
}
main .newContents {
  width: 100%;
}
main .newContents > h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
main .newContents_content {
  margin: 30px auto;
  width: 70%;
  background-color: #fafafa;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
  display: flex;
  justify-content: space-between;
  padding: 10px 3% 10px 3%;
  align-items: center;
  transform: translateY(50px);
  opacity: 0;
}
@media (max-width:768px) {
  main .newContents_content {
    width: 90%;
    display: block;
  }
}
main .newContents_content.contentsFadeIn {
  animation: contentsFade 1.5s forwards ease-out;
}
main .newContents_content .newThumbnail {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
}
@media (max-width:768px) {
  main .newContents_content .newThumbnail {
    width: 100%;
    height: auto;
    text-align: center;
  }
}
main .newContents_content .newThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.7) inset;
}
main .newContents_content .newContent {
  width: calc(100% - 240px);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width:768px) {
  main .newContents_content .newContent {
    width: 100%;
  }
}
main .newContents_content .newContent h2 a {
  color: #00478B;
  transition: 0.3s;
}
main .newContents_content .newContent h2 a:hover {
  color: #005CAF;
}
main .newContents_content .newContent p {
  color: #333;
  margin-bottom: 3px;
}
main .newContents_content .newContent .categoryLinks {
  display: flex;
  flex-wrap: wrap;
}
main .newContents_content .newContent .categoryLinks a {
  background-color: #005CAF;
  border-radius: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 2px 5px 2px 5px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 0.8em;
  transition: 0.3s;
}
main .newContents_content .newContent .categoryLinks a:hover {
  opacity: 0.6;
}
main .newContents_content .newContent .tagLinks {
  display: flex;
  flex-wrap: wrap;
}
main .newContents_content .newContent .tagLinks a {
  background-color: #FB966E;
  border-radius: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 2px 5px 2px 5px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 0.8em;
  transition: 0.3s;
}
main .newContents_content .newContent .tagLinks a:hover {
  opacity: 0.6;
}
main .newContents_content .newContent .excerpt {
  margin-top: 10px;
}
@keyframes contentsFade {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
main .pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
main .pagination a {
  background-color: #00478B;
  text-decoration: none;
  padding: 4px;
  border-radius: 10px;
  color: white;
  box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.4);
}
main .pagination span.current {
  background-color: #FB966E;
  text-decoration: none;
  padding: 4px;
  border-radius: 10px;
  color: white;
}/*# sourceMappingURL=home.css.map */