@charset "UTF-8";
/* =============================================================================
   #Foundation
   ========================================================================== */
/**
 * 文字のサイズパターン
 */
/* =============================================================================
     スマートフォンファースト(min-width)
     ========================================================================== */
/* =============================================================================
     PCファースト(max-width)
     ========================================================================== */
/* =============================================================================
     範囲指定
     ========================================================================== */
/**
 * Foundationレイヤーでは`html`や`body`のような広範囲にわたるベーススタイル、
 * `h2`や`ul`のような基本的なタイプセレクタのデフォルトスタイルを定義します。
 * 装飾的なスタイルは避けて、できる限り低詳細度に保ちます。idセレクタやclassセレクタは使用しません。
 */
/* #Normalize.css
   -------------------------------------------------------------------------- */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* #Base
   -------------------------------------------------------------------------- */
/**
 * Baseレイヤーにはプロジェクトにおける、基本的なベーススタイルを定義します。
 * 要素セレクタや属性セレクタなど、詳細度はできるかぎり低く保っておきます。
 * 基本的にclass属性は使用しません。
 */
/**
 * `padding`と`border`を`width`に含めます。
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  box-sizing: border-box;
  word-break: normal;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 1.4em;
  line-height: 1.5;
  color: #000;
  font-family: "EB Garamond", serif;
  /* アンチエイリアスを指定する */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  /* メトリクスカーニングを指定する */
  font-kerning: normal;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: normal;
  line-height: 1.5;
  color: inherit;
}
h1.bg-blk,
h2.bg-blk,
h3.bg-blk,
h4.bg-blk,
h5.bg-blk,
h6.bg-blk {
  color: #fff;
  background-color: #333;
}

h1 {
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 481px) {
  h1 {
    font-size: 2.9rem;
  }
}
@media (min-width: 1367px) {
  h1 {
    font-size: 3.2rem;
  }
}
@media (min-width: 1601px) {
  h1 {
    font-size: 3.2rem;
  }
}

h2 {
  font-size: 1.9rem;
}
@media (min-width: 481px) {
  h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1601px) {
  h2 {
    font-size: 2.64rem;
  }
}

h3 {
  font-size: 1.7rem;
}
@media (min-width: 481px) {
  h3 {
    font-size: 2.0rem;
  }
}
@media (min-width: 1601px) {
  h3 {
    font-size: 2.42rem;
  }
}

h4,
h5,
h6 {
  font-size: 1.5rem;
}
@media (min-width: 481px) {
  h4,
  h5,
  h6 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1367px) {
  h4,
  h5,
  h6 {
    font-size: 1.72rem;
  }
}
@media (min-width: 1601px) {
  h4,
  h5,
  h6 {
    font-size: 1.86rem;
  }
}

ul,
ol {
  padding-left: 1em;
}

/**
 * ネストされたリストのマージンをリセットします。
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * `dt`と`dd`の左端を揃えます。
 */
dd {
  margin-left: 0;
}

table {
  width: 100%;
}

th {
  text-align: left;
}

a {
  outline: none;
}
a:link, a:visited, a:active {
  color: #000;
  text-decoration: none;
}

a.alpha {
  outline: none;
}
a.alpha:link, a.alpha:visited, a.alpha:active {
  color: #000;
  text-decoration: underline;
  transition: opacity .6s ease-out;
}
a.alpha:hover {
  opacity: 0.5;
}
a.alpha.hover {
  opacity: 0.5;
}

/**
 * 本文中リンク
 */
a.link-bright,
span.no-ul {
  color: #898989;
  text-decoration: underline;
}

a.link-bright:hover {
  opacity: 0.7;
  transition: opacity .6s ease-out;
}

span.no-ul {
  text-decoration: none;
}

a .link-bright-underline {
  color: #898989;
  text-decoration: underline;
}

/**
 * フルードイメージにします。
 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * IEでSVGがフルードイメージにならない不具合があります。
 * 属性値が`.svg`で終わる要素に適応します。
 */
[src$=".svg"],
[data$=".svg"] {
  width: 100%;
}

/**
 * 日本語では斜体を使用しないためリセットします。
 */
i,
cite,
em,
address,
dfn {
  font-style: normal;
}

code,
pre {
  font-family: Consolas, Menlo, Courier, monospace;
}

code {
  padding: 0.2em;
  background-color: rgba(0, 0, 0, 0.06);
}

pre code {
  padding: 0;
  background-color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
blockquote,
p,
address,
hr,
table,
fieldset,
figure,
pre {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Alignment 
 */
.is-center {
  text-align: center;
}

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

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

/**
 * Text-color
 */
.text-blk {
  color: #000 !important;
}

.text-gray {
  color: #898989 !important;
}

.text-white {
  color: #fff !important;
}

/* =============================================================================
   #Layout
   ========================================================================== */
/**
 * Layoutレイヤーはヘッダーやフッターのような、ページを構成するコンテナブロックのスタイルを定義します。
 * 目安としてはワイヤーフレームに書かれるような大きな単位のブロックです。
 * 汎用性のあるグリッドシステムは次のObject/Componentレイヤーで定義します。
 * グローバルナビゲーションやコピーライトのようなコンポーネントは、Object/Projectレイヤーで定義します。
 * 基本的にはclass属性を使用しますが、id属性を使用することもできます。
 * プレフィックス（接頭辞）として`l-`をつけます。
 */
/* #Header
  -------------------------------------------------------------------------- */
 /*doc
---
title: header
name: header
categories: [layout]
---

`<body>`タグ直下にある`<header>`タグのスタイルです。
ロゴやグローバルナビゲーションのレイアウトを含むことはできますが、
コンポーネント自体はobject/projectレイヤーで定義します。

```block
<body>
  <header class="l-header">
    <div class="l-header__logo">
      <h1 class="p-logo">logo</h1>
    </div>
    <nav class="l-header__global-nav">
      <ul class="p-global-nav">
        <li></li>
        <li></li>
      <ul>
    </nav>
  </header>
</body>
```
*/
.l-header {
  position: fixed;
  z-index: 2100;
  width: 100%;
  background-color: #FFF;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 481px) {
  .l-header {
    /*-----------------mq-------------------*/
    top: 0;
    left: 0;
    right: 0;
  }
}

.l-header__logo {
  float: left;
  padding: 0.7rem 1.5rem;
  z-index: 100;
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .l-header__logo {
    /*-----------------mq-------------------*/
    padding: 1.5rem 3rem;
  }
}

.l-header__logo > h3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50%;
  height: 2rem;
  text-align: center;
  width: 100%;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "EB Garamond", serif;
  height: 5.1rem;
  line-height: 5.1rem;
  z-index: -1;
}

.l-header__menu-button {
  position: absolute;
  right: 1.5rem;
  top: 0.7rem;
  width: 2.6rem;
  height: 2.6rem;
  z-index: 100;
}

#overlay {
  background: #0080c0;
  width: 100%;
  display: block;
  opacity: 0;
  z-index: 1300;
  display: none;
  top: 0;
  position: fixed;
  height: 100vh;
}

 /* #Footer
	 -------------------------------------------------------------------------- */
/*doc
---
title: footer
name: footer
categories: [layout]
---

`<body>`タグ直下にある`<footer>`タグのスタイルです。
コピーライトやナビゲーションのレイアウトを含むことはできますが、
コンポーネント自体はobject/projectレイヤーで定義します。

```block
<body>
	<footer class="l-footer">
		<div class="l-footer__copyright">
			<small class="p-copyright"></small>
		</div>
		<nav class="l-footer__sub-nav">
			<ul class="p-foot-nav">
				<li></li>
				<li></li>
			<ul>
		</nav>
	</footer>
</body>
```
*/
.l-footer {
  margin: 0 auto;
  padding: 3rem 0;
}
@media (min-width: 769px) {
  .l-footer {
    padding: 6rem 0 8rem;
  }
}
.l-footer .copyright {
  color: #898989;
  letter-spacing: 0.1rem;
  padding-top: 6rem;
}
.l-footer .map-wrapper {
  text-align: center;
}
@media (min-width: 769px) {
  .l-footer .map-wrapper {
    text-align: right;
  }
}
.l-footer .map {
  margin-top: -10px;
  max-width: 80%;
}
@media (min-width: 769px) {
  .l-footer .map {
    max-width: 100%;
  }
}
.l-footer p a {
  transition: opacity .6s ease-out;
}
@media (min-width: 769px) {
  .l-footer p a:hover {
    opacity: 0.6;
  }
}

/* #Main
  -------------------------------------------------------------------------- */
/*doc
---
title: main
name: main
categories: [layout]
---

`<main>`タグのスタイルです。ドキュメントのメインコンテンツを示し、ドキュメント内で1つしか記述できません。
<article>タグや<nav>タグなどの中に入れることはできません。

取り扱いの難しいタグなので、使わないという選択をするのもいいでしょう。

```block
<body>
  <main id="l-main">
  </main>
</body>
```
*/
#l-main {
  padding-top: 5.0rem;
}
@media (min-width: 481px) {
  #l-main {
    /*-----------------mq-------------------*/
  }
}
@media (min-width: 769px) {
  #l-main {
    /*-----------------mq-------------------*/
    padding-top: 8.4rem;
  }
}

/* #Sidebar
  -------------------------------------------------------------------------- */
/*doc
---
title: sidebar
name: sidebar
categories: [layout]
---

`<aside>`タグが使われるようなサイドバーのスタイルです。
ナビゲーションやバナーなどのレイアウトを含むことはできますが、
コンポーネント自体はobject/projectレイヤーで定義します。

```block
<body>
  <article class="l-content"></article>
  <aside class="l-sidebar">
    <div class="l-sidebar__item">
       <ul class="p-side-nav"></ul>
    </div>
    <div class="l-sidebar__item">
       <div class="p-banner"></div>
    </div>
  </aside>
</body>
```
*/
/* #Section
  -------------------------------------------------------------------------- */
/*doc
---
title: section
name: section
categories: [layout]
---

`<section>`タグを使うようなセクションの余白（`margin`）を管理します。
コンポーネント単位での余白はobject/utility/_margin.scssで管理をします。

サイズはデフォルトで3つ、最大で5つとします。

1. tiny(optional)
2. small
3. medium(default)
4. large
5. huge(optional)

Modifierなしをmedium、変更する場合にはModifierを指定します。

```block
<div class="l-section">
  <h2>見出し2</h2>
</div>

<div class="l-section l-section--small">
  <h2>見出し2</h2>
</div>

<div class="l-section l-section--large">
  <h2>見出し2</h2>
</div>
```
*/
/* =============================================================================
   #Object
   ========================================================================== */
/**
 * Objectレイヤーはプロジェクトにおけるビジュアルパターンです。抽象度や詳細度、
 * 拡張性などによって、4つのレイヤーにわけられます。
 * それぞれのレイヤーにはプレフィックス（接頭辞）をつけます。
 * 1. Component（`c-`）
 * 2. Project（`p-`）
 * 3. Scope(`s-`)
 * 4. Utility（`u-`）
 *
 * ランディングページのようにページ特有のスタイルを多く含む場合は、
 * ページ専用のCSSファイルを作成することもできます。
 * ページ専用のスタイルは、そのページにだけ読み込ませることでスコープをつくり、
 * プレフィックス（接頭辞）をつけないことで名前の重複を防ぎます。
 */
/* -----------------------------------------------------------------------------
   #Component
   -------------------------------------------------------------------------- */
/**
 * Componentレイヤーは多くのプロジェクトで横断的に再利用のできるような、小さな単位のモジュール（機能）です。
 * OOCSSの構造（structure）の機能を担うため、装飾的なスタイルをできるだけ含めないようにします。
 * また、`width`や`margin`といったレイアウトに影響を与えるプロパティもできるだけ含めないようにします。
 * 例えばgridやmediaといったレイアウトパターンが該当します。
 * プレフィックス（接頭辞）として`c-`をつけます。
 */
/* #Ratio
  -------------------------------------------------------------------------- */
 /*doc
 ---
 title: grid
 name: grid
 categories: [component]
 ---
flexboxを聞喘したグリッドシステム。
(余計な文字コードが入って文字化けしていたので削除)にc-layoutを峺協する
 */
.c-padding-common {
  padding: 0 22px;
}
@media (min-width: 769px) {
  .c-padding-common {
    padding: 0 54px;
  }
}

.c-padding-common-right {
  padding: 0 22px 0 0;
}
@media (min-width: 769px) {
  .c-padding-common-right {
    padding: 0 54px 0 0;
  }
}

.c-padding-spbottom {
  padding-bottom: 22px;
}
@media (min-width: 769px) {
  .c-padding-spbottom {
    padding-bottom: 0;
  }
}

