@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

* {
  margin: 0;
  padding: 0;
}
img {
  border: none;
  vertical-align: baseline;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: Verdana, Arial, "Meiryo", "メイリオ", sans-serif;
}
/*contents*/
#contents {
  position: relative;
  width: 100%;
  height: 100%;
}
/*logo*/
#contents .logo {
  position: relative;
  top: 20%;
}
#contents h1 {
  line-height: 0;
  margin: 0 5%;
  padding: 25px 3%;
  background: hsla(0,0%,0%,0.5);
  border-top: 1px hsla(0,100%,100%,0.5) solid;
  border-bottom: 1px hsla(0,100%,100%,0.5) solid;
}
#contents h1 img {
  width: 100%;
}
@media (min-width: 685px) {
  #contents .logo {
    top: 25%;
  }
  #contents h1 {
    padding: 40px 3%;
    max-width: 640px;
    margin: 0 auto;
  }
}
/*list*/
#contents .list {
  position: relative;
  top: 25%;
}
#contents ul {
  list-style: none;
  width: 50%;
  margin: 0 auto;
}
#contents ul li {
  margin: 15px 0;
  /*border-left: 1px hsla(0,100%,100%,0.2) dotted;*/
  /*border-right: 1px hsla(0,100%,100%,0.2) dotted;*/
}
#contents ul li a {
  display: block;
  padding: 1.5em 0 1.5em 32%;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 1px 2px hsla(0,0%,0%,0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  background: hsla(0,0%,0%,0.5);
}
#contents ul li a:before {
  content: '»';
  margin-right: 5px;
}
@media (min-width: 685px) {
  #contents .list {
    top: 33%;
  }
  #contents ul {
    max-width: 500px;
    margin: 0 auto;
  }
  #contents ul li a {
    padding-left: 39%;
    font-size: 13px;
    transition: all 0.3s;
    background: hsla(0,0%,0%,0.5);
  }
  #contents ul li a:hover {
    background: hsla(0,0%,0%,0.7);
  }
}
/*footer*/
#contents footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#contents footer .copyright {
  padding: 1em -0px;
  text-align: center;
  font-size: 10px;
  font-family: Montserrat, serif;
  color: hsla(0,100%,100%,0.5);
  text-align: center;
}
#contents footer .copyright small {
  font-size: 10px;
}
@media (min-width: 685px) {
  #contents footer .copyright small {
    font-size: 13px;
  }
}