@charset "UTF-8";
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  font-size: inherit;
}

@-webkit-keyframes visual_scale {
  from {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
  }
}

@keyframes visual_scale {
  from {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
  }
}

@-webkit-keyframes visual_translate {
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: 100%;
  }
}

@keyframes visual_translate {
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: 100%;
  }
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  height: 100%;
  min-width: 1040px;
  font-family: "游ゴシック Medium", Yu Gothic Medium, YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  background: #fff;
  color: #111;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  position: relative;
}

@media screen and (max-width: 739px) {
  body {
    min-width: 320px;
  }
}

@media screen and (max-width: 739px) {
  body {
    font-size: 3.333vw;
  }
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

svg {
  -ms-transform: translate(0, 0);
}

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

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 739px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.pc {
  display: block !important;
}

@media screen and (max-width: 739px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 739px) {
  .sp {
    display: block !important;
  }
}

.pc-inline {
  display: inline !important;
}

@media screen and (max-width: 739px) {
  .pc-inline {
    display: none !important;
  }
}

.sp-inline {
  display: none !important;
}

@media screen and (max-width: 739px) {
  .sp-inline {
    display: inline !important;
  }
}

@media screen and (min-width: 740px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 739px) {
  .sp-none {
    display: none !important;
  }
}

input,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  font-family: "游ゴシック Medium", Yu Gothic Medium, YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 739px) {
  input,
  textarea,
  select {
    font-size: 1.6rem;
  }
}

button {
  border: none;
  cursor: pointer;
  font: inherit;
  font-family: "游ゴシック Medium", Yu Gothic Medium, YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

select::-ms-expand {
  display: none;
}

.js-slick-mv {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.js-slick-mv.slick-initialized {
  visibility: visible;
  opacity: 1;
}

body a:hover, body a:active, body a:focus {
  color: initial;
  text-decoration: none;
}

.wrap_footer:before {
  display: none !important;
}

.head_search {
  display: none !important;
}

#header,
#footer {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#header *,
#footer * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.js-sp-menu-button {
  cursor: pointer;
}

#scrollUp {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.sp-menu-open #scrollUp {
  visibility: hidden;
  opacity: 0;
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

[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;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: .7;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .7;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: inherit;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "";
}

[dir="rtl"] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "";
}

[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: .7;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "○";
  width: 20px;
  height: 20px;
  font-size: 1.6rem;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.js-slick-mv .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  bottom: -35px;
}

@media screen and (max-width: 739px) {
  .js-slick-mv .slick-dots {
    bottom: -7.08333vw;
  }
}

.js-slick-mv .slick-dots li {
  display: block;
  width: 50px;
  height: 4px;
  margin: 0 7px;
}

@media screen and (max-width: 739px) {
  .js-slick-mv .slick-dots li {
    width: 10.41667vw;
    height: 0.83333vw;
    margin: 0 1.45833vw;
  }
}

.js-slick-mv .slick-dots li button {
  width: 50px;
  height: 4px;
  background: #fff;
  border: 1px solid #000;
  padding: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .js-slick-mv .slick-dots li button {
    width: 10.41667vw;
    height: 0.83333vw;
    border-width: 0.10417vw;
  }
}

.js-slick-mv .slick-dots li button:before {
  content: none;
}

.js-slick-mv .slick-dots li.slick-active button {
  background: #000;
}

.js-slick-mv.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .js-slick-mv.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}

.js-slick-voice .slick-prev,
.js-slick-voice .slick-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-prev,
  .js-slick-voice .slick-next {
    width: 2.5vw;
    height: 4.375vw;
  }
}

.js-slick-voice .slick-prev:before,
.js-slick-voice .slick-next:before {
  content: "";
  display: block;
  width: 50px;
  height: 90px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-prev:before,
  .js-slick-voice .slick-next:before {
    width: 2.5vw;
    height: 4.375vw;
  }
}

.js-slick-voice .slick-prev:hover,
.js-slick-voice .slick-next:hover {
  opacity: .7;
}

.js-slick-voice .slick-prev {
  left: -70px;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-prev {
    left: -0.52083vw;
  }
}

.js-slick-voice .slick-prev:before {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_left.png");
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-prev:before {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_left_black.svg");
    background-size: cover;
  }
}

.js-slick-voice .slick-next {
  right: -70px;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-next {
    right: -0.52083vw;
  }
}

.js-slick-voice .slick-next:before {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_right.png");
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-next:before {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_right_black.svg");
    background-size: cover;
  }
}

.js-slick-voice .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  bottom: -35px;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-dots {
    bottom: -7.08333vw;
  }
}

.js-slick-voice .slick-dots li {
  display: block;
  width: 50px;
  height: 4px;
  margin: 0 7px;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-dots li {
    width: 10.41667vw;
    height: 0.83333vw;
    margin: 0 1.45833vw;
  }
}

.js-slick-voice .slick-dots li button {
  width: 50px;
  height: 4px;
  background: #fff;
  border: 1px solid #000;
  padding: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-dots li button {
    width: 10.41667vw;
    height: 0.83333vw;
    border-width: 0.10417vw;
  }
}

.js-slick-voice .slick-dots li button:before {
  content: none;
}

.js-slick-voice .slick-dots li.slick-active button {
  background: #000;
}

.js-slick-voice.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .js-slick-voice.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 739px) {
  .js-slick-voice .slick-dots {
    bottom: -3.125vw;
  }
}

.js-slick-check-slide li {
  float: none !important;
}

.js-slick-check-slide .slick-prev,
.js-slick-check-slide .slick-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-prev,
  .js-slick-check-slide .slick-next {
    width: 2.5vw;
    height: 4.375vw;
  }
}

.js-slick-check-slide .slick-prev:before,
.js-slick-check-slide .slick-next:before {
  content: "";
  display: block;
  width: 50px;
  height: 90px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-prev:before,
  .js-slick-check-slide .slick-next:before {
    width: 2.5vw;
    height: 4.375vw;
  }
}

.js-slick-check-slide .slick-prev:hover,
.js-slick-check-slide .slick-next:hover {
  opacity: .7;
}

.js-slick-check-slide .slick-prev {
  left: -70px;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-prev {
    left: -0.52083vw;
  }
}

.js-slick-check-slide .slick-prev:before {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_left.png");
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-prev:before {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_left_black.svg");
    background-size: cover;
  }
}

.js-slick-check-slide .slick-next {
  right: -70px;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-next {
    right: -0.52083vw;
  }
}

.js-slick-check-slide .slick-next:before {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_right.png");
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-next:before {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_right_black.svg");
    background-size: cover;
  }
}

.js-slick-check-slide .slick-prev {
  left: -20px;
  z-index: 600;
}

.js-slick-check-slide .slick-next {
  right: -20px;
  z-index: 600;
}

.js-slick-check-slide .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  bottom: -20px;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-dots {
    bottom: -3.125vw;
  }
}

.js-slick-check-slide .slick-dots li {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-dots li {
    width: 1.5625vw;
    height: 1.5625vw;
    margin: 0 1.04167vw;
  }
}

.js-slick-check-slide .slick-dots li button {
  border-radius: 30px;
  width: 10px;
  height: 10px;
  background: #dddddd;
  padding: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide .slick-dots li button {
    width: 1.5625vw;
    height: 1.5625vw;
    border-width: 0.10417vw;
  }
}

.js-slick-check-slide .slick-dots li button:before {
  content: none;
}

.js-slick-check-slide .slick-dots li.slick-active button {
  background: #000;
}

.js-slick-check-slide.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .js-slick-check-slide.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}

.l-main {
  min-width: 1040px;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}

@media screen and (max-width: 739px) {
  .l-main {
    min-width: 0;
    padding-top: 15.625vw;
  }
}

.l-header li {
  float: none;
}

.l-header__top {
  width: 100%;
  height: 80px;
  padding-left: 16px;
  padding-right: 20px;
  background: #fff;
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1000;
}

@media screen and (max-width: 739px) {
  .l-header__top {
    height: 15.625vw;
    padding-left: 3.125vw;
    padding-right: 0;
  }
}

.l-header__top > .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-left: -10px;
  margin-right: -10px;
}

@media screen and (max-width: 739px) {
  .l-header__top > .wrap {
    margin-left: -1.04167vw;
    margin-right: -1.04167vw;
  }
}

