@charset "utf-8";

/* common & PC CSS

Index
------------------------------------------------------------
== 1. reset

== 2. initialization

== 3. common
 _ 3-1. wrapper/container
 _ 3-2. header
 _ 3-3. global navigation
 _ 3-4. contents wrap/column
 _ 3-5. footer

== 4. layout/parts/module
 _ 4-1. clearfix
 _ 4-2. text
 _ 4-3. link
 _ 4-4. page up

== 5. content

== 6. lang

------------------------------------------------------------
============================================================
== 1. reset
============================================================*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-align: inherit;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, 
footer, header, main, menu, nav, section {
  display: block;
}

img {
  width: 100%;
  font-size: 0;
  vertical-align: middle;
}

input, textarea, select {
	vertical-align: middle;
	font-size: 100%;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

ul,ol {
  list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, 
q:before, q:after {
	content: "";
	content: none;
}

strong {
  font-weight: bold;
}


/*============================================================
== 2. initialization
============================================================*/
body {
  background: #333333;
}


/*-- font common ----------*/
body {
  color: #333333;
  font-family: sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  line-height: 1.5;
  word-spacing: 0;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

.font01 {
  font-weight: normal;
}


/*-- link common ----------*/
a,
a:link,
a:visited {
  color: #333333;
  text-decoration: underline;
  outline: none;
}

a:hover,
a:active,
a:focus {
  color: #555555;
  text-decoration: none;
}



/*============================================================
== 3. common
============================================================*/
/*------------------------------------------------------
 _ 3-1. wrapper/container
------------------------------------------------------*/
#container {
  min-width: 940px;
  background: #ffffff;
}


/*------------------------------------------------------
 _ 3-2. header
------------------------------------------------------*/
#header {
  width: 940px;
  margin: 0 auto;
  margin-bottom: 75px; /* gnav height */
}

#header .content {
  position: relative;
  width: 98%;
  height: 36px;
  margin: 0 auto;
}


/*-- lang ----------*/
#lang {
  float: right;
  padding-top: 7px;
  font-size: 12px;
}


/*-- sns ----------*/
#sns {
  min-height: 52px;
  margin-right: 60px;
  padding-top: 7px;
  line-height: 1;
}

#sns img {
  width: auto;
}

#sns li {
  position: relative;
  z-index: 10;
  float: right;
}

#sns iframe {
	margin: 0 !important;
}

#sns .fb iframe {
  width: 113px !important;
}

#sns .tw iframe {
  width: 100px !important;
}

#sns .mixi iframe {
  width: 66px !important;
  padding-top: 1px !important;
}


/*------------------------------------------------------
 _ 3-3. global navigation
------------------------------------------------------*/
#gnav {
  position: relative;
  z-index: 10;
  top: -75px; /* gnav height */
  left: 0;
  width: 100%;
}

#gnav .content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 74px;
  border-top: 1px solid #f2f2f2;
  background: #ffffff url(../images/gnav_bg.png) repeat-x center bottom;
}

#gnav .content_width {
  width: 920px;
  height: 74px;
  margin: 0 auto;
}

#gnav h1 {
  position: relative;
}

#gnav h1 span {
  display: block;
  float: left;
  width: 110px;
  padding-top: 13px;
}

#gnav h1 img {
  vertical-align: top;
}

#gnav dl {
  position: relative;
  z-index: 99;
  min-width: 790px;
  margin-left: 130px;
  font-size: 14px;
  text-align: left;
  line-height: 23px;
  white-space: nowrap;
}

#gnav dt {
  position: relative;
  display: none;
}

#gnav dd {
  padding: 13px 0 12px;
}

#gnav li {
  display: inline;
}

.gnav {
  display: inline-block;
  vertical-align: top;
}

.gnav a {
  padding: 13px 26px;
}

.gnav a,
.gnav a:link,
.gnav a:visited {
  display: block;
  color: #b4b4b4;
  text-decoration: none;
}

.gnav a:hover,
.gnav a:active,
.gnav a:focus {
  color: #cccccc;
  text-decoration: none;
}


