@charset "UTF-8";
/* =============================================
全体の指定
=============================================*/
html, body {
  width: 100vw;
  height: 100vh;
}

body {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1119px) {
  body {
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  body {
    overflow-y: auto;
  }
}

@media screen and (min-width: 1120px) {
  main,
  footer {
    width: 82.99vw;
  }
}

@media screen and (min-width: 1120px) {
  main, aside {
    height: 90vh;
  }
}

nav,
main,
aside,
footer {
  display: block;
}

a {
  text-decoration: none;
}

p {
  font-family: "sawarabi-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: justify;
}

img {
  vertical-align: text-bottom;
  vertical-align: middle;
}

#top {
  background-color: #78C0A8;
}

/* =============================================
左nav - menu
	- ボタンオンオフで表示切り替え
=============================================*/
.close-menu, .close-contact {
  position: absolute;
  top: 2%;
  right: 4%;
  font-size: 50px;
  cursor: pointer;
  padding: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
}
@media screen and (max-width: 1119px) {
  .close-menu, .close-contact {
    top: 0;
  }
}
.close-menu:active, .close-contact:active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotateZ(360deg);
          transform: rotateZ(360deg);
}
.close-contact {
  color: #e3dcd5;
  text-shadow: 1px 3px 0 #5B4128;
}

