@charset "utf-8";
/* CSS Document */

/*
index.html
#main_visual
#top
#news
#about
*/



/*================================================================================
	INDEX HOME
================================================================================*/

/* top
--------------------------------------------------------------------------------*/
#top p {}

/* news
--------------------------------------------------------------------------------*/
#news {}
#news .wrap {
	box-sizing:border-box;
	background-color:#fff;
}
#news #twitter_area {
	height:480px;
	overflow-Y:scroll;
}
#news .bnn img { width:100%; height:auto; }
#news h3 {
	padding-bottom:10px;
	font-weight:bold;
	border-bottom:1px solid #000;
}

/* about
--------------------------------------------------------------------------------*/
#about {}
#about h3 { border-bottom:1px solid #000; }
#about dd a { text-decoration:underline; }
#about dd a:hover { text-decoration:none; }
#about .caption { font-size:10px; line-height:140%; }




/*================================================================================
	Animation keyframes
================================================================================*/
@keyframes text_01 {
	0% { transform:rotate(15deg); top:-200px; opacity:0.4; }
	100% { transform:rotate(0); top:0; opacity:1.0; }
}
@-webkit-keyframes inout {
  0%   { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.2); }
}
@-moz-keyframes inout {
  0%   { -moz-transform: scale(1.0); }
  100% { -moz-transform: scale(1.2); }
}
@keyframes inout {
  0%   { transform: scale(1.0); }
  100%  { transform: scale(1.2); }
}
@-webkit-keyframes outin {
  0%   { -webkit-transform: scale(1.2); }
  100% { -webkit-transform: scale(1.0); }
}
@-moz-keyframes outin {
  0%   { -moz-transform: scale(1.2); }
  100% { -moz-transform: scale(1.0); }
}
@keyframes outin {
  0%   { transform: scale(1.2); }
  100%  { transform: scale(1.0); }
}
@keyframes moving {
  0%   { top: 0; }
  100%  { top: -1920px; }
}
@keyframes scalein {
  0%   { transform: scale(1.4); opacity:0; }
  100%  { transform: scale(1.0); opacity:1.0; }
}


/*================================================================================
	Media screen : PC 640px
================================================================================*/
@media screen and (min-width: 641px) {

.bnn { margin-bottom:50px; width:380px; }
.bnn a:hover img { opacity:0.8; }

/* main_visual
--------------------------------------------------------------------------------*/
#main_visual { margin:40px auto; }
#main_visual .wrap {
	width:1280px;
	height:540px;
	position:relative;
	/*background-color:#fff;*/
}
#main_visual img {
	position:absolute;
	top:0;
	left:0;
	-webkit-animation: inout 20s;
	-moz-animation: inout 20s;
	animation: inout 20s;
}
#main_visual img.anime_rev {
	position:absolute;
	top:0;
	left:0;
	-webkit-animation: outin 20s;
	-moz-animation: outin 20s;
	animation: outin 20s;
}
#main_visual img.anime_mov {
	position:absolute;
	left:0;
	-webkit-animation: moving 20s;
	-moz-animation: moving 20s;
	animation: moving 20s;
}

/* top
--------------------------------------------------------------------------------*/
#top { margin-bottom:40px; }
#top p {
	margin:0 auto 40px;
	width:100%;
	height:0;
	padding-top:38px;
	overflow:hidden;
	background:url(../img/index/title_top.png) no-repeat 50% 0;
	/*background-color:#fff;
	opacity:0;*/
	animation: scalein 5s ease-in forwards;
}
#top p.animation { animation: scalein 5s ease-in forwards; }

/* news
--------------------------------------------------------------------------------*/
#news .wrap { padding:40px; padding-right:10px; }
#news #twitter_area { width:400px; float:left; margin-bottom:40px; }
#news .bnn { width:380px; float:left; }
#news h3 {
	width:460px;
	margin-bottom:30px;
	font-size:30px;
	float:right;
}
#news ul {
	width:460px;
	float:right;
}
#news li {
	margin-bottom:20px;
	padding-left:75px;
	min-height:60px;
	font-weight:bold;
	line-height:140%;
}
#news li.cat_01 { background:url(../img/news/icon_news_01.png) no-repeat 0 0; }
#news li.cat_02 { background:url(../img/news/icon_news_02.png) no-repeat 0 0; }
#news li.cat_03 { background:url(../img/news/icon_news_03.png) no-repeat 0 0; }
#news li.cat_04 { background:url(../img/news/icon_news_04.png) no-repeat 0 0; }
#news li span {
	display:block;
	margin-bottom:5px;
	font-weight:normal;
}
#news li a:hover { color:#d30d41; }