/*------------------------------------------------------
 _ 3-4. contents wrap/column
------------------------------------------------------*/
#main {
  text-align: center;
}

#main .content_width {
  width: 920px;
  margin: 0 auto;
}


/*------------------------------------------------------
 _ 3-5. footer
------------------------------------------------------*/
#footer {
  background: #333333;
}

#footer .content_width {
  width: 920px;
  margin: 0 auto;
  padding-bottom: 8px;
}

#footer ul {
  float: left;
  padding-top: 8px;
}

#footer ul li {
  display: inline;
  margin-right: 20px;
}

#footer ul a {
  color: #cccccc;
  text-decoration: none;
}

#copyright {
  padding-top: 8px;
  color: #cccccc;
  font-size: 12px;
  text-align: center;
}



/*============================================================
== 4. layout/parts/module
============================================================*/
/*------------------------------------------------------
 _ 4-1. clearfix
------------------------------------------------------*/
/*== clearfix ========================*/
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}

/*== clear ========================*/
.clear {
  clear: both;
  zoom: 1;
}


/*------------------------------------------------------
 _ 4-2. text
------------------------------------------------------*/
/*-- nobr ----------*/
.nobr {
  display: inline-block;
  white-space: nowrap;
}


/*------------------------------------------------------
 _ 4-3. link
------------------------------------------------------*/
/*-- zoom icon ----------*/
a.cur_zoom {
  display: block;
  z-index: 2;
  position: relative;
}

.cur_zoom:hover:after{
  position: absolute;
  z-index: 100;
  bottom: 5px;
  right: 5px;
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icon_zoom.png);
  content: "";
}


/*------------------------------------------------------
 _ 4-4. page up
------------------------------------------------------*/
.pagetop {
  margin: 0 auto;
  background: url(../images/bg_texture01.png);
  text-align: center;
}

.pagetop a {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 40px;
}

.pagetop img {
  width: 40px;
}



/*============================================================
== 5. content
============================================================*/
/*------------------------------------------------------
 _ mainvisual
------------------------------------------------------*/
#mainvisual {}

#mainvisual li {
  float: left;
  width: 50%;
}


/*------------------------------------------------------
 _ concept
------------------------------------------------------*/
#concept {
  padding: 140px 0 80px;
}

#concept h2 {
  margin: 0 auto 30px;
  font-size: 241%;
}

#concept h2 span {
  white-space: nowrap;
}

#concept p {
  width: 46em;
  max-width: 100%;
  margin: 0 auto 40px;
  font-size: 125%;
  line-height: 2.5;
}

#concept p span {
  white-space: nowrap;
}

#concept p .br1 {
  display: inline;
}

#concept .btn {
  margin: 0 auto 60px;
}

#concept .btn a {
  display: inline-block;
  padding: 2px 8px;
  background: #000000;
  color: #ffffff;
  font-size: 100%;
  text-decoration: none;
}



/*------------------------------------------------------
 _ flagship
------------------------------------------------------*/
#flagship {
  margin: 0 auto 120px;
  padding-bottom: 50px;
  background: #000000;
  color: #ffffff;
}

#flagship h2 {
  margin: 0 auto 30px;
  padding: 40px 0;
  background: #131313;
  font-size: 408%;
}


/*-- header ----------*/
#flagship .header {
  margin: 0 auto;
}

#flagship .header h3 {
  margin: 0 auto 30px;
  font-size: 200%;
}

#flagship .header h3 span {
  white-space: nowrap;
}

#flagship .header p {
  width: 38em;
  max-width: 100%;
  margin: 0 auto 30px;
  font-size: 134%;
}

#flagship .header p span {
  white-space: nowrap;
}

#flagship .header .btn {
  margin: 0 auto 30px;
}

#flagship .header .btn a {
  display: inline-block;
  padding: 2px 8px;
  background: #dddddd;
  font-size: 100%;
  text-decoration: none;
}



