@import url('dev.css');

nav{
	position:fixed;
	background: #ffffff;
	height:70px;
	width:100%;
	z-index:1000;
	text-align: center;
}

nav ul{
	margin-top:25px;
}

nav li{
	display:inline-block;
	margin-left:34px;
}

nav li:first-child{
	margin-left:0px;
}

nav ul li a{
	display:block;
	position:relative;
}

nav ul li a::after {
	position: absolute;
	top: 90%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #403d3c;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	-moz-transition: opacity 0.2s, -moz-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	transform: translateY(5px);
}

nav ul li a:hover::after
/*,#header nav a:focus span::after */{
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}


h1{
	margin-top:117px; /* 47 + 70 */
	margin-bottom:0px;
	padding-bottom:50px;
	text-align: center;
	border-bottom:1px solid #ffffff;
}

#contentWrapper{
	border-bottom:1px solid #ffffff;
}

#bgVideoScreen{
	position:absolute;
	width:100%;
	height:3000px;
	top:0px;
	left:0px;
	z-index:3;
	background: #000000;
}

#gradientBg{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;

	background: rgb(255,88,83); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,98,68,1) 0%, rgba(255,119,114,1) 15%, rgba(252,149,143,1) 27%, rgba(255,210,193,1) 44%, rgba(255,100,86,1) 86%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,98,68,1)), color-stop(15%,rgba(255,119,114,1)), color-stop(27%,rgba(252,149,143,1)), color-stop(44%,rgba(255,210,193,1)), color-stop(86%,rgba(255,100,86,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,98,68,1) 0%,rgba(255,119,114,1) 15%,rgba(252,149,143,1) 27%,rgba(255,210,193,1) 44%,rgba(255,100,86,1) 86%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,98,68,1) 0%,rgba(255,119,114,1) 15%,rgba(252,149,143,1) 27%,rgba(255,210,193,1) 44%,rgba(255,100,86,1) 86%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255,98,68,1) 0%,rgba(255,119,114,1) 15%,rgba(252,149,143,1) 27%,rgba(255,210,193,1) 44%,rgba(255,100,86,1) 86%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(255,98,68,1) 0%,rgba(255,119,114,1) 15%,rgba(252,149,143,1) 27%,rgba(255,210,193,1) 44%,rgba(255,100,86,1) 86%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6f56', endColorstr='#ff6f56',GradientType=0 ); /* IE6-9 */

	opacity: 0.65;

	z-index:-1;
}


/**
 slideshow
**/

#imageSlideshow{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
}

#imageSlideshow img{
	position:absolute;
	height:100%;
}

/**
 pageContents
**/

#pageContents{
	width:729px;
	height:100%;
	border-right:1px solid #ffffff;
	float:left;
}

#menuContents{
	width:270px;
	padding-bottom:20px;
	float:left;
}

/**
 paging
**/

#paging{
	margin-top:50px;
	overflow: hidden;
	text-align: center;
}

#paging li{
	display:inline-block;
	margin-right:5px;
}

#paging li a{
	display:block;
	padding:12px 20px;
	/*border:1px solid #ffffff;*/

	letter-spacing: 1px;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0,0,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  /*overflow: hidden;*/
}

#paging li a:hover{
	color:#ffffff;
}

#paging li a.pagingArrow{
	padding: 12px 15px;
}

#paging li a:hover:after, #paging li.currentPage a:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 2px;
}

#paging li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #ffffff;
  border-style: solid;
  border-width: 0;



  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

  border-radius: 50%;        /* CSS3草案 */  
	-webkit-border-radius: 50%;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 50%;   /* Firefox用 */
}


/*#paging li a:hover{
	color:#be615f;
	background:#ffffff;
}*/

/**
 menu
**/

#menuContents{
	padding-top:35px;
}

#menuContents section{
	margin-left:30px;
}

#menuContents hr{
	background:#ffffff;
	height:2px;
	width:43px;
	text-align: left;
	margin-left:0px;
	border:none;
	opacity:0.5;
	margin-top:15px;
	margin-bottom:30px;
}

#current{

}

#current li{
	text-indent: 1em;
	line-height:1.3;
	background: url("/images/currentArrow.png") no-repeat left 8px;
	margin-top:5px;
}

#current li a{
	font-size:12px;
	display:block;
	text-decoration: underline;
}

#current li a:hover{
	text-decoration: none;
}


#current p a{
	text-decoration: underline;
	font-size:12px;
}

#current p a:hover{
	text-decoration: none;
}


#archive{

}

#archive li{
	margin-top:5px;
}

#archive li a{
	text-decoration: underline;
	font-size:12px;
	display:block;
}

#archive li a:hover{
	text-decoration: none;
}

#calendar td{
	text-align: center;
	padding:0px 6px;
	font-size:15px;
}

#calendar td a{
	text-decoration: underline;
	/*background: #ffffff;
	color:#ff4500;
	padding:2px 5px;*/
}

#calendar caption a{
	font-size:14px;
}

/**
 topics
**/

.topics article{
	padding-top:40px;
	overflow: hidden;
	border-bottom: 1px solid #ffffff;
	background: url("/images/pageContentSumi.png") no-repeat right top;
}

