@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------------------------
font
----------------------------------------------------------*/
@font-face {
	font-family: 'sansJP';
	src: url('../fonts/SourceHanSansJP-Regular.woff') format('woff'),
		url('../fonts/SourceHanSansJP-Regular.ttf') format('truetype');
	font-weight: normal;
}
@font-face {
	font-family: 'sansJP';
	src: url('../fonts/SourceHanSansJP-Medium.woff') format('woff'),
		url('../fonts/SourceHanSansJP-Medium.ttf') format('truetype');
	font-weight: 500;
}
@font-face {
	font-family: 'sansJP';
	src: url('../fonts/SourceHanSansJP-Bold.woff') format('woff'),
		url('../fonts/SourceHanSansJP-Bold.ttf') format('truetype');
	font-weight: bold;
}

/* ---------------------------------------------------------
body
----------------------------------------------------------*/
html {
  height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	min-width: 1170px;
	width: 100%;
	min-height: 100%;
	color: #222;
	font-family: 'sansJP',"ヒラギノ角ゴ Pro W3","メイリオ","游ゴシック体", "Yu Gothic Medium", YuGothic;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	line-height: 1;
	background-color: #fff;
}
article {
  flex: 1 0 auto;
}
img { vertical-align: top;}

a {	color: #222; text-decoration: none;}
a:hover { text-decoration: underline;}

.bg-anime a,
.bg-anime-white a {
	position: relative;
	z-index: 2;
}
.bg-anime a:after,
.bg-anime-white a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #e6132d;
	overflow: hidden;
	transition: all 300ms cubic-bezier(0.170, 0.935, 0.305, 1.000);
	z-index: -1;
}
.bg-anime-white a:after {
	background-color: #fff;
}
.bg-anime a:hover:after,
.bg-anime-white a:hover:after {
	width: 0%;
	left: 100%;
}
a .anime-txt {
	position: relative;
	z-index: 2;
}
.sp {
	display: none;
}
#link-box a {
  box-sizing: border-box;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
	position: relative;
	width: 100%;
	height: 70px;
	z-index: 10;
}
#logo {
	position: absolute;
	top: 10px;
	left: 31px;
}
#logo img {
	width: 110px;
	height: auto;
}
#logo a {
	transition: opacity 150ms ease-out;	
}
#logo a:hover {
	opacity: .7;
}
#logo .site-name {
	display: inline-block;
	font-size: 14px;
	padding: 21px 0 0 30px;
}
header nav ul {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: flex-end; /* Safari */
	justify-content: flex-end;
	font-size: 17px;
}
header nav > ul > li > a {
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
}
header nav a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	height: 70px;
	padding: 0 20px;
}
header nav a .line {
	margin-bottom: -7px;
}
header nav a .line:after {
	display: block;
	content: '';
	width: 100%;
	width: 0;
	height: 3px;
	background-color: #e6132d;
	margin-top: 4px;
	box-sizing: border-box;
	transition: width 300ms cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
header nav a:hover .line:after {
	width: 100%;
}
header nav a:hover {
	text-decoration: none;
}
header nav > ul > li:nth-child(4) a {
	padding-right: 40px;
}
header nav strong a {
	position: relative;
	width: 140px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	border: 1px solid #e6132d;
	box-sizing: border-box;
	z-index: 2;
}
header nav strong a:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #e6132d;
	overflow: hidden;
	transition: all 300ms cubic-bezier(0.170, 0.935, 0.305, 1.000);
	z-index: -1;
}
header nav strong a:hover {
	color: #e6132d;
	z-index: 2;
}
header nav strong a:hover:after {
	width: 0%;
	left: 100%;
}
header nav ul ul {
	position: absolute;
	top: 70px;
	left: 0;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	width: 100%;
	height: 78px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
	transition: all 400ms ease-out;
}
header nav ul li:hover ul {
	opacity: 1;
	visibility: visible;
}
header nav ul ul a {
	height: 78px;
}

/* ---------------------------------------------------------
#entry
----------------------------------------------------------*/
#entry {
	width: 100%;
	text-align: center;
	background-color: #e6132d;
	padding: 60px 0 80px;
}
#entry h2 {
	position: relative;
	display: inline-block;
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 1px;
	padding-bottom: 60px;
}
#entry h2:before,
#entry h2:after {
	content: '';
	display: block;
	position: absolute;
	top: -19px;
	left: -84px;
	width: 56px;
	height: 39px;
	background: url(../../img/entry_icon_left.png) no-repeat;
	background-size: 56px auto;
	opacity: .4;
}
#entry h2:after {
	top: 9px;
	left: auto;
	right: -65px;
	width: 55px;
	background: url(../../img/entry_icon_right.png) no-repeat;
	background-size: 55px auto;
}
#entry .btn-box {
  margin: 0 auto;
}
#entry .btn a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 320px;
	height: 72px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	background-color: #fff;
	border: 3px solid #222;
	border-radius: 5px;
	letter-spacing: 1px;
	box-sizing: border-box;
	margin: 0 auto;
	z-index: 2;
	overflow: hidden;
}
#entry .btn a::after {
	width: 110%;
}
#entry .btn a:hover {
	color: #222;
	text-decoration: none;
}
#entry .bg-anime a:after {
	background-color: #222;
}
#entry .bg-anime a:hover:after {
	left: 101%;
}

/* ---------------------------------------------------------
#recommend
----------------------------------------------------------*/
#recommend {
	width: 100%;
	background-color: #f5f5f5;
	padding-bottom: 80px;
}
#recommend h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #e6132d;
	text-align: center;
	padding: 75px 0 35px;
}
#recommend .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	width: 980px;
	margin: 0 auto;
}
#recommend .wrapper .block {
	width: 470px;
	background-color: #fff;
}
#recommend .wrapper .pic img {
	width: 470px;
	height: auto;
}
#recommend .wrapper a {
	color: #e6132d;	
}
#recommend .wrapper a p {
	font-size: 18px;
	font-weight: 500;
	color: #e6132d;
	background: url(../img/icon_arrow_red.png) no-repeat left center;
	background-size: 9px auto;
}
#recommend .wrapper .block p {
	padding: 30px 30px 30px 19px;
	margin-left: 30px;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
	width: 100%;
	background-color: #222;
}
footer .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 980px;
	height: 60px;
	margin: 0 auto;
}
footer ul {
	display: -webkit-flex; /* Safari */
	display: flex;
	list-style: none;
}
footer li:first-child {
	margin-right: 13px;
}
footer li:first-child:after {
	content: '|';
	font-size: 12px;
	color: #fff;
	padding-left: 15px;
}
footer li a {
	font-size: 12px;
	color: #fff;
}
footer .copy {
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #ccc;
}