/*-- images ----------*/
#flagship .image dt {
  background: url(../images/flagship_img01_bg.png) no-repeat center center;
	-webkit-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-o-background-size: auto 100%;
  background-size: auto 100%;
}

#flagship .image dt span {
  display: block;
  width: 920px;
  margin: 0 auto;
}

#flagship .image dt img {
  width: 68%;
}

#flagship ul {
  width: 920px;
  margin: 0 auto;
}

#flagship ul li {
  float: left;
  width: 26%;
  padding: 0 3.6%;
}


/*------------------------------------------------------
 _ report
------------------------------------------------------*/
#report {
  padding-bottom: 60px;
}

#report h2 {
  margin: 0 auto 60px;
  padding: 40px 0;
  background: #666666 url(../images/report_title_bg.jpg) center center;
  color: #ffffff;
  font-size: 408%;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3), -1px -1px 0 rgba(0, 0, 0, 0.3), -1px -1px 0 rgba(0, 0, 0, 0.3);
}


/*-- header ----------*/
#report .header {
  width: 82%;
  margin: 0 auto 50px;
}

#report .header p {
  max-width: 100%;
  font-size: 125%;
}


/*== article ========================*/
#report .article {
  position: relative;
  width: 82%;
  margin: 0 auto 20px;
  border: 1px solid #cccccc;
}

#report .article dt {
  background: #fbfbfb;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
}

#report .article dt.comingsoon {
  cursor: auto;
}

#report .article dt img {
  display: none;
}

#report .article dt img:first-child {
  display: block;
}

#report .article dt.active img {
  display: block;
}

#report .article dt.active img:first-child {
  display: none;
}

#report .article .title {
  position: relative;
  display: block;
  padding-right: 14%;
  padding-left: 3%;
}

#report .article .title:after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  clear: both;
  width: 13%;
  max-width: 96px;
  height: 100%;
  background: #333333 url(../images/icon_btn_plus.png) no-repeat center center;
  content: "";
}

#report .article .active .title:after {
  background: #333333 url(../images/icon_btn_minus.png) no-repeat center center;
}

#report .article .comingsoon .title:after {
  background: #cccccc url(../images/icon_btn_plus.png) no-repeat center center;
}



#report .article dt .cel {
  display: table-cell;
  height: 6em;
  padding: 7px 0;
  vertical-align: middle;
}

#report .article dd {
  border-top: 1px solid #cccccc;
}

#report .article dd p {
  padding: 17px;
  text-align: left;
  line-height: 1.8;
}

#report .photo {
  overflow: hidden;
  padding: 0 0 9px 17px;
}

#report .photo li {
  float: left;
  width: 30%;
  padding-right: 3%;
  padding-bottom: 8px;
  vertical-align: top;
}

#report .photo a {
  text-decoration: none;
}

#report .caption {
  display: block;
  padding-top: 6px;
  font-size: 84%;
  line-height: 1.2;
}



/*------------------------------------------------------
 _ installation
------------------------------------------------------*/
#installation {
  margin: 0 auto;
  padding: 60px 0 40px;
}

#installation h2 {
  margin: 0 auto 60px;
  font-size: 408%;
}


/*-- header ----------*/
#installation .header {
  margin: 0 auto 90px;
  width: 91%;
}

#installation dt {
  float: left;
  width: 45%;
}

#installation dt img {
  width: 81%;
  border: 1px solid #000000;
}

#installation dd {
  overflow: hidden;
  width: 49%;
  margin-left: auto;
}

#installation dd p {
  font-size: 125%;
  text-align: left;
  line-height: 2.2;
}


/*-- image ----------*/
#installation .image {
  margin: 0 auto 50px;
}



/*------------------------------------------------------
 _ artist
------------------------------------------------------*/
#artist {
  margin: 0 auto;
  padding: 70px 0 30px;
  background: #000000;
}


/*== intro ========================*/
#artist .article {
  margin: 0 auto 20px;
}

/*-- profile ----------*/
#artist .profile {
  margin: 0 auto 50px;
  color: #ffffff;
}

