@charset "UTF-8";
html {
  font-size: 10px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  width: 100vw;
  background-color: white;
  position: relative;
}

#opening {
  position: fixed;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: white;
}
#opening img {
  width: 30rem;
}
#opening .opening-circle {
  width: 45rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  animation-name: openingRotation;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  display: none;
}
@media screen and (max-width: 450px) {
  #opening .opening-circle {
    width: 95vw;
  }
}
#opening .opening-circle span {
  display: block;
  position: absolute;
  font-size: 3rem;
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 100%;
  transform-origin: center;
}
#opening .opening-circle span:nth-of-type(2) {
  transform: rotate(15deg);
}
#opening .opening-circle span:nth-of-type(3) {
  transform: rotate(30deg);
}
#opening .opening-circle span:nth-of-type(4) {
  transform: rotate(45deg);
}
#opening .opening-circle span:nth-of-type(5) {
  transform: rotate(60deg);
}
#opening .opening-circle span:nth-of-type(6) {
  transform: rotate(75deg);
}
#opening .opening-circle span:nth-of-type(7) {
  transform: rotate(90deg);
}
#opening .opening-circle span:nth-of-type(8) {
  transform: rotate(105deg);
}
#opening .opening-circle span:nth-of-type(9) {
  transform: rotate(120deg);
}
#opening .opening-circle span:nth-of-type(10) {
  transform: rotate(135deg);
}
#opening .opening-circle span:nth-of-type(11) {
  transform: rotate(150deg);
}
#opening .opening-circle span:nth-of-type(12) {
  transform: rotate(180deg);
}
#opening .opening-circle span:nth-of-type(13) {
  transform: rotate(195deg);
}
#opening .opening-circle span:nth-of-type(14) {
  transform: rotate(210deg);
}
#opening .opening-circle span:nth-of-type(15) {
  transform: rotate(225deg);
}
#opening .opening-circle span:nth-of-type(16) {
  transform: rotate(240deg);
}
#opening .opening-circle span:nth-of-type(17) {
  transform: rotate(255deg);
}
#opening .opening-circle span:nth-of-type(18) {
  transform: rotate(270deg);
}
#opening .opening-circle span:nth-of-type(19) {
  transform: rotate(285deg);
}
#opening .opening-circle span:nth-of-type(20) {
  transform: rotate(300deg);
}
#opening .opening-circle span:nth-of-type(21) {
  transform: rotate(315deg);
}
#opening .opening-circle span:nth-of-type(22) {
  transform: rotate(330deg);
}
#opening img {
  position: absolute;
  width: 30rem;
}
@media screen and (max-width: 450px) {
  #opening img {
    width: 20rem;
  }
}

@keyframes openingRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#mobile-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10;
  top: -100vh;
  transition: 0.5s;
  display: grid;
  place-items: center;
}
#mobile-menu #close {
  position: absolute;
  top: 3rem;
  right: 5%;
  font-size: 2rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#mobile-menu #close.active {
  opacity: 1;
}
#mobile-menu .mobile-menu-wrapper {
  width: 90%;
}
#mobile-menu .mobile-menu-wrapper a {
  display: block;
  text-decoration: none;
  color: inherit;
  margin: auto;
  text-align: center;
  font-size: 4rem;
  border-bottom: 1px solid black;
}
#mobile-menu .mobile-menu-wrapper a.to-sns {
  display: inline;
  border: none;
  font-size: 3rem;
}
#mobile-menu .mobile-menu-wrapper a.to-sns:nth-of-type(1) {
  padding-right: 2rem;
}
#mobile-menu .mobile-menu-wrapper .sns-container {
  margin-top: 5rem;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
}
#mobile-menu.displayed {
  top: 0;
}

