@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Outfit:wght@300;400;700&display=swap");
body {
  font-family: "Outfit", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #2f80ed;
}

.loading {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 99999;
  overflow: hidden;
}

.loading-overlay {
  background: #fff;
  width: 100%;
  height: 100vh;
}

.loading-txt {
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: loading 1.5s ease-out forwards;
          animation: loading 1.5s ease-out forwards;
  letter-spacing: 10px;
}

@media (max-width: 540px) {
  .loading-txt {
    letter-spacing: 10px;
    top: 50%;
    -webkit-animation: loading 2s ease-out forwards;
            animation: loading 2s ease-out forwards;
    height: 100vh;
  }
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
    top: 60%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
    top: 60%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}

@media (max-width: 540px) {
  @-webkit-keyframes loading {
    0% {
      opacity: 0;
      top: 100%;
    }
    100% {
      opacity: 1;
      top: 70%;
    }
  }
  @keyframes loading {
    0% {
      opacity: 0;
      top: 100%;
    }
    100% {
      opacity: 1;
      top: 70%;
    }
  }
}

.nav {
  cursor: pointer;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.nav:before {
  content: "";
  display: block;
  background: #000;
  border-top: 4px solid #000;
  width: 40px;
}

.nav:after {
  content: "";
  display: block;
  background: #000;
  border-top: 2px solid #000;
  width: 40px;
  margin-top: 8px;
}

.nav:hover:before {
  margin-left: -10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.nav:hover:after {
  margin-left: 10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.main-cont {
  width: 100%;
  min-height: 100vh;
  border-bottom: 2px solid #000;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 820px) {
  .main-cont {
    position: relative !important;
    height: auto;
  }
  .main-cont:first-child {
    height: calc(100vh - 50px);
  }
}

@media (max-width: 540px) {
  .main-cont:first-child {
    height: calc(100vh);
  }
}

.main-inner {
  padding: 50px;
  min-height: calc(100vh - 100px);
}

@media (max-width: 540px) {
  .main-inner {
    padding: 10% 5%;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
}

.main-top-ttl {
  font-size: 162px;
  font-size: 10.125rem;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media (max-width: 540px) {
  .main-top-ttl {
    font-size: 72px;
    font-size: 4.5rem;
  }
}

.main-top-job {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 540px) {
  .main-top-job {
    margin-top: 25px;
  }
}

.main-top-copy {
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 540px) {
  .main-top-copy {
    font-size: 16px;
    font-size: 1rem;
    left: 90%;
  }
}

.main-top-img {
  cursor: pointer;
  width: 200px;
  height: 570px;
  left: calc(50% + 5px);
  background: url(../img/img-main01.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 1;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media (max-width: 540px) {
  .main-top-img {
    width: 170px;
    height: 490px;
    bottom: -30px;
    left: calc(50% + 8px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .main-top-img:hover {
    background: url(../img/img-main02.png) no-repeat;
    background-size: contain;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
}

.main-about-ttl {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

.main-about-lead {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
}

.main-about-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 820px) {
  .main-about-box {
    height: 100%;
  }
}

@media (max-width: 540px) {
  .main-about-box {
    position: static;
    top: inherit;
    left: inherit;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    height: auto;
    margin-top: 30px;
  }
}

.main-about-txt {
  font-size: 14px;
  font-size: 0.875rem;
  list-style: none;
  line-height: 160%;
}

@media (max-width: 540px) {
  .main-about-txt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.main-about-txt li {
  margin-top: 16px;
}

@media (max-width: 540px) {
  .main-about-txt li {
    margin-top: 10px;
  }
}

.main-about-txt li:first-child {
  margin-top: 0;
}

.main-about-skill {
  margin-top: 30px;
}

@media (max-width: 820px) {
  .main-about-skill {
    margin-top: 20px;
  }
}

@media (max-width: 540px) {
  .main-about-skill {
    margin-top: 16px;
  }
}

.main-about-list {
  font-size: 14px;
  font-size: 0.875rem;
  list-style: none;
  line-height: 160%;
  margin-top: 20px;
}

@media (max-width: 540px) {
  .main-about-list {
    font-size: 10px;
    font-size: 0.625rem;
    margin-top: 10px;
  }
}

.main-about-img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 30rem;
  min-height: 30rem;
  margin-right: 100px;
  background: url(../img/img-about01.png) no-repeat;
  background-size: contain;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media (max-width: 820px) {
  .main-about-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: url(../img/img-about03.png) no-repeat center -30%;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 540px) {
  .main-about-img {
    background: url(../img/img-about03.png) no-repeat center top;
    background-size: contain;
  }
}

@media (hover: hover) and (pointer: fine) {
  .main-about-img:hover {
    cursor: pointer;
    background: url(../img/img-about02.png) no-repeat;
    background-size: contain;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
}

.main-about-img img {
  width: 100%;
}

@media (max-width: 820px) {
  .main-about-inner {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (max-width: 540px) {
  .main-about-inner {
    position: static;
    left: 0;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    width: 100%;
    height: auto;
    padding: 5%;
  }
}

.main-works-ttl {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

.main-works-ttl a {
  color: #000;
}

.main-works-lead {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
}

.main-works-list {
  list-style: none;
  position: absolute;
  margin-top: 50px;
}

@media (max-width: 540px) {
  .main-works-list {
    position: static;
    margin-top: 30px;
  }
}

.main-works-list a {
  text-decoration: none;
}

.main-works-list a:focus {
  outline: none;
}

.main-works-list a:focus-visible {
  outline: none;
}

.main-works-thumbnail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #000;
  height: calc(100vh - 288px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 540px) {
  .main-works-thumbnail {
    height: calc(100vh - 188px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .main-works-thumbnail:hover {
    border: 2px solid #e17476;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .main-works-thumbnail:hover img {
    -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}

.main-works-thumbnail img {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.main-works-txt dt {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  margin-top: 16px;
  line-height: 140%;
}

@media (max-width: 540px) {
  .main-works-txt dt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.main-works-txt dd {
  font-size: 14px;
  font-size: 0.875rem;
  color: #c4c4c4;
  margin-top: 8px;
}

@media (max-width: 540px) {
  .main-works-txt dd {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.main-contact-ttl {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

.main-contact-lead {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 140%;
}

.main-contact-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 820px) {
  .main-contact-box {
    height: 100%;
  }
}

@media (max-width: 540px) {
  .main-contact-box {
    position: static;
    top: inherit;
    left: inherit;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    height: auto;
    margin-top: 30px;
  }
}

.main-contact-list {
  list-style: none;
  line-height: 200%;
}

@media (max-width: 540px) {
  .main-contact-list {
    line-height: 160%;
  }
}

.main-contact-txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  margin-top: 50px;
}

@media (max-width: 540px) {
  .main-contact-txt {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 30px;
  }
}

.main-contact-txt ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

@media (max-width: 540px) {
  .main-contact-txt ul {
    margin-top: 10px;
  }
}

.main-contact-img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 30rem;
  margin-left: 100px;
  height: fit-content;
  width: 30rem;
  min-height: 30rem;
  margin-right: 100px;
  background: url(../img/img-contact01.png) no-repeat;
  background-size: contain;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media (max-width: 820px) {
  .main-contact-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: url(../img/img-contact03.png) no-repeat center bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .main-contact-img:hover {
    cursor: pointer;
    background: url(../img/img-contact02.png) no-repeat;
    background-size: contain;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
}

.main-contact-img img {
  width: 100%;
}

@media (max-width: 820px) {
  .main-contact-inner {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (max-width: 540px) {
  .main-contact-inner {
    position: static;
    left: 0;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    width: 100%;
    height: auto;
    padding: 5%;
  }
}

footer {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 540px) {
  footer {
    font-size: 12px;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 100px;
    position: inherit;
  }
}

.pci {
  display: inline-block;
}

@media (max-width: 540px) {
  .pci {
    display: none;
  }
}

.spi {
  display: none;
}

@media (max-width: 540px) {
  .spi {
    display: inline-block;
  }
}

.main-top-ttl {
  position: absolute;
  left: 6%;
  bottom: 141px;
}

@media (max-width: 540px) {
  .main-top-ttl {
    bottom: 62px;
  }
}

.main-top-ttl span {
  position: absolute;
  text-align: center;
}

.main-top-ttl span:nth-child(1) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlB 1.8s ease-in-out forwards;
          animation: ttlB 1.8s ease-in-out forwards;
}

.main-top-ttl span:nth-child(2) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlA 1.5s ease-in-out forwards;
          animation: ttlA 1.5s ease-in-out forwards;
}

.main-top-ttl span:nth-child(3) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlS 1.4s ease-in-out forwards;
          animation: ttlS 1.4s ease-in-out forwards;
}

.main-top-ttl span:nth-child(4) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlE 1.3s ease-in-out forwards;
          animation: ttlE 1.3s ease-in-out forwards;
}

.main-top-ttl span:nth-child(5) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlL 1.3s ease-in-out forwards;
          animation: ttlL 1.3s ease-in-out forwards;
}

.main-top-ttl span:nth-child(6) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlI 1.4s ease-in-out forwards;
          animation: ttlI 1.4s ease-in-out forwards;
}

.main-top-ttl span:nth-child(7) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlN 1.5s ease-in-out forwards;
          animation: ttlN 1.5s ease-in-out forwards;
}

.main-top-ttl span:nth-child(8) {
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation: ttlEnd 1.8s ease-in-out forwards;
          animation: ttlEnd 1.8s ease-in-out forwards;
}

@-webkit-keyframes ttlB {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes ttlB {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes ttlA {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 12.5%;
    opacity: 1;
  }
}

@keyframes ttlA {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 12.5%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlS {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 25%;
    opacity: 1;
  }
}

@keyframes ttlS {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 25%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlE {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 37.5%;
    opacity: 1;
  }
}

@keyframes ttlE {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 37.5%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlL {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 50%;
    opacity: 1;
  }
}

@keyframes ttlL {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 50%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlI {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 62.5%;
    opacity: 1;
  }
}

@keyframes ttlI {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 62.5%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlN {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 75%;
    opacity: 1;
  }
}

@keyframes ttlN {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 75%;
    opacity: 1;
  }
}

@-webkit-keyframes ttlEnd {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 87.5%;
    opacity: 1;
  }
}

@keyframes ttlEnd {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 87.5%;
    opacity: 1;
  }
}

.main-top-job {
  line-height: 90%;
  opacity: 0;
  -webkit-animation: job 1s ease-in-out forwards;
          animation: job 1s ease-in-out forwards;
}

@-webkit-keyframes job {
  0% {
    line-height: 90%;
    opacity: 0;
  }
  100% {
    line-height: 130%;
    opacity: 1;
  }
}

@keyframes job {
  0% {
    line-height: 90%;
    opacity: 0;
  }
  100% {
    line-height: 130%;
    opacity: 1;
  }
}

@media (max-width: 540px) {
  @-webkit-keyframes job {
    0% {
      line-height: 90%;
      opacity: 0;
    }
    100% {
      line-height: 110%;
      opacity: 1;
    }
  }
  @keyframes job {
    0% {
      line-height: 90%;
      opacity: 0;
    }
    100% {
      line-height: 110%;
      opacity: 1;
    }
  }
}

.main-top-copy span:nth-child(1) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 0.6s ease-in-out forwards;
          animation: copy 0.6s ease-in-out forwards;
}

.main-top-copy span:nth-child(2) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 0.8s ease-in-out forwards;
          animation: copy 0.8s ease-in-out forwards;
}

.main-top-copy span:nth-child(3) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 1s ease-in-out forwards;
          animation: copy 1s ease-in-out forwards;
}

.main-top-copy span:nth-child(4) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 1.2s ease-in-out forwards;
          animation: copy 1.2s ease-in-out forwards;
}

.main-top-copy span:nth-child(5) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 1.4s ease-in-out forwards;
          animation: copy 1.4s ease-in-out forwards;
}

.main-top-copy span:nth-child(6) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 1.6s ease-in-out forwards;
          animation: copy 1.6s ease-in-out forwards;
}

.main-top-copy span:nth-child(7) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 1.8s ease-in-out forwards;
          animation: copy 1.8s ease-in-out forwards;
}

.main-top-copy span:nth-child(8) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 2s ease-in-out forwards;
          animation: copy 2s ease-in-out forwards;
}

.main-top-copy span:nth-child(9) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 2.2s ease-in-out forwards;
          animation: copy 2.2s ease-in-out forwards;
}

.main-top-copy span:nth-child(10) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 2.6s ease-in-out forwards;
          animation: copy 2.6s ease-in-out forwards;
}

.main-top-copy span:nth-child(11) {
  letter-spacing: 0;
  opacity: 0;
  -webkit-animation: copy 2.8s ease-in-out forwards;
          animation: copy 2.8s ease-in-out forwards;
}

@-webkit-keyframes copy {
  0% {
    letter-spacing: 0;
    opacity: 0;
  }
  100% {
    letter-spacing: 1rem;
    opacity: 1;
  }
}

@keyframes copy {
  0% {
    letter-spacing: 0;
    opacity: 0;
  }
  100% {
    letter-spacing: 1rem;
    opacity: 1;
  }
}

@media (max-width: 540px) {
  @-webkit-keyframes copy {
    0% {
      letter-spacing: 0;
      opacity: 0;
    }
    100% {
      letter-spacing: 0.7rem;
      opacity: 1;
    }
  }
  @keyframes copy {
    0% {
      letter-spacing: 0;
      opacity: 0;
    }
    100% {
      letter-spacing: 0.7rem;
      opacity: 1;
    }
  }
}

.main-top-img {
  -webkit-animation: imgFade 3s ease-in-out forwards;
          animation: imgFade 3s ease-in-out forwards;
}

@-webkit-keyframes imgFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imgFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.swiper-button-next:after {
  font-size: 28px;
  font-size: 1.75rem;
  color: #000;
}

.swiper-button-next:hover {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.swiper-button-next:hover:after {
  color: #e17476;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.swiper-button-prev:after {
  font-size: 28px;
  font-size: 1.75rem;
  color: #000;
}

.swiper-button-prev:hover {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.swiper-button-prev:hover:after {
  color: #e17476;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

div#pp-nav {
  display: none;
}

.modaal-container {
  height: calc(100vh - 20%);
}

@media (max-width: 390px) {
  .modaal-container {
    max-height: calc(100vh - 30vh);
    height: 60vh;
  }
}

@media (max-width: 390px) {
  .modaal-close {
    top: 10px;
    right: 10px;
  }
}

.onepage-pagination {
  right: 20px;
  top: 20px;
}
/*# sourceMappingURL=style.css.map */