#artist .header {
  float: left;
  width: 38%;
  padding-right: 7%;
  padding-left: 6%;
}

#artist h2 {
  padding-bottom: 30px;
  padding-left: 8%;
  font-size: 217%;
  text-align: left;
}

#artist .br1 {
  display: inline;
}

#artist .text {
  overflow: hidden;
  text-align: left;
}

#artist .text h3 {
  margin: 6px auto 30px;
  font-size: 125%;
}

#artist .text p {
  font-size: 125%;
  line-height: 2.2;
}

#artist .text p a {
  color: #ffffff;
  text-decoration: none;
}

#artist .text .btn {
  margin-top: 1em;
  text-align: right;
}

#artist .text .btn a {
  display: inline-block;
  padding: 2px 8px;
  background: #dddddd;
  font-size: 100%;
  text-decoration: none;
}


/*------------------------------------------------------
 _ movie
------------------------------------------------------*/
#movie {
  margin: 10px auto 0;
  padding: 60px 0 40px;
}

#movie h2 {
  margin: 0 auto 60px;
  font-size: 408%;
}



/*== article ========================*/
.movie {
  display: table;
  width: 100%;
  margin: 0 auto 40px;
  background: #000000;
}

.movie dt {
  display: table-cell;
  color: #ffffff;
  font-size: 184%;
  line-height: normal;
  vertical-align: middle;
}

.movie dt strong {
  display: block;
  font-size: 144.5%;
  font-weight: normal;
}

.movie dt em {
  display: block;
  color: #ae8e1b;
  font-size: 127%;
  font-style: normal;
}

.movie dt .sml {
  display: block;
  padding: 10px 0;
  font-size: 63%;
}


.movie dd {
  display: table-cell;
  width: 61%;
}

.youtube {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.youtube iframe,  
.youtube object,  
.youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.youtube .comingsoon{
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  margin-left: -5em;
  color: #ffffff;
  font-size: 184%;
}



/*============================================================
== 6. lang
============================================================*/
/*------------------------------------------------------
 _ EN
------------------------------------------------------*/
.en,
.en .font01 {
  font-family: 'Lato', Arial, sans-serif;
}


/*------------------------------------------------------
 _ JP
------------------------------------------------------*/
.jp {
  font-family: 'Lato', Arial, 'MS PGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

.jp .font01 {
  font-family: 'Lato', Arial, sans-serif;
}

.jp .content_width #copyright {
  text-align: right;
}


/*------------------------------------------------------
 _ IT
------------------------------------------------------*/
.it,
.it .font01 {
  font-family: 'Lato', Arial, sans-serif;
}

.it .gnav a {
  padding-right: 20px;
  padding-left: 20px;
}


/*------------------------------------------------------
 _ DE
------------------------------------------------------*/
.de,
.de .font01 {
  font-family: 'Lato', Arial, sans-serif;
}


/*------------------------------------------------------
 _ ES
------------------------------------------------------*/
.es,
.es .font01 {
  font-family: 'Lato', Arial, sans-serif;
}

.es .gnav a {
  padding-right: 17px;
  padding-left: 17px;
}


/*------------------------------------------------------
 _ FR
------------------------------------------------------*/
.fr,
.fr .font01 {
  font-family: 'Lato', Arial, sans-serif;
}

.fr .gnav a {
  padding-right: 21px;
  padding-left: 21px;
}


/*------------------------------------------------------
 _ SHI
------------------------------------------------------*/
.shi,
.shi .font01 {
  font-family: 'Microsoft YaHei', 'SimHei', 'Hei', 'Lato', Arial, sans-serif;
}

.shi .gnav a {
  padding-right: 40px;
  padding-left: 40px;
}


/*------------------------------------------------------
 _ TCH
------------------------------------------------------*/
.tch,
.tch .font01 {
  font-family: 'Microsoft JhengHei', 'LiHei Pro', 'Lato', Arial, sans-serif;
}

.tch .gnav a {
  padding-right: 40px;
  padding-left: 40px;
}



