@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: 24px;
}

#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 10px;
}

#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 20px;
}

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



/*------------------------------------------------------
 _ tour
------------------------------------------------------*/
#tour {
  padding: 50px 0 40px;
}



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

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


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

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

#installation dt img {
  width: 76%;
  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;
}

#installation dd .btn {
  padding-top: 20px;
  text-align: right;
}

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


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



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


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

/*-- 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%;
}



/*------------------------------------------------------
 _ product
------------------------------------------------------*/
#product {
  margin: 0 auto;
  padding: 90px 0 80px;
  background: #cdcdcd;
  zoom:1;
}

#product .content_width {
  overflow: hidden;
}

#product .list {
  width: 103%;
}

#product br.column2{
  display: none;
}

#product br.column4{
  display: block;
}


#product h2 {
  position: relative;
  float: left;
  color: #ffffff;
  font-size: 214%;
  text-align: left;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 20px;
}

#product h2 span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

#product h2 span span {
  display: block;
  width: auto;
  padding-top: 30%;
  padding-right: 5%;
  padding-left: 10%;
}



/*== article ========================*/
#product .article {
  float: left;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 20px;
}

#product .article .photo {
  margin: 0 auto 10px;
  background: #ffffff;
}

#product .article .photo img {
  border: 1px solid #bbbbbb;
}

#product .article .note {
  color: #666666;
}



/*------------------------------------------------------
 _ product item
------------------------------------------------------*/
#product_item {
  margin: 0 auto;
}


/*== header ========================*/
#product_item .header {
  position: relative;
  width: 900px;
  height: 42px;
  padding: 18px 0 0;
  margin: 0 auto;
}

#product_item h1 {
  float: left;
  width: 110px;
}

#product_item .header .btn {
  position: absolute;
  top: 14px;
  right: 0;
}

#product_item .header .btn input {
  border: 1px solid #000;
}


/*== content ========================*/
#product_item .content_width {
  width: 100%;
  padding: 100px 0;
  background: #dadcdd;
}

#product_item .article {
  width: 900px;
  margin: 0 auto;
}


/*-- image ----------*/
#product_item .image {
  float: left;
  width: 48%;
  padding-right: 3%;
}


/*-- text ----------*/
#product_item .text {
  overflow: hidden;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 1);
}

#product_item h2 {
  font-size: 117%;
  font-weight: bold;
}

#product_item h3 {
  padding: 4px 0;
  font-size: 167%;
  font-weight: bold;
}

#product_item h3 .sml {
  font-size: 86%;
}

#product_item h4 {
  padding: 0px 0 5px;
  font-size: 115%;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

#product_item .text p {
  font-size: 125%;
  line-height: 1.7;
  padding-top:20px;
}

#product_item .text .cap {
  display: block;
  font-size: 100%;
  line-height: 1.7;
  padding-top:10px;
}

#product_item .article .btn {
  display: none;
}



/*============================================================
== 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;
}

.it #product h2 {
  font-size: 167%;
}

.it #product h2 span span {
  padding-top: 36%;
}



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

.de .gnav a {
  padding-right: 22px;
  padding-left: 22px;
}


.de #product h2 {
  font-size: 134%;
}

.de #product h2 span span {
  padding-top: 45%;
  padding-left: 6%;
}


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

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


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

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


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

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

.shi #product h2 span span {
  padding-top: 40%;
  padding-left: 20%;
}



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

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

.tch #product h2 span span {
  padding-top: 40%;
  padding-left: 20%;
}



