@charset "utf-8";

/*------------------------------*/
/* ヘッダー内タイトル */
.contents_main_header_title  {
	top:25%;
}
/* スマホ */
@media only screen and (max-width:599px) {
	.contents_main_header_title  {
		top:20%;
	}
}

/*------------------------------*/
/* グリッドアニメーション */
.pixel_art_frame {
	position: relative;
}
.pixel_overlay {
	position: absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display: grid;
	grid-template-columns: repeat(15, 1fr); /* 10列 */
	grid-template-rows: repeat(3, 1fr); /* 10行 */
}
.pixel_art_sel {
	overflow: hidden;
}
.pixel_art_sel_inner {
	background-color:rgba(255,255,255,1);
	width:100%;
	height:100%;
}

.pixel_art_animation_l {
	animation: animation_l 0.3s linear forwards; /* 時間指定 */
}
@keyframes animation_l {
	100% {
		transform: translateX(calc(-100% - 1px));
		-webkit-transform: translateX(calc(-100% - 1px));
	}
}

.pixel_art_animation_r {
	animation: animation_r 0.3s linear forwards; /* 時間指定 */
}
@keyframes animation_r {
	100% {
		transform: translateX(calc(100% + 1px));
		-webkit-transform: translateX(calc(100% + 1px));
	}
}

/*------------------------------*/
/* バナー内の文字列 */
.animation_title {
	position: absolute;
	bottom:5px;
	right: 5px;
	z-index: 1;
	color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
	font-size: 2.5vw;
	font-family: 'Anton', sans-serif;
	font-weight: bold;
}

/*------------------------------*/
/* 仕様検索 */
.gt_add {
  display: inline-block;
  position: relative;
}

.gt_add::after {
  content: '>';
  display: inline-block;
  animation: addArrow 1s infinite;
}

@keyframes addArrow {
  0% {
    content: '>';
  }
  25% {
    content: '>>';
  }
  50% {
    content: '>>>';
  }
  75% {
    content: '>>>>';
  }
  100% {
    content: '>>>>>';
  }
}

/*------------------------------*/
/* 線 */
hr {
	border:none;
	border-top:1px dotted #cccccc;
	margin-top:10px;
	margin-bottom:10px;
}