@charset "utf-8";

/*=====================================

	layout - レイアウト定義

=====================================*/

/*#####################################
	element
#####################################*/

html {
	overflow-y: scroll;
}

body {
	color: #fff;
	background-color: #212121;
	font-family: "Roboto", "Helvetica Neue", "Calibri", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	text-align: center;
	-webkit-tap-highlight-color: rgba(0,0,0,.3);
}

h1,h2,h3,h4,h5,h6,p,blockquote,ol,ul,dl,dd,pre,table,fieldset,address,details,figure {
	margin-top: 0;
	margin-bottom: 24px;
	text-align: left;
}

ul ul {
	margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6 {
	line-height: 1.25;
}

p,blockquote,ol,ul,dl,pre,th,td {
	line-height: 1.75;
}

th,td {
	font-weight: normal;
	vertical-align: top;
}

a {
	color: #a31e5b;
	text-decoration: underline;
	transition: all linear .2s;
	-webkit-transition: all linear .2s;
}

a:visited {
	color: #a31e5b;
}

a:hover {
	text-decoration: none;
}

img {
	vertical-align: bottom;
}

ul, ul ul {
	list-style-type: square;
}

/*#####################################
	global-class
#####################################*/

/*-------------------------------------
	inner
-------------------------------------*/

.inner {
	position: relative;
	width: 1008px;
	margin: 0 auto;
}

/*-------------------------------------
	box
-------------------------------------*/

.box {
	margin-bottom: 16px;
	background-color: #fff;
	border-bottom: #bb0055 2px solid;
	box-shadow: rgba(0,0,0,.3) 1px 1px 1px;
	overflow: hidden;
}

.box.slidebox {
	/* gradation */
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #d4d4d4 50%, #ffffff 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#d4d4d4), color-stop(99%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#d4d4d4 50%,#ffffff 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#d4d4d4 50%,#ffffff 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#d4d4d4 50%,#ffffff 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#d4d4d4 50%,#ffffff 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

/*-------------------------------------
	others
-------------------------------------*/

.text-right {
	text-align: right;
}

/*#####################################
	container
#####################################*/

.container {
	min-width: 1008px;
}

/*#####################################
	header
#####################################*/

.header {
	color: #000;
	height: 96px;
	background-image: url(images/header.png);
	background-position: left top;
	background-repeat: repeat-x;
	background-color: #fff;
	overflow: hidden;
}

/*-------------------------------------
	h1
-------------------------------------*/

.header h1 {
	margin: 0;
	padding: 4px 8px;
	position: absolute;
	left: 0;
	top: 0;
}

.header h1 img {
	width: auto;
	height: 88px;
}

/*-------------------------------------
	menu
-------------------------------------*/

.menu {
	position: absolute;
	left: 192px;
	top: 36px;
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 0;
}

.menu li {
	font-size: 14px;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	/font-size: 0;
	margin: 0 8px 0 0;
	background-color: #fff;
	box-shadow: rgba(0,0,0,.3) 1px 1px 1px;
}

.menu img {
	width: auto;
	height: 48px;
}

.menu a:hover {
	opacity: .4;
}

/*-------------------------------------
	submenu
-------------------------------------*/

.submenu {
	position: absolute;
	right: 8px;
	top: 8px;
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 0;
	text-align: right;
}

.submenu li {
	font-size: 13px;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	margin: 0 16px 0 0;
}

.submenu li a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	padding: 4px 4px 4px 16px;
	background-image: url(images/arrow_s.png);
	background-position: 2px 6px;
	background-repeat: no-repeat;
}

.submenu li a:hover {
	color: #666;
}

/*#####################################
	catch
#####################################*/

.catch {
	color: #fff;
	overflow: hidden;
	
	/* gradation */
	background: #1e1e1e; /* Old browsers */
	background: -moz-linear-gradient(top,  #606060 0%, #1e1e1e 50%, #606060 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#606060), color-stop(50%,#1e1e1e), color-stop(100%,#606060)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #606060 0%,#1e1e1e 50%,#606060 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #606060 0%,#1e1e1e 50%,#606060 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #606060 0%,#1e1e1e 50%,#606060 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #606060 0%,#1e1e1e 50%,#606060 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e1e', endColorstr='#606060',GradientType=0 ); /* IE6-9 */
}

body.top .catch {
	height: 296px;
}

.catch .category {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
	line-height: 1;
	padding: 16px;
}

.catch .category a {
	color: #fff;
	text-decoration: none;
}

.catch .category a:hover {
	text-decoration: underline;
}

/*#####################################
	main
#####################################*/

.main {
	color: #000;
	padding: 16px 0 32px;
	background-image: url(images/main.jpg);
	background-position: center top;
	background-repeat: repeat;
	/zoom: 1;
	background-color: #ccc;
}

.main:after {
	content: ""; 
	display: block; 
	clear: both;
}

.main .inner {
	width: 992px;
}

/*#####################################
	contents
#####################################*/

.contents {
	width: 736px;
	float: right;
}

body.top .contents {
	float: left;
}

.contents .box {
	padding: 24px;
}

.contents h1,
.contents h2,
.contents h3,
.contents h4,
.contents h5,
.contents h6 {
	clear: both;
}

.contents h2 {
	font-size: 16px;
	margin: 24px -24px; 
	padding: 7px 7px 7px 20px;
	line-height: 1.25;
	vertical-align: middle;
	background-image: url(images/h2_m.png);
	background-position: left center;
	background-repeat: no-repeat;
	border-top: #d4d4d4 3px solid;
	border-bottom: #696969 3px solid;
}

.contents h2:first-child {
	margin-top: -24px; 
}

.contents h2.small {
	font-size: 14px;
}

.contents h2 .prefix {
	font-size: 10px;
	margin-right: 8px;
}

.contents h2 br {
	display: none;
}

.contents h2 br:after {
	content:"｜";
}

.contents h3 {
	border-bottom: #bb0055 2px solid;
}

.contents h4 {
	padding: 4px 4px 4px 8px;
	border-left: #bb0055 4px solid;
}

.contents h5 {
        padding: 4px 4px 4px 8px;
	border-left: #cc1166 2px solid;
        font-size:14px;
}

.contents h6 {
	box-shadow: rgba(0,0,0,.3) 1px 1px 1px;
}

/*-------------------------------------
	information-table
-------------------------------------*/

.information-table {
	width: 100%;
}

.information-table th,
.information-table td {
	padding: 6px;
	line-height: 1.5;
	border: #ccc 1px solid;
}

.information-table th {
	text-align: right;
	white-space: nowrap;
	background-color: #f0f0f0;
}

/*-------------------------------------
	news-list
-------------------------------------*/

.news-list {
	list-style-type: none;
	margin: -24px;
	padding: 0;
}

.news-list li {
	border-bottom: #c8c8c8 1px solid;
	color: #000;
	padding: 8px;
	line-height: 1.5;
	font-size: 12px;
}

.news-list li:after {
	content: ""; 
	display: block; 
	clear: both;
}

.news-list li:last-child {
	border-bottom: none;
}

.news-list a {
	text-decoration: none;
}

.news-list a:hover {
	text-decoration: underline;
}

.news-list .date {
	width: 78px;
	float: left;
	text-align: center;
	margin-right: 8px;
}

.news-list .category {
	font-weight: bold;
	width: 96px;
	float: left;
	color: #fff;
	margin-right: 8px;
	text-align: center;
	text-shadow: rgba(0,0,0,.3) 0 0 2px;
}

.news-list .title {
	width: 530px;
	float: right;
}

.news-list .more {
	text-align: center;
	background-color: #e7e7e7;
	padding: 0;
}

.news-list .more a {
	display: block;
	color: #626262;
	padding: 8px;
}

.news-list .more a:hover {
	background-color: #ddd;
	text-decoration: none;
}

/*-------------------------------------
	information-list
-------------------------------------*/

.information-list {
	list-style-type: none;
	margin: -24px;
	padding: 0;
}

.information-list li {
	border-bottom: #c8c8c8 1px solid;
}

.information-list li:last-child {
	border-bottom: none;
}

.information-list a {
	line-height: 1.5;
	font-size: 12px;
	text-decoration: none;
	display: block;
	padding: 8px 8px 8px 24px;
	background-image: url(images/arrow_m.png);
	background-position: 8px 11px;
	background-repeat: no-repeat;
}

.information-list a:hover {
	background-color: #f0f0f0;
}

.information-list .more {
	text-align: center;
	color: #626262;
	background-color: #e7e7e7;
}

.information-list .more a {
	color: #626262;
	padding: 8px;
	background-image: none;
}

.information-list .more a:hover {
	background-color: #ddd;
}

/*-------------------------------------
	sitemap-menu
-------------------------------------*/

.sitemap-menu .sitemap {
	padding-left: 0;
}

.sitemap-menu .sitemap a {
	text-decoration: none;
}

.sitemap-menu .sitemap a:hover {
	text-decoration: underline;
}

.sitemap-menu .sitemap ul {
	font-size: 12px;
	margin: 4px 0;
	padding-left: 24px;
}

.sitemap-menu .sitemap li {
	list-style-type: none;	
	background-image: url(images/arrow_m.png);
	background-position: 0 6px;
	background-repeat: no-repeat;
	padding-left: 16px;
	margin-bottom: 4px;
}

.sitemap-menu .sitemap li.category {
	background-image: none;
	padding-left: 0;
	margin-left: -16px;
	font-weight: bold;
}

.sitemap-menu .sitemap li.category:before {
	content:"▼ ";
	font-size: 10px;
}

.sitemap-menu .sitemap li li {
	background-image: url(images/arrow_s.png);
	background-position: 0 6px;
	padding-left: 12px;
}

/*-------------------------------------
	category-menu
-------------------------------------*/

.category-menu .sitemap {
	padding-left: 0;
}

.category-menu .sitemap a {
	text-decoration: none;
}

.category-menu .sitemap a:hover {
	text-decoration: underline;
}

.category-menu .sitemap ul {
	padding-left: 24px;
}

.category-menu .sitemap li {
	display: none;
}

.category-menu .sitemap li li {
	display: block;
	list-style-type: none;	
	background-image: url(images/arrow_m.png);
	background-position: 0 6px;
	background-repeat: no-repeat;
	padding-left: 16px;
	margin-bottom: 4px;
}

.category-menu .sitemap > li > a {
	display: none;
}

.category-menu .sitemap .category {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	border-bottom: #bb0055 2px solid;
	margin: 24px 0 24px -24px;
	padding: 0;
	background-image: none;
}

.category-menu .sitemap li.exist-slide {
	display: none !important;
}

body.products .category-menu .sitemap li.products,
body.company .category-menu .sitemap li.company {
	display: block;
}

/*#####################################
	contents-full
#####################################*/

.contents-full {
	width: 992px;
	clear: both;
}

.contents-full h2 {
	font-size: 18px;
	margin-bottom: 0;
	padding-left: 20px;
	line-height: 40px;
	height: 40px;
	vertical-align: middle;
	background-image: url(images/h2_l.png);
	background-position: left top;
	background-repeat: no-repeat;
}

/*#####################################
	supplement
#####################################*/

.supplement {
	width: 240px;
	float: left;
}

body.top .supplement {
	float: right;
}

.supplement-main {
	width: 240px;
}

.supplement h2 {
	font-size: 16px;
	margin-bottom: 0;
	padding-left: 16px;
	line-height: 32px;
	height: 32px;
	vertical-align: middle;
	background-image: url(images/h2_s.png);
	background-position: left top;
	background-repeat: no-repeat;
}

/*-------------------------------------
	supplement-submenu
-------------------------------------*/

.supplement-submenu {
}

.supplement-submenu .sitemap,
.supplement-submenu .sitemap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.supplement-submenu .sitemap li {
	display: none;
}

.supplement-submenu .sitemap ul {
	margin-bottom: 16px;
}

.supplement-submenu .sitemap ul ul {
	margin-bottom: 0;
	padding-left: 24px;
}

.supplement-submenu .sitemap li li {
	display: block;
	background-color: #fff;
	box-shadow: rgba(0,0,0,.10) 2px 2px 1px;
}

.supplement-submenu .sitemap li li.category {
	font-size: 12px;
	font-weight: bold;
	padding: 4px;
	line-height: 1;
	margin: 8px 0 0;
	color: #fff;
	background-color: #333;
	border-bottom: #bb0055 1px solid;
}

.supplement-submenu .sitemap li li.category:first-child {
	margin-top: 0;
}

.supplement-submenu .sitemap li li a {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	display: block;
	padding: 6px 6px 6px 16px;
	line-height: 1.25;
	background-image: url(images/arrow_s.png);
	background-position: 6px 9px;
	background-repeat: no-repeat;
}

.supplement-submenu .sitemap li li a:hover {
	background-color: #f0f0f0;
}

.supplement-submenu .sitemap li li.current > a {
	background-color: #f5d9e6;
}

.supplement-submenu .sitemap li li.category a {
	color: #fff;
	padding: 0;
	line-height: 1;
	background: none;
	cursor: default;
}

.supplement-submenu .sitemap > li > a {
	display: none;
}

body.products .supplement-submenu .sitemap li.products ,
body.events   .supplement-submenu .sitemap li.events   ,
body.company  .supplement-submenu .sitemap li.company  ,
body.press    .supplement-submenu .sitemap li.press  ,
body.schedule .supplement-submenu .sitemap li.schedule {
	display: block;
}

/*-------------------------------------
	tv-banner
-------------------------------------*/

.tv-banner {
	list-style-type: none;
	margin: 0;
	padding: 8px;
	background-color: #e7e7e7;
}

.tv-banner li {
	text-align: center;
	margin-bottom: 8px;
}

.tv-banner li:last-child {
	margin-bottom: 0;
}

.tv-banner a:hover {
	opacity: .8;
}

.tv-banner img {
	box-shadow: rgba(0,0,0,.3) 1px 1px 1px;
}

/*-------------------------------------
	twitter-widget
-------------------------------------*/

.box.twitter {
	background-color: #e8e8e8;
}

.twitter-widget {
	font-size: 12px;
	color: #ccc;
	height: 264px;
}

.twitter-widget a {
	text-align: left;
	display: block;
	color: #999;
	line-height: 1.5;
	padding: 16px;
}

.twitter-widget iframe {
	vertical-align: bottom;
}

/*-------------------------------------
	sns-banner
-------------------------------------*/

.sns-banner {
	list-style-type: none;
	margin: 0;
	padding: 8px;
	background-color: #e7e7e7;
}

.sns-banner li {
	text-align: center;
	margin-bottom: 8px;
}

.sns-banner li:last-child {
	margin-bottom: 0;
}

.sns-banner a:hover {
	opacity: .8;
}

.sns-banner img {
	box-shadow: rgba(0,0,0,.3) 1px 1px 1px;
}

/*#####################################
	footer
#####################################*/

.footer {
	padding-bottom: 32px;
}

/*-------------------------------------
	footer-menu
-------------------------------------*/

.footer-menu {
	text-align: center;
	list-style: none;
	margin: 24px 0;
	padding: 0;
	font-size: 0;
}

.footer-menu li {
	padding: 0;
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	border-right: #525252 1px solid;
}

.footer-menu li:last-child {
	border-right: none;
}

.footer-menu a {
	color: #fff;
	text-decoration: none;
	line-height: 2;
	padding: 4px 16px;
}

.footer-menu a:hover {
	background-color: #444;
}

/*-------------------------------------
	footer-submenu
-------------------------------------*/

.footer-submenu {
	padding: 0;
	margin: 24px 0;
	list-style-type: none;
	font-size: 0;
	text-align: center;
}

.footer-submenu li {
	font-size: 13px;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	margin: 0 8px;
}

.footer-submenu a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	padding: 4px 4px 4px 16px;
	background-image: url(images/arrow_s.png);
	background-position: 2px 6px;
	background-repeat: no-repeat;
}

.footer-submenu a:hover {
	background-color: #444;
}

/*-------------------------------------
	social-buttons
-------------------------------------*/

.social-buttons {
	font-size: 0;
	padding: 0;
	list-style-type: none;
	margin: 0 0 24px;
	min-width: 100px;
	text-align: center;
}

.social-buttons li {
	margin: 0 10px 10px 0;
	padding: 0;
	display: inline-block;
	font-size: 12px;
	height: 20px;
	overflow: hidden;
	text-align: left;
	vertical-align: bottom;
	line-height: 1;
}

.ie6 .social-buttons li,
.ie7 .social-buttons li {
	display: inline;
}

.social-buttons li.twitter {
	width: 60px;
}

.social-buttons li.facebook {
	width: 112px;
	margin-right: 0;
}

/*-------------------------------------
	others
-------------------------------------*/

.footer-banner {
	text-align: center;
	margin-bottom: 8px;
}

.copyright {
	font-size: 10px;
	text-align: center;
}

/*#####################################
	pagetop
#####################################*/

.pagetop {
	position: fixed;
	bottom: 8px;
	right: 8px;
	opacity: 0;
	margin: 0;
	visibility: hidden;
	filter: alpha(opacity=0);
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	z-index: 101;
}

.pagetop.show {
	opacity: .7;
	visibility: visible;
	filter: alpha(opacity=70);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.pagetop:hover {
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
}

/*#####################################
	mobile-link
#####################################*/

.mobile-link {
	margin-bottom: 0;
}

.mobile-link a {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	display: block;
	padding: 16px;
	line-height: 1;
	color: #fff;
	background-color: #000;
}
