@charset "UTF-8";
/* variables */
/* sans-serif */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
/* monospace */
@font-face {
  font-family: "SourceHanCodeJP-Regular";
  src: local("SourceHanCodeJP-Regular");
}
@font-face {
  font-family: "Myrica M";
  src: local("Myrica M");
}
@font-face {
  font-family: "MyricaM M";
  src: local("MyricaM M");
}
@font-face {
  font-family: "Ricty Diminished Discord";
  src: local("Ricty Diminished Discord");
}
@font-face {
  font-family: "Migu 1M";
  src: local("Migu 1M");
}
@font-face {
  font-family: "Rounded M+ 1m regular";
  src: local("Rounded M+ 1m regular");
}
@font-face {
  font-family: "Rounded Mgen+ 1m regular";
  src: local("Rounded Mgen+ 1m regular");
}
@font-face {
  font-family: "VL ゴシック";
  src: local("VL ゴシック");
}
/**
 * normalizeに、以下のカスタマイズを加えています。
 * 1.日本語のフォントファミリーへの対応(customized01)
 * 2.上方向marginを0に(customized02)
 * 3.禁則処理の追加
 * 4.フルードイメージ対応
 */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
/* line 22, sass/_customized-normalize.scss */
html {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Helvetica,Arial,'Droid Sans',sans-serif;
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
/* line 37, sass/_customized-normalize.scss */
body {
  margin: 0;
  animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/**
 * Add the correct display in IE 9-.
 */
/* line 45, sass/_customized-normalize.scss */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* line 59, sass/_customized-normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 65, sass/_customized-normalize.scss */
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, table, pre {
  margin-top: 0;
}

/* line 67, sass/_customized-normalize.scss */
p, li, dt, dd, th, td, pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/* line 74, sass/_customized-normalize.scss */
li {
  list-style-type: none;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
/* line 86, sass/_customized-normalize.scss */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
/* line 96, sass/_customized-normalize.scss */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 105, sass/_customized-normalize.scss */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 116, sass/_customized-normalize.scss */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* 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+.
 */
/* line 129, sass/_customized-normalize.scss */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
/* line 139, sass/_customized-normalize.scss */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 149, sass/_customized-normalize.scss */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
/* line 159, sass/_customized-normalize.scss */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 168, sass/_customized-normalize.scss */
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.
 */
/* line 178, sass/_customized-normalize.scss */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
/* line 189, sass/_customized-normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
/* line 197, sass/_customized-normalize.scss */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
/* line 206, sass/_customized-normalize.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
/* line 215, sass/_customized-normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 223, sass/_customized-normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 227, sass/_customized-normalize.scss */
sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 238, sass/_customized-normalize.scss */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
/* line 247, sass/_customized-normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
/* line 256, sass/_customized-normalize.scss */
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
/* line 265, sass/_customized-normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
/* line 277, sass/_customized-normalize.scss */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
/* line 293, sass/_customized-normalize.scss */
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.
 */
/* line 303, sass/_customized-normalize.scss */
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.
 */
/* line 314, sass/_customized-normalize.scss */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 325, sass/_customized-normalize.scss */
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.
 */
/* line 337, sass/_customized-normalize.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
/* line 348, sass/_customized-normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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.
 */
/* line 361, sass/_customized-normalize.scss */
legend {
  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.
 */
/* line 375, sass/_customized-normalize.scss */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
/* line 384, sass/_customized-normalize.scss */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
/* line 393, sass/_customized-normalize.scss */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* line 403, sass/_customized-normalize.scss */
[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.
 */
/* line 413, sass/_customized-normalize.scss */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
/* line 422, sass/_customized-normalize.scss */
[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.
 */
/* line 432, sass/_customized-normalize.scss */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
/* line 445, sass/_customized-normalize.scss */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 454, sass/_customized-normalize.scss */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 465, sass/_customized-normalize.scss */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
/* line 473, sass/_customized-normalize.scss */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
/* line 484, sass/_customized-normalize.scss */
[hidden] {
  display: none;
}

/* line 7, sass/style.scss */
html {
  font-size: 62.5%;
}

/* =========================================================
 reset
========================================================= */
/* line 14, sass/style.scss */
ul {
  padding: 0;
}

/* line 17, sass/style.scss */
li {
  list-style-type: none;
}

/* =========================================================
 clearfix
========================================================= */
/** http://nicolasgallagher.com/micro-clearfix-hack/
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 34, sass/style.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
  clear: left;
}

/* line 40, sass/style.scss */
.clearfix:after {
  clear: both;
}

/* =========================================================
 color
========================================================= */
/* =========================================================
 @media
========================================================= */
/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: December 13, 2016
 */
/* line 15, sass/_swiper.scss */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  /* Fix of Webkit flickering */
  z-index: 1;
}

/* line 23, sass/_swiper.scss */
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

/* line 26, sass/_swiper.scss */
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/* line 33, sass/_swiper.scss */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 52, sass/_swiper.scss */
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

/* line 60, sass/_swiper.scss */
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 67, sass/_swiper.scss */
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

/* line 75, sass/_swiper.scss */
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
/* line 84, sass/_swiper.scss */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

/* line 88, sass/_swiper.scss */
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}

/* a11y */
/* line 100, sass/_swiper.scss */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
/* line 109, sass/_swiper.scss */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

/* line 113, sass/_swiper.scss */
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
/* line 118, sass/_swiper.scss */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 133, sass/_swiper.scss */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/* line 139, sass/_swiper.scss */
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

/* line 145, sass/_swiper.scss */
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

/* line 149, sass/_swiper.scss */
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* line 153, sass/_swiper.scss */
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

/* line 159, sass/_swiper.scss */
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

/* line 163, sass/_swiper.scss */
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
/* line 168, sass/_swiper.scss */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

/* line 181, sass/_swiper.scss */
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
/* line 185, sass/_swiper.scss */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
/* line 193, sass/_swiper.scss */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

/* line 201, sass/_swiper.scss */
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* line 211, sass/_swiper.scss */
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

/* line 214, sass/_swiper.scss */
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

/* line 217, sass/_swiper.scss */
.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}

/* line 222, sass/_swiper.scss */
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

/* line 225, sass/_swiper.scss */
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

/* line 228, sass/_swiper.scss */
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

/* line 237, sass/_swiper.scss */
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

/* line 241, sass/_swiper.scss */
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
/* line 245, sass/_swiper.scss */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

/* line 249, sass/_swiper.scss */
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

/* line 266, sass/_swiper.scss */
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

/* line 273, sass/_swiper.scss */
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

/* line 279, sass/_swiper.scss */
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

/* line 285, sass/_swiper.scss */
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

/* line 288, sass/_swiper.scss */
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

/* line 291, sass/_swiper.scss */
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
/* line 295, sass/_swiper.scss */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

/* line 301, sass/_swiper.scss */
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* line 313, sass/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* line 325, sass/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* line 337, sass/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* line 349, sass/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* line 361, sass/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
/* line 374, sass/_swiper.scss */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
/* line 380, sass/_swiper.scss */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

/* line 384, sass/_swiper.scss */
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

/* line 393, sass/_swiper.scss */
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

/* line 397, sass/_swiper.scss */
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* line 403, sass/_swiper.scss */
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
/* line 418, sass/_swiper.scss */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

/* line 427, sass/_swiper.scss */
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

/* line 433, sass/_swiper.scss */
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* line 440, sass/_swiper.scss */
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
/* line 453, sass/_swiper.scss */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/* line 460, sass/_swiper.scss */
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

/* line 467, sass/_swiper.scss */
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

/* line 470, sass/_swiper.scss */
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* line 474, sass/_swiper.scss */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

/* line 494, sass/_swiper.scss */
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scrollbar */
/* line 502, sass/_swiper.scss */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

/* line 508, sass/_swiper.scss */
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

/* line 516, sass/_swiper.scss */
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

/* line 524, sass/_swiper.scss */
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

/* line 533, sass/_swiper.scss */
.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
/* line 537, sass/_swiper.scss */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

/* line 553, sass/_swiper.scss */
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* line 564, sass/_swiper.scss */
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
/* line 5, sass/_jquery.bxslider.scss */
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

/* line 13, sass/_jquery.bxslider.scss */
.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/* line 17, sass/_jquery.bxslider.scss */
.bxslider {
  margin: 0;
  padding: 0;
}

/* line 21, sass/_jquery.bxslider.scss */
ul.bxslider {
  list-style: none;
}

/* line 24, sass/_jquery.bxslider.scss */
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/
/* line 30, sass/_jquery.bxslider.scss */
.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: #fff;
}

/* line 37, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
/* line 44, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("/img/upload/2017/06/bx_loader.gif") center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
/* line 55, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

/* line 63, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* line 75, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}

/* line 80, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

/* line 86, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
/* line 91, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url("images/controls.png") no-repeat 0 -32px;
}

/* line 95, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

/* line 99, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-next {
  right: 10px;
  background: url("images/controls.png") no-repeat -43px -32px;
}

/* line 103, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}

/* line 107, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

/* line 117, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
/* line 121, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

/* line 124, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("images/controls.png") -86px -11px no-repeat;
  margin: 0 3px;
}

/* line 133, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

/* line 138, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("images/controls.png") -86px -44px no-repeat;
  margin: 0 3px;
}

/* line 147, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
/* line 153, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

/* line 157, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
/* line 162, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

/* line 170, sass/_jquery.bxslider.scss */
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/* line 66, sass/style.scss */
body {
  color: #333;
}

/* line 70, sass/style.scss */
span.stress {
  font-weight: bold;
}

/* line 74, sass/style.scss */
img {
  width: auto;
  height: auto;
}

.youtube {
    position:relative;
    width:100%;
    padding-top:56.25%;
    margin-bottom: 20px;
  }
  .youtube iframe {
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
  }
  .movie-cap {
    font-size: 1.2rem;
    margin-bottom: 80px;
  }

@media only screen and (max-width: 768px) {
  /* =========================================================================
  ============================================================================

  frame

  ============================================================================
  ========================================================================= */
  /* line 9, sass/_small.scss */
  a {
    text-decoration: none;
  }

  /* =========================================================
   header
  ========================================================= */
  /* line 17, sass/_small.scss */
  header {
    border-top: 7px solid #666666;
  }
  /* line 19, sass/_small.scss */
  header #headerInner {
    padding-top: 3rem;
  }
  /* line 21, sass/_small.scss */
  header #headerInner p.headerText {
    display: none;
  }

  header #headerInner .pcBtn {
    display: none;
  }

  /* line 24, sass/_small.scss */
  header #headerInner a.logo {
    display: block;
    margin: 0 auto 3rem;
    width: 5rem;
  }
  /* line 29, sass/_small.scss */
  header #headerInner .information {
    display: none;
  }
  /* line 32, sass/_small.scss */
  header #headerInner ul.spReserve {
    margin: 0 auto 1.5rem;
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  /* line 37, sass/_small.scss */
  header #headerInner ul.spReserve li {
    width: 48%;
    text-align: center;
  }
  /* line 40, sass/_small.scss */
  header #headerInner ul.spReserve li a {
    display: block;
    padding: 1.2rem 0;
    width: 100%;
    color: #333;
    border: 1px solid #ccc;
    font-size: 1.4rem;
  }

  /* line 55, sass/_small.scss */
  nav#gnav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2;
    overflow: scroll;
  }
  /* line 57, sass/_small.scss */
  nav#gnav.active {
    display: block;
  }
  /* line 66, sass/_small.scss */
  nav#gnav ul {
    box-sizing: border-box;
    margin: 7rem auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
  }
  /* line 70, sass/_small.scss */
  nav#gnav ul li {
    box-sizing: border-box;
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #ccc;
  }
  nav#gnav ul li.parent span {
    position: relative;
  }
  nav#gnav ul li.parent span {
    padding: 1.2rem 1rem 1.2rem 2rem;
    display: block;
    color: #333;
    font-size: 1.3rem;
  }
  nav#gnav ul li.parent span:after {
    content: "▼";
    margin-left: 8px;
  }

  nav#gnav ul li:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
  /* line 73, sass/_small.scss */
  nav#gnav ul li a {
    display: block;
    padding: 1.2rem 1rem 1.2rem 2rem;
    color: #333;
    font-size: 1.3rem;
  }
  nav#gnav ul li.parent ul.child {
    margin: 0;
    display: none;
  }
  nav#gnav ul li.parent ul.child.active {
    display: block;
  }
  nav#gnav ul li ul.child li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  nav#gnav #spNavBtn {
    margin: 2rem auto 0;
    width: 96%;
    display: flex;
    justify-content: space-between;
  }
  nav#gnav #spNavBtn p {
    text-align: center;
    width: 46%;
  }
  nav#gnav #spNavBtn p a {
      display: block;
      padding: 1rem 0;
      background-color: #999;
      color: #fff;
      font-size: 1.3rem;
      font-weight: bold;
  }

  /* line 122, sass/_small.scss */
  #spNav {
    position: fixed;
    padding: 1rem;
    right: 0;
    top: 0;
    width: 8rem;
    height: 2.5rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    z-index: 10;
  }
  /* line 133, sass/_small.scss */
  #spNav span.txt {
    color: #fff;
    padding-top: 0.5rem;
    font-size: 1.3rem;
  }
  /* line 138, sass/_small.scss */
  #spNav .icon {
    width: 3rem;
    height: 2.5rem;
  }
  /* line 141, sass/_small.scss */
  #spNav .icon div {
    position: relative;
  }
  /* line 144, sass/_small.scss */
  #spNav .icon span {
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  /* line 152, sass/_small.scss */
  #spNav .icon span:nth-child(1) {
    top: 0;
  }
  /* line 153, sass/_small.scss */
  #spNav .icon span:nth-child(2) {
    top: 11px;
  }
  /* line 154, sass/_small.scss */
  #spNav .icon span:nth-child(3) {
    top: 22px;
  }

  #spNav .icon.active span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(45deg);
    -moz-transform: translateY(11px) rotate(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }
  #spNav .icon.active span:nth-child(2) {
    opacity: 0;
  }
  #spNav .icon.active span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }

  /* line 159, sass/_small.scss */
  #spNavOpen {
    margin: 0;
  }
  /* line 161, sass/_small.scss */
  #spNavOpen a {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 30%;
    height: 3rem;
    z-index: 200;
    color: #fff;
  }

  /* =========================================================
   #container
  ========================================================= */
  /* =========================================================
   #content
  ========================================================= */
  /* =========================================================
   #main
  ========================================================= */
  /* =========================================================
   #sub
  ========================================================= */
  /* line 197, sass/_small.scss */
  #sub {
    margin: 0 auto 5rem;
    width: 100%;
  }
  /* line 200, sass/_small.scss */
  #sub .subBox {
    position: relative;
    padding-bottom: 2rem;
    clear: left;
    margin-bottom: 40px;
  }
  /* line 203, sass/_small.scss */
  #sub .subBox .titleArea {
    margin: 0 auto 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #666666;
  }
  /* line 207, sass/_small.scss */
  #sub .subBox .titleArea p {
    margin: 0;
    padding: 0 0 0.5rem;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 214, sass/_small.scss */
  #sub .subBox .titleArea p span.en {
    font-size: 2.2rem;
  }
  /* line 217, sass/_small.scss */
  #sub .subBox .titleArea p span.jp {
    margin-left: .4em;
    font-size: 1.3rem;
  }
  /* line 223, sass/_small.scss */
  #sub .subBox .titleArea a {
    position: absolute;
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
    bottom: 0;
    right: 0;
  }
  /* line 231, sass/_small.scss */
  #sub .subBox .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 238, sass/_small.scss */
  #sub .subBox .wrapper article {
    margin-bottom: 1.5rem;
  }
  /* line 240, sass/_small.scss */
  #sub .subBox .wrapper article ul {
    display: flex;
  }
  /* line 243, sass/_small.scss */
  #sub .subBox .wrapper article ul li.category {
    margin-right: 1rem;
  }
  /* line 245, sass/_small.scss */
  #sub .subBox .wrapper article ul li.category a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: #666666;
    text-align: center;
    font-size: 1.2rem;
  }
  /* line 254, sass/_small.scss */
  #sub .subBox .wrapper article ul li.date {
    margin-right: 1.2rem;
    padding-top: 0.4rem;
  }
  /* line 257, sass/_small.scss */
  #sub .subBox .wrapper article ul li.date a {
    color: #333;
    font-size: 1.2rem;
  }
  /* line 262, sass/_small.scss */
  #sub .subBox .wrapper article ul li.author {
    position: relative;
    padding-top: 0.4rem;
  }
  /* line 265, sass/_small.scss */
  #sub .subBox .wrapper article ul li.author:before {
    position: absolute;
    content: "/";
    left: -1rem;
  }
  /* line 270, sass/_small.scss */
  #sub .subBox .wrapper article ul li.author a {
    color: #777777;
    font-size: 1.2rem;
    text-decoration: underline;
  }
  /* line 279, sass/_small.scss */
  #sub .subBox .wrapper article a.linkToArticle p {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.5;
  }
  /* line 284, sass/_small.scss */
  #sub .subBox .wrapper article a.linkToArticle p.title {
    font-weight: bold;
    margin: 0 0 5px;
  }
  /* line 294, sass/_small.scss */
  #sub #subNews {
    margin-bottom: 3rem;
  }
  dl.search2 {
    position: relative;
  }
  dl.search2 dt {
    margin-right: 105px;
    padding: 0 0 0 8px;
    background-color: #fff;
    border: 1px solid #aaa;
  }
  dl.search2 dt input {
    width: 100%;
    height: 24px;
    line-height: 24px;
    background: none;
    border: none;
  }
  dl.search2 dd {
    position: absolute;
    top: 0;
    right: 0;
  }
  dl.search2 dd button {
    display: block;
    width: 100px;
    height: 28px;
    color: #fff;
    line-height: 28px;
    text-align: center;
    background-color: #666666;
    border: 1px solid #666666;
  }

  /* line 297, sass/_small.scss */
  #sub #subStaff ul li, #sub #subCategory ul li, #sub #subMedicate ul li, #sub #subBlogcate ul li, #subNewscate ul li, #subFaq ul li {
    text-align: center;
  }
  /* line 299, sass/_small.scss */
  #sub #subStaff ul li a, #sub #subCategory ul li a, #sub #subMedicate ul li a, #sub #subBlogcate ul li a, #sub #subNewscate ul li a, #sub #subFaq ul li a {
    display: block;
    margin: 0 auto 1rem;
    padding: 0.5rem 0;
    color: #333;
    font-size: 1.4rem;
    border-bottom: dotted 1px #ddd;
  }
  /* line 311, sass/_small.scss */
  #sub #subStyle ul.wrapper, #subNewscate ul.wrapper {
    margin: 0 auto;
  }
  /* line 317, sass/_small.scss */
  #sub #subStyle ul.wrapper li, #subNewscate ul.wrapper li {
    float: left;
    margin: 0 0 1rem;
    width: 30%;
  }
  #sub #subStyle ul.wrapper li {
    height: 280px;
  }
  #sub #subStyle ul.wrapper li:nth-child(3n+2) {
    margin: 0 5% 1rem;
  }
  /* line 320, sass/_small.scss */
  #sub #subStyle ul.wrapper li a.img, #subNewscate ul.wrapper li a.img {
    display: block;
    margin: 0 0 0.5rem;
  }
  /* line 327, sass/_small.scss */
  #sub #subStyle ul.wrapper li a.txt h3, #subNewscate ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 333, sass/_small.scss */
  #sub #subStyle ul.wrapper li a.txt p, #subNewscate ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }

  /* =========================================================
   footer
  ========================================================= */
  /* line 307, sass/_small.scss */
  a#goTop {
    display: block;
    margin: 0;
    padding: 2.5rem 0 1rem;
    background: url("/img/upload/2017/06/img-totop.png") no-repeat #eee;
    background-position: center 1rem;
    text-align: center;
    color: #333;
    clear: left;
  }

  /* line 317, sass/_small.scss */
  footer {
    padding: 3rem 0 0;
    background-color: #414141;
  }
  /* line 321, sass/_small.scss */
  footer #footerInner #footerNav {
    display: none;
  }
  /* line 326, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo {
    margin: 0 auto 3rem;
  }
  /* line 330, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo #footerLogo a {
    display: none;
  }
  footer #footerInner #footerContent #footerInfo #footerLogo p.salonName {
    margin: 0 auto 1rem;
    width: 90%;
    font-size: 1.8rem;
    color: #fff;
  }
  /* line 333, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo {
    margin: 0 auto;
    width: 90%;
  }
  /* line 336, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo p {
    display: block;
    color: #fff;
    font-size: 1.3rem;
  }
  /* line 345, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo p.address {
    margin-bottom: 1rem;
  }
  /* line 348, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerTel {
    margin: 0 auto 0.5rem;
  }
  /* line 350, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerTel a {
    color: #fff;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerFax {
    color: #fff;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.contact {
    text-align: center;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.contact a {
    display: block;
    padding: 1.5rem 0;
    background-color: #eee;
    font-size: 1.4rem;
    color: #333;
  }
  /* line 355, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo dl {
    margin: 0 0 1rem;
    width: 90%;
    display: flex;
  }
  /* line 359, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo dl:last-child {
    margin: 0;
  }
  /* line 362, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo dl dt {
    color: #fff;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 367, sass/_small.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo dl dd {
    color: #fff;
    font-size: 1.4rem;
    text-align: left;
  }

  footer #footerInner #footerContent .businessHourWrapper {
    margin: 0 auto 2rem;
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  footer #footerInner #footerContent .businessHour,
  footer #footerInner #footerContent .finalAcceptance {
    width: 45%;
    color: #fff;
  }
  footer #footerInner #footerContent .businessHour p,
  footer #footerInner #footerContent .finalAcceptance p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
  }
  footer #footerInner #footerContent .businessHour dl,
  footer #footerInner #footerContent .finalAcceptance dl {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: .8rem;
  }
  footer #footerInner #footerContent .businessHour dl dt,
  footer #footerInner #footerContent .finalAcceptance dl dt {

  }
  footer #footerInner #footerContent .businessHour dl dd,
  footer #footerInner #footerContent .finalAcceptance dl dd {

  }

  /* line 376, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul {
    width: 90%;
    margin: 0 auto;
  }
  /* line 379, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn {
    margin-bottom: 1rem;
  }
  /* line 381, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li {
    text-align: center;
  }
  /* line 383, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li a {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.4rem;
  }
  /* line 388, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.recruit {
    margin-bottom: 10px;
    background-color: #777777;
  }
  /* line 391, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.recruit a {
    color: #fff;
  }
  /* line 395, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.reserve {
    background-color: #bc4d7a;
  }
  /* line 397, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.reserve a {
    color: #fff;
  }
  /* line 403, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.snsBtn {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 60%;
  }
  /* line 409, sass/_small.scss */
  footer #footerInner #footerContent #footerLink ul.snsBtn li a {
    display: block;
    width: 35px;
  }
  /* line 418, sass/_small.scss */
  footer #footerInner #footerPolicy {
    margin: 0 auto;
    width: 96%;
  }
  /* line 421, sass/_small.scss */
  footer #footerInner #footerPolicy ul {
    display: none;
  }
  /* line 424, sass/_small.scss */
  footer #footerInner #footerPolicy p {
    margin: 0;
    padding: 1rem 0;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
  }

  /* =========================================================================
  ============================================================================

  各page

  ============================================================================
  ========================================================================= */
  /**
  * top
  */
  /* line 447, sass/_small.scss */
  #mainVisual {
    margin: 0 auto 40px;
    width: 100%;
  }

  #content {
    padding: 0 15px;
  }

  body.top .topBnrArea {
    margin: 0 auto 2rem;
    width: auto;
    padding: 0 15px;
  }
  body.top .topBnrArea ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  body.top .topBnrArea ul li {
    margin-bottom: 1rem;
    width: 48%;
  }

  /* line 457, sass/_small.scss */
  body.top #main section.sect {
    margin: 0 auto 3rem;
    width: 100%;
  }
  /* line 460, sass/_small.scss */
  body.top #main section.sect .titleArea {
    margin: 0 auto 1rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #666666;
    clear: left;
  }
  /* line 464, sass/_small.scss */
  body.top #main section.sect .titleArea h2 {
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 471, sass/_small.scss */
  body.top #main section.sect .titleArea h2 span.en {
    font-size: 2.2rem;
  }
  /* line 474, sass/_small.scss */
  body.top #main section.sect .titleArea h2 span.jp {
    margin-left: .4em;
    font-size: 1.3rem;
  }
  /* line 480, sass/_small.scss */
  body.top #main section.sect .titleArea a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 485, sass/_small.scss */
  body.top #main section.sect .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }

  /* line 503, sass/_small.scss */
  body.top #main section.sect ul.wrapper li a.img {
    display: block;
    margin: 0 0 0.5rem;
  }
  /* line 508, sass/_small.scss */
  body.top #main section.sect ul.wrapper li a.txt h3 {
    margin: 0 0 0.5rem;
    color: #777777;
    font-size: 1.3rem;
    font-weight: normal;
    text-decoration: none;
  }
  /* line 515, sass/_small.scss */
  body.top #main section.sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  /* line 525, sass/_small.scss */
  body.top #main section.sect.sect01 ul.wrapper li {
    display: inline-block;
  	vertical-align: top;
  	float: none;
  	margin: 0 0 1rem;
  	width: 30%;
  	height: auto;
  }
  body.top #main section.sect.sect01 ul.wrapper li:nth-child(3n+2) {
    margin: 0 5% 1rem;
  }
  /* line 531, sass/_small.scss */
  /* line 533, sass/_small.scss */
  body.top #main section.sect.sect02 ul.wrapper li {
    display: inline-block;
  	vertical-align: top;
  	float: none;
  	margin: 0 0 1rem;
  	width: 30%;
  	height: auto;
  }
  /* line 540, sass/_small.scss */
  body.top #main a.bnrRecruit {
    width: auto;
    margin: 0 auto 40px;
    display: block;
  }
  body.top #main section.sect.sect02 ul.wrapper li:nth-child(3n+2) {
    margin: 0 5% 1rem;
}
  /* line 547, sass/_small.scss */
  body.top #topFooterContent {
    margin: 0 auto;
  }
  /* line 549, sass/_small.scss */
  body.top #topFooterContent .footerInstagram {
    margin: 0 auto 2rem;
    padding: 3rem 0;
    background-color: #eee;
  }
  /* line 553, sass/_small.scss */
  body.top #topFooterContent .footerInstagram p.title {
    display: block;
    margin: 0 auto 2rem;
    width: 99px;
  }
  /* line 558, sass/_small.scss */
  body.top #topFooterContent .footerInstagram .bx-wrapper {
    margin: 0 auto;
    background: none;
    box-shadow: none;
    border: none;
  }
  /* line 563, sass/_small.scss */
  body.top #topFooterContent .footerInstagram .bx-wrapper div {
    width: 20%;
  }
  /* line 568, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner {
    margin: 0 auto;
    padding: 0 15px;
  }
  /* line 570, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS {
    margin: 0 auto 3rem;
  }
  /* line 572, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS .facebook {
    margin: 0 auto 0.5rem;
    padding: 5rem 0;
    width: 96%;
  }
  /* line 578, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS .twitter {
    margin: 0 auto 1rem;
    width: 96%;
    border: 1px solid #e9ebee;
  }
  /* line 584, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList {
    margin: 0 auto 5rem;
    width: 96%;
  }
  /* line 587, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea {
    margin: 0 auto 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #666666;
  }
  /* line 591, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p {
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
    letter-spacing: 0.03em;
  }
  /* line 597, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p span.en {
    font-size: 2.2rem;
  }
  /* line 600, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p span.jp {
    margin-left: .4em;
    font-size: 1.3rem;
  }
  /* line 606, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 611, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 617, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 98%;
  }
  /* line 623, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box {
    margin-bottom: 2rem;
    width: 45%;
  }
  /* line 627, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName {
    margin: 0 auto 1rem;
  }
  /* line 629, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName img {
    margin: 0 auto 1rem;
  }
  /* line 632, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName p {
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 639, sass/_small.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopInfo p {
    margin: 0 0 5px;
    color: #333;
    font-size: 1.2rem;
  }

  /**
  * 下層ページ一般テンプレ（lower）
  */
  /* line 658, sass/_small.scss */
  body.lower #pageTitleArea {
    margin: 0 auto 3rem;
    padding: 2rem 0 2.5rem;
    width: 100%;
    min-height: 5rem;
    background: url("/img/upload/2017/06/bg_ptn_pageTitle.png") repeat;
  }
  /* line 664, sass/_small.scss */
  body.lower #pageTitleArea h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: normal;
    color: #333;
  }
  /* line 671, sass/_small.scss */
  body.lower #pageTitleArea h1 span {
    display: block;
    margin-bottom: 1rem;
    font-size: 3.6rem;
    font-family: 'Arapey', serif;
    text-transform: uppercase;
    letter-spacing: .2em;
  }


  /**
  * stylist
  */
  /* line 728, sass/_small.scss */
  body.stylist #main .stylistBox {
    position: relative;
  }
  /* line 730, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo {
    position: inherit;
	bottom: auto;
	display: table-footer-group;

  }
  /* line 733, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo h2 {
    margin: 2rem auto 0.5rem;
    font-size: 2rem;
    font-weight: bold;
  }
  /* line 737, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo h2 span {
    margin-left: 15px;
    font-size: 1.8rem;
  }
  /* line 742, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo p.job {
    font-size: 1.4rem;
  }
  /* line 745, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns {
    margin: 0 0 2rem auto;
    width: 100%;
    text-align: right;
  }
  /* line 750, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns li {
    width: 2.5rem;
    display: inline-block;
    padding-left: 8px;
  }
  /* line 752, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns li a {
    display: block;
  }
  /* line 757, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo p.catch01 {
    margin: 0 0 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
  }
  /* line 763, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo p.catch02 {
    margin: 0 0 3rem;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  /* line 768, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .career {
    margin: 0 auto 3rem;
  }
  /* line 770, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .career dl {
    margin: 0 auto 0.5rem;
    width: 96%;
  }
  /* line 773, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .career dl dt {
    float: left;
    width: 44%;
    font-size: 1.2rem;
    font-weight: bold;
  }
  /* line 779, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .career dl dd {
    /*float: left;*/
    font-size: 1.2rem;
    text-align: left;
    overflow: auto;
  }
  /* line 788, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea {
    margin: 0 auto 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #666666;
  }
  /* line 792, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 {
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 798, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 span.en {
    font-size: 2.2rem;
    font-family: 'Arapey', serif;
  }
  /* line 801, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 span.jp {
    margin-left: .4em;
    font-size: 1.2rem;
  }
  /* line 807, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 812, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 819, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article {
    margin-bottom: 20px;
  }
  /* line 821, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul {
    display: -webkit-flex;
    display: flex;
  }
  /* line 825, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.category {
    margin-right: 10px;
  }
  /* line 827, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.category a {
    display: inline-block;
    padding: 3px 20px;
    color: #fff;
    background-color: #666666;
    text-align: center;
    font-size: 1.1rem;
  }
  /* line 836, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.date {
    margin-right: 15px;
    padding-top: 3px;
  }
  /* line 839, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.date a {
    color: #333;
    font-size: 1.1rem;
  }
  /* line 844, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author {
    position: relative;
    padding-top: 3px;
  }
  /* line 847, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author:before {
    position: absolute;
    content: "/";
    left: -10px;
    text-decoration: none;
  }
  /* line 853, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author a {
    color: #777777;
    font-size: 1.1rem;
    text-decoration: underline;
  }
  /* line 862, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article a.linkToArticle p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
  }
  /* line 867, sass/_small.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article a.linkToArticle p.title {
    font-weight: bold;
    margin: 0 0 5px;
  }
  /* line 877, sass/_small.scss */
  body.stylist #main .stylistBox .visualInfo {
    padding-bottom: auto;
	display: table-header-group;
  }
  /* line 881, sass/_small.scss */
  body.stylist #main .stylistBox .visualInfo .photo {
    margin: 0 auto 2rem;
  }
  /* line 884, sass/_small.scss */
  body.stylist #main .stylistBox .visualInfo .photo img {
    width: 100%;
    height: auto;
  }
  body.stylist #main .stylistBox .visualInfo .calendar {
    width: 100%;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner {
    display: none;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner.active {
    display: block;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner {
    border: 1px solid #777777;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month {
    padding: 1rem;
    background-color: #777777;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month a {
    display: block;
    font-size: 0.8rem;
    color: #fff;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month span {
    font-size: 1.4rem;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table {
    margin: 1.5rem auto;
    width: 100%;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr {
    text-align: center;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr th {
    padding: 0.5rem;

    font-size: 1.2rem;
    font-weight: bold;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr .Saturday {
    color: #5794f7;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr .Sunday {
    color: #ff4576;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr td {
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #a5aab4;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr td.holiday {
    background: url("/img/upload/2017/06/bg_holiday.png") no-repeat center;
    background-size: contain;
    color: #fff;
  }

  /* line 895, sass/_small.scss */
  body.stylist #main .sect02 .titleArea {
    margin: 0 auto 2rem;
    padding: 0 0 1rem;
    width: auto;
    border-bottom: 1px solid #666666;
    clear: left;
  }
  /* line 900, sass/_small.scss */
  body.stylist #main .sect02 .titleArea h3 {
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 907, sass/_small.scss */
  body.stylist #main .sect02 .titleArea h3 span.en {
    font-size: 2.2rem;
  }
  /* line 910, sass/_small.scss */
  body.stylist #main .sect02 .titleArea h3 span.jp {
    margin-left: .4em;
    font-size: 1.2rem;
  }
  /* line 916, sass/_small.scss */
  body.stylist #main .sect02 .titleArea a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 921, sass/_small.scss */
  body.stylist #main .sect02 .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  body.stylist #main .sect02 ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  /* line 927, sass/_small.scss */
  body.stylist #main .sect02 ul.wrapper {
    padding: 0;
  }
  /* line 933, sass/_small.scss */
  body.stylist #main .sect02 ul.wrapper li {
    width: 145px;
  }
  ul.wrapper_stylist li {
    float: left;
    margin: 0px 10px 10px 0;
    width: 31%;
  }
  ul.wrapper_stylist li:nth-child(3n) {
    margin: 0px 0 1rem 0;
  }
  body.stylist #main .sect02 ul.wrapper li a.img {
    display: block;
    width: 145px;
    height: 218px;
    margin: 0 0 10px;
  }
  body.stylist #main .sect02 ul.wrapper_stylist li a.img {
    display: block;
    margin: 0 0 0.5rem;
  }
  /* line 1022, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  body.stylist #main .sect02 ul.wrapper_stylist li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1028, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  body.stylist #main .sect02 ul.wrapper_stylist li a.txt p {
    color: #333;
    font-size: 1.2rem;
  }
  body.stylist #main .sect03 ul.wrapper {
    padding: 0;
  }
  body.stylist #main .sect03 ul.wrapper li {
    float: left;
    margin: 0 0 1rem;
    width: 30%;
    height: auto;
  }
  body.stylist #main .sect03 ul.wrapper li:nth-child(3n+2) {
    margin: 0 5% 1rem;
  }
  body.stylist #main .sect03 ul.wrapper li a.img {
    display: block;
    margin: 0 0 0.5rem!important;
    width: auto!important;
    height: auto!important;
  }


  /**
  * style
  */
  /* line 966, sass/_small.scss */
  body.style #main .styleBox {
    position: relative;
  }
  /* line 968, sass/_small.scss */
  body.style #main .styleBox .txtInfo {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  /* line 971, sass/_small.scss */
  body.style #main .styleBox .txtInfo h2 {
    margin: 10px auto 10px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  /* line 976, sass/_small.scss */
  body.style #main .styleBox .txtInfo ul.sns {
    margin: 0 0 2rem auto;
    text-align: right;
  }
  /* line 981, sass/_small.scss */
  body.style #main .styleBox .txtInfo ul.sns li {
    width: 2.5rem;
    display: inline-block;
    padding-left: 8px;
  }
  /* line 983, sass/_small.scss */
  body.style #main .styleBox .txtInfo ul.sns li a {
    display: block;
  }
  /* line 988, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box {
    margin: 0 auto 3rem;
    font-size: 1.4rem;
  }
  /* line 990, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box p.styleTitle {
    margin: 0 auto 2rem;
    padding: 0 0 0.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 996, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box dl {
    margin: 0 auto 0.5rem;
  }
  /* line 999, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box dl dt:first-of-type {
    width: 30%;
  }
  body.style #main .styleBox .txtInfo .box dl dt {
    float: left;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1005, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box dl dd {
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1013, sass/_small.scss */
  body.style #main .styleBox .txtInfo .box ul li {
    margin: 0 1rem 0 0;
    font-size: 1.2rem;
  }
  .typeOn {
    background-color: #CD4465;
    color: #FFFFFF;
    width: 42px;
    text-align: center;
    display: inline-block;
    font-size: 11px;
  }
  .typeOff {
  background-color: #EEEEEE;
  color: #FFFFFF;
  width: 50px;
  height: 58px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  }
  .circletype::before {
    background-image: url("/img/upload/2017/06/bg-circle.png");
    background-repeat: no-repeat;
    content: " ";
    height: 30px;
    width: 30px;
    overflow: hidden;
    display: block;
    margin: 4px auto;
  }
  .eggtype::before {
    background-image: url("/img/upload/2017/06/bg-egg.png");
    background-repeat: no-repeat;
    content: " ";
    height: 30px;
    width: 20px;
    overflow: hidden;
    display: block;
    margin: 4px auto;
  }
  .squaretype::before {
      background-image: url("/img/upload/2017/06/bg-square.png");
      background-repeat: no-repeat;
      content: " ";
      height: 30px;
      width: 30px;
      overflow: hidden;
      display: block;
      margin: 4px auto;
  }
  .triangletype::before {
    background-image: url("/img/upload/2017/06/bg-triangle.png");
    background-repeat: no-repeat;
    content: " ";
    height: 30px;
    width: 30px;
    overflow: hidden;
    display: block;
    margin: 4px auto;
  }
  .basetype::before {
      background-image: url("/img/upload/2017/06/bg-base.png");
      background-repeat: no-repeat;
      content: " ";
      height: 30px;
      width: 30px;
      overflow: hidden;
      display: block;
      margin: 4px auto;
  }
  /* line 1020, sass/_small.scss */
  body.style #main .styleBox .visualInfo {
    padding-bottom: 650px;
  }
  /* line 1023, sass/_small.scss */
  body.style #main .styleBox .visualInfo .photo {
    margin: 0 0 1rem;
  }
  /* line 1025, sass/_small.scss */
  body.style #main .styleBox .visualInfo .photo img {
    width: 100%;
  }
  /* line 1030, sass/_small.scss */
  body.style #main .styleBox .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1035, sass/_small.scss */
  body.style #main .styleBox .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1043, sass/_small.scss */
  body.style #main .commentArea {
    margin: 0 auto 5rem;
    padding: 20px;
    background-color: #eee;
    width: auto;
  }
  /* line 1048, sass/_small.scss */
  body.style #main .commentArea .img {
    text-align: left;
  }
  body.style #main .commentArea .img:after {
    content:"";
    clear: left;
    display: block;
  }
  /* line 1050, sass/_small.scss */
  body.style #main .commentArea .img img {
    margin: 0 12px 1.4rem 0;
    float: left;
    width: 40%;
  }
  /* line 1053, sass/_small.scss */
  body.style #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
    padding-top: 10%;
    font-size: 1.6rem;
    margin-bottom: 8px;
    display: block;
  }
  /* line 1059, sass/_small.scss */
  body.style #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 0.5rem;

  }
  /* line 1063, sass/_small.scss */
  body.style #main .commentArea .txt p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  /* line 1071, sass/_small.scss */
  body.style #main .couponArea {
    margin: 0 auto 5rem;
    width: 100%;
    position: relative;
    box-shadow: 0px 0px 4px;
    border: 1px solid #cfcfcf;
  }
  /* line 1077, sass/_small.scss */
  body.style #main .couponArea h4 {
    text-align: center;
    background-color: #414141;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    color: #fff;
  }
  /* line 1084, sass/_small.scss */
  body.style #main .couponArea .couponContent {
    position: relative;
  }
  /* line 1086, sass/_small.scss */
  body.style #main .couponArea .couponContent .img {
    position: absolute;
    bottom: 0;
  }
  /* line 1088, sass/_small.scss */
  body.style #main .couponArea .couponContent .img img {
    display: none;
  }
  /* line 1092, sass/_small.scss */
  body.style #main .couponArea .couponContent .img p {
    font-size: 1.2rem;
    line-height: .6;
    margin-left: 20px;
  }
  /* line 1095, sass/_small.scss */
  body.style #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  body.style #main .couponArea .couponContent .txt {
    padding: 14px;
    padding-bottom: 54px;
  }
  /* line 1103, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  /* line 1107, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1109, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 1rem;
    padding: 0.3rem 1rem;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1118, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 2rem;
    font-weight: bold;
  }
  /* line 1124, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1128, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1131, sass/_small.scss */
  body.style #main .couponArea .couponContent .txt a {
    display: block;
    padding: 1rem 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.6rem;
  }
  /* line 1143, sass/_small.scss */
  body.style #main .sect02 .titleArea {
    margin: 0 auto 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #666666;
  }
  body.style #main .sect02 .titleArea h3{
    margin-bottom: 0;
  }
  body.style #main .sect02 .titleArea h3 .en {
    font-size: 2.2rem;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  body.style #main .sect02 .titleArea h3 .jp {
    font-weight: normal;
    margin-left: .4em;
    font-size: 1.3rem;
  }
  /* line 1147, sass/_small.scss */
  body.style #main .sect02 .titleArea p {
    margin: 0;
    padding: 0 0 0.5rem;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 1154, sass/_small.scss */
  body.style #main .sect02 .titleArea p span.en {
    font-size: 2.2rem;
  }
  /* line 1157, sass/_small.scss */
  body.style #main .sect02 .titleArea p span.jp {
    margin-left: 1.3em;
    font-size: 1.6rem;
  }
  /* line 1163, sass/_small.scss */
  body.style #main .sect02 .titleArea a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
    bottom: 0;
    right: 0;
  }
  /* line 1171, sass/_small.scss */
  body.style #main .sect02 .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1183, sass/_small.scss */
  body.style #main .sect02 ul.wrapper li {
    display: inline-block;
	vertical-align: top;
	float: none;
	margin: 0 0 1rem;
	width: 30%;
	height: auto;
  }
  body.style #main .sect02 ul.wrapper li:nth-child(3n+2) {
    margin: 0 5% 1rem;
  }
  /* line 1186, sass/_small.scss */
  body.style #main .sect02 ul.wrapper li a.img {
    display: block;
    margin: 0 0 0.5rem;
  }
  /* line 1193, sass/_small.scss */
  body.style #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 5px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1199, sass/_small.scss */
  body.style #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
  }

  /**
  * coupon
  */
  /* line 689, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea {
    margin: 0 auto 2rem;
    border-bottom: 1px solid #666666;
  }
  /* line 692, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea h3 {
    margin: 0;
    padding: 0 0 0.5rem;
    color: #333;
    font-weight: normal;
  }
  /* line 698, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea h3 span.en {
    font-size: 2.2rem;
    font-family: 'Arapey', serif;
  }
  /* line 702, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea h3 span.jp {
    margin-left: .4em;
    font-size: 1.3rem;
  }
  /* line 708, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea a {
    float: right;
    display: block;
    font-size: 1.6rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 714, sass/_small.scss */
  body.coupon #main section.sect01 .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 720, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea {
    margin: 0 auto 3rem;
    padding: 3rem 2%;
    width: 96%;
    background-color: #f6f6f6;
  }
  /* line 725, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea dl {
    margin: 0 auto 1rem;
    padding: 0.5rem;
    background-color: #fff;
  }
  /* line 729, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea dl dt {
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 734, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea dl dd {
    font-size: 1.6rem;
  }
  /* line 737, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea dl dd ul li {
    float: left;
    margin-right: 1rem;
    font-size: 1.3rem;
  }
  /* line 740, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea dl dd ul li span {
    margin-left: 0.5rem;
  }
  /* line 747, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea .btn {
    margin: 3rem auto 0;
    text-align: center;
  }
  /* line 750, sass/_small.scss */
  body.coupon #main section.sect01 .filterArea .btn button {
    padding: 1rem 0;
    color: #fff;
    width: 80%;
    font-size: 1.6rem;
    background-color: #777777;
    border: none;
  }
  /* line 763, sass/_small.scss */
  body.coupon #main .result .couponArea {
    margin: 0 auto 2rem;
    position: relative;
    border: 1px solid #cfcfcf;
  }
  /* line 769, sass/_small.scss */
  body.coupon #main .result .couponArea h4 {
    text-align: center;
    background-color: #414141;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    color: #fff;
  }
  /* line 776, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent {
    padding: 1.4rem;
  }
  /* line 778, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .img {
    margin: 0 auto 1rem;
  }
  /* line 780, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .img img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  /* line 784, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .img p {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  /* line 787, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 795, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.6rem;
  }
  /* line 799, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 801, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 1rem;
    padding: 0.3rem 1rem;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  /* line 810, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 816, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 820, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 823, sass/_small.scss */
  body.coupon #main .result .couponArea .couponContent .txt a {
    display: block;
    padding: 1rem 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }


  /**
  * voice
  */
  body.voice #main .voiceBox {
    margin: 0 auto 4rem;
    width: 96%;
  }
  body.voice #main .voiceBox .voiceInner {
    margin: 0 auto 2rem;
    padding: 2rem 6%;
    background-color: #eee;
  }
  body.voice #main .voiceBox.pickUp .voiceInner {
    background-color: #faf6e9;
  }
  body.voice #main .voiceBox .voiceInner h2 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    font-weight: bold;
  }
  body.voice #main .voiceBox .voiceInner h2 span {
    position: relative;
  }
  body.voice #main .voiceBox.pickUp h2 span {
    padding-right: 6rem;
  }
  body.voice #main .voiceBox.pickUp h2 span:after {
    position: absolute;
    content: "Pick Up";
    padding: 2px 4px;
    color: #fff;
    background-color: #666666;
    font-size: 1rem;
    right: 0;
  }

  body.voice #main .voiceBox .voiceInner p {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  body.voice #main .voiceBox .voiceInner dl {
    display: flex;
    font-size: 1.2rem;
    font-weight: bold;
  }
  body.voice #main .voiceBox .voiceInner dl dt {
    margin-right: 0.5rem;
  }
  body.voice #main .voiceBox .voiceInner dl dd {
    position: relative;
    margin: 0 0 0 1rem;
    padding: 0;
  }
  body.voice #main .voiceBox .voiceInner dl dd:before {
    position: absolute;
    content: "/";
    left: -1rem;
  }
  body.voice #main .voiceBox .review,
  body.voice #main .voiceBox .reply {
    margin: 0 auto 2rem;
  }
  body.voice #main .voiceBox .review .reviewInner {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body.voice #main .voiceBox .review h3,
  body.voice #main .voiceBox .reply h3 {
    font-size: 1.4rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #666666;
  }
  body.voice #main .voiceBox .review dl {
    width: 40%;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
  }
  body.voice #main .voiceBox .review dl dt {
    margin: 0 5px 0 0;
    padding: 0;
  }
  body.voice #main .voiceBox .review dl dd {
    margin: 0;
    padding: 0;
    color: #777777;
  }
  body.voice #main .voiceBox .reply p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  /**
  * contact
  */
  /* 入力、確認、完了共通 */
  body.contact #main p.message {
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.6rem;
  }

  body.contact #main .contactInner {
    margin: 0 auto 3rem;
    width: 96%;
  }
  body.contact #main .btn input {
    display: block;
    text-align: center;
    border: none;
    font-size: 1.6rem;
    font-weight: bold;
  }
  :placeholder-shown {
      color: #aeacac;
  }

  /* iOSで勝手に角丸になるのを防ぐ */
  input[type="button"],input[type="text"],input[type="submit"],input[type="reset"] {
   -webkit-appearance: none;
   border-radius: 0;
  }
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  ::-webkit-input-placeholder {
      color: #aeacac;
  }
  /* input 入力画面 */
  body.contact #main .input .contactInner dl {
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
  }
  body.contact #main .input .contactInner dl dt {
    margin-bottom: 0.5rem;
  }
  body.contact #main .input .contactInner dl dd {
    margin: 0;
    padding: 0;
  }
  body.contact #main .input .contactInner dl dd input {
    padding: 1rem 2%;
    border: 1px solid #e1e1e1;
    width: 96%;
    font-size: 1.6rem;
  }
  body.contact #main .input .contactInner dl dd textarea {
    padding: 1rem 2%;
    border: 1px solid #e1e1e1;
    width: 96%;
    font-size: 1.6rem;
  }
  body.contact #main .input .btn {
    margin: 0 auto 3rem;
    width: 96%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body.contact #main .input .btn input#btnReset {
    padding: 1rem 0;
    width: 46%;
    background-color: #eee;
  }
  body.contact #main .input .btn input#btnConfirm {
    padding: 1rem 0;
    width: 46%;
    color: #fff;
    background-color: #777777;
  }
  /* confirm 確認画面 */
  body.contact #main .confirm .contactInner dl {
    margin: 0 auto 1.2rem;
    width: 96%;
    font-size: 1.6rem;
    text-align: left;
  }
  body.contact #main .confirm .contactInner dl dt {
    margin: 0 0 0.5rem;
    font-weight: bold;
  }
  body.contact #main .confirm .contactInner dl dd {
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  body.contact #main .confirm .btn {
    margin: 0 auto 3rem;
    width: 640px;
    display: flex;
    justify-content: space-between;
  }
  body.contact #main .confirm .btn input#btnBack {
    padding: 1rem 0;
    width: 46%;
    background-color: #eee;
  }
  body.contact #main .confirm .btn input#btnSend {
    padding: 1rem 0;
    width: 46%;
    color: #fff;
    background-color: #777777;
  }

  /* complete 完了画面 */
  body.contact #main .complete a.returnTop {
    display: block;
    margin: 0 auto 3rem;
    padding: 1rem 0;
    width: 80%;
    text-align: center;
    font-size: 1.4rem;
    background-color: #eee;
    color: #333;
    font-weight: 600;
  }

  

  /**
  * shoplist
  */
  /* line 970, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea {
    margin: 80px auto 20px;
  }
  /* line 1003, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper {
    margin: 0 auto;
  }
  /* line 1012, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li {
    float: left;
    margin: 0px 8% 30px 0;
    width: 46%;
  }
  body.shoplist #main .sect02 ul.wrapper li:nth-child(2n) {
    margin: 0px 0 1rem 0;
  }
  /* line 1015, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li a.img {
    display: block;
    margin: 0 0 1rem;
  }
  /* line 1022, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  body.shoplist #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
  }


  /**
  * media
  */
  /* line 970, sass/_large.scss */
  body.media #main .sect02 .titleArea {
    margin: 80px auto 20px;
  }
  /* line 1003, sass/_large.scss */
  body.media #main .sect02 ul.wrapper {
    margin: 0 auto;
  }
  /* line 1012, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li {
    float: left;
    margin: 0px 8% 30px 0;
    width: 46%;
  }
  body.media #main .sect02 ul.wrapper li:nth-child(2n) {
    margin: 0px 0 1rem 0;
  }
  /* line 1015, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li a.img {
    display: block;
    margin: 0 0 1rem;
  }
  /* line 1022, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  body.media #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    overflow: hidden;
  }


  /**
  * gallery
  */
  /* line 970, sass/_large.scss */
  body.gallery #main .sect02 .titleArea {
    margin: 80px auto 20px;
  }
  /* line 1003, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper {
    margin: 0 auto;
    width: 100%!important;
    text-align: center;
  }
  /* line 1012, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li {
    width: 100%!important;
    clear: left;
    margin: 0px 8% 30px 0;
  }
  /* line 1015, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li a.img {
    display: block;
    margin: 0 0 1rem;
  }
  /* line 1022, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  body.gallery #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
  }




  /**
  * menu
  */
  /* line 1045, sass/_large.scss */
  body.menu #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  body.menu #main .sect {
    width: auto;
    margin-bottom: 80px;
  }
  body.menu #main .sect .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.menu #main .sect p {
    line-height: 1.6;
  }
  body.menu #main .sect .txtRight {
    font-size: 1.1rem;
    text-align: right;
    display: block;
    margin-bottom: 8px;
    color: #999;
  }
  body.menu #main .sect table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  body.menu #main .sect .table > tbody > tr > td:first-child {
    text-align: left !important;
    width: 100%;
  }
  body.menu #main .sect .table tr {
    border-top: 1px solid #ddd;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
  }
  body.menu #main .sect .table td {
    padding: 6px 20px 0 0;
    line-height: 1.42857143;
    vertical-align: top;
    font-size: 1.3rem;
    display: inline-block;
  }
  body.menu #main .serviceSubTxt {
    font-size: 1.2rem!important;
    line-height: 16px;
    color: #999;
  }
  /* line 1055, sass/_large.scss */
  body.menu #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.menu #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.menu #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.menu #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.menu #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.menu #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.menu #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.menu #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.menu #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.menu #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.menu #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.menu #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.menu #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.menu #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.menu #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.menu #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.menu #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.menu #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.menu #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.menu #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.menu #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.menu #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .media-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .media-right {
    text-align: right;
    color: #666;
    display: block;
  }

  /* line 1223, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  /* line 1245, sass/_large.scss */
  body.menu #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.menu #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.menu #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.menu #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.menu #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.menu #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.menu #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }



  /**
  * news
  */
  body.news #main .sect {
    width: auto;
    margin-bottom: 80px;
    padding: 0 15px;
  }
  body.news #main .sect .titleArea {
    margin: 0 auto 2rem;
    border-bottom: 1px solid #666666;
  }
  body.news #main .sect .titleArea h3 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  body.news #main .sect p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  body.news #main .sect .txtRight {
    font-size: 1.2rem;
    text-align: right;
    display: block;
  }
  body.news #main .serviceSubTxt {
    font-size: 1.2rem!important;
    line-height: 16px;
    color: #999;
  }
  body.news #main .newsTime {
    font-size: 1.1rem!important;
    color: #666;
    display: block;
    margin-bottom: 10px;
  }
  /* line 1055, sass/_large.scss */
  body.news #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.news #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.news #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.news #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.news #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.news #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.news #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.news #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.news #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.news #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.news #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.news #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.news #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.news #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.news #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.news #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.news #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.news #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.news #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  body.news #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1150, sass/_large.scss */
  body.news #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.news #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.news #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.news #main .couponArea {
    margin: 0 auto 50px;
  }
  /* line 1172, sass/_large.scss */
  body.news #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.news #main .couponArea .couponContent {
    padding: 15px;
    width: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.news #main .couponArea .couponContent .img {
    width: 80%;
    margin-right: 10px;
  }
  /* line 1187, sass/_large.scss */
  body.news #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: auto;
    height: auto;
  }
  /* line 1192, sass/_large.scss */
  body.news #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.news #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt h5 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  /* line 1206, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt ul {
    margin-top: 10px;
  }
  /* line 1208, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.news #main .couponArea .couponContent .txt ul li a {
    color: #fff;
  }
  /* line 1217, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1223, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt a {
    color: #333;
  }

  /* line 1245, sass/_large.scss */
  body.news #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 12px;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
  }
  /* line 1252, sass/_large.scss */
  body.news #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.news #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.news #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.news #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.news #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.news #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  body.news #main .sect .wrapper li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.news #main .articleTxt{
    margin-top: 40px;
    font-size: 1.4rem;
  }
  body.news #main .articleTxt p{
    line-height: 1.4;
    font-size: 1.4rem;
  }
  body.news #main .newsTime > div img{
    margin-top: 30px;
  }
  body.news #main .newsTime .postUser{
    padding: 10px 10px!important;
    font-size: 1.2rem;
    color: #666666!important;
    display: inline!important;
  }





  /**
  * blog
  */
  body.blog #main .sect {
    width: auto;
    margin-bottom: 80px;
    padding: 0 15px;
  }
  body.blog #main .sect .titleArea {
    margin: 0 auto 2rem;
    border-bottom: 1px solid #666666;
  }
  body.blog #main .sect .titleArea h3 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  body.blog #main .sect p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  body.blog #main .sect .txtRight {
    font-size: 1.2rem;
    text-align: right;
    display: block;
  }
  body.blog #main .serviceSubTxt {
    font-size: 1.2rem!important;
    line-height: 16px;
    color: #999;
  }
  body.blog #main .newsTime {
    font-size: 1.1rem!important;
    color: #666;
    display: block;
    margin-bottom: 10px;
  }
  /* line 1055, sass/_large.scss */
  body.blog #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.blog #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.blog #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.blog #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.blog #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.blog #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.blog #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.blog #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.blog #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.blog #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.blog #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.blog #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.blog #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.blog #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.blog #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.blog #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  body.blog #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1150, sass/_large.scss */
  body.blog #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.blog #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.blog #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.blog #main .couponArea {
    margin: 0 auto 0px;
  }
  /* line 1172, sass/_large.scss */
  body.blog #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.blog #main .couponArea .couponContent {
    padding: 0;
    width: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  /* line 1185, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img {
    width: 80%;
    margin-right: 10px;
  }
  /* line 1187, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: auto;
    height: auto;
  }
  /* line 1192, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt h5 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  /* line 1206, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt ul {
    margin-top: 10px;
  }
  /* line 1208, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.blog #main .couponArea .couponContent .txt ul li a {
    color: #fff;
  }
  /* line 1217, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1223, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt a {
    color: #333;
  }

  /* line 1245, sass/_large.scss */
  body.blog #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 12px;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
  }
  /* line 1252, sass/_large.scss */
  body.blog #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.blog #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.blog #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.blog #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.blog #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.blog #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  body.blog #main .sect .wrapper li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.blog #main .sect .wrapper li a {
    color: #fff;
  }
  body.blog #main .articleTxt{
    margin-top: 40px;
  }
  body.blog #main .articleTxt p{
    line-height: 1.6;
    font-size: 1.4rem;
  }
  body.blog #main .newsTime > div img{
    margin-top: 30px;
  }
  body.blog #main .newsTime .postUser{
    padding: 10px 10px!important;
    font-size: 1.2rem;
    color: #666666!important;
    display: inline!important;
  }

  /**
  * access
  */
  body.access #main section{
    margin-bottom: 70px;
  }

  /* line 689, sass/_small.scss */
  body.access #main section .shopImg img {
    margin: 0 auto 60px;
    width: 100%;
  }
  body.access #main .shopdate {
    width: 100%!important;
}
  body.access section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.access #main .shopdate {
    margin: 0 auto 60px;
  }
  body.access #main .shopdate h3 {
    color: #333;
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
    font-weight: normal;
    margin-bottom: 8px;
  }
  /* line 692, sass/_small.scss */
  body.access #main .shopdate h3 span.en {
    padding: 0 0 0.5rem;
    font-size: 2.4rem;
  }
  body.access #main .shopdate h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
    letter-spacing: .11em;
  }
  body.access #main .shopdate p {
    font-size: 1.2rem;
    line-height: 1.6;
    overflow: auto;
  }
  body.access #main .navTitle {
    padding-right: 0;
  }
  body.access #main .shopdate a {
    color: #777777;
    text-decoration: none;
  }
  body.access #main .shopdate a:hover {
    color: #333;
    text-decoration: none;
  }
  body.access #main .shopdate table {
    margin-bottom: 20px;
    table-layout: fixed;
  }
  body.access #main .shopdate td {
    padding-top: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
    width: 70px;
  }
  body.access #main .shopdate td:nth-child(2n) {
    width: 230px;
  }
  body.access #main .navTitle {
    font-weight: 700;
    font-size: 1.4rem;
    float: left;
    padding-right: 40px;
  }
  .ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  .ggmap iframe, .ggmap object,　.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


  /**
  * faq
  */
  body.faq #main {
    width: 100%;
  }
  /* line 966, sass/_small.scss */
  body.faq #main .styleBox {
    margin: 0 auto 70px;
  }
  /* line 968, sass/_small.scss */
  body.faq #main .styleBox .txtInfo {
    margin: 0 auto 2rem;
    width: 96%;
  }
  /* line 971, sass/_small.scss */
  body.faq #main .styleBox .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 976, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns {
    margin: 0 0 2rem auto;
    width: 35%;
    display: flex;
    justify-content: space-between;
  }
  /* line 981, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns li {
    width: 2.5rem;
  }
  /* line 983, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns li a {
    display: block;
  }
  /* line 988, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box {
    margin: 0 auto 3rem;
  }
  /* line 990, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box p.styleTitle {
    margin: 0 auto 2rem;
    padding: 0 0 0.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 996, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl {
    margin: 0 auto 0.5rem;
    width: 96%;
  }
  /* line 999, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl dt {
    float: left;
    width: 30%;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1005, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl dd {
    float: left;
    width: 50%;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1013, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box ul li {
    margin: 0 1rem 0 0;
    font-size: 1.4rem;
  }
  /* line 1020, sass/_small.scss */
  body.faq #main .styleBox .visualInfo {
    margin: 0 auto;
    width: 96%;
  }
  /* line 1023, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .photo {
    margin: 0 0 1rem;
  }
  /* line 1025, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .photo img {
    width: 100%;
  }
  /* line 1030, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1035, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1143, sass/_small.scss */
  body.faq #main .sect .titleArea {
    margin: 0 auto 2rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1147, sass/_small.scss */
  body.faq #main .sect .titleArea p {
    margin: 0;
    padding: 0 0 0.5rem;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 1154, sass/_small.scss */
  body.faq #main .sect .titleArea h3 span.jp {
    font-size: 1.6rem;
    font-weight: 300;
  }
  /* line 1163, sass/_small.scss */
  body.faq #main .sect .titleArea a {
    position: absolute;
    display: block;
    font-size: 1.6rem;
    color: #333;
    text-decoration: underline;
    bottom: 0;
    right: 0;
  }
  /* line 1171, sass/_small.scss */
  body.faq #main .sect .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1177, sass/_small.scss */
  body.faq #main .sect ul.wrapper {
    display: flex;
    margin: 0 auto;
    width: 90%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* line 1183, sass/_small.scss */
  body.faq #main .sect ul.wrapper li {
    width: 43%;
  }
  /* line 1186, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1rem;
  }
  /* line 1193, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1199, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  div.accordion {
    width: 100%;
  }
  div.accordion > ul > li > a {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    background-color: #666666;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    padding: 14px 12px;
    position: relative;
  }
  div.accordion > ul > li > a:hover{
    opacity: .6;
  }
  div.accordion > ul > li > a:after, div.accordion > ul > li > a.active:after{
    font-size: 8px;
    position: absolute;
    right: 12px;
    top: 16px;
    color: #fff;
  }
  div.accordion > ul > li > a:after{
    content: "▼";
  }
  div.accordion > ul > li > a.active:after{
    content: "▲";
  }
  div.accordion > ul > li > ul {
    display: none;
  }
  div.accordion > ul > li > ul > li {
    display: block;
    color: #333;
    font-size: 1.4rem;
    padding: 26px 12px 40px;
    position: relative;
    line-height: 2.2rem;
  }
  .pager {
    overflow: hidden;
    margin: 60px 0;
  }
  .pager ul {
      list-style: none;
      position: relative;
      left: 50%;
      float: left;
  }
  .pager ul li {
      margin: 0 1px;
      position: relative;
      left: -50%;
      float: left;
  }
  .pager ul li span, .pager ul li a {
      display: block;
      font-size: 16px;
      padding: 0.6em 1em;
      border-radius: 3px;
  }
  .pager ul li a {
      background: #EEE;
      color: #000;
      text-decoration: none;
  }
  .pager ul li a:hover {
      background: #777777;
      color: #FFF;
  }



  /**
  * sitemap
  */
  body.sitemap #main section{
    margin: 50px auto 70px;
  }
  body.sitemap section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.sitemap #main .shopdate {
    margin: 0 auto 60px;
  }
  .main_page_link li {
    line-height: 1.6;
    color: #333;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 20px 0;
    border-bottom: 1px solid #666666;
  }
  .main_page_link li::before{
    content: "> ";
    display: inline;
  }
  .sublist {
    margin-top: 20px;
  }
  .sublist li {
    border-bottom: none;
  }
  body.sitemap #main .sublist {
    margin-left: 30px;
  }
  body.sitemap #main .shopdate ul a {
    text-decoration: underline;
    color: #333;
  }
  body.sitemap #main .shopdate a:hover {
    text-decoration: none;
  }


  /**
  * privacy
  */
  body.privacy #main section{
    margin: 50px auto 70px;
  }
  body.privacy section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.privacy #main .shopdate {
    margin: 0 auto 60px;
  }
  body.privacy #main .shopdate h3 {
    color: #333;
    font-size: 2.2rem;
    font-family: 'Arapey', serif;
    font-weight: normal;
    margin-bottom: 8px;
  }
  body.privacy #main .shopdate ol li, body.privacy #main .shopdate ol li {
    list-style: decimal;
    font-size: 1.3rem;
    line-height: 1.6;
    padding-bottom: 20px;
  }
  body.privacy #main .shopdate a {
    color: #777777;
    text-decoration: none;
  }
  body.privacy #main .shopdate a:hover {
    color: #333;
    text-decoration: none;
  }
  body.privacy #main .shopdate td {
    padding: 10px 40px 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }










}
@media only screen and (min-width: 769px) {
  /* =========================================================================
  ============================================================================

  frame

  ============================================================================
  ========================================================================= */
  /* line 9, sass/_large.scss */
  a {
    text-decoration: none;
  }
  /* line 11, sass/_large.scss */
  a:hover {
    opacity: .6;
  }

  /* =========================================================
   header
  ========================================================= */
  /* line 20, sass/_large.scss */
  header {
    border-top: 7px solid #666666;
  }
  /* line 22, sass/_large.scss */
  header #headerInner {
    position: relative;
    margin: 0 auto;
    padding: 15px 0 40px;
    min-height: 145px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* line 22, sass/_large.scss */
  header #headerInner {
    width: 1024px;
    position: relative;
    margin: 0 auto;
    padding: 15px 0 40px;
    min-height: 145px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 22, sass/_large.scss */
  header #headerInner {
    width: 1242px;
    position: relative;
    margin: 0 auto;
    padding: 15px 0 40px;
    min-height: 145px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header #headerInner .logoArea {
    position: absolute;
    left: 465px;
  }
}
@media only screen and (min-width: 1025px) {
  header #headerInner .logoArea {
    /*position: absolute;
    left: 570px;*/
  }
}
header #headerInner .logoArea a.logo {
  display: block;
  width: 234px;
}
/* line 50, sass/_large.scss */
header #headerInner .information {
  width: 250px;
  top: 15px;
}