.topics article:last-child{
	border-bottom:0px;
}

.topics article img.circle{

}

.topicsImage{
	position:relative;
	width:80px;
	height:80px;
	border-radius: 40px; 
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;

    overflow: hidden;
    display:block;
}

.topics article > p{
	float:left;
	margin-left:30px;
}

.topics article div{
	float:left;
	margin-left:20px;
	width:567px;
}

.topics article div p:first-child{
	font-size:13px;
	margin-bottom:0px;
}

.topics article div h2{
	font-size:20px;
	letter-spacing: 2px;
	line-height:1.4;
	margin-top:5px;
}

.topics article div h2 a{
	font-size:20px;
}

.topics article div p:nth-of-type(2){
	font-size:13px;
	letter-spacing: 1px;
	line-height: 1.5;
}

.topics article div a{
	font-size:13px;
	display:inline-block;
	padding:1px 0px;
}

.topics article div h2 a:hover{
	color:#ffffff;
}

.topics article div p a{
	text-decoration: underline ;
}

.topics article div p a:hover{
	text-decoration: none;
}

.topics article div hr{
	background:#ffffff;
	height:2px;
	width:27px;
	text-align: left;
	margin-left:0px;
	border:none;
	opacity:0.5;
	margin-top:35px;
	margin-bottom:35px;
}

.topics article div ul{
	overflow: hidden;
}

.topics article div ul li{
	display:inline-block;
	margin-right:5px;
}

.topics article div ul li a{
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.topics article div ul li a:hover{
	opacity:0.6;
}

.topicsList section{

}

.topicsList article{
	padding:30px 0px;
	padding-bottom:26px;
	background:none;
	border-bottom:1px dotted #ffffff;
}

.topicsList article p{
	margin-top:0px;
	margin-bottom:0px;
}

.topicsImage{

}

.topicsImage img{

}

.topicsList article h2{
	margin-bottom:0px;
}

.topicsList article div{
	padding: 5px 0px;
}

.topicsList article div h2{
	margin-top:0px;
}

.topicsList article div h2 a{
	line-height:1.4;
}

.topicsList article div h2 a:hover{
	color:#ff5859;
}

.topicsList article:first-child{
	background: url("/images/pageContentSumi.png") no-repeat right top;
}

.topicsAnchar{
	display:none !important;
}

/**
 schedule
**/

#scheduleCategoryList li{
	margin-top:30px;
	padding:0px;
}

#scheduleCategoryList li:first-child{
	margin-top:0px;
}

#footer{
	margin-top:40px;
	top:30px;
}

/**
 mediaquery
**/

@media screen and (max-width: 1000px) {

	#contentWrapper{
		width:500px;
		/*padding:0px 10px;*/
		margin:auto;
	}

	#archive{
		/*margin-bottom:50px;*/
	}

	#pageContents{
		width:500px;
		float:none;
		border:none;
	}

	/*width:729px;*/

	/*.topics article div{
		width:367px;
	}*/

	.topics article{
		background: none;
	}

	.topics article .metaContents{
		overflow: hidden;
	}

	.topics article .metaContents p:first-child{
		float:left;
		display:block;
	}

	.topics article .metaContents div{
		float:left;
		width:400px;
		margin-left:20px;

	}

	.topics article .spTopic .topicContents{
		display:block;
		line-height:1.5;
	}

	.topicContents, .topicContents *{
		font-weight:normal;
	}

	.topics article h2 a{
		font-size:22px;
		line-height:1.5;
		letter-spacing: 2px;
	}

	.topics article div{
		margin-left:0px;
	}

	.topics article div .topicContents{
		font-size:18px;
	}

	.topics article div p:nth-of-type(2){
		font-size:18px;
		line-height:1.7;
		letter-spacing: 3px;
	}

	.topics article div a{
		font-size:18px;
		line-height:1.7;
	}

	.topics article div{
		width:500px;
	}

	#menuContents{
		width:500px;
		float:none;
	}

	#menuContents section{
		margin-left:0px;
	}

	.topics article div p:first-child{
		font-size:18px;
	}

	#archiveButton{
		margin-top:40px;
		margin-bottom:0px;
		line-height:1.0;
		padding-bottom:0px;
	}

	#archiveButton a{
		line-height:1.0;
	}

	#archive ul{
		display:none;
		overflow: hidden;
		margin-top:-2px;
	}

	#archive li{
		margin-top:0px;
		float:left;
		display:block;
	}

	#archive li a{
		width:248px;
		padding:15px 0px;
		text-decoration: underline;
		font-size:18px;
		display:block;
		border:1px solid #ec7469;
		text-align:center;
		color:#ec7469;
		background:#ffffff;
	}

	#archive li a:hover{
		text-decoration: none;
	}

	#current li:nth-child(n+5){
		display:none;
	}

	#paging{
		border-top:1px solid #ffffff;
		padding-top:20px;
	}

	#contentWrapper{
		border-bottom:none;
	}

	.moreImageList{
		margin-bottom:40px;
	}

	h1{
		margin-left:auto;
		margin-right:auto;
		width:500px;
	}

}