@charset "utf-8";

/******************************************************************
ヘッダーのスペースを確保
*******************************************************************/
body {
	margin-top: 100px;
}
@media only screen and (max-width: 800px) {
body {
	margin-top: 50px;
}
}

/******************************************************************
オフセットアンカー
*******************************************************************/
a.anchor {
	position: absolute;
	top: -50px;
}





/****************************************************************************************
ヘッダー PC
*****************************************************************************************/
.header-1 {
	width: 100%;
	height: 100px;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	z-index: 99999;
}

/* ロゴ ***************************/
.header-1 .logo {
	width: 244px;
	height: 50px;
	position: absolute;
	top: 25px;
	left: 25px;
}

/* リスト 第一階層 ********************************/
.header-1 ul.nav {
	list-style: none;
	position: absolute;
	top: 25px;
	right: 10px;
}
.header-1 ul.nav > li {
	float: left;
	position: relative;
}

/* リスト 第二階層 *********************************/
.header-1 ul.nav > li > ul {
	list-style: none;
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	top: 50px;
	left: 0;
	display: none;
}
/* Talk のプルダウンの位置調整 ********/
.header-1 ul.nav > li.nav-talk > ul {
	left: -35px;
}

.header-1 ul.nav > li:hover > ul {
	display: block;
}

.header-1 ul.nav > li > ul > li {
	border-bottom: solid 1px rgba(255,255,255,0.25);
	margin: 0 15px;
}
.header-1 ul.nav > li > ul > li:last-child {
	border-bottom: none;
}

/* リンク 第一階層 ********************************/
.header-1 ul.nav > li > a {
	font-size: 14px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	
	display: block;
	height: 50px;
	line-height: 50px;
	
	padding: 0 15px;
}

.header-1 ul.nav > li > a > span.add-info {
	display: none;
}

/* リンク 第二階層 *********************************/
.header-1 ul.nav > li > ul > li > a {
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	
	display: block;
	white-space: nowrap;
	
	padding: 10px 0;
}
.header-1 ul.nav > li > ul > li:first-child > a { padding-top:    15px; }
.header-1 ul.nav > li > ul > li:last-child  > a { padding-bottom: 15px; }

/* ホバー ****************************************/
.header-1 ul.nav > li:hover > a,
.header-1 ul.nav > li > ul > li > a:hover {
	color: rgba(255,255,255,0.5);
}



/* スクロールした時 ************************************************************/
.header-1.scrolled {
	height: 50px;
	transition: height 0.5s;
}
.header-1.scrolled .logo {
	width: 146px;
	height: 30px;
	top: 10px;
	transition: width 0.5s, height 0.5s, top 0.5s;
}
.header-1.scrolled ul.nav {
	top: 0;
	transition: top 0.5s;
}
/* スクロールから戻った時 ***********************************/
.header-1 {
	transition: height 0.5s;
}
.header-1 .logo {
	transition: width 0.5s, height 0.5s, top 0.5s;
}
.header-1 ul.nav {
	transition: top 0.5s;
}








/*******************************************************************************
ヘッダー モバイル
*******************************************************************************/
.header-2 {
	display: none;
	
	width: 100%;
	height: 50px;
	background-color: rgba(0,0,0,0.8);
	
	box-sizing: border-box;
	padding-top: 50px;
	overflow: hidden;
	
	position: fixed;
	top: 0;
	z-index: 99999;
}
.header-2.opened {
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	transition: height 0.5s, background-color 0.5s;
}
.header-2 {
	transition: height 0.5s, background-color 0.5s;
}

/* ロゴ *************************/
.header-2 .logo {
	width: 146px;
	height: 30px;
	position: absolute;
	top: 10px;
	left: 15px;
}

/* メニューボタン **********************/
.header-2 .icon-bars {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 15px;
	right: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/common/header-icon-bars.png);
}
.header-2 .icon-bars.opened {
	background-image: url(../img/common/header-icon-x.png);
}

