/****************************************
Resetting
*****************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, main,hgroup, menu, nav, section {
	display: block;
}
ol,ul,li{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="submit"],
input[type="button"],
input[type="reset"]{
	appearance: button;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
}
a{
	text-decoration: none;
}
/******************************************
normarise
******************************************/
*{
	box-sizing:border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
}
body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 16px;
	line-height: 1.6;
}
/**********************************************
layout
**********************************************/
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.flex--bet{
	justify-content: space-between
}
.flex--end{
	justify-content: flex-end
}
.flex--start{
	justify-content: flex-start;
}
/**********************************************
site-header
**********************************************/
.site-header{
	background: #fff;
	padding: 20px;
	position: fixed;
	width: 100%;
	z-index: 99;
}
.site-header__site-logo img{
	height: auto;
	width: 50%;
}
/*gnav
********************************************/
.gnav__menu__item{
	margin-left: 20px;
}
.gnav__menu__item a{
	color: #000;
	font-weight: bold;
}
/*sp-menu
********************************************/
.sp-menu{
	display: none;
}
/**********************************************
site-footer
**********************************************/
.site-footer{
	background: #333;
	color: #fff;
	padding: 80px 0;
	text-align: center;
}
.site-footer__copy{
	font-size: 12px;
}
/**********************************************

**********************************************/
.split{
	display: table;
	padding-top: 62px;
	width: 100%;
}
.split-item{
	display: table-cell;
	width: 50%;
}
/**********************************************
.split-left
**********************************************/
.split-left{
	background: #000;
	color: #fff;
	left: 0;
	overflow: hidden;
	position: relative;
}
.split-left__inner{
	height: 100%;
	overflow: hidden;
	position: fixed;
	width: 50%;
}
/*movie-wrap
********************************************/
.movie-center{
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	width: 100%;
}
.main-movie{
	height: 100vh;
	transform: translate(-50%,0);
	width: auto;
}
.main-img{
	visibility: hidden;
}

.movie-cover{
	background: rgba(0,0,0,0.5);
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
/*split-left__content-wrap
********************************************/
.split-left__content-wrap{
	color: #fff;
	left: 0;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
}
.split-left__content__inner{
	left: 50%;
	position: absolute;
	top: 50%;
}
.split-left__content__inner__center{
	transform: translate(-50%,-50%);
}
.split-left__content__center__logo{
	margin-bottom: 40px;
}
.split-left__content__center__title{
	font-size: 24px;
	font-weight: bold;
}
/**********************************************
.split-right
**********************************************/
.split-right{
}
.split-right__box{
	border-bottom: 1px solid #ccc;
	padding: 80px 80px 40px;
}
.split-right__box__title{
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 40px;
}
.article-list__item{
	margin-bottom: 60px;
}
.article-list__item__thum-wrap__img{
	height: auto;
	width: 100%;
}
.article-list__item__time{
	color: #999;
	font-size: 12px;
}
.article-list__item__title{
	font-size: 24px;
	font-weight: bold;
}
.article-list__item--col2{
	margin-right: 5%;
	width: 47.5%;
}
.article-list__item--col2:nth-child(2n){
	margin-right: 0;
}
.article-list__item--col3{
	margin-right: 5%;
	width: 30%;
}
.article-list__item--col3:nth-child(3n){
	margin-right: 0;
}
/**********************************************
max-width:1024px
**********************************************/
@media screen and (max-width:1024px) {
	/******************************************
	normarise
	******************************************/
	body{
		font-size: 14px;
		line-height: 1.2;
	}
	body.nav-open{
		height: 100vh;
		overflow: hidden;
	}
	/**********************************************
	layout
	**********************************************/
	.flex{
		display: block;
	}
	.flex--bet{
	}
	.flex--end{
	}
	.flex--start{
	}
	/**********************************************
	site-header
	**********************************************/
	.site-header{
		align-items: center;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		height: 100%;
		opacity: 0;
		padding: 0;
		position: absolute;
		visibility: hidden;
		width: 100%;
		z-index: 2;
		transition: .5s;
	}
	.site-header.open{
		opacity: 1;
		visibility: visible;
	}
	.site-header__inner{
		display: block;
		text-align: center;
		width: 100%;
	}
	.site-header__site-logo{
		margin-bottom: 40px;
	}
	.site-header__site-logo img{
		width: 200px;
	}
	/*gnav
	********************************************/
	.gnav__menu{
		display: block;
	}
	.gnav__menu__item{
		margin:0 0 20px 0;
	}
	.gnav__menu__item a{
	}
	/*sp-menu
	********************************************/
	.sp-menu{
		display: block;
		position:absolute;
		top: 12px;
		right: 20px;
		width: 30px;
		height: 25px;
		margin: 0 auto;
		cursor: pointer;
		transition: .5s;
		z-index: 9999;
	}
	.sp-menu .bar {
		display: inline-block;
		width: 30px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		left: 0;
		transition: .25s ease-in-out;
	}
	
	#bar01 {top: 0;}
	#bar02 {top: 10px;}
	#bar03 {top: 20px;}
	
	.active .bar{
		background: #000;
	}
	.active #bar01 {
		top: 10px;
		transform: rotate(45deg);
	}
	
	.active #bar02 {width: 0;}
	
	.active #bar03 {
		top: 10px;
		transform: rotate(135deg);
	}	
	/**********************************************
	site-footer
	**********************************************/
	.site-footer{
	}
	.site-footer__copy{
	}
	/**********************************************

	**********************************************/
	.split{
		display: block;
		padding: 0;
	}
	.split-item{
		display: block;
		width: auto;
	}
	/**********************************************
	.split-left
	**********************************************/
	.split-left{
	}
	.split-left__inner{
		position: inherit;
		width: 100%;
	}
	/*movie-wrap
	********************************************/
	.movie-center{
		position: inherit;
	}
	.main-movie{
		display: none;
	}
	.main-img{
		height: auto;
		visibility: visible;
		width: 100%;
		
	}
	.movie-cover{
	}
	/*split-left__content-wrap
	********************************************/
	.split-left__content-wrap{
	}
	.split-left__content__inner{
	}
	.split-left__content__inner__center{
	}
	.split-left__content__center__logo{
	}
	.split-left__content__center__title{
		font-size: 16px;
	}
	/**********************************************
	.split-right
	**********************************************/
	.split-right{
	}
	.split-right__box{
		padding: 40px 40px 20px;
	}
	.split-right__box__title{
		font-size: 36px;
		margin-bottom: 20px;
	}
	.article-list__item{
		width: 100%;
		margin-right: 0;		
	}
	.article-list__item__thum-wrap__img{
	}
	.article-list__item__time{
	}
	.article-list__item__title{
		font-size: 18px;
	}
	.article-list__item--col2{
	}
	.article-list__item--col2:nth-child(2n){
	}
	.article-list__item--col3{
	}
	.article-list__item--col3:nth-child(3n){
	}	
}