.container {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.wrapper {
  width: 90%;
  height: 100%;
  margin: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  z-index: 100;
}
header img {
  width: 20rem;
}
@media screen and (max-width: 450px) {
  header img {
    width: 13rem;
  }
}
header .nav {
  display: flex;
  align-items: center;
}
header .nav .nav-content {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 2rem;
  font-weight: 300;
  padding: 0 2rem;
  position: relative;
}
header .nav .nav-content:not(.sns)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: black;
  left: 0;
  bottom: 0;
  transition: transform 0.2s;
  transform: scaleX(0);
  transform-origin: right top;
}
@media (hover: hover) {
  header .nav .nav-content:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
}
header .nav .nav-content.sns .to-sns {
  color: inherit;
  text-decoration: none;
  font-size: 2.5rem;
}
header .nav .nav-content.sns .to-sns:nth-of-type(1) {
  padding-right: 1rem;
}
@media screen and (max-width: 850px) {
  header .nav {
    display: none;
  }
}
header #hmb {
  width: 6rem;
  height: 6rem;
  position: relative;
  position: fixed;
  right: 5vw;
  border-radius: 50%;
  transition: 0.5s;
  z-index: 9;
}
header #hmb span {
  display: block;
  height: 2px;
  background-color: black;
  position: absolute;
  transition: 0.5s;
}
header #hmb span:first-of-type {
  width: 60%;
  top: calc(40% - 1px);
  left: 20%;
}
header #hmb span:nth-of-type(2) {
  width: 30%;
  top: calc(60% + 1px);
  left: 50%;
}
header #hmb.black {
  background-color: black;
}
header #hmb.black span {
  background-color: white;
  color: white;
}
@media screen and (min-width: 851px) {
  header #hmb {
    display: none;
  }
}

.top {
  height: 90vh;
  margin-top: 1rem;
  position: relative;
}
.top .top-image-container {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top .top-image-container .top-image {
  margin: auto;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.top .top-image-container .top-image.fadeIn {
  animation: topImageAnimation 15s ease-in-out;
}
.top .top-logo-container {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.top .top-logo-container .top-logo-wrapper {
  margin: auto;
  position: relative;
  overflow: hidden;
}
.top .top-logo-container .top-logo-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  pointer-events: none;
  transform: scaleX(1);
}
.top .top-logo-container .top-logo-wrapper.fadeIn::before {
  animation: topLogoAnimation 15s;
}
.top .top-logo-container .top-logo-wrapper .top-logo {
  width: 35rem;
  margin: auto;
  opacity: 1;
  z-index: -3;
}
@media screen and (max-width: 450px) {
  .top .top-logo-container .top-logo-wrapper .top-logo {
    width: 25rem;
  }
}
@media screen and (max-width: 800px) {
  .top .top-image-container .top-image {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .top {
    height: 65vh;
  }
}

@keyframes topImageAnimation {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  20% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes topLogoAnimation {
  0% {
    transform: scaleX(1);
    transform-origin: top right;
  }
  5% {
    transform: scaleX(0);
  }
  95% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
.image-arr-container {
  display: flex;
  z-index: 10;
  margin: 5rem auto 0 -10%;
}
@media screen and (max-width: 800px) and (min-width: 650px) {
  .image-arr-container {
    margin-top: 20vw;
  }
}
@media screen and (max-width: 450px) {
  .image-arr-container {
    margin-top: 0;
  }
}
.image-arr-container .image-arr-1 {
  display: flex;
  animation-name: slide1;
  animation-duration: 25s;
  animation-delay: -12.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.image-arr-container .image-arr-2 {
  display: flex;
  animation-name: slide2;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

div.image-container {
  width: 40rem;
  box-shadow: 3px 3px 15px -5px #949494;
  border-radius: 2rem;
  margin: 0 1rem;
  overflow: hidden;
  background-color: white;
}
div.image-container img {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 450px) {
  div.image-container {
    width: 25rem;
    height: 30rem;
  }
  div.image-container img {
    width: 100%;
    margin-top: -3rem;
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.site-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.site-content .title {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2rem;
}
.site-content .title span {
  font-size: 7rem;
}
@media screen and (max-width: 450px) {
  .site-content .title {
    font-size: 2.5rem;
  }
  .site-content .title span {
    font-size: 4.5rem;
  }
}
.site-content .content {
  font-size: 1.4rem;
}
.site-content .desc {
  text-align: center;
}
.site-content.about .content {
  display: flex;
}
.site-content.about .content .desc {
  text-align: left;
  flex: 1;
  line-height: 200%;
}
.site-content.about .content .desc img {
  display: block;
  width: 20rem;
}
@media screen and (max-width: 450px) {
  .site-content.about .content .desc img {
    width: 13rem;
  }
}
.site-content.about .content .desc p {
  margin-top: 4rem;
}
@media screen and (max-width: 450px) {
  .site-content.about .content .desc p {
    margin-top: 2rem;
  }
}
.site-content.about .content .desc .look-art {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 8rem;
}
.site-content.about .content .desc .look-art span {
  display: block;
  width: 30%;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 800px) {
  .site-content.about .content .desc .look-art {
    margin-top: 5rem;
  }
  .site-content.about .content .desc .look-art span {
    width: 50%;
  }
}
.site-content.about .content .about-image-container {
  flex: 1;
}
.site-content.about .content .about-image-container img {
  height: 100%;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .site-content.about .content {
    display: block;
  }
}
.site-content.artist {
  position: relative;
}
.site-content.artist::before {
  content: "";
  display: block;
  width: 0vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5vw;
  background-color: black;
  z-index: -1;
  transition: 0.2s 0.6s;
}
.site-content.artist.active::before {
  width: 100vw;
}
.site-content.artist .title {
  transition: 0.2s 0.6s;
}
.site-content.artist .content {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
}
.site-content.artist .content .icon-container {
  flex: 1;
}
.site-content.artist .content .icon-container .icon-frame-1 {
  width: 40rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: relative;
  opacity: 1 !important;
  overflow: hidden;
  transition: 0.2s;
  margin: auto;
}
.site-content.artist .content .icon-container .icon-frame-1::before, .site-content.artist .content .icon-container .icon-frame-1::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: black;
  pointer-events: none;
}
.site-content.artist .content .icon-container .icon-frame-1::before {
  top: 0;
  left: 0;
}
.site-content.artist .content .icon-container .icon-frame-1::after {
  right: 0;
  bottom: 0;
}
.site-content.artist .content .icon-container .icon-frame-1.active::before, .site-content.artist .content .icon-container .icon-frame-1.active::after {
  height: 100%;
}
.site-content.artist .content .icon-container .icon-frame-1.active::before {
  transition: height 0.2s;
}
.site-content.artist .content .icon-container .icon-frame-1.active::after {
  transition: height 0.2s 0.2s;
}
.site-content.artist .content .icon-container .icon-frame-1 .icon-frame-2 {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border-radius: 100%;
  overflow: hidden;
  background-color: white;
  z-index: 1;
  display: grid;
  place-items: center;
}
.site-content.artist .content .icon-container .icon-frame-1 .icon-frame-2 img {
  width: 75%;
}
.site-content.artist .content .intro {
  flex: 1;
  height: 100%;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  transition: 0.2s 0.6s;
}
.site-content.artist .content .intro .artist-name {
  font-size: 6rem;
  border-bottom: 1px solid black;
  text-align: left;
  transition: border-bottom 0.2s 0.6s;
}
.site-content.artist .content .intro .intro-title {
  font-size: 4rem;
  margin-top: 0.5rem;
  white-space: nowrap;
}
.site-content.artist .content .intro .intro-txt {
  width: 90%;
  margin: auto;
  margin-top: 4rem;
  line-height: 200%;
  font-family: "Times New Roman", Times, serif;
}
@media screen and (max-width: 900px) {
  .site-content.artist .content {
    display: block;
    width: 100%;
  }
  .site-content.artist .content .icon-container .icon-frame-1 {
    width: 60%;
  }
  .site-content.artist .content .intro .artist-name {
    text-align: center;
  }
  .site-content.artist .content .intro .intro-title {
    font-size: 3rem;
    text-align: center;
  }
  .site-content.artist .content .intro .intro-txt {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 450px) {
  .site-content.artist .content .intro .artist-name {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 600;
  }
  .site-content.artist .content .intro .intro-title {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .site-content.artist .content .intro .intro-txt {
    margin-top: 2rem;
  }
}
.site-content.artist.active {
  color: white;
}
.site-content.artist.active .intro .artist-name {
  border-bottom: 1px solid white;
}
.site-content.art .content #tab-control {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
}
.site-content.art .content #tab-control .tab {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  font-size: 2rem;
  border: 1px solid black;
  transition: 0.5s;
}
.site-content.art .content #tab-control .tab:not(:first-of-type) {
  margin-left: -1px;
}
.site-content.art .content #tab-control .tab.active {
  background-color: black;
  color: white;
}
@media screen and (max-width: 800px) {
  .site-content.art .content #tab-control {
    display: block;
  }
  .site-content.art .content #tab-control .tab:not(:first-of-type) {
    margin-top: -1px;
    margin-left: 0;
  }
}
.site-content.art .content #tab-body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.site-content.art .content #tab-body::-webkit-scrollbar {
  display: none;
}
.site-content.art .content #tab-body .tab-content {
  display: none;
}
.site-content.art .content #tab-body .tab-content.active {
  display: block;
}
.site-content.art .content #tab-body .tab-content .tab-title {
  font-size: 4rem;
  text-align: center;
  margin-top: 2rem;
}
.site-content.art .content #tab-body .tab-content .change-display {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid black;
  margin: 2rem auto;
  cursor: pointer;
}
.site-content.art .content #tab-body .tab-content .change-display.changed {
  display: none;
}
.site-content.art .content #tab-body .tab-content .change-slide {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid black;
  margin: 2rem auto;
  cursor: pointer;
  display: none;
}
.site-content.art .content #tab-body .tab-content .change-slide.changed {
  display: block;
}
.site-content.art .content #tab-body .tab-content .slider {
  width: 80%;
  margin: auto;
  margin-top: 2rem;
  padding-left: 0;
}
.site-content.art .content #tab-body .tab-content .slider#logo-slider .slick-center {
  transform: scale(1);
}
.site-content.art .content #tab-body .tab-content .slider li img {
  margin: 1rem auto;
  transform: scale(0.4);
  opacity: 0.5;
  transition: 0.3s;
}
.site-content.art .content #tab-body .tab-content .slider li.slick-center img {
  transform: scale(1.4);
  opacity: 1;
}
.site-content.art .content #tab-body .tab-content .slider .slick-arrow::before {
  display: block;
  font-size: 4rem;
  color: black;
  font-family: "Times New Roman", Times, serif;
}
.site-content.art .content #tab-body .tab-content .slider .slick-prev,
.site-content.art .content #tab-body .tab-content .slider .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .site-content.art .content #tab-body .tab-content .slider .slick-prev,
  .site-content.art .content #tab-body .tab-content .slider .slick-next {
    top: -1rem;
  }
}
@media screen and (max-width: 800px) {
  .site-content.art .content #tab-body .tab-content .slider .slick-prev {
    left: calc(50% - 16rem);
  }
}
.site-content.art .content #tab-body .tab-content .slider .slick-prev::before {
  content: "←";
}
@media screen and (max-width: 800px) {
  .site-content.art .content #tab-body .tab-content .slider .slick-next {
    right: calc(50% - 14rem);
  }
}
.site-content.art .content #tab-body .tab-content .slider .slick-next::before {
  content: "→";
}
.site-content.art .content #tab-body .tab-content .slider.changed {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .site-content.art .content #tab-body .tab-content .slider {
    width: 100%;
  }
}
.site-content.art .content #tab-body .tab-content .display {
  width: 100%;
  max-width: 100%;
  display: none;
  list-style: none;
  padding-left: 0;
  margin: auto;
}
.site-content.art .content #tab-body .tab-content .display.changed {
  display: grid;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  justify-self: center;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}
.site-content.art .content #tab-body .tab-content .display.changed li {
  aspect-ratio: 5/7;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid black;
  transition: 0.5s;
}
.site-content.art .content #tab-body .tab-content .display.changed li img {
  width: 100%;
  margin: auto;
  transition: 0.5s;
}
@media (hover: hover) {
  .site-content.art .content #tab-body .tab-content .display.changed li:hover img {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 450px) {
  .site-content.art .content #tab-body .tab-content .display.changed {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
}
.site-content.contact .content br.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .site-content.contact .content br.sp {
    display: inherit;
  }
}
.site-content.contact .content #contact-btn {
  position: relative;
  width: 30rem;
  height: 7rem;
  margin: auto;
  margin-top: 2rem;
  font-size: 3rem;
  text-align: center;
  line-height: 7rem;
  color: black;
  border: 1px solid black;
  transition: 0.3s;
}
@media screen and (max-width: 450px) {
  .site-content.contact .content #contact-btn {
    width: 25rem;
  }
}
.site-content.contact .content #contact-btn i {
  width: 5rem;
}
.site-content.contact .content #contact-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.site-content.contact .content #contact-btn.active {
  color: white;
}
.site-content.contact .content #contact-btn.active::before {
  transform-origin: left top;
  transform: scaleX(1);
}
@media (hover: hover) {
  .site-content.contact .content #contact-btn:hover {
    color: white;
  }
  .site-content.contact .content #contact-btn:hover::before {
    transform-origin: left top;
    transform: scaleX(1);
  }
}
.site-content.contact .content #contact-form {
  width: 70rem;
  margin: auto;
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid black;
  border-radius: 1rem;
  display: none;
}
.site-content.contact .content #contact-form label {
  padding-left: 10%;
}
.site-content.contact .content #contact-form label span {
  color: red;
}
.site-content.contact .content #contact-form input,
.site-content.contact .content #contact-form textarea {
  display: block;
  width: 80%;
  margin: auto;
  border: 1px solid black;
  border-radius: 0;
}
.site-content.contact .content #contact-form input[type=submit] {
  border-radius: 0;
  border: none;
  background-color: black;
  color: white;
  width: 10rem;
  padding: 1rem;
}
@media screen and (max-width: 450px) {
  .site-content.contact .content #contact-form {
    width: 100%;
  }
  .site-content.contact .content #contact-form label {
    padding-left: 5%;
  }
  .site-content.contact .content #contact-form input,
  .site-content.contact .content #contact-form textarea {
    width: 90%;
  }
}
.site-content.contact .content #contact-form.active {
  display: block;
}

footer {
  background-color: #aaa;
  width: 100vw;
  margin-left: -5vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  place-items: center;
}
footer .foot-wrapper {
  width: 90%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 450px) {
  footer .foot-wrapper {
    width: 80%;
  }
}
footer .foot-wrapper .footer-image-container {
  position: absolute;
}
footer .foot-wrapper .footer-image-container .footer-logo {
  width: 20rem;
}
@media screen and (max-width: 450px) {
  footer .foot-wrapper .footer-image-container .footer-logo {
    width: 13rem;
  }
}
footer .foot-wrapper .footer-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
footer .foot-wrapper .footer-nav a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 2.5rem;
  padding-right: 3rem;
}
footer .foot-wrapper .footer-sns-container {
  text-align: center;
  margin-top: 5rem;
}
footer .foot-wrapper .footer-sns-container .to-sns {
  color: inherit;
  text-decoration: none;
  font-size: 2.5rem;
}
footer .foot-wrapper .footer-sns-container .to-sns:nth-of-type(1) {
  padding-right: 1rem;
}
footer .foot-wrapper .mail {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
  color: inherit;
}
@media screen and (max-width: 900px) {
  footer .foot-wrapper .footer-nav {
    display: block;
    margin-top: 10vh;
  }
  footer .foot-wrapper .footer-nav a {
    font-size: 2rem;
    padding-top: 1rem;
    padding-left: 2rem;
    border-bottom: 1px solid #888;
  }
}/*# sourceMappingURL=styles.css.map */