@charset "UTF-8";
/* ---------------------------------------------------------------- *

  コーディング規約参考：http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml
                        http://www.cyberagent.co.jp/recruit/techreport/report/

----------------------------------------------------------------- */
/****************************************

    Reset

*****************************************/
/* Reset Style */
html {
  overflow-y: scroall;
}

html, body {
  font-family: 'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Verdana','MS P Gothic','ＭＳ Ｐゴシック',sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

ol, ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.over {
  display: inline-block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.over:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

img,
object,
embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

select, input, button, textarea {
  font: 99% arial,helvetica,clean,sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

area {
  border: none;
  outline: none;
}

.opacity, .opTest img:hover {
  opacity: 0.55;
  -moz-opacity: 0.55;
  filter: alpha(opacity=55);
  -ms-filter: "alpha(opacity=55.0)";
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.table_cell {
  display: table-cell;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.fr,
.imgR {
  float: right;
  margin-left: 10px;
}

.fl,
.imgL {
  float: left;
  margin-right: 10px;
}

.imgC,
.tC,
.btn {
  text-align: center;
}

.imgC {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tR,
.sign {
  text-align: right;
}

.serif {
  font-family: 'ヒラギノ明朝 ProN W6','HiraMinProN-W6','HG明朝E','ＭＳ Ｐ明朝','MS PMincho','MS 明朝',serif;
}

.scale-up {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.scale-up:hover {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.scale-down {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.scale-down:hover {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}

.grow img {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.grow img:hover {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

/****************************************

    common

*****************************************/
a:link {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.disable {
  color: #333;
  cursor: default;
}

a:visited {
  color: #333;
  text-decoration: none;
}

.blank {
  display: inline-block;
  background: url("../img/ico_blank.png") no-repeat right center;
  padding-right: 28px;
}

.txt-c {
  text-align: center;
}

.line-h-2 {
  line-height: 2;
}

.fade {
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.fade:hover {
  opacity: 0.80;
  -moz-opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80.0)";
}

.mcf:before,
.mcf:after {
  content: " ";
  display: table;
}

.mcf:after {
  clear: both;
}

.mcf {
  *zoom: 1;
}

/****************************************

    スマホ対応

*****************************************/
.hidden-xs {
  display: none;
}

.hidden-pc {
  display: none;
}

/* ----------------------------------------------------------------
  layout
----------------------------------------------------------------- */
html, body {
  position: relative;
  width: 100%;
  height: 100%;
}

@-moz-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
.fuwa {
  -moz-animation: fuwafuwa 3s ease infinite;
  -webkit-animation: fuwafuwa 3s ease infinite;
  animation: fuwafuwa 3s ease infinite;
}

/**
 * ローディング
 */
#loader {
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  top: 0px;
  left: 0px;
  z-index: 999;
}
#loader .load-inr {
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  left: 50%;
  top: 20%;
  width: 500px;
  margin-left: -250px;
}
#loader .load-img {
  text-align: center;
  margin-top: 50px;
}

/**
 * 音声許可
 */
#enter {
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  top: 0px;
  left: 0px;
  z-index: 900;
}
#enter .enter-inr {
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  left: 50%;
  top: 20%;
  width: 500px;
  margin-left: -250px;
}
#enter .enter-inr .enter-btn {
  text-align: center;
}
#enter .enter-inr .enter-btn .enter-txt {
  margin: 20px 0;
}
#enter .enter-inr .enter-btn .btn {
  margin: 0 2px;
}
#enter .enter-inr .enter-btn .btn:hover {
  cursor: pointer;
}

.wrap {
  position: relative;
  width: 100%;
  min-width: 1100px;
  height: auto !important;
  /*IE6対策*/
  height: 100%;
  /*IE6対策*/
  min-height: 100%;
  margin: 0 auto -20px auto;
  /* ヴィジョナリスト対策 */
  /**
   * サイドナビ
   */
  /**
   * センターメニュー
   */
}
.wrap h1 {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -111px;
}
.wrap .btn-material {
  position: fixed;
  right: 20px;
  top: 10px;
  z-index: 500;
}
.wrap .btn-audio {
  position: fixed;
  left: 20px;
  top: 10px;
  z-index: 100;
}
.wrap .btn-audio .audio-switch {
  display: block;
  width: 35px;
  height: 0;
  padding-top: 53px;
  background-repeat: no-repeat;
  overflow: hidden;
}
.wrap .btn-audio .audio-on {
  background-image: url(../img/common/btn_audio.png);
  background-position: 0 0;
}
.wrap .btn-audio .audio-off {
  background-image: url(../img/common/btn_audio.png);
  background-position: 0 -53px;
}
.wrap .area-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 400;
}
.wrap .area-sidebar #sideBar {
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  position: relative;
  width: 0;
  height: 100%;
  background: url(../img/common/bg_wht80.png) repeat 0 0;
}
.wrap .area-sidebar #sideBar .btn-pull {
  position: absolute;
  left: 0;
  top: 20%;
  width: 40px;
  height: 0;
  margin-left: -40px;
  padding-top: 54px;
  background: url(../img/common/btn_pull.png) no-repeat 0 0;
  overflow: hidden;
}
.wrap .area-sidebar #sideBar .inr {
  padding-top: 100px;
  overflow: hidden;
}
.wrap .area-sidebar #sideBar .inr .side-logo {
  margin-bottom: 20px;
  text-align: center;
}
.wrap .area-sidebar #sideBar .inr .side-top {
  padding: 0 20px;
}
.wrap .area-sidebar #sideBar .inr .side-top li {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap .area-sidebar #sideBar .inr .side-top li:hover {
  margin-left: -10px;
}
.wrap .area-sidebar #sideBar .inr .side-head {
  padding: 20px 40px;
}
.wrap .area-sidebar #sideBar .inr .side-list {
  padding: 0 20px;
  margin-bottom: 20px;
}
.wrap .area-sidebar #sideBar .inr .side-list li {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap .area-sidebar #sideBar .inr .side-list li:hover {
  margin-left: -10px;
}
.wrap .area-sidebar #sideBar .inr .side-sublist {
  padding: 0 20px;
  margin-bottom: 20px;
}
.wrap .area-sidebar #sideBar .inr .side-sublist li {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap .area-sidebar #sideBar .inr .side-sublist li:hover {
  margin-left: -10px;
}
.wrap .area-nav {
  position: absolute;
  left: 50%;
  bottom: 100px;
  width: 170px;
  margin-left: -85px;
}
.wrap .area-nav .inr {
  position: relative;
  width: 170px;
  height: 200px;
}
.wrap .area-nav .inr .menu-list {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 20px;
}
.wrap .area-nav .inr .menu-list li a {
  display: block;
  width: 170px;
  padding-top: 4px;
  text-align: center;
}
.wrap .area-nav .inr #obj1 {
  position: absolute;
  left: 0;
  bottom: 84px;
}
.wrap .area-nav .inr #menuIcon1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.wrap .area-nav .inr #menuIcon2 {
  position: absolute;
  left: 48px;
  bottom: 31px;
}
.wrap .area-nav .inr #menuIcon2-1 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.wrap button:hover,
.wrap button.active {
  background-color: #444;
}
.wrap #scroll-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background: #000 url(../img/common/scroll.gif) no-repeat center 0px;
  z-index: 100;
}
.wrap .container {
  padding-bottom: 40px;
}
.wrap .container #scroll-before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000 url(../img/common/scroll.gif) no-repeat center 10px;
  z-index: 300;
}
.wrap .container .content {
  width: 1100px;
  margin: 0 auto;
  background-color: #fff;
}
.wrap .container .content .g-nav {
  margin-bottom: 100px;
  padding-top: 35px;
}
.wrap .container .content .g-nav ul {
  overflow: hidden;
  *zoom: 1;
}
.wrap .container .content .g-nav ul li {
  float: left;
}
.wrap .container .content .g-nav ul li a,
.wrap .container .content .g-nav ul li span {
  display: block;
  height: 0px;
  padding-top: 50px;
  background: url(../img/common/g_nav.png) no-repeat 0 0;
  overflow: hidden;
}
.wrap .container .content .g-nav ul .nav-01 a {
  width: 156px;
  background-position: 0 0;
}
.wrap .container .content .g-nav ul .nav-02 a {
  width: 93px;
  background-position: -156px 0;
}
.wrap .container .content .g-nav ul .nav-02 a.current, .wrap .container .content .g-nav ul .nav-02 a:hover {
  background-position: -156px -50px;
}
.wrap .container .content .g-nav ul .nav-03 a {
  width: 112px;
  background-position: -249px 0;
}
.wrap .container .content .g-nav ul .nav-03 a.current, .wrap .container .content .g-nav ul .nav-03 a:hover {
  background-position: -249px -50px;
}
.wrap .container .content .g-nav ul .nav-04 a {
  width: 170px;
  background-position: -361px 0;
}
.wrap .container .content .g-nav ul .nav-04 a.current, .wrap .container .content .g-nav ul .nav-04 a:hover {
  background-position: -361px -50px;
}
.wrap .container .content .g-nav ul .nav-05 a {
  width: 222px;
  background-position: -531px 0;
}
.wrap .container .content .g-nav ul .nav-05 a.current, .wrap .container .content .g-nav ul .nav-05 a:hover {
  background-position: -531px -50px;
}
.wrap .container .content .g-nav ul .nav-06 a {
  width: 177px;
  background-position: -753px 0;
}
.wrap .container .content .g-nav ul .nav-06 a.current, .wrap .container .content .g-nav ul .nav-06 a:hover {
  background-position: -753px -50px;
}
.wrap .container .content .g-nav ul .nav-07 a {
  width: 170px;
  background-position: -930px 0;
}
.wrap .container .content .g-nav ul .nav-07 a.current, .wrap .container .content .g-nav ul .nav-07 a:hover {
  background-position: -930px -50px;
}
.wrap #pagetop {
  padding-bottom: 40px;
  text-align: center;
}
.wrap #pagetop button {
  display: block;
  margin: 0 auto;
  text-align: center;
  outline: none;
  background: none;
  border: none;
}

.foot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  background-color: #000;
}
.foot .foot-inr {
  position: relative;
  height: 40px;
  padding: 0 20px;
  font-size: 93%;
}
.foot .foot-inr a {
  color: #fff;
}
.foot .foot-inr .foot-nav ul {
  overflow: hidden;
  *zoom: 1;
}
.foot .foot-inr .foot-nav ul li {
  float: left;
  margin-right: 20px;
  line-height: 40px;
}
.foot .foot-inr .foot-nav ul li img {
  vertical-align: middle;
}
.foot .foot-inr .foot-copy {
  position: absolute;
  right: 100px;
  top: 0;
  line-height: 40px;
}
.foot .foot-inr .foot-sns {
  position: absolute;
  right: 0;
  top: 0;
}
.foot .foot-inr .foot-sns ul {
  margin-top: 13px;
  padding: 0 20px;
}
.foot .foot-inr .foot-sns ul li {
  margin-left: 5px;
  display: inline-block;
}

.home .area-copy {
  position: absolute;
  left: 9%;
  top: 18%;
}
.home .area-copy dl dt {
  margin-bottom: 40px;
}

/**
 * 下層ページ共通
 */
.container .block-material {
  width: 1000px;
  margin: 80px auto;
  text-align: center;
}
.container .block-localico {
  width: 1000px;
  margin: 80px auto;
}
.container .block-localico .list {
  text-align: center;
}
.container .block-localico .list li {
  display: inline-block;
  margin: 0 5px;
}
.container .block-locallink {
  width: 1000px;
  margin: 80px auto;
}
.container .block-locallink .list {
  margin-right: -14px;
  overflow: hidden;
  *zoom: 1;
}
.container .block-locallink .list li {
  float: left;
  margin-right: 14px;
}
.container .block-support {
  width: 884px;
  margin: 80px auto;
}
.container .block-support .support-list dt {
  width: 884px;
  height: 132px;
}
.container .block-support .support-list dd {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.container .block-support .support-list dd .menu {
  text-align: center;
}
.container .block-support .support-list dd .menu li {
  width: 240px;
  height: 145px;
  margin: 20px 10px;
  display: inline-block;
}

/**
 * ＋view
 */
.view {
  /**
   * センターメニュー
   */
}
.view .area-nav {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 170px;
  margin-left: -85px;
}
.view .area-bb .area-keyimg {
  position: relative;
  width: 1100px;
  margin: 0 auto -13px auto;
}
.view .area-bb .area-keyimg .cinema {
  position: absolute;
  left: 274px;
  top: 483px;
}
.view .area-bb .overlay {
  height: 700px;
  background: url(../img/overlays/10.png) repeat 0 0;
}
.view .container {
  position: relative;
}
.view .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.view .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.view .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.view .container .content .sec-01 {
  width: 1000px;
  margin: 60px auto 100px auto;
}
.view .container .content .sec-01 .box-outer {
  position: relative;
  height: 1100px;
}
.view .container .content .sec-01 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.view .container .content .sec-01 .box-outer .box-2 {
  position: absolute;
  left: 275px;
  bottom: 0;
}
.view .container .content .sec-01 .box-outer .box-3 {
  position: absolute;
  right: 0;
  top: 60px;
}
.view .container .content .sec-01 .box-outer .box-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.view .container .content .sec-02 {
  width: 1000px;
  margin: 80px auto;
}
.view .container .content .sec-02 .photo {
  margin-bottom: 20px;
}
.view .area-copy {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 296px;
  height: 363px;
  background: url(../img/view/bg_copy.png) no-repeat 0 0;
}
.view .area-copy dl {
  width: 240px;
  margin: 30px auto;
}
.view .area-copy dl dt {
  margin-bottom: 20px;
}

/**
 * ＋balcony
 */
.balcony {
  /**
   * センターメニュー
   */
}
.balcony .area-nav {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 170px;
  margin-left: -85px;
}
.balcony .area-bb .area-keyimg {
  position: relative;
  width: 1100px;
  margin: 0 auto -13px auto;
}
.balcony .area-bb .area-keyimg .cinema-a {
  position: absolute;
  left: 0px;
  top: 505px;
}
.balcony .area-bb .area-keyimg .cinema-b {
  position: absolute;
  left: 614px;
  top: 288px;
}
.balcony .area-bb .overlay {
  height: 700px;
  background: url(../img/overlays/11.png) repeat 0 0;
}
.balcony .container {
  position: relative;
}
.balcony .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.balcony .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.balcony .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.balcony .container .content .sec-01 {
  width: 1000px;
  margin: 60px auto 30px auto;
}
.balcony .container .content .sec-01 .box-outer {
  position: relative;
  height: 655px;
}
.balcony .container .content .sec-01 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.balcony .container .content .sec-02 {
  width: 1000px;
  margin: 30px auto 100px auto;
}
.balcony .container .content .sec-02 .box-outer {
  position: relative;
  height: 453px;
}
.balcony .container .content .sec-02 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.balcony .container .content .sec-02 .box-outer .box-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.balcony .area-copy {
  position: absolute;
  right: 8%;
  top: 160px;
  width: 332px;
  height: 362px;
  background: url(../img/balcony/bg_copy.png) no-repeat 0 0;
}
.balcony .area-copy dl {
  width: 280px;
  margin: 30px auto;
}
.balcony .area-copy dl dt {
  margin-bottom: 20px;
}

/**
 * ＋parking gate
 */
.parking {
  /**
   * センターメニュー
   */
}
.parking .area-nav {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 170px;
  margin-left: -85px;
}
.parking .area-bb .area-keyimg {
  position: relative;
  width: 1100px;
  margin: 0 auto -13px auto;
}
.parking .area-bb .area-keyimg .cinema {
  position: absolute;
  left: 151px;
  top: 310px;
}
.parking .area-bb .overlay {
  height: 700px;
  background: url(../img/overlays/10.png) repeat 0 0;
}
.parking .container {
  position: relative;
}
.parking .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.parking .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.parking .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.parking .container .content .sec-01 {
  width: 1000px;
  margin: 60px auto 30px auto;
}
.parking .container .content .sec-01 .box-outer {
  position: relative;
  height: 550px;
}
.parking .container .content .sec-01 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.parking .container .content .sec-02 {
  width: 1000px;
  margin: 30px auto 100px auto;
}
.parking .container .content .sec-02 .box-outer {
  position: relative;
  height: 380px;
}
.parking .container .content .sec-02 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.parking .container .content .sec-02 .box-outer .box-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.parking .area-copy {
  position: absolute;
  right: 8%;
  top: 60px;
  width: 333px;
  height: 315px;
  background: url(../img/parking/bg_copy.png) no-repeat 0 0;
}
.parking .area-copy dl {
  width: 280px;
  margin: 30px auto;
}
.parking .area-copy dl dt {
  margin-bottom: 20px;
}

/**
 * about VIETROIS
 */
.about .area-bb .area-keytxt {
  position: absolute;
  left: 50%;
  top: 190px;
  margin-top: -10px;
  margin-left: -272px;
  text-align: center;
}
.about .area-bb .overlay {
  height: 300px;
}
.about .container {
  position: relative;
}
.about .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.about .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.about .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.about .container .content .sec-01 {
  width: 1100px;
  margin: 60px auto 30px auto;
}
.about .container .content .sec-01 .box-outer {
  position: relative;
  height: 475px;
}
.about .container .content .sec-01 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.about .container .content .sec-01 .box-outer .box-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.about .container .content .sec-01 .box-outer .box-3 {
  position: absolute;
  left: 550px;
  bottom: 0;
}
.about .container .content .sec-02 {
  width: 1100px;
  margin: 60px auto 30px auto;
}
.about .container .content .sec-02 .box-outer {
  position: relative;
  height: 350px;
  background: url(../img/about/bg_1design.jpg) no-repeat left top;
}
.about .container .content .sec-02 .box-outer h3 {
  padding: 20px 0;
  text-align: center;
}
.about .container .content .sec-02 .box-outer ul {
  margin-top: 30px;
  text-align: center;
  overflow: hidden;
  *zoom: 1;
}
.about .container .content .sec-02 .box-outer ul li {
  display: inline-block;
  width: 20%;
}
.about .container .content .sec-03 {
  width: 1100px;
  margin: 30px auto 30px auto;
}
.about .container .content .sec-03 h3 {
  padding: 20px 0;
  text-align: center;
}
.about .container .content .sec-03 dl {
  width: 1000px;
  margin: 0;
}
.about .container .content .sec-03 dl dt {
  padding-bottom: 30px;
}
.about .container .content .sec-03 dl dd {
  padding-bottom: 80px;
}
.about .container .content .sec-04 {
  width: 1100px;
  margin: 30px auto 100px auto;
}
.about .container .content .sec-04 h3 {
  padding-bottom: 50px;
  text-align: center;
}
.about .container .content .sec-04 ul {
  background: url(../img/common/dot_x.png) repeat-x left top;
}
.about .container .content .sec-04 ul li {
  position: relative;
  height: 200px;
  padding: 10px 0;
  background: url(../img/common/dot_x.png) repeat-x left bottom;
}
.about .container .content .sec-04 ul li .ico {
  display: block;
  position: absolute;
  left: 0;
  top: 30px;
}
.about .container .content .sec-04 ul li .txt {
  display: block;
  position: absolute;
  left: 190px;
  top: 20px;
}
.about .container .content .sec-04 ul li .point {
  display: block;
  position: absolute;
  right: 0;
  top: 20px;
}
.about .area-copy {
  position: absolute;
  right: 8%;
  top: 60px;
  width: 333px;
  height: 315px;
  background: url(../img/parking/bg_copy.png) no-repeat 0 0;
}
.about .area-copy dl {
  width: 280px;
  margin: 30px auto;
}
.about .area-copy dl dt {
  margin-bottom: 20px;
}

/**
 * model plan
 */
.plan .area-bb .area-keytxt {
  position: absolute;
  left: 50%;
  top: 190px;
  margin-top: -10px;
  margin-left: -272px;
  text-align: center;
}
.plan .area-bb .overlay {
  height: 300px;
}
.plan .container {
  position: relative;
}
.plan .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.plan .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.plan .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.plan .container .content .local-nav ul {
  padding-bottom: 100px;
  text-align: center;
}
.plan .container .content .local-nav ul li {
  display: inline-block;
  margin: 0 20px;
}
.plan .container .content .section .sec-tit {
  text-align: center;
  margin-bottom: 100px;
}
.plan .container .content .sec-01 {
  width: 1100px;
  margin: -100px auto 0 auto;
  padding-top: 100px;
}
.plan .container .content .sec-01 .box-outer {
  position: relative;
  height: 400px;
}
.plan .container .content .sec-01 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.plan .container .content .sec-01 .box-outer .box-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.plan .container .content .sec-02 {
  width: 1100px;
  margin: 100px auto 100px auto;
  padding-bottom: 100px;
  background: url(../img/common/line.png) no-repeat center bottom;
}
.plan .container .content .sec-02 .box-outer {
  position: relative;
  height: 980px;
}
.plan .container .content .sec-02 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.plan .container .content .sec-02 .box-outer .box-1 .btn-detail {
  margin-top: 20px;
  margin-left: 30px;
}
.plan .container .content .sec-02 .box-outer .box-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.plan .container .content .sec-02 .box-outer .box-2 .btn-detail {
  margin-top: 20px;
  margin-left: 0px;
}
.plan .container .content .sec-02 .box-outer .box-3 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.plan .container .content .sec-02 .box-outer .box-3 .btn-detail {
  margin-top: 20px;
  margin-left: 30px;
}
.plan .container .content .sec-02 .box-outer .box-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.plan .container .content .sec-02 .box-outer .box-4 .btn-detail {
  margin-top: 20px;
  margin-left: 0px;
}
.plan .container .content .sec-03 {
  width: 960px;
  margin: -100px auto 100px auto;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../img/common/line.png) no-repeat center bottom;
}
.plan .container .content .sec-03 .box-outer {
  position: relative;
  height: 255px;
}
.plan .container .content .sec-03 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.plan .container .content .sec-03 .box-outer .box-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.plan .container .content .sec-03 .box-outer .box-3 {
  position: absolute;
  left: 425px;
  bottom: 0;
}
.plan .container .content .sec-04 {
  margin: -100px auto 0px auto;
  padding-top: 100px;
}
.plan .container .content .sec-04 .sec-tit {
  text-align: center;
  margin-bottom: 60px;
}
.plan .container .content .sec-04 .bnr-lp {
  text-align: center;
}