.l-header__logo {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media screen and (max-width: 739px) {
  .l-header__logo {
    padding-left: 1.04167vw;
    padding-right: 1.04167vw;
  }
}

.l-header__logo .logo {
  display: inline-block;
}

@media screen and (max-width: 739px) {
  .l-header__logo .logo img {
    width: 43.75vw;
  }
}

.l-header__navi {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .l-header__navi {
    display: none;
  }
}

.l-header__bukken {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .l-header__bukken {
    padding-left: 1.04167vw;
    padding-right: 1.04167vw;
  }
}

.l-header__bukken .c-button__round {
  position: relative;
  width: 208px;
  height: 40px;
}

@media screen and (max-width: 739px) {
  .l-header__bukken .c-button__round {
    width: 28.02083vw;
    height: 8.33333vw;
    letter-spacing: .05em;
  }
}

.l-header__bukken .c-button__round:before {
  content: "";
  background: url("/hebel-rooms/feature/newsafole/assets/images/icon_search.svg") no-repeat;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 739px) {
  .l-header__bukken .c-button__round:before {
    position: static;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-right: .8em;
  }
}

.l-header__bukken .c-button__round:hover:before {
  background: url("/hebel-rooms/feature/newsafole/assets/images/icon_search_green.svg") no-repeat;
}

.l-header__menu {
  display: none;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .l-header__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 5.20833vw;
    padding-right: 5.20833vw;
  }
}

.l-header__menu > .wrap {
  width: 5.20833vw;
  height: 4.16667vw;
  position: relative;
  -webkit-transition: 1s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: 1s cubic-bezier(0, 0, 0.58, 1);
  transition: 1s cubic-bezier(0, 0, 0.58, 1);
}

.l-header__menu span {
  display: block;
  width: 100%;
  height: 0.41667vw;
  background: #000;
  -webkit-transition: 0.6s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: 0.6s cubic-bezier(0, 0, 0.58, 1);
  transition: 0.6s cubic-bezier(0, 0, 0.58, 1);
}

.l-header__menu span:nth-child(1) {
  margin-bottom: 1.45833vw;
}

.l-header__menu span:nth-child(2) {
  margin-bottom: 1.45833vw;
}

.l-header__menu span:nth-child(3) {
  margin-bottom: 0;
}

.sp-menu-open .l-header__menu > .wrap {
  -webkit-transform: translateY(1.875vw);
  -ms-transform: translateY(1.875vw);
  transform: translateY(1.875vw);
}

.sp-menu-open .l-header__menu span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: -0.20833vw;
}

.sp-menu-open .l-header__menu span:nth-child(2) {
  opacity: 0;
  margin-bottom: -0.41667vw;
}

.sp-menu-open .l-header__menu span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-gnav li {
  float: none;
}

.l-gnav__navlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-gnav__navlist .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  height: 100%;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.l-gnav__navlist .item > .wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.l-gnav__navlist .item > .wrap:before {
  content: "";
  display: block;
  background: url("/hebel-rooms/feature/newsafole/assets/images/icon_arrow_green.svg") no-repeat center center;
  width: 6px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
  -o-transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
  transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
}

.l-gnav__navlist .item .label-top {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: .2em;
  font-weight: bold;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.l-gnav__navlist .item .label-bottom {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: .05em;
  font-weight: bold;
  color: #848484;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.l-gnav__navlist .item:before {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  border-left: 1px dotted #000;
}

.l-gnav__navlist .item:last-child:after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  border-right: 1px dotted #000;
}

.l-gnav__navlist .item.is-active .label-top, .l-gnav__navlist .item:hover .label-top {
  color: #51c3a4;
}

.l-gnav__navlist .item.is-active .label-bottom, .l-gnav__navlist .item:hover .label-bottom {
  color: #51c3a4;
}

.l-gnav__navlist .item.is-active > .wrap:before, .l-gnav__navlist .item:hover > .wrap:before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotateX(540deg);
  transform: translateY(-50%) rotateX(540deg);
}

.l-gnav__navlist-sp .item {
  width: 100%;
  text-align: center;
}

.l-gnav__navlist-sp .item:not(:last-child) {
  margin-bottom: 8.85417vw;
}

.l-gnav__navlist-sp .item > .wrap {
  display: inline-block;
}

.l-gnav__navlist-sp .item .label-top {
  font-size: 3.75vw;
  line-height: 1;
  margin-bottom: 2.08333vw;
}

.l-gnav__navlist-sp .item .label-bottom {
  font-size: 2.91667vw;
  line-height: 1;
}

