@charset "UTF-8";
/* CSS Document */
html, body {
  overflow-x: hidden;
  background-color: #1D3A62;
}
.bg__dark-blue {
  background-color: #1D3A62;
  padding: 0 40px 16px;
}
.credit__wrapper {
  background-color: #f2e1c5;
  padding: 0 3vw 60px;
}
.credit__lead h1 {
  font-size: 2.4rem;
  padding: 100px 0 16px;
}
.credit__lead h2 {
  font-size: 1.4rem;
  padding-bottom: 40px;
}
.credit__lead img {
  height: 100%;
  width: 120px;
}
.credit__lead h3 {
  font-size: 1.6rem;
  padding: 60px 0;
  font-weight: 400;
}
.credit__content {
  background-image: url("../images/credit/credit_bg.jpg");
  background-repeat: repeat;
  background-size: 7%;
  margin: 0 auto;
  max-width: 700px;
  padding: 80px 5vw 50px;
}
.credit__creater-icon {
  height: auto;
  width: 140px;
  margin: auto;
}
.credit__text h4 {
  font-size: 1.4rem;
  padding: 20px 0 30px;
  line-height: 2.8rem;
}
.credit__text h4 span {
  font-size: 1.6rem;
}
.credit__text01 {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  line-height: 2.8rem;
  margin-bottom: 24px;
  font-family: 'M PLUS 1p', sans-serif;
}
.credit__text02 {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  line-height: 2.8rem;
  margin-bottom: 50px;
  font-family: 'M PLUS 1p', sans-serif;
}
.credit__x-icon {
  height: 40px;
  width: auto;
}
.credit__instagram-icon {
  height: 37px;
  width: auto;
  padding-top: 30px;
}
.credit__x-id {
  font-size: 1.2rem;
  color: #745624;
}
.credit__instagram-id {
  font-size: 1.2rem;
  color: #745624;
  margin-top: 3px;
}
.credit__x-icon:hover, .credit__instagram-icon:hover {
  opacity: 0.7;
}
.pagination {
  font-size: 1.2rem;
  padding-top: 50px;
}
@media (min-width:960px) {
  .bg__dark-blue {
    min-height: 100vh;
  }
  .credit__wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
    padding: 100px 60px;
    max-width: 2000px;
    margin: auto;
  }
  .credit__lead {
    width: 50%;
  }
  .credit__lead h1 {
    font-size: 2.6rem;
    padding: 100px 0 24px;
  }
  .credit__lead h2 {
    font-size: 1.4rem;
    padding-bottom: 60px;
  }
  .credit__lead img {
    height: auto;
    width: 10vw;
    min-width: 100px;
    max-width: 140px;
  }
  .credit__lead h3 {
    font-size: 1.6rem;
    width: 240px;
    margin: 0 auto;
  }
  .credit__content {
    width: 50%;
    max-width: 600px;
    margin: auto;
    padding: 100px 60px 60px;
  }
  .credit__text h4 {
  font-size: 1.6rem;
  padding: 24px 0 36px;
  line-height: 2.8rem;
  }
  .credit__text h4 span {
    font-size: 2.0rem;
  }
  .credit__text01 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    margin-bottom: 32px;
  }
  .credit__text02 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    margin-bottom: 54px;
  }
  .credit__sns {
    display: flex;
    justify-content: center;
  }
  .credit__x {
    margin-right: 20px;
    color: #5b4528;
  }
  .credit__instagram {
    margin-left: 20px;
    color: #5b4528;
  }
  .credit__instagram-id {
  margin-top: 2.6px;
  }
  .credit__x-icon {
    height: 50px;
    width: auto;
  }
  .credit__instagram-icon {
    height: 44px;
    width: auto;
    padding-top: 3.5px;
  }
  .pagination {
    font-size: 1.2rem;
    padding: 80px 0 0 0;
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}