@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%;
}

/**
 * ローディング
 */
#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: relative;
  left: 0;
  top: 10%;
}
#loader .load-inr .load-tit {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
#loader .load-inr .load-tit img {
  width: 80%;
  height: auto;
}
#loader .load-img {
  text-align: center;
  margin-top: 10px;
}

/**
 * 音声許可
 */
#audio-ctl {
  width: 100%;
  height: 30px;
  color: #fff;
  text-align: center;
  background-color: #000;
}

.audio-on,
.audio-off {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.wrap {
  position: relative;
  width: 100%;
  height: auto !important;
  /*IE6対策*/
  height: 100%;
  /*IE6対策*/
  min-height: 100%;
  margin-bottom: -20px;
  overflow: hidden;
  /**
   * サイドナビ
   */
}
.wrap h1 {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -75px;
  z-index: 100;
}
.wrap h1 img {
  width: 150px;
  height: auto;
}
.wrap .btn-pull {
  position: absolute;
  left: 0;
  top: 30px;
  width: 40px;
  height: 0;
  padding-top: 54px;
  background: url(../img/common/btn_pull.png) no-repeat 0 0;
  overflow: hidden;
  z-index: 300;
  -moz-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.wrap .oepn {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.wrap .close {
  -moz-transform: translateX(240px);
  -ms-transform: translateX(240px);
  -webkit-transform: translateX(240px);
  transform: translateX(240px);
}
.wrap #sideBar {
  position: fixed;
  right: 0;
  top: 0;
  width: 280px;
  height: 100%;
  z-index: 20;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap #sideBar .area-sidebar {
  position: relative;
  width: 240px;
  height: 100%;
  padding-left: 40px;
}
.wrap #sideBar .area-sidebar .inr {
  min-height: 100%;
  padding-top: 10px;
  overflow: hidden;
  background: url(../img/common/bg_wht80.png) repeat 0 0;
}
.wrap #sideBar .area-sidebar .inr .side-logo {
  margin-bottom: 10px;
  text-align: center;
}
.wrap #sideBar .area-sidebar .inr .side-top {
  padding: 0 20px;
}
.wrap #sideBar .area-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 #sideBar .area-sidebar .inr .side-top li:hover {
  margin-left: -10px;
}
.wrap #sideBar .area-sidebar .inr .side-head {
  padding: 5px 40px;
}
.wrap #sideBar .area-sidebar .inr .side-list {
  padding: 0 20px;
  margin-bottom: 5px;
}
.wrap #sideBar .area-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 #sideBar .area-sidebar .inr .side-list li:hover {
  margin-left: -10px;
}
.wrap #sideBar .area-sidebar .inr .side-sublist {
  padding: 0 20px;
  margin-bottom: 10px;
}
.wrap #sideBar .area-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 #sideBar .area-sidebar .inr .side-sublist li:hover {
  margin-left: -10px;
}
.wrap .content {
  position: relative;
  padding-bottom: 100px;
}
.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;
}
.foot .foot-inr {
  font-size: 93%;
}
.foot .foot-inr a {
  color: #000;
}
.foot .foot-inr .foot-nav ul {
  height: 30px;
  line-height: 30px;
  border-top: 1px solid #ccc;
  overflow: hidden;
  *zoom: 1;
}
.foot .foot-inr .foot-nav ul li {
  font-size: 93%;
  float: left;
  width: 33%;
  text-align: center;
}
.foot .foot-inr .foot-sns {
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
}
.foot .foot-inr .foot-sns ul li {
  margin: 0 5px;
  display: inline;
}
.foot .foot-inr .foot-sns ul li img {
  vertical-align: middle;
}
.foot .foot-inr .foot-copy {
  height: 40px;
  line-height: 40px;
  font-size: 85%;
  text-align: center;
  background-color: #000;
}

.home .audio-off {
  background-image: url(../img/home/btn_audio_pause.gif);
}
.home .audio-on {
  background-image: url(../img/home/btn_audio_play.gif);
}
.home .area-bb {
  width: 100%;
  height: 300px;
}
.home .area-copy {
  margin-bottom: 20px;
}
.home .area-copy dl {
  margin-top: -36px;
}
.home .area-copy dl dt {
  max-width: 400px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.home .area-copy dl dt img {
  width: 80%;
  height: auto;
}
.home .area-copy dl dd {
  line-height: 2;
  font-size: 108%;
  text-align: center;
}
.home .block-material {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.home .block-material img {
  width: 100%;
  height: auto;
}

/**
 * 下層ページ共通
 */
.container {
  max-width: 800px;
  margin: 0 auto;
}
.container .block-material {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.container .block-material img {
  width: 100%;
  height: auto;
}
.container .block-localico {
  width: 100%;
  margin: 80px auto;
}
.container .block-localico .list {
  text-align: center;
}
.container .block-localico .list li {
  display: inline-block;
  max-width: 30%;
  margin: 0;
}
.container .block-localico .list li img {
  vertical-align: middle;
  width: 90%;
  height: auto;
}
.container .block-locallink {
  width: 100%;
  margin: 80px auto;
}
.container .block-locallink .list {
  text-align: center;
  overflow: hidden;
  *zoom: 1;
}
.container .block-locallink .list li {
  width: 100;
  margin-bottom: 20px;
  display: inline-block;
}
.container .block-locallink .list li img {
  width: 90%;
  height: auto;
}
.container .block-support {
  width: 100%;
  margin: 80px auto;
}
.container .block-support .support-list {
  width: 90%;
  margin: 0 auto;
}
.container .block-support .support-list dt {
  width: 100%;
}
.container .block-support .support-list dt img {
  width: 100%;
  height: auto;
}
.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;
}

.scroll-bar {
  width: 100%;
  height: 40px;
  color: #fff;
  background: #000 url(../img/common/txt_scroll.png) no-repeat center 17px;
}

/**
 * ＋view
 */
.view .audio-off {
  background-image: url(../img/view/btn_audio_pause.gif);
}
.view .audio-on {
  background-image: url(../img/view/btn_audio_play.gif);
}
.view .area-bb {
  width: 100%;
  height: 300px;
}
.view .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.view .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.view .container {
  position: relative;
}
.view .container .content {
  padding-top: 40px;
}
.view .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.view .container .content .page-tit img {
  width: 30%;
  height: auto;
}
.view .container .content .intro {
  width: 100%;
  margin: 0 auto 100px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.view .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.view .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.view .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.view .container .content .sec-01 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.view .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.view .container .content .sec-01 .box-outer {
  margin: 0 5%;
}
.view .container .content .sec-01 .box-1 {
  margin-bottom: 20px;
}
.view .container .content .sec-01 .box-2 {
  margin-bottom: 40px;
}
.view .container .content .sec-01 .box-3 {
  margin-bottom: 20px;
}
.view .container .content .sec-01 .box-4 {
  margin-bottom: 40px;
}
.view .container .content .sec-01 .box-5 {
  margin-bottom: 20px;
}
.view .container .content .sec-01 .box-6 {
  margin-bottom: 40px;
}

/**
 * ＋balcony
 */
.balcony .audio-off {
  background-image: url(../img/balcony/btn_audio_pause.gif);
}
.balcony .audio-on {
  background-image: url(../img/balcony/btn_audio_play.gif);
}
.balcony .area-bb {
  width: 100%;
  height: 300px;
}
.balcony .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.balcony .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.balcony .container {
  position: relative;
}
.balcony .container .content {
  padding-top: 40px;
}
.balcony .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.balcony .container .content .page-tit img {
  width: 30%;
  height: auto;
}
.balcony .container .content .intro {
  width: 100%;
  margin: 0 auto 100px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.balcony .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.balcony .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.balcony .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.balcony .container .content .sec-01 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.balcony .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.balcony .container .content .sec-01 .box-outer {
  margin: 0 5%;
}
.balcony .container .content .sec-01 .box-1 {
  margin-bottom: 20px;
}
.balcony .container .content .sec-01 .box-2 {
  margin-bottom: 40px;
}
.balcony .container .content .sec-01 .box-3 {
  margin-bottom: 20px;
}
.balcony .container .content .sec-01 .box-4 {
  margin-bottom: 40px;
}
.balcony .container .content .sec-01 .box-5 {
  margin-bottom: 20px;
}
.balcony .container .content .sec-01 .box-6 {
  margin-bottom: 40px;
}

/**
 * ＋parking gate
 */
.parking .audio-off {
  background-image: url(../img/parking/btn_audio_pause.gif);
}
.parking .audio-on {
  background-image: url(../img/parking/btn_audio_play.gif);
}
.parking .area-bb {
  width: 100%;
  height: 300px;
}
.parking .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.parking .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.parking .container {
  position: relative;
}
.parking .container .content {
  padding-top: 40px;
}
.parking .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.parking .container .content .page-tit img {
  width: 40%;
  height: auto;
}
.parking .container .content .intro {
  width: 100%;
  margin: 0 auto 100px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.parking .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.parking .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.parking .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.parking .container .content .sec-01 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.parking .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.parking .container .content .sec-01 .box-outer {
  margin: 0 5%;
}
.parking .container .content .sec-01 .box-1 {
  margin-bottom: 20px;
}
.parking .container .content .sec-01 .box-2 {
  margin-bottom: 40px;
}
.parking .container .content .sec-01 .box-3 {
  margin-bottom: 20px;
}
.parking .container .content .sec-01 .box-4 {
  margin-bottom: 40px;
}
.parking .container .content .sec-01 .box-5 {
  margin-bottom: 20px;
}
.parking .container .content .sec-01 .box-6 {
  margin-bottom: 40px;
}

/**
 * about VIETROIS
 */
.audio-off {
  background-image: url(../img/about/btn_audio_pause.gif);
}

.audio-on {
  background-image: url(../img/about/btn_audio_play.gif);
}

.about .area-bb {
  width: 100%;
  height: 200px;
}
.about .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.about .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.about .area-bb .area-keytxt {
  position: relative;
  top: 140px;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.about .area-bb .area-keytxt img {
  width: 100%;
  height: auto;
}
.about .container {
  position: relative;
}
.about .container .content {
  padding-top: 40px;
}
.about .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.about .container .content .page-tit img {
  width: 40%;
  height: auto;
}
.about .container .content .intro {
  width: 100%;
  margin: 0 auto 20px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.about .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.about .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.about .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.about .container .content .intro .intro-txt .blue {
  color: #162987;
  font-weight: bold;
}
.about .container .content .sec-01 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.about .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.about .container .content .sec-01 .box-outer {
  margin: 0 5%;
}
.about .container .content .sec-01 .box-outer .box-1 {
  margin-bottom: 20px;
}
.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: 100%;
  text-align: center;
  line-height: 2.4;
}
.about .container .content .sec-02 .box-outer {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
  background: url(../img/about/bg_1design.jpg) no-repeat left top;
  background-size: cover;
}
.about .container .content .sec-02 .box-outer h3 {
  width: 60%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.about .container .content .sec-02 .box-outer h3 img {
  width: 100%;
  height: auto;
}
.about .container .content .sec-02 .box-outer ul {
  margin-top: 30px;
  overflow: hidden;
  *zoom: 1;
}
.about .container .content .sec-02 .box-outer ul li {
  float: left;
  width: 33%;
  text-align: center;
}
.about .container .content .sec-02 .box-outer ul li img {
  width: 90%;
  height: auto;
}
.about .container .content .sec-03 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.about .container .content .sec-03 h3 {
  padding: 20px 0;
  text-align: center;
}
.about .container .content .sec-03 h3 img {
  width: 100%;
  height: auto;
}
.about .container .content .sec-03 dl dt {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.about .container .content .sec-03 dl dt img {
  width: 100%;
  height: auto;
}
.about .container .content .sec-03 dl dd {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 80px;
}
.about .container .content .sec-03 dl dd p {
  text-align: left;
}
.about .container .content .sec-04 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.about .container .content .sec-04 h3 {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.about .container .content .sec-04 h3 img {
  width: 100%;
  height: auto;
}
.about .container .content .sec-04 ul {
  width: 90%;
  margin: 0 auto;
  background: url(../img/common/dot_x.png) repeat-x left top;
}
.about .container .content .sec-04 ul li {
  position: relative;
  padding: 20px 0;
  background: url(../img/common/dot_x.png) repeat-x left bottom;
}
.about .container .content .sec-04 ul li .tit {
  margin-bottom: 10px;
  font-size: 139%;
  text-align: left;
  font-weight: bold;
  line-height: 1.6;
}
.about .container .content .sec-04 ul li .note {
  text-align: left;
}
.about .container .content .sec-04 ul li .ico {
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}
.about .container .content .sec-04 ul li .txt {
  display: block;
  position: absolute;
  left: 190px;
  top: 20px;
}
.about .container .content .sec-04 ul li .img {
  text-align: center;
}
.about .container .content .sec-04 ul li .img img {
  width: 100%;
  height: auto;
}
.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 .audio-off {
  background-image: url(../img/plan/btn_audio_pause.gif);
}
.plan .audio-on {
  background-image: url(../img/plan/btn_audio_play.gif);
}
.plan .area-bb {
  width: 100%;
  height: 200px;
}
.plan .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.plan .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.plan .area-bb .area-keytxt {
  position: relative;
  top: 140px;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.plan .area-bb .area-keytxt img {
  width: 100%;
  height: auto;
}
.plan .container {
  position: relative;
}
.plan .container .content {
  padding-top: 40px;
}
.plan .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.plan .container .content .page-tit img {
  width: 40%;
  height: auto;
}
.plan .container .content .intro {
  width: 100%;
  margin: 0 auto 20px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.plan .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.plan .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.plan .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.plan .container .content .intro .intro-txt .blue {
  color: #162987;
  font-weight: bold;
}
.plan .container .content .sec-01 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.plan .container .content .sec-01 .sec-tit {
  width: 80%;
  margin: 0 auto 20px auto;
}
.plan .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.plan .container .content .sec-01 .box-outer {
  margin: 0 5%;
}
.plan .container .content .sec-01 .box-outer .box-1 {
  margin-bottom: 20px;
}
.plan .container .content .sec-01 .box-outer .box-2 {
  margin-bottom: 20px;
}
.plan .container .content .sec-02 {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 2.4;
  background: url(../img/common/line.png) no-repeat center bottom;
  background-size: contain;
}
.plan .container .content .sec-02 .sec-tit {
  width: 80%;
  margin: 0 auto 20px auto;
}
.plan .container .content .sec-02 img {
  width: 100%;
  height: auto;
}
.plan .container .content .sec-02 .box-outer {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.plan .container .content .sec-02 .box-outer .box-1 {
  margin: 0 auto 40px auto;
}
.plan .container .content .sec-02 .box-outer .box-2 {
  margin: 0 auto 40px auto;
}
.plan .container .content .sec-02 .box-outer .box-3 {
  margin: 0 auto 40px auto;
}
.plan .container .content .sec-03 {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 2.4;
  background: url(../img/common/line.png) no-repeat center bottom;
  background-size: contain;
}
.plan .container .content .sec-03 .sec-tit {
  width: 80%;
  margin: 0 auto 20px auto;
}
.plan .container .content .sec-03 img {
  width: 100%;
  height: auto;
}
.plan .container .content .sec-03 .box-outer {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.plan .container .content .sec-03 .box-outer .box-1 {
  margin: 0 auto;
}
.plan .container .content .sec-04 {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 2.4;
  background: url(../img/common/line.png) no-repeat center bottom;
  background-size: contain;
}
.plan .container .content .sec-04 .sec-tit {
  width: 80%;
  margin: 0 auto 20px auto;
}
.plan .container .content .sec-04 img {
  width: 100%;
  height: auto;
}
.plan .container .content .sec-04 .box-outer {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.plan .container .content .sec-04 .box-outer .box-1 {
  margin: 0 auto;
}

/**
 * acrive life
 */
.active .audio-off {
  background-image: url(../img/active/btn_audio_pause.gif);
}
.active .audio-on {
  background-image: url(../img/active/btn_audio_play.gif);
}
.active .area-bb {
  width: 100%;
  height: 200px;
}
.active .area-bb .area-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 50%;
}
.active .area-bb .area-copy img {
  width: 100%;
  height: auto;
}
.active .area-bb .area-keytxt {
  position: relative;
  top: 140px;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.active .area-bb .area-keytxt img {
  width: 100%;
  height: auto;
}
.active .container {
  position: relative;
}
.active .container .content {
  padding-top: 40px;
}
.active .container .content .page-tit {
  text-align: center;
  padding-bottom: 25px;
}
.active .container .content .page-tit img {
  width: 40%;
  height: auto;
}
.active .container .content .intro {
  width: 100%;
  margin: 0 auto 20px auto;
  padding-top: 60px;
  background: url(../img/common/bg_intro.png) no-repeat center top;
  background-size: contain;
  text-align: center;
}
.active .container .content .intro .intro-tit {
  margin-bottom: 30px;
}
.active .container .content .intro .intro-tit img {
  width: 80%;
  height: auto;
}
.active .container .content .intro .intro-txt {
  font-size: 14px;
  line-height: 2;
}
.active .container .content .sec-01 {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  line-height: 2.4;
}
.active .container .content .sec-01 .sec-tit {
  width: 80%;
  margin: 0 auto 20px auto;
}
.active .container .content .sec-01 img {
  width: 100%;
  height: auto;
}
.active .container .content .sec-01 .box-outer {
  width: 90%;
  margin: 0 auto;
}
.active .container .content .sec-01 .box-outer .box-1 {
  margin-bottom: 20px;
}
.active .container .content .sec-01 .box-outer .box-2 {
  margin-bottom: 20px;
}
.active .container .content .sec-02 {
  width: 100%;
  margin-bottom: 80px;
  text-align: center;
  line-height: 2.4;
}
.active .container .content .sec-02 .sec-tit {
  width: 80%;
  margin: 0 auto 40px auto;
  padding-bottom: 10px;
  background: url(../img/common/line.png) no-repeat center bottom;
}
.active .container .content .sec-02 img {
  width: 100%;
  height: auto;
}
.active .container .content .sec-02 .block-tit {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.active .container .content .sec-02 .box-outer {
  width: 90%;
  margin: 0 auto 20px auto;
  position: relative;
  background: url(../img/common/dot_x.png) repeat-x left bottom;
}
.active .container .content .sec-02 .box-outer .blue {
  color: #172987;
}
.active .container .content .sec-02 .box-outer .box-2 .note {
  margin-bottom: 0px;
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-02 .box-outer .box-4 .note {
  margin-bottom: 40px;
  padding: 40px 0;
  text-align: left;
}
.active .container .content .sec-02 .box-outer .box-5 .note {
  margin-bottom: 10px;
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-02 .box-outer .box-7 .note {
  margin-bottom: 10px;
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-03 {
  width: 100%;
  text-align: center;
  line-height: 2.4;
}
.active .container .content .sec-03 .sec-tit {
  width: 80%;
  margin: 0 auto 40px auto;
  padding-bottom: 10px;
  background: url(../img/common/line.png) no-repeat center bottom;
}
.active .container .content .sec-03 img {
  width: 100%;
  height: auto;
}
.active .container .content .sec-03 .block-tit {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.active .container .content .sec-03 .box-outer {
  position: relative;
  width: 90%;
  margin: 0 auto 40px auto;
  padding-bottom: 40px;
  background: url(../img/common/dot_x.png) repeat-x left bottom;
}
.active .container .content .sec-03 .box-outer .note {
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-03 .box-outer .box-2 .note {
  margin-bottom: 40px;
  padding: 40px 0;
  text-align: left;
}
.active .container .content .sec-03 .box-outer .box-4 .note {
  margin-bottom: 40px;
  padding: 40px 0;
  text-align: left;
}
.active .container .content .sec-03 .box-outer .box-5 .note {
  margin-bottom: 10px;
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-03 .box-outer .box-7 .note {
  margin-bottom: 10px;
  padding: 20px 0;
  text-align: left;
}
.active .container .content .sec-03 .box-outer .box-10 {
  margin-bottom: 40px;
}
.active .container .content .sec-03 .box-outer .box-12 {
  margin-bottom: 40px;
  text-align: center;
}

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

  @media

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

  /**
   * 下層ページ共通
   */
  .container .block-material {
    width: 100%;
    margin: 80px auto;
    text-align: center;
  }
  .container .block-material img {
    width: 80%;
    height: auto;
  }
  .container .block-localico {
    width: 100%;
    margin: 80px auto;
  }
  .container .block-localico .list {
    text-align: center;
  }
  .container .block-localico .list li {
    display: inline-block;
    max-width: 30%;
    margin: 0;
  }
  .container .block-localico .list li img {
    vertical-align: middle;
    width: 90%;
    height: auto;
  }
  .container .block-locallink {
    width: 100%;
    margin: 80px auto;
  }
  .container .block-locallink .list {
    text-align: center;
    overflow: hidden;
    *zoom: 1;
  }
  .container .block-locallink .list li {
    width: 33%;
    display: inline-block;
  }
  .container .block-locallink .list li img {
    width: 90%;
    height: auto;
  }
}