.c-layout {
  -js-display: flex;
  /*--- IE8&9 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  flex-wrap: wrap;
}

.c-layout-sm-1,
.c-layout-sm-2,
.c-layout-sm-3,
.c-layout-sm-4,
.c-layout-sm-5,
.c-layout-sm-6,
.c-layout-sm-7,
.c-layout-sm-8,
.c-layout-sm-9,
.c-layout-sm-10,
.c-layout-sm-11,
.c-layout-sm-12 {
  width: 100%;
}

.c-layout-md-1,
.c-layout-md-2,
.c-layout-md-3,
.c-layout-md-4,
.c-layout-md-5,
.c-layout-md-6,
.c-layout-md-7,
.c-layout-md-8,
.c-layout-md-9,
.c-layout-md-10,
.c-layout-md-11,
.c-layout-md-12 {
  width: 100%;
}

.c-layout-lg-1,
.c-layout-lg-2,
.c-layout-lg-3,
.c-layout-lg-4,
.c-layout-lg-5,
.c-layout-lg-6,
.c-layout-lg-7,
.c-layout-lg-8,
.c-layout-lg-9,
.c-layout-lg-10,
.c-layout-lg-11,
.c-layout-lg-12 {
  width: 100%;
}

.c-layout-xs-12 {
  width: 100%;
}

.c-layout-xs-11 {
  width: 91.66666667%;
}

.c-layout-xs-10 {
  width: 83.33333333%;
}

.c-layout-xs-9 {
  width: 75%;
}

.c-layout-xs-8 {
  width: 66.66666667%;
}

.c-layout-xs-7 {
  width: 58.33333333%;
}

.c-layout-xs-6 {
  width: 50%;
}

.c-layout-xs-5 {
  width: 41.66666667%;
}

.c-layout-xs-4 {
  width: 33.33333333%;
}

.c-layout-xs-3 {
  width: 25%;
}

.c-layout-xs-2 {
  width: 16.66666667%;
}

.c-layout-xs-1 {
  width: 8.33333333%;
}

@media (min-width: 481px) {
  .c-layout-sm-12 {
    width: 100%;
  }

  .c-layout-sm-11 {
    width: 91.66666667%;
  }

  .c-layout-sm-10 {
    width: 83.33333333%;
  }

  .c-layout-sm-9 {
    width: 75%;
  }

  .c-layout-sm-8 {
    width: 66.66666667%;
  }

  .c-layout-sm-7 {
    width: 58.33333333%;
  }

  .c-layout-sm-6 {
    width: 50%;
  }

  .c-layout-sm-5 {
    width: 41.66666667%;
  }

  .c-layout-sm-4 {
    width: 33.33333333%;
  }

  .c-layout-sm-3 {
    width: 25%;
  }

  .c-layout-sm-2 {
    width: 16.66666667%;
  }

  .c-layout-sm-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 769px) {
  .c-layout-md-12 {
    width: 100%;
  }

  .c-layout-md-11 {
    width: 91.66666667%;
  }

  .c-layout-md-10 {
    width: 83.33333333%;
  }

  .c-layout-md-9 {
    width: 75%;
  }

  .c-layout-md-8 {
    width: 66.66666667%;
  }

  .c-layout-md-7 {
    width: 58.33333333%;
  }

  .c-layout-md-6 {
    width: 50%;
  }

  .c-layout-md-5 {
    width: 41.66666667%;
  }

  .c-layout-md-4 {
    width: 33.33333333%;
  }

  .c-layout-md-3 {
    width: 25%;
  }

  .c-layout-md-2 {
    width: 16.66666667%;
  }

  .c-layout-md-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 1367px) {
  .c-layout-lg-12 {
    width: 100%;
  }

  .c-layout-lg-11 {
    width: 91.66666667%;
  }

  .c-layout-lg-10 {
    width: 83.33333333%;
  }

  .c-layout-lg-9 {
    width: 75%;
  }

  .c-layout-lg-8 {
    width: 66.66666667%;
  }

  .c-layout-lg-7 {
    width: 58.33333333%;
  }

  .c-layout-lg-6 {
    width: 50%;
  }

  .c-layout-lg-5 {
    width: 41.66666667%;
  }

  .c-layout-lg-4 {
    width: 33.33333333%;
  }

  .c-layout-lg-3 {
    width: 25%;
  }

  .c-layout-lg-2 {
    width: 16.66666667%;
  }

  .c-layout-lg-1 {
    width: 8.33333333%;
  }
}
/* #Layout
  -------------------------------------------------------------------------- */
/*doc
---
title: layout
name: layout
categories: [component]
---

汎用的なレイアウトオブジェクトです。`width`の変更はUtilityレイヤーで指定します。

Modifierは以下のとおりです。

* ガターの追加 `--small`, `--medium`, `--large`
* text-alignの変更 `--middle`, `--bottom`
* 配置を反転 `--reverse`
* `.c-layout__item`のカラム幅をまとめて指定 `--colx`, `--colxandx`

*/
/* -----------------------------------------------------------------------------
   c-panel
   c-panel__subに画像、c-panel__mainにテキスト等。
   c-panel__subの上に、c-panel__mainがレイヤー状に重なって表示される。
   表示エリアの大きさは、c-panel__subの画像のサイズに依存する
   -------------------------------------------------------------------------- */
.c-panel {
  position: relative;
}

.c-panel__main {
  height: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
}

.c-panel__head {
  position: absolute;
  top: 0;
  left: 0;
}

.c-menu-button-blk,
.c-menu-button-white {
  cursor: pointer;
}
.c-menu-button-blk i,
.c-menu-button-white i {
  display: block;
  width: 24px;
  height: .5px;
  background: #fff;
  transition: background 0.5s;
  position: relative;
  left: 0;
  top: 9px;
}
@media (min-width: 769px) {
  .c-menu-button-blk i,
  .c-menu-button-white i {
    height: 1px;
  }
}
.c-menu-button-blk i:before, .c-menu-button-blk i:after,
.c-menu-button-white i:before,
.c-menu-button-white i:after {
  content: "";
  display: block;
  width: 24px;
  height: .5px;
  background: #fff;
  position: absolute;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: all 0.3s !important;
}
@media (min-width: 769px) {
  .c-menu-button-blk i:before, .c-menu-button-blk i:after,
  .c-menu-button-white i:before,
  .c-menu-button-white i:after {
    height: 1px;
  }
}
.c-menu-button-blk i:before,
.c-menu-button-white i:before {
  transform: translateY(11px);
  -webkit-transform: translateY(11px);
  -ms-transform: translateY(11px);
}
.c-menu-button-blk i:after,
.c-menu-button-white i:after {
  transform: translateY(-11px);
  -webkit-transform: translateY(-11px);
  -ms-transform: translateY(-11px);
}

.c-menu-button-blk i {
  background: #000;
}
.c-menu-button-blk i:before, .c-menu-button-blk i:after {
  background: #000;
}

.c-menu-button-blk.is-active .c-menu-button-white.is-active i {
  background: transparent;
}
.c-menu-button-blk.is-active .c-menu-button-white.is-active i:after {
  transform: translateY(0px) rotate(-45deg);
  -webkit-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
}
.c-menu-button-blk.is-active .c-menu-button-white.is-active i:before {
  transform: translateY(0px) rotate(45deg);
  -webkit-transform: translateY(0px) rotate(45deg);
  -ms-transform: translateY(0px) rotate(45deg);
}

.c-menu-button-blk-sp,
.c-menu-button-white-sp {
  cursor: pointer;
}
.c-menu-button-blk-sp i,
.c-menu-button-white-sp i {
  display: block;
  width: 16px;
  height: .5px;
  background: #fff;
  transition: background 0.5s;
  position: relative;
  left: 0;
  top: 9px;
}
@media (min-width: 769px) {
  .c-menu-button-blk-sp i,
  .c-menu-button-white-sp i {
    height: 1px;
  }
}
.c-menu-button-blk-sp i:before, .c-menu-button-blk-sp i:after,
.c-menu-button-white-sp i:before,
.c-menu-button-white-sp i:after {
  content: "";
  display: block;
  width: 16px;
  height: .5px;
  background: #fff;
  position: absolute;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: all 0.3s !important;
}
@media (min-width: 769px) {
  .c-menu-button-blk-sp i:before, .c-menu-button-blk-sp i:after,
  .c-menu-button-white-sp i:before,
  .c-menu-button-white-sp i:after {
    height: 1px;
  }
}
.c-menu-button-blk-sp i:before,
.c-menu-button-white-sp i:before {
  transform: translateY(7px);
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
}
.c-menu-button-blk-sp i:after,
.c-menu-button-white-sp i:after {
  transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
}

.c-menu-button-blk-sp i {
  background: #000;
  width: 16px;
}
.c-menu-button-blk-sp i:before, .c-menu-button-blk-sp i:after {
  width: 16px;
  background: #000;
}

body.nav-open .c-menu-button-blk i,
body.nav-open .c-menu-button-blk-sp i,
body.nav-open .c-menu-button-white i,
body.nav-open .c-menu-button-white-sp i {
  background: transparent;
}
body.nav-open .c-menu-button-blk i:after,
body.nav-open .c-menu-button-blk-sp i:after,
body.nav-open .c-menu-button-white i:after,
body.nav-open .c-menu-button-white-sp i:after {
  background: #000;
  transform: translateX(0.1rem) translateY(0) rotate(-45deg);
}
body.nav-open .c-menu-button-blk i:before,
body.nav-open .c-menu-button-blk-sp i:before,
body.nav-open .c-menu-button-white i:before,
body.nav-open .c-menu-button-white-sp i:before {
  background: #000;
  transform: translateX(0.1rem) translateY(0) rotate(45deg);
}

/* #List-unstyled
  -------------------------------------------------------------------------- */
/*doc
---
title: list-unstyled
name: list-unstyled
categories: [component]
---

`<ul>`と`<ol>`のデフォルトスタイルをリセットします。

```block
<ul class="c-list-unstyled">
  <li>リスト1
  <ul class="c-list-unstyled__items">
    <li>リスト1.1
    <ul class="c-list-unstyled__items">
      <li>リスト1.1.1</li>
      <li>リスト1.1.2</li>
    </ul>
    </li>
    <li>リスト1.2</li>
  </ul>
  </li>
  <li>リスト2</li>
  <li>リスト3</li>
</ul>
```
*/
/* ul, ol */
.c-list-unstyled {
  padding-left: 0;
  list-style-type: none;
}

.c-list-unstyled--separator-line > li + li {
  border-left: 1px solid #000;
  line-height: 1;
}

/* li を横並びにする */
.c-list-unstyled--parallel {
  padding: 0;
}

.c-list-unstyled--parallel > li {
  display: inline-block;
}

/* li > ul, li > ol */
.c-list-unstyled__items {
  margin-left: 1em;
  text-indent: -1em;
  list-style-position: inside;
}

.c-list-disc {
  list-style-type: disc;
  margin: 0 0 0 1em;
  padding: 0;
  text-align: left;
}
.c-list-disc li {
  margin: 0;
}

/* #List-ordered
  -------------------------------------------------------------------------- */
/*doc
---
title: list-ordered
name: list-ordered
categories: [component]
---

番号付きリストを入れ子レベルに応じて、1, 1.1のように区切り文字を付け加えます。

```block
<ol class="c-list-ordered">
  <li class="c-list-ordered__item">リスト1
  <ol class="c-list-ordered__items">
    <li class="c-list-ordered__item">リスト1.1
    <ol class="c-list-ordered__items">
      <li class="c-list-ordered__item">リスト1.1.1</li>
      <li class="c-list-ordered__item">リスト1.1.2</li>
    </ol>
    </li class="c-list-ordered__item">
    <li class="c-list-ordered__item">リスト1.2</li>
  </ol>
  </li class="c-list-ordered__item">
  <li class="c-list-ordered__item">リスト2</li>
</ol>
```
*/
ol {
  margin: 2rem 1rem;
}
@media (min-width: 481px) {
  ol {
    margin: 2rem;
  }
}

/* ul */
.c-list-ordered {
  display: table;
  padding-left: 0;
  list-style-type: none;
}

/* ul > li */
.c-list-ordered__item {
  display: table-row;
  counter-increment: ordered;
}

.c-list-ordered__item:before {
  content: counters(ordered,".") " ";
  display: table-cell;
  padding-right: 0.5em;
  text-align: right;
}

/* li > ul */
.c-list-ordered__items {
  counter-reset: ordered;
  padding-left: 0;
  list-style-type: none;
}

/* #Table
  -------------------------------------------------------------------------- */
/*doc
---
title: table
name: table
categories: [component]
---

tableのレイアウトアルゴリズム（`table-layout`）の変更、
`<th>`と`<td>`のpaddingなどを変更します。

Modifierは以下のとおりです。

* セルの余白を変更 `--small`, `--large`

```block
<div class="c-wrapper">
  <table class="c-table c-table--fixed">
    <tr>
      <th class="u-percent50">th1</th>
      <th>th2</th>
      <th>th3</th>
    </tr>
    <tr>
      <td>td1</td>
      <td>td2</td>
      <td>td3</td>
    </tr>
  </table>
</div>
```
*/
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  padding: 1em;
}

/**
 * セルを均等にします。`width`を1つだけ指定した場合は、残りのセルが均等になります。
 */
.c-table--fixed {
  table-layout: fixed;
}

.c-table--small th,
.c-table--small td {
  padding: 0.5em;
}

.c-table--large th,
.c-table--large td {
  padding: 1.5em;
}

