@charset "utf-8";

/*----------------------------------

Setup

----------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  text-align: left;
  color: #111;
  font-size: 100%;
  font-weight: 400;
  font-family: 'Roboto Mono',monospace,'Noto Sans JP',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: .16em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #a9599f;
}

a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #a9599f;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

a:hover::after {
  transform: scale(1, 1);
}

::-moz-selection {
  background: #a9599f;
  color: #fff;
}

::selection {
  background: #a9599f;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

main {
  background: url(../img/bg.jpg) repeat-y center top;
  background-size: cover;
  font-size: 1.4rem;
  overflow: hidden;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}


@media screen and (max-width: 768px) {

main {
  background: url(../img/bg_sp.jpg) repeat-y center top;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.inner {
  padding: 0 5vw;
}

}


/*----------------------------------

Footer

----------------------------------*/
footer {
  padding: 160px 0 80px;
  color: #111;
}

footer ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

footer li {
  margin-right: 40px;
}

footer li:nth-child(1) {
  width: 134px;
  margin-top: -6px;
}

footer li:nth-child(n+2) {
  width: 26px;
}

footer li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer li a:after {
  display: none;
}

footer li:nth-child(1) a:hover {
  -webkit-transform: scale(.95);
  transform: scale(.95);
}

footer li a:hover {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

footer p {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 70px;
  line-height: 2;
  letter-spacing: .1em;
}


@media screen and (max-width: 768px) {

footer {
  padding: 20vw 5vw 10vw; 
  flex-direction: column;
  position: static;
}

footer ul {
  -webkit-box-pack: space-between;
  justify-content: space-between;
  width: 100%;
}

footer li {
  margin-right: 0;
}

footer li:nth-child(1) {
  width: 28vw;
  margin-top: -1vw;
}

footer li:nth-child(n+2) {
  width: 6vw;
}

footer p {
  margin-top: 10vw;
  padding-top: 0;
  font-size: 2.667vw;
}

}


