@charset "UTF-8";
html {
-webkit-text-size-adjust: 100%;
}
body {
  background-color: #184d2f;
  color: #cccccc;
  margin:0px;
  font-family: 'Meiryo UI','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-size: 16px;
}
h1 {
  font-size: 1.125em;
}
a:link, a:visited, a:hover, a:active {
  color: #cccccc;
  text-decoration: none;
}
.abs-header{
  position: relative;
  padding:0px;
  height: 100px;
}
.abs-logo{
  position: absolute;
  height: 100px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.abs-menu{
  position: absolute;
  display: flex;
  top: 0px;
  right: 0px;
}
.icon-archive{
  margin: 0px 0px 0px 5px;
}
.abs-title {
  margin: 0px;
  font-size: 2rem;
  color: #ffb000;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}
.title-text {
  margin-right: auto;
}
.icon-facebook{
  margin: 20px 8px;
}
.icon-twitter{
  margin: 20px 8px;
}
.abs-ranking {
  margin: 15px 0px 5px 0px;
  font-size: 3rem;
  color: #cccccc;
}
.horizontal-list {
  display: flex;
  overflow-x:scroll;
  overflow-y:hidden;
  scroll-snap-type: x;
  -webkit-overflow-scrolling: touch;
}
.item-box {/*親div*/
  margin: 0px 1px 0px 1px;
  position: relative;/*相対配置*/
  width: 300px;
  height: 300px;
}
.item-box p {
  display: block;  
  margin-block-start: 0px;
  margin-block-end: 0px;
  position: absolute;/*絶対配置*/
  color: #37b36d;
  font-size: 1.2rem;
  top: 0;
  left: 0;
}
.boxart-image {
  width: 300px;
  height: 300px;
  margin: 0px;
  background: rgba(0,0,0,0);
}
@media screen and (min-width: 1200px) {
	/* 1200px以上に適用されるCSS（PC用） */
.horizontal-list {
  flex-wrap: wrap;
  overflow-x:hidden;
}
.item-box {
  margin: 0px 1px 10px 1px;
}
}