.l-gnav__sp {
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 150vh;
  padding-top: 15.625vw;
  background: #ebf4f2;
  z-index: 800;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (min-width: 740px) {
  .l-gnav__sp {
    display: none !important;
  }
}

.sp-menu-open .l-gnav__sp {
  visibility: visible;
  opacity: 1;
}

.l-gnav__sp__wrap {
  width: 100%;
  height: calc(100vh - 15.625vw);
  overflow: auto;
}

.l-gnav__sp__wrap::-webkit-scrollbar {
  display: none;
}

.l-gnav__sp__inner {
  width: 100%;
  padding: 9.375vw 8.33333vw;
}

.l-gnav__sp__button {
  margin-top: 11.45833vw;
}

.l-gnav__sp__button .c-button__round {
  width: 100%;
  height: 10.41667vw;
  border: 1px solid #000;
  font-size: 3.75vw;
  color: #000;
  background: transparent;
  position: relative;
}

.l-gnav__sp__button .c-button__round:before {
  content: "";
  display: block;
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_search_black.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 3.64583vw;
  height: 3.64583vw;
  position: absolute;
  left: 4.375vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-gnav__sp__button .c-button__round:hover {
  background: #000;
  color: #fff;
}

.l-gnav__sp__button .c-button__round:hover:before {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_search.svg");
}

.l-gnav__sp__close {
  margin-top: 11.45833vw;
  text-align: center;
}

.l-gnav__sp__close .close-item {
  display: inline-block;
  font-size: 2.91667vw;
  line-height: 1;
  letter-spacing: .1em;
}

.l-gnav__sp__close .close-item:before {
  content: "";
  display: inline-block;
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/icon_close.svg");
  width: 2.29167vw;
  height: 2.29167vw;
  margin-right: .5em;
}

.c-container {
  min-width: 1040px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 739px) {
  .c-container {
    min-width: 0;
    width: 100%;
    padding-left: 4.1666vw;
    padding-right: 4.1666vw;
  }
}

.c-container--1300 {
  max-width: 1340px;
}

.c-container--900 {
  min-width: 940px;
  max-width: 940px;
}

@media screen and (max-width: 739px) {
  .c-container--900 {
    min-width: 0;
  }
}

.c-container--800 {
  min-width: 840px;
  max-width: 840px;
}

@media screen and (max-width: 739px) {
  .c-container--800 {
    min-width: 0;
  }
}

.c-container--650 {
  min-width: 690px;
  max-width: 690px;
}

@media screen and (max-width: 739px) {
  .c-container--650 {
    min-width: 0;
  }
}

.c-container--520 {
  min-width: 560px;
  max-width: 560px;
}

@media screen and (max-width: 739px) {
  .c-container--520 {
    min-width: 0;
  }
}

.c-container--full {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 739px) {
  .c-container--full {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 739px) {
  .c-container--full-sm {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-section__bottom {
  padding-bottom: 80px;
}

@media screen and (max-width: 739px) {
  .c-section__bottom {
    padding-bottom: 12.5vw;
  }
}

.c-section__both {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 739px) {
  .c-section__both {
    padding-top: 10.41667vw;
    padding-bottom: 12.5vw;
  }
}

.c-row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.c-row .col-2, .c-row .col-3, .c-row .col-4, .c-row .col-5 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.c-row .col-2 {
  width: 50%;
}

.c-row .col-3 {
  width: 33.333%;
}

.c-row .col-4 {
  width: 25%;
}

.c-row .col-5 {
  width: 20%;
}

@media screen and (max-width: 1039px) {
  .c-row .col-md {
    width: 100%;
  }
  .c-row .col-2-md {
    width: 50%;
  }
  .c-row .col-3-md {
    width: 33.333%;
  }
}

@media screen and (max-width: 1039px) {
  .c-row .col-md {
    width: 100%;
  }
  .c-row .col-2-md {
    width: 50%;
  }
  .c-row .col-3-md {
    width: 33.333%;
  }
}

@media screen and (max-width: 739px) {
  .c-row .col-sm {
    width: 100%;
  }
  .c-row .col-2-sm {
    width: 50%;
  }
  .c-row .col-3-sm {
    width: 33.333%;
  }
}

.c-row__left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 739px) {
  .c-row__left-sm {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.c-row__center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 739px) {
  .c-row__center-sm {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.c-row__right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 739px) {
  .c-row__right-sm {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.c-row__start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 739px) {
  .c-row__start-sm {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.c-row__middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 739px) {
  .c-row__middle-sm {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-row__end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 739px) {
  .c-row__end-sm {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.c-row__gutter1 {
  margin-left: -0.5px;
  margin-right: -0.5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter1 {
    margin-left: -0.05208vw;
    margin-right: -0.05208vw;
  }
}

.c-row__gutter1 > * {
  padding-left: 0.5px;
  padding-right: 0.5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter1 > * {
    padding-left: 0.05208vw;
    padding-right: 0.05208vw;
  }
}

.c-row__gutter10 {
  margin-left: -5px;
  margin-right: -5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter10 {
    margin-left: -0.52083vw;
    margin-right: -0.52083vw;
  }
}

.c-row__gutter10 > * {
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter10 > * {
    padding-left: 0.52083vw;
    padding-right: 0.52083vw;
  }
}

.c-row__gutter25 {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter25 {
    margin-left: -1.30208vw;
    margin-right: -1.30208vw;
  }
}

.c-row__gutter25 > * {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter25 > * {
    padding-left: 1.30208vw;
    padding-right: 1.30208vw;
  }
}

.c-row__gutter30 {
  margin-left: -15px;
  margin-right: -15px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter30 {
    margin-left: -1.5625vw;
    margin-right: -1.5625vw;
  }
}

.c-row__gutter30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter30 > * {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
  }
}

.c-row__gutter40 {
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter40 {
    margin-left: -2.08333vw;
    margin-right: -2.08333vw;
  }
}

.c-row__gutter40 > * {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter40 > * {
    padding-left: 2.08333vw;
    padding-right: 2.08333vw;
  }
}

.c-row__gutter50 {
  margin-left: -25px;
  margin-right: -25px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter50 {
    margin-left: -2.60417vw;
    margin-right: -2.60417vw;
  }
}

.c-row__gutter50 > * {
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (max-width: 739px) {
  .c-row__gutter50 > * {
    padding-left: 2.60417vw;
    padding-right: 2.60417vw;
  }
}

.c-row__bottom10 {
  margin-bottom: -10px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom10 {
    margin-bottom: -1.04167vw;
  }
}

.c-row__bottom10 > * {
  margin-bottom: 10px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom10 > * {
    margin-bottom: 1.04167vw;
  }
}

.c-row__bottom20 {
  margin-bottom: -20px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom20 {
    margin-bottom: -2.08333vw;
  }
}

.c-row__bottom20 > * {
  margin-bottom: 20px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom20 > * {
    margin-bottom: 2.08333vw;
  }
}

.c-row__bottom30 {
  margin-bottom: -30px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom30 {
    margin-bottom: -3.125vw;
  }
}

.c-row__bottom30 > * {
  margin-bottom: 30px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom30 > * {
    margin-bottom: 3.125vw;
  }
}

.c-row__bottom40 {
  margin-bottom: -40px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom40 {
    margin-bottom: -4.16667vw;
  }
}

.c-row__bottom40 > * {
  margin-bottom: 40px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom40 > * {
    margin-bottom: 4.16667vw;
  }
}

.c-row__bottom60 {
  margin-bottom: -60px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom60 {
    margin-bottom: -6.25vw;
  }
}

.c-row__bottom60 > * {
  margin-bottom: 60px;
}

@media screen and (max-width: 739px) {
  .c-row__bottom60 > * {
    margin-bottom: 6.25vw;
  }
}

@media screen and (max-width: 739px) {
  .c-row__bottom60-sm {
    margin-bottom: -6.25vw;
  }
}

@media screen and (max-width: 739px) {
  .c-row__bottom60-sm > * {
    margin-bottom: 6.25vw;
  }
}

.c-button__round {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border: 1px solid #51c3a4;
  background: #51c3a4;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-button__round:active, .c-button__round:focus {
  background: inherit;
  color: inherit;
}

.c-button__round:hover {
  background: #fff;
  color: #51c3a4;
}

.c-button__line {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 230px;
  height: 50px;
  border: 1px solid #000;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .c-button__line {
    width: 47.91667vw;
    height: 10.41667vw;
    font-size: 3.75vw;
    border-width: 0.20833vw;
  }
}

.c-button__line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  bottom: -1px;
  right: -1px;
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .c-button__line:before {
    border-right-width: 0.20833vw;
    border-bottom-width: 0.20833vw;
    -webkit-transform: translate(0.625vw, 0.625vw);
    -ms-transform: translate(0.625vw, 0.625vw);
    transform: translate(0.625vw, 0.625vw);
  }
}

.c-button__line:hover {
  background: #000;
  color: #fff;
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
}

.c-button__line:hover:before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.c-heading__image {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 65px;
}

@media screen and (max-width: 739px) {
  .c-heading__image {
    height: 56.25vw;
    margin-bottom: 9.89583vw;
  }
}

.c-heading__image > .inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-heading__image > .inner > .text {
  position: absolute;
  left: 50px;
  bottom: 45px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

@media screen and (max-width: 739px) {
  .c-heading__image > .inner > .text {
    left: 7.29167vw;
  }
}

.c-heading__image[data-head="concept"] {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/head_image_01.jpg");
}

@media screen and (max-width: 739px) {
  .c-heading__image[data-head="concept"] {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/head_image_01_sp.jpg");
  }
  .c-heading__image[data-head="concept"] > .inner > .text {
    width: 58.22917vw;
    bottom: 17.70833vw;
  }
}

.c-heading__image[data-head="features"] {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/head_image_02.jpg");
}

@media screen and (max-width: 739px) {
  .c-heading__image[data-head="features"] {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/head_image_02_sp.jpg");
  }
  .c-heading__image[data-head="features"] > .inner > .text {
    width: 41.35417vw;
    bottom: 8.75vw;
  }
}

.c-heading__large {
  font-size: 2.8rem;
  line-height: 2.14;
  letter-spacing: .24em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 739px) {
  .c-heading__large {
    font-size: 5vw;
    line-height: 2;
  }
}

.c-heading__middle {
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: .1em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4.16667vw;
}

@media screen and (max-width: 739px) {
  .c-heading__middle {
    font-size: 5vw;
  }
}

.c-heading__bold {
  font-size: 2.4rem;
  letter-spacing: .24em;
  font-weight: bold;
}

@media screen and (max-width: 739px) {
  .c-heading__bold {
    font-size: 5vw;
  }
}

.c-heading__eng {
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 739px) {
  .c-heading__eng {
    margin-bottom: 8.33333vw;
  }
  .c-heading__eng img {
    height: 8.14583vw;
  }
}

.c-heading__eng .image {
  margin-bottom: 30px;
}

@media screen and (max-width: 739px) {
  .c-heading__eng .image {
    margin-bottom: 2.60417vw;
  }
}

.c-heading__eng .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-heading__eng .text:before, .c-heading__eng .text:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #000;
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 739px) {
  .c-heading__eng .text:before, .c-heading__eng .text:after {
    width: 6.25vw;
    margin-left: 3.64583vw;
    margin-right: 3.64583vw;
  }
}

.c-heading__eng .text .title {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: .24em;
  font-weight: bold;
}

@media screen and (max-width: 739px) {
  .c-heading__eng .text .title {
    font-size: 5vw;
  }
}

.c-heading__eng .text .title .eng {
  letter-spacing: .075em;
}

.c-heading__eng--white .text:before, .c-heading__eng--white .text:after {
  background: #fff;
}

.c-heading__eng--white .text .title {
  color: #fff;
}

.c-heading__underline {
  font-size: 2.8rem;
  letter-spacing: .24em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

@media screen and (max-width: 739px) {
  .c-heading__underline {
    font-size: 5vw;
    letter-spacing: .05em;
    margin-bottom: 7.29167vw;
  }
}

.c-heading__underline > span {
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 739px) {
  .c-heading__underline > span {
    border-bottom: 0;
  }
}

.c-heading__point-sub {
  font-size: 2.0rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 739px) {
  .c-heading__point-sub {
    font-size: 4.16667vw;
    margin-bottom: 5.20833vw;
  }
}

.c-heading__point-sub .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #bfa25e;
}

.c-heading__point-sub .title:before, .c-heading__point-sub .title:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #bfa25e;
  margin: 0 10px;
}

@media screen and (max-width: 739px) {
  .c-heading__point-sub .title:before, .c-heading__point-sub .title:after {
    width: 6.77083vw;
    margin: 0 1.04167vw;
  }
}

.c-heading__green {
  font-size: 2.0rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 739px) {
  .c-heading__green {
    font-size: 4.16667vw;
    margin-bottom: 5.20833vw;
  }
}

.c-heading__green .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #44b093;
}

.c-heading__green .title:before, .c-heading__green .title:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #44b093;
  margin: 0 10px;
}

@media screen and (max-width: 739px) {
  .c-heading__green .title:before, .c-heading__green .title:after {
    width: 6.77083vw;
    margin: 0 1.04167vw;
  }
}

.c-vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.c-vertical__upright {
  text-orientation: upright;
}

.p-mv {
  margin-bottom: 70px;
}

@media screen and (max-width: 739px) {
  .p-mv {
    margin-bottom: 14.0625vw;
  }
}

.p-mv__slider {
  max-width: 1300px;
  width: 100%;
  height: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 739px) {
  .p-mv__slider {
    height: 137.5vw;
  }
}

.p-mv__item {
  width: 100%;
}

.p-mv__item__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 739px) {
  .p-mv__item__inner {
    display: block;
  }
}

.p-mv__item .col-image {
  width: 100%;
  max-width: 790px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 20px;
  padding-left: 30px;
}

@media screen and (max-width: 739px) {
  .p-mv__item .col-image {
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
}

.p-mv__item .col-image > .wrap {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 740px) {
  .p-mv__item .col-image > .wrap {
    height: 500px;
  }
}

.p-mv__item .col-image > .wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_01.gif") repeat;
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-mv__item .col-image > .wrap:after {
    top: -2.08333vw;
    left: -3.125vw;
  }
}

.p-mv__item .col-image > .wrap .visual {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 739px) {
  .p-mv__item .col-image > .wrap .visual {
    height: auto;
  }
}

@media screen and (min-width: 740px) {
  .p-mv__item .col-image > .wrap .visual > img {
    position: absolute;
    max-width: none;
    width: 760px;
    height: 500px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.p-mv__item .col-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 510px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 739px) {
  .p-mv__item .col-content {
    width: 100%;
    padding-left: 3.125vw;
    padding-right: 3.125vw;
    padding-top: 9.375vw;
  }
}

.p-mv__item--first .col-image {
  max-width: 750px;
  padding-left: 0;
  padding-right: 30px;
}

.p-mv__item--first .col-image > .wrap:after {
  left: auto;
  right: -30px;
}

.p-mv__item--first .col-image .logo {
  display: inline-block;
  position: absolute;
  bottom: 23px;
  right: 25px;
  z-index: 2;
}

.p-mv__item--first .col-content {
  width: 550px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.p-mv__item--left .col-image {
  padding-left: 0;
  padding-right: 30px;
}

.p-mv__item--left .col-image > .wrap:after {
  left: auto;
  right: -30px;
}

.p-mv__item--left .col-content {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.p-mv__item__title {
  text-align: center;
  margin-bottom: 18px;
}

@media screen and (max-width: 739px) {
  .p-mv__item__title {
    margin-bottom: 3.54167vw;
  }
}

.p-mv__item__title > img {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 739px) {
  .p-mv__item__title > img {
    max-width: none;
    width: auto;
    height: 11.04167vw;
  }
}

.p-mv__item__head {
  font-size: 2.8rem;
  line-height: 1.7;
  letter-spacing: .24em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 739px) {
  .p-mv__item__head {
    font-size: 5vw;
    line-height: 1.25;
    margin-bottom: 2.91667vw;
  }
}

.p-mv__item__text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 739px) {
  .p-mv__item__text {
    font-size: 3.33333vw;
  }
}

.p-mv__item__link {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 739px) {
  .p-mv__item__link {
    margin-top: 6.04167vw;
  }
}

.p-mv-feature {
  width: 100%;
  height: 330px;
  margin-bottom: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 739px) {
  .p-mv-feature {
    height: 83.33333vw;
    margin-bottom: 26.04167vw;
  }
}

.p-mv-feature--01 {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_01.jpg");
}

@media screen and (max-width: 739px) {
  .p-mv-feature--01 {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_01_sp.jpg");
  }
}

.p-mv-feature--02 {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_02.jpg");
}

@media screen and (max-width: 739px) {
  .p-mv-feature--02 {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_02_sp.jpg");
  }
}

.p-mv-feature--03 {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_03.jpg");
}

@media screen and (max-width: 739px) {
  .p-mv-feature--03 {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/feature_visual_03_sp.jpg");
  }
}

.p-mv-feature--04 {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/movie_visual.jpg");
}

@media screen and (max-width: 739px) {
  .p-mv-feature--04 {
    background-image: url("/hebel-rooms/feature/newsafole/assets/images/movie_visual_sp.jpg");
  }
}

.p-mv-feature__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-mv-feature__title {
  position: absolute;
  left: 0;
  bottom: -50px;
}

@media screen and (max-width: 739px) {
  .p-mv-feature__title {
    bottom: -15.625vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .p-mv-feature__title img {
    max-width: none;
    width: 75vw;
  }
}

.p-concept {
  position: relative;
}

.p-concept__head {
  margin-bottom: 35px;
}

@media screen and (max-width: 739px) {
  .p-concept__head {
    margin-bottom: 6.25vw;
  }
}

.p-concept__top {
  line-height: 2;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 739px) {
  .p-concept__top {
    margin-bottom: 8.33333vw;
  }
}

.p-concept__carousel {
  padding-bottom: 70px;
}

.p-concept__carousel .item {
  padding-left: 10px;
  padding-right: 10px;
}

.p-concept__bg-pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-concept__bg-pic {
    display: none;
  }
}

.p-concept__bg-pic__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-concept__bg-pic__pic {
  position: absolute;
  top: 0;
  left: 0;
}

.p-concept__bg-pic__pic--right-top {
  top: 0;
  right: 0;
  left: auto;
}

.p-concept__bg-pic__pic--left-bottom {
  left: 0;
  top: 120px;
}

.p-concept__full-image--mb {
  margin-bottom: 50px;
}

@media screen and (max-width: 739px) {
  .p-concept__full-image--mb {
    margin-bottom: 5.20833vw;
  }
}

.p-feature__heading {
  margin-bottom: 60px;
}

@media screen and (max-width: 739px) {
  .p-feature__heading {
    margin-bottom: 7.8125vw;
  }
}

.p-feature__list {
  padding-bottom: 55px;
}

@media screen and (max-width: 739px) {
  .p-feature__list {
    padding-left: 4.16667vw;
    padding-right: 4.16667vw;
    padding-bottom: 8.33333vw;
  }
}

.p-feature__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 739px) {
  .p-feature__list__item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-feature__list__item .col-image {
  margin-right: 25px;
  padding-bottom: 25px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .p-feature__list__item .col-image {
    width: 100%;
    margin-right: 2.08333vw;
    padding-bottom: 2.08333vw;
  }
}

.p-feature__list__item .col-image > .wrap {
  position: relative;
}

.p-feature__list__item .col-image > .wrap:after {
  content: "";
  display: block;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_01.gif") repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -25px;
  right: -25px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-feature__list__item .col-image > .wrap:after {
    bottom: -2.08333vw;
    right: -2.08333vw;
  }
}

.p-feature__list__item .col-content {
  max-width: 385px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media screen and (max-width: 739px) {
  .p-feature__list__item .col-content {
    width: 100%;
    max-width: 100%;
    padding-top: 4.16667vw;
  }
}

.p-feature__list__item:not(:last-child) {
  margin-bottom: 45px;
}

@media screen and (max-width: 739px) {
  .p-feature__list__item:not(:last-child) {
    margin-bottom: 9.375vw;
  }
}

.p-feature__list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-feature__list__item:nth-child(even) .col-image {
  margin-right: 0;
}

.p-feature__list__title {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 739px) {
  .p-feature__list__title img {
    height: 10.625vw;
  }
}

.p-feature__list__head {
  font-size: 2.0rem;
  line-height: 1.5;
  letter-spacing: .24em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 739px) {
  .p-feature__list__head {
    font-size: 4.16667vw;
    margin-bottom: 2.91667vw;
  }
}

.p-feature__list__text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 739px) {
  .p-feature__list__text {
    font-size: 3.33333vw;
  }
}

.p-feature__list__link {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 739px) {
  .p-feature__list__link {
    margin-top: 4.16667vw;
  }
}

@media screen and (max-width: 739px) {
  .p-voice__heading {
    margin-bottom: 4.16667vw;
  }
}

.p-voice__section {
  background: url("/hebel-rooms/feature/newsafole/assets/images/voice_bg_pc.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
}

@media screen and (max-width: 739px) {
  .p-voice__section {
    background: url("/hebel-rooms/feature/newsafole/assets/images/voice_bg_sp.jpg") no-repeat center center;
    padding-top: 6.25vw;
    padding-bottom: 11.45833vw;
  }
}

.p-voice__slide {
  padding-left: -10px;
  padding-right: -10px;
}

@media screen and (max-width: 739px) {
  .p-voice__slide {
    padding-left: 2.08333vw;
    padding-right: 2.08333vw;
  }
}

.p-voice__slide .item {
  background: #fff;
  padding: 40px;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 739px) {
  .p-voice__slide .item {
    padding: 6.25vw;
  }
}

.p-voice__slide__title {
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 739px) {
  .p-voice__slide__title {
    font-size: 3.75vw;
  }
}

.p-voice__slide__text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: .05em;
}

@media screen and (max-width: 739px) {
  .p-voice__slide__text {
    font-size: 3.33333vw;
    line-height: 1.7;
  }
}

.p-series__section {
  background: #ebf4f2;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 739px) {
  .p-series__section {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
}

.p-series__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -16.5px;
  margin-right: -16.5px;
  margin-bottom: -30px;
}

@media screen and (max-width: 739px) {
  .p-series__list {
    margin-left: -1.5625vw;
    margin-right: -1.5625vw;
    margin-bottom: -6.77083vw;
  }
}

.p-series__list .item {
  width: calc(100% / 4);
  padding-left: 16.5px;
  padding-right: 16.5px;
  margin-bottom: 30px;
}

@media screen and (max-width: 739px) {
  .p-series__list .item {
    width: calc(100% / 2);
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    margin-bottom: 6.77083vw;
  }
}

.p-series__list .item .image {
  margin-right: 9px;
  padding-bottom: 9px;
  position: relative;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .image {
    margin-right: 0.9375vw;
    padding-bottom: 0.9375vw;
  }
}

.p-series__list .item .image .for-rent {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -17px;
  left: -15px;
  z-index: 5;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .image .for-rent {
    width: 12.29167vw;
    height: 12.29167vw;
    top: -3.64583vw;
    left: -3.125vw;
  }
}

.p-series__list .item .image .inner {
  position: relative;
  z-index: 0;
}

.p-series__list .item .image .inner:before {
  content: "+ 物件情報をみる";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 3;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .image .inner:before {
    font-size: 2.70833vw;
  }
}

.p-series__list .item .image .inner:after {
  content: "";
  display: block;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_02.gif") repeat bottom right;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -9px;
  right: -9px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .image .inner:after {
    bottom: -0.9375vw;
    right: -0.9375vw;
  }
}

.p-series__list .item .image .inner .img-wrap {
  overflow: hidden;
}

.p-series__list .item .image .inner .img-wrap img {
  width: 100%;
  display: block;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.p-series__list .item .detail .title {
  min-height: 63px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: bold;
  color: #44b093;
  padding-top: 10px;
  padding-bottom: 5px;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .detail .title {
    min-height: 8.54167vw;
    font-size: 2.91667vw;
    padding-top: 1.04167vw;
    padding-bottom: 0.52083vw;
  }
}

.p-series__list .item .detail .text {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: .04em;
}

@media screen and (max-width: 739px) {
  .p-series__list .item .detail .text {
    font-size: 2.70833vw;
  }
}

.p-series__list .item > .wrap:hover .image .inner:before {
  visibility: visible;
  opacity: 1;
}

.p-series__list .item > .wrap:hover .image .inner .img-wrap img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.p-elem__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.p-elem__row > * {
  max-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 739px) {
  .p-elem__row > *:not(:last-child) {
    margin-bottom: 7.29167vw;
  }
}

.p-elem__row--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-elem__row--middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 739px) {
  .p-elem__col {
    width: 100%;
  }
}

.p-elem__col--70p {
  width: 70%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--70p {
    width: 100%;
  }
}

.p-elem__col--60p {
  width: 60%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--60p {
    width: 100%;
  }
}

.p-elem__col--50p {
  width: 50%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--50p {
    width: 100%;
  }
}

.p-elem__col--40p {
  width: 40%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--40p {
    width: 100%;
  }
}

.p-elem__col--30p {
  width: 30%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--30p {
    width: 100%;
  }
}

.p-elem__col--33p {
  width: 33.333%;
}

@media screen and (max-width: 739px) {
  .p-elem__col--33p {
    width: 100%;
  }
}

.p-elem__col-sm {
  width: 50%;
}

.p-elem__col-sm--70p {
  width: 70%;
}

.p-elem__col-sm--60p {
  width: 60%;
}

.p-elem__col-sm--50p {
  width: 50%;
}

.p-elem__col-sm--40p {
  width: 40%;
}

.p-elem__col-sm--30p {
  width: 30%;
}

.p-elem__col-sm--33p {
  width: 33.333%;
}

@media screen and (max-width: 739px) {
  .p-elem__col-only-sm {
    width: 50%;
  }
  .p-elem__col-only-sm--70p {
    width: 70%;
  }
  .p-elem__col-only-sm--60p {
    width: 60%;
  }
  .p-elem__col-only-sm--50p {
    width: 50%;
  }
  .p-elem__col-only-sm--40p {
    width: 40%;
  }
  .p-elem__col-only-sm--30p {
    width: 30%;
  }
  .p-elem__col-only-sm--33p {
    width: 33.333%;
  }
}

.p-elem__text {
  line-height: 2;
}

.p-elem__text--center {
  text-align: center;
}

@media screen and (max-width: 739px) {
  .p-elem__text--center-sm {
    text-align: center;
  }
}

.p-elem__order--first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

@media screen and (max-width: 739px) {
  .p-elem__order--first-sm {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
}

.p-elem__order--01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-elem__order--02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-elem__image--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-elem__image--middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-elem__image-shadow {
  margin-right: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 739px) {
  .p-elem__image-shadow {
    margin-right: 2.08333vw;
    margin-bottom: 2.08333vw;
  }
}

.p-elem__image-shadow:before {
  content: "";
  display: block;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_01.gif") repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-elem__image-shadow:before {
    right: -2.08333vw;
    bottom: -2.08333vw;
  }
}

@media screen and (max-width: 739px) {
  .p-elem__image-shadow:not(.shadow-sm) {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 4.16667vw;
  }
}

@media screen and (max-width: 739px) {
  .p-elem__image-shadow:not(.shadow-sm):before {
    content: none;
  }
}

.p-point {
  position: relative;
}

.p-point__bg {
  background: #f6faf9;
}

.p-point__title {
  position: absolute;
  top: -30px;
  left: calc(50% - 300px);
  -webkit-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}

@media screen and (max-width: 739px) {
  .p-point__title {
    top: -8.33333vw;
    left: 4.16667vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.p-point__title > img {
  width: 163px;
}

@media screen and (max-width: 739px) {
  .p-point__title > img {
    width: 32.1875vw;
  }
}

.p-point__picture {
  width: 100%;
}

.p-point__picture .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-point__picture .item:not(:last-child) {
  margin-bottom: 10px;
}

.p-point__picture .item > *:not(:last-child) {
  margin-right: 10px;
}

.p-point__picture .image-full {
  max-width: 100%;
}

.p-point__picture .image-short {
  max-width: 340px;
}

.p-point__picture .image-long {
  max-width: 690px;
}

.p-point__picture .image-half {
  max-width: 515px;
}

@media screen and (max-width: 739px) {
  .p-point__image-full {
    margin-bottom: 4.16667vw;
  }
}

.p-point__check {
  margin-top: 35px;
}

.p-point__text {
  margin-bottom: 40px;
}

@media screen and (max-width: 739px) {
  .p-point__text {
    margin-bottom: 4.16667vw;
  }
}

.p-point__slide {
  margin-top: 8.33333vw;
}

@media screen and (max-width: 739px) {
  .p-point__slide__wrap {
    padding: 0 8.33333vw;
  }
}

.p-point__neg-mt {
  margin-top: -16px;
}

@media screen and (max-width: 739px) {
  .p-point__neg-mt {
    margin-top: 6.25vw;
  }
}

.p-point__block {
  margin-bottom: 40px;
}

@media screen and (max-width: 739px) {
  .p-point__block {
    margin-bottom: 6.25vw;
  }
}

.p-service__bg-pattern {
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_03.gif") repeat;
}

.p-service__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 739px) {
  .p-service__row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-service__col-image {
  padding-right: 45px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .p-service__col-image {
    width: 100%;
    padding-right: 0;
  }
  .p-service__col-image .image {
    text-align: center;
  }
}

.p-service__col-text {
  max-width: 320px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .p-service__col-text {
    max-width: none;
    width: 100%;
  }
}

.p-service__heading {
  text-align: center;
}

@media screen and (max-width: 739px) {
  .p-service__heading {
    margin-top: 6.25vw;
    margin-bottom: 4.6875vw;
  }
}

.p-menu__heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

@media screen and (max-width: 739px) {
  .p-menu__heading {
    margin-bottom: 7.29167vw;
  }
}

.p-menu__heading__sub {
  display: inline-block;
  font-size: 2.0rem;
  letter-spacing: .24em;
  border-bottom: 1px solid #bfa25e;
  color: #bfa25e;
  line-height: 2;
  margin-bottom: 15px;
}

@media screen and (max-width: 739px) {
  .p-menu__heading__sub {
    margin-bottom: 3.125vw;
    font-size: 3.54167vw;
  }
}

.p-menu__heading__main {
  font-size: 3.2rem;
  letter-spacing: .24em;
}

@media screen and (max-width: 739px) {
  .p-menu__heading__main {
    font-size: 5vw;
  }
}

.p-menu__heading .min {
  letter-spacing: .05em;
}

.p-menu__item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.p-menu__item:hover {
  opacity: .75;
}

.p-menu__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

@media screen and (max-width: 739px) {
  .p-menu__row {
    margin: 0 -1.04167vw;
  }
}

.p-menu__col {
  max-width: 33.33%;
  padding: 0 10px;
}

@media screen and (max-width: 739px) {
  .p-menu__col {
    max-width: 100%;
    margin-bottom: 8.33333vw;
    padding: 0 1.04167vw;
  }
}

.p-menu__image {
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 739px) {
  .p-menu__image {
    margin-right: 2.08333vw;
    margin-bottom: 2.08333vw;
  }
}

.p-menu__image:before {
  content: "";
  display: block;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_02.gif") repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-menu__image:before {
    right: -2.08333vw;
    bottom: -2.08333vw;
  }
}

.p-menu__inner {
  position: absolute;
  right: -10px;
  bottom: -20px;
}

@media screen and (max-width: 739px) {
  .p-menu__inner {
    right: -1.04167vw;
    bottom: -2.08333vw;
  }
}

.p-menu__button {
  width: 230px;
  height: 80px;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 5;
}

@media screen and (max-width: 739px) {
  .p-menu__button {
    width: 52.08333vw;
    height: 16.66667vw;
  }
}

.p-menu__button--250 {
  width: 250px;
}

@media screen and (max-width: 739px) {
  .p-menu__button--250 {
    width: 52.08333vw;
  }
}

.p-menu__button:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  bottom: -1px;
  right: -1px;
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 739px) {
  .p-menu__button:before {
    border-right-width: 0.20833vw;
    border-bottom-width: 0.20833vw;
    -webkit-transform: translate(0.625vw, 0.625vw);
    -ms-transform: translate(0.625vw, 0.625vw);
    transform: translate(0.625vw, 0.625vw);
  }
}

.p-menu__button img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 739px) {
  .p-menu__button img {
    width: 52.08333vw;
    height: 16.66667vw;
  }
}

.p-menu__button .on {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.p-menu__button:hover {
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
}

.p-menu__button:hover .on {
  opacity: 1;
}

.p-menu__button:hover:before {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.p-pickup {
  position: relative;
}

.p-pickup__bg {
  background: #f6faf9;
}

.p-pickup__title {
  position: absolute;
  top: -30px;
  left: calc(50% - 480px);
  -webkit-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}

@media screen and (max-width: 739px) {
  .p-pickup__title {
    top: -8.33333vw;
    left: 4.16667vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.p-pickup__title > img {
  width: 179px;
}

@media screen and (max-width: 739px) {
  .p-pickup__title > img {
    width: 31.45833vw;
  }
}

.p-pickup__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 739px) {
  .p-pickup__item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 9.375vw;
  }
}

.p-pickup__item__image {
  width: 100%;
  max-width: 555px;
  padding-right: 15px;
  padding-bottom: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

@media screen and (max-width: 739px) {
  .p-pickup__item__image {
    max-width: 100%;
    width: 100%;
    padding-right: 1.5625vw;
    padding-bottom: 1.5625vw;
    margin-bottom: 2.08333vw;
  }
}

.p-pickup__item__text {
  width: 100%;
  max-width: 485px;
  padding-left: 45px;
  padding-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .p-pickup__item__text {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-pickup__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 739px) {
  .p-pickup__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-pickup__item--reverse .p-pickup__item__text {
  padding-left: 10px;
  padding-right: 45px;
}

@media screen and (max-width: 739px) {
  .p-pickup__item--reverse .p-pickup__item__text {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-pickup__image {
  width: 100%;
  position: relative;
  z-index: 1;
}

.p-pickup__image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/hebel-rooms/feature/newsafole/assets/images/bg_pattern_01.gif") repeat;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: -1;
}

@media screen and (max-width: 739px) {
  .p-pickup__image:before {
    right: -1.5625vw;
    bottom: -1.5625vw;
  }
}

.p-check {
  position: relative;
}

.p-check__wrap {
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 739px) {
  .p-check__wrap {
    max-width: 100%;
    padding-left: 6.51042vw;
    padding-right: 6.51042vw;
  }
}

.p-check__bg {
  background: #f6faf9;
}

.p-check__title {
  position: absolute;
  top: -30px;
  left: calc(50% - 300px);
  -webkit-transform: translateX(25%);
  -ms-transform: translateX(25%);
  transform: translateX(25%);
}

@media screen and (max-width: 739px) {
  .p-check__title {
    top: -8.33333vw;
    left: 4.16667vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.p-check__title > img {
  width: 159px;
}

@media screen and (max-width: 739px) {
  .p-check__title > img {
    width: 29.47917vw;
  }
}

.p-check__madori {
  width: 100%;
  position: relative;
}

.p-check__madori > img:not(.madori_base) {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 739px) {
  .p-check__madori > img:not(.madori_base) {
    width: 100%;
    height: auto;
  }
}

.p-check__detail .item > img {
  width: 100%;
  height: auto;
}

.p-check__slide__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 739px) {
  .p-check__slide__wrap {
    display: block;
  }
}

.p-check__slide__madori {
  width: 534px;
  height: 363px;
}

@media screen and (max-width: 739px) {
  .p-check__slide__madori {
    width: 100%;
    height: auto;
    margin-bottom: 6.25vw;
  }
}

.p-check__slide__detail {
  width: 414px;
  height: 410px;
}

@media screen and (max-width: 739px) {
  .p-check__slide__detail {
    width: 100%;
    height: auto;
  }
}

.p-facility__bg {
  background: #f6faf9;
}

.p-facility__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -15px;
}

@media screen and (max-width: 739px) {
  .p-facility__list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.5625vw -5.20833vw;
  }
}

.p-facility__list > .item {
  padding: 0 15px;
}

@media screen and (max-width: 739px) {
  .p-facility__list > .item {
    padding: 0 1.5625vw;
    margin-bottom: 5.20833vw;
  }
}

.p-facility__list .name {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: .12em;
  line-height: 1.5;
  margin-top: 10px;
}

@media screen and (max-width: 739px) {
  .p-facility__list .name {
    font-size: 3.125vw;
    margin-top: 1.5625vw;
  }
}

.p-facility__list .name span {
  font-weight: normal;
}

.p-breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
}

@media screen and (max-width: 739px) {
  .p-breadcrumbs {
    display: none;
  }
}

.p-breadcrumbs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0;
  line-height: 1;
  font-size: 1.1rem;
  font-weight: bold;
}

.p-breadcrumbs__list > li:not(:last-child):after {
  content: ">";
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
}

.p-breadcrumbs__list > li a:hover {
  text-decoration: underline;
}

.p-movie-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 738px) {
  .p-movie-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-movie-box {
  margin-bottom: 70px;
  width: 49%;
}

@media (max-width: 738px) {
  .p-movie-box {
    width: 89.41176vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8.23529vw;
  }
}

.m-playbox-1, .m-playbox-2 {
  background: url("/hebel-rooms/feature/newsafole/assets/images/movie_box_bg.jpg") no-repeat;
  width: 505px;
  height: 315px;
  margin-bottom: 50px;
}

@media (max-width: 738px) {
  .m-playbox-1, .m-playbox-2 {
    background: url("/hebel-rooms/feature/newsafole/assets/images/movie_box_bg_sp.jpg") no-repeat;
    background-size: contain;
    width: 100%;
    height: auto;
    margin-bottom: 5.88235vw;
  }
}

.p-movie-tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.p-movie-tit p {
  display: inline-block;
  padding: 10px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: .2em;
}

@media screen and (max-width: 739px) {
  .p-movie-tit {
    margin-bottom: 7.29167vw;
  }
  .p-movie-tit p {
    font-size: 4vw;
  }
}

.m-playbox-1, .m-playbox-2 {
  padding: 13px 25px 25px 10px;
}

@media screen and (max-width: 739px) {
  .m-playbox-1, .m-playbox-2 {
    padding: 1vw 4vw 5vw 2vw;
  }
}

.m-playbox-1 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick,
.m-playbox-2 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  font-size: 0 !important;
  color: transparent !important;
}

@media (max-width: 738px) {
  .m-playbox-1 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick,
  .m-playbox-2 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick {
    width: 15vw;
    height: 15vw;
  }
}

.m-playbox-1 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick:after,
.m-playbox-2 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick:after {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/hebel-rooms/feature/newsafole/assets/images/ico_play_74x74.png") no-repeat center center;
  background-size: cover;
}

@media (max-width: 738px) {
  .m-playbox-1 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick:after,
  .m-playbox-2 .oo-action-icon:not(.control-bar-item) .oo-icon-play-slick:after {
    width: 15vw;
    height: 15vw;
    background: url("/hebel-rooms/feature/newsafole/assets/images/ico_play_126x126.png") no-repeat center center;
    background-size: cover;
  }
}

.m-playbox-1 .oo-state-screen-poster {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/thumb_01.jpg") !important;
}

.m-playbox-2 .oo-state-screen-poster {
  background-image: url("/hebel-rooms/feature/newsafole/assets/images/thumb_02.jpg") !important;
}

.m-playbox-1 .oo-player-container,
.m-playbox-2 .oo-player-container {
  min-width: 0 !important;
}

.m-playbox-1 .oo-player-container .oo-start-screen .oo-start-screen-linear-gradient,
.m-playbox-2 .oo-player-container .oo-start-screen .oo-start-screen-linear-gradient {
  background: transparent !important;
}

.m-playbox-wrap {
  position: relative;
}

.m-playbox-wrap:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.m-playbox-wrap .logica-player {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.m-playbox-wrap .logica-player *, .m-playbox-wrap .logica-player *:before, .m-playbox-wrap .logica-player *:after {
  color: #fff;
}

.m-playbox-wrap .logica-player .lgcp-large-play-button {
  opacity: .6;
  background-color: transparent;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 0;
  margin-top: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
}

@media screen and (max-width: 739px) {
  .m-playbox-wrap .logica-player .lgcp-large-play-button {
    width: 15vw;
    height: 15vw;
  }
}

.m-playbox-wrap .logica-player .lgcp-cued-thumbnail-overlay .lgcp-large-play-button:focus {
  background-color: transparent;
}

.m-playbox-wrap .logica-player .lgcp-cued-thumbnail-overlay:hover .lgcp-large-play-button {
  outline: 0;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  background-color: transparent;
  opacity: 1;
}

.m-playbox-wrap .logica-player .lgcp-large-play-button:not(.lgcp-paused):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/hebel-rooms/feature/newsafole/assets/images/ico_play_74x74.png") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 739px) {
  .m-playbox-wrap .logica-player .lgcp-large-play-button:not(.lgcp-paused):before {
    background: url("/hebel-rooms/feature/newsafole/assets/images/ico_play_126x126.png") no-repeat center center;
    background-size: cover;
  }
}

/* ====================================
	Heading
==================================== */
@media screen and (max-width: 739px) {
  [data-head="series"] img {
    width: 18.85417vw;
  }
}

/* ====================================
	Pic
==================================== */
.pic_01_01 {
  width: 275px;
}

@media screen and (max-width: 739px) {
  .pic_01_01 {
    width: 59.375vw;
  }
}

@media screen and (max-width: 739px) {
  .pic_01_02 {
    width: 25.83333vw;
  }
}

@media screen and (max-width: 739px) {
  .pic_01_03 {
    width: 27.60417vw;
  }
}

@media screen and (max-width: 739px) {
  .pic_01_04 {
    width: 42.5vw;
  }
}

@media screen and (max-width: 739px) {
  .pic01_05 {
    width: 32.91667vw;
  }
}

/* ====================================
	Pic 02
==================================== */
.pic_02_02 {
  width: 124px;
}

@media screen and (max-width: 739px) {
  .pic_02_02 {
    width: 25.625vw;
  }
}

/* ====================================
	TOP
==================================== */
@media screen and (min-width: 740px) {
  .js-onscreen {
    -webkit-transition: .8s ease .2s;
    -o-transition: .8s ease .2s;
    transition: .8s ease .2s;
    opacity: 0;
  }
  .js-onscreen.is-screen {
    opacity: 1;
  }
  .c-heading__image.js-onscreen {
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.4s;
    -o-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.4s;
    transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.4s;
  }
  .c-heading__image.js-onscreen .text {
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 2s;
    -o-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 2s;
    transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 2s;
  }
  .p-concept__top.js-onscreen {
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  .p-concept__top.js-onscreen.is-screen {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .p-concept__bg-pic__pic--left-bottom.js-onscreen {
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.3s;
    -o-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.3s;
    transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.3s;
    -webkit-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
  }
  .p-concept__bg-pic__pic--left-bottom.js-onscreen.is-screen {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .p-concept__bg-pic__pic--right-top.js-onscreen {
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.6s;
    -o-transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.6s;
    transition: 0.8s cubic-bezier(0.4, 0, 1, 1) 0.6s;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  .p-concept__bg-pic__pic--right-top.js-onscreen.is-screen {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .p-feature__list__item.js-onscreen {
    -webkit-transform: translateY(8%);
    -ms-transform: translateY(8%);
    transform: translateY(8%);
    -webkit-transition: 0.6s cubic-bezier(0.4, 0, 1, 1) 0.3s;
    -o-transition: 0.6s cubic-bezier(0.4, 0, 1, 1) 0.3s;
    transition: 0.6s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  }
  .p-feature__list__item.js-onscreen.is-screen {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ====================================
	Resize
==================================== */
.resize,
.u-resize {
  display: block;
  width: 100%;
  height: auto;
  margin: 0px;
  padding: 0px;
}

/* ====================================
	Text align
==================================== */
.u-left {
  text-align: left !important;
}

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

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

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

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

@media screen and (max-width: 739px) {
  .u-left-sm {
    text-align: left !important;
  }
  .u-center-sm {
    text-align: center !important;
  }
  .u-right-sm {
    text-align: right !important;
  }
  .u-top-sm {
    vertical-align: top !important;
  }
  .u-middle-sm {
    vertical-align: middle !important;
  }
}

/* ====================================
	Letter Spacing
==================================== */
.u-ls-0 {
  letter-spacing: 0 !important;
}

/* ====================================
	Font size
==================================== */
.u-font10 {
  font-size: 1rem !important;
}

.u-font11 {
  font-size: 1.1rem !important;
}

.u-font12 {
  font-size: 1.2rem !important;
}

.u-font13 {
  font-size: 1.3rem !important;
}

.u-font14 {
  font-size: 1.4rem !important;
}

.u-font15 {
  font-size: 1.5rem !important;
}

.u-font16 {
  font-size: 1.6rem !important;
}

.u-font17 {
  font-size: 1.7rem !important;
}

.u-font18 {
  font-size: 1.8rem !important;
}

.u-font19 {
  font-size: 1.9rem !important;
}

.u-font20 {
  font-size: 2rem !important;
}

.u-font21 {
  font-size: 2.1rem !important;
}

.u-font22 {
  font-size: 2.2rem !important;
}

.u-font23 {
  font-size: 2.3rem !important;
}

.u-font24 {
  font-size: 2.4rem !important;
}

.u-font25 {
  font-size: 2.5rem !important;
}

.u-font26 {
  font-size: 2.6rem !important;
}

.u-font27 {
  font-size: 2.7rem !important;
}

.u-font28 {
  font-size: 2.8rem !important;
}

.u-font29 {
  font-size: 2.9rem !important;
}

.u-font30 {
  font-size: 3rem !important;
}

.u-font31 {
  font-size: 3.1rem !important;
}

.u-font32 {
  font-size: 3.2rem !important;
}

/* ====================================
	Font weight
==================================== */
.u-bold {
  font-weight: bold;
}

/* ====================================
	Margin
==================================== */
.u-m0 {
  margin: 0px !important;
}

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

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

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

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

.u-m1 {
  margin: 1px !important;
}

.u-mt1 {
  margin-top: 1px !important;
}

.u-mb1 {
  margin-bottom: 1px !important;
}

.u-ml1 {
  margin-left: 1px !important;
}

.u-mr1 {
  margin-right: 1px !important;
}

.u-m2 {
  margin: 2px !important;
}

.u-mt2 {
  margin-top: 2px !important;
}

.u-mb2 {
  margin-bottom: 2px !important;
}

.u-ml2 {
  margin-left: 2px !important;
}

.u-mr2 {
  margin-right: 2px !important;
}

.u-m3 {
  margin: 3px !important;
}

.u-mt3 {
  margin-top: 3px !important;
}

.u-mb3 {
  margin-bottom: 3px !important;
}

.u-ml3 {
  margin-left: 3px !important;
}

.u-mr3 {
  margin-right: 3px !important;
}

.u-m4 {
  margin: 4px !important;
}

.u-mt4 {
  margin-top: 4px !important;
}

.u-mb4 {
  margin-bottom: 4px !important;
}

.u-ml4 {
  margin-left: 4px !important;
}

.u-mr4 {
  margin-right: 4px !important;
}

.u-m5 {
  margin: 5px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-m6 {
  margin: 6px !important;
}

.u-mt6 {
  margin-top: 6px !important;
}

.u-mb6 {
  margin-bottom: 6px !important;
}

.u-ml6 {
  margin-left: 6px !important;
}

.u-mr6 {
  margin-right: 6px !important;
}

.u-m7 {
  margin: 7px !important;
}

.u-mt7 {
  margin-top: 7px !important;
}

.u-mb7 {
  margin-bottom: 7px !important;
}

.u-ml7 {
  margin-left: 7px !important;
}

.u-mr7 {
  margin-right: 7px !important;
}

.u-m8 {
  margin: 8px !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-ml8 {
  margin-left: 8px !important;
}

.u-mr8 {
  margin-right: 8px !important;
}

.u-m9 {
  margin: 9px !important;
}

.u-mt9 {
  margin-top: 9px !important;
}

.u-mb9 {
  margin-bottom: 9px !important;
}

.u-ml9 {
  margin-left: 9px !important;
}

.u-mr9 {
  margin-right: 9px !important;
}

.u-m10 {
  margin: 10px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-m15 {
  margin: 15px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-m20 {
  margin: 20px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-m25 {
  margin: 25px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-m30 {
  margin: 30px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-m35 {
  margin: 35px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-m40 {
  margin: 40px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-m45 {
  margin: 45px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-m50 {
  margin: 50px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-m55 {
  margin: 55px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-m60 {
  margin: 60px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-m65 {
  margin: 65px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-m70 {
  margin: 70px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-m75 {
  margin: 75px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-m80 {
  margin: 80px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-m85 {
  margin: 85px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-m90 {
  margin: 90px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-m95 {
  margin: 95px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-m100 {
  margin: 100px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

/* ====================================
	Padding
==================================== */
.u-p0 {
  padding: 0px !important;
}

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

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

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

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

.u-p1 {
  padding: 1px !important;
}

.u-pt1 {
  padding-top: 1px !important;
}

.u-pb1 {
  padding-bottom: 1px !important;
}

.u-pl1 {
  padding-left: 1px !important;
}

.u-pr1 {
  padding-right: 1px !important;
}

.u-p2 {
  padding: 2px !important;
}

.u-pt2 {
  padding-top: 2px !important;
}

.u-pb2 {
  padding-bottom: 2px !important;
}

.u-pl2 {
  padding-left: 2px !important;
}

.u-pr2 {
  padding-right: 2px !important;
}

.u-p3 {
  padding: 3px !important;
}

.u-pt3 {
  padding-top: 3px !important;
}

.u-pb3 {
  padding-bottom: 3px !important;
}

.u-pl3 {
  padding-left: 3px !important;
}

.u-pr3 {
  padding-right: 3px !important;
}

.u-p4 {
  padding: 4px !important;
}

.u-pt4 {
  padding-top: 4px !important;
}

.u-pb4 {
  padding-bottom: 4px !important;
}

.u-pl4 {
  padding-left: 4px !important;
}

.u-pr4 {
  padding-right: 4px !important;
}

.u-p5 {
  padding: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-p6 {
  padding: 6px !important;
}

.u-pt6 {
  padding-top: 6px !important;
}

.u-pb6 {
  padding-bottom: 6px !important;
}

.u-pl6 {
  padding-left: 6px !important;
}

.u-pr6 {
  padding-right: 6px !important;
}

.u-p7 {
  padding: 7px !important;
}

.u-pt7 {
  padding-top: 7px !important;
}

.u-pb7 {
  padding-bottom: 7px !important;
}

.u-pl7 {
  padding-left: 7px !important;
}

.u-pr7 {
  padding-right: 7px !important;
}

.u-p8 {
  padding: 8px !important;
}

.u-pt8 {
  padding-top: 8px !important;
}

.u-pb8 {
  padding-bottom: 8px !important;
}

.u-pl8 {
  padding-left: 8px !important;
}

.u-pr8 {
  padding-right: 8px !important;
}

.u-p9 {
  padding: 9px !important;
}

.u-pt9 {
  padding-top: 9px !important;
}

.u-pb9 {
  padding-bottom: 9px !important;
}

.u-pl9 {
  padding-left: 9px !important;
}

.u-pr9 {
  padding-right: 9px !important;
}

.u-p10 {
  padding: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-p15 {
  padding: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-p20 {
  padding: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-p25 {
  padding: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-p30 {
  padding: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-p35 {
  padding: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-p40 {
  padding: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-p45 {
  padding: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-p50 {
  padding: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-p55 {
  padding: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-p60 {
  padding: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-p65 {
  padding: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-p70 {
  padding: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-p75 {
  padding: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-p80 {
  padding: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-p85 {
  padding: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-p90 {
  padding: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-p95 {
  padding: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-p100 {
  padding: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

/* ====================================
	Space
==================================== */
.u-space0, .u-space1, .u-space2, .u-space3, .u-space4, .u-space5, .u-space6, .u-space7, .u-space8, .u-space9, .u-space10, .u-space15, .u-space20, .u-space25, .u-space30, .u-space35, .u-space40, .u-space45, .u-space50, .u-space55, .u-space60, .u-space65, .u-space70, .u-space75, .u-space80, .u-space85, .u-space90, .u-space95, .u-space100 {
  display: block;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.u-space0 {
  height: 0px;
}

.u-space1 {
  height: 1px;
}

.u-space2 {
  height: 2px;
}

.u-space3 {
  height: 3px;
}

.u-space4 {
  height: 4px;
}

.u-space5 {
  height: 5px;
}

.u-space6 {
  height: 6px;
}

.u-space7 {
  height: 7px;
}

.u-space8 {
  height: 8px;
}

.u-space9 {
  height: 9px;
}

.u-space10 {
  height: 10px;
}

.u-space15 {
  height: 15px;
}

.u-space20 {
  height: 20px;
}

.u-space25 {
  height: 25px;
}

.u-space30 {
  height: 30px;
}

.u-space35 {
  height: 35px;
}

.u-space40 {
  height: 40px;
}

.u-space45 {
  height: 45px;
}

.u-space50 {
  height: 50px;
}

.u-space55 {
  height: 55px;
}

.u-space60 {
  height: 60px;
}

.u-space65 {
  height: 65px;
}

.u-space70 {
  height: 70px;
}

.u-space75 {
  height: 75px;
}

.u-space80 {
  height: 80px;
}

.u-space85 {
  height: 85px;
}

.u-space90 {
  height: 90px;
}

.u-space95 {
  height: 95px;
}

.u-space100 {
  height: 100px;
}