.g-nav {
  position: relative;
  z-index: -999;
  display: none;
}
.g-nav-wrapper {
  height: 73.22vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.on {
  position: relative;
  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;
  font-weight: bold;
  z-index: 990;
  height: 73.22vh;
  margin: -73.22vh 0 0;
  background: #2841A6;
  border: #5B4128 3px solid;
  border-radius: 50px;
  color: #fff;
}
.on p {
  text-align: center;
  padding-bottom: 40px;
  font-size: 20px;
  text-shadow: 1px 1px 3px #000;
  -moz-text-shadow: 1px 1px 3px #000;
  -webkit-text-shadow: 1px 1px 3px #000;
}
@media screen and (max-width: 480px) {
  .on p {
    font-size: 16px;
  }
}
.on ul {
  text-align: center;
}
.on li {
  margin-bottom: 30px;
}
.on li:last-child {
  margin-bottom: 0;
}
.on a {
  color: #fff;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  letter-spacing: 5px;
  font-size: 40px;
  text-shadow: 3px 3px 0 #000;
  -moz-text-shadow: 3px 3px 0 #000;
  -webkit-text-shadow: 3px 3px 0 #000;
  -webkit-text-stroke: 1px #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .on a {
    font-size: 25px;
  }
}
.on a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.on a:hover::after {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* =============================================
左nav - contact
	- ボタンオンオフで表示切り替え
=============================================*/
.contact-wrapper {
  position: relative;
  z-index: -999;
  display: none;
}
.contact-wrapper-on {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 991;
  height: 73.22vh;
  margin: -73.22vh 0 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  border: #5B4128 3px solid;
}
.contact-wrapper-link {
  width: 71.32vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1119px) {
  .contact-wrapper-link {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .contact-wrapper-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    height: 100%;
  }
}
.contact-wrapper-link p {
  color: #e3dcd5;
  text-align: center;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 5px;
  font-size: 30px;
  text-shadow: 2px 2px 0 #5B4128;
  -moz-text-shadow: 2px 2px 0 #5B4128;
  -webkit-text-shadow: 2px 2px 0 #5B4128;
  -webkit-text-stroke: 1px #5B4128;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-link p {
    font-size: 25px;
    text-shadow: 1px 1px 0 #5B4128;
  }
}
.contact-wrapper-coconala svg {
  height: 75px;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-coconala svg {
    height: 50px;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 157, 255);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 157, 255);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-1 {
  -webkit-animation: animate-svg-fill-1 0.7s ease-in 0s both;
  animation: animate-svg-fill-1 0.7s ease-in 0s both;
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 234, 0);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 234, 0);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-2 {
  -webkit-animation: animate-svg-fill-2 0.7s ease-in 0.4s both;
  animation: animate-svg-fill-2 0.7s ease-in 0.4s both;
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(238, 68, 153);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(238, 68, 153);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-3 {
  -webkit-animation: animate-svg-fill-3 0.7s ease-in 0.2s both;
  animation: animate-svg-fill-3 0.7s ease-in 0.2s both;
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 51, 221);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 51, 221);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-4 {
  -webkit-animation: animate-svg-fill-4 0.7s ease-in 0.8s both;
  animation: animate-svg-fill-4 0.7s ease-in 0.8s both;
}
@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(34, 204, 187);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(34, 204, 187);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-5 {
  -webkit-animation: animate-svg-fill-5 0.7s ease-in 0.6s both;
  animation: animate-svg-fill-5 0.7s ease-in 0.6s both;
}
@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 153, 0);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 153, 0);
  }
}
.contact-wrapper-coconala:hover .contact-wrapper-coconala-6 {
  -webkit-animation: animate-svg-fill-6 0.7s ease-in 1s both;
  animation: animate-svg-fill-6 0.7s ease-in 1s both;
}
.contact-wrapper-mail-envelope {
  position: relative;
  margin: 0 auto;
  width: 120px;
  height: 75px;
  background: #edbd4c;
  -webkit-box-shadow: 0 0 1px #edbd4c inset;
          box-shadow: 0 0 1px #edbd4c inset;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-mail-envelope {
    width: 80px;
    height: 50px;
  }
}
.contact-wrapper-mail-envelope:before, .contact-wrapper-mail-envelope:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-width: 37px 60px;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-mail-envelope:before, .contact-wrapper-mail-envelope:after {
    border-width: 25px 40px;
  }
}
.contact-wrapper-mail-envelope:before {
  border-bottom-color: #edbd4c;
  left: 0px;
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  z-index: 2;
  -webkit-transition: z-index 0.5s, border-bottom-color 0.8s, -webkit-transform 0.5s;
  transition: z-index 0.5s, border-bottom-color 0.8s, -webkit-transform 0.5s;
  transition: transform 0.5s, z-index 0.5s, border-bottom-color 0.8s;
  transition: transform 0.5s, z-index 0.5s, border-bottom-color 0.8s, -webkit-transform 0.5s;
  -webkit-transition: transform 0.5s, z-index 0.5s, border-bottom-color 0.8s;
  transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  top: -74px;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-mail-envelope:before {
    top: -50px;
  }
}
.contact-wrapper-mail-envelope:hover::before {
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  z-index: 0;
  -webkit-transition: z-index 1s, border-bottom-color 0.5s, -webkit-transform 0.5s;
  transition: z-index 1s, border-bottom-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, z-index 1s, border-bottom-color 0.5s;
  transition: transform 0.5s, z-index 1s, border-bottom-color 0.5s, -webkit-transform 0.5s;
  -webkit-transition: transform 0.5s, z-index 1s, border-bottom-color 0.5s;
  -ms-transition: transform 0.5s, z-index 1s, border-bottom-color 0.5s;
  border-bottom-color: #edbd4c;
}
.contact-wrapper-mail-envelope:after {
  border-right-color: #e8b94d;
  border-left-color: #e8b94d;
  border-bottom-color: #edbd4c;
  top: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.contact-wrapper-mail-envelope:hover > .contact-wrapper-mail-paper {
  top: -30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.contact-wrapper-mail-paper {
  position: absolute;
  width: 95px;
  height: 70px;
  margin: 0 auto;
  background: #fff;
  top: 0px;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  left: 13px;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-mail-paper {
    width: 64px;
    height: 50px;
    left: 8.7px;
  }
}
.contact-wrapper-mail-paper:before, .contact-wrapper-mail-paper:after {
  content: "";
  position: absolute;
  left: 12px;
  background: #e3f1fc;
  height: 4px;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-mail-paper:before, .contact-wrapper-mail-paper:after {
    left: 8px;
    height: 2px;
  }
}
.contact-wrapper-mail-paper:before {
  top: 14px;
  width: 31px;
}
.contact-wrapper-mail-paper:after {
  right: 12px;
  top: 28px;
  -webkit-box-shadow: 0 8px 0 #e3f1fc;
          box-shadow: 0 8px 0 #e3f1fc;
}
.contact-wrapper-twitter svg {
  height: 75px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact-wrapper-twitter svg {
    height: 50px;
  }
}
.contact-wrapper-twitter:hover #wing1 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: flap 0.4s ease-out infinite alternate;
          animation: flap 0.4s ease-out infinite alternate;
}
.contact-wrapper-twitter:hover #wing2 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: flap 0.4s ease-in infinite alternate;
          animation: flap 0.4s ease-in infinite alternate;
}
@-webkit-keyframes flap {
  50% {
    -webkit-transform: scaleX(-1) rotate(-45deg) translate(-40px, -40px);
            transform: scaleX(-1) rotate(-45deg) translate(-40px, -40px);
  }
}
@keyframes flap {
  50% {
    -webkit-transform: scaleX(-1) rotate(-45deg) translate(-40px, -40px);
            transform: scaleX(-1) rotate(-45deg) translate(-40px, -40px);
  }
}