table.border {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background: #fff;
}
table.border th {
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #eee;
}
table.border td {
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

table.no-border {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border: none;
}
table.no-border th {
  padding: 10px 10px 10px 0;
  vertical-align: top;
  border: none;
  font-weight: normal;
}
table.no-border td {
  padding: 10px;
  vertical-align: top;
  border: none;
}

table.no-border-gray {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border: none;
}
table.no-border-gray th {
  color: #898989;
  padding: 10px 10px 20px 0;
  vertical-align: top;
  border: none;
  font-weight: normal;
  width: 20%;
}
table.no-border-gray td {
  padding: 10px 10px 20px 0;
  vertical-align: top;
  border: none;
  width: 80%;
}

/* -----------------------------------------------------------------------------
   c-definition
   横2列dt&ddリスト。
   スマホ用では横1列にする
   -------------------------------------------------------------------------- */
.c-definition {
  width: 100%;
}

.c-definition > dt {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 481px) {
  .c-definition > dt {
    /*-----------------mq-------------------*/
    width: 20%;
    float: left;
    clear: left;
    margin-bottom: 2rem;
  }
}

.c-definition > dd {
  width: 100%;
  margin-bottom: 2rem;
}
.c-definition > dd:last-child {
  margin-bottom: 0;
}
@media (min-width: 481px) {
  .c-definition > dd {
    /*-----------------mq-------------------*/
    width: 80%;
    float: left;
    margin-bottom: 2rem;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* -----------------------------------------------------------------------------
   #Project
   -------------------------------------------------------------------------- */
/**
 * Projectレイヤーはプロジェクト固有のパターンで、複数のページで使い回せるようなコンポーネントです。
 * 具体的なスタイルを持つUI（ユーザーフェイス）で、追加されるコンポーネントのほとんどはこのレイヤーに置かれます。
 * もし、このレイヤーで同じパターンが3箇所で使われていたら、別のコンポーネントとしてまとめられないか検討しましょう。
 * プレフィックス（接頭辞）として`p-`をつけます。
 */
.drawer-menu-wrapper {
  z-index: 900;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  left: -100vw;
  top: 0;
  transition: all 0.24s ease-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 769px) {
  .drawer-menu-wrapper {
    transition: all 0.4s ease-out;
  }
}
.drawer-menu-wrapper .p-block__main-body {
  width: 100%;
}
.drawer-menu-wrapper .menu-main ul.menu-common {
  list-style: none;
  padding: 0;
  display: inline-block;
}
.drawer-menu-wrapper .menu-main ul.menu-common li {
  color: #898989;
  margin-bottom: 1.4rem;
  list-style: none;
}
.drawer-menu-wrapper .menu-main ul.menu-common li .num {
  vertical-align: super;
}
.drawer-menu-wrapper .menu-main ul.menu-common li .text {
  font-size: 1.8rem;
  padding-left: 3.2rem;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}
@media (min-width: 481px) {
  .drawer-menu-wrapper .menu-main ul.menu-common li .text {
    font-size: 2.2rem;
  }
}
.drawer-menu-wrapper .menu-main ul.menu-common li a {
  color: #000;
  display: block;
}
@media (min-width: 481px) {
  .drawer-menu-wrapper .menu-main ul.menu-common li a:hover {
    opacity: .6;
  }
}
.drawer-menu-wrapper .menu-sub {
  position: absolute;
  bottom: 80px;
  left: 0;
  letter-spacing: 0.2rem;
}
@media (min-width: 769px) {
  .drawer-menu-wrapper .menu-sub {
    bottom: 40px;
  }
}

body.window-resizing .drawer-menu-wrapper {
  transition: none;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open .drawer-menu-wrapper {
  left: 0;
}

html.nav-open {
  overflow: hidden;
}

.btn-back {
  display: none;
}

body.use-btn-back .btn-back {
  display: block;
}
body.use-btn-back .btn-menu {
  display: none !important;
}

#nav-first {
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
}
#nav-first .nav-first-pc {
  display: none;
  user-select: none;
}
@media (min-width: 981px) {
  #nav-first .nav-first-pc {
    display: block;
  }
}
#nav-first .nav-first-pc-content {
  height: 86px;
  margin-bottom: -86px;
}
#nav-first .nav-first-pc-content > div {
  float: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 86px;
  margin: 0;
  letter-spacing: 0.3rem;
}
#nav-first .nav-first-pc-content > div a img {
  opacity: 1.0;
  transition: all .5s ease-out;
}
#nav-first .nav-first-pc-content > div a img:hover {
  color: #fff;
  opacity: 0.6;
}
#nav-first .nav-first-pc-content .btn-menu {
  width: 158px;
  cursor: pointer;
  transition: all .5s ease-out;
}
#nav-first .nav-first-pc-content .btn-menu:hover {
  opacity: 0.6;
}
#nav-first .nav-first-pc-content .btn-menu .icon {
  float: left;
}
#nav-first .nav-first-pc-content .btn-menu .text {
  float: left;
  padding-left: 20px;
}
#nav-first .nav-first-pc-content .btn-back {
  width: 158px;
  justify-content: center;
}
#nav-first .nav-first-pc-content .btn-back a {
  transition: all .5s ease-out;
  color: #fff;
  display: block;
  text-align: center;
}
#nav-first .nav-first-pc-content .btn-back:hover a {
  opacity: 0.6;
}
#nav-first .nav-first-pc-content .btn-book {
  width: 172px;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  border: solid 1px transparent;
  border-top: none;
  transition: all .5s ease-out;
}
#nav-first .nav-first-pc-content .btn-book a {
  color: #fff;
  display: block;
  line-height: 86px;
  text-align: center;
}
#nav-first .nav-first-pc-content .btn-book img {
  width: 25px;
  margin-bottom: 2px;
}
#nav-first .nav-first-pc-content .btn-book:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#nav-first .nav-first-pc-content .logo {
  width: 41%;
}
#nav-first .nav-first-pc-content .logo img {
  width: 128px;
  margin-top: -6px;
}
#nav-first .nav-first-pc-content .lang {
  width: 19%;
}
#nav-first .nav-first-pc-content .lang .nolink {
  color: #fff;
  opacity: 1.0;
}
#nav-first .nav-first-pc-content .lang a {
  color: #fff;
  opacity: .3;
  transition: all .5s ease-out;
}
#nav-first .nav-first-pc-content .lang a:hover {
  color: #fff;
  opacity: 0.6;
}
#nav-first .nav-first-pc-content .sns {
  width: 20%;
}
#nav-first .nav-first-pc-content .sns .icon-facebook {
  float: left;
  margin-right: 10px;
}
#nav-first .nav-first-pc-content .sns .icon-facebook img {
  width: 20px;
  height: 20px;
}
#nav-first .nav-first-pc-content .sns .icon-instagram {
  float: left;
}
#nav-first .nav-first-pc-content .sns .icon-instagram img {
  width: 20px;
  height: 20px;
}
#nav-first .nav-first-pc-content .logo-designhotels {
  width: 20%;
  text-align: right;
}
#nav-first .nav-first-pc-content .logo-designhotels img {
  width: 77px;
}
#nav-first .nav-first-sp {
  display: block;
}
@media (min-width: 981px) {
  #nav-first .nav-first-sp {
    display: none;
  }
}
#nav-first .nav-first-sp-content {
  height: 65px;
  margin-bottom: -65px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner {
  height: 65px;
  margin: 0;
  letter-spacing: 0.24rem;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-menu,
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book,
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-back,
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns {
  float: left;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .logo-designhotels {
  float: right;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-menu {
  width: 54px;
  text-align: center;
  margin: 22px 0 0 10px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-menu .icon {
  height: 24px;
  width: 17px;
  margin: 0 auto;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-menu .text {
  letter-spacing: 0.14rem;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-back {
  width: 54px;
  height: 65px;
  transition: all .5s ease-out;
  text-align: center;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-back a {
  padding: 23px 0 3px 10px;
  color: #fff;
  display: block;
  text-align: center;
  letter-spacing: 0.14rem;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-back i {
  padding: 0;
  margin-bottom: 2px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-back:hover a {
  opacity: 0.6;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book {
  width: 70px;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.3);
  border: solid 1px transparent;
  transition: all .5s ease-out;
  border: none;
  letter-spacing: 0.14rem;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book a {
  color: #fff;
  display: block;
  text-align: center;
  padding-bottom: 3px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book img {
  width: 22px;
  margin: 20px auto 4px auto;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns {
  width: auto;
  margin: 25px 0 0 22px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .lang {
  margin-bottom: -2px;
  letter-spacing: 0.2rem;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .lang .nolink {
  color: #fff;
  opacity: 1.0;
  transition: all .5s ease-out;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .lang a {
  color: #fff;
  opacity: .3;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .sns .icon-facebook {
  float: left;
  margin-left: -1px;
  margin-right: 8px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .sns .icon-facebook img {
  width: 16px;
  height: 16px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .sns .icon-instagram {
  float: left;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .sns .icon-instagram img {
  width: 16px;
  height: 16px;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .logo-designhotels {
  width: 58px;
  text-align: right;
  margin: 24px 22px 0 0;
}
#nav-first .nav-first-sp-content .nav-first-sp-content-inner .logo-designhotels img {
  width: 58px;
}

body.nav-open #nav-first {
  color: #000;
}
body.nav-open #nav-first .nav-first-pc-content .btn-book {
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-top: none;
}
body.nav-open #nav-first .nav-first-pc-content .btn-book a {
  color: #000;
}
body.nav-open #nav-first .nav-first-pc-content .lang .nolink {
  color: #000;
}
body.nav-open #nav-first .nav-first-pc-content .lang a {
  color: #000;
}
body.nav-open #nav-first .nav-first-pc-content .lang a:hover {
  color: #000;
}
body.nav-open #nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book {
  border-top: none;
}
body.nav-open #nav-first .nav-first-sp-content .nav-first-sp-content-inner .btn-book a {
  color: #000;
}
body.nav-open #nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .lang .nolink {
  color: #000;
}
body.nav-open #nav-first .nav-first-sp-content .nav-first-sp-content-inner .langsns .lang a {
  color: #000;
}

@media (min-width: 981px) {
  .centered-logo {
    margin-left: -118px;
  }
}

@media (min-width: 981px) {
  .centered-logo-m {
    margin-left: -118px;
  }
}

#nav-fixed {
  position: fixed;
  top: 0;
  z-index: 1100;
  height: auto;
  width: 100%;
}
#nav-fixed .nav-fixed-pc {
  display: none;
  user-select: none;
  background-color: #fff;
}
@media (min-width: 981px) {
  #nav-fixed .nav-fixed-pc {
    display: block;
  }
}
#nav-fixed .nav-fixed-pc-content {
  height: 86px;
  margin-bottom: -86px;
}
#nav-fixed .nav-fixed-pc-content > div {
  float: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 86px;
  margin: 0;
  letter-spacing: 0.3rem;
}
#nav-fixed .nav-fixed-pc-content > div a img {
  opacity: 1.0;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-pc-content > div a img:hover {
  color: #000;
  opacity: 0.6;
}
#nav-fixed .nav-fixed-pc-content .btn-menu {
  width: 158px;
  cursor: pointer;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-pc-content .btn-menu:hover {
  opacity: 0.6;
}
#nav-fixed .nav-fixed-pc-content .btn-menu .icon {
  float: left;
}
#nav-fixed .nav-fixed-pc-content .btn-menu .text {
  float: left;
  padding-left: 20px;
}
#nav-fixed .nav-fixed-pc-content .btn-back {
  width: 158px;
  cursor: pointer;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-pc-content .btn-back:hover {
  opacity: 0.6;
}
#nav-fixed .nav-fixed-pc-content .btn-back .icon {
  float: left;
}
#nav-fixed .nav-fixed-pc-content .btn-book {
  width: 172px;
  justify-content: center;
  border: solid 1px transparent;
  border-top: none;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-pc-content .btn-book a {
  color: #000;
  display: block;
  line-height: 86px;
  text-align: center;
}
#nav-fixed .nav-fixed-pc-content .btn-book img {
  width: 25px;
  margin-right: -6px;
}
#nav-fixed .nav-fixed-pc-content .btn-book:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#nav-fixed .nav-fixed-pc-content .logo {
  width: 41%;
}
#nav-fixed .nav-fixed-pc-content .logo img {
  width: 128px;
  margin-top: -6px;
}
#nav-fixed .nav-fixed-pc-content .lang {
  width: 19%;
}
#nav-fixed .nav-fixed-pc-content .lang .nolink {
  color: #000;
  opacity: 1.0;
}
#nav-fixed .nav-fixed-pc-content .lang a {
  color: #000;
  opacity: .3;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-pc-content .lang a:hover {
  color: #000;
  opacity: 0.6;
}
#nav-fixed .nav-fixed-pc-content .sns {
  width: 20%;
}
#nav-fixed .nav-fixed-pc-content .sns .icon-facebook {
  float: left;
  margin-right: 10px;
}
#nav-fixed .nav-fixed-pc-content .sns .icon-facebook img {
  width: 20px;
  height: 20px;
}
#nav-fixed .nav-fixed-pc-content .sns .icon-instagram {
  float: left;
}
#nav-fixed .nav-fixed-pc-content .sns .icon-instagram img {
  width: 20px;
  height: 20px;
}
#nav-fixed .nav-fixed-pc-content .logo-designhotels {
  width: 20%;
  text-align: right;
}
#nav-fixed .nav-fixed-pc-content .logo-designhotels img {
  width: 77px;
}
#nav-fixed .nav-fixed-sp {
  display: block;
  background-color: #fff;
}
@media (min-width: 981px) {
  #nav-fixed .nav-fixed-sp {
    display: none;
  }
}
#nav-fixed .nav-fixed-sp-content {
  height: 76px;
}
#nav-fixed .nav-fixed-sp-content .left-col {
  float: left;
  letter-spacing: 0.10rem;
}
@media (min-width: 0px) and (max-device-width: 321px) {
  #nav-fixed .nav-fixed-sp-content .left-col {
    letter-spacing: 0.05rem;
  }
}
#nav-fixed .nav-fixed-sp-content .right-col {
  float: right;
  letter-spacing: 0.10rem;
}
@media (min-width: 0px) and (max-device-width: 321px) {
  #nav-fixed .nav-fixed-sp-content .right-col {
    letter-spacing: 0.05rem;
  }
}
#nav-fixed .nav-fixed-sp-content .btn-menu {
  width: 54px;
  text-align: center;
  margin: 22px 0 0 10px;
}
#nav-fixed .nav-fixed-sp-content .btn-menu .icon {
  height: 24px;
  width: 17px;
  margin: 0 auto;
}
#nav-fixed .nav-fixed-sp-content .btn-back {
  width: 54px;
  height: 65px;
  transition: all .5s ease-out;
  text-align: center;
}
#nav-fixed .nav-fixed-sp-content .btn-back a {
  padding: 23px 0 14px 10px;
  display: block;
  text-align: center;
  letter-spacing: 0.14rem;
}
#nav-fixed .nav-fixed-sp-content .btn-back i {
  padding: 0;
  margin-bottom: 2px;
}
#nav-fixed .nav-fixed-sp-content .btn-back:hover a {
  opacity: 0.6;
}
#nav-fixed .nav-fixed-sp-content .btn-book {
  width: 68px;
  height: 65px;
  text-align: center;
  border: none;
  transition: all .5s ease-out;
}
#nav-fixed .nav-fixed-sp-content .btn-book a {
  color: #000;
  display: block;
  padding-bottom: 15px;
}
#nav-fixed .nav-fixed-sp-content .btn-book img {
  width: 24px;
  margin: 20px auto 2px auto;
}
#nav-fixed .nav-fixed-sp-content .logo {
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
#nav-fixed .nav-fixed-sp-content .logo img {
  width: 82px;
  height: auto;
  position: absolute;
  left: -40px;
  top: 9px;
}
#nav-fixed .nav-fixed-sp-content .sns {
  width: auto;
  margin-top: 22px;
}
#nav-fixed .nav-fixed-sp-content .sns .icon-facebook {
  float: left;
  margin-left: -1px;
  margin-right: 8px;
}
#nav-fixed .nav-fixed-sp-content .sns .icon-facebook img {
  width: 16px;
  height: 16px;
}
#nav-fixed .nav-fixed-sp-content .sns .icon-instagram {
  float: left;
}
#nav-fixed .nav-fixed-sp-content .sns .icon-instagram img {
  width: 16px;
  height: 16px;
}
#nav-fixed .nav-fixed-sp-content .logo-designhotels {
  width: 50%;
  text-align: right;
  padding-top: 26px !important;
}
#nav-fixed .nav-fixed-sp-content .logo-designhotels img {
  width: 58px;
}

body.nav-open #nav-fixed {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-pc-content .btn-book {
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-top: none;
}
body.nav-open #nav-fixed .nav-fixed-pc-content .btn-book a {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-pc-content .lang .nolink {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-pc-content .lang a {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-pc-content .lang a:hover {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-sp-content .btn-book {
  border-top: none;
}
body.nav-open #nav-fixed .nav-fixed-sp-content .btn-book a {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-sp-content .langsns .lang .nolink {
  color: #000;
}
body.nav-open #nav-fixed .nav-fixed-sp-content .langsns .lang a {
  color: #000;
}

.p-wrapper {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
}

/* =============================================================================
     text/heading
     ========================================================================== */
p,
p {
  letter-spacing: 0.14rem;
}

p.common {
  margin-bottom: 2rem;
}

p.subheading {
  letter-spacing: 0.3rem;
}

.heading,
p.heading {
  margin-bottom: 3rem;
}
.heading span,
p.heading span {
  vertical-align: middle;
  letter-spacing: 0.6rem;
}
.heading .title,
p.heading .title {
  padding-left: 2rem;
  text-transform: uppercase;
}
.heading .slash,
p.heading .slash {
  padding: 0 0.4rem;
}
.heading .num,
p.heading .num {
  letter-spacing: 0.2rem;
  vertical-align: top;
}

h3.heading {
  text-transform: uppercase;
  letter-spacing: 0.6rem;
}

.heading-gray,
p.heading-gray {
  color: #898989;
  font-weight: 400;
  letter-spacing: 0.6rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.heading-yellow,
p.heading-yellow {
  color: #eeaa55;
  letter-spacing: 0.4rem;
}

.heading-sm {
  margin-bottom: 3.4rem;
}

.heading-xs {
  margin-bottom: 3.4rem;
}

.l-space-m,
p.l-space-m {
  letter-spacing: 0.8rem;
}

.l-space-s,
p.l-space-s {
  letter-spacing: 0.2rem;
}

.heading-heroimage {
  margin-bottom: 1rem;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

.heading-order {
  margin-bottom: 3rem;
}
.heading-order .order {
  vertical-align: top;
  font-size: 1.2rem;
}
@media (min-width: 481px) {
  .heading-order .order {
    font-size: 1.3rem;
  }
}
@media (min-width: 1601px) {
  .heading-order .order {
    font-size: 1.4rem;
  }
}
.heading-order .title {
  vertical-align: top;
  padding-left: 2rem;
  letter-spacing: 0.6rem;
}

/* =============================================================================
     #パンくず
     ========================================================================== */
.p-breadcrumb {
  margin: 6rem auto 0;
  font-size: 1rem;
  width: 100%;
  max-width: 1280px;
}

.p-breadcrumb-list {
  margin-left: 4.5rem;
  padding: 0;
}

.p-breadcrumb-list li:not(:last-child):after {
  content: ">";
  display: inline-block;
  margin: 0 1rem;
}

/* =============================================================================
     　newsとかのサブメニュー
     ========================================================================== */
#overlay--news {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 1100;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
}

.p-block--subnavi {
  margin: 1.5rem;
}
@media (min-width: 481px) {
  .p-block--subnavi {
    margin: 3rem auto 1.5rem;
  }
}

.p-subnavi {
  position: relative;
  padding: 0 0 0 2rem;
  font-size: 1.3rem;
}
@media (min-width: 481px) {
  .p-subnavi {
    font-size: 1.3rem;
    padding: 0 2rem;
  }
}

@media (min-width: 481px) {
  .p-subnavi__list--cat {
    margin: 0 auto;
    text-align: center;
    width: 30rem;
  }
}

.p-subnavi__list--cat > li {
  margin-right: 1rem;
}
@media (min-width: 481px) {
  .p-subnavi__list--cat > li {
    width: 33.3%;
    margin: 0;
  }
}

.p-subnavi__list--cat > li > a {
  display: inline-block;
  padding: 0 0.6rem 0rem;
}
.p-subnavi__list--cat > li > a.is-active {
  border-bottom: 1px solid #000;
}

.p-subnavi__list--view {
  margin: 0;
  text-align: right;
  right: 0rem;
  top: 0;
  position: absolute;
  right: 1rem;
}

.p-subnavi__list--view > li {
  margin-right: 1rem;
}

.p-subnavi--overlay {
  width: 100%;
  left: 0;
  position: fixed;
  bottom: -15rem;
  z-index: 1200;
  overflow: hidden;
  opacity: 0;
  transition: .3s all ease-out;
}

.p-subnavi--overlay.is-active {
  opacity: 1;
  bottom: 0;
}

.p-subnavi--overlay > .p-subnavi__list--view {
  position: relative;
  right: 0;
  width: 100%;
  background-color: #FFF;
  text-align: left;
  transition: .3s all ease-out;
}

.p-subnavi--overlay.is-active > .p-subnavi__list--view {
  bottom: 0;
}

.p-subnavi--overlay > .p-subnavi__list--view > li {
  margin: 0;
}

.p-subnavi--overlay > .p-subnavi__list--view > li + li {
  border-top: 0.5px solid #ccc;
  line-height: 1;
}

.p-subnavi--overlay > .p-subnavi__list--view a {
  display: inline-block;
  width: 100%;
  padding: 1.5rem 3rem;
}

.p-style-round {
  border: 0.5px solid #ccc;
  border-radius: 2em;
}

.p-bg-gray {
  background-color: #f1f1f1;
  overflow: hidden;
}

.p-bg-white {
  background-color: #ffffff;
  overflow: hidden;
}

.p-bdt-gray {
  border-top: solid 1px #ccc;
}

.p-bdb-gray {
  border-top: solid 1px #ccc;
}

.p-bg-blk {
  background-color: #000;
}

.p-indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 481px) {
  .p-u-mt-65 {
    margin-top: 6.5rem !important;
  }
}

@media (min-width: 481px) {
  .p-u-mt-55 {
    margin-top: 5.5rem !important;
  }
}

@media (min-width: 376px) {
  .p-u-mb-xs-40 {
    margin-bottom: 4rem !important;
  }
}

.shadow-white-xs {
  text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff;
}
@media (min-width: 481px) {
  .shadow-white-xs {
    text-shadow: none;
  }
}

@media (min-width: 481px) {
  .shadow-white-sm {
    text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff;
  }
}

.shadow-white {
  text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff;
}

.shadow-black-sp {
  text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 4px #fff;
}
@media (min-width: 481px) {
  .shadow-black-sp {
    text-shadow: none;
  }
}

/* BG Photo
  -------------------------------------------------------------------------- */
@media (min-width: 769px) {
  .js-divaccordion,
  .js-bgaccordion > .p-panel,
  .js-bglink {
    cursor: pointer;
  }
}
.js-divaccordion a,
.js-divaccordion p,
.js-divaccordion h2,
.js-divaccordion h3,
.js-bgaccordion > .p-panel a,
.js-bgaccordion > .p-panel p,
.js-bgaccordion > .p-panel h2,
.js-bgaccordion > .p-panel h3,
.js-bglink a,
.js-bglink p,
.js-bglink h2,
.js-bglink h3 {
  user-select: none;
}

/* =============================================================================
    基本パネル p-panel
    ========================================================================== */
.p-panel {
  color: #fff;
  position: relative;
  background-color: #111;
  background-repeat: no-repeat;
}

.p-panel--l {
  padding-top: 100vh;
}
@media (min-width: 769px) {
  .p-panel--l {
    min-height: 680px;
  }
}

.p-panel--m {
  padding-top: 0;
  height: 50vh;
}
@media (min-width: 769px) {
  .p-panel--m {
    padding: 0;
    height: 480px;
  }
}

.p-panel--commonbg:after {
  background-size: cover;
  background-image: url("/wp-content/themes/speee/assets/common/images/noimage-blue.jpg");
  background-position: center;
}

.p-panel__sub {
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  position: absolute;
}

.p-panel__head {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 1.2rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 481px) {
  .p-panel__head {
    width: 21.6666666667vw;
    height: 100%;
    font-size: 1rem;
    padding: 0;
    text-align: left;
  }
}

.p-panel__head--nobg {
  background-color: transparent;
}
@media (min-width: 481px) and (max-width: 768px) {
  .p-panel__head--nobg {
    width: 100%;
    text-align: center;
  }
  .p-panel__head--nobg .p-panel__head__inner--nobg {
    width: 100%;
  }
}

@media (min-width: 1367px) {
  .p-panel__head.p-panel__head--nobg {
    width: 1366px;
    margin: 0 auto;
    right: 0;
  }
  .p-panel__head.p-panel__head--nobg .p-panel__head__inner {
    left: 180px;
    right: auto;
  }
}

.p-panel__main {
  height: 2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  z-index: 2;
  color: #fff;
  overflow: hidden;
}

.p-block__main-body.subtext0 {
  padding: 48px 0 0 0;
}

.p-block__main-body.subtext1 {
  padding: 48px 0;
}

.p-block__main-body.subtext1-5 {
  padding: 76px 0;
}

.p-block__main-body.subtext2 {
  padding: 110px 0;
}

.subtext-bottom-line {
  border-bottom: 1px solid #ddd;
}

.p-panel__main__caption {
  padding-top: 2rem;
  font-weight: bold;
  font-family: "EB Garamond", serif;
}
@media (min-width: 481px) {
  .p-panel__main__caption {
    padding-top: 4.5rem;
  }
}

.p-panel__main--flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}

/* -----------
   右向き矢印
------------- */
.btn-book-arrow {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  padding: 0 0 0 12px;
  margin-bottom: 3px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 10px;
}