/**
 * acrive life
 */
.active .area-bb .area-keytxt {
  position: absolute;
  left: 50%;
  top: 190px;
  margin-top: -10px;
  margin-left: -272px;
  text-align: center;
}
.active .area-bb .overlay {
  height: 300px;
}
.active .container {
  position: relative;
}
.active .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.active .container .content .intro {
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  text-align: center;
}
.active .container .content .intro .intro-tit {
  margin-bottom: 60px;
}
.active .container .content .section .sec-tit {
  text-align: center;
  margin-bottom: 100px;
}
.active .container .content .sec-01 {
  width: 900px;
  margin: 60px auto 30px auto;
}
.active .container .content .sec-01 .box-outer {
  position: relative;
  height: 700px;
}
.active .container .content .sec-01 .box-outer .box-1 {
  text-align: center;
}
.active .container .content .sec-02 {
  width: 1100px;
  margin: 60px auto 0 auto;
}
.active .container .content .sec-02 .sec-tit {
  padding-bottom: 20px;
  background: url(../img/common/line.png) no-repeat center bottom;
}
.active .container .content .sec-02 .block-tit {
  margin-bottom: 40px;
}
.active .container .content .sec-02 .note {
  margin-bottom: 40px;
}
.active .container .content .sec-02 .box-outer {
  position: relative;
  height: 374px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  background: url(../img/common/dot_x.png) repeat-x left bottom;
}
.active .container .content .sec-02 .box-outer .box-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.active .container .content .sec-02 .box-outer .box-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.active .container .content .sec-02 .box-outer .box-3 {
  text-align: center;
}
.active .container .content .sec-03 {
  width: 1000px;
  margin: 60px auto 30px auto;
}
.active .container .content .sec-03 .sec-tit {
  margin-bottom: 60px;
  padding-bottom: 0px;
}
.active .container .content .sec-03 .block-tit {
  margin-bottom: 40px;
}
.active .container .content .sec-03 .note {
  margin-bottom: 40px;
}
.active .container .content .sec-03 .box-outer {
  position: relative;
  height: 320px;
  margin-bottom: 50px;
}
.active .container .content .sec-03 .box-outer .box-1 {
  position: absolute;
  right: 0;
  top: 0;
}

.featherlight-previous span {
  height: 0;
  width: 33px;
  margin-top: -22px;
  padding-top: 45px;
  background: url(../img/common/arw_l.png) no-repeat left top;
  overflow: hidden;
}

.featherlight-next span {
  height: 0;
  width: 33px;
  margin-top: -22px;
  padding-top: 45px;
  background: url(../img/common/arw_r.png) no-repeat left top;
  overflow: hidden;
}

/* ----------------------------------------------------------------

  @media

----------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
}