/* =============================================
MV
	- 下層ページは内容を変更
=============================================*/
.flame {
  position: relative;
  margin: 4.22vh auto 0;
  padding: 2.43vh 2.71vw;
  width: 76.74vw;
  border: #5B4128 10px solid;
  border-radius: 50px;
  background: #FCEBB7;
  -ms-box-shadow: 0 0 36px #5B4128 inset;
  -webkit-box-shadow: 0 0 36px #5B4128 inset;
  -o-box-shadow: 0 0 36px #5B4128 inset;
  box-shadow: 0 0 36px #5B4128 inset;
}
@media screen and (max-width: 1119px) {
  .flame {
    width: 92vw;
    margin: 4% auto;
  }
}
@media screen and (max-width: 480px) {
  .flame {
    margin: 2% auto;
  }
}
.flame .kv {
  display: block;
  margin: 0 auto;
}
.flame .kv img {
  width: 71.32vw;
  height: 73.22vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 1%;
     object-position: 0 1%;
  border: #5B4128 3px solid;
  border-radius: 50px;
}
@media screen and (max-width: 1119px) {
  .flame .kv img {
    width: 87vw;
  }
}

.mv-tittle h1 {
  position: absolute;
  top: 61px;
  right: 64px;
  font-size: 120px;
  color: #78C0A8;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  line-height: 144px;
  letter-spacing: 10px;
}
@media screen and (max-width: 1119px) {
  .mv-tittle h1 {
    top: 6.78vh;
    right: 4.44vw;
    font-size: 10.53vw;
    line-height: 12vh;
  }
}
.mv-tittle-bottom {
  font-size: 120px;
  position: absolute;
  top: 56px;
  right: 69px;
  font-size: 120px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 3px #F0A830;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  line-height: 144px;
  letter-spacing: 10px;
}
@media screen and (max-width: 1119px) {
  .mv-tittle-bottom {
    top: 6.22vh;
    right: 4.79vw;
    font-size: 10.53vw;
    -webkit-text-stroke: 0.21vw #F0A830;
    line-height: 12vh;
  }
}
.mv-tittle-top {
  font-size: 120px;
  position: absolute;
  top: 66px;
  right: 58px;
  font-size: 120px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 3px #5B4128;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  line-height: 144px;
  letter-spacing: 10px;
}
@media screen and (max-width: 1119px) {
  .mv-tittle-top {
    top: 7.33vh;
    right: 4.03vw;
    font-size: 10.53vw;
    -webkit-text-stroke: 0.21vw #5B4128;
    line-height: 12vh;
  }
}

.object-fit-img {
  font-family: "object-fit: cover; object-position: 0 1%;";
}

/* =============================================
aside
- 右側ボタンとか
=============================================*/
aside {
  width: 17.01vw;
  border-left: #5B4128 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1119px) {
  aside {
    width: 95vw;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: none;
  }
}