#news li span.fixed {
	display: none;
}

/* about
--------------------------------------------------------------------------------*/
#about h3 {
	margin-bottom:30px;
	width:100%;
	height:0;
	padding-top:80px;
	overflow:hidden;
	background:url(../img/index/logo_title.png) no-repeat 50% 0;
}
#about dl {
	margin-bottom:30px;
	padding:0 10px;
	width:460px;/*480px*/
	font-size:12px;
	float:left;
}
#about dt { width:150px; float:left; clear:left; }
#about dd { width:310px; float:left; }
#about .clearfix a { float:left; margin-right:30px; }

}

/*================================================================================
	Media screen : 横幅100%時の背景色ヌケ防止
================================================================================*/
@media screen and (min-width: 641px) and (max-width: 939px) {
}

/*================================================================================
	Media screen : SP 640px
================================================================================*/
@media screen and (max-width: 640px) {

.bnn { margin-bottom:30px; padding:0 20px; }

/* main_visual
--------------------------------------------------------------------------------*/
#main_visual { margin:0 auto 20px; }
#main_visual .wrap { padding:0; }
#main_visual img {
	width:100%;
	height:auto;
}

/* top
--------------------------------------------------------------------------------*/
#top { margin-bottom:20px; }
#top p img {
	width:100%;
	height:auto;
}

/* news
--------------------------------------------------------------------------------*/
#news .wrap { padding:20px; }
#news #twitter_area {
	width:100%;
	margin-bottom:30px;
	padding:15px 20px;
	box-sizing:border-box;
}
#news .bnn { margin-bottom:30px; padding:0 20px; }
#news h3 {
	margin:0 20px 20px;
	font-size:24px;
	text-align:center;
}
#news ul { padding:0 20px; }
#news li {
	margin-bottom:20px;
	padding:5px 0 10px;
	line-height:140%;
	border-bottom:1px solid #dbdbdc;
}
#news li:last-child { border-bottom:none; }
#news li.cat_01 { background:url(../img/news/icon_news_01.png) no-repeat 0 0; background-size:30px 30px; }
#news li.cat_02 { background:url(../img/news/icon_news_02.png) no-repeat 0 0; background-size:30px 30px; }
#news li.cat_03 { background:url(../img/news/icon_news_03.png) no-repeat 0 0; background-size:30px 30px; }
#news li.cat_04 { background:url(../img/news/icon_news_04.png) no-repeat 0 0; background-size:30px 30px; }
#news li span,
#news li span.fixed {
	display:block;
	padding-left:40px;
	margin-bottom:10px;
}
#news li a:hover { color:#d30d41; }

/* about
--------------------------------------------------------------------------------*/
#about h3 { margin-bottom:20px; padding-bottom:10px; }
#about h3 img {
	width:100%;
	height:auto;
}
#about dl { font-size:14px; }
#about dt { margin-bottom:5px; font-weight:bold; border-bottom:1px solid #b3b3b3; }
#about dd { margin-bottom:15px; }
#about .clearfix { margin-bottom:20px; }
#about .clearfix a {
	display:block;
	width:50%;
	padding:0 10px;
	box-sizing:border-box;
}
#about .clearfix a:nth-child(1) { margin:0 auto 15px; }
#about .clearfix a:nth-child(2) { float:left; }
#about .clearfix a:nth-child(3) { float:left; }
#about .clearfix a img {
	width:100%;
	height:auto;
}

}


/*================================================================================
	clearfix
================================================================================*/
#news .wrap:after,
#about dl:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
/* clearfix for ie7 */
#news .wrap,
#about dl {
	display: inline-block;
}
#news .wrap,
#about dl {
	display: block;
}