/* リスト *************************/
.header-2 ul.nav {
	list-style: none;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.header-2 ul.nav > li {
	border-bottom: solid 1px rgba(255,255,255,0.5);
	margin: 0 15px;
}

.header-2 ul.nav > li > ul {
	list-style: none;
	display: none;
}
.header-2 ul.nav > li > ul > li {
	border-top: solid 1px rgba(255,255,255,0.25);
	margin-left: 15px;
}

/* リンク ***************************/
.header-2 ul.nav > li > a {
	font-size: 14px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	
	display: block;
	padding: 15px 0;
}
.header-2 ul.nav > li > a > span.add-info {
	display: block;
	font-size: 10px;
	color: rgba(255,255,255,0.5);
	font-weight: normal;
}

.header-2 ul.nav > li > ul > li > a {
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	
	display: block;
	padding: 10px 0;
}
.header-2 ul.nav > li > ul > li:last-child > a {
	padding-bottom: 15px;
}


/* 開閉ボタン **************************************/
.header-2 ul.nav > li > a.plus {
	background-repeat: no-repeat;
	background-position: center right;
	background-image: url(../img/common/icon-white-plus.png);
}
.header-2 ul.nav > li > a.plus.opened {
	background-image: url(../img/common/icon-white-x.png);
}





/************************************************************************************************
ヘッダー PC モバイル 切り替え
************************************************************************************************/
@media only screen and (max-width: 800px) {
.header-1 {
	display: none;
}
.header-2 {
	display: block;
}
}



/******************************************************************
現在位置
*******************************************************************/
/* 第一階層 */
.page-index  .header .nav-index  > a,
.page-menu   .header .nav-menu   > a,
.page-access .header .nav-access > a,
.page-talk   .header .nav-talk   > a,
.page-links  .header .nav-links  > a {
	color: #C1272D !important;
}
/* 第二階層 */
.page-talk-20100308 .header .nav-talk-20100308 > a,
.page-talk-20080505 .header .nav-talk-20080505 > a,
.page-talk-20071002 .header .nav-talk-20071002 > a {
	color: #C1272D !important;
}



/******************************************************************
Contact ナビ 特別仕様
*******************************************************************/
.header-1 ul.nav > li > ul > li.nav-contact-1 > a:hover,
.header-1 ul.nav > li > ul > li.nav-contact-2 > a:hover {
	color: #FFF;
}
/*
.header-2 ul.nav > li > ul > li.nav-contact-1 {
	display: none;
}
*/












/******************************************************************************************
HERO
*******************************************************************************************/
.hero {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	display: table;
}
.hero .filter {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	display: table-cell;
	vertical-align: middle;
	position: relative;
}
.hero .text-area {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
}

.hero h1 {
	color: #FFF;
	margin: 0 25px;
}
.hero h1 span {
	display: block;
}

.hero h1 span.en {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 125%;
}
.hero h1 span.add-info {
	font-weight: normal;
	font-size: 50%;
}

.hero .slope {
	width: 100%;
	height: 75px;
	position: absolute;
	bottom: 0;
}



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

.hero {
	height: 225px;
}
.hero .slope {
	height: 50px;
}

}

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

.hero {
	height: 150px;
}
.hero h1 {
	margin: 0 15px;
}
.hero .slope {
	height: 25px;
}

}












/******************************************************************************************
ページトップへ戻る
*******************************************************************************************/
a#top {
	position: absolute;
	top: 0;
}

a.back-to-top {
	display: block;
	background-color: rgba(0,0,0,0.8);
	
	width: 35px;
	height: 35px;
	font-size: 35px;
	line-height: 35px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	
	position: fixed;
	right: 0;
	bottom: -35px;
	z-index: 99999;
}

/* スクロールした時 ***************************/
a.back-to-top.scrolled {
	bottom: 0;
	transition: bottom 0.5s;
}
/* スクロールから戻った時 ***************/
a.back-to-top {
	transition: bottom 0.5s;
}





/******************************************************************************************
フッター
*******************************************************************************************/
.footer ul.logo {
	font-size: 0;
	text-align: center;
}
.footer ul.logo li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 50px 50px 50px;
}

.footer ul.logo li.twitter-db img {
	width: 150px;
	height: 59px;
}
.footer ul.logo li.jazzyaren img {
	width: 125px;
	height: 132px;
}
.footer ul.logo li.jazzpro img {
	width: 175px;
}

.footer .line {
	background-color: rgba(255,255,255,0.25);
	height: 1px;
	margin-bottom: 50px;
}

.footer .copyright {
	color: rgba(255,255,255,0.5);
	text-align: center;
}

@media only screen and (max-width: 700px) {
.footer ul.logo li {
	display: block;
	padding: 0 0 50px 0;
}
}