header #headerInner .information p.headerText {
  margin: 0 0 15px;
  font-size: 12px;
}

/* line 53, sass/_large.scss */
header #headerInner .information span {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
/* line 57, sass/_large.scss */
header #headerInner .information span.telNumber {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
/* line 62, sass/_large.scss */
header #headerInner .information a {
  display: block;
  padding: 8px 0 6px;
  text-align: center;
  width: 250px;
  height: 20px;
  font-size: 1.2rem;
  text-decoration: none;
  background-color: #eee;
  color: #333;
  font-weight: 700;
}

header #headerInner ul.pcBtn {
  margin-top: 30px;
  width: 250px;
}

header #headerInner ul.pcBtn li {
  text-align: center;
}

header #headerInner ul.pcBtn li.recruit {
    margin-bottom: 10px;
}

header #headerInner ul.pcBtn li a {
  display: block;
  padding: 12px 0 5px;
  height: 23px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

header #headerInner ul.pcBtn li.recruit a {
  background-color: #777777;
}

header #headerInner ul.pcBtn li.reserve a {
  background-color: #bc4d7a;
}

header #headerInner .spReserve {
  display: none;
}

/* line 87, sass/_large.scss */
nav#gnav {
  margin: 0 auto;
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 87, sass/_large.scss */
  nav#gnav {
    width: 1024px;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 87, sass/_large.scss */
  nav#gnav {
    width: 1242px;
  }
}
@media only screen and (min-width: 768px) {
  /* line 95, sass/_large.scss */
  nav#gnav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  nav#gnav ul li.parent {
    position: relative;
  }
  nav#gnav ul li.parent a {
    padding-right: 15px;
  }
  nav#gnav ul li.parent:after {
    position: absolute;
    top: 3px;
    right: 0;
    content: "▼"
  }

  nav#gnav ul li a {
    font-size: 1.6rem;
    color: #333;
    padding: 5px 10px;
    text-align: center;
    font-family: 'Arapey', serif;
  }
  nav#gnav ul li span{
    color: #333;
    padding: 0 15px 0 0;
    text-align: center;
    font-family: 'Arapey', serif;
    display: block;
    font-size: 1.6rem;
  }
  nav#gnav ul li ul.child {
    display: none;
    position: absolute;
    z-index: 5;
    top: 100%;
    left: 0;
  }
  nav#gnav ul li.parent:hover ul.child {
    display: block;
  }
  nav#gnav ul li ul.child li a {
    display: block;
    padding: 10px;
    width: 50px;
    height: auto;
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 101, sass/_large.scss */
  nav#gnav ul li a {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 101, sass/_large.scss */
  nav#gnav ul li a {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 769px) {
  /* line 118, sass/_large.scss */
  #spNav, #spNavLogo, #spNavBtn {
    display: none;
  }

  /* =========================================================
   #container
  ========================================================= */
  /* =========================================================
   #content
  ========================================================= */
  /* line 134, sass/_large.scss */
  #content {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  /* =========================================================
   #main
  ========================================================= */
  /* line 146, sass/_large.scss */
  #main {
    width: 730px;
  }
  /* line 148, sass/_large.scss */
  #main .pageNation {
    text-align: center;
    margin: 0 auto;
    width: auto;
  }
  /* line 153, sass/_large.scss */
  #main .pageNation ul li {
    float: left;
  }

  /* =========================================================
   #sub
  ========================================================= */
  /* line 164, sass/_large.scss */
  #sub {
    width: 280px;
  }
  /* line 166, sass/_large.scss */
  #sub .subBox {
    margin: 0 auto 30px;
  }
  /* line 168, sass/_large.scss */
  #sub .subBox .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 171, sass/_large.scss */
  #sub .subBox .titleArea p {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 178, sass/_large.scss */
  #sub .subBox .titleArea p span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 182, sass/_large.scss */
  #sub .subBox .titleArea p span.jp {
    margin-left: .6em;
    font-size: 1.2rem;
  }
  /* line 188, sass/_large.scss */
  #sub .subBox .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.1rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 195, sass/_large.scss */
  #sub .subBox .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 202, sass/_large.scss */
  #sub .subBox .wrapper article {
    margin-bottom: 20px;
  }
  /* line 204, sass/_large.scss */
  #sub .subBox .wrapper article ul {
    display: -webkit-flex;
    display: flex;
  }
  /* line 208, sass/_large.scss */
  #sub .subBox .wrapper article ul li.category {
    margin-right: 10px;
  }
  /* line 210, sass/_large.scss */
  #sub .subBox .wrapper article ul li.category a {
    display: inline-block;
    padding: 3px 20px;
    color: #fff;
    background-color: #666666;
    text-align: center;
    font-size: 1.1rem;
  }
  /* line 219, sass/_large.scss */
  #sub .subBox .wrapper article ul li.date {
    margin-right: 15px;
    padding-top: 3px;
  }
  /* line 222, sass/_large.scss */
  #sub .subBox .wrapper article ul li.date a {
    color: #333;
    font-size: 1.1rem;
  }
  /* line 227, sass/_large.scss */
  #sub .subBox .wrapper article ul li.author {
    position: relative;
    padding-top: 3px;
  }
  /* line 230, sass/_large.scss */
  #sub .subBox .wrapper article ul li.author:before {
    position: absolute;
    content: "/";
    left: -10px;
    text-decoration: none;
  }
  /* line 236, sass/_large.scss */
  #sub .subBox .wrapper article ul li.author a {
    color: #777777;
    font-size: 1.1rem;
    text-decoration: underline;
  }
  /* line 245, sass/_large.scss */
  #sub .subBox .wrapper article a.linkToArticle p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
  }
  /* line 250, sass/_large.scss */
  #sub .subBox .wrapper article a.linkToArticle p.title {
    font-weight: bold;
    margin: 0 0 5px;
  }
  /* line 261, sass/_large.scss */
  #sub #subStaff ul li, #sub #subCategory ul li, #sub #subFaq ul li, #sub #subNewscate ul li, #sub #subMedicate ul li, #sub #subBlogcate ul li {
    text-align: center;
  }
  /* line 263, sass/_large.scss */
  #sub #subStaff ul li a, #sub #subCategory ul li a, #sub #subFaq ul li a, #sub #subNewscate ul li a, #sub #subMedicate ul li a, #sub #subBlogcate ul li a {
    display: block;
    margin: 0 auto 10px;
    padding: 5px 0;
    color: #333;
    font-size: 1.4rem;
  }
  /* line 274, sass/_large.scss */
  #sub #subStyle ul {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 282, sass/_large.scss */
  #sub #subStyle ul li {
    width: 45%;
  }
  /* line 285, sass/_large.scss */
  #sub #subStyle ul li a.img {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
  }
  /* line 292, sass/_large.scss */
  #sub #subStyle ul li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 298, sass/_large.scss */
  #sub #subStyle ul li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  dl.search2 {
    position: relative;
  }
  dl.search2 dt {
    margin-right: 105px;
    padding: 0 0 0 8px;
    background-color: #fff;
    border: 1px solid #aaa;
  }
  dl.search2 dd {
    position: absolute;
    top: 0;
    right: 0;
  }
  dl.search2 dt input {
    width: 100%;
    height: 24px;
    line-height: 24px;
    background: none;
    border: none;
  }
  dl.search2 dd button {
    display: block;
    width: 100px;
    height: 28px;
    color: #fff;
    line-height: 28px;
    text-align: center;
    background-color: #666666;
    border: 1px solid #666666;
  }

  /* =========================================================
   footer
  ========================================================= */
  /* line 313, sass/_large.scss */
  a#goTop {
    display: block;
    margin: 0;
    padding: 25px 0 10px;
    background: url("/img/upload/2017/06/img-totop.png") no-repeat #eee;
    background-position: center 10px;
    text-align: center;
    color: #333;
    clear: left;
  }

  /* line 323, sass/_large.scss */
  footer {
    padding: 50px 0 0;
    background-color: #414141;
  }
  /* line 328, sass/_large.scss */
  footer #footerInner #footerNav ul {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 328, sass/_large.scss */
  footer #footerInner #footerNav ul {
    width: 1024px;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 328, sass/_large.scss */
  footer #footerInner #footerNav ul {
    width: 1180px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 341, sass/_large.scss */
  footer #footerInner #footerNav ul li a {
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    font-family: 'Arapey', serif;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 341, sass/_large.scss */
  footer #footerInner #footerNav ul li a {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 341, sass/_large.scss */
  footer #footerInner #footerNav ul li a {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 769px) {

  footer #footerInner #footerContent {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  @media only screen and (max-width: 1024px) {
    footer #footerInner #footerContent {
      margin: 0 auto 30px;
      width: 1024px;
    }
  }
  @media only screen and (min-width: 1025px) {
    footer #footerInner #footerContent {
      margin: 0 auto 30px;
      width: 1240px;
    }
  }

  footer #footerInner #footerContent #footerInfo #footerLogo {
    margin: 0 0 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  footer #footerInner #footerContent #footerInfo #footerLogo a {
    display: block;
    margin-right: 30px;
    width: 118px;
    height: 118px;
  }
  footer #footerInner #footerContent #footerInfo #footerLogo p {
    width: 260px;
    margin-top: 50px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  /* line 374, sass/_large.scss */
  footer #footerInner #footerContent #footerInfo .txtInfo p {
    display: block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: normal;
  }

  footer #footerInner #footerContent #footerInfo .txtInfo p.address {
    margin-bottom: 20px;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerTel {
    margin-bottom: 5px;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerTel a {
    color: #fff;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.footerFax {
    color: #fff;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.contact {
    text-align: center;
  }
  footer #footerInner #footerContent #footerInfo .txtInfo p.contact a {
    display: block;
    padding: 10px 0 0;
    width: 250px;
    height: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    background-color: #eee;
  }
  footer #footerInner #footerContent .businessHourWrapper {
    margin-top: 145px;
    width: 400px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  footer #footerInner #footerContent .businessHour p,
  footer #footerInner #footerContent .finalAcceptance p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.08em;
  }
  footer #footerInner #footerContent .businessHour dl,
  footer #footerInner #footerContent .finalAcceptance dl {
    color: #fff;
    font-size: 1.3rem;
    width: 180px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1.6;
  }
  footer #footerInner #footerContent .businessHour dl dt,
  footer #footerInner #footerContent .finalAcceptance dl dt {
    width: 60px;
  }
  footer #footerInner #footerContent .businessHour dl dd,
  footer #footerInner #footerContent .finalAcceptance dl dd {
    width: 120px;
  }

  footer #footerInner #footerContent #footerLink {
    width: 250px;
    position: relative;
  }
  @media only screen and (min-width: 1025px) {
    footer #footerInner #footerContent #footerLink {
      margin-left: 150px;
    }
  }

  footer #footerInner #footerContent #footerLink ul.actionBtn {
    margin-bottom: 30px;
  }
  /* line 419, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li {
    text-align: center;
  }
  /* line 421, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li a {
    display: block;
    padding-top: 12px;
    width: 250px;
    height: 28px;
    font-size: 1.2rem;
  }
  /* line 428, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.recruit {
    margin-bottom: 10px;
    background-color: #777777;
  }
  /* line 431, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.recruit a {
    color: #fff;
  }

  /* line 437, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.actionBtn li.reserve a {
    background-color: #bc4d7a;
    color: #fff;
  }
  /* line 443, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.snsBtn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  /* line 448, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.snsBtn li {
    margin-left: 13px;
  }
  /* line 450, sass/_large.scss */
  footer #footerInner #footerContent #footerLink ul.snsBtn li a {
    display: block;
    width: 35px;
  }
  /* line 459, sass/_large.scss */
  @media only screen and (max-width: 1024px) {
    footer #footerInner #footerPolicy {
      margin: 0 auto;
      width: 1024px;
    }
  }
  @media only screen and (min-width: 1025px) {
    footer #footerInner #footerPolicy {
      margin: 0 auto;
      width: 1240px;
    }
  }
  /* line 462, sass/_large.scss */
  footer #footerInner #footerPolicy ul {
    float: left;
  }
  /* line 464, sass/_large.scss */
  footer #footerInner #footerPolicy ul li {
    float: left;
    position: relative;
    margin-right: 15px;
  }
  /* line 469, sass/_large.scss */
  footer #footerInner #footerPolicy ul li:first-child a:before {
    content: "";
  }
  /* line 473, sass/_large.scss */
  footer #footerInner #footerPolicy ul li a {
    color: #fff;
    font-size: 1.1rem;
  }
  /* line 476, sass/_large.scss */
  footer #footerInner #footerPolicy ul li a:before {
    position: absolute;
    content: "/";
    left: -10px;
  }
  /* line 484, sass/_large.scss */
  footer #footerInner #footerPolicy p {
    float: right;
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    text-align: right;
  }

  /* =========================================================================
  ============================================================================

  各page

  ============================================================================
  ========================================================================= */
  /**
  * top
  */
  /* line 507, sass/_large.scss */
  #mainVisual {
    margin: 0 auto 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* line 509, sass/_large.scss */
  #mainVisual .swiper-wrapper {
    width: 960px;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 509, sass/_large.scss */
  #mainVisual .swiper-wrapper {
    width: 1242px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 516, sass/_large.scss */
  #mainVisual .swiper-wrapper .swiper-slide {
    border-right: 3px solid #fff;
  }

  body.top #content {
    width: 1060px;
  }

  .wrapper {
    margin-bottom: 10px;
  }

  body.top .topBnrArea {
    margin: 0 auto 50px;
    width: 980px;
  }
  /* line 529, sass/_large.scss */
  body.top .topBnrArea ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 535, sass/_large.scss */
  body.top .topBnrArea ul li a {
    display: block;
    width: 236px;
    height: 120px;
  }
  /* line 543, sass/_large.scss */
  body.top section.sect {
    margin: 0 auto 50px;
    clear: left;
  }
  /* line 545, sass/_large.scss */
  body.top section.sect .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 548, sass/_large.scss */
  body.top section.sect .titleArea h2 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 555, sass/_large.scss */
  body.top section.sect .titleArea h2 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
    letter-spacing: .11em;
  }
  /* line 559, sass/_large.scss */
  body.top section.sect .titleArea h2 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
    letter-spacing: .11em;
  }
  /* line 565, sass/_large.scss */
  body.top section.sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 572, sass/_large.scss */
  body.top section.sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }

  body.top section.sect ul.wrapper {
    margin: 0 auto;
    width: 730px;
  }
  /* line 587, sass/_large.scss */
  body.top section.sect ul.wrapper li a.img {
    display: block;
    margin: 0 0 10px;
  }
  /* line 592, sass/_large.scss */
  body.top section.sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 598, sass/_large.scss */
  body.top section.sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  body.top section.sect.sect01 ul.wrapper {
    margin: 0 auto;
  }

  body.top section.sect.sect01 ul.wrapper li {
    float: left;
    margin: 0px 43px 10px 0;
    width: 150px;
    height: 340px;
  }
  body.top section.sect.sect01 ul.wrapper li:nth-child(4n) {
    margin-right: 0;
  }
  /* line 612, sass/_large.scss */
  body.top section.sect.sect01 ul.wrapper li a.img {
    width: 150px;
  }
  /* line 620, sass/_large.scss */
  body.top section.sect.sect02 ul.wrapper li {
    width: 126px;
    float: left;
    margin: 0 25px 10px 0;
  }
  body.top section.sect.sect02 ul.wrapper li:nth-child(5n) {
    margin-right: 0;
  }
  /* line 622, sass/_large.scss */
  body.top section.sect.sect02 ul.wrapper li a.img {
    width: 126px;
  }
  /* line 630, sass/_large.scss */
  body.top a.bnrRecruit {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  /* line 635, sass/_large.scss */
  body.top #topFooterContent {
    margin: 0 auto;
  }
  /* line 637, sass/_large.scss */
  body.top #topFooterContent .footerInstagram {
    margin-bottom: 50px;
    padding: 50px 0;
    background-color: #eee;
  }
  /* line 641, sass/_large.scss */
  body.top #topFooterContent .footerInstagram p.title {
    display: block;
    margin: 0 auto 30px;
    width: 99px;
  }
  /* line 646, sass/_large.scss */
  body.top #topFooterContent .footerInstagram .bx-wrapper {
    margin: 0 auto;
    background: none;
    box-shadow: none;
    border: none;
  }
  /* line 651, sass/_large.scss */
  body.top #topFooterContent .footerInstagram .bx-wrapper div {
    width: 194px;
  }
  body.top #topFooterContent .footerInstagram .bx-wrapper div a:hover {
    display: block;
    opacity: 0.6;
  }
  /* line 656, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner {
    margin: 0 auto;
    width: 980px;
  }
  /* line 659, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 665, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS .facebook {
    width: 500px;
    height: 215px;
  }
  /* line 670, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .footerSNS .twitter {
    width: 450px;
    height: 215px;
    border: 1px solid #e9ebee;
    overflow: hidden;
  }
  /* line 675, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList {
    margin: 0 auto 50px;
  }
  /* line 677, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 680, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 687, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
    letter-spacing: .11em;
  }
  /* line 691, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea p span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 697, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 704, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 710, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner {
    width: 980px;
    margin: 0 auto;
  }
  /* line 718, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box {
    margin: 0 20px 30px 0;
    width: 180px;
    float: left;
    height: 240px;
  }
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box:nth-child(5n) {
    margin-right: 0; 
  }
  /* line 722, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName {
    margin: 0 auto 10px;
  }
  /* line 724, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName img {
    margin: 0 auto 10px;
    width: 180px;
  }
  /* line 729, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopName p {
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 736, sass/_large.scss */
  body.top #topFooterContent #topFooterContentInner .shopList .shopListInner .box a.shopInfo p {
    margin: 0 0 5px;
    color: #333;
    font-size: 1rem;
  }

  /**
  * 下層ページ一般テンプレ（lower）
  */
  /* line 755, sass/_large.scss */
  body.lower #content {
    width: 1060px;
  }
  /* line 757, sass/_large.scss */
  body.lower #content #main {
    width: 730px;
  }
  /* line 761, sass/_large.scss */
  body.lower #pageTitleArea {
    margin: 0 auto 50px;
    padding-top: 60px;
    width: 100%;
    height: 140px;
    background: url("/img/upload/2017/06/bg_ptn_pageTitle.png") repeat;
  }
  /* line 767, sass/_large.scss */
  body.lower #pageTitleArea h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: normal;
    color: #333;
  }
  /* line 774, sass/_large.scss */
  body.lower #pageTitleArea h1 span {
    display: block;
    margin-bottom: 20px;
    font-size: 3.6rem;
    font-family: 'Arapey', serif;
    text-transform: uppercase;
    letter-spacing: 1.2rem;
  }

  /**
  * 下層ページ 1カラムテンプレ（lower）
  */
  /* line 790, sass/_large.scss */
  body.lower.onecolumn #content #main {
    width: 1060px;
  }
  /* line 794, sass/_large.scss */
  body.lower.onecolumn #sub {
    display: none;
  }

  /**
  * stylist
  */
  /* line 805, sass/_large.scss */
  body.stylist #main .stylistBox {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 813, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo {
    width: 460px;
  }
  /* line 815, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 819, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo h2 span {
    margin-left: 15px;
    font-size: 1.4rem;
  }
  /* line 824, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo p.job {
    font-size: 1.4rem;
  }
  /* line 827, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns {
    margin: 0 0 20px auto;
    text-align: right;
  }
  /* line 834, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns li {
    width: 26px;
    display: inline-block;
  }
  /* line 836, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo ul.sns li a {
    display: block;
  }
  /* line 841, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo p.catch01 {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
  /* line 845, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo p.catch02 {
    margin: 0 0 30px;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  /* line 850, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .career {
    margin: 0 auto 30px;
  }
  /* line 852, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .career dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 855, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .career dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 861, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .career dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 870, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 873, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 880, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 884, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 890, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 897, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 904, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article {
    margin-bottom: 20px;
  }
  /* line 906, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul {
    display: -webkit-flex;
    display: flex;
  }
  /* line 910, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.category {
    margin-right: 10px;
  }
  /* line 912, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.category a {
    display: inline-block;
    padding: 3px 20px;
    color: #fff;
    background-color: #666666;
    text-align: center;
    font-size: 1.1rem;
  }
  /* line 921, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.date {
    margin-right: 15px;
    padding-top: 3px;
  }
  /* line 924, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.date a {
    color: #333;
    font-size: 1.1rem;
  }
  /* line 929, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author {
    position: relative;
    padding-top: 3px;
  }
  /* line 932, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author:before {
    position: absolute;
    content: "/";
    left: -10px;
    text-decoration: none;
  }
  /* line 938, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article ul li.author a {
    color: #777777;
    font-size: 1.1rem;
    text-decoration: underline;
  }
  /* line 947, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article a.linkToArticle p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
  }
  /* line 952, sass/_large.scss */
  body.stylist #main .stylistBox .txtInfo .blogArea .wrapper article a.linkToArticle p.title {
    font-weight: bold;
    margin: 0 0 5px;
  }
  /* line 962, sass/_large.scss */
  body.stylist #main .stylistBox .visualInfo {
    width: 240px;
  }
  /* line 964, sass/_large.scss */
  body.stylist #main .stylistBox .visualInfo .photo {
    margin: 0 0 20px;
  }
  body.stylist #main .stylistBox .visualInfo .photo img {
    width: 240px
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner {
    display: none;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner.active {
    display: block;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner {
    border: 1px solid #777777;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month {
    padding: 20px;
    height: 20px;
    background-color: #777777;
    color: #fff;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month a {
    display: block;
    font-size: 0.8rem;
    color: #fff;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month span {
    font-size: 1.4rem;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table {
    margin: 8px auto;
    width: 210px;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr {
    text-align: center;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr th {
    padding: 5px;
    width: 19px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr .Saturday {
    color: #5794f7;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr .Sunday {
    color: #ff4576;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr td {
    padding: 2px 5px;
    width: 19px;
    height: 19px;
    font-size: 0.8rem;
    color: #a5aab4;
  }
  body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr td.holiday {
    background: url("/img/upload/2017/06/bg_holiday.png") no-repeat center;
    background-size: contain;
    color: #fff;
  }
  /* line 970, sass/_large.scss */
  body.stylist #main .sect02 .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
    clear: left;
  }
  /* line 973, sass/_large.scss */
  body.stylist #main .sect02 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 980, sass/_large.scss */
  body.stylist #main .sect02 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 984, sass/_large.scss */
  body.stylist #main .sect02 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 990, sass/_large.scss */
  body.stylist #main .sect02 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 997, sass/_large.scss */
  body.stylist #main .sect02 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1003, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper {
    margin: 0 auto;
    width: 730px;
  }
  body.stylist #main .sect02 ul.wrapper li {
    float: left;
    margin: 0 20px 10px 0;
    width: 130px;
  }
  body.stylist #main .sect02 ul.wrapper li:nth-child(5n) {
    margin-right: 0;
  }
  .wrapper_stylist {
    margin: 0 auto 60px;
    overflow: hidden;
  }
  ul.wrapper_stylist li {
    margin: 0px 43px 10px 0;
    width: 150px;
    height: auto;
    display: inline-block;
    vertical-align: top;
    line-height: 1.4;

  }
  ul.wrapper_stylist li:nth-child(4n) {
    margin: 0 0 10px 0;
  }
  /* line 1015, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper_stylist li a.img img{
    margin-bottom: 10px!important;
  }
  /* line 1022, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper li a.txt h3 {
    margin: 10px 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  body.stylist #main .sect02 ul.wrapper_stylist li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1028, sass/_large.scss */
  body.stylist #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  body.stylist #main .sect02 ul.wrapper_stylist li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }

  /**
  * contact
  */
  /* 入力、確認、完了共通 */
  body.contact #main p.message {
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.6rem;
  }

  body.contact #main .contactInner {
    margin: 0 auto 50px;
    width: 100%;
  }
  body.contact #main .btn input {
    display: block;
    width: 300px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 1.4rem;
    font-weight: bold;
  }
  body.contact #main .btn input:hover {
    opacity: 0.6;
  }
  :placeholder-shown {
      color: #aeacac;
  }
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  ::-webkit-input-placeholder {
      color: #aeacac;
  }

  /* Firefox 18- */
  :-moz-placeholder {
      color: #aeacac;
      opacity: 1;
  }

  /* Firefox 19+ */
  ::-moz-placeholder {
      color: #aeacac;
      opacity: 1;
  }

  /* IE 10+ */
  :-ms-input-placeholder {
      color: #aeacac;
  }

  /* input 入力画面 */
  body.contact #main .input .contactInner dl {
    margin: 0 auto 10px;
    font-size: 1.4rem;
  }
  body.contact #main .input .contactInner dl dt {
    margin-bottom: 5px;
  }
  body.contact #main .input .contactInner dl dd {
    margin: 0;
    padding: 0;
  }
  body.contact #main .input .contactInner dl dd input {
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    width: 90%;
  }

  body.contact #main .input .contactInner dl dd textarea {
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    width: 90%;
  }
  body.contact #main .input .btn {
    margin: 0 auto 50px;
    width: 640px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body.contact #main .input .btn input#btnReset {
    background-color: #eee;
  }
  body.contact #main .input .btn input#btnConfirm {
    color: #fff;
    background-color: #777777;
  }
  /* confirm 確認画面 */
  body.contact #main .confirm .contactInner dl {
    margin: 0 auto 20px;
    width: 600px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 1.4rem;
    text-align: left;
  }
  body.contact #main .confirm .contactInner dl dt {
    width: 160px;
    font-weight: bold;
  }
  body.contact #main .confirm .contactInner dl dd {
    width: 440px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
  }
  body.contact #main .confirm .btn {
    width: 630px;
  }
  body.contact #main .confirm .btn input#btnBack {
    background-color: #eee;
  }
  body.contact #main .confirm .btn input#btnSend {
    color: #fff;
    background-color: #777777;
  }

  /* complete 完了画面 */
  body.contact #main .complete a.returnTop {
    display: block;
    margin: 0 auto 50px;
    padding: 10px 0 5px;
    width: 300px;
    height: 25px;
    text-align: center;
    font-size: 1.4rem;
    background-color: #eee;
    color: #333;
    font-weight: 600;
  }


  /**
  * style
  */
  /* line 1045, sass/_large.scss */
  body.style body.m #main .styleBox {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 1053, sass/_large.scss */
  body.style #main .styleBox .txtInfo {
    width: 460px;
    float: right;
  }
  /* line 1055, sass/_large.scss */
  body.style #main .styleBox .txtInfo h2 {
    margin: 0 auto 14px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.style #main .styleBox .txtInfo ul.sns {
    margin: 0 0 20px auto;
    text-align: right;
  }
  /* line 1067, sass/_large.scss */
  body.style #main .styleBox .txtInfo ul.sns li {
    width: 26px;
    display: inline-block;
    vertical-align: top;
  }
  /* line 1069, sass/_large.scss */
  body.style #main .styleBox .txtInfo ul.sns li a {
    width: 26px;
  }
  /* line 1074, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  .typeOn {
  background-color: #CD4465;
  color: #FFFFFF;
  width: 50px;
  height: 58px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  }
  .typeOff {
  background-color: #EEEEEE;
  color: #FFFFFF;
  width: 50px;
  height: 58px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  }
  .circletype:before {
  background-image: url("/img/upload/2017/06/bg-circle.png");
  background-repeat: no-repeat;
  content: " ";
  height: 30px;
  width: 30px;
  overflow: hidden;
  display: block;
  margin: 4px auto;
  }
  .eggtype:before {
  background-image: url("/img/upload/2017/06/bg-egg.png");
  background-repeat: no-repeat;
  content: " ";
  height: 30px;
  width: 20px;
  overflow: hidden;
  display: block;
  margin: 4px auto;
  }
  .squaretype:before {
  background-image: url("/img/upload/2017/06/bg-square.png");
  background-repeat: no-repeat;
  content: " ";
  height: 30px;
  width: 30px;
  overflow: hidden;
  display: block;
  margin: 4px auto;
  }
  .triangletype:before {
  background-image: url("/img/upload/2017/06/bg-triangle.png");
  background-repeat: no-repeat;
  content: " ";
  height: 30px;
  width: 30px;
  overflow: hidden;
  display: block;
  margin: 4px auto;
  }
  .basetype:before {
  background-image: url("/img/upload/2017/06/bg-base.png");
  background-repeat: no-repeat;
  content: " ";
  height: 30px;
  width: 30px;
  overflow: hidden;
  display: block;
  margin: 4px auto;
  }
  /* line 1082, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.style #main .styleBox .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.style #main .styleBox .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.style #main .styleBox .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
    height: 320px;
    overflow: hidden;
  }
  /* line 1112, sass/_large.scss */
  body.style #main .styleBox .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.style #main .styleBox .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.style #main .styleBox .visualInfo .thumb ul li {
    width: 30%;
  }
  body.style #main .styleBox .visualInfo .thumb ul li img {
    cursor: pointer;
  }
  body.style #main .styleBox .visualInfo .thumb ul li img:hover {
    opacity: .6;
  }

  /* line 1130, sass/_large.scss */
  body.style #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.style #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.style #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.style #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.style #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.style #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 0.5rem;
  }
  /* line 1156, sass/_large.scss */
  body.style #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.style #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    border: 1px solid #cfcfcf;
    background: url("/img/upload/2017/06/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.style #main .couponArea h4 {
    padding: 100px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.style #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.style #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.style #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
  }
  /* line 1192, sass/_large.scss */
  body.style #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.style #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1223, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.style #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }
  /* line 1242, sass/_large.scss */
  body.style #main .sect02 .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 1245, sass/_large.scss */
  body.style #main .sect02 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.style #main .sect02 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.style #main .sect02 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.style #main .sect02 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.style #main .sect02 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.style #main .sect02 ul.wrapper {
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.style #main .sect02 ul.wrapper li {
    float: left;
    margin: 0px 43px 10px 0;
    width: 150px;
    height: 350px;
  }
  body.style #main .sect02 ul.wrapper li:nth-child(4n) {
    margin-right: 0;
}
  /* line 1287, sass/_large.scss */
  body.style #main .sect02 ul.wrapper li a.img {
    display: block;
    width: 150px;
    margin: 0 0 12px;
  }
  /* line 1294, sass/_large.scss */
  body.style #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.style #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  .pinterestBtn {
    margin-top: 5px;
  }


  /**
  * shoplist
  */
  /* line 1045, sass/_large.scss */
  body.shoplist body.m #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 1053, sass/_large.scss */
  body.shoplist #main  .txtInfo {
    width: 460px;
  }
  /* line 1055, sass/_large.scss */
  body.shoplist #main  .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.shoplist #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.shoplist #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.shoplist #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.shoplist #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.shoplist #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.shoplist #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.shoplist #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.shoplist #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.shoplist #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.shoplist #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.shoplist #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.shoplist #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.shoplist #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.shoplist #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.shoplist #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.shoplist #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.shoplist #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.shoplist #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.shoplist #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.shoplist #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.shoplist #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.shoplist #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.shoplist #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .shoplist-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .shoplist-right {
    text-align: right;
    color: #666;
    display: block;
  }

  /* line 1223, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.shoplist #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  /* line 1245, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.shoplist #main .sect02 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper {
    margin: 0 auto;
  }
  /* line 1284, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li {
    float: left;
    margin: 0 27px 10px 0;
    width: 160px;
  }
  body.shoplist #main .sect02 ul.wrapper li:nth-child(4n) {
    margin: 0 0 40px 0;
  }
  /* line 1287, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li a.img {
    width: 160px;
  }
  body.shoplist #main .sect ul.wrapper li a.img {
    display: block;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.shoplist #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }




  /**
  * media
  */
  /* line 1045, sass/_large.scss */
  body.media body.m #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 1053, sass/_large.scss */
  body.media #main  .txtInfo {
    width: 460px;
  }
  /* line 1055, sass/_large.scss */
  body.media #main  .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.media #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.media #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.media #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.media #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.media #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.media #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.media #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.media #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.media #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.media #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.media #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.media #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.media #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.media #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.media #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.media #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.media #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.media #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.media #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.media #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.media #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.media #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.media #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.media #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.media #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.media #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.media #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.media #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .media-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .media-right {
    text-align: right;
    color: #666;
    display: block;
  }

  /* line 1223, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.media #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  /* line 1245, sass/_large.scss */
  body.media #main .sect02 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.media #main .sect02 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.media #main .sect02 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.media #main .sect02 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.media #main .sect02 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1284, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li {
    width: 124px;
    float: left;
    margin: 0 27px 40px 0;
  }
  body.media #main .sect02 ul.wrapper li:nth-child(5n) {
    margin: 0 0 10px 0;
  }
  /* line 1287, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li a.img {
    width: 124px;
  }
  body.media #main .sect02 ul.wrapper li a.img img {
    margin-bottom: 10px !important;
}
  /* line 1294, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.media #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
    overflow: hidden;
  }


  /**
  * coupon
  */
  /* line 1319, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea {
    margin: 0 auto 30px;
    width: 900px;
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 1324, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1331, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1335, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1341, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1348, sass/_large.scss */
  body.coupon #main section.sect01 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1354, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea {
    margin: 0 auto 50px;
    padding: 30px 20px;
    width: 860px;
    background-color: #f6f6f6;
  }
  /* line 1359, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea dl {
    margin: 0 auto 20px;
    width: 860px;
    background-color: #fff;
  }
  /* line 1363, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea dl dt {
    float: left;
    padding: 10px 20px;
    width: 80px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1370, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea dl dd {
    float: left;
    padding: 10px 20px 10px 0;
    width: 720px;
    font-size: 1.4rem;
  }
  /* line 1376, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea dl dd ul li {
    float: left;
    margin-right: 10px;
  }
  /* line 1379, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea dl dd ul li span {
    margin-left: 5px;
  }
  /* line 1386, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea .btn {
    margin: 30px 0 0;
    text-align: center;
  }
  /* line 1389, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea .btn button {
    padding: 10px 0;
    color: #fff;
    width: 250px;
    font-size: 1.6rem;
    background-color: #777777;
    border: none;
  }
  /* line 1396, sass/_large.scss */
  body.coupon #main section.sect01 .filterArea .btn button:hover {
    opacity: .6;
  }
  /* line 1405, sass/_large.scss */
  body.coupon #main .result .couponArea {
    margin: 0 auto 50px;
    width: 900px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    border: 1px solid #cfcfcf;
    background: url("/img/upload/2017/06/bg_coupon.png") repeat-y left;
  }
  /* line 1414, sass/_large.scss */
  body.coupon #main .result .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1420, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent {
    padding: 20px;
    width: 830px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1427, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1429, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .img img {
    margin: 0 auto 10px;
    width: 80%;
  }
  /* line 1434, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .img p {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  /* line 1436, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1442, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt {
    width: 670px;
  }
  /* line 1444, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1448, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1450, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1459, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1465, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1469, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1472, sass/_large.scss */
  body.coupon #main .result .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }





  /**
  * movie
  */
  /* line 1319, sass/_large.scss */
  body.movie #main section.sect01 .titleArea {
    margin: 0 auto 30px;
    width: 900px;
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  /* line 1324, sass/_large.scss */
  body.movie #main section.sect01 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1331, sass/_large.scss */
  body.movie #main section.sect01 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1335, sass/_large.scss */
  body.movie #main section.sect01 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1341, sass/_large.scss */
  body.movie #main section.sect01 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1348, sass/_large.scss */
  body.movie #main section.sect01 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1354, sass/_large.scss */
  body.movie #main section.sect01 .filterArea {
    margin: 0 auto 50px;
    padding: 40px 20px;
    width: 860px;
    background-color: #f6f6f6;
  }
  /* line 1359, sass/_large.scss */
  body.movie #main section.sect01 .filterArea dl {
    margin: 0 auto 20px;
    width: 860px;
    background-color: #fff;
  }
  /* line 1363, sass/_large.scss */
  body.movie #main section.sect01 .filterArea dl dt {
    float: left;
    padding: 10px 20px;
    width: 80px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1370, sass/_large.scss */
  body.movie #main section.sect01 .filterArea dl dd {
    float: left;
    padding: 10px 20px 10px 0;
    width: 720px;
    font-size: 1.4rem;
  }
  /* line 1376, sass/_large.scss */
  body.movie #main section.sect01 .filterArea dl dd ul li {
    float: left;
    margin-right: 10px;
  }
  /* line 1379, sass/_large.scss */
  body.movie #main section.sect01 .filterArea dl dd ul li span {
    margin-left: 5px;
  }
  /* line 1386, sass/_large.scss */
  body.movie #main section.sect01 .filterArea .btn {
    margin: 30px 0 0;
    text-align: center;
  }
  /* line 1389, sass/_large.scss */
  body.movie #main section.sect01 .filterArea .btn button {
    padding: 10px 0;
    color: #fff;
    width: 250px;
    font-size: 1.6rem;
    background-color: #777777;
    border: none;
  }
  /* line 1396, sass/_large.scss */
  body.movie #main section.sect01 .filterArea .btn button:hover {
    opacity: .6;
  }
  /* line 1405, sass/_large.scss */
  body.movie #main .result .couponArea {
    margin: 0 auto 50px;
    width: 900px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1414, sass/_large.scss */
  body.movie #main .result .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1420, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent {
    padding: 20px;
    width: 830px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1427, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1429, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1434, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1436, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1442, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt {
    width: 640px;
  }
  /* line 1444, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1448, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1450, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1459, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1465, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1469, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1472, sass/_large.scss */
  body.movie #main .result .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  .youtube {
    position:relative;
    width:100%;
    padding-top:56.25%;
    margin-bottom: 20px;
  }
  .youtube iframe {
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
  }
  .movie-cap {
    font-size: 1.2rem;
    margin-bottom: 80px;
  }



  /**
  * menu
  */
  /* line 1045, sass/_large.scss */
  body.menu #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  body.menu #main .sect {
    width: 690px;
  }
  body.menu #main .sect .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.menu #main .sect p {
    line-height: 1.6;
    width: 81px;
  }
  body.menu #main .sect .txtRight {
    font-size: 1.2rem;
    text-align: right;
    display: block;
    margin-bottom: 8px;
    color: #999;
  }
  body.menu #main .sect table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  body.menu #main .sect .table > tbody > tr > td:first-child {
    text-align: left !important;
    width: 100% !important;
  }
  body.menu #main .sect .table tr {
    border-top: 1px solid #ddd;
    display: block;
  }
  body.menu #main .sect .table td {
    padding: 10px;
    line-height: 1.42857143;
    vertical-align: top;
    width: 100px;
    text-align: right;
    font-size: 1.3rem;
  }
  body.menu #main  .sect .table > tbody > tr > td:first-child > .serviceSubTxt {
    text-align: left !important;
    width: 100%;
  }
  body.menu #main .serviceSubTxt {
    font-size: 1.1rem !important;
    color: #999;
    text-align: right;
  }
  /* line 1055, sass/_large.scss */
  body.menu #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.menu #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.menu #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.menu #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.menu #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.menu #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.menu #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.menu #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.menu #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.menu #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.menu #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.menu #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.menu #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.menu #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.menu #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.menu #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.menu #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.menu #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.menu #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.menu #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.menu #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.menu #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.menu #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.menu #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .media-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .media-right {
    text-align: right;
    color: #666;
    display: block;
  }

  /* line 1223, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.menu #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  /* line 1245, sass/_large.scss */
  body.menu #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.menu #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.menu #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.menu #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.menu #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.menu #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.menu #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.menu #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }




  /**
  * news
  */
  /* line 1045, sass/_large.scss */
  body.news #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  body.news #main .sect {
    width: 690px;
  }
  body.news #main .sect .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.news #main .sect .titleArea h3 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  body.news #main .sect p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  body.news #main .sect .txtRight {
    font-size: 1.2rem;
    text-align: right;
    display: block;
  }
  body.news #main .serviceSubTxt {
    font-size: 1.2rem!important;
    line-height: 16px;
    color: #999;
  }
  body.news #main .newsTime {
    font-size: 1.3rem!important;
    color: #666;
    display: block;
    margin-bottom: 10px;
  }
  /* line 1055, sass/_large.scss */
  body.news #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.news #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.news #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.news #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.news #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.news #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.news #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.news #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.news #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.news #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.news #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.news #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.news #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.news #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.news #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.news #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.news #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.news #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.news #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  body.news #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1150, sass/_large.scss */
  body.news #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.news #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.news #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.news #main .couponArea {
    margin: 0 auto 50px;
  }
  /* line 1172, sass/_large.scss */
  body.news #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.news #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.news #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.news #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.news #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.news #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt h5 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  /* line 1206, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt ul {
    margin-top: 10px;
  }
  /* line 1208, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.news #main .couponArea .couponContent .txt ul li a {
    color: #fff;
  }
  /* line 1217, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1223, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.news #main .couponArea .couponContent .txt a {
    color: #333;
  }

  /* line 1245, sass/_large.scss */
  body.news #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 12px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.news #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.news #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.news #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.news #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.news #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.news #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.news #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  body.news #main .sect .wrapper li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.news #main .articleTxt{
    margin-top: 40px;
    font-size: 1.4rem;
  }
  body.news #main .articleTxt p{
    line-height: 1.4;
    font-size: 1.4rem;
  }
  body.news #main .newsTime > div img{
    margin-top: 30px;
  }
  body.news #main .newsTime .postUser{
    padding: 10px 10px!important;
    font-size: 1.2rem;
    color: #666666!important;
    display: inline!important;
  }






  /**
  * blog
  */
  /* line 1045, sass/_large.scss */
  body.blog #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  body.blog #main .sect {
    width: 690px;
  }
  body.blog #main .sect .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.blog #main .sect .titleArea h3 {
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  body.blog #main .sect p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  body.blog #main .sect .txtRight {
    font-size: 1.2rem;
    text-align: right;
    display: block;
  }
  body.blog #main .serviceSubTxt {
    font-size: 1.2rem!important;
    line-height: 16px;
    color: #999;
  }
  body.blog #main .newsTime {
    font-size: 1.1rem!important;
    color: #666;
    display: block;
    margin-bottom: 10px;
  }
  /* line 1055, sass/_large.scss */
  body.blog #main .pageTitleH2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.blog #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.blog #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.blog #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.blog #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.blog #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.blog #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.blog #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.blog #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.blog #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.blog #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.blog #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.blog #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.blog #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.blog #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.blog #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.blog #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  body.blog #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1150, sass/_large.scss */
  body.blog #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.blog #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.blog #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.blog #main .couponArea {
    margin: 0 auto 0px;
  }
  /* line 1172, sass/_large.scss */
  body.blog #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.blog #main .couponArea .couponContent {
    padding: 0;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.blog #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt h5 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  /* line 1206, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt ul {
    margin-top: 10px;
  }
  /* line 1208, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.blog #main .couponArea .couponContent .txt ul li a {
    color: #fff;
  }
  /* line 1217, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1223, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.blog #main .couponArea .couponContent .txt a {
    padding: 12px 0;
    color: #333;
  }
  .more {
    display: block;
    color: #666666!important;
    font-size: 1.2rem;
    text-align: right;
    text-decoration: underline;
  }
  .more:hover {
    color: #333!important;
    text-decoration: none;
  }
  /* line 1245, sass/_large.scss */
  body.blog #main .sect .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 12px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.blog #main .sect .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.blog #main .sect .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.blog #main .sect .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.blog #main .sect .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.blog #main .sect ul.wrapper {
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.blog #main .sect ul.wrapper li {
    width: 124px;
    margin-bottom: 40px;
  }
  /* line 1287, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.img {
    display: block;
    width: 145px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.blog #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  body.blog #main .sect .wrapper li {
    float: left;
    margin-right: 10px;
    padding: 3px 6px;
    color: #fff;
    font-size: 1rem;
    background-color: #666666;
  }
  body.blog #main .sect .wrapper li a {
    color: #fff;
  }
  body.blog #main .articleTxt{
    margin-top: 40px;
  }
  body.blog #main .articleTxt p{
    line-height: 1.6;
    font-size: 1.4rem
  }
  body.blog #main .newsTime > div img{
    margin-top: 30px;
  }
  body.blog #main .newsTime .postUser{
    padding: 10px 10px!important;
    font-size: 1.2rem;
    color: #666666!important;
    display: inline!important;
  }


  /**
  * voice
  */
  body.voice #main .voiceBox {
    margin: 0 auto 50px;
    width: 640px;
  }
  body.voice #main .voiceBox .voiceInner {
    margin: 0 auto 25px;
    padding: 25px 20px 20px;
    width: 600px;
    background-color: #eee;
    position: relative;
  }
  body.voice #main .voiceBox.pickUp .voiceInner {
    background-color: #faf6e9;
  }
  body.voice #main .voiceBox .voiceInner h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: bold;
    display: none;
  }
  body.voice #main .voiceBox .voiceInner h2 span {
    position: relative;
  }
  body.voice #main .voiceBox.pickUp h2 span {
    padding-right: 60px;
    display: none;
}
  }
  body.voice #main .voiceBox.pickUp h2 span:after {
    position: absolute;
    content: "Pick Up";
    padding: 2px 4px;
    color: #fff;
    background-color: #666666;
    font-size: 1.1rem;
    right: 0;
  }
  body.voice #main .voiceBox .voiceInner p {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.28;
  }
  body.voice #main .voiceBox .voiceInner dl {
    display: -webkit-flex;
    display: flex;
    font-size: 1.2rem;
    font-weight: bold;
  }
  body.voice #main .voiceBox .voiceInner dl dt {
    margin-right: 5px;
  }
  body.voice #main .voiceBox .voiceInner dl dd {
    position: relative;
    margin: 0 0 0 10px;
    padding: 0;
  }
  body.voice #main .voiceBox .voiceInner dl dd:before {
    position: absolute;
    content: "/";
    left: -10px;
  }
  body.voice #main .voiceBox .review,
  body.voice #main .voiceBox .reply {
    margin: 0 auto 25px;
  }
  body.voice #main .voiceBox .review .reviewInner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  body.voice #main .voiceBox .review h3,
  body.voice #main .voiceBox .reply h3 {
    font-size: 1.4rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #666666;
  }
  body.voice #main .voiceBox .review dl {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
  }
  body.voice #main .voiceBox .review dl dt {
    margin: 0 5px 0 0;
    padding: 0;
  }
  body.voice #main .voiceBox .review dl dd {
    margin: 0;
    padding: 0;
    color: #777777;
  }
  body.voice #main .voiceBox .reply p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.71;
  }

  


  /**
  * faq
  */
  body.faq #content {
    display: block!important;
    overflow: hidden;
  }
  body.faq #sub {
    float: right!important;
  }
  body.faq #main {
    float: left!important;
  }
  /* line 966, sass/_small.scss */
  body.faq #main .styleBox {
    margin: 0 auto 70px;
  }
  /* line 968, sass/_small.scss */
  body.faq #main .styleBox .txtInfo {
    margin: 0 auto 2rem;
    width: 96%;
  }
  /* line 971, sass/_small.scss */
  body.faq #main .styleBox .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 976, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns {
    margin: 0 0 2rem auto;
    width: 35%;
    display: flex;
    justify-content: space-between;
  }
  /* line 981, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns li {
    width: 2.5rem;
  }
  /* line 983, sass/_small.scss */
  body.faq #main .styleBox .txtInfo ul.sns li a {
    display: block;
  }
  /* line 988, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box {
    margin: 0 auto 3rem;
  }
  /* line 990, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box p.styleTitle {
    margin: 0 auto 2rem;
    padding: 0 0 0.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 996, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl {
    margin: 0 auto 0.5rem;
    width: 96%;
  }
  /* line 999, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl dt {
    float: left;
    width: 30%;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1005, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box dl dd {
    float: left;
    width: 50%;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1013, sass/_small.scss */
  body.faq #main .styleBox .txtInfo .box ul li {
    margin: 0 1rem 0 0;
    font-size: 1.4rem;
  }
  /* line 1020, sass/_small.scss */
  body.faq #main .styleBox .visualInfo {
    margin: 0 auto;
    width: 96%;
  }
  /* line 1023, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .photo {
    margin: 0 0 1rem;
  }
  /* line 1025, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .photo img {
    width: 100%;
  }
  /* line 1030, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1035, sass/_small.scss */
  body.faq #main .styleBox .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1143, sass/_small.scss */
  body.faq #main .sect .titleArea {
    margin: 0 auto 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1147, sass/_small.scss */
  body.faq #main .sect .titleArea p {
    margin: 0;
    padding: 0 0 0.5rem;
    color: #333;
    font-weight: normal;
    font-family: 'Arapey', serif;
  }
  /* line 1154, sass/_small.scss */
  body.faq #main .sect .titleArea h3 span.jp {
    font-size: 2.2rem;
    font-weight: 300;
  }
  /* line 1163, sass/_small.scss */
  body.faq #main .sect .titleArea a {
    position: absolute;
    display: block;
    font-size: 1.6rem;
    color: #333;
    text-decoration: underline;
    bottom: 0;
    right: 0;
  }
  /* line 1171, sass/_small.scss */
  body.faq #main .sect .titleArea a span {
    padding-right: 1.2rem;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1177, sass/_small.scss */
  body.faq #main .sect ul.wrapper {
    display: flex;
    margin: 0 auto;
    width: 90%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* line 1183, sass/_small.scss */
  body.faq #main .sect ul.wrapper li {
    width: 43%;
  }
  /* line 1186, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1rem;
  }
  /* line 1193, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1199, sass/_small.scss */
  body.faq #main .sect ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.3rem;
  }
  div.accordion {
    width: 100%;
  }
  div.accordion > ul > li > a {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    background-color: #666666;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    padding: 14px 32px 14px 12px;
    position: relative;
  }
  div.accordion > ul > li > a:hover{
    opacity: .6;
  }
  div.accordion > ul > li > a:after, div.accordion > ul > li > a.active:after{
    font-size: 8px;
    position: absolute;
    right: 12px;
    top: 16px;
    color: #fff;
  }
  div.accordion > ul > li > a:after{
    content: "▼";
  }
  div.accordion > ul > li > a.active:after{
    content: "▲";
  }
  div.accordion > ul > li > ul {
    display: none;
  }
  div.accordion > ul > li > ul > li {
    display: block;
    color: #333;
    font-size: 1.4rem;
    padding: 26px 12px 40px;
    position: relative;
    line-height: 2.2rem;
  }
  .pager {
    overflow: hidden;
    margin: 60px 0;
  }
  .pager ul {
      list-style: none;
      position: relative;
      left: 50%;
      float: left;
  }
  .pager ul li {
      margin: 0 1px;
      position: relative;
      left: -50%;
      float: left;
  }
  .pager ul li span, .pager ul li a {
      display: block;
      font-size: 16px;
      padding: 0.6em 1em;
      border-radius: 3px;
  }
  .pager ul li a {
      background: #EEE;
      color: #000;
      text-decoration: none;
  }
  .pager ul li a:hover {
      background: #777777;
      color: #FFF;
  }



  /**
  * gallery
  */
  /* line 1045, sass/_large.scss */
  body.gallery body.m #main  {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 1053, sass/_large.scss */
  body.gallery #main  .txtInfo {
    width: 460px;
  }
  /* line 1055, sass/_large.scss */
  body.gallery #main  .txtInfo h2 {
    margin: 0 auto 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  /* line 1060, sass/_large.scss */
  body.gallery #main  .txtInfo ul.sns {
    margin: 0 0 20px auto;
    width: 134px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1067, sass/_large.scss */
  body.gallery #main  .txtInfo ul.sns li {
    width: 26px;
  }
  /* line 1069, sass/_large.scss */
  body.gallery #main  .txtInfo ul.sns li a {
    display: block;
  }
  /* line 1074, sass/_large.scss */
  body.gallery #main  .txtInfo .box {
    margin: 0 auto 30px;
  }
  /* line 1076, sass/_large.scss */
  body.gallery #main  .txtInfo .box p.styleTitle {
    margin: 0 auto 20px;
    padding: 0 0 3px;
    font-size: 1.4rem;
    border-bottom: 1px solid #666666;
  }
  /* line 1082, sass/_large.scss */
  body.gallery #main  .txtInfo .box dl {
    width: 460px;
    background: url("/img/upload/2017/06/bg_line.png") no-repeat center;
  }
  /* line 1085, sass/_large.scss */
  body.gallery #main  .txtInfo .box dl dt {
    float: left;
    width: 200px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1091, sass/_large.scss */
  body.gallery #main  .txtInfo .box dl dd {
    float: left;
    margin-left: 170px;
    font-size: 1.4rem;
    text-align: left;
  }
  /* line 1099, sass/_large.scss */
  body.gallery #main  .txtInfo .box ul li {
    float: left;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
  }
  /* line 1107, sass/_large.scss */
  body.gallery #main  .visualInfo {
    width: 240px;
  }
  /* line 1109, sass/_large.scss */
  body.gallery #main  .visualInfo .photo {
    margin: 0 0 20px;
    width: 240px;
  }
  /* line 1112, sass/_large.scss */
  body.gallery #main  .visualInfo .photo img {
    width: 100%;
  }
  /* line 1117, sass/_large.scss */
  body.gallery #main  .visualInfo .thumb ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1122, sass/_large.scss */
  body.gallery #main  .visualInfo .thumb ul li {
    width: 30%;
  }
  /* line 1130, sass/_large.scss */
  body.gallery #main .commentArea {
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #eee;
    width: 690px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1139, sass/_large.scss */
  body.gallery #main .commentArea .img {
    width: 92px;
    text-align: center;
  }
  /* line 1142, sass/_large.scss */
  body.gallery #main .commentArea .img img {
    margin: 0 auto 10px;
  }
  /* line 1145, sass/_large.scss */
  body.gallery #main .commentArea .img a {
    color: #333;
    text-decoration: underline;
  }
  /* line 1150, sass/_large.scss */
  body.gallery #main .commentArea .txt {
    width: 580px;
  }
  /* line 1152, sass/_large.scss */
  body.gallery #main .commentArea .txt h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /* line 1156, sass/_large.scss */
  body.gallery #main .commentArea .txt p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  /* line 1164, sass/_large.scss */
  body.gallery #main .couponArea {
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    box-shadow: 0px 0px 15px;
    border: 1px solid #cfcfcf;
    background: url("/img/style/bg_coupon.png") repeat-y left;
  }
  /* line 1172, sass/_large.scss */
  body.gallery #main .couponArea h4 {
    padding: 80px 5px 0;
    width: 20px;
    font-size: 1.6rem;
    color: #fff;
  }
  /* line 1178, sass/_large.scss */
  body.gallery #main .couponArea .couponContent {
    padding: 20px;
    width: 660px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* line 1185, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .img {
    width: 160px;
  }
  /* line 1187, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .img img {
    margin: 0 auto 20px;
    width: 160px;
    height: 120px;
  }
  /* line 1192, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .img p {
    font-size: 1.1rem;
  }
  /* line 1194, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .img p span {
    font-weight: bold;
    margin-right: 5px;
  }
  /* line 1200, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt {
    width: 480px;
  }
  /* line 1202, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt h5 {
    margin: 0 auto 15px;
    font-size: 1.8rem;
  }
  /* line 1206, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt ul {
    float: left;
  }
  /* line 1208, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt ul li {
    float: left;
    margin-right: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 1.1rem;
    background-color: #666666;
  }
  /* line 1217, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt p.price {
    float: right;
    color: #da2c82;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .shoplist-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .shoplist-right {
    text-align: right;
    color: #666;
    display: block;
  }

  /* line 1223, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt p.couponDetail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  /* line 1227, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt .reserve {
    text-align: center;
  }
  /* line 1230, sass/_large.scss */
  body.gallery #main .couponArea .couponContent .txt a {
    display: block;
    padding: 12px 0;
    background-color: #bb1668;
    color: #fff;
    font-size: 1.8rem;
  }

  /* line 1245, sass/_large.scss */
  body.gallery #main .sect02 .titleArea h3 {
    float: left;
    margin: 0;
    padding: 0 0 5px;
    color: #333;
    font-weight: normal;
  }
  /* line 1252, sass/_large.scss */
  body.gallery #main .sect02 .titleArea h3 span.en {
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
  }
  /* line 1256, sass/_large.scss */
  body.gallery #main .sect02 .titleArea h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
  }
  /* line 1262, sass/_large.scss */
  body.gallery #main .sect02 .titleArea a {
    float: right;
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: underline;
  }
  /* line 1269, sass/_large.scss */
  body.gallery #main .sect02 .titleArea a span {
    padding-right: 12px;
    background: url("/img/upload/2017/06/icon_arrow.gif") no-repeat right;
  }
  /* line 1275, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper {
    margin: 0 auto;
    width: 730px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  /* line 1284, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li {
    width: 175px;
    margin-bottom: 40px;
    margin-right: 10px;
    float: left;
  }
  /* line 1287, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li a.img {
    display: block;
    width: 172px;
    margin: 0 0 10px;
  }
  /* line 1294, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li a.txt h3 {
    margin: 0 0 10px;
    color: #777777;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  /* line 1300, sass/_large.scss */
  body.gallery #main .sect02 ul.wrapper li a.txt p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  body.gallery #main .sect02 ul.wrapper li:nth-child(4n) {
    margin-right: 0;
  }



  /**
  * access
  */
  body.access #main section{
    margin-bottom: 70px;
  }
  body.access #main  {
    margin: 50px auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* line 689, sass/_small.scss */
  body.access .shopImg img {
    margin: 0 auto 60px;
    width: auto;
  }
  body.access section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.access #main .shopdate {
    width: 600px;
    margin: 0 auto 60px;
  }
  body.access #main .shopdate h3 {
    color: #333;
    font-size: 2.4rem;
    font-family: 'Arapey', serif;
    font-weight: normal;
    margin-bottom: 8px;
  }
  /* line 692, sass/_small.scss */
  body.access #main .shopdate h3 span.en {
    padding: 0 0 0.5rem;
    font-size: 2.4rem;
  }
  body.access #main .shopdate h3 span.jp {
    margin-left: 1em;
    font-size: 1.4rem;
    letter-spacing: .11em;
  }
  body.access #main .shopdate p {
    font-size: 1.2rem;
    line-height: 1.6;
    overflow: auto;
  }
  body.access #main .shopdate a {
    color: #777777;
    text-decoration: none;
  }
  body.access #main .shopdate a:hover {
    color: #333;
    text-decoration: none;
  }
  body.access #main .shopdate td {
    padding: 10px 40px 0 0;
    font-size: 1.2rem;
    line-height: 1.6;
    width: 60px;
  }
  body.access #main .shopdate td:nth-child(2n) {
    padding-right: 0;
    width: 540px;
  }
  body.access #main .shopdate table {
    margin-bottom: 20px;
    table-layout: fixed;
  }
  body.access #main .navTitle {
    font-weight: 700;
    font-size: 1.4rem;
    float: left;
    padding-right: 63px;
  }
  .ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  }
  .ggmap iframe, .ggmap object,　.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }


  /**
  * privacy
  */
  body.privacy #main section{
    margin: 50px auto 70px;
  }
  body.privacy section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.privacy #main .shopdate {
    width: 600px;
    margin: 0 auto 60px;
  }
  body.privacy #main .shopdate h3 {
    color: #333;
    font-size: 2.2rem;
    font-family: 'Arapey', serif;
    font-weight: normal;
    margin-bottom: 8px;
  }
  body.privacy #main .shopdate ol li, body.privacy #main .shopdate ol li {
    list-style: decimal;
    font-size: 1.3rem;
    line-height: 1.6;
    padding-bottom: 20px;
  }
  body.privacy #main .shopdate a {
    color: #777777;
    text-decoration: none;
  }
  body.privacy #main .shopdate a:hover {
    color: #333;
    text-decoration: none;
  }
  body.privacy #main .shopdate td {
    padding: 10px 40px 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  /**
  * sitemap
  */
  body.sitemap #main section{
    margin: 50px auto 70px;
  }
  body.sitemap section .shopdate .titleArea {
    margin: 0 auto 20px;
    border-bottom: 1px solid #666666;
  }
  body.sitemap #main .shopdate {
    width: 600px;
    margin: 0 auto 60px;
  }
  .main_page_link li {
    line-height: 1.6;
    color: #333;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 20px 0;
    border-bottom: 1px solid #666666;
  }
  .main_page_link li::before{
    content: "> ";
    display: inline;
  }
  .sublist {
    margin-top: 20px;
  }
  .sublist li {
    border-bottom: none;
  }
  body.sitemap #main .sublist {
    margin-left: 30px;
  }
  body.sitemap #main .shopdate ul a {
    text-decoration: underline;
    color: #333;
  }
  body.sitemap #main .shopdate a:hover {
    text-decoration: none;
  }


}