.aside {
  position: relative;
  width: 185px;
  height: 185px;
  background-color: #5B4128;
  border-radius: 50%;
  border: #FCEBB7 1px solid;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 1119px) {
  .aside {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1120px) {
  .aside:hover, .aside:active {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
.aside:before {
  content: "";
  width: 157px;
  height: 157px;
  position: absolute;
  top: 14px;
  left: 14px;
  border: #FCEBB7 1px solid;
  background-color: #825A41;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1119px) {
  .aside:before {
    width: 90px;
    height: 90px;
    top: 4.5px;
    left: 4.5px;
  }
}
.aside-menu {
  width: 155px;
  height: 44px;
  position: absolute;
  top: 70.5px;
  left: 15px;
  background-color: #FCEBB7;
  border: #5B4128 3px solid;
  border-radius: 15px;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  font-size: 25px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #593D54;
  text-shadow: 2px 2px 0 #78C0A8;
  -moz-text-shadow: 2px 2px 0 #78C0A8;
  -webkit-text-shadow: 2px 2px 0 #78C0A8;
}
@media screen and (max-width: 1119px) {
  .aside-menu {
    width: 88px;
    height: 35px;
    font-size: 14px;
    top: 32px;
    left: 5px;
    text-shadow: 1px 1px 0 #78C0A8;
    -moz-text-shadow: 1px 1px 0 #78c0a8;
    -webkit-text-shadow: 1px 1px 0 #78C0A8;
  }
}
@media screen and (min-width: 1120px) {
  .aside-menu:hover {
    text-shadow: 0 0 0 #78C0A8;
  }
}
@media screen and (min-width: 1120px) {
  .aside-menu1 {
    margin-bottom: 30px;
  }
}
.aside-contact {
  width: 155px;
  height: 44px;
  position: absolute;
  top: 70.5px;
  left: 15px;
  background-color: #FCEBB7;
  border: #5B4128 3px solid;
  border-radius: 15px;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  font-size: 25px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #593D54;
  text-shadow: 2px 2px 0 #F07819;
  -moz-text-shadow: 2px 2px 0 #f07819;
  -webkit-text-shadow: 2px 2px 0 #f07819;
}
@media screen and (max-width: 1119px) {
  .aside-contact {
    width: 88px;
    height: 35px;
    font-size: 14px;
    top: 32px;
    left: 5px;
    text-shadow: 1px 1px 0 #F07819;
  }
}
@media screen and (min-width: 1120px) {
  .aside-contact:hover {
    text-shadow: 0 0 0 #F07819;
  }
}
.aside-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 185px;
  margin-top: 53px;
}
@media screen and (max-width: 1119px) {
  .aside-border {
    display: none;
  }
}
.aside-border span {
  height: 8px;
  background-color: #5B4128;
  border: #FCEBB7 1px solid;
  border-radius: 10px;
  margin-bottom: 4px;
}
.aside-border span:last-child {
  margin: 0;
}

/* =============================================
footer
	- メインコンテンツの下のボタン
=============================================*/
.footer {
  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;
  text-align: center;
  margin-bottom: 5vh;
  position: relative;
}
@media screen and (max-width: 1119px) {
  .footer {
    margin-top: -6.75vh;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    margin-top: -12vh;
    margin-bottom: 0;
  }
}
.footer-logo {
  margin: 0 50px;
  font-size: 30px;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #FCEBB7;
  -webkit-text-stroke: 1px #5B4128;
  text-shadow: 2px 2px 0 #5B4128;
  -moz-text-shadow: 2px 2px 0 #5B4128;
  -webkit-text-shadow: 2px 2px 0 #5B4128;
  letter-spacing: 3px;
}
@media screen and (max-width: 1119px) {
  .footer-logo {
    margin: 0;
    width: 40vw;
  }
}
@media screen and (max-width: 480px) {
  .footer-logo {
    margin-top: 0;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 1120px) {
  .footer-logo:hover {
    text-shadow: none;
  }
}
.footer-left {
  color: #FCEBB7;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  width: 40px;
  text-align: center;
  padding-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  background: #FCEBB7;
  -webkit-box-shadow: 0 2px 0 #916740;
          box-shadow: 0 2px 0 #916740;
  border: #5B4128 3px solid;
}
@media screen and (max-width: 480px) {
  .footer-left {
    position: absolute;
    top: -11vh;
    left: -29vw;
  }
}
.footer-left:before {
  content: "";
  position: absolute;
  top: 7px;
  right: 13px;
  width: 0;
  height: 0;
  border-right: 12px solid #5B4128;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.footer-left div {
  position: relative;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  -webkit-text-stroke: 1px #5B4128;
  text-shadow: 1px 1px 0 #5B4128;
  -moz-text-shadow: 1px 1px 0 #5B4128;
  -webkit-text-shadow: 1px 1px 0 #5B4128;
  letter-spacing: 1px;
  padding-top: 25px;
}
.footer-left div:hover {
  text-shadow: none;
}
.footer-left .nav-btn {
  font-size: 40px;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer-left:hover {
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 2px;
}
.footer-right {
  color: #FCEBB7;
  border-radius: 50%;
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  padding-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  background: #FCEBB7;
  -webkit-box-shadow: 0 2px 0 #916740;
          box-shadow: 0 2px 0 #916740;
  border: #5B4128 3px solid;
}
@media screen and (max-width: 480px) {
  .footer-right {
    position: absolute;
    top: -11vh;
    left: 58vw;
  }
}
.footer-right:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 13px;
  width: 0;
  height: 0;
  border-left: 12px solid #5B4128;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.footer-right div {
  position: relative;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  -webkit-text-stroke: 1px #5B4128;
  text-shadow: 1px 1px 0 #5B4128;
  letter-spacing: 1px;
  padding-top: 25px;
}
.footer-right div:hover {
  text-shadow: none;
}
.footer-right .nav-btn {
  font-size: 40px;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer-right:hover {
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 2px;
}

.btn-top,
.btn-about,
.btn-end {
  opacity: 0.7;
  pointer-events: none;
}

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loader p {
  margin-top: 10px;
  color: yellow;
  font-size: 40px;
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 10px;
  -webkit-text-stroke: 1px #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .loader p {
    font-size: 30px;
  }
}

.pacman {
  position: relative;
}
.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear;
}
.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear;
}
.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear;
}
.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}
.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid yellow;
  border-left: 25px solid yellow;
  border-bottom: 25px solid yellow;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid yellow;
  border-left: 25px solid yellow;
  border-bottom: 25px solid yellow;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(3), .pacman > div:nth-child(4), .pacman > div:nth-child(5), .pacman > div:nth-child(6) {
  background-color: yellow;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}/*# sourceMappingURL=style.css.map */