@charset "utf-8";

/*----------------------------------

Setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  text-align: left;
  color: #976bcd;
  font-size: 100%;
  font-weight: 800;
  font-family: vdl-v7gothic,"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .14em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;  
  -webkit-animation: bodyFadeIn 4s ease 0s 1 normal;
  animation: bodyFadeIn 4s ease 0s 1 normal;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #a9599f;
}

::-moz-selection {
  background: #976bcd;
  color: #fff;
}

::selection {
  background: #976bcd;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}


.pc {
  display: block !important;
}

.sp {
  display: none !important;
}


@media screen and (max-width: 900px) {


.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

}


/*----------------------------------

Footer

----------------------------------*/
footer {
  padding: 110px 60px 60px;
  color: #fef8f2;
  background: #976bcd;
}

footer > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-between;
  justify-content: space-between;
}

footer > div .official {
  width: 200px;
}

footer ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

footer li {
  margin-left: 50px;
  width: 34px;
}

footer .copy {
  font-size: 1rem;
  text-align: right;
  margin-top: 60px;
}

footer .copy a {
  color: #fef8f2;
}

footer a:hover {
  animation: ani_btn .5s ease-in-out infinite alternate;
}


@media screen and (max-width: 900px) {
footer {
  padding: 50px 20px;
}

footer > div {
  display: block;
}

footer > div .official {
  width: 40%;
  margin: 0 auto;
}

footer li {
  margin: 30px 20px;
}

footer .copy {
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}


}