.btn-book-arrow::before,
.btn-book-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn-book-arrow::after {
  left: 3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #898989;
  border-right: 1px solid #898989;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* -----------
   右向き矢印 3本
------------- */
.icon_arrow3 {
  margin-top: -3px;
  width: 20px;
}

.link-subpage {
  margin-top: 1rem;
}
.link-subpage span {
  color: #898989;
  letter-spacing: 0.2rem;
}
.link-subpage a {
  transition: all .6s ease-out;
}
.link-subpage a:hover {
  opacity: 0.6;
}

/* -----------
   左向き矢印
------------- */
.btn-left-arrow {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  padding: 0 26px 0 0;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 10px;
}

.btn-left-arrow::before,
.btn-left-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn-left-arrow::after {
  margin-top: -1px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #898989;
  border-right: 1px solid #898989;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.btn-left-arrow-white {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  padding: 0 26px 0 0;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 10px;
}

.btn-left-arrow-white::before,
.btn-left-arrow-white::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn-left-arrow-white::after {
  margin-top: -1px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* -----------
   リンクの横向き矢印
------------- */
.btn-more {
  margin-top: 2.5rem;
  z-index: 30;
  transition: all .6s ease-out;
}
.btn-more p {
  line-height: 26px;
  position: relative;
}
.btn-more p span.arrow {
  position: absolute;
  top: 4px;
  left: -10px;
  width: 18px;
  height: 18px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  transform: rotate(-135deg);
  transition: all .6s ease-out;
}
.btn-more p span.text {
  padding-left: 30px;
}

@media (min-width: 481px) {
  .js-overlay-fire-area:hover .btn-more span.arrow {
    left: 2px;
  }
}
/* -----------
   リンクの下向き矢印
------------- */
.btn-more-down {
  margin-top: 0.8rem;
  z-index: 30;
  transition: all .6s ease-out;
}
.btn-more-down p {
  line-height: 26px;
  position: relative;
}
.btn-more-down p span.arrow {
  position: absolute;
  top: -2px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  transform: rotate(-45deg);
  transition: all .6s ease-out;
}
.btn-more-down p span.text {
  padding-left: 34px;
}

@media (min-width: 481px) {
  .js-overlay-fire-area:hover .btn-more-down span.arrow {
    top: 6px;
  }
}
/* -----------
   リンクの上向き矢印
------------- */
.btn-more-up {
  margin-top: 0;
  z-index: 30;
  transition: all .6s ease-out;
  height: 60px;
  width: 60px;
  cursor: pointer;
}
.btn-more-up p {
  line-height: 26px;
  position: relative;
}
.btn-more-up p span.arrow {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-left: 1px solid #3f3b3c;
  border-bottom: 1px solid #3f3b3c;
  box-sizing: border-box;
  transform: rotate(135deg);
  transition: all .6s ease-out;
}
.btn-more-up p span.text {
  padding-left: 34px;
}

@media (min-width: 481px) {
  .btn-more-up:hover span.arrow {
    top: -2px;
  }
}
/* -----------
   リンクの上向き矢印 フッター 黄色
------------- */
.btn-pagetop-wrapper {
  padding: 0 22px;
  width: 100%;
}
@media (min-width: 769px) {
  .btn-pagetop-wrapper {
    margin: 0 auto;
    margin: -6rem auto 0;
  }
}

.btn-pagetop {
  width: 40px;
  height: 70px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 769px) {
  .btn-pagetop {
    margin: 0 auto;
  }
}
.btn-pagetop a {
  width: 40px;
  height: 70px;
}

.btn-pagetop-icon {
  z-index: 30;
  transition: all .6s ease-out;
  width: 40px;
  height: 70px;
  display: block;
}
.btn-pagetop-icon p {
  line-height: 26px;
  position: relative;
}
.btn-pagetop-icon p span.arrow {
  position: absolute;
  top: 40px;
  left: 7px;
  width: 26px;
  height: 26px;
  border-left: 1px solid #eeaa55;
  border-bottom: 1px solid #eeaa55;
  box-sizing: border-box;
  transform: rotate(135deg);
  transition: all .6s ease-out;
}

@media (min-width: 481px) {
  .btn-pagetop:hover a .btn-pagetop-icon p span.arrow {
    top: 20px;
  }
}
/* =============================================================================
     基本ブロック p-block
     ========================================================================== */
.p-block {
  margin-top: 0;
}

.p-block--mt {
  margin-top: 4.8rem;
}
@media (min-width: 481px) {
  .p-block--mt {
    margin-top: 10rem;
  }
}

.p-block__main h2.underline {
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 0.5rem;
  font-size: 1.6rem;
  margin-top: 2rem;
}
@media (min-width: 481px) {
  .p-block__main h2.underline {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.p-block__main h2.underline p {
  margin-top: 1rem;
}

@media (min-width: 481px) {
  .p-block__main--maxlg {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-block__main-title,
.p-block__main-body,
.p-block__main-foot {
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 481px) {
  .p-block__main-title,
  .p-block__main-body,
  .p-block__main-foot {
    width: 100%;
  }
}

.p-block__main-cover {
  margin: 0 auto;
}
@media (min-width: 376px) {
  .p-block__main-cover {
    padding: 0;
  }
}
@media (min-width: 481px) {
  .p-block__main-cover {
    width: 48.1rem;
  }
}
@media (min-width: 769px) {
  .p-block__main-cover {
    padding: 0;
    width: 76.8rem;
  }
}

.p-block__main-body.p-block__main-body-maxmd,
.maxmd {
  width: 100%;
}
@media all and (min-width: 1368px) {
  .p-block__main-body.p-block__main-body-maxmd,
  .maxmd {
    width: 1367px;
  }
}

.maxsm {
  width: 100%;
}
@media all and (min-width: 768px) {
  .maxsm {
    width: 714px;
  }
}
@media all and (min-width: 981px) {
  .maxsm {
    width: 768px;
  }
}

.p-definition {
  width: 70%;
  margin: 0 auto;
  font-size: 1.3rem;
}
@media (min-width: 481px) {
  .p-definition {
    margin-top: 4rem;
    width: 460px;
  }
}

.p-button--play i.large {
  vertical-align: middle;
  padding-right: 0.5rem;
}

.p-blog__body {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.p-cover--blk-65 {
  background-color: rgba(0, 0, 0, 0.65);
}

.p-cover--blk-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.p-cover-blk-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.p-cover-blk-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.p-icon--play {
  width: 3rem;
  height: auto;
}

@media (min-width: 481px) {
  .column-layout-2 {
    column-count: 2;
    column-width: 50%;
    column-gap: 44px;
  }
}
@media (min-width: 769px) {
  .column-layout-2 {
    column-gap: 108px;
  }
}

/* =============================================================================
     accordion
     ========================================================================== */
.js-bgaccordion:hover > .subtext {
  will-change: animation,transform,background-position,height,padding;
}

.subtext {
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform 0.4s linear,background-position 0.4s linear,height 0.4s linear,padding-top .6s linear,padding-left .6s linear,padding-right .6s linear, padding-bottom .6s linear,border-top-width .6s linear;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
}

.toggled {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  border-width: 0 1px;
}

/* #Bgzoom
  -------------------------------------------------------------------------- */
/*doc
---
title: bgzoom
name: bgzoom
categories: [project]
---

背景スーム効果のコンポーネントです。

*/
/* =============================================================================
     背景Overlay
     ========================================================================== */
.js-overlay-fire-area {
  z-index: 11;
  cursor: pointer;
}

.p-panel--overlay {
  overflow: hidden;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.p-panel--overlay a {
  color: #fff;
}
.p-panel--overlay .p-panel__sub {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

/* =============================================================================
     背景アニメーション
     ========================================================================== */
.p-panel--bgzoom {
  overflow: hidden;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.p-panel--bgzoom .p-panel__sub {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.p-panel--bgzoom:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 3s ease-out;
  -moz-transition: all 3s ease-out;
  -ms-transition: all 3s ease-out;
  transition: all 3s ease-out;
  z-index: -1;
}

.bgzoom:after {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

body.window-resizing .p-panel--bgzoom:after {
  transition: none;
}

body.window-resizing .bgzoom:after {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.p-panel-scrbgzoom {
  overflow: hidden;
}

.p-panel__scrbgzoom:after.bgzoom {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.p-panel__scrbgzoom:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transition: all 3s ease-out;
  -moz-transition: all 3s ease-out;
  -ms-transition: all 3s ease-out;
  transition: all 3s ease-out;
  z-index: -1;
}

/* IMG ZOOM SP
  -------------------------------------------------------------------------- */
.img-zoom-sp-wrapper {
  position: relative;
}
.img-zoom-sp-wrapper .icon-swipe {
  width: 30px;
  position: absolute;
  top: 20px;
  left: 30px;
}
@media (min-width: 769px) {
  .img-zoom-sp-wrapper .icon-swipe {
    display: none;
  }
}

.img-zoom-sp-scroll {
  overflow: auto;
  white-space: nowrap;
  padding: 20px 0;
}
.img-zoom-sp-scroll::-webkit-scrollbar {
  height: 5px;
}
.img-zoom-sp-scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.img-zoom-sp-scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
@media (min-width: 769px) {
  .img-zoom-sp-scroll {
    overflow: hidden;
    padding: 20px 54px;
  }
}

.img-zoom-sp {
  width: 700px;
}
.img-zoom-sp img {
  width: 100%;
  height: auto;
  padding: 0 22px;
}
@media (min-width: 769px) {
  .img-zoom-sp img {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .img-zoom-sp {
    width: 100%;
  }
}
.img-zoom-sp area {
  border: none;
  outline: 1px solid #000;
}

/* -----------------------------------------------------------------------------
   #Scope
   -------------------------------------------------------------------------- */
/**
 * ComponentレイヤーやProjectレイヤーのようなコンポーネント単位ではなく、
 * ページ単位や任意の範囲（スコープ）でのスタイルを定義します。1箇所でしか使わないような特異なスタイルや、
 * ページ単位でComponentやProjectレイヤーのスタイルを微調整したい場合に使用してもかまいません。
 * 例えばブログページのスタイルとして_blog.scssを作成します。
 * このレイヤーでは`.s-blog p`のような要素セレクタとの結合子も使うこともできます。
 * もし、このレイヤーで同じパターンが3箇所で使われていたら、
 * ProjectレイヤーやUtilityレイヤーでまとめられないか検討しましょう。
 * プレフィックス（接頭辞）として`s-`をつけます。
 */
/* =============================================================================
     基本パネル p-panel 個別指定
     ========================================================================== */
.p-panel--m {
  background-size: cover;
}

#top-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/top/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-hero {
    background-image: url("../images/top/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-hero {
    background-image: url("../images/top/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-hero {
    background-image: url("../images/top/bgp0_md@2x.jpg?v=6542");
  }
}

#top-p1 {
  background-image: url("../images/top/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p1 {
    background-image: url("../images/top/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p1 {
    background-image: url("../images/top/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p1 {
    background-image: url("../images/top/bgp1_md@2x.jpg?v=6542");
  }
}

#top-p2 {
  background-image: url("../images/top/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p2 {
    background-image: url("../images/top/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p2 {
    background-image: url("../images/top/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p2 {
    background-image: url("../images/top/bgp2_md@2x.jpg?v=6542");
  }
}

#top-p3 {
  background-image: url("../images/top/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p3 {
    background-image: url("../images/top/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p3 {
    background-image: url("../images/top/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p3 {
    background-image: url("../images/top/bgp3_md@2x.jpg?v=6542");
  }
}

#top-p4 {
  background-image: url("../images/top/bgp4_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p4 {
    background-image: url("../images/top/bgp4_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p4 {
    background-image: url("../images/top/bgp4_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p4 {
    background-image: url("../images/top/bgp4_md@2x.jpg?v=6542");
  }
}

#top-p5 {
  background-image: url("../images/top/bgp5_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p5 {
    background-image: url("../images/top/bgp5_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p5 {
    background-image: url("../images/top/bgp5_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p5 {
    background-image: url("../images/top/bgp5_md@2x.jpg?v=6542");
  }
}

#top-p6 {
  background-image: url("../images/top/bgp6_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p6 {
    background-image: url("../images/top/bgp6_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p6 {
    background-image: url("../images/top/bgp6_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p6 {
    background-image: url("../images/top/bgp6_md@2x.jpg?v=6542");
  }
}

#top-p7 {
  background-image: url("../images/top/bgp7_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p7 {
    background-image: url("../images/top/bgp7_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p7 {
    background-image: url("../images/top/bgp7_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p7 {
    background-image: url("../images/top/bgp7_md@2x.jpg?v=6542");
  }
}

#top-p8 {
  background-image: url("../images/top/bgp8_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #top-p8 {
    background-image: url("../images/top/bgp8_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #top-p8 {
    background-image: url("../images/top/bgp8_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #top-p8 {
    background-image: url("../images/top/bgp8_md@2x.jpg?v=6542");
  }
}

#stories-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/stories/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-hero {
    background-image: url("../images/stories/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-hero {
    background-image: url("../images/stories/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-hero {
    background-image: url("../images/stories/bgp0_md@2x.jpg?v=6542");
  }
}

#stories-1 {
  background-image: url("../images/stories/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-1 {
    background-image: url("../images/stories/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-1 {
    background-image: url("../images/stories/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-1 {
    background-image: url("../images/stories/bgp1_md@2x.jpg?v=6542");
  }
}

#stories-2 {
  background-image: url("../images/stories/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-2 {
    background-image: url("../images/stories/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-2 {
    background-image: url("../images/stories/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-2 {
    background-image: url("../images/stories/bgp2_md@2x.jpg?v=6542");
  }
}

#stories-3 {
  background-image: url("../images/stories/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-3 {
    background-image: url("../images/stories/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-3 {
    background-image: url("../images/stories/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-3 {
    background-image: url("../images/stories/bgp3_md@2x.jpg?v=6542");
  }
}

#stories-4 {
  background-image: url("../images/stories/bgp4_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-4 {
    background-image: url("../images/stories/bgp4_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-4 {
    background-image: url("../images/stories/bgp4_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-4 {
    background-image: url("../images/stories/bgp4_md@2x.jpg?v=6542");
  }
}

#stories-5 {
  background-image: url("../images/stories/bgp5_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-5 {
    background-image: url("../images/stories/bgp5_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-5 {
    background-image: url("../images/stories/bgp5_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-5 {
    background-image: url("../images/stories/bgp5_md@2x.jpg?v=6542");
  }
}

#stories-6 {
  background-image: url("../images/stories/bgp6_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-6 {
    background-image: url("../images/stories/bgp6_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-6 {
    background-image: url("../images/stories/bgp6_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-6 {
    background-image: url("../images/stories/bgp6_md@2x.jpg?v=6542");
  }
}

#stories-7 {
  background-image: url("../images/stories/bgp7_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-7 {
    background-image: url("../images/stories/bgp7_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-7 {
    background-image: url("../images/stories/bgp7_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-7 {
    background-image: url("../images/stories/bgp7_md@2x.jpg?v=6542");
  }
}

#stories-8 {
  background-image: url("../images/stories/bgp8_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-8 {
    background-image: url("../images/stories/bgp8_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-8 {
    background-image: url("../images/stories/bgp8_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-8 {
    background-image: url("../images/stories/bgp8_md@2x.jpg?v=6542");
  }
}

#stories-9 {
  background-image: url("../images/stories/bgp9_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-9 {
    background-image: url("../images/stories/bgp9_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-9 {
    background-image: url("../images/stories/bgp9_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-9 {
    background-image: url("../images/stories/bgp9_md@2x.jpg?v=6542");
  }
}

#stories-10 {
  background-image: url("../images/stories/bgp10_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #stories-10 {
    background-image: url("../images/stories/bgp10_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #stories-10 {
    background-image: url("../images/stories/bgp10_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #stories-10 {
    background-image: url("../images/stories/bgp10_md@2x.jpg?v=6542");
  }
}

#facility-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/facility/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #facility-hero {
    background-image: url("../images/facility/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #facility-hero {
    background-image: url("../images/facility/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #facility-hero {
    background-image: url("../images/facility/bgp0_md@2x.jpg?v=6542");
  }
}

#facility-1 {
  background-image: url("../images/facility/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #facility-1 {
    background-image: url("../images/facility/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #facility-1 {
    background-image: url("../images/facility/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #facility-1 {
    background-image: url("../images/facility/bgp1_md@2x.jpg?v=6542");
  }
}

#facility-2 {
  background-image: url("../images/facility/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #facility-2 {
    background-image: url("../images/facility/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #facility-2 {
    background-image: url("../images/facility/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #facility-2 {
    background-image: url("../images/facility/bgp2_md@2x.jpg?v=6542");
  }
}

#facility-3 {
  background-image: url("../images/facility/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #facility-3 {
    background-image: url("../images/facility/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #facility-3 {
    background-image: url("../images/facility/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #facility-3 {
    background-image: url("../images/facility/bgp3_md@2x.jpg?v=6542");
  }
}

#artists-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/artists/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #artists-hero {
    background-image: url("../images/artists/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #artists-hero {
    background-image: url("../images/artists/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #artists-hero {
    background-image: url("../images/artists/bgp0_md@2x.jpg?v=6542");
  }
}

#artists-1 {
  background-image: url("../images/artists/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #artists-1 {
    background-image: url("../images/artists/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #artists-1 {
    background-image: url("../images/artists/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #artists-1 {
    background-image: url("../images/artists/bgp1_md@2x.jpg?v=6542");
  }
}

#artists-2 {
  background-image: url("../images/artists/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #artists-2 {
    background-image: url("../images/artists/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #artists-2 {
    background-image: url("../images/artists/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #artists-2 {
    background-image: url("../images/artists/bgp2_md@2x.jpg?v=6542");
  }
}

#artists-3 {
  background-image: url("../images/artists/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #artists-3 {
    background-image: url("../images/artists/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #artists-3 {
    background-image: url("../images/artists/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #artists-3 {
    background-image: url("../images/artists/bgp3_md@2x.jpg?v=6542");
  }
}

#artists-4 {
  background-image: url("../images/artists/bgp4_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #artists-4 {
    background-image: url("../images/artists/bgp4_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #artists-4 {
    background-image: url("../images/artists/bgp4_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #artists-4 {
    background-image: url("../images/artists/bgp4_md@2x.jpg?v=6542");
  }
}

#dining-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/dining/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #dining-hero {
    background-image: url("../images/dining/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #dining-hero {
    background-image: url("../images/dining/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #dining-hero {
    background-image: url("../images/dining/bgp0_md@2x.jpg?v=6542");
  }
}

#dining-1 {
  background-image: url("../images/dining/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #dining-1 {
    background-image: url("../images/dining/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #dining-1 {
    background-image: url("../images/dining/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #dining-1 {
    background-image: url("../images/dining/bgp1_md@2x.jpg?v=6542");
  }
}

#dining-2 {
  background-image: url("../images/dining/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #dining-2 {
    background-image: url("../images/dining/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #dining-2 {
    background-image: url("../images/dining/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #dining-2 {
    background-image: url("../images/dining/bgp2_md@2x.jpg?v=6542");
  }
}

#dining-3 {
  background-image: url("../images/dining/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #dining-3 {
    background-image: url("../images/dining/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #dining-3 {
    background-image: url("../images/dining/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #dining-3 {
    background-image: url("../images/dining/bgp3_md@2x.jpg?v=6542");
  }
}

#rooms-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/rooms/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-hero {
    background-image: url("../images/rooms/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-hero {
    background-image: url("../images/rooms/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-hero {
    background-image: url("../images/rooms/bgp0_md@2x.jpg?v=6542");
  }
}

#rooms-p101 {
  background-image: url("../images/rooms/bgp101_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p101 {
    background-image: url("../images/rooms/bgp101_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p101 {
    background-image: url("../images/rooms/bgp101_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p101 {
    background-image: url("../images/rooms/bgp101_md@2x.jpg?v=6542");
  }
}

#rooms-p102 {
  background-image: url("../images/rooms/bgp102_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p102 {
    background-image: url("../images/rooms/bgp102_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p102 {
    background-image: url("../images/rooms/bgp102_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p102 {
    background-image: url("../images/rooms/bgp102_md@2x.jpg?v=6542");
  }
}

#rooms-p201 {
  background-image: url("../images/rooms/bgp201_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p201 {
    background-image: url("../images/rooms/bgp201_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p201 {
    background-image: url("../images/rooms/bgp201_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p201 {
    background-image: url("../images/rooms/bgp201_md@2x.jpg?v=6542");
  }
}

#rooms-p202 {
  background-image: url("../images/rooms/bgp202_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p202 {
    background-image: url("../images/rooms/bgp202_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p202 {
    background-image: url("../images/rooms/bgp202_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p202 {
    background-image: url("../images/rooms/bgp202_md@2x.jpg?v=6542");
  }
}

#rooms-p203 {
  background-image: url("../images/rooms/bgp203_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p203 {
    background-image: url("../images/rooms/bgp203_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p203 {
    background-image: url("../images/rooms/bgp203_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p203 {
    background-image: url("../images/rooms/bgp203_md@2x.jpg?v=6542");
  }
}

#rooms-p204 {
  background-image: url("../images/rooms/bgp204_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p204 {
    background-image: url("../images/rooms/bgp204_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p204 {
    background-image: url("../images/rooms/bgp204_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p204 {
    background-image: url("../images/rooms/bgp204_md@2x.jpg?v=6542");
  }
}

#rooms-p205 {
  background-image: url("../images/rooms/bgp205_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p205 {
    background-image: url("../images/rooms/bgp205_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p205 {
    background-image: url("../images/rooms/bgp205_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p205 {
    background-image: url("../images/rooms/bgp205_md@2x.jpg?v=6542");
  }
}

#rooms-p206 {
  background-image: url("../images/rooms/bgp206_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p206 {
    background-image: url("../images/rooms/bgp206_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p206 {
    background-image: url("../images/rooms/bgp206_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p206 {
    background-image: url("../images/rooms/bgp206_md@2x.jpg?v=6542");
  }
}

#rooms-p207 {
  background-image: url("../images/rooms/bgp207_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p207 {
    background-image: url("../images/rooms/bgp207_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p207 {
    background-image: url("../images/rooms/bgp207_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p207 {
    background-image: url("../images/rooms/bgp207_md@2x.jpg?v=6542");
  }
}

#rooms-p301 {
  background-image: url("../images/rooms/bgp301_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p301 {
    background-image: url("../images/rooms/bgp301_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p301 {
    background-image: url("../images/rooms/bgp301_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p301 {
    background-image: url("../images/rooms/bgp301_md@2x.jpg?v=6542");
  }
}

#rooms-p302 {
  background-image: url("../images/rooms/bgp302_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p302 {
    background-image: url("../images/rooms/bgp302_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p302 {
    background-image: url("../images/rooms/bgp302_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p302 {
    background-image: url("../images/rooms/bgp302_md@2x.jpg?v=6542");
  }
}

#rooms-p303 {
  background-image: url("../images/rooms/bgp303_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p303 {
    background-image: url("../images/rooms/bgp303_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p303 {
    background-image: url("../images/rooms/bgp303_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p303 {
    background-image: url("../images/rooms/bgp303_md@2x.jpg?v=6542");
  }
}

#rooms-p304 {
  background-image: url("../images/rooms/bgp304_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p304 {
    background-image: url("../images/rooms/bgp304_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p304 {
    background-image: url("../images/rooms/bgp304_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p304 {
    background-image: url("../images/rooms/bgp304_md@2x.jpg?v=6542");
  }
}

#rooms-p305 {
  background-image: url("../images/rooms/bgp305_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #rooms-p305 {
    background-image: url("../images/rooms/bgp305_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #rooms-p305 {
    background-image: url("../images/rooms/bgp305_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #rooms-p305 {
    background-image: url("../images/rooms/bgp305_md@2x.jpg?v=6542");
  }
}

#access-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/access/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #access-hero {
    background-image: url("../images/access/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #access-hero {
    background-image: url("../images/access/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #access-hero {
    background-image: url("../images/access/bgp0_md@2x.jpg?v=6542");
  }
}

#experience-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/experience/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-hero {
    background-image: url("../images/experience/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-hero {
    background-image: url("../images/experience/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-hero {
    background-image: url("../images/experience/bgp0_md@2x.jpg?v=6542");
  }
}

#experience-1 {
  background-image: url("../images/experience/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-1 {
    background-image: url("../images/experience/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-1 {
    background-image: url("../images/experience/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-1 {
    background-image: url("../images/experience/bgp1_md@2x.jpg?v=6542");
  }
}

#experience-2 {
  background-image: url("../images/experience/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-2 {
    background-image: url("../images/experience/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-2 {
    background-image: url("../images/experience/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-2 {
    background-image: url("../images/experience/bgp2_md@2x.jpg?v=6542");
  }
}

#experience-3 {
  background-image: url("../images/experience/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-3 {
    background-image: url("../images/experience/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-3 {
    background-image: url("../images/experience/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-3 {
    background-image: url("../images/experience/bgp3_md@2x.jpg?v=6542");
  }
}

#experience-natureactivities-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/experience-natureactivities/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-natureactivities-hero {
    background-image: url("../images/experience-natureactivities/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-natureactivities-hero {
    background-image: url("../images/experience-natureactivities/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-natureactivities-hero {
    background-image: url("../images/experience-natureactivities/bgp0_md@2x.jpg?v=6542");
  }
}

#experience-natureactivities-1 {
  background-image: url("../images/experience-natureactivities/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-natureactivities-1 {
    background-image: url("../images/experience-natureactivities/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-natureactivities-1 {
    background-image: url("../images/experience-natureactivities/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-natureactivities-1 {
    background-image: url("../images/experience-natureactivities/bgp1_md@2x.jpg?v=6542");
  }
}

#experience-natureactivities-2 {
  background-image: url("../images/experience-natureactivities/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-natureactivities-2 {
    background-image: url("../images/experience-natureactivities/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-natureactivities-2 {
    background-image: url("../images/experience-natureactivities/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-natureactivities-2 {
    background-image: url("../images/experience-natureactivities/bgp2_md@2x.jpg?v=6542");
  }
}

#experience-natureactivities-3 {
  background-image: url("../images/experience-natureactivities/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #experience-natureactivities-3 {
    background-image: url("../images/experience-natureactivities/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #experience-natureactivities-3 {
    background-image: url("../images/experience-natureactivities/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #experience-natureactivities-3 {
    background-image: url("../images/experience-natureactivities/bgp3_md@2x.jpg?v=6542");
  }
}

#neighborhood-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/neighborhood/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-hero {
    background-image: url("../images/neighborhood/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-hero {
    background-image: url("../images/neighborhood/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-hero {
    background-image: url("../images/neighborhood/bgp0_md@2x.jpg?v=6542");
  }
}

#neighborhood-1 {
  background-image: url("../images/neighborhood/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-1 {
    background-image: url("../images/neighborhood/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-1 {
    background-image: url("../images/neighborhood/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-1 {
    background-image: url("../images/neighborhood/bgp1_md@2x.jpg?v=6542");
  }
}

#neighborhood-2 {
  background-image: url("../images/neighborhood/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-2 {
    background-image: url("../images/neighborhood/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-2 {
    background-image: url("../images/neighborhood/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-2 {
    background-image: url("../images/neighborhood/bgp2_md@2x.jpg?v=6542");
  }
}

#neighborhood-3 {
  background-image: url("../images/neighborhood/bgp3_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-3 {
    background-image: url("../images/neighborhood/bgp3_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-3 {
    background-image: url("../images/neighborhood/bgp3_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-3 {
    background-image: url("../images/neighborhood/bgp3_md@2x.jpg?v=6542");
  }
}

#neighborhood-sightseeing-hero {
  background-size: cover;
  background-position: center;
  background-image: url("../images/neighborhood-sightseeing/bgp0_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-sightseeing-hero {
    background-image: url("../images/neighborhood-sightseeing/bgp0_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-sightseeing-hero {
    background-image: url("../images/neighborhood-sightseeing/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-sightseeing-hero {
    background-image: url("../images/neighborhood-sightseeing/bgp0_md@2x.jpg?v=6542");
  }
}

#neighborhood-sightseeing-1 {
  background-image: url("../images/neighborhood-sightseeing/bgp1_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-sightseeing-1 {
    background-image: url("../images/neighborhood-sightseeing/bgp1_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-sightseeing-1 {
    background-image: url("../images/neighborhood-sightseeing/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-sightseeing-1 {
    background-image: url("../images/neighborhood-sightseeing/bgp1_md@2x.jpg?v=6542");
  }
}

#neighborhood-sightseeing-2 {
  background-image: url("../images/neighborhood-sightseeing/bgp2_xs@2x.jpg?v=6542");
}
@media (min-width: 481px) {
  #neighborhood-sightseeing-2 {
    background-image: url("../images/neighborhood-sightseeing/bgp2_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  #neighborhood-sightseeing-2 {
    background-image: url("../images/neighborhood-sightseeing/bgp2_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #neighborhood-sightseeing-2 {
    background-image: url("../images/neighborhood-sightseeing/bgp2_md@2x.jpg?v=6542");
  }
}

.p-panel#p1 {
  background-size: cover;
  background-position: center;
  background-image: url("../images/top/bgp0_sm@2x.jpg?v=6542");
}
@media (min-width: 769px) {
  .p-panel#p1 {
    background-image: url("../images/top/bgp0_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .p-panel#p1 {
    background-image: url("../images/top/bgp0_md@2x.jpg?v=6542");
  }
}
.p-panel#p1 h2 {
  opacity: 1;
  transition: opacity .6s ease-out;
}
.p-panel#p1:hover h2 {
  opacity: 0.6;
}

.p-panel#p2,
.p-panel#p3,
.p-panel#p5 {
  background-size: cover;
  background-position: center;
  background-image: url("../images/styleguide/img_03_xs@2x.jpg?v=6542");
}
@media (min-width: 376px) {
  .p-panel#p2,
  .p-panel#p3,
  .p-panel#p5 {
    background-size: cover;
    background-position: center;
    background-image: url("../images/styleguide/img_03_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  .p-panel#p2,
  .p-panel#p3,
  .p-panel#p5 {
    background-size: cover;
    background-image: url("../images/styleguide/img_03_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .p-panel#p2,
  .p-panel#p3,
  .p-panel#p5 {
    background-size: cover;
    background-image: url("../images/styleguide/img_03_md@2x.jpg?v=6542");
  }
}
.p-panel#p2 h2,
.p-panel#p3 h2,
.p-panel#p5 h2 {
  opacity: 1;
  transition: opacity .6s ease-out;
}
.p-panel#p2:hover h2,
.p-panel#p3:hover h2,
.p-panel#p5:hover h2 {
  opacity: 0.6;
}

.p-panel#p2 {
  background-image: url("../images/top/bgp1_sm@2x.jpg?v=6542");
}
@media (min-width: 769px) {
  .p-panel#p2 {
    background-image: url("../images/top/bgp1_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .p-panel#p2 {
    background-image: url("../images/top/bgp1_md@2x.jpg?v=6542");
  }
}

.p-panel#p4 {
  background-size: cover;
  background-position: center;
  background-image: url("../images/styleguide/img_03_xs@2x.jpg?v=6542");
}
@media (min-width: 376px) {
  .p-panel#p4 {
    background-size: cover;
    background-position: center;
    background-image: url("../images/styleguide/img_03_sm@2x.jpg?v=6542");
  }
}
@media (min-width: 769px) {
  .p-panel#p4 {
    background-size: cover;
    background-image: url("../images/styleguide/img_03_md.jpg?v=6542");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .p-panel#p4 {
    background-size: cover;
    background-image: url("../images/styleguide/img_03_md@2x.jpg?v=6542");
  }
}

/*  ================================================================================
    TOP
================================================================================  */
.signature {
  margin: 28px 0;
}
@media (min-width: 481px) {
  .signature {
    margin: 28px 0;
  }
}

/* -----------
SLIDER(SWIPER.JS)
------------- */
.slide-main {
  position: relative;
  height: 100vh;
}
.slide-main .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-main .swiper-slide {
  background-size: cover;
  background-color: #111;
  /* Center slide text vertically */
}

#slide-main01 {
  background-image: url("../images/top-slide/mv1_xs@2x.jpg");
}
@media (min-width: 481px) {
  #slide-main01 {
    background-image: url("../images/top-slide/mv1_sm@2x.jpg");
  }
}
@media (min-width: 769px) {
  #slide-main01 {
    background-image: url("../images/top-slide/mv1_md.jpg");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #slide-main01 {
    background-image: url("../images/top-slide/mv1_md@2x.jpg");
  }
}

#slide-main02 {
  background-image: url("../images/top-slide/mv2_xs@2x.jpg");
}
@media (min-width: 481px) {
  #slide-main02 {
    background-image: url("../images/top-slide/mv2_sm@2x.jpg");
  }
}
@media (min-width: 769px) {
  #slide-main02 {
    background-image: url("../images/top-slide/mv2_md.jpg");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #slide-main02 {
    background-image: url("../images/top-slide/mv2_md@2x.jpg");
  }
}

#slide-main03 {
  background-image: url("../images/top-slide/mv3_xs@2x.jpg");
}
@media (min-width: 481px) {
  #slide-main03 {
    background-image: url("../images/top-slide/mv3_sm@2x.jpg");
  }
}
@media (min-width: 769px) {
  #slide-main03 {
    background-image: url("../images/top-slide/mv3_md.jpg");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #slide-main03 {
    background-image: url("../images/top-slide/mv3_md@2x.jpg");
  }
}

#slide-main04 {
  background-image: url("../images/top-slide/mv4_xs@2x.jpg");
}
@media (min-width: 481px) {
  #slide-main04 {
    background-image: url("../images/top-slide/mv4_sm@2x.jpg");
  }
}
@media (min-width: 769px) {
  #slide-main04 {
    background-image: url("../images/top-slide/mv4_md.jpg");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #slide-main04 {
    background-image: url("../images/top-slide/mv4_md@2x.jpg");
  }
}

#slide-main05 {
  background-image: url("../images/top-slide/mv5_xs@2x.jpg");
}
@media (min-width: 481px) {
  #slide-main05 {
    background-image: url("../images/top-slide/mv5_sm@2x.jpg");
  }
}
@media (min-width: 769px) {
  #slide-main05 {
    background-image: url("../images/top-slide/mv5_md.jpg");
  }
}
@media (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #slide-main05 {
    background-image: url("../images/top-slide/mv5_md@2x.jpg");
  }
}

/* -----------
メインビジュアルの下向き矢印アニメーション
------------- */
#btn-scrolldown {
  z-index: 30;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  height: 70px;
  width: 100%;
}
@media (min-width: 769px) {
  #btn-scrolldown {
    bottom: 14px;
  }
}
#btn-scrolldown .auto-float-down-wrapper {
  height: 70px;
  width: 46px;
  margin: 0 auto;
}
#btn-scrolldown .auto-float-down {
  overflow: hidden;
  margin: 0 auto;
  height: 70px;
  width: 46px;
  position: relative;
}
#btn-scrolldown .auto-float-down span {
  position: absolute;
  top: 0;
  left: 9px;
  width: 28px;
  height: 28px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  transform: rotate(-45deg);
  animation: sdb 1.5s infinite;
}

@keyframes sdb {
  0% {
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 30px) rotate(-45deg);
    opacity: 0;
  }
}
/* -----------
etc
------------- */
.margin-heading-heroimage {
  margin-top: -2rem;
}

#hero-image-slider .logo-sp {
  width: 128px;
  margin-bottom: 1.6rem;
}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 15px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.5;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* -----------------------------------------------------------------------------
   #Utility
   -------------------------------------------------------------------------- */
/**
 * Utilityレイヤーはいわゆる汎用クラスで、ほとんどの場合は単一のスタイルをもっています。
 * コンポーネント間の間隔を調整したり、BEMのModifierが増えすぎるのを防ぎます。
 * `.mb10`のような具体的な名前より`.mb-small`のような相対的な名前にしたり、
 * pxよりもemや%で指定することを推奨します。
 * 確実にスタイルを適応させるために`!important`を使用します。
 * プレフィックス（接頭辞）として`u-`をつけます。
 */
/* #Display
  -------------------------------------------------------------------------- */
/*doc
---
title: display
name: display
categories: [utility]
---

表示非表示を切り替えます。改行位置のコントロールもできます。

```block
<p class="u-dn-md"><code>$-md</code>以降は非表示になります。</p>
<p class="u-dn u-db-md"><code>$-md</code>以降は表示されます。</p>
<p>基本はなりゆきでウィンドウサイズが狭くなると、<span class="u-dib">ここから改行されます。</span></p>
<p><code>$-md</code>以降になると、<span class="u-db-md">ここから改行されます。</span></p>
```

@include _responsive(".u-dn") {
  display: none !important;
}

@include _responsive(".u-db") {
  display: block !important;
}

@include _responsive(".u-di") {
  display: inline !important;
}

@include _responsive(".u-dib") {
  display: inline-block !important;
}
*/
.u-visible-xxs,
.u-visible-xs,
.u-visible-sm,
.u-visible-md,
.u-visible-lg {
  display: none !important;
}

@media (min-width: 0px) and (max-device-width: 321px) {
  .u-visible-xxs {
    display: block !important;
  }
}
@media (max-width: 480px) {
  .u-hidden-xs {
    display: none !important;
  }

  .u-visible-xs {
    display: block !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .u-hidden-sm {
    display: none !important;
  }

  .u-visible-sm {
    display: block !important;
  }
}
@media (min-width: 769px) and (max-width: 1366px) {
  .u-hidden-md {
    display: none !important;
  }

  .u-visible-md {
    display: block !important;
  }
}
@media (min-width: 1367px) {
  .u-hidden-lg {
    display: none !important;
  }

  .u-visible-lg {
    display: block !important;
  }
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
  .retina-hidden {
    display: none;
  }
}

.retina-visible {
  display: none;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
  .retina-visible {
    display: block;
  }
}

.u-fz-xxs {
  font-size: 0.9rem;
}
@media (min-width: 481px) {
  .u-fz-xxs {
    font-size: 1.1rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-xxs {
    font-size: 1.1rem;
  }
}

.u-fz-xs {
  font-size: 1.1rem;
}
@media (min-width: 481px) {
  .u-fz-xs {
    font-size: 1.2rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-xs {
    font-size: 1.3rem;
  }
}

.u-fz-sm {
  font-size: 1.3rem;
}
@media (min-width: 481px) {
  .u-fz-sm {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media (min-width: 1601px) {
  .u-fz-sm {
    font-size: 1.4rem;
  }
}

.u-fz-md {
  font-size: 1.4rem;
}
@media (min-width: 481px) {
  .u-fz-md {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media (min-width: 1601px) {
  .u-fz-md {
    font-size: 1.6rem;
  }
}

.u-fz-lg {
  font-size: 1.5rem;
}
@media (min-width: 481px) {
  .u-fz-lg {
    font-size: 1.6rem;
  }
}
@media (min-width: 1367px) {
  .u-fz-lg {
    font-size: 1.72rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-lg {
    font-size: 1.86rem;
  }
}

.u-fz-lm {
  font-size: 1.6rem;
}
@media (min-width: 481px) {
  .u-fz-lm {
    font-size: 1.8rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-lm {
    font-size: 2.0rem;
  }
}

.u-fz-l {
  font-size: 1.7rem;
}
@media (min-width: 481px) {
  .u-fz-l {
    font-size: 2.0rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-l {
    font-size: 2.42rem;
  }
}

.u-fz-xl {
  font-size: 1.9rem;
}
@media (min-width: 481px) {
  .u-fz-xl {
    font-size: 2.6rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-xl {
    font-size: 2.64rem;
  }
}

.u-fz-xxl {
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 481px) {
  .u-fz-xxl {
    font-size: 2.9rem;
  }
}
@media (min-width: 1367px) {
  .u-fz-xxl {
    font-size: 3.2rem;
  }
}
@media (min-width: 1601px) {
  .u-fz-xxl {
    font-size: 3.2rem;
  }
}

.u-m {
  margin: 4.5rem;
}
@media (min-width: 481px) {
  .u-m {
    margin: 9rem;
  }
}

.u-m-xxs {
  margin: 0.6rem;
}
@media (min-width: 481px) {
  .u-m-xxs {
    margin: 0.6rem;
  }
}

.u-m-xs {
  margin: 0.75rem;
}
@media (min-width: 481px) {
  .u-m-xs {
    margin: 1.5rem;
  }
}

.u-m-s {
  margin: 1.5rem;
}
@media (min-width: 481px) {
  .u-m-s {
    margin: 3.0rem;
  }
}

.u-m-sm {
  margin: 3.0rem;
}
@media (min-width: 481px) {
  .u-m-sm {
    margin: 4.5rem;
  }
}

.u-m-m {
  margin: 4.5rem;
}
@media (min-width: 481px) {
  .u-m-m {
    margin: 6.0rem;
  }
}

.u-bg-gray {
  background-color: #f3f3f3;
}

.u-bg-gray-dark {
  background-color: #333;
}

.u-bgc-black-100 {
  background-color: black !important;
}

.u-bgc-black-90 {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.u-bgc-black-80 {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.u-bgc-black-70 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.u-bgc-black-65 {
  background-color: rgba(0, 0, 0, 0.65) !important;
}

.u-bgc-black-60 {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.u-bgc-black-50 {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.u-bgc-black-40 {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.u-bgc-black-30 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.u-bgc-black-20 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.u-bgc-black-10 {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.u-bgc-black-0 {
  background-color: transparent !important;
}

.u-bgc-black-0-sp30 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
@media (min-width: 481px) {
  .u-bgc-black-0-sp30 {
    background-color: transparent !important;
  }
}

.w100 {
  width: 100%;
}

.u-bc-black {
  border-color: #000;
}

.u-ti-brackets {
  text-indent: -0.63em;
}

.cursor-pointer {
  cursor: pointer;
}

.text-l-space {
  letter-spacing: 0.6rem;
}

.text-italic {
  font-style: italic;
}

.text-lineheight-15 {
  line-height: 1.5;
}

/*! Emma.css 0.7.0 | emmet-like utility classes | MIT License | git.io/emma */
.u-pos-s {
  position: static !important;
}

.u-pos-a {
  position: absolute !important;
}

.u-pos-r {
  position: relative !important;
}

.u-pos-f {
  position: fixed !important;
}

.u-t-a {
  top: auto !important;
}

.u-t-0 {
  top: 0 !important;
}

.u-r-a {
  right: auto !important;
}

.u-r-0 {
  right: 0 !important;
}

.u-b-a {
  bottom: auto !important;
}

.u-b-0 {
  bottom: 0 !important;
}

.u-l-a {
  left: auto !important;
}

.u-l-0 {
  left: 0 !important;
}

.u-z-a {
  z-index: auto !important;
}

.u-z-0 {
  z-index: 0 !important;
}

.u-z-1 {
  z-index: 1 !important;
}

.u-z-2 {
  z-index: 2 !important;
}

.u-z-3 {
  z-index: 3 !important;
}

.u-z-4 {
  z-index: 4 !important;
}

.u-z-5 {
  z-index: 5 !important;
}

.u-z-6 {
  z-index: 6 !important;
}

.u-z-9999 {
  z-index: 9999 !important;
}

.u-fl-n {
  float: none !important;
}

.u-fl-l {
  float: left !important;
}

.u-fl-r {
  float: right !important;
}

.u-cl-n {
  clear: none !important;
}

.u-cl-l {
  clear: left !important;
}

.u-cl-r {
  clear: right !important;
}

.u-cl-b {
  clear: both !important;
}

.u-d-n {
  display: none !important;
}

.u-d-b {
  display: block !important;
}

.u-d-f {
  display: flex !important;
}

.u-d-if {
  display: inline-flex !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-li {
  display: list-item !important;
}

.u-d-ri {
  display: run-in !important;
}

.u-d-cp {
  display: compact !important;
}

.u-d-tb {
  display: table !important;
}

.u-d-itb {
  display: inline-table !important;
}

.u-d-tbcp {
  display: table-caption !important;
}

.u-d-tbcl {
  display: table-column !important;
}

.u-d-tbclg {
  display: table-column-group !important;
}

.u-d-tbhg {
  display: table-header-group !important;
}

.u-d-tbfg {
  display: table-footer-group !important;
}

.u-d-tbr {
  display: table-row !important;
}

.u-d-tbrg {
  display: table-row-group !important;
}

.u-d-tbc {
  display: table-cell !important;
}

.u-d-rb {
  display: ruby !important;
}

.u-d-rbb {
  display: ruby-base !important;
}

.u-d-rbbg {
  display: ruby-base-group !important;
}

.u-d-rbt {
  display: ruby-text !important;
}

.u-d-rbtg {
  display: ruby-text-group !important;
}

.u-v-v {
  visibility: visible !important;
}

.u-v-h {
  visibility: hidden !important;
}

.u-v-c {
  visibility: collapse !important;
}

.u-ov-v {
  overflow: visible !important;
}

.u-ov-h {
  overflow: hidden !important;
}

.u-ov-s {
  overflow: scroll !important;
}

.u-ov-a {
  overflow: auto !important;
}

.u-ovx-v {
  overflow-x: visible !important;
}

.u-ovx-h {
  overflow-x: hidden !important;
}

.u-ovx-s {
  overflow-x: scroll !important;
}

.u-ovx-a {
  overflow-x: auto !important;
}

.u-ovy-v {
  overflow-y: visible !important;
}

.u-ovy-h {
  overflow-y: hidden !important;
}

.u-ovy-s {
  overflow-y: scroll !important;
}

.u-ovy-a {
  overflow-y: auto !important;
}

.u-bxz-cb {
  box-sizing: content-box !important;
}

.u-bxz-bb {
  box-sizing: border-box !important;
}

.u-bxsh-n {
  box-shadow: none !important;
}

.u-m-a {
  margin: auto !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-m-0_a {
  margin: 0 auto !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 0.2rem !important;
}

.u-mt-sm {
  margin-top: 1rem !important;
}

.u-mt-md {
  margin-top: 2.4rem !important;
}

.u-mt-lg {
  margin-top: 3.4rem !important;
}

.u-mt-xl {
  margin-top: 9rem !important;
}

.u-mt-xxl {
  margin-top: 4rem !important;
}

.u-mr-a {
  margin-right: auto !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-xs {
  margin-right: 0.2rem !important;
}

.u-mr-sm {
  margin-right: 1rem !important;
}

.u-mr-md {
  margin-right: 2.4rem !important;
}

.u-mr-lg {
  margin-right: 3.4rem !important;
}

.u-mr-xl {
  margin-right: 9rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 0.2rem !important;
}

.u-mb-sm {
  margin-bottom: 1rem !important;
}

.u-mb-md {
  margin-bottom: 2.4rem !important;
}

.u-mb-lg {
  margin-bottom: 3.4rem !important;
}

.u-mb-l {
  margin-bottom: 6rem !important;
}

.u-mb-xl {
  margin-bottom: 9rem !important;
}

.u-ml-a {
  margin-left: auto !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-xs {
  margin-left: 0.2rem !important;
}

.u-ml-sm {
  margin-left: 1rem !important;
}

.u-ml-md {
  margin-left: 2.4rem !important;
}

.u-ml-lg {
  margin-left: 3.4rem !important;
}

.u-ml-xl {
  margin-left: 9rem !important;
}

.u-p-0 {
  padding: 0 !important;
}

.u-p-xs {
  padding: 0.2rem !important;
}

.u-p-sm {
  padding: 1rem !important;
}

.u-p-md {
  padding: 2.4rem !important;
}

.u-p-lg {
  padding: 3.4rem !important;
}

.u-p-xl {
  padding: 9rem !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 0.2rem !important;
}

.u-pt-sm {
  padding-top: 1rem !important;
}

.u-pt-md {
  padding-top: 2.4rem !important;
}

.u-pt-lg {
  padding-top: 3.4rem !important;
}

.u-pt-xl {
  padding-top: 9rem !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-xs {
  padding-right: 0.2rem !important;
}

.u-pr-sm {
  padding-right: 1rem !important;
}

.u-pr-md {
  padding-right: 2.4rem !important;
}

.u-pr-lg {
  padding-right: 3.4rem !important;
}

.u-pr-xl {
  padding-right: 9rem !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 0.2rem !important;
}

.u-pb-sm {
  padding-bottom: 1rem !important;
}

.u-pb-md {
  padding-bottom: 2.4rem !important;
}

.u-pb-lg {
  padding-bottom: 3.4rem !important;
}

.u-pb-xl {
  padding-bottom: 9rem !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-xs {
  padding-left: 0.2rem !important;
}

.u-pl-sm {
  padding-left: 1rem !important;
}

.u-pl-md {
  padding-left: 2.4rem !important;
}

.u-pl-lg {
  padding-left: 3.4rem !important;
}

.u-pl-xl {
  padding-left: 9rem !important;
}

.u-w-a {
  width: auto !important;
}

.u-w-0 {
  width: 0 !important;
}

.u-w-1p {
  width: 1% !important;
}

.u-w-10p {
  width: 10% !important;
}

.u-w-20p {
  width: 20% !important;
}

.u-w-25p {
  width: 25% !important;
}

.u-w-30p {
  width: 30% !important;
}

.u-w-33p {
  width: 33% !important;
}

.u-w-40p {
  width: 40% !important;
}

.u-w-50p {
  width: 50% !important;
}

.u-w-60p {
  width: 60% !important;
}

.u-w-66p {
  width: 66% !important;
}

.u-w-70p {
  width: 70% !important;
}

.u-w-75p {
  width: 75% !important;
}

.u-w-80p {
  width: 80% !important;
}

.u-w-90p {
  width: 90% !important;
}

.u-w-100p {
  width: 100% !important;
}

.u-h-a {
  height: auto !important;
}

.u-h-0 {
  height: 0 !important;
}

.u-h-100p {
  height: 100% !important;
}

.u-maw-n {
  max-width: none !important;
}

.u-maw-1p {
  max-width: 1% !important;
}

.u-maw-10p {
  max-width: 10% !important;
}

.u-maw-20p {
  max-width: 20% !important;
}

.u-maw-25p {
  max-width: 25% !important;
}

.u-maw-30p {
  max-width: 30% !important;
}

.u-maw-33p {
  max-width: 33% !important;
}

.u-maw-40p {
  max-width: 40% !important;
}

.u-maw-50p {
  max-width: 50% !important;
}

.u-maw-60p {
  max-width: 60% !important;
}

.u-maw-66p {
  max-width: 66% !important;
}

.u-maw-70p {
  max-width: 70% !important;
}

.u-maw-75p {
  max-width: 75% !important;
}

.u-maw-80p {
  max-width: 80% !important;
}

.u-maw-90p {
  max-width: 90% !important;
}

.u-maw-100p {
  max-width: 100% !important;
}

.u-mah-n {
  max-height: none !important;
}

.u-mah-100p {
  max-height: 100% !important;
}

.u-miw-0 {
  min-width: 0 !important;
}

.u-mih-0 {
  min-height: 0 !important;
}

.u-ol-n {
  outline: none !important;
}

.u-olw-tn {
  outline-width: thin !important;
}

.u-olw-md {
  outline-width: medium !important;
}

.u-olw-tc {
  outline-width: thick !important;
}

.u-ols-n {
  outline-style: none !important;
}

.u-ols-dt {
  outline-style: dotted !important;
}

.u-ols-ds {
  outline-style: dashed !important;
}

.u-ols-s {
  outline-style: solid !important;
}

.u-ols-db {
  outline-style: double !important;
}

.u-ols-g {
  outline-style: groove !important;
}

.u-ols-r {
  outline-style: ridge !important;
}

.u-ols-i {
  outline-style: inset !important;
}

.u-ols-o {
  outline-style: outset !important;
}

.u-olc-i {
  outline-color: invert !important;
}

.u-bfv-h {
  backface-visibility: hidden !important;
}

.u-bfv-v {
  backface-visibility: visible !important;
}

.u-c-i {
  color: inherit !important;
}

.u-c-white {
  color: #ffffff !important;
}

.u-c-silver {
  color: #dddddd !important;
}

.u-c-gray-light {
  color: #f3f3f3 !important;
}

.u-c-gray {
  color: #898989 !important;
}

.u-c-gray-dark {
  color: #333 !important;
}

.u-c-black {
  color: #111111 !important;
}

.u-c-navy {
  color: #001f3f !important;
}

.u-c-blue {
  color: #0074d9 !important;
}

.u-c-aqua {
  color: #7fdbff !important;
}

.u-c-teal {
  color: #39cccc !important;
}

.u-c-olive {
  color: #3d9970 !important;
}

.u-c-green {
  color: #2ecc40 !important;
}

.u-c-lime {
  color: #01ff70 !important;
}

.u-c-yellow {
  color: #eeaa55 !important;
}

.u-c-orange {
  color: #ff851b !important;
}

.u-c-red {
  color: #ff4136 !important;
}

.u-c-maroon {
  color: #85144b !important;
}

.u-c-fuchsia {
  color: #f012be !important;
}

.u-c-purple {
  color: #b10dc9 !important;
}

.u-c-primary {
  color: #0275d8 !important;
}

.u-c-success {
  color: #5cb85c !important;
}

.u-c-info {
  color: #5bc0de !important;
}

.u-c-warning {
  color: #f0ad4e !important;
}

.u-c-danger {
  color: #d9534f !important;
}

.u-tbl-a {
  table-layout: auto !important;
}

.u-tbl-f {
  table-layout: fixed !important;
}

.u-lis-n {
  list-style: none !important;
}

.u-lisp-i {
  list-style-position: inside !important;
}

.u-lisp-o {
  list-style-position: outside !important;
}

.u-list-n {
  list-style-type: none !important;
}

.u-list-d {
  list-style-type: disc !important;
}

.u-list-c {
  list-style-type: circle !important;
}

.u-list-s {
  list-style-type: square !important;
}

.u-list-dc {
  list-style-type: decimal !important;
}

.u-list-dclz {
  list-style-type: decimal-leading-zero !important;
}

.u-list-lr {
  list-style-type: lower-roman !important;
}

.u-list-ur {
  list-style-type: upper-roman !important;
}

.u-lisi-n {
  list-style-image: none !important;
}

.u-va-sup {
  vertical-align: super !important;
}

.u-va-t {
  vertical-align: top !important;
}

.u-va-tt {
  vertical-align: text-top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-bl {
  vertical-align: baseline !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

.u-va-tb {
  vertical-align: text-bottom !important;
}

.u-va-sub {
  vertical-align: sub !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-o {
  text-decoration: overline !important;
}

.u-td-l {
  text-decoration: line-through !important;
}

.u-te-n {
  text-emphasis: none !important;
}

.u-te-ac {
  text-emphasis: accent !important;
}

.u-te-dt {
  text-emphasis: dot !important;
}

.u-te-c {
  text-emphasis: circle !important;
}

.u-te-ds {
  text-emphasis: disc !important;
}

.u-te-b {
  text-emphasis: before !important;
}

.u-te-a {
  text-emphasis: after !important;
}

.u-ti-0 {
  text-indent: 0 !important;
}

.u-ti--9999 {
  text-indent: -9999px !important;
}

.u-tov-e {
  text-overflow: ellipsis !important;
}

.u-tov-c {
  text-overflow: clip !important;
}

.u-tt-n {
  text-transform: none !important;
}

.u-tt-c {
  text-transform: capitalize !important;
}

.u-tt-u {
  text-transform: uppercase !important;
}

.u-tt-l {
  text-transform: lowercase !important;
}

.u-tsh-n {
  text-shadow: none !important;
}

.u-lh-nm {
  line-height: normal !important;
}

.u-lh-i {
  line-height: inherit !important;
}

.u-lh-0 {
  line-height: 0 !important;
}

.u-lh-1 {
  line-height: 1 !important;
}

.u-lh-2 {
  line-height: 2 !important;
}

.u-lh-3 {
  line-height: 3 !important;
}

.u-lh-4 {
  line-height: 4 !important;
}

.u-lh-5 {
  line-height: 5 !important;
}

.u-lh-6 {
  line-height: 6 !important;
}

.u-lh-xs {
  line-height: 1.25 !important;
}

.u-lh-sm {
  line-height: 1.33 !important;
}

.u-lh-md {
  line-height: 1.5 !important;
}

.u-lh-lg {
  line-height: 1.75 !important;
}

.u-lh-xl {
  line-height: 2 !important;
}

.u-whs-nm {
  white-space: normal !important;
}

.u-whs-p {
  white-space: pre !important;
}

.u-whs-nw {
  white-space: nowrap !important;
}

.u-whs-pw {
  white-space: pre-wrap !important;
}

.u-whs-pl {
  white-space: pre-line !important;
}

.u-wob-nm {
  word-break: normal !important;
}

.u-wob-k {
  word-break: keep-all !important;
}

.u-wob-ba {
  word-break: break-all !important;
}

.u-wow-nm {
  word-wrap: normal !important;
}

.u-wow-n {
  word-wrap: none !important;
}

.u-wow-u {
  word-wrap: unrestricted !important;
}

.u-wow-s {
  word-wrap: suppress !important;
}

.u-wow-bw {
  word-wrap: break-word !important;
}

.u-lts-nm {
  letter-spacing: normal !important;
}

.u-fw-nm {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-br {
  font-weight: bolder !important;
}

.u-fw-l {
  font-weight: 200 !important;
}

.u-fw-lr {
  font-weight: lighter !important;
}

.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fs-nm {
  font-style: normal !important;
}

.u-fs-i {
  font-style: italic !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-fv-nm {
  font-variant: normal !important;
}

.u-fv-sc {
  font-variant: small-caps !important;
}

.u-ff-s {
  font-family: serif !important;
}

.u-ff-ss {
  font-family: sans-serif !important;
}

.u-ff-c {
  font-family: cursive !important;
}

.u-ff-f {
  font-family: fantasy !important;
}

.u-ff-m {
  font-family: monospace !important;
}

.u-ff-a {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.u-ff-t {
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif !important;
}

.u-ff-v {
  font-family: Verdana, Geneva, sans-serif !important;
}

.u-ff-l {
  font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.u-ff-j {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

.u-op-0 {
  opacity: 0 !important;
}

.u-op-0_1 {
  opacity: 0.1 !important;
}

.u-op-0_2 {
  opacity: 0.2 !important;
}

.u-op-0_3 {
  opacity: 0.3 !important;
}

.u-op-0_4 {
  opacity: 0.4 !important;
}

.u-op-0_5 {
  opacity: 0.5 !important;
}

.u-op-0_6 {
  opacity: 0.6 !important;
}

.u-op-0_7 {
  opacity: 0.7 !important;
}

.u-op-0_8 {
  opacity: 0.8 !important;
}

.u-op-0_9 {
  opacity: 0.9 !important;
}

.u-op-1 {
  opacity: 1 !important;
}

.u-rsz-n {
  resize: none !important;
}

.u-rsz-b {
  resize: both !important;
}

.u-rsz-h {
  resize: horizontal !important;
}

.u-rsz-v {
  resize: vertical !important;
}

.u-cur-a {
  cursor: auto !important;
}

.u-cur-d {
  cursor: default !important;
}

.u-cur-c {
  cursor: crosshair !important;
}

.u-cur-ha {
  cursor: hand !important;
}

.u-cur-he {
  cursor: help !important;
}

.u-cur-m {
  cursor: move !important;
}

.u-cur-p {
  cursor: pointer !important;
}

.u-cur-t {
  cursor: text !important;
}

.u-fxd-r {
  flex-direction: row !important;
}

.u-fxd-rr {
  flex-direction: row-reverse !important;
}

.u-fxd-c {
  flex-direction: column !important;
}

.u-fxd-cr {
  flex-direction: column-reverse !important;
}

.u-fxw-n {
  flex-wrap: nowrap !important;
}

.u-fxw-w {
  flex-wrap: wrap !important;
}

.u-fxw-wr {
  flex-wrap: wrap-reverse !important;
}

.u-jc-fs {
  justify-content: flex-start !important;
}

.u-jc-fe {
  justify-content: flex-end !important;
}

.u-jc-c {
  justify-content: center !important;
}

.u-jc-sb {
  justify-content: space-between !important;
}

.u-jc-sa {
  justify-content: space-around !important;
}

.u-ai-fs {
  align-items: flex-start !important;
}

.u-ai-fe {
  align-items: flex-end !important;
}

.u-ai-c {
  align-items: center !important;
}

.u-ai-b {
  align-items: baseline !important;
}

.u-ai-s {
  align-items: stretch !important;
}

.u-ac-fs {
  align-content: flex-start !important;
}

.u-ac-fe {
  align-content: flex-end !important;
}

.u-ac-c {
  align-content: center !important;
}

.u-ac-sb {
  align-content: space-between !important;
}

.u-ac-sa {
  align-content: space-around !important;
}

.u-ac-s {
  align-content: stretch !important;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
