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

 style.css

 ------------------------------------

 アイコンはアイコンフォント「Font Awesome」を使用。
 https://fontawesome.com/v4.7.0/

 ブレイクポイントは以下の通り。
 ・タブレット：1023px（1024px未満をタブレットと設定）
 ・スマホ：639px（640px未満をタブレットと設定）

-- */
@import url(https://fonts.googleapis.com/css?family=Titillium+Web:700i);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,400,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Sawarabi+Gothic);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * layout-baseSize.....基本のコンテンツサイズ
 * layout-posMiddle....天地中央配置
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル
 * module-title........タイトル共通のスタイル


-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-11px) rotate(0deg);
    transform: translateY(-11px) rotate(0deg); } }

@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-11px) rotate(0deg);
    transform: translateY(-11px) rotate(0deg); } }

@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(11px) rotate(0deg);
    transform: translateY(11px) rotate(0deg); } }

@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(11px) rotate(0deg);
    transform: translateY(11px) rotate(0deg); } }

@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-16px) rotate(0deg);
    transform: translateY(-16px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg); } }

@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-16px) rotate(0deg);
    transform: translateY(-16px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg); } }

@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(16px) rotate(0deg);
    transform: translateY(16px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg); } }

@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(16px) rotate(0deg);
    transform: translateY(16px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg); } }

@-webkit-keyframes line_v {
  0% {
    height: 0;
    opacity: 0; }
  50% {
    height: 60px;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

@keyframes line_v {
  0% {
    height: 0;
    opacity: 0; }
  50% {
    height: 60px;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

@-webkit-keyframes bg_anim01 {
  0% {
    opacity: .2; }
  50% {
    opacity: .4; }
  100% {
    opacity: .2; } }

@keyframes bg_anim01 {
  0% {
    opacity: .2; }
  50% {
    opacity: .4; }
  100% {
    opacity: .2; } }

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

	$normalize

	http://necolas.github.io/normalize.css/
	normalize ver 4.1.1 を元に改変

-----------------------------------*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

audio,
canvas,
progress,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

progress {
  vertical-align: baseline; }

template,
[hidden] {
  display: none; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none; }

a:active,
a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: inherit;
  font-weight: bolder; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

img {
  border-style: none;
  height: auto;
  border: 0;
  vertical-align: middle; }

svg:not(:root) {
  overflow: hidden; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

ul, ol, dl, dt, dd, figure {
  padding: 0;
  margin: 0; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

button,
input,
select,
textarea {
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: bold; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-input-placeholder {
  color: inherit;
  opacity: .54; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

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

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

	$base

-----------------------------------*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%; }

[id="wrapper"] {
  overflow: hidden; }

body {
  background: #000;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 2.0;
  letter-spacing: .1em;
  margin: 0;
  padding: 0; }

a {
  color: #fff;
  text-decoration: none; }
  a:hover {
    color: #ffee00; }
    a:hover img {
      opacity: .8; }

li {
  list-style: none;
  line-height: 1.4; }

p {
  margin: 0; }

table th,
table td {
  text-align: left; }

.al-center {
  text-align: center; }

.al-left {
  text-align: left; }

.al-right {
  text-align: right; }

.inner {
  width: 1120px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 767px) {
    .inner {
      width: 92%; } }

/*
    clearfix
--------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

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

	$module

-----------------------------------*/
/* layout */
/**/
.shop-box:after {
  content: "";
  display: table;
  clear: both; }

/* display */
.no-display {
  display: none; }

.pc {
  display: block; }
  @media screen and (max-width: 639px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 639px) {
    .sp {
      display: block; } }

/* Btn */
.btn-01 a {
  display: block;
  border: 1px solid #fff;
  text-align: center;
  width: 360px;
  padding: .6em;
  font-size: 2.0rem;
  font-family: "Noto Sans JP", sans-serif;
  position: relative; }
  @media screen and (max-width: 767px) {
    .btn-01 a {
      width: 80%; } }
  .btn-01 a::after {
    content: "";
    width: 3.0em;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: -1.5em;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; }
  .btn-01 a:hover {
    color: #ffee00; }
    .btn-01 a:hover::after {
      right: -2.5em; }

/* List */
.list-info {
  font-size: 1.4rem; }
  .list-info li {
    display: table;
    margin-top: 1em; }
    .list-info li:first-child {
      margin-top: 0; }
  .list-info span, .list-info p {
    display: table-cell; }
    @media screen and (max-width: 639px) {
      .list-info span, .list-info p {
        display: block; } }
  .list-info span {
    position: relative;
    padding-right: 50px; }
    .list-info span::after {
      content: "";
      width: 40px;
      height: 1px;
      display: block;
      position: absolute;
      right: 0;
      top: .6em;
      background: #000; }
      @media screen and (max-width: 639px) {
        .list-info span::after {
          display: none; } }
  .list-info p {
    padding-left: 1em; }
    @media screen and (max-width: 639px) {
      .list-info p {
        padding-left: 0; } }

/* image */
.image img {
  width: 100%;
  max-width: auto;
  height: auto; }

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

	$loader

-----------------------------------*/
.loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999; }
  .loader__inner {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center; }
  .loader__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
  .loader__animation {
    display: inline-block;
    text-align: center;
    margin: 0 0 0 .4em; }
    .loader__animation > span {
      display: inline-block;
      width: .6em;
      height: .6em;
      border-radius: 100%;
      margin: 0 .2em;
      display: inline-block;
      -webkit-animation: loading 1.4s infinite ease-in-out both;
      animation: loading 1.4s infinite ease-in-out both; }
      .loader__animation > span:first-child {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s; }
      .loader__animation > span:nth-child(2) {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s; }

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

	$header

-----------------------------------*/
#header {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  background-size: cover;
  background-attachment: scroll;
  position: relative; }

.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%; }

.header-logo {
  margin: 0;
  padding: 0;
  float: left;
  padding: 30px 0 0 2%; }
  .header-logo img {
    width: 200px;
    height: auto;
    vertical-align: top; }

.header-utility {
  float: right;
  padding: 30px 2% 0 0;
  display: table; }

.header-icon {
  display: table-cell;
  font-size: 0; }
  .header-icon li {
    display: inline-block;
    font-size: 1rem;
    margin-right: 40px; }
    .header-icon li img {
      vertical-align: top; }

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

	$header - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .header-logo img {
    width: 138px; }
  .header-icon li {
    margin-right: 20px; } }

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

	$nav

-----------------------------------*/
.nav-toggle {
  display: table-cell;
  width: 48px;
  cursor: pointer;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .nav-toggle div {
    position: relative; }
  .nav-toggle span {
    display: block;
    position: relative;
    height: 1px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity; }
  .nav-toggle .top {
    -webkit-animation: toggle-top 0.5s;
    animation: toggle-top 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
  .nav-toggle .middle {
    -webkit-transition: .5s opacity;
    -o-transition: .5s opacity;
    transition: .5s opacity;
    opacity: 1; }
  .nav-toggle .bottom {
    -webkit-animation: toggle-bottom 0.5s;
    animation: toggle-bottom 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.gnav {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 0;
  opacity: 0;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease; }
  .gnav-menu {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%; }
    .gnav-menu > li a {
      padding: .5em;
      display: block;
      text-align: center;
      font-size: 2.4rem; }
      .gnav-menu > li a:hover {
        color: #ffee00; }

.open .gnav {
  visibility: visible;
  opacity: 1;
  z-index: 9999; }

/*
   .open
--------------------------*/
.open .nav-toggle .middle {
  opacity: 0;
  -webkit-transition: .5s opacity;
  -o-transition: .5s opacity;
  transition: .5s opacity; }

.open .nav-toggle .top {
  -webkit-animation: toggle-top-close 0.5s;
  animation: toggle-top-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.open .nav-toggle .bottom {
  -webkit-animation: toggle-bottom-close 0.5s;
  animation: toggle-bottom-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

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

	$dropdown

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

	$footer

-----------------------------------*/
.map iframe {
  width: 100%;
  height: 500px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.footer-logo {
  margin-bottom: 60px; }
  .footer-logo img {
    width: 280px;
    height: auto; }

.footer-fb {
  margin-bottom: 60px; }

.footer .inner {
  text-align: center;
  padding: 100px 0; }

.footer .copyright {
  padding: 20px 0;
  background: #222; }
  .footer .copyright p {
    font-size: 1.5rem;
    text-align: center; }

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

	$top

-----------------------------------*/
.top-header {
  background: url("/images/top-mv-01.jpg") no-repeat center center; }

.top-message {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 150px;
  font-size: 4.8rem;
  letter-spacing: .2em;
  line-height: 2em; }

.top-concept {
  height: 100vh;
  min-height: 900px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }
  .top-concept_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background: url("/common/images/bg_neon.jpg") no-repeat bottom center;
    background-size: auto;
    -webkit-animation: bg_anim01 6s infinite;
    animation: bg_anim01 6s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .top-concept .inner {
    position: relative;
    z-index: 1;
    height: 100vh;
    padding-top: 200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .top-concept p {
    text-align: center;
    font-size: 2.4rem;
    line-height: 2; }
    .top-concept p::before, .top-concept p::after {
      display: block;
      content: '';
      width: 100%;
      height: 60px;
      border-left: 1px solid #fff;
      border-right: 1px solid #fff;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .top-concept p::before {
      border-top: 1px solid #fff;
      margin-bottom: 60px; }
    .top-concept p::after {
      border-bottom: 1px solid #fff;
      margin-top: 60px; }

.top-floor {
  display: table;
  width: 100%;
  min-height: 800px; }
  .top-floor_img {
    display: table-cell;
    width: 50%;
    background: url("/images/top-photo-01.jpg") no-repeat top left;
    background-size: cover; }
  .top-floor_txt {
    display: table-cell;
    width: 50%;
    padding: 0 5% 0 10%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)); }
    .top-floor_txt p {
      font-size: 2.0rem;
      line-height: 3.0;
      margin-bottom: 2em; }

.top-info {
  background: #fff;
  color: #000; }
  .top-info .inner {
    padding: 100px 10em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .top-info h2 {
    text-align: center;
    font-size: 3.0rem;
    margin-bottom: 1.5em;
    font-weight: 100; }

.scroll-line {
  position: absolute;
  bottom: 40px;
  margin: auto;
  width: 100%;
  text-align: center; }
  .scroll-line a {
    color: #fff; }
  .scroll-line .line-01 {
    height: 60px;
    margin-bottom: 30px;
    overflow: hidden; }
    .scroll-line .line-01::before {
      content: "";
      color: #fff;
      display: block;
      background: #fff;
      height: 60px;
      width: 1px;
      margin: auto;
      -webkit-animation: line_v 2.5s infinite;
      animation: line_v 2.5s infinite;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both; }

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

	$top - tablet

-----------------------------------*/
@media screen and (max-width: 1400px) {
  .top-floor_txt {
    padding: 0 5%; }
    .top-floor_txt p br {
      display: none; } }

@media screen and (max-width: 767px) {
  .top-message {
    padding-left: 4%;
    font-size: 3.0rem;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6); }
  .top-concept {
    min-height: 600px; }
    .top-concept .inner {
      padding: 10em 4%; }
    .top-concept p {
      font-size: 1.8rem;
      text-align: left; }
      .top-concept p br {
        display: none; }
  .top-floor {
    display: block;
    min-height: auto; }
    .top-floor_img {
      display: block;
      width: 100%;
      min-height: 400px; }
    .top-floor_txt {
      display: block;
      width: 100%;
      padding: 6em 8%;
      text-align: center; }
      .top-floor_txt p {
        font-size: 1.8rem;
        line-height: 1.8;
        text-align: left; }
      .top-floor_txt .btn-01 a {
        margin-left: auto;
        margin-right: auto; }
  .top-info .inner {
    padding: 10% 4%; } }

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

	$top - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .top-message {
    font-size: 3rem;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5); }
  .scroll-line {
    bottom: 120px; } }

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

	$top

-----------------------------------*/
.floor-header {
  background: url("/floor/images/floor-mv-01.jpg") no-repeat center center; }
  .floor-header#header {
    min-height: 60vh;
    max-height: 60vh; }

.floor-ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 10%;
  padding-right: 2%;
  font-size: 3.6rem;
  letter-spacing: .2em;
  line-height: 2em;
  font-weight: 100;
  background: rgba(0, 0, 0, 0.8); }
  .floor-ttl span {
    font-size: 1.8rem;
    margin-left: 1em;
    letter-spacing: 0; }

.floor-lead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8em 0; }
  .floor-lead p {
    text-align: center;
    font-size: 2.0rem;
    line-height: 2; }

.floor-box {
  padding: 100px 0; }
  .floor-box:nth-child(even) {
    background: #111; }

.floor-tt-01 {
  text-align: center;
  font-size: 5.0rem;
  letter-spacing: .2em;
  font-weight: normal;
  font-weight: 100;
  margin-bottom: 3em; }

.shop-box {
  margin-bottom: 10em; }
  .shop-box:last-child {
    margin-bottom: 0; }
  .shop-box .image {
    width: 60%;
    position: relative;
    z-index: 0; }
  .shop-box .text {
    width: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #000;
    float: right;
    margin-top: -30%;
    position: relative;
    z-index: 1;
    padding: 2.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4rem;
    line-height: 1.4;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  .shop-box a {
    color: #333; }
    .shop-box a:hover {
      text-decoration: underline; }

.shop-name {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: .5em; }
  .shop-name span {
    display: block;
    font-size: 1.4rem;
    color: #666;
    font-weight: normal; }

.shop-detail {
  margin-bottom: 1em; }

.shop-spec dt {
  margin-bottom: .3em;
  font-weight: bold;
  width: 8em;
  float: left; }
  .shop-spec dt::before {
    content: "["; }
  .shop-spec dt::after {
    content: "]"; }

.shop-spec dd {
  margin-bottom: 1em;
  overflow: hidden; }
  .shop-spec dd::after {
    content: "";
    clear: both;
    display: block; }

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

	$top

-----------------------------------*/
@media screen and (max-width: 767px) {
  .floor-ttl {
    padding-left: 2%;
    font-size: 3.0rem; }
    .floor-ttl span {
      font-size: 1.6rem; }
  .floor-lead p {
    font-size: 1.8rem; }
  .floor-tt-01 {
    font-size: 2.4rem; }
  .shop-box {
    margin-bottom: 2em; }
    .shop-box .image {
      width: 100%;
      position: static; }
    .shop-box .text {
      width: 100%;
      background: white;
      float: none;
      margin-top: 0;
      position: static;
      padding: 2em; } }

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

	$top

-----------------------------------*/
@media screen and (max-width: 639px) {
  .floor-lead p {
    text-align: left; }
    .floor-lead p br {
      display: none; } }

/*# sourceMappingURL=style.css.map */