/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-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");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.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;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
@charset "UTF-8";
/**
* html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
* Richard Clark (http://richclarkdesign.com)
* http://cssreset.com
*/
/* ========================================
/= CSS RESET START
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent; 
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent; 
  vertical-align: baseline;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-weight: bold; 
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0; 
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  padding: 0; 
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

/* =========== youtube setting =========== */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.19%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*
/= CSS RESET END
======================================== */
/* ========================================
/= PRESET START
*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  width: 100%;
  color: #000;
  font-weight: 500;
  font-size: 1.3rem; 
  font-family: 游明朝, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 ProN W3, ヒラギノ明朝 Pro W3, HiraMinProN-W3, HG明朝E, Hiragino Mincho ProN, Hiragino Mincho Pro, HGS明朝E, ヒラギノ明朝 Pro W6, ＭＳ Ｐ明朝, MS PMincho, MS 明朝, serif;
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

nav a {
  text-decoration: none;
}
nav a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%; 
  vertical-align: middle;
}

[class*=-bgImg] {
  position: relative;
  background-position: center center;
  background-size: cover; 
  background-repeat: no-repeat;
}
[class*=-bgImg]:before {
  position: absolute;
  top: 0;
  left: 0; 
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}
[class*=-bgImg] >img {
  visibility: hidden;
  width: 100%;
}
[class*=-bgImg].hasScreen:before {
  position: absolute;
  top: 0;
  left: 0; 
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  content: "";
}
[class*=-bgImg].hasScreen span:before {
  position: absolute;
  top: 0;
  left: 0; 
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  content: "";
}
@media only screen and (max-width: 60em) {
  [class*=-bgImg].hasSpImg {
    background-image: none !important;
  }
  [class*=-bgImg].hasSpImg >img {
    display: none;
  }
  [class*=-bgImg].hasSpImg:before {
    background-color: transparent;
  }
}
[class*=-bgImg] span {
  display: none;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 60em) {
  [class*=-bgImg] span {
    display: block;
  }
  [class*=-bgImg] span >img {
    width: 100%;
  }
}

a {
  border-width: 0; 
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a[href*="tel:"], a[href*="mailto:"] {
  color: #000;
  text-decoration: none;
}

@media only screen and (max-width: 60em) {
  br.delete-tb {
    display: none;
  }
}

@media only screen and (max-width: 37.5em) {
  br.delete-sp {
    display: none;
  }
}

@media only screen and (min-width: 37.5em) {
  br.delete-pc {
    display: none;
  }
}

defs {
  display: none;
}

.Page {
  position: relative;
  min-width: 320px; 
  min-height: 100vh;
}
@media only screen and (min-width: 64.0625em) {
  .Page {
    z-index: 1;
  }
}
@media only screen and (max-width: 64em) {
  .Page {
    z-index: 2;
  }
}
@media only screen and (max-width: 60em) {
  .Page {
    z-index: 3;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page {
    z-index: 4;
  }
}

.clearfix:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.__debug {
  margin: 2%;
  padding: 2%;
  border: 4px solid #ea6563; 
  background-color: #f5f5f5;
}

/*
/= PRESET END
======================================== */
.gothic {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.mincho {
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.webFont {
  font-family: "Quicksand";
}
.webFont.gothic {
  font-family: "Quicksand", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.webFont.mincho {
  font-family: "Quicksand", "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

@media only screen and (min-width: 37.5625em) {
  .insert-sp {
    display: none;
  }
}

.wrapper {
  position: relative; 
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  width: 100%;
}
@media only screen and (max-width: 69.56522em) {
  .wrapper {
    margin-right: 4%; 
    margin-left: 4%;
    width: 92%;
  }
}

.inner {
  margin-right: 4%; 
  margin-left: 4%;
  width: 92%;
}

.lineBreak {
  display: inline-block;
}

.boxLink {
  position: absolute;
  top: 0;
  left: 0; 
  display: block;
  width: 100%;
  height: 100%;
}

.Btn {
  display: block;
  border-radius: 0; 
  text-align: center;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 3.39;
  transition-timing-function: linear;
  transition-duration: .2s;
  transition-property: background-color, color, opacity;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.Btn.isBgWhite {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 60em) {
  .Btn.isBgWhite {
    background-color: #AA8E76; 
    color: #fff !important;
  }
}
.Btn.isBgGold {
  background-color: #AA8E76 !important; 
  color: #fff !important;
}
.Btn.isBdGold {
  border: 1px solid #AA8E76 !important; 
  color: #AA8E76 !important;
}

.Btn.isBdGold.inline {
	display: inline-block;
	width:240px;
	margin-top:20px;
}

@media only screen and (max-width: 60em) {
  .Btn.isBdGold {
    background-color: #AA8E76 !important; 
    color: #fff !important;
  }
}
.Btn:hover {
  text-decoration: none;
  cursor: pointer;
}
.Btn:hover.isBgWhite {
  background-color: #AA8E76 !important;
  color: #fff !important;
}
.Btn:hover.isBgGold {
  background-color: #AA8E76 !important;
}
.Btn:hover.isBdGold {
  background-color: #AA8E76 !important;
  color: #fff !important;
}

.viewMore {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 0;
  color: transparent;
  line-height: 0;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1); 
  transition-duration: .8s;
  transition-property: color, margin-top, margin-left, line-height;
}

.telNumber {
  letter-spacing: .2rem; 
  font-size: 2.8rem;
  font-family: "游明朝, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 ProN W3, ヒラギノ明朝 Pro W3, HiraMinProN-W3, HG明朝E, Hiragino Mincho ProN, Hiragino Mincho Pro, HGS明朝E, ヒラギノ明朝 Pro W6, ＭＳ Ｐ明朝, MS PMincho, MS 明朝, serif;";

}
@media only screen and (max-width: 37.5em) {
  .telNumber {
    font-size: 2.6rem;
  }
}
.telNumber:before {
  display: block;
  content: "TEL";
  font-size: 1.4rem;
}

.Page-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  display: none; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
.Page-screen.is-active {
  display: block;
}

.ankerLink {
  position: absolute; 
  margin-top: -74px;
}
@media only screen and (max-width: 60em) {
  .ankerLink {
    margin-top: -60px;
  }
}

.ContactModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  overflow: scroll; 
  padding: 20px 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
@media only screen and (max-width: 60em) {
  .ContactModal {
    padding: 0;
  }
}

.ContactModalBlock {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 20px;
  max-width: 1300px;
  width: 92%;
/*  height: 890px⇒1200px; */
  background-color: #fff;
}
@media screen and (max-height: 1000px) {
  .ContactModalBlock {
    margin: 5% auto;
  }
}
@media only screen and (max-width: 60em) {
  .ContactModalBlock {
    margin: 50px auto;
    padding: 44px 4% 0;
    min-height: 750px; 
    /*PICNIC長いので調整 */
    /*height: auto;　*/
  height: 1050px;
  }
}

.ContactModalBlock-closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  margin: 5px;
  width: 60px;
  height: 60px;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: opacity;
}
.ContactModalBlock-closeBtn:before, .ContactModalBlock-closeBtn:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 80%;
  height: 1px;
  background-color: #211d1e;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ContactModalBlock-closeBtn:after {
  width: 1px;
  height: 80%;
}
@media only screen and (max-width: 60em) {
  .ContactModalBlock-closeBtn {
    width: 44px;
    height: 44px;
  }
}
.ContactModalBlock-closeBtn:hover {
  opacity: .5; 
  cursor: pointer;
}

.ContactModalBlock-headTitle {
  text-align: center; 
  font-size: 2.8rem;
}
@media only screen and (max-width: 60em) {
  .ContactModalBlock-headTitle {
    margin-bottom: 4%; 
    font-size: 2rem;
  }
}

.ContactModalBlockNav {
  text-align: center;
}
@media only screen and (max-width: 60em) {
  .ContactModalBlockNav:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }
}

.ContactModalBlockNav-item {
  display: inline-block;
  margin: 0 15px 60px; 
  padding: 15px;
  width: 250px;
  border-bottom: 3px solid rgba(153, 153, 153, .5);
  text-align: center;
  letter-spacing: .1rem;
  font-size: 1.7rem;
}
.ContactModalBlockNav-item:hover {
  cursor: pointer;
}
.ContactModalBlockNav-item br {
  display: none;
}
@media only screen and (max-width: 60em) {
  .ContactModalBlockNav-item {
    float: left;
    margin: 0 1% 10%;
    padding: 1%; 
    width: 31%;
    letter-spacing: auto;
    font-size: 1.3rem;
  }
  .ContactModalBlockNav-item:nth-child(2n) {
    float: right;
  }
  .ContactModalBlockNav-item br {
    display: block;
  }
}
.ContactModalBlockNav-item.is-active {
  border-bottom-width: 5px; 
  border-bottom-color: #AA8E76;
}

.ContactModalBox {
  display: none;
}
.ContactModalBox.is-active {
  display: block;
}

.ContactModalBox-text {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.8;
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-text {
    margin-bottom: 10%; 
    font-size: 1.2rem;
    }
    .ContactModalBox-text .picnic_time::after {
        content: "\A";
        white-space: pre;
    }
}

.ContactModalBox-tel,
.ContactModalBox-btnGroup {
  margin: 0 auto 40px; 
  max-width: 512px;
  text-align: center;
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-tel,
  .ContactModalBox-btnGroup {
    margin-bottom: 10%;
  }
}
.ContactModalBox-tel h5,
  .ContactModalBox-btnGroup h5 {
  position: relative;
  display: block;
  margin-bottom: 20px;
  letter-spacing: .1rem; 
  font-weight: normal;
  font-size: 1.7rem;
  font-family: "Quicksand";
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-tel h5,
  .ContactModalBox-btnGroup h5 {
    font-size: 1.3rem;
  }
}
.ContactModalBox-tel h5:before,
    .ContactModalBox-btnGroup h5:before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block; 
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .2);
  content: "";
}
.ContactModalBox-tel h5 span,
    .ContactModalBox-btnGroup h5 span {
  position: relative;
  display: inline-block;
  padding: 0 20px; 
  background-color: #fff;
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-tel h5 span,
  .ContactModalBox-btnGroup h5 span {
    padding: 0 2%;
  }
}
.ContactModalBox-tel strong,
  .ContactModalBox-btnGroup strong {
  font-size: 4rem;
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-tel strong,
  .ContactModalBox-btnGroup strong {
    font-size: 2.8rem;
  }
}
.ContactModalBox-tel strong:before,
    .ContactModalBox-btnGroup strong:before {
  display: none;
}
.ContactModalBox-tel .Btn,
  .ContactModalBox-btnGroup .Btn {
  margin: auto;
  margin-bottom: 20px;
  width: 400px;
  font-size: 1.5rem;
  line-height: 4;
}
@media only screen and (max-width: 60em) {
  .ContactModalBox-tel .Btn,
  .ContactModalBox-btnGroup .Btn {
    max-width: 400px; 
    width: 100%;
    font-size: 1.3rem;
  }
}

.Page {
  overflow: hidden;
}

.Page-glbHeader.type-a {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #000;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a {
    position: relative;
    z-index: auto;
  }
}
.Page-glbHeader.type-a .Mainvisual {
  position: relative;
}
.Page-glbHeader.type-a .Mainvisual:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../img/common/Mainvisual-headScreen.png) top center no-repeat;
  background-size: 100%; 
  content: "";
}
.Page-glbHeader.type-a .Mainvisual-bgImg {
  min-height: 640px;
  max-height: 100vh;
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-a .Mainvisual-bgImg {
    min-height: 0;
    height: 100vh;
  }
}
/*スマホ動画用 ホーム専用*/
@media only screen and (max-width: 30em) {
  .home .Page-glbHeader.type-a .Mainvisual-bgImg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .Mainvisual-bgImg.hasSpImg {
    min-height: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-a .Mainvisual-bgImg.hasSpImg {
    min-height: 0;
    height: auto;
  }
}
.Page-glbHeader.type-a .SiteLogoSvg.isWhite {
  display: block;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .SiteLogoSvg.isWhite {
    display: none;
  }
}
.Page-glbHeader.type-a .SiteLogoSvg.isColor {
  display: none;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .SiteLogoSvg.isColor {
    display: block;
  }
}
.Page-glbHeader.type-a .Page-header {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%; 
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .Page-header {
    margin: auto;
  }
}
.Page-glbHeader.type-a .Page-header .Btn {
  margin: auto; 
  width: 240px;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .Page-header .Btn {
    font-size: 1.4rem;
  }
}
.Page-glbHeader.type-a .Page-type {
  color: #fff;
}
.Page-glbHeader.type-a .Page-type:after {
  background-color: #fff;
}
.Page-glbHeader.type-a .Page-headTitle {
  color: #fff;
}
.Page-glbHeader.type-a .Page-headTitle:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; 
  display: block;
  margin: auto;
  width: 80%;
  height: 100%;
  /*
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .2);
  box-shadow: 0 0 100px 50px rgba(0, 0, 0, .22);
  */
  content: "";
}

.Page-glbHeader.type-a .Page-headTitle-nongrow {
  color: #fff;
}
.Page-glbHeader.type-a .Page-headTitle-nongrow:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; 
  display: block;
  margin: auto;
  width: 80%;
  height: 100%;
  border-radius: none;
  background-color: none;
  box-shadow: none;
  content: "";
}
.Page-glbHeader.type-a .Page-headTitle-nongrow {
  margin-bottom: 40px; 
  color: #fff;
  font-size: 2.8rem;
  font-size: 28px;
  letter-spacing:.4rem;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .Page-headTitle-nongrow {
    font-size: 1.8rem;
  }
}


.Page-glbHeader.type-a .Page-subTitle {
  margin-bottom: 40px; 
  color: #fff;
  font-size: 2rem;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .Page-subTitle {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-a .Page-subTitle {
    font-size: 1.6rem;
  }
}
.Page-glbHeader.type-a .ChildNav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .ChildNav {
    position: relative;
    background-color: #fff;
    text-align: left;
  }
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .ChildNav:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto; 
    width: 1px;
    height: 100%;
    background-color: #eee;
    content: "";
  }
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .ChildNav:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; 
    width: 100%;
    height: 1px;
    background-color: #eee;
    content: "";
  }
}
@media only screen and (min-width: 60.0625em) {
  .Page-glbHeader.type-a .ChildNav-list {
    text-align: center;
    font-size: 0;
  }
}
.Page-glbHeader.type-a .ChildNav-list:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
.Page-glbHeader.type-a .ChildNav-item {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .ChildNav-item {
    float: left;
    width: 50%;
    border-bottom: 1px solid #eee;
    font-size: 1.4rem;
    font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  }
  .Page-glbHeader.type-a .ChildNav-item:nth-child(2n) {
    border-right-width: 0;
  }
}
.Page-glbHeader.type-a .ChildNav-item a {
  position: relative;
  display: block;
  padding: 18px;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: color;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-a .ChildNav-item a {
    padding: 16px;
  }
  
    /*
  .Page-glbHeader.type-a .ChildNav-item a:after {
    position: absolute;
    top: 0;
    right: 6%;
    bottom: 0;
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #AA8E76;
    content: "";

    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
      */
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-a .ChildNav-item a {
    padding: 10% 6%;
  }
}
.Page-glbHeader.type-a .ChildNav-item a:hover {
  color: #AA8E76;
}
.Page-glbHeader.type-a .SubNav-item .textLink {
  color: #fff;
}

.Page-glbHeader.type-b {
  padding-top: 136px;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b {
    padding-top: 60px;
  }
}
.Page-glbHeader.type-b .SiteLogoSvg.isWhite {
  display: none;
}
.Page-glbHeader.type-b .SiteLogoSvg.isColor {
  display: block;
}
.Page-glbHeader.type-b .Page-header {
  margin-top: 60px;
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-b .Page-header {
    margin-top: 6%;
  }
}
.Page-glbHeader.type-b .Page-type:after {
  background-color: #000;
}
.Page-glbHeader.type-b .Page-subTitle {
  font-size: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-b .Page-subTitle {
    font-size: 1.7rem;
  }
}
.Page-glbHeader.type-b .Page-headTitle {
  margin: auto; 
  margin-bottom: 40px;
  width: 92%;
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-b .Page-headTitle {
    margin-bottom: 4%;
  }
}
.Page-glbHeader.type-b .ChildNav .ChildNav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav {
    position: relative;
    background-color: #fff;
    text-align: left;
  }
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto; 
    width: 1px;
    height: 100%;
    background-color: #eee;
    content: "";
  }
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; 
    width: 100%;
    height: 1px;
    background-color: #eee;
    content: "";
  }
}
@media only screen and (min-width: 60.0625em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav-list {
    text-align: center;
    font-size: 0;
  }
}
.Page-glbHeader.type-b .ChildNav .ChildNav-list:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
.Page-glbHeader.type-b .ChildNav .ChildNav-item {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav-item {
    float: left;
    width: 50%;
    border-bottom: 1px solid #eee;
    font-size: 1.4rem;
    font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  }
  .Page-glbHeader.type-b .ChildNav .ChildNav-item:nth-child(2n) {
    border-right-width: 0;
  }
}
.Page-glbHeader.type-b .ChildNav .ChildNav-item a {
  position: relative;
  display: block;
  padding: 18px;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: color;
}
@media only screen and (max-width: 60em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav-item a {
    padding: 16px;
  }
  .Page-glbHeader.type-b .ChildNav .ChildNav-item a:after {
    position: absolute;
    top: 0;
    right: 6%;
    bottom: 0;
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #AA8E76;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-glbHeader.type-b .ChildNav .ChildNav-item a {
    padding: 10% 6%;
  }
}
.Page-glbHeader.type-b .ChildNav .ChildNav-item a:hover {
  color: #AA8E76;
}

.Page-header {
  z-index: 1; 
  text-align: center;
}

.Page-type {
  position: relative;
  z-index: 5; 
  display: inline-block;
  margin-bottom: 20px;
  padding: 0 10px;
  text-align: center;
  letter-spacing: .6rem;
  font-size: 1.9rem;
  font-family: "Quicksand";
}
.Page-type:after {
  position: absolute;
  right: 0; 
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 1px;
  content: "";
}

.Page-headTitle {
  position: relative; 
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 5.4rem;
  font-family: "Quicksand";
  line-height: 1.4;
}
@media only screen and (max-width: 60em) {
  .Page-headTitle {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-headTitle {
    font-size: 2.4rem;
  }
}
.Page-headTitle span {
  position: relative;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 37.5em) {
  .Page-headTitle span {
    letter-spacing: 1.4rem;
  }
}
.Page-headTitle.ja {
  position: relative;
  letter-spacing: .4rem;
  font-weight: bold; 
  font-size: 3.8rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1.5;
}
@media only screen and (max-width: 60em) {
  .Page-headTitle.ja {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-headTitle.ja {
    font-size: 2.2rem;
  }
}
.Page-headTitle.ja span {
  display: block;
  margin-top: 15px; 
  letter-spacing: .4rem;
  font-size: 2.8rem;
}
@media only screen and (max-width: 60em) {
  .Page-headTitle.ja span {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-headTitle.ja span {
    font-size: 2rem;
  }
}

.Page-subTitle {
  position: relative;
  letter-spacing: .4rem;
}

.Page-subNav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5; 
  padding: 15px;
  width: 100%;
}
@media only screen and (max-width: 60em) {
  .Page-subNav {
    position: fixed;
    z-index: 9900;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
  }
}

.SiteLogo {
  float: left; 
  width: 20%;
}
@media only screen and (max-width: 60em) {
  .SiteLogo {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
  }
}

.SiteLogoSvg {
  max-width: 230px;
  max-height: 44px; 
  width: 100%;
}
@media only screen and (max-width: 60em) {
  .SiteLogoSvg {
    position: absolute;
    top: 50%;
    left: 4%;
    width: 85%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .SiteLogoSvg.isWhite {
    display: none;
  }
  .SiteLogoSvg.isColor {
    display: block;
  }
}

.SubNav {
  position: relative; 
  float: right;
  width: 80%;
  text-align: right;
}
@media only screen and (max-width: 60em) {
  .SubNav {
    width: 45%;
    font-size: 0;
  }
}

.SubNav-item {
  position: relative; 
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 60em) {
  .SubNav-item {
    display: none; 
    margin-right: 30%;
    margin-left: 0;
    width: 70%;
  }
  .SubNav-item#CONTACT_MODAL_TRIGGER, .SubNav-item#NAV_TRIGGER {
    display: inline-block;
  }
}
.SubNav-item .textLink {
  margin-right: 15px;
  text-decoration: underline; 
  font-size: 1.4rem;
}
.SubNav-item .textLink.forGuest {
  display: none;
}
.SubNav-item .textLink:hover {
  text-decoration: none;
}
@media only screen and (max-width: 60em) {
  .SubNav-item .textLink {
    display: none;
  }
}
.SubNav-item .Btn {
  width: 200px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 60em) {
  .SubNav-item .Btn {
    padding: 9px 0;
    width: 100%;
    font-size: 1.2rem; 
    line-height: 1.8;
  }
  .SubNav-item .Btn span {
    display: block;
    height: 0;
    opacity: 0;
  }
}

.navTrigger {
  position: relative;
  display: none;
}
@media only screen and (max-width: 60em) {
  .navTrigger {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    margin: 0;
    width: 30%;
    height: 100%;
    background: transparent url(../img/navTrigger.svg) center center no-repeat;
    background-color: #000;
    background-size: 32px 32px;
  }
  .navTrigger:hover {
    cursor: pointer;
  }
}

.Page-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5; 
  width: 100%;
}
@media only screen and (max-width: 60em) {
  .Page-nav {
    position: relative; 
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
.Page-nav .MainNav {
  position: relative; 
  clear: both;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 60em) {
  .Page-nav .MainNav {
    background-color: #fff;
    text-align: left;
  }
  .Page-nav .MainNav:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto; 
    width: 1px;
    height: 100%;
    background-color: #eee;
    content: "";
  }
  .Page-nav .MainNav:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; 
    width: 100%;
    height: 1px;
    background-color: #eee;
    content: "";
  }
}
.Page-nav .MainNav-item {
  display: inline-block;
  font-size: 1.7rem;
}
@media only screen and (max-width: 60em) {
  .Page-nav .MainNav-item {
    width: 50%;
    border-bottom: 1px solid #eee;
    font-size: 1.4rem;
  }
  .Page-nav .MainNav-item:nth-child(2n) {
    border-right-width: 0;
  }
}
.Page-nav .MainNav-item a {
  position: relative; 
  display: block;
  padding: 16px;
}
@media only screen and (max-width: 60em) {
  .Page-nav .MainNav-item a {
    padding: 16px;
  }
  .Page-nav .MainNav-item a:after {
    position: absolute;
    top: 0;
    right: 6%;
    bottom: 0;
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #AA8E76;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-nav .MainNav-item a {
    padding: 10% 6%;
  }
}
.Page-nav .MainNav-item a:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 2px;
  background-color: #AA8E76;
  content: "";
  opacity: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1); 
  transition-duration: .5s;
  transition-property: width, opacity;
}
@media only screen and (max-width: 60em) {
  .Page-nav .MainNav-item a:before {
    display: none;
  }
}
.Page-nav .MainNav-item a:hover:before {
  width: 30px; 
  opacity: 1;
}

.CloneNav {
  position: fixed;
  top: 0;
  z-index: 9100;
  margin-top: -74px;
  width: 100%;
  background-color: #fff;
  opacity: .8; 
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transition-duration: .5s;
  transition-property: margin-top, opacity;
}
@media only screen and (max-width: 60em) {
  .CloneNav {
    display: none;
  }
}
.CloneNav .SiteLogo {
  position: relative;
  z-index: 3;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-color: #fff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
  transition-timing-function: cubic-bezier(.645, .045, .355, 1); 
  transition-duration: .8s;
  transition-property: box-shadow;
}
.CloneNav .SiteLogoSvg.isWhite {
  display: block;
}
.CloneNav .SiteLogoSvg.isColor {
  display: none;
}
.CloneNav .MainNav,
  .CloneNav .ChildNav-list {
  position: relative;
  z-index: 2;
  clear: both;
  width: 100%;
  border: none;
  background-color: transparent;
  background-color: #fff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1); 
  text-align: center;
  font-size: 0;
}
.CloneNav .MainNav-item,
  .CloneNav .ChildNav-item {
  position: relative;
  display: inline-block;
}
.CloneNav .MainNav-item a,
    .CloneNav .ChildNav-item a {
  position: relative; 
  display: block;
  padding: 16px;
  color: #000;
}
.CloneNav .MainNav {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
}
.CloneNav .MainNav-item {
  font-size: 1.7rem;
}
.CloneNav .MainNav-item:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 2px;
  background-color: #AA8E76;
  content: "";
  opacity: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1); 
  transition-duration: .5s;
  transition-property: width, opacity;
}
.CloneNav .MainNav-item:hover:before {
  width: 30px; 
  opacity: 1;
}
.CloneNav .ChildNav-item a {
  transition-timing-function: cubic-bezier(.215, .61, .355, 1); 
  transition-duration: .5s;
  transition-property: color;
}
.CloneNav .ChildNav-item a:hover {
  color: #AA8E76;
}
.CloneNav .ChildNav-list {
  font-size: 1.5rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.CloneNav .SubNav {
  position: absolute;
  right: 0;
  z-index: 3;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
  font-size: 0;
  transition-timing-function: cubic-bezier(.645, .045, .355, 1); 
  transition-duration: .8s;
  transition-property: box-shadow;
}
.CloneNav .SubNav .Btn {
  padding: 15px 0;
}
.CloneNav .SubNav-item {
  margin: 0;
}
.CloneNav .SubNav-item .textLink {
  margin: 0; 
  padding: 20px;
  color: #000;
}
.CloneNav .navTrigger {
  display: inline-block;
  width: 72px;
  height: 100%;
  background: transparent url(../img/navTrigger.svg) center center no-repeat;
  background-color: #000;
  background-size: 32px 32px;
}
.CloneNav .navTrigger:hover {
  cursor: pointer;
}
.CloneNav.is-active {
  margin-top: 0;
  opacity: 1;
}
.CloneNav .CloneSubNav.is-active .SiteLogo,
  .CloneNav .CloneSubNav.is-active .SubNav {
  box-shadow: 0 1px 0 0 transparent;
}
.CloneNav .ChildNav-list {
  z-index: 1;
  background-color: #fff;
}
.CloneNav .CloneNav-listGroup {
  position: absolute;
  top: -74px;
  width: 100%;
  opacity: 0;
  transition-timing-function: cubic-bezier(.645, .045, .355, 1); 
  transition-duration: .8s;
  transition-property: top, opacity;
}
.CloneNav .CloneNav-listGroup.is-active {
  top: 74px;
  padding-bottom: 100px;
  opacity: 1;
}

.spNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow: scroll;
  padding: 4%;
  width: 80%;
  height: 100%;
  background-color: #fff;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1); 
  transition-duration: .4s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.spNav.is-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 60.0625em) {
  .spNav {
    display: none;
  }
}
.spNav .spNav-closeBtn {
  position: relative;
  float: right; 
  width: 44px;
  height: 44px;
}
.spNav .spNav-closeBtn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 80%;
  height: 1px;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.spNav .spNav-closeBtn:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 1px;
  height: 80%;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.spNav .MainNav {
  margin-top: 60px;
}
.spNav .MainNav-item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1); 
  font-size: 1.4rem;
}
.spNav .MainNav-item.is-active >span:after {
  display: none !important;
}
.spNav .MainNav-item >span {
  position: relative; 
  display: block;
}
.spNav .MainNav-item >span >a {
  padding: 2% 0;
}
.spNav .MainNav-item >span.hasChild >a {
  display: inline-block;
}
.spNav .MainNav-item >span.hasChild:before, .spNav .MainNav-item >span.hasChild:after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto; 
  background-color: #000;
  content: "";
}
.spNav .MainNav-item >span.hasChild:before {
  right: 0; 
  width: 14px;
  height: 1px;
}
.spNav .MainNav-item >span.hasChild:after {
  right: 7px; 
  width: 1px;
  height: 14px;
}
.spNav .MainNav-item a {
  display: block;
}
.spNav .MainNav-item a.textLink {
  padding: 2% 0;
}
.spNav .ChildNav-list {
  display: none;
}
.spNav .ChildNav-item {
  font-size: 1.2rem; 
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.spNav .ChildNav-item:first-child {
  margin-top: 10px;
}
.spNav .ChildNav-item a {
  padding: 12px 4%;
}

.Page-content {
  position: relative;
  z-index: 2; 
  background-color: #fff;
}
@media only screen and (max-width: 60em) {
  .Page-content {
    z-index: auto; 
    margin-top: 0 !important;
  }
}

.Page-leadText {
  margin-right: auto; 
  margin-bottom: 60px;
  margin-left: auto;
  max-width: 1024px;
  width: 100%;
  text-align: center;
  letter-spacing: .1rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media only screen and (max-width: 69.56522em) {
  .Page-leadText {
    margin-right: 4%; 
    margin-left: 4%;
    width: 92%;
  }
}
@media only screen and (max-width: 60em) {
  .Page-leadText {
    margin-bottom: 4%; 
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .Page-leadText br {
    display: none;
  }
}

.MainContentBlock {
  background-color: #fff;
  padding-bottom: 1px;
}

.MainContentBlock-header {
  padding: 50px 0 10px 0; 
  text-align: center;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock-header {
    padding:5% 0 2% 0;
  }
}

.MainContentBlock-headTitle {
  position: relative; 
  display: inline-block;
}
.MainContentBlock-headTitle.ja span,.MainContentBlock-headTitle.ja span.sub {
  letter-spacing: .2rem;
  font-weight: bold; 
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.MainContentBlock-headTitle.ja span:after {
  display: none;
}
.MainContentBlock-headTitle span {
  letter-spacing: .4rem; 
  font-weight: 400;
  font-size: 2.8rem;
  font-family: "Quicksand";
}
.MainContentBlock-headTitle span.sub {
  letter-spacing: .4rem; 
  font-weight: 400;
  font-size: 2.0rem;
  font-family: "Quicksand";
  display: block;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock-headTitle span {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .MainContentBlock-headTitle span {
    font-size: 2.8rem;
  }
}
.MainContentBlock-headTitle span::after,.MainContentBlock-headTitle.ja span::after  {
  display: block; 
  width: 100%;
  height: 1px;
  background-color: #AA8E76 !important;
  content: "";
}
.MainContentBlock-headTitle span.sub:after {
  display: none; 
}
p.MainContentBlock-daytitl{
  font-weight: bold; 
  color: #AA8E76;
  font-size: 2.8rem;
  padding-bottom: 25px;
  text-align: center;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.MainContentBlock-headTitle-event {
  position: relative; 
  display: inline-block;
  font-size: 2.2rem;
  line-height: 3.5rem;
}
.MainContentBlock-headTitle-event.ja span {
  letter-spacing: .2rem;
  font-weight: bold; 
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.MainContentBlock-headTitle-event.ja span:after {
  display: none;
}
.MainContentBlock-headTitle-event span {
  letter-spacing: .4rem; 
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.MainContentBlock-headTitle-event strong {
  letter-spacing: .4rem; 
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}


@media only screen and (max-width: 60em) {
  .MainContentBlock-headTitle-event {
    font-size: 1.8rem;
	line-height: 2.5rem;
  }
}

@media only screen and (max-width: 60em) {
  .MainContentBlock-headTitle-event span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .MainContentBlock-headTitle-event span {
    font-size: 1.8rem;
  }
}



.MainContentBlock-headTitle-event span:after {
  display: block; 
  width: 100%;
  height: 1px;
  background-color: #AA8E76;
  content: "";
}


.MainContentBlock-headTitle-event-box{
	text-align: center;
	margin: 3rem 0;
}
.MainContentBlock-headTitle-event-btn{
	padding: 0 40%;
}


@media only screen and (max-width: 37.5em) {
.MainContentBlock-headTitle-event-box{
	margin-bottom: 4rem;
}
}

@media only screen and (max-width: 37.5em) {
.MainContentBlock-headTitle-event-btn{
	padding: 0 10%;
}
}



.MainContentBlock-subTitle {
  margin-top: 10px; 
  font-size: 1.4rem;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock-subTitle {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .MainContentBlock-subTitle {
    font-size: 1.2rem;
  }
}

.MainContentBlock-leadText {
  margin-top: 40px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock-leadText {
    margin-top: 4%;
  }
}

.MainContentBlock.learnMore .bgImgBox.is-1column {
  display: none;
}

.bgImgBlock:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.bgImgBox {
  position: relative;
  float: left; 
  overflow: hidden;
}
.bgImgBox .viewMore {
  text-align: center;
  letter-spacing: .4rem;
  font-style: italic; 
  font-family: "Quicksand";
  font-size: 1.8rem;
  font-weight:bold;
}
@media only screen and (max-width: 60em) {
  .bgImgBox .viewMore {
    display: none;
  }
}
.bgImgBox .viewMore span {
  display: inline-block;
  vertical-align: middle;
}
.bgImgBox .viewMore:before {
  display: inline-block;
  margin-right: 15px;
  width: 34px;
  height: 1px;
  background-color: transparent;
  content: "";
  vertical-align: middle;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1); 
  transition-duration: .8s;
  transition-property: background-color;
}
.bgImgBox.is-1column {
  padding-top: 50%; 
  width: 100%;
}
@media only screen and (max-width: 60em) {
  .bgImgBox.is-1column {
    padding-top: 100%; 
    width: 100%;
  }
}
.bgImgBox.is-1column .bgImgBox-text {
  color: #fff;
}
.bgImgBox.is-2column {
  padding-top: 25%; 
  width: 50%;
}
@media only screen and (max-width: 60em) {
  .bgImgBox.is-2column {
    padding-top: 0;
    width: 100%;
  }
  .bgImgBox.is-2column .bgImgBox-bgImg {
    position: relative;
  }
  .bgImgBox.is-2column .bgImgBox-header {
    position: relative;
    background-color: #f5f5f5;
  }
  .bgImgBox.is-2column .bgImgBox-header:before {
    display: none;
  }
  .bgImgBox.is-2column .bgImgBox-header:after {
    border-color: #AA8E76;
  }
  .bgImgBox.is-2column .bgImgBox-headTitle {
    color: #000;
    font-size: 2rem;
  }
}
.bgImgBox.is-3column {
  padding-top: 25%;
  width: 33.38235%;
  font-size: 1.3rem;
}
.bgImgBox.is-3column:nth-child(n) {
  display: inline-block;
  margin-right: 0; 
  margin-left: 0;
  width: 33.33333%;
  vertical-align: top;
}
.bgImgBox.is-3column:nth-child(3n+1) {
  margin-left: 0;
}
.bgImgBox.is-3column:nth-child(3n+3) {
  margin-right: 0;
}
@media only screen and (max-width: 60em) {
  .bgImgBox.is-3column {
    font-size: 1.3rem;
  }
  .bgImgBox.is-3column:nth-child(n) {
    display: inline-block;
    margin-right: 0; 
    margin-left: 0;
    width: 100%;
    vertical-align: top;
  }
  .bgImgBox.is-3column:nth-child(1n+1) {
    margin-left: 0;
  }
  .bgImgBox.is-3column:nth-child(1n+1) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 60em) {
  .bgImgBox.is-3column .bgImgBox-bgImg {
    position: relative;
    max-height: 500px;
    background-position: top center;
  }
}
@media only screen and (max-width: 60em) {
  .bgImgBox.is-2column, .bgImgBox.is-3column {
    padding-top: 0;
    width: 100%;
  }
  .bgImgBox.is-2column .bgImgBox-bgImg, .bgImgBox.is-3column .bgImgBox-bgImg {
    position: relative;
  }
  .bgImgBox.is-2column .bgImgBox-header, .bgImgBox.is-3column .bgImgBox-header {
    position: relative;
    background-color: #f5f5f5;
  }
  .bgImgBox.is-2column .bgImgBox-header:before, .bgImgBox.is-3column .bgImgBox-header:before {
    display: none;
  }
  .bgImgBox.is-2column .bgImgBox-header:after, .bgImgBox.is-3column .bgImgBox-header:after {
    border-color: #AA8E76;
  }
  .bgImgBox.is-2column .bgImgBox-headTitle, .bgImgBox.is-3column .bgImgBox-headTitle {
    color: #000;
  }
  .bgImgBox.is-2column .bgImgBox-leadText, .bgImgBox.is-3column .bgImgBox-leadText {
    color: #000;
  }
  .bgImgBox.is-2column .bgImgBox-subTitle, .bgImgBox.is-3column .bgImgBox-subTitle {
    color: #000;
  }
}
.bgImgBox:hover .bgImgBox-bgImg {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.bgImgBox:hover .bgImgBox-bgImg.hasScreen:before {
  background-color: rgba(0, 0, 0, .5);
}
.bgImgBox:hover .viewMore {
  margin-top: 20px; 
  color: #fff;
  line-height: 1.5;
}
.bgImgBox:hover .viewMore:before {
  background-color: #fff;
}

.bgImgBox-bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-timing-function: cubic-bezier(.25, .46, .45, .94); 
  transition-duration: 20s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.bgImgBox-bgImg:before {
  transition-timing-function: linear; 
  transition-duration: .3s;
  transition-property: background-color;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-bgImg:before {
    display: none !important;
  }
}

.bgImgBox-header {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 650px; 
  width: 92%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 60em) {
  .bgImgBox-header {
    top: auto;
    bottom: 0;
    left: 0;
    padding: 4% 10% 4% 4%;
    max-width: 100%; 
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bgImgBox-header:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 80%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .2);
  box-shadow: 0 0 100px 50px rgba(0, 0, 0, .22); 
  content: "";
}
@media only screen and (max-width: 60em) {
  .bgImgBox-header:before {
    width: 100%;
    border-radius: 0;
    background-color: rgba(0, 0, 0, .5); 
    box-shadow: none;
  }
}
@media only screen and (max-width: 60em) {
  .bgImgBox-header:after {
    position: absolute;
    top: 0;
    right: 4%;
    bottom: 0;
    display: block;
    margin: auto;
    width: 34px;
    height: 34px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-header:after {
    width: 17px;
    height: 17px;
  }
}
.bgImgBox-header p +p {
  margin-top: 16px;
}

.bgImgBox-category {
  position: relative;
  color: #fff;
  letter-spacing: .2rem;
  font-weight: bold; 
  font-size: 1.7rem;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-category {
    display: none;
  }
}
.bgImgBox-category:after {
  display: block;
  margin: 20px auto; 
  width: 30px;
  height: 1px;
  background-color: #fff;
  content: "";
}

.bgImgBox-headTitle {
  position: relative;
  margin-bottom: 10px; 
  color: #fff;
  letter-spacing: .4rem;
  font-weight: normal;
  font-size: 2.8rem;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-headTitle {
    margin-bottom: 0; 
    text-align: left;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-headTitle {
    font-size: 2rem;
  }
}
.bgImgBox-headTitle.ja {
  font-weight: bold;
}

.bgImgBox-leadTitle {
  position: relative;
  margin-bottom: 10px; 
  color: #fff;
  letter-spacing: .4rem;
  font-size: 2.8rem;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-leadTitle {
    margin-bottom: 0; 
    text-align: left;
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-leadTitle {
    font-size: 1.5rem;
  }
}

.bgImgBox-subTitle {
  position: relative;
  color: #fff;
  font-weight: bold; 
  font-size: 1.5rem;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-subTitle {
    text-align: left; 
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-subTitle {
    font-size: 1.3rem;
  }
}

.bgImgBox-text {
  position: relative; 
  color: #fff;
  letter-spacing: .2rem;
  font-weight: bold;
  font-size: 1.4rem;
}
.bgImgBox-text span{
  border: solid;
  border-style: solid; border-width: 1px;
  padding: 3px;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-text {
    color: #000;
    text-align: left;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-text {
    font-size: 1.2rem;
  }
}

.bgImgBox-leadText {
  position: relative; 
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (max-width: 60em) {
  .bgImgBox-leadText {
    text-align: left;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bgImgBox-leadText {
    font-size: 1.3rem;
  }
}

.weddingSlideBox {
  background-color: #f5f5f5;
}
.weddingSlideBox .slick-dots {
  position: absolute;
  bottom: 0;
  z-index: 5; 
  padding: 20px 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox .slick-dots {
    position: relative;
  }
}
.weddingSlideBox .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  padding: 10px;
}
.weddingSlideBox .slick-dots li:hover {
  cursor: pointer;
}
.weddingSlideBox .slick-dots li:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; 
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox .slick-dots li:after {
    background-color: #aaa;
  }
}
.weddingSlideBox .slick-dots li button {
  display: none;
}
.weddingSlideBox .slick-dots li.slick-active:after {
  background-color: transparent;
  background-color: #fff;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox .slick-dots li.slick-active:after {
    border: 1px solid #AA8E76;
  }
}
.weddingSlideBox .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5000;
  margin: auto;
  padding: 0;
  width: 58px;
  height: 78px;
  outline: none;
  border: none;
  background: transparent url(../img/common/slideArrow.png) center center no-repeat;
  background-size: contain; 
  color: transparent;
  transition-timing-function: linear;
  transition-duration: .2s;
  transition-property: opacity;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox .slick-arrow {
    top: auto;
    bottom: 14px;
    display: block;
    width: 30px;
    height: 40px;
    background: transparent;
  }
}
.weddingSlideBox .slick-arrow:hover {
  opacity: .6; 
  cursor: pointer;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox .slick-arrow:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 17px;
    height: 17px;
    border-top: 1px solid #AA8E76;
    border-left: 1px solid #AA8E76;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.weddingSlideBox .slick-arrow.slick-prev {
  left: 4%;
}
.weddingSlideBox .slick-arrow.slick-next {
  right: 4%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.weddingSlideBox.is-even .weddingSlideBox-header {
  left: 0;
}
.weddingSlideBox.is-even .weddingSlideBox-slider {
  margin-left: 38%;
}
.weddingSlideBox.is-odd .weddingSlideBox-header {
  right: 0;
}
.weddingSlideBox.is-odd .weddingSlideBox-slider {
  margin-right: 38%;
}

.weddingSlideBox-body {
  position: relative;
}

.weddingSlideBox-bgImg {
  padding-top: 41.17647%; 
  width: 100%;
}
.weddingSlideBox-bgImg img {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-bgImg {
    display: none;
  }
}

.weddingSlideBox-slider {
  position: relative; 
  overflow: hidden;
  width: 62%;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-slider {
    margin: 0 !important; 
    width: 100%;
  }
}
.weddingSlideBox-slider:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 30%;
  background: transparent url("../img/common/imageBottomScreen.png") top center repeat-x;
  background-size: cover; 
  content: "";
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-slider:after {
    display: none;
  }
}

.weddingSlideBox-header {
  position: absolute;
  top: 50%;
  padding: 0 2%; 
  width: 38%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-header {
    position: relative;
    top: auto;
    padding: 4%; 
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.weddingSlideBox-headTitle {
  margin-bottom: 2%;
  letter-spacing: .4rem;
  font-weight: normal; 
  font-size: 2.8rem;
  font-family: "Quicksand";
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-headTitle {
    margin-bottom: 4%; 
    font-size: 2rem;
  }
}
.weddingSlideBox-headTitle span {
  display: block;
  letter-spacing: .1rem;
  font-weight: bold; 
  font-size: 1.5rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-headTitle span {
    font-size: 2rem;
    font-size: 1.4rem;
  }
}
.weddingSlideBox-headTitle.ja {
  letter-spacing: .1rem;
  font-weight: bold;
  font-size: 2rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.weddingSlideBox-text {
  margin-bottom: 6%; 
  font-size: 1.2rem;
}
.weddingSlideBox-text span {
  display: inline-block;
}
.weddingSlideBox-text:before, .weddingSlideBox-text:after {
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #ccc;
  content: "";
  vertical-align: middle;
}

.weddingSlideBox-subTitle {
  margin-bottom: 3%; 
  color: #AA8E76;
  font-size: 1.8rem;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-subTitle {
    font-size: 1.5rem;
  }
}

.weddingSlideBox-leadText {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 2;
}
@media only screen and (max-width: 60em) {
  .weddingSlideBox-leadText {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .weddingSlideBox-leadText br {
    display: none;
  }
}

.chefProfileBlock .Btn {
  clear: both;
  margin: auto; 
  max-width: 240px;
}
@media only screen and (min-width: 37.5625em) {
  .chefProfileBlock .Btn {
    display: none;
  }
}

.chefProfileBox {
  position: relative;
  margin-bottom: 32px; 
  background-color: #f5f5f5;
}
@media only screen and (max-width: 37.5em) {
  .chefProfileBox {
    float: left; 
    width: 49.8%;
  }
  .chefProfileBox:nth-child(2) {
    float: right;
  }
}
.chefProfileBox:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.chefProfileBox-bgImg {
  position: absolute;
  top: 0;
  left: 0; 
  max-width: 180px;
  height: 100%;
}
@media only screen and (max-width: 37.5em) {
  .chefProfileBox-bgImg {
    position: relative;
    max-width: 100%;
  }
}

.chefProfileBox-body {
  padding: 24px; 
  padding-left: 200px;
  min-height: 260px;
}
@media only screen and (max-width: 37.5em) {
  .chefProfileBox-body {
    display: none;
  }
}

.chefProfileBox-header {
  margin-bottom: 16px;
  color: #AA8E76;
}

.chefProfileBox-headTitle {
  letter-spacing: .4rem; 
  font-size: 2rem;
}
.chefProfileBox-headTitle span {
  display: block;
  letter-spacing: 0rem; 
  font-size: 1.4rem;
}

.chefProfileModalBlock {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: none;
  overflow: scroll; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
.chefProfileModalBlock .wrapper {
  margin: 5% auto;
  padding: 80px 4% 4%;
  background-color: #fff;
}
.chefProfileModalBlock .wrapper:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
.chefProfileModalBlock .chefProfileModalBlock-closeBtn {
  position: absolute;
  top: 4%;
  right: 4%;
  display: block;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.chefProfileModalBlock .chefProfileModalBlock-closeBtn:before, .chefProfileModalBlock .chefProfileModalBlock-closeBtn:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; 
  width: 100%;
  height: 1px;
  background-color: #000;
  content: "";
}
.chefProfileModalBlock .chefProfileModalBlock-closeBtn:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.chefProfileModalBlock .chefProfileModalBlock-closeBtn:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.chefProfileModalBlock .chefProfileBox {
  position: relative; 
  float: none;
  width: auto;
  background-color: #fff;
}
.chefProfileModalBlock .chefProfileBox:last-child {
  padding-top: 8%;
}
.chefProfileModalBlock .chefProfileBox:last-child:before {
  position: absolute;
  top: 0;
  display: block; 
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .1);
  content: "";
}
.chefProfileModalBlock .chefProfileBox-bgImg {
  display: inline;
  float: left;
  margin-right: 16px;
  width: 90px;
  background-image: none !important;
}
.chefProfileModalBlock .chefProfileBox-bgImg img {
  visibility: visible;
}
.chefProfileModalBlock .chefProfileBox-body {
  padding: 0;
}
.chefProfileModalBlock .chefProfileBox-body {
  display: inline;
}
.chefProfileModalBlock .chefProfileBox-headTitle {
  font-size: 1.7rem;
}
.chefProfileModalBlock .chefProfileBox-headTitle span {
  font-size: 1.2rem;
}
.chefProfileModalBlock .chefProfileBox-text {
  font-size: 1.2rem;
}

.MainContentBlock.learnMore .bgImgBox.is-2column {
  padding-top: 33.82353%; 
  width: 50%;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock.learnMore .bgImgBox.is-2column {
    padding-top: 0;
    width: 100%;
  }
}

.MainContentBlock.bottomContact:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.MainContentBlock.bottomContact .Btn {
  margin: auto;
  margin-bottom: 15px; 
  width: 240px;
}
@media only screen and (max-width: 37.5em) {
  .MainContentBlock.bottomContact .Btn {
    max-width: 240px; 
    width: 90%;
  }
}

.BottomContactBox {
  position: relative;
}
.BottomContactBox.is-1column {
  padding-top: 45.58824%;
  min-height: 600px; 
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .BottomContactBox.is-1column {
    min-height: 550px;
  }
}
.BottomContactBox.is-1column .BottomContactBox-body {
  max-width: 600px;
}
.BottomContactBox.is-1column .BtnGroup {
  text-align: center;
}
@media only screen and (min-width: 60.0625em) {
  .BottomContactBox.is-1column .Btn {
    display: inline-block;
    margin-top: 2%; 
    margin-right: 2%;
    margin-left: 2%;
    width: 45%;
  }
}
.BottomContactBox.is-2column {
  float: left;
  padding-top: 50%;
  min-height: 550px; 
  width: 50%;
}
@media only screen and (max-width: 60em) {
  .BottomContactBox.is-2column {
    padding-top: 85.29412%;
    min-height: 0; 
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .BottomContactBox.is-2column {
    padding-top: 133.33333%; 
    width: 100%;
  }
}
.BottomContactBox.is-2column .BottomContactBox-body {
  max-width: 370px;
}

.BottomContactBox-bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.BottomContactBox-body {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 56px;
  width: 92%; 
  background-color: rgba(255, 255, 255, .9);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 60em) {
  .BottomContactBox-body {
    padding: 6%;
  }
}

.BottomContactBox-headTitle {
  color: #AA8E76;
  text-align: center; 
  letter-spacing: .2rem;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Quicksand";
}
@media only screen and (max-width: 60em) {
  .BottomContactBox-headTitle {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .BottomContactBox-headTitle {
    font-size: 2rem;
  }
}
.BottomContactBox-headTitle:after {
  display: block;
  margin: 20px auto;
  width: 30px;
  height: 1px;
  background-color: #AA8E76; 
  content: "";
}
@media only screen and (max-width: 60em) {
  .BottomContactBox-headTitle:after {
    margin: 15px auto;
  }
}

.BottomContactBox-text {
  margin-bottom: 20px; 
  text-align: center;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.BottomContactBox-text +.BottomContatBox-text {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .BottomContactBox-text {
    margin-bottom: 15px; 
    font-size: 1.2rem;
  }
}

.BottomContactBox-subTitle {
  margin-bottom: 20px; 
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .BottomContactBox-subTitle {
    margin-bottom: 15px;
  }
}

.Page-footer {
  position: relative;
  background-color: #222;
}

.FooterMapBlock:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.FooterMapBlock .Btn {
  width: 240px;
}
@media only screen and (max-width: 60em) {
  .FooterMapBlock .Btn {
    margin: auto;
  }
}

.FooterMapBox {
  min-height: 650px;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox {
    min-height: 550px;
  }
}
.FooterMapBox.address {
  position: relative;
  float: left;
  padding-top: 41.17647%;
  width: 35%;
  background-color: #f5f5f5;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox.address {
    padding-top: 85.29412%; 
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .FooterMapBox.address {
    padding-top: 133.33333%; 
    width: 100%;
  }
}
.FooterMapBox.map {
  position: relative;
  float: left; 
  padding-top: 41.17647%;
  width: 65%;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox.map {
    display: none;
  }
}
.FooterMapBox.map #MAP {
  position: absolute;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
}

.FooterMapBox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 60em) {
  .FooterMapBox-content {
    width: 92%;
  }
}

.FooterMapBox-headTitle {
  margin-bottom: 20px;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox-headTitle {
    margin-bottom: 4%;
  }
}
.FooterMapBox-headTitle svg {
  width: 215px;
  height: 34px;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox-headTitle svg {
    display: block;
    margin: auto;
  }
}

.FooterMapBox-text {
  margin-bottom: 20px; 
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .FooterMapBox-text {
    margin-bottom: 4%;
    text-align: center;
  }
}
.FooterMapBox-text strong {
  display: block;
}

.FooterLogoBlock {
  position: relative; 
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background-color: #222;
}
@media only screen and (max-width: 37.5em) {
  .FooterLogoBlock {
    padding: 4% 0;
  }
}
.FooterLogoBlock svg {
  display: inline-block;
  width: 45px;
  height: 30px;
  vertical-align: middle;
}
@media only screen and (max-width: 60em) {
  .FooterLogoBlock svg {
    display: block;
    margin: auto;
  }
}
.FooterLogoBlock small {
  display: inline-block;
  margin-right: 15px; 
  color: #fff;
  vertical-align: middle;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .FooterLogoBlock small {
    display: block;
    margin: auto;
    margin-right: 0;
    margin-bottom: 1%;
    text-align: center;
  }
}

.backToTop {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* facebookIcon */
.FooterMapBox-content a.facebookBtn img {
	margin: 0;
	padding:10px 0 0 0;
  width: auto;
  background-color:transparent;
}
.FooterMapBox-content a.facebookBtn img :after {
	background-image:none;
}
.FooterMapBox-content a.facebookBtn img {
  width: 40px;
}

@media only screen and (max-width: 60em) {
/* facebookIcon */
.FooterMapBox-content a.facebookBtn img {

	padding:10px 0 0 0;
  background-color:transparent;
}
.FooterMapBox-content a.facebookBtn img :after {
	background-image:none;
}
.FooterMapBox-content a.facebookBtn img {
	position: relative;
    margin: auto;
  	width: 40px;
}
}


/* PICNIC facebookIcon */
.social {
 padding:30px 0 0 0;
}
.social .underline {
 font-size: 1.7rem ;
 border-bottom:solid 3px #666 ;
 
}
.social a.facebookBtn img {
	margin: 0;
	padding:10px 0 0 0;
  width: auto;
  background-color:transparent;
}
.social a.facebookBtn img :after {
	background-image:none;
}
.social a.facebookBtn img {
  width: 40px;
}

@media only screen and (max-width: 60em) {
.social a.facebookBtn img {

	padding:10px 0 0 0;
  background-color:transparent;
}
.social a.facebookBtn img :after {
	background-image:none;
}
.social a.facebookBtn img {
	position: relative;
    margin: auto;
  	width: 40px;
}
}
/* PICNIC facebookIcon */



@media only screen and (max-width: 60em) {
  .backToTop {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 12px;
    z-index: 9900; 
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(34, 34, 34, .95);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.backToTop p {
  display: inline-block;
  margin-right: 15px;
  color: rgba(255, 255, 255, .6);
  vertical-align: middle;
  letter-spacing: .1rem;
  font-size: 1.2rem; 
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .backToTop p {
    display: none;
  }
}
.backToTop .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: opacity;
}
@media only screen and (max-width: 60em) {
  .backToTop .arrow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.backToTop .arrow svg {
  display: block;
  margin: auto;
  width: 17px;

  fill: rgba(255, 255, 255, .6);
}
.backToTop .arrow:hover {
  opacity: .5; 
  cursor: pointer;
}

.FooterWeddingSpaceBlock-inner {
  position: relative;
  margin-top: 40px;
  font-size: 0;
}
@media only screen and (max-width: 37.5em) {
  .FooterWeddingSpaceBlock-inner {
    margin-top: 4%;
  }
}
.FooterWeddingSpaceBlock-inner .wrapper {
  position: relative;
}
.FooterWeddingSpaceBlock-inner .wrapper:before {
  position: absolute;
  top: 0;
  left: 24%; 
  display: block;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
  content: "";
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBlock-inner .wrapper:before {
    display: none;
  }
}
.FooterWeddingSpaceBlock-inner .wrapper:after {
  position: absolute;
  top: 0;
  right: 24%; 
  display: block;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
  content: "";
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBlock-inner .wrapper:after {
    display: none;
  }
}
.FooterWeddingSpaceBlock-inner:before {
  position: absolute;
  top: 0;
  right: 0; 
  left: 0;
  display: block;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
  content: "";
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBlock-inner:before {
    display: none;
  }
}

.FooterWeddingSpaceBox {
  display: inline-block;
  margin-right: 2%;
  margin-left: 2%;
  width: 22%;
  vertical-align: top; 
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 2.4;
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBox {
    margin-right: 0;
    margin-left: 0;
    padding: 2% 0; 
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}
.FooterWeddingSpaceBox:first-child {
  margin-left: 0;
}
.FooterWeddingSpaceBox:last-child {
  margin-right: 0;
}

.FooterWeddingSpaceBox-headTitle {
  margin-bottom: 20px; 
  color: #b69458;
  font-size: 1.2rem;
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBox-headTitle {
    position: relative;
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .FooterWeddingSpaceBox-headTitle:before, .FooterWeddingSpaceBox-headTitle:after {
    position: absolute;
    top: 0;
    right: 4%;
    bottom: 0;
    display: block;
    margin: auto; 
    width: 14px;
    height: 1px;
    background-color: #fff;
    content: "";
  }
  .FooterWeddingSpaceBox-headTitle:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .FooterWeddingSpaceBox-headTitle.is-active:after {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .FooterWeddingSpaceBox-headTitle {
    padding-top: 4%;
    padding-bottom: 4%;
  }
}

@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBox-content {
    display: none;
  }
}

.FooterWeddingSpaceBox-subTitle {
  color: #fff; 
  font-size: 1.1rem;
}

.FooterWeddingSpaceBox-list {
  margin-bottom: 20px;
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBox-list {
    margin-bottom: 0;
    font-size: 0;
  }
  .FooterWeddingSpaceBox-list:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }
}

.FooterWeddingSpaceBox-item {
  font-size: 1.1rem;
}
@media only screen and (max-width: 60em) {
  .FooterWeddingSpaceBox-item {
    display: inline-block;
    margin-bottom: 4%;
    width: 48%;
    vertical-align: top; 
    line-height: 1.6;
  }
  .FooterWeddingSpaceBox-item:nth-child(2n) {
    margin-left: 2%;
  }
  .FooterWeddingSpaceBox-item:nth-child(2n+1) {
    margin-right: 2%;
  }
}
.FooterWeddingSpaceBox-item a {
  display: block;
  color: #fff;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: opacity;
}
.FooterWeddingSpaceBox-item a:hover {
  opacity: .5;
}

.FooterCopyrightBlock {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (max-width: 60em) {
  .FooterCopyrightBlock {
    border-top: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .FooterCopyrightBlock {
    margin-top: 4%;
  }
}

.FooterCopyrightBox {
  position: relative;
  padding: 40px 0;
}
@media only screen and (max-width: 60em) {
  .FooterCopyrightBox {
    padding: 4% 0;
  }
}

.FooterNav:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

.FooterNav-item {
  float: left;
  margin-right: 30px; 
  font-size: 1.1rem;
}
@media only screen and (max-width: 60em) {
  .FooterNav-item {
    margin-right: 2%;
    margin-bottom: 2%; 
    width: 48%;
  }
}
.FooterNav-item a {
  display: block;
  color: #fff;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: opacity;
}
.FooterNav-item a:hover {
  opacity: .5;
}

.FooterCopyright {
  position: absolute;
  top: 0;
  right: 0;
  padding: 40px 0; 
  color: #878787;
  font-size: 1.1rem;
}
@media only screen and (max-width: 60em) {
  .FooterCopyright {
    position: relative;
    padding: 6% 0;
    text-align: center;
  }
}

.LoadingBlock {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  /* display: none; */
}
.LoadingBlock.firstAccess .LoadingBox,
  .LoadingBlock.firstAccess .LoadingBg {
  display: none;
}

.LoadingBar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background-color: #AA8E76;
  content: "";
  transition-timing-function: cubic-bezier(.215, .61, .355, 1); 
  transition-duration: .4s;
  transition-property: width;
}

@-webkit-keyframes LoadingAnimation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes LoadingAnimation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.LoadingBox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border-bottom: 3.5px solid #AA8E76; 
  border-radius: 50%;
  -webkit-animation: LoadingAnimation 1.5s linear infinite;
  animation: LoadingAnimation 1.5s linear infinite;
}
@media only screen and (max-width: 60em) {
  .LoadingBox {
    width: 60px;
    height: 60px;
    border-bottom: 2px solid #AA8E76;
  }
}
.LoadingBox:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%; 
  content: "";
}

.LoadingBg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
@media only screen and (max-width: 60em) {
  .LoadingBg {
    width: 60px;
    height: 60px;
  }
}
.LoadingBg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, .1); 
  border-radius: 50%;
  content: "";
}


/* =========== banner_block =========== */
.banner_block {
  position: relative;
  margin-top: 30px;
}
@media only screen and (max-width: 48em) {
  .banner_block .wrapper {
    margin: auto;
    padding-bottom: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 48em) {
  .banner_block {
    padding-bottom: 0;
  }
}

/* = type-a = */
.banner_block.type-a .banner-box_title {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Oranienbaum";
}
.banner_block.type-a .banner-box_lead-txt {
  letter-spacing: 0.1rem;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 48em) {
  .banner_block.type-a .banner-box_link {
    margin: auto;
  }
}

/* = type-b = */
.banner_block.type-b .banner-box_title {
  margin-top: 2%;
  font-weight: normal;
  font-size: 34px;
  font-size: 3.4rem;
}
.banner_block.type-b .banner-box_lead-txt {
  letter-spacing: 0.1rem;
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 48em) {
  .banner_block.type-b .banner-box_link {
    margin: auto;
  }
}

/* = banner_block color = */
.banner_block.color_a_1 .banner-box {
  background-color: #C0BD9E;
}
.banner_block.color_b_1 .banner-box {
  background-color: #b49360;
}
.banner_block.color_b_1 .banner-box_title,
.banner_block.color_b_1 .banner-box_lead-txt,
.banner_block.color_b_1 .banner-box_link {
  color: #fff;
}
.banner_block.color_b_1 .banner-box_link:after {
  background-image: url("/bridal/yokohama/grandoriental/common/img/icon_arrow-right-white.png");
  background-size: contain;
}
@media only screen and (max-width: 48em) {
  .banner_block.color_b_1 .banner-box_link {
    margin: auto;
  }
}



/* =========== banner-box =========== */
.banner-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  background-color: #CDCAB1;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
}
@media only screen and (max-width: 48em) {
  .banner-box {
    margin-bottom: 5%;
  }
}
.banner-box:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
.banner-box:hover {
  opacity: 0.8;
}
.banner-box:hover .banner-box_content a:after {
  right: -5px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/* = banner-box_bg-img = */
.banner-box_bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*.banner-box_bg-img img {
  visibility: hidden;
}*/
@media only screen and (max-width: 48em) {
  .banner-box_bg-img {
    position: relative;
/*    padding-top: 45.33333%; */
    width: 100%;
    width: 100%;
  }
/*  .banner-box_bg-img img {
    display: none;
  } */
}

/* = banner-box_content = */
.banner-box_content {
  position: relative;
  z-index: 100;
  float: right;
  padding: 4%;
  width: 50%;
}
.banner-box_content:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 96%;
  height: 90%;
  outline: 1px solid #fff;
  content: "";
}
@media only screen and (max-width: 48em) {
  .banner-box_content {
    position: relative;
    padding: 30px 6%;
    width: 100%;
    text-align: center;
  }
}

/* = banner-box_title = */
.banner-box_title {
  margin-bottom: 2%;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 48em) {
  .banner-box_title {
    margin-bottom: 2%;
    font-size: 20px;
    font-size: 2rem;
  }
}

/* = banner-box_lead-txt = */
.banner-box_lead-txt {
  margin-bottom: 2%;
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 48em) {
  .banner-box_lead-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* = banner-box_link = */
.banner-box_link {
  position: relative;
  display: block;
  width: 80px;
  color: #444;
  text-decoration: none;
}
.banner-box_link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 6px;
  height: 9px;
  background: transparent url("/bridal/yokohama/grandoriental/common/img/icon_arrow-right-black.png") center center no-repeat;
  content: "";
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: right, -webkit-transform;
  transition-property: right, transform;
  transition-property: right, transform, -webkit-transform;
}





/* 挙式ページのワークショップ導線バナー */
section.lthwork_banner{
	padding-top:30px;
	}

section.lthwork_banner:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }

section.lthwork_banner div.lthwork_banner_left{
	width:50%;
	padding-top:30%;
	float:left;
	background-image:url(../../wedding/ceremony/img/lth_banner.jpg);
	background-size: cover;
	background-repeat:no-repeat;
	}

section.lthwork_banner div.lthwork_banner_right{
	position:relative;
	width:50%;
	padding-top:30%;
	float:left;
	background-color:#f5f5f5;
	}

section.lthwork_banner div.lthwork_banner_right_inner{
	position:absolute;
	top:23%;
	left:0;
	right:0;
	width:80%;
	margin:0 auto;
	}
div.lthwork_banner_right_inner h3{
	margin:0 auto 15px;
	font-size:2rem;
	text-align:center;
	}

div.lthwork_banner_right_inner p{
	margin:0 auto 15px;
	}

div.lthwork_banner_right_inner .lthwork_btn{
	width:300px;
	margin:0 auto;
	}

@media only screen and (max-width: 60em) {
section.lthwork_banner div.lthwork_banner_left{
	width:100%;
	padding-top:50%;
	float:none;
	background-image:url(../../wedding/ceremony/img/lth_banner.jpg);
	background-size: cover;
	background-repeat:no-repeat;
	}

section.lthwork_banner div.lthwork_banner_right{
	position:relative;
	width:100%;
	padding-top:0;
	float:none;
	background-color:#f5f5f5;
	}
section.lthwork_banner div.lthwork_banner_right_inner{
	position: static;
	width:80%;
	margin:0 auto;
	padding:5% 0;
	}
}

/* アイテムページのダウンロードバナー */
section.registration_banner{
	margin:5% 0 0 0;
	padding:3px 0;
	border-top:#a37e31 3px solid;
	border-bottom:#a37e31 3px solid;
	background-color:#f5f5f5;
	}

div.registration_banner_inner{
	margin:0;
	padding:30px 0 40px 0;
	border-top:#a37e31 2px solid;
	border-bottom:#a37e31 2px solid;
	}

/* h2 */
section.registration_banner h2{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}
section.registration_banner h2 > span{
	display: inline-block;
	margin-bottom:5px;
	font-size:28px;
	text-align:center;
	border-bottom:#a37e31 solid 1px;
	}

/* p */
section.registration_banner p.registrationtxt{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}

/* pdf_zone */
div.pdf_zone{
	width:60%;
	margin:0 auto;
	}

div.pdf_zone:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }

div.pdf_zone div.pdf_zone_left{
	float:left;
	width:45%;
	margin:0 10% 0 0;
	}

div.pdf_zone div.pdf_zone_right{
	float:left;
	width:45%;
	}

/* figure */
div.pdf_zone figure{
	position:relative;
	margin:0 auto 10px;
	border:#a37e31 2px solid;
	}

div.pdf_zone figure:hover{
	opacity:0.8;
	transition:0.6s;
	}
		

/* download */
div.pdf_download_btn{
	box-sizing:border-box;
	position:relative;
	width:100%;
	padding:10px 20px;
	border:#a37e31 1px solid;
	text-align:center;
	color:#a37e31;
	font-size:14px;
	}
div.pdf_download_btn:hover{
	box-sizing:border-box;
	background-color:#a37e31;
	color:#FFF;
	transition:0.3s;
	}

div.pdf_download_btn a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	}

@media only screen and (max-width: 48em) {
/* h2 */
section.registration_banner h2{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}
section.registration_banner h2 > span{
	display: inline-block;
	margin-bottom:5px;
	font-size:20px;
	text-align:center;
	border-bottom:#a37e31 solid 1px;
	}

/* p */
section.registration_banner p.registrationtxt{
	margin:0 auto 20px auto;
	font-size:12px;
	text-align:center;
	width:96%;
	}
	
section.registration_banner p.registrationtxt > br{
	display:none;
	}
	
div.pdf_zone{
	width:70%;
	margin:0 auto;
	}
div.pdf_zone div.pdf_zone_left{
	float:none;
	width:100%;
	margin:0 0 8% 0;
	}

div.pdf_zone div.pdf_zone_right{
	float:none;
	width:100%;
	}
div.pdf_download_btn{
	box-sizing:border-box;
	position:relative;
	width:100%;
	padding:10px 20px;
	border:#a37e31 1px solid;
	text-align:center;
	color:#ffffff;
	background-color:#a37e31;
	font-size:14px;
	}
}

.regular-holiday{
color : #0033cc !important;
text-decoration: underline;
}



/* headerバナー */

.MainvisualBanner {
  position: absolute;
  right: 15px;
  bottom: 70px;
  z-index: 500;
  display: inline-block;
  min-width: 400px;
  background-color: #b69955;
  font-size: 0;
  transition-timing-function: linear; 
  transition-duration: .2s;
  transition-property: background-color;
}
@media only screen and (max-width: 37.5em) {
  .MainvisualBanner {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    min-width: 0; 
    width: 100%;
  }
}
.MainvisualBanner:hover {
  background-color: #a37e31;
}

.MainvisualBanner-bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
}

.MainvisualBanner-header {
  display: block;
  padding: 3% 3% 3% 43%;
  width: 100%; 
  color: #fff;
  vertical-align: top;
}
@media only screen and (max-width: 37.5em) {
  .MainvisualBanner-header:after {
    position: absolute;
    top: 0;
    right: 4%;
    bottom: 0;
    display: block;
    margin: auto;
    width: 17px;
    height: 17px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.MainvisualBanner-header >a {
  position: relative; 
  display: block;
  padding-right: 10px;
  color: #fff;
  text-align: right;
  font-size: 1.1rem;
}
@media only screen and (max-width: 37.5em) {
  .MainvisualBanner-header >a {
    display: none;
  }
}
.MainvisualBanner-header >a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  margin: auto; 
  width: 6px;
  height: 6px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #fff;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.MainvisualBanner-date {
  font-size: 1.3rem;
}
@media only screen and (max-width: 37.5em) {
  .MainvisualBanner-date {
    font-size: 1.2rem;
  }
}

.MainvisualBanner-headTitle {
  font-size: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .MainvisualBanner-headTitle {
    font-size: 1.5rem;
  }
}
.TxtWhite {
	color:#FFF;
}
/* headerバナー */



/* =============== imstagram =============== */
article.footer_instagram_area{
	text-align:center;
	padding:0 0 2% 0;
	}

h2.footer_instagram_title{
	margin:0;
	padding:15px 0 0 0;
  color:#AA8E76;
  font-size:2.4rem;
	font-size:24px;
	line-height:1.2;
	letter-spacing: .2rem;
	text-align:center;
	font-weight: 700;
  font-family: "Quicksand", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	}
h2.footer_instagram_title span{
	margin:0;
  font-size:1.8rem;
	font-size:18px;
	letter-spacing: .1rem;
	text-align:center;
	}
/* txt */
p.footer_instagram_txt{
	display:inline-block;
	margin:0 0 10px 0;
  font-size:1.4rem;
	font-size:14px;
	color:#AA8E76;
	text-align:left;
	line-height:1.4;
	/*border:solid #b69458 1px;*/
	transition: all 0.3s;
	font-weight: 600;
  font-family: "Quicksand", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	}
p.footer_instagram_txt strong{
  font-size:1.8rem;
	font-size:18px;
	}
p.footer_instagram_txt a{
	display:block;
	background:url(/common/img/instagram.png) no-repeat left 10px center;
	background-size:22px 22px;
	padding:8px 10px 8px 38px;
  font-size:1.8rem;
	font-size:18px;
	color:#AA8E76;
	text-decoration:none;
	}

p.footer_instagram_txt:hover{
	opacity:0.8;
	}
p.footer_instagram_txt:hover a{
	}

/* instafeed */
ul.footer_instafeed{
	width:98%;
	margin:0 auto;
	}
ul.footer_instafeed:after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
ul.footer_instafeed li{
	float:left;
	width:11.111111111%;
	margin:0;
	padding:0;
	outline:solid 3px #FFFFFF;
	}
ul.footer_instafeed li img{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	line-height:0;
	}

/* 768px */
@media only screen and (max-width: 48em) {
ul.footer_instafeed{
	width:94%;
	margin:0 auto;
	}
ul.footer_instafeed li{
	width:33.333333%;
	}
}

/* 960px以下でコンタクト部分のインスタアイコン削除 */
@media only screen and (max-width: 60em) {
.contact_insta_icon , span.instaNote{
	display:none !important;
	}
}

/*TOPページリニューアル見出し　*/
.Renew-type {
	position: relative;
	z-index: 5;
	margin-bottom: 20px;
	padding: 0 10px;
	text-align: center;
    letter-spacing: .6rem;
	font-size: 1.9rem;
	font-family: "Quicksand";
	color: #FFF;
}

/* トップページスペシャルイベント1カラム用 */
.MainContentBlock.spEventOneColumn {
  background-color: #f5f5f5;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock.spEventOneColumn {
    margin-bottom: 1%;
  }
}
.MainContentBlock.spEventOneColumn .bgImgBlock {
  margin-bottom: 0px;
}
@media only screen and (min-width: 60.0625em) {
  .MainContentBlock.spEventOneColumn .bgImgBlock {
    margin-right: auto; 
    margin-left: auto;
    max-width: 1024px;
    width: 100%;
  }
}
@media only screen and (min-width: 60.0625em) and (max-width: 69.56522em) {
  .MainContentBlock.spEventOneColumn .bgImgBlock {
    margin-right: 4%; 
    margin-left: 4%;
    width: 92%;
  }
}
@media only screen and (max-width: 60em) {
  .MainContentBlock.spEventOneColumn .bgImgBlock {
    margin-bottom: 4%;
  }
}
.MainContentBlock.spEventOneColumn .bgImgBox {
  padding-top: 56.25%; 
  width: 100%;
}
@media only screen and (max-width: 60em) {
  .MainContentBlock.spEventOneColumn .bgImgBox {
    padding-top: 100%; 
    width: 100%;
  }
}
.MainContentBlock.spEventOneColumn .Btn {
  margin: auto; 
  width: 240px;
}
/* トップページスペシャルイベント1カラム用 */


/* パプレアフェア見学特典調整 */
div.present_txt{
	float: right;
    width: 325px;
}
@media only screen and (max-width: 48em) {
div.present_txt{
	float: right;
    width: 50%;
}
}

/* NEW NORMAL 用 */
/* =========== btn =========== */
.btn {
  position: relative;
  z-index: 1100;
  font-size: 20px;
}
.btn.is-center {
  text-align: center;
}
.btn input {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 3.7;
  cursor: pointer;
}
.btn a,
.btn span {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 220px;
  border: none;
  background-color: #AA8E76;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: 游明朝, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 ProN W3, ヒラギノ明朝 Pro W3, HiraMinProN-W3, HG明朝E, Hiragino Mincho ProN, Hiragino Mincho Pro, HGS明朝E, ヒラギノ明朝 Pro W6, ＭＳ Ｐ明朝, MS PMincho, MS 明朝, serif;
  line-height: 3.7;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
}
@media only screen and (max-width: 30em) {
  .btn a,
  .btn span {
    margin-bottom: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.btn a:hover,
.btn span:hover {
  opacity: 0.6;
}
.btn a:hover:after,
.btn span:hover:after {
  right: 12px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}


/* -----------------------------------------------
 *  	         box setting
 * ----------------------------------------------- */

/* =========== image_block =========== */
.image_block {
  position: relative;
  font-size: 0;
}
.image_block .btn {
  margin: auto;
  width: 240px;
}
.image_block .btn a {
  width: 100%;
}
@media only screen and (max-width: 48em) {
  .image_block .wrapper {
    margin: auto;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 48em) {
  .image_block {
    padding: 0;
  }
  .image_block .btn {
    margin-bottom: 5%;
width:240;
  }
  .image_block .btn a{
font-size:12px;
font-size:1.2rem;
border:solid 1px #AA8E76;
  }
  .image_block .btn a::after{
width:8px;
height:12px;
  }
}

/* =========== box-link =========== */
.box-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  background-color: transparent;
}

/* = javascript = */
.js_hover-blur {
  transition: all 0.15s linear 0s;
}
.js_hover-blur header {
  transition: all 0.15s linear 0s;
}
.js_hover-blur >img {
  transition: all 0.15s linear 0s;
}
.js_hover-blur:hover >img {
         opacity: 0;
  -ms-filter: "alpha(opacity=0)";
      filter: alpha(opacity=0);
  zoom: 1;

  -khtml-opacity: 0;
    -moz-opacity: 0;
}
.js_hover-blur:hover header {
         opacity: 1;
  -ms-filter: "alpha(opacity=100)";
      filter: alpha(opacity=100);
  zoom: 1;

  -khtml-opacity: 1;
    -moz-opacity: 1;
}
/* = image-box_bg-img = */
.image-box_bg-img {
  position: relative;
  padding-top: 33.78906%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
background-image: url(/bridal/yokohama/yokohama-geihinkan/top/img/newnormal_bg-img.jpg);
}
.image-box_bg-img:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.35);
  content: "";
  transition: border-color 0.15s linear;
}
.image-box_bg-img img {
  position: absolute;
  top: 0;
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .image-box_bg-img {
    padding-top: 50%;
    width: 100%;
  }
  .image-box_bg-img:before {
    border: none;
  }
}

/* = image-box_header = */
.image-box_header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  text-align: center;
}

/* = image-box_title = */
.image-box_title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-bottom: 5px;
  color: #fff;
  font-weight: normal;
  font-size: 44px;
  font-size: 4.4rem;
  font-family: "Quicksand";
  line-height: 1.8;
}
@media only screen and (max-width: 48em) {
  .image-box_title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/* = image-box_content = */
.image-box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .image-box_content {
    position: relative;
    height: auto;
  }
}

/* = image-box_lead-txt = */
.image-box_lead-txt {
  margin-bottom: 4%;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 48em) {
  .image-box_lead-txt {
    margin-bottom: 0;
    padding: 2%;
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* NEW NORMAL 用 */

/* TOPフォトギャラ化 */
.flexbox_img_2A {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox_img_2A img{
  width: 49.5%;
  margin-top: 1%;
}
@charset "UTF-8";
/* -----------------------------------------------
 *  	         component_neo.css
 * ----------------------------------------------- */
/* 新レイアウト用CSS */

/* HOMEの部分非表示 */
#HOME #PAGE_NAV,#HOME #CHILD_NAV{display: none;}
#HOME .FooterWeddingSpaceBlock{display: none;}
#HOME .FooterCopyrightBlock {
    margin-top: 0px !important;
    border-top: none !important;
}

/* WEDDINGのスマホナビ処理 */
/* 960px */
@media only screen and (max-width: 60em) {
/* .spNav.is_wedding .MainNav .MainNav-item.restaurant{display: none;} */
/* .spNav.is_wedding .MainNav .MainNav-item.party{display: none;} */
/* .spNav.is_wedding .MainNav .MainNav-item.restaurant{display: none;} */
.spNav.is_wedding .MainNav .ChildNav-list.wedding{display: block;}
}


/*====================footerサイトマップエリア====================*/
article.footer_sitemap{
    position: relative;
    background-color: #fff;
}

/*====================Swiperセッティング====================*/

/* ===pageNation=== */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background-color: #aa8e76;
}
/*グレー版スライド .swiper_boxに.swipe_grayが付く場合、エリア背景白で要素背景グレー */
.swiper_box.swipe_gray .swiper-pagination-bullet {
    background: #ccc;
}
.swiper_box.swipe_gray .swiper-pagination-bullet-active{
    background-color: #aa8e76;
}
/* ===pageNation=== */

.swiper_box{
    padding: 30px 0;
font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
div.swiper-wrapper{
    margin-bottom: 10px;
    align-items: stretch;
    background-color: #fff;
}

/* 汎用swipe */
div.neo_common_slide{
    background-color: #fff;
    height: auto;
}
/*グレー版スライド*/
.swiper_box.swipe_gray div.neo_common_slide{
    background-color: #eeeeee;
}
div.neo_common_slide a{
    text-decoration: none;
}
div.neo_common_slide a:visited{
    color: #000;
}
div.neo_common_slide a:hover{
    opacity: 0.8;
}
img.neo_common_image{
    display: block;
    margin: 0;
    padding: 0;
}
div.neo_common_slide_inner{
    padding: 10px 10px;
}
div.swiper_icon_box{
    margin: 0 0 10px 0;
}
span.swiper_icon{
    display: inline-block;
    width: 100px;
    margin: 0 5px 0 0;
    text-align: center;
    background-color:#aa8e76;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.2px;
    padding: 3px;
    font-family: "Quicksand";
}


/* fair用swipe */
div.neo_fair_slide{
    height: auto;
}
div.neo_fair_slide a{
    text-decoration: none;
}
div.neo_fair_slide a:visited{
    color: #000;
}
div.neo_fair_slide a:hover{
    opacity: 0.8;
}
img.neo_fair_image{
    display: block;
    margin: 0;
    padding: 0;
}
div.neo_fair_slide_inner{
    display: flex;
    background-color: #fff;
    padding: 10px 5px;
}
div.fair_slide_date{
    width: 30%;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1;
}
div.fair_slide_text{
    width: 70%;
    margin: 0;
    padding: 5px;
}

span.year{
    display: block;
    font-family: "Quicksand";
    font-size: 16px;
    font-weight: normal;
}
span.month{
    display: block;
    font-size: 40px;
    font-weight: normal;
}
span.day{
    display: block;
    font-size: 40px;
    color: #669acc;
    font-weight: normal;
}
span.day2{
    display: block;
    font-size: 40px;
    color: #fe979a;
    font-weight: normal;
}
span.day3{
    display: block;
    font-size: 40px;
    color: #666;
    font-weight: normal;
}
span.dotw{
    display: block;
    font-size: 16px;
    color: #669acc;
    font-weight: normal;
}
span.dotw2{
    display: block;
    font-size: 16px;
    color: #fe979a;
    font-weight: normal;
}
span.dotw3{
    display: block;
    font-size: 16px;
    color: #666;
    font-weight: normal;
}
div.fair_slide_text p{
    font-size: 14px;
}


/* photo用swipe */
.swiper-photo-container{
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-photo-container div.swiper-wrapper{
    margin-bottom: 0;
    align-items: stretch;
    background-color: #fff;
}


/*====================Topics出し分けセッティング====================*/
div.Page.restaurant .only_wedding{display: none;}
div.Page.wedding .only_restaurant{display: none;}


/*==========TOPページメインVのメニュー==========*/
header.Page-header-new{
    position: absolute;
    top:0; bottom:0; left:0; right:0;
    z-index: 9000;
    margin: auto;
    padding: 10px 30px;
    width: 300px;
    height: 540px;
    background-color: rgba(255,255,255,0.8);
}
/* SVG logo */
div.header-new-logo{
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
div.header-new-logo svg{
    width: 100%;
    fill:#000;
}

/* PageHeaderNav */
ul.Page-header-nav{
    list-style: none;
}
ul.Page-header-nav li{
    text-align: center;
    padding: 0;
    border-top: solid 1px #AA8E76;
}
ul.Page-header-nav li a{
    position: relative;
    display: block;
    padding: 15px 0;
    letter-spacing: .4rem;
    font-weight: 400;
    font-size: 2.4rem;
    font-family: "Quicksand";
    text-decoration: none;
}
ul.Page-header-nav li a span{
    display: block;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    font-family: 游明朝, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 ProN W3, ヒラギノ明朝 Pro W3, HiraMinProN-W3, HG明朝E, Hiragino Mincho ProN, Hiragino Mincho Pro, HGS明朝E, ヒラギノ明朝 Pro W6, ＭＳ Ｐ明朝, MS PMincho, MS 明朝, serif;
}
ul.Page-header-nav li a::after{
    position: absolute;
    top: 30px;
    right: 10px;
    content: "";
    display: block;
    background-image: url("/bridal/yokohama/grandoriental/common/img/header_nav_arrow.svg");
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    transition: all 0.3s;
}
ul.Page-header-nav li a:hover::after{
    right: 0;
}

/* 480px */
@media only screen and (max-width: 30em) {
header.Page-header-new{
    padding: 10px 30px;
    width: 270px;
    height: 480px;
}
/*logo svg*/
div.header-new-logo{
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    height: 150px;
}
/* nav */
ul.Page-header-nav li a{
    padding: 15px 0;
    font-size: 1.8rem;
}
}



/*==========主要コンテンツメインV==========*/

div.Mainvisual-neo{

}

header.Page-header-neo{
    position: absolute;
    top: 0;bottom: 0;left: 0;right: 0;
    display: flex;
    align-items: center;
    margin: auto;
    width: 100%;
}
header.Page-header-neo div.header-neo-inner{
    text-align: center;
    width: 100%;
    color: #fff;
}
/*item1 タイトル英字*/
header.Page-header-neo h1.header-neo-item1{
    display: inline-block;
    position: relative;
    font-size: 58px;
    font-family: "Quicksand";
    font-weight: lighter;
    letter-spacing: 5px;
    line-height: 1.2;
}
header.Page-header-neo h1.header-neo-item1::after{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    display: block;
    height: 2px;
    background-color: #AA8E76;
}
/*item2 タイトル補足*/
header.Page-header-neo h2.header-neo-item2{
    display: block;
    width: 100%;
}
header.Page-header-neo h2.header-neo-item2 span{
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
}
/*item3 タイトル補足*/
header.Page-header-neo span.header-neo-item3{
    display: block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 30px;
}
/*item4 囲み強調*/
span.header-neo-item4{
    display: inline-block;
    padding: 0px 15px;
    border: solid 2px #fff;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-family: "Quicksand";
}
/*btn*/
a.Btn.header-neo-btn{
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: auto;
    width: 240px;
    z-index: 9000;
}
.btn_color{
	background-color: #AA8E76 !important;
	color: #fff !important;
}
	
/* 480px */
@media only screen and (max-width: 30em) {
header.Page-header-neo h1.header-neo-item1{
    font-size: 38px;
    letter-spacing: 5px;
}
header.Page-header-neo h1.header-neo-item1::after{
    height: 1px;
}
header.Page-header-neo h2.header-neo-item2{
    display:flex;
    justify-content: center;
    width: 100%;
}
header.Page-header-neo h2.header-neo-item2 span{
    font-size: 16px;
    display: inline-block;
}
a.Btn.header-neo-btn{
    bottom: 30px;
}
}


/*==========コンテンツブロックneo==========*/

.ContentBlock-neo1{

}

/* 上段写真スライド */
.ContentBlock-neo2{
    margin: 0 0 50px 0;
}

.ContentBlock-neo2-inner{
    width: 50%;
    margin: 0 auto;
    padding: 0 20px 20px;
    background-color: #f5f5f5;
}

/* 960px */
@media only screen and (max-width: 60em) {
.ContentBlock-neo2-inner{
    width: 66.66%;
}
}
/* 480px */
@media only screen and (max-width: 30em) {
.ContentBlock-neo2{
    padding: 0 2%;
}
.ContentBlock-neo2-inner{
    width: 100%;
}
}


/*==========フッターコンタクトneo==========*/

div.bottomContact-neo{
    position: relative;
    padding-bottom: 20px;
    border-top: solid 10px #b5b5b5;
}
div.bottomContact-neo::before{
    position: absolute;
    top: -11px;
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #fff;
}

div.bottomContact-neo-inner{
    padding: 15px 0 0 0;
}

.BottomContactBox-subTitle-neo{
    text-align: center;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.BottomContactBox-telNumber-neo{
    font-size: 35px !important;
}
.BottomContactBox-telNumber-neo span{
    font-size: 18px;
}

/* インスタリスト */
div.insta-list-box{
    text-align: center;
}
ul.insta-list{
    display: inline-block;
    background: url(/bridal/yokohama/grandoriental/common/img/instagram.png) no-repeat left 10px center;
    background-size: 22px 22px;
    padding: 8px 10px 8px 38px;
    font-size: 1.6rem;
    font-size: 16px;
    color: #AA8E76;
    text-decoration: none;
    text-align: center;
}
ul.insta-list li{
    display: inline-block;
    border-right: solid 1px #AA8E76;
    padding-right: 5px;
    font-size: 16px;
    line-height: 1;
    color: #AA8E76;
    font-weight: 600;
    font-family: "Quicksand", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
ul.insta-list li:last-child{
    border-right: none;
}
ul.insta-list li a{
    color: #AA8E76;
    text-decoration: none;
}

/* サイトマップ */
section.footer-sitemap{
    display: flex;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
div.footer-sitemap-1{
    flex-grow: 1;
    margin-right: 10px;
}
div.footer-sitemap-2{
    flex-grow: 2;
    margin-right: 10px;
}
div.footer-sitemap-3{
    flex-grow: 1;
    margin-right: 10px;
}
div.footer-sitemap-4{
    flex-grow: 1;
}

h3.footer-sitemap-header{
    border-bottom: solid 1px #AA8E76;
    margin: 0 0 10px 0;
}
h3.footer-sitemap-header a{
    color: #AA8E76;
    font-size: 14px;
}
ul.footer-sitemap-list{
    display: inline-block;
    margin: 0 10px 0 0;
}
/* 768px */
@media only screen and (max-width: 48em) {
section.footer-sitemap{
    display: block;
}
div.footer-sitemap-1{
    margin-right: 0;
    margin-bottom: 10px;
}
div.footer-sitemap-2{
    margin-right: 0;
    margin-bottom: 10px;
}
div.footer-sitemap-3{
    margin-right: 0;
    margin-bottom: 10px;
}
div.footer-sitemap-4{
}
}




/* ============================■■共通パーツ■■============================ */
/*btn*/
.Btn.neoBtn {
    margin: 20px auto;
    width: 240px;
}
/*btn 左寄席*/
.Btn.neoBtn2{
    margin: 20px 0;
    width: 240px;
}

/*btn Lボタン*/
.Btn.neoBtn_L {
    margin: 20px auto;
    padding: 10px 0;
    width: 480px;
}
/* 480px */
@media only screen and (max-width: 30em) {
.Btn.neoBtn_L{
width: 90%;
}
}

/* Btnが2つ並ぶ場合 */
.BtnGroup.BtnGroup-neo{
    text-align: center;
}
.BtnGroup.BtnGroup-neo .Btn{
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 2%;
    margin-left: 5px;
    width: 240px;
}

/* === heading Text === */
.heading-neo1{
    letter-spacing: .4rem;
    font-weight: 400 !important;
    font-size: 2.8rem;
    font-family: "Quicksand";
    text-align: center;
}
.heading-neo2{
    font-size: 2.8rem;
    text-align: center;
	line-height: 1.5;
}
.heading-neo2::after{
  	display: block; 
  	width: 100%;
  	height: 1px;
  	background-color: #AA8E76;
  	content: "";
}
.heading-neo2 span{
  	font-size: 1.6rem;
    text-align: center;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

/* === Leading Text === */
.neo_lead_text1{
    margin:10px 0;
    line-height: 1.4;
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
}
.neo_lead_text1 span{
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.4;
}
/* リード文_小*/
.neo_lead_text2{
    margin:10px auto;
    font-weight: normal;
    font-size: 1.6rem;
    text-align: center;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
/* 600px */
@media only screen and (max-width: 37.5em) {
.neo_lead_text1{
    font-size: 2rem;
    width: 98%;
    margin: 10px auto;
    }
.neo_lead_text2{
    font-size: 1.3rem;
    width: 98%;
    margin: 5px auto;
    }
}
/* 480px */
@media only screen and (max-width: 30em) {
.neo_lead_text1{font-size: 1.8rem;}
.neo_lead_text2{font-size: 1.2rem;}
}

/* === Common Text === */
.neo_common_text1{
    margin: 10px 0;
    font-size: 1.4rem;
    text-align: center;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
/*明朝*/
.neo_common_text2{
    margin: 10px 0;
    font-size: 1.4rem;
    text-align: center;
}
/* 480px */
@media only screen and (max-width: 30em) {
.neo_common_text1{font-size: 1.2rem;}
.neo_common_text2{font-size: 1.2rem;}
}



/* === その他情報フォーマット === */
/* イベント情報dl */
dl.neo_dl1{
    width: 100%;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
dl.neo_dl1::after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
dl.neo_dl1 dt{
    float: left;
    width: 150px;
    margin: 0 0 15px 0;
    padding: 2px;
    font-size: 14px;
    color: #a17b30;
    font-weight: bold;
}
dl.neo_dl1 dd{
    float: left;
    width: calc(100% - 150px);
    margin: 0 0 15px 0;
    padding: 2px;
    font-size: 14px;
}
/* 768px */
@media only screen and (max-width: 48em) {
dl.neo_dl1 dt{
    float: none;
    width: 100%;
    margin: 0 0 0 0;
    padding: 2px;
    font-size: 14px;
}
dl.neo_dl1 dd{
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 2px;
    font-size: 12px;
}
}

/* 宴会メニュータブ */
.selectMenuBlock-tab li {
	border:1px solid #AA8E76;
}
.selectMenuBlock-tab li + li{
	border-top:1px solid #AA8E76;
	border-right:1px solid #AA8E76;
	border-bottom:1px solid #AA8E76;
	border-left:0;
}
.menu_arrow{
  	position: relative;
	display: inline-block;
}
.menu_arrow::before{
	content: '';
	width: 10px;
	height: 10px;
  	border-top: solid 1px;
  	border-right: solid 1px;
	transform: rotate(135deg);
  	position: absolute;
  	top: 12px;
  	left: 20px;
	display: block;
}

/* 960px */
@media only screen and (max-width: 60em) {
.menu_arrow::before{
	display: none;
}
}

/* 宴会情報dl */
dl.neo_dl2{
    width: 100%;
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	border-top:1px solid #969696;
	border-bottom:1px solid #969696;
}
dl.neo_dl2::after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}
dl.neo_dl2 dt{
    float: left;
    width: 110px;
    padding: 10px;
    font-size: 14px;
}
dl.neo_dl2 dt:first-child{
	border-bottom:1px solid #969696;
}
dl.neo_dl2 dd{
    float: left;
    width: calc(100% - 110px);
    padding: 10px;
    font-size: 14px;
}
dl.neo_dl2 dt:first-child + dd{
	border-bottom:1px solid #969696;
}


.list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #969696;
  border-bottom: 1px solid #969696;
}
.list dt, .list dd {
  box-sizing: border-box;
}
.list dt {
  display: flex;
  align-items: center;
  width: 30%;
  padding: 20px;
  border-bottom: 1px solid #969696;
}
.list dt:last-of-type,
.list dd:last-of-type {
  border: none;
}
.list dd {
  display: flex;
  align-items: center;
  width: 70%;
  margin-left: 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #969696;
}


/* =====================flexBox===================== */

/*flex_center 1段 中央 */
.flex_center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex_center > div.flex_center_inner{
	width: 100%;
}

/*flex_1A 1段 50→100 */
.flex_1A{
	display: flex;
	justify-content: center;
}
.flex_1A div:first-child{
	width: 49%;
}
@media only screen and (max-width: 30em) {
.flex_1A{
	display: block;
}
.flex_1A div:first-child{
	width: 100%;
	margin: 0 0 30px 0;
}
}

/*flex_2A 2段 48:48 */
.flex_2A{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2A div, .flex_2A section{
    width: 48%;
}

@media only screen and (max-width: 48em) {
.flex_2A{
}
.flex_2A div, .flex_2A section{
	width: 100%;
	margin: 0 0 0 0;
}
}

/*flex_2B 2段 67:30*/
.flex_2B{
	display: flex;
	justify-content: space-between;
}
.flex_2B .flex_2B_innerA{
	width: 67%;
}
.flex_2B .flex_2B_innerB{
	width: 30%;
}
@media only screen and (max-width: 48em) {
.flex_2B{
	display: block;
}
.flex_2B .flex_2B_innerA{
	width: 100%;
	margin: 0 0 10px 0;
}
.flex_2B .flex_2B_innerB{
	width: 100%;
}
}

/*flex_2C 2段 55:45 */
.flex_2C{
	display: flex;
}
.flex_2C div:first-child{
	width: 45%;
}
.flex_2C div:nth-child(2){
	width: 55%;
}
@media only screen and (max-width: 30em) {
.flex_2C{
	display: block;
}
.flex_2C div:first-child{
	width: 100%;
}
.flex_2C div:nth-child(2){
	width: 100%;
}
}

/*flex_2D 2段 50:50 中央寄せ */
.flex_2D{
	display: flex;
	align-items: center;
	justify-content: center;	
}
.flex_2D div.flex_2D_inner, .flex_2D section.flex_2D_inner{
	width: 50%;
}

@media only screen and (max-width: 30em) {
.flex_2D{
	display: block;
}
.flex_2D div.flex_2D_inner, .flex_2D section.flex_2D_inner{
	width: 100%;
}
}

/*flex_2E 2段 48:48→100 */
.flex_2E{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2E div.flex_2E_inner, .flex_2E section.flex_2E_inner{
	width: 48%;
}
@media only screen and (max-width: 30em) {
.flex_2E{
	display: block;
}
.flex_2E div.flex_2E_inner, .flex_2E section.flex_2E_inner{
	width: 100%;
	margin: 0 0 20px 0;
}
}

/*flex_2E 2段 48:48 */
.flex_2F{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.flex_2F .flex_2F_inner{
	width: 48%;
	margin: 3% 1% 0 1%;
}  


/*flex_3A 3段 32%左右均等配置*/
.flex_3A{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.flex_3A > div, .flex_3A > li , .flex_3A > section{
	width: 31%;
	margin: 0 0 10px 0;
}

@media only screen and (max-width: 48em) {
.flex_3A{
	display: block;
}
.flex_3A > div, .flex_3A > li , .flex_3A > section{
	width: 100%;
	margin: 0 0 10px 0;
}
}


/*flex_3B 3段 32% 左寄せ配置右空き ソート対策用*/
.flex_3B{
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.flex_3B > div, .flex_3B > li , .flex_3B > section{
	width: 31%;
	margin: 0 2% 10px 0;
}

@media only screen and (max-width: 48em) {
.flex_3B{
	display: block;
}
.flex_3B > div, .flex_3B > li , .flex_3B > section{
	width: 100%;
	margin: 0 0 10px 0;
}
}

/*flex_3C 3段 32%左右均等配置 変動なし*/
.flex_3C{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.flex_3C > div, .flex_3C > li , .flex_3C > section{
	width: 31%;
	margin: 0 0 0 0;
}

@media only screen and (max-width: 48em) {
}



/* ============================■■共通CLASS■■============================ */
/* clearfix */
.clearfix::after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}

/* ===========bgColor=========== */
.bg_color1{background-color: #f5f5f5 !important;}
.bg_color2{background-color: #fff !important;}
.bg_color3{background-color: #AA8E76 !important;}
.bg_color4{background-color: #f7e7e7 !important;}
.bg_color5{background-color: #f0efe0 !important;}
.bg_color6{background-color: #d9ecdf !important;}

/* =========== flexSetting =========== */
/*flex-direction*/
.row-reverse{flex-direction: row-reverse !important;}
.column{flex-direction: column !important;}
.column-reverse{flex-direction: column-reverse !important;}

/* =========== 出現|削除 =========== */
.app768,.app480{display: none!important;}
/* 768px */
@media only screen and (max-width: 48em) {
.del768{display:none!important;}
.app768{display:block!important;}
}
/* 480px */
@media only screen and (max-width: 30em) {
.del480{display:none!important;}
.app480{display:block!important;}
}

/* =========== color =========== */
.white{ color:white !important;}
.black{ color:black !important;}
.brown1{color: #a17b30!important;}
.brown2{color: #AA8E76!important}
.blue{color: #00A3D9!important;}
.red{color: #B20000!important;}
.orange{color: #FF8000!important;}

/* =========== fontweight =========== */
.bold{font-weight: bold!important;}
.normal{font-weight: normal!important}

/* =========== limit =========== */
.limited{width:96%; margin:0 auto;}

.limit1600{max-width:1600px; margin:0 auto;}
.limit1400{max-width:1400px; margin:0 auto;}
.limit1200{max-width:1200px; margin:0 auto;}
.limit1050{max-width:1050px; margin:0 auto;}
.limit1024{max-width:1024px; margin:0 auto;}
.limit960{max-width:960px; margin:0 auto;}
.limit768{max-width:768px; margin:0 auto;}
.limit480{max-width:480px; margin:0 auto;}
.limit360{max-width:360px; margin:0 auto;}
.limit200{max-width:200px; margin:0 auto;}
.limit150{max-width:150px; margin:0 auto;}

/* ========== margin ========== */
.m0{ margin:0 !important; }

/* ========== marginBottom ========== */
.mb0{ margin-bottom:0 !important; }
.mb5{ margin-bottom:5px !important; }
.mb10{ margin-bottom:10px !important; }
.mb20{ margin-bottom:20px !important; }
.mb30{ margin-bottom:30px !important; }
.mb40{ margin-bottom:40px !important; }
.mb50{ margin-bottom:50px !important; }
.mb60{ margin-bottom:60px !important; }
.mb70{ margin-bottom:70px !important; }
.mb80{ margin-bottom:80px !important; }
.mb90{ margin-bottom:90px !important; }
.mb100{ margin-bottom:100px !important; }

/* ========== marginBottomParcent ========== */
.mb0p{ margin-bottom:0 !important; }
.mb01p{ margin-bottom:1% !important; }
.mb02p{ margin-bottom:2% !important; }
.mb03p{ margin-bottom:3% !important; }
.mb05p{ margin-bottom:5% !important; }
.mb10p{ margin-bottom:10% !important; }
.mb15p{ margin-bottom:15% !important; }
.mb20p{ margin-bottom:20% !important; }
.mb30p{ margin-bottom:30% !important; }
.mb40p{ margin-bottom:40% !important; }
.mb50p{ margin-bottom:50% !important; }
.mb60p{ margin-bottom:60% !important; }
.mb70p{ margin-bottom:70% !important; }
.mb80p{ margin-bottom:80% !important; }
.mb90p{ margin-bottom:90% !important; }
.mb100p{ margin-bottom:100% !important; }

/* ========== padding ========== */
.pd0{ padding:0 !important; }
.pd5{ padding:5px !important; }
.pd10{ padding:10px !important; }
.pd15{ padding:15px !important; }
.pd20{ padding:20px !important; }
.pd25{ padding:25px !important; }
.pd30{ padding:30px !important; }
.pd35{ padding:35px !important; }
.pd40{ padding:40px !important; }
.pd45{ padding:45px !important; }
.pd50{ padding:50px !important; }
.pd55{ padding:55px !important; }

/* ========== paddingTop&BottomParcent ========== */
.pdtb0p{ padding-top:0%!important; padding-bottom:0%!important; }
.pdtb01p{padding-top:1%!important; padding-bottom:1%!important;}
.pdtb02p{padding-top:2%!important; padding-bottom:2%!important;}
.pdtb03p{padding-top:3%!important; padding-bottom:3%!important;}
.pdtb05p{padding-top:5%!important; padding-bottom:5%!important;}
.pdtb10p{padding-top:10%!important; padding-bottom:10%!important;}
.pdtb15p{padding-top:15%!important; padding-bottom:15%!important;}
.pdtb20p{padding-top:20%!important; padding-bottom:20%!important;}
.pdtb30p{padding-top:30%!important; padding-bottom:30%!important;}
.pdtb40p{padding-top:40%!important; padding-bottom:40%!important;}
.pdtb50p{padding-top:50%!important; padding-bottom:50%!important;}
.pdtb60p{padding-top:60%!important; padding-bottom:60%!important;}
.pdtb70p{padding-top:70%!important; padding-bottom:70%!important;}
.pdtb80p{padding-top:80%!important; padding-bottom:80%!important;}
.pdtb90p{padding-top:90%!important; padding-bottom:90%!important;}
.pdtb100p{padding-top:100%!important; padding-bottom:100%!important;}

/* ========== paddingTop&BottomParcent ========== */
.pdtb0{ padding-top:0px!important; padding-bottom:0px!important; }
.pdtb0x{padding-top:1px!important; padding-bottom:1px!important;}
.pdtb02{padding-top:2px!important; padding-bottom:2px!important;}
.pdtb03{padding-top:3px!important; padding-bottom:3px!important;}
.pdtb05{padding-top:5px!important; padding-bottom:5px!important;}
.pdtb10{padding-top:10px!important; padding-bottom:10px!important;}
.pdtb15{padding-top:15px!important; padding-bottom:15px!important;}
.pdtb20{padding-top:20px!important; padding-bottom:20px!important;}
.pdtb30{padding-top:30px!important; padding-bottom:30px!important;}
.pdtb40{padding-top:40px!important; padding-bottom:40px!important;}
.pdtb50{padding-top:50px!important; padding-bottom:50px!important;}
.pdtb60{padding-top:60px!important; padding-bottom:60px!important;}
.pdtb70{padding-top:70px!important; padding-bottom:70px!important;}
.pdtb80{padding-top:80px!important; padding-bottom:80px!important;}
.pdtb90{padding-top:90px!important; padding-bottom:90px!important;}
.pdtb100{padding-top:100px!important; padding-bottom:100px!important;}

/* ========== padding setting ========== */
.pdset_A{padding:30px !important;}
/* 480px */
@media only screen and (max-width: 30em) {
.pdset_A{padding:10px !important;}
}

/* ========== txt-align ========== */
.txt_left{text-align:left !important;}
.txt_center{text-align:center !important;}
.txt_right{text-align:right !important;}
.txt_just{text-align:justify !important;}

/* ========== width ========== */
.wd100{width: 100%!important;}
.wd33{width: 33.33%!important;}

/* =========== border =========== */
.boder1{ border:1px solid #AA8E76 !important;}
.boder2{ border:1px solid #a98f76 !important;}

/* ============================■■共通CLASS■■============================ */

/* ●↑汎用スタイル */



/* ======================parts====================== */

/* 1400px */
@media only screen and (max-width: 87.5em) {
}
/* 1200px */
@media only screen and (max-width: 75em) {
}
/* 1024px */
@media only screen and (max-width: 64em) {
}
/* 960px */
@media only screen and (max-width: 60em) {
}
/* 768px */
@media only screen and (max-width: 48em) {
}
/* 720px */
@media only screen and (max-width: 45em) {
}
/* 600px */
@media only screen and (max-width: 37.5em) {
}
/* 480px */
@media only screen and (max-width: 30em) {
}
/* 320px */
@media only screen and (max-width: 20em) {
}
@charset "UTF-8";
/* ========================================
/= 条件分岐 START
*/
.Page.brand .MainNav-item.brand:before {
  width: 30px;
  opacity: 1;
}

.Page.brand .MainNav-item.brand a:before {
  width: 30px; 
  opacity: 1;
}

.Page.lifetime .MainNav-item.lifetime:before, .Page.lunch .MainNav-item.lifetime:before, .Page.dinner .MainNav-item.lifetime:before, .Page.night .MainNav-item.lifetime:before, .Page.bar .MainNav-item.lifetime:before, .Page.concierge .MainNav-item.lifetime:before {
  width: 30px;
  opacity: 1;
}

.Page.lifetime .MainNav-item.lifetime a:before, .Page.lunch .MainNav-item.lifetime a:before, .Page.dinner .MainNav-item.lifetime a:before, .Page.night .MainNav-item.lifetime a:before, .Page.bar .MainNav-item.lifetime a:before, .Page.concierge .MainNav-item.lifetime a:before {
  width: 30px; 
  opacity: 1;
}

.Page.restaurant .MainNav-item.restaurant:before, .Page.lunch .MainNav-item.restaurant:before, .Page.dinner .MainNav-item.restaurant:before, .Page.night .MainNav-item.restaurant:before, .Page.bar .MainNav-item.restaurant:before, .Page.concierge .MainNav-item.restaurant:before {
  width: 30px;
  opacity: 1;
}

.Page.restaurant .MainNav-item.restaurant a:before, .Page.lunch .MainNav-item.restaurant a:before, .Page.dinner .MainNav-item.restaurant a:before, .Page.night .MainNav-item.restaurant a:before, .Page.bar .MainNav-item.restaurant a:before, .Page.concierge .MainNav-item.restaurant a:before {
  width: 30px; 
  opacity: 1;
}

.Page.wedding .MainNav-item.wedding:before, .Page.gallery .MainNav-item.wedding:before,  .Page.topics .MainNav-item.wedding:before, .Page.report .MainNav-item.wedding:before, .Page.partyspace .MainNav-item.wedding:before, .Page.ceremony .MainNav-item.wedding:before, .Page.cuisine .MainNav-item.wedding:before, .Page.item .MainNav-item.wedding:before, .Page.fair .MainNav-item.wedding:before, .Page.special .MainNav-item.wedding:before, .Page.plan .MainNav-item.wedding:before, .Page.kids .MainNav-item.wedding:before {
  width: 30px;
  opacity: 1;
}

.Page.wedding .MainNav-item.wedding a:before, .Page.gallery .MainNav-item.wedding a:before, .Page.topics .MainNav-item.wedding a:before, .Page.report .MainNav-item.wedding a:before, .Page.partyspace .MainNav-item.wedding a:before, .Page.ceremony .MainNav-item.wedding a:before, .Page.cuisine .MainNav-item.wedding a:before, .Page.item .MainNav-item.wedding a:before, .Page.fair .MainNav-item.wedding a:before, .Page.special .MainNav-item.wedding a:before, .Page.plan .MainNav-item.wedding a:before, .Page.kids .MainNav-item.wedding a:before {
  width: 30px; 
  opacity: 1;
}

.Page.party .MainNav-item.party:before {
  width: 30px;
  opacity: 1;
}

.Page.party .MainNav-item.party a:before {
  width: 30px; 
  opacity: 1;
}

.Page.lifetime .MainNav-item.lifetime:before {
  width: 30px;
  opacity: 1;
}

.Page.lifetime .MainNav-item.lifetime a:before {
  width: 30px; 
  opacity: 1;
}

.Page.event .MainNav-item.event:before {
  width: 30px;
  opacity: 1;
}

.Page.event .MainNav-item.event a:before {
  width: 30px; 
  opacity: 1;
}

.Page.access .MainNav-item.access:before {
  width: 30px;
  opacity: 1;
}

.Page.access .MainNav-item.access a:before {
  width: 30px; 
  opacity: 1;
}

.Page.lunch .MainNav-item.lunch:before {
  width: 30px;
  opacity: 1;
}

.Page.lunch .MainNav-item.lunch a:before {
  width: 30px; 
  opacity: 1;
}

.Page.night .MainNav-item.night:before {
  width: 30px;
  opacity: 1;
}

.Page.night .MainNav-item.night a:before {
  width: 30px; 
  opacity: 1;
}

.Page.bar .MainNav-item.bar:before {
  width: 30px;
  opacity: 1;
}

.Page.bar .MainNav-item.bar a:before {
  width: 30px; 
  opacity: 1;
}

.Page.lunch .ChildNav-item.lunch a {
  color: #a37e31;
}

.Page.night .ChildNav-item.night a {
  color: #a37e31;
}

.Page.bar .ChildNav-item.bar a {
  color: #a37e31;
}

.Page.dinner .ChildNav-item.dinner a {
  color: #a37e31;
}

.Page.gallery .ChildNav-item.gallery a {
  color: #a37e31;
}

.Page.topics .ChildNav-item.topics a {
  color: #a37e31;
}

.Page.report .ChildNav-item.report a {
  color: #a37e31;
}

.Page.partyspace .ChildNav-item.partyspace a {
  color: #a37e31;
}

.Page.ceremony .ChildNav-item.ceremony a {
  color: #a37e31;
}

.Page.cuisine .ChildNav-item.cuisine a {
  color: #a37e31;
}

.Page.item .ChildNav-item.item a {
  color: #a37e31;
}

.Page.fair .ChildNav-item.fair a, .Page.special .ChildNav-item.fair a {
  color: #a37e31;
}

.Page.plan .ChildNav-item.plan a {
  color: #a37e31;
}

.Page.kids .ChildNav-item.kids a {
  color: #a37e31;
}

.Page.party .ChildNav-item.party a {
  color: #a37e31;
}

.Page.event .ChildNav-item.event a {
  color: #a37e31;
}
.Page.lifetime .Page-glbHeader.type-a .Page-nav .MainNav, .Page.brand .Page-glbHeader.type-a .Page-nav .MainNav, .Page.restaurant .Page-glbHeader.type-a .Page-nav .MainNav, .Page.lunch .Page-glbHeader.type-a .Page-nav .MainNav, .Page.dinner .Page-glbHeader.type-a .Page-nav .MainNav, .Page.night .Page-glbHeader.type-a .Page-nav .MainNav, .Page.bar .Page-glbHeader.type-a .Page-nav .MainNav, .Page.concierge .Page-glbHeader.type-a .Page-nav .MainNav, .Page.wedding .Page-glbHeader.type-a .Page-nav .MainNav, .Page.gallery .Page-glbHeader.type-a .Page-nav .MainNav, .Page.topics .Page-glbHeader.type-a .Page-nav .MainNav, .Page.report .Page-glbHeader.type-a .Page-nav .MainNav, .Page.partyspace .Page-glbHeader.type-a .Page-nav .MainNav, .Page.ceremony .Page-glbHeader.type-a .Page-nav .MainNav, .Page.cuisine .Page-glbHeader.type-a .Page-nav .MainNav, .Page.item .Page-glbHeader.type-a .Page-nav .MainNav, .Page.fair .Page-glbHeader.type-a .Page-nav .MainNav, .Page.special .Page-glbHeader.type-a .Page-nav .MainNav, .Page.plan .Page-glbHeader.type-a .Page-nav .MainNav,  .Page.kids .Page-glbHeader.type-a .Page-nav .MainNav, .Page.party .Page-glbHeader.type-a .Page-nav .MainNav, .Page.access .Page-glbHeader.type-a .Page-nav .MainNav, .Page.newsIndex .Page-glbHeader.type-a .Page-nav .MainNav, .Page.newsDetail .Page-glbHeader.type-a .Page-nav .MainNav, .Page.document .Page-glbHeader.type-a .Page-nav .MainNav, .Page.guest .Page-glbHeader.type-a .Page-nav .MainNav {
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.Page.lifetime .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.brand .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.restaurant .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.lunch .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.dinner .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.night .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.bar .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.concierge .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.wedding .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.gallery .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.topics .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.report .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.partyspace .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.ceremony .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.cuisine .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.item .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.fair .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.special .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.plan .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.kids .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.party .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.kids .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.access .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.newsIndex .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.newsDetail .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.document .Page-glbHeader.type-a .Page-nav .MainNav-item a, .Page.guest .Page-glbHeader.type-a .Page-nav .MainNav-item a {
  color: #fff;
}
.Page.lifetime .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.brand .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.restaurant .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.lunch .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.dinner .Page-glbHeader.type-a .Page-nav .MainNav-item a:before,  .Page.night .Page-glbHeader.type-a .Page-nav .MainNav-item a:before,  .Page.bar .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.concierge .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.wedding .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.gallery .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.topics .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.report .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.partyspace .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.ceremony .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.cuisine .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.item .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.fair .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.special .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.plan .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.kids .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.party .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.access .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.newsIndex .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.newsDetail .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.document .Page-glbHeader.type-a .Page-nav .MainNav-item a:before, .Page.guest .Page-glbHeader.type-a .Page-nav .MainNav-item a:before {
  background-color: #fff;
}

.Page.lifetime .Page-glbHeader.type-b .Page-nav .MainNav, .Page.brand .Page-glbHeader.type-b .Page-nav .MainNav, .Page.restaurant .Page-glbHeader.type-b .Page-nav .MainNav, .Page.lunch .Page-glbHeader.type-b .Page-nav .MainNav, .Page.dinner .Page-glbHeader.type-b .Page-nav .MainNav, .Page.night .Page-glbHeader.type-b .Page-nav .MainNav, .Page.bar .Page-glbHeader.type-b .Page-nav .MainNav, .Page.concierge .Page-glbHeader.type-b .Page-nav .MainNav, .Page.wedding .Page-glbHeader.type-b .Page-nav .MainNav, .Page.gallery .Page-glbHeader.type-b .Page-nav .MainNav, .Page.topics .Page-glbHeader.type-b .Page-nav .MainNav, .Page.report .Page-glbHeader.type-b .Page-nav .MainNav, .Page.partyspace .Page-glbHeader.type-b .Page-nav .MainNav, .Page.ceremony .Page-glbHeader.type-b .Page-nav .MainNav, .Page.cuisine .Page-glbHeader.type-b .Page-nav .MainNav, .Page.item .Page-glbHeader.type-b .Page-nav .MainNav, .Page.fair .Page-glbHeader.type-b .Page-nav .MainNav, .Page.special .Page-glbHeader.type-b .Page-nav .MainNav, .Page.plan .Page-glbHeader.type-b .Page-nav .MainNav, .Page.kids .Page-glbHeader.type-b .Page-nav .MainNav, .Page.party .Page-glbHeader.type-b .Page-nav .MainNav, .Page.access .Page-glbHeader.type-b .Page-nav .MainNav, .Page.newsIndex .Page-glbHeader.type-b .Page-nav .MainNav, .Page.newsDetail .Page-glbHeader.type-b .Page-nav .MainNav, .Page.document .Page-glbHeader.type-b .Page-nav .MainNav, .Page.guest .Page-glbHeader.type-b .Page-nav .MainNav {
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.Page.lifetime .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.brand .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.restaurant .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.lunch .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.dinner .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.night .Page-glbHeader.type-b .MainNav-item a:before, .Page.bar .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.concierge .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.wedding .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.gallery .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.topics .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.report .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.partyspace .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.ceremony .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.cuisine .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.item .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.fair .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.special .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.plan .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.kids .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.party .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.access .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.newsIndex .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.newsDetail .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.document .Page-glbHeader.type-b .Page-nav .MainNav-item a:before, .Page.guest .Page-glbHeader.type-b .Page-nav .MainNav-item a:before {
  background-color: #a37e31;
}

.Page.lifetime .Page-nav, .Page.brand .Page-nav, .Page.restaurant .Page-nav, .Page.lunch .Page-nav, .Page.dinner  .Page-nav, .Page.night .Page-nav, .Page.bar .Page-nav, .Page.concierge .Page-nav, .Page.wedding .Page-nav, .Page.gallery .Page-nav, .Page.topics .Page-nav, .Page.report .Page-nav, .Page.partyspace .Page-nav, .Page.ceremony .Page-nav, .Page.cuisine .Page-nav, .Page.item .Page-nav, .Page.fair .Page-nav, .Page.special .Page-nav, .Page.plan .Page-nav, .Page.kids .Page-nav, .Page.party .Page-nav, .Page.access .Page-nav, .Page.newsIndex .Page-nav, .Page.newsDetail .Page-nav, .Page.document .Page-nav, .Page.guest .Page-nav {
  /* TOP以外では、メインナビを上部につける */
  top: 74px;
  bottom: auto;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
@media only screen and (max-width: 60em) {
  .Page.lifetime .Page-nav, .Page.brand .Page-nav, .Page.restaurant .Page-nav, .Page.lunch .Page-nav, .Page.dinner .Page-nav, .Page.night .Page-nav, .Page.bar .Page-nav, .Page.concierge .Page-nav, .Page.wedding .Page-nav, .Page.gallery .Page-nav, .Page.topics .Page-nav, .Page.report .Page-nav, .Page.partyspace .Page-nav, .Page.ceremony .Page-nav, .Page.cuisine .Page-nav, .Page.item .Page-nav, .Page.fair .Page-nav, .Page.special .Page-nav, .Page.plan .Page-nav, .Page.kids .Page-nav, .Page.party .Page-nav, .Page.access .Page-nav, .Page.newsIndex .Page-nav, .Page.newsDetail .Page-nav, .Page.document .Page-nav, .Page.guest .Page-nav {
    top: auto;
  }
}
.Page.lifetime .Page-nav .MainNav, .Page.brand .Page-nav .MainNav, .Page.restaurant .Page-nav .MainNav, .Page.lunch .Page-nav .MainNav, .Page.dinner .Page-nav .MainNav, .Page.night .Page-nav .MainNav, .Page.bar .Page-nav .MainNav, .Page.concierge .Page-nav .MainNav, .Page.wedding .Page-nav .MainNav, .Page.gallery .Page-nav .MainNav, .Page.topics .Page-nav .MainNav, .Page.report .Page-nav .MainNav, .Page.partyspace .Page-nav .MainNav, .Page.ceremony .Page-nav .MainNav, .Page.cuisine .Page-nav .MainNav, .Page.item .Page-nav .MainNav, .Page.fair .Page-nav .MainNav, .Page.special .Page-nav .MainNav, .Page.plan .Page-nav .MainNav, .Page.kids .Page-nav .MainNav, .Page.party .Page-nav .MainNav, .Page.access .Page-nav .MainNav, .Page.newsIndex .Page-nav .MainNav, .Page.newsDetail .Page-nav .MainNav, .Page.document .Page-nav .MainNav, .Page.guest .Page-nav .MainNav {
  background-color: transparent;
}
@media only screen and (max-width: 60em) {
  .Page.lifetime .Page.brand .Page-nav .MainNav, .Page.restaurant .Page-nav .MainNav, .Page.lunch .Page-nav .MainNav, .Page.dinner .Page-nav .MainNav, .Page.night .MainNav, .Page.bar .Page-nav .MainNav, .Page.concierge .Page-nav .MainNav, .Page.wedding .Page-nav .MainNav, .Page.gallery .Page-nav .MainNav, .Page.topics .Page-nav .MainNav, .Page.report .Page-nav .MainNav, .Page.partyspace .Page-nav .MainNav, .Page.ceremony .Page-nav .MainNav, .Page.cuisine .Page-nav .MainNav, .Page.item .Page-nav .MainNav, .Page.fair .Page-nav .MainNav, .Page.special .Page-nav .MainNav, .Page.plan .Page-nav .MainNav, .Page.kids .Page-nav .MainNav, .Page.party .Page-nav .MainNav, .Page.access .Page-nav .MainNav, .Page.newsIndex .Page-nav .MainNav, .Page.newsDetail .Page-nav .MainNav, .Page.document .Page-nav .MainNav, .Page.guest .Page-nav .MainNav {
    display: none;
  }
}

@media only screen and (max-width: 60em) {
  .Page.lifetime .Page-nav, .Page.brand .Page-nav, .Page.restaurant .Page-nav, .Page.wedding .Page-nav, .Page.gallery .Page-nav, .Page.newsIndex .Page-nav, .Page.newsDetail .Page-nav, .Page.document .Page-nav, .Page.guest .Page-nav, .Page.error .Page-nav {
    display: none;
  }
}


.Page.home .ChildNav {
  bottom: 60px;
}

.Page.home .ChildNav-list {
  position: absolute;
  bottom: 100%;
  display: none;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  background-color: rgba(255, 255, 255, .9);
}

.Page.home .CloneNav .ChildNav-list {
  bottom: auto; 
  background-color: #fff;
}

@media only screen and (min-width: 60.0625em) {
  .Page.lifetime .Page-glbHeader .ChildNav-list, .Page.restaurant .Page-glbHeader .ChildNav-list, .Page.wedding .Page-glbHeader .ChildNav-list, .Page.brand .Page-glbHeader .ChildNav-list, .Page.party .Page-glbHeader .ChildNav-list, .Page.access .Page-glbHeader .ChildNav-list, .Page.newsIndex .Page-glbHeader .ChildNav-list, .Page.document .Page-glbHeader .ChildNav-list, .Page.guest .Page-glbHeader .ChildNav-list {
    position: fixed;
    top: 136px;
    display: none;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
  }
}

@media only screen and (max-width: 60em) {
  .Page.lifetime .Page-glbHeader .ChildNav-list, .Page.restaurant .Page-glbHeader .ChildNav-list, .Page.wedding .Page-glbHeader .ChildNav-list, .Page.brand .Page-glbHeader .ChildNav-list, .Page.party .Page-glbHeader .ChildNav-list, .Page.access .Page-glbHeader .ChildNav-list, .Page.newsIndex .Page-glbHeader .ChildNav-list, .Page.document .Page-glbHeader .ChildNav-list, .Page.guest .Page-glbHeader .ChildNav-list {
    display: none;
  }
}

.Page.newsDetail .ChildNav-list {
  display: none;
}

.Page.reportDetail .Page-header .ChildNav-list {
  display: none;
}

.workshop .ChildNav{
	display:none;
	}

.Page.lifetime .CloneNav .ChildNav-list, .Page.brand .CloneNav .ChildNav-list, .Page.access .CloneNav .ChildNav-list, .Page.newsIndex .CloneNav .ChildNav-list, .Page.newsDetail .CloneNav .ChildNav-list, .Page.document .CloneNav .ChildNav-list, .Page.guest .CloneNav .ChildNav-list {
  display: none;
}

.Page.special .Page-glbHeader .ChildNav-list {
  display: none;
}

@media only screen and (min-width: 60.0625em) {
  .Page.restaurant .Page-glbHeader .ChildNav-list.restaurant {
    display: none;
  }
}

@media only screen and (max-width: 60em) {
  .Page.restaurant .Page-glbHeader .ChildNav-list.restaurant {
    display: none!important;
  }
}

@media only screen and (max-width: 60em) {
  .Page.restaurant .Page-glbHeader .ChildNav-list.restaurant .ChildNav-item:last-child {
    display: none;
  }
}

.Page.restaurant .Page-glbHeader .ChildNav-list.wedding {
  display: none;
}

.Page.restaurant .CloneNav .ChildNav-list.wedding {
  display: none;
}

.Page.restaurant .CloneNav .ChildNav-list.party {
  display: none;
}

.Page.wedding .Page-glbHeader .ChildNav-list.wedding {
  display: none;
}

.Page.wedding .CloneNav .ChildNav-list.restaurant {
  display: none;
}

.Page.wedding .CloneNav .ChildNav-list.party {
  display: none;
}

.Page.party .CloneNav .ChildNav-list.wedding {
  display: none;
}

.Page.party .CloneNav .ChildNav-list.restaurant {
  display: none;
}



.Page.lunch .ChildNav-list.wedding, .Page.dinner .ChildNav-list.wedding, .Page.night .ChildNav-list.wedding, .Page.bar .ChildNav-list.wedding, .Page.concierge .ChildNav-list.wedding {
  display: none;
}

.Page.lunch .ChildNav-list.party, .Page.dinner .ChildNav-list.party, .Page.night .ChildNav-list.party, .Page.bar .ChildNav-list.party, .Page.concierge .ChildNav-list.party {
  display: none;
}

@media only screen and (max-width: 60em) {
  .Page.lunch .ChildNav-list, .Page.dinner .ChildNav-list, .Page.night .ChildNav-list, .Page.bar .ChildNav-list, .Page.concierge .ChildNav-list {
    display: none;
  }
}

.Page.gallery .ChildNav-list.restaurant, .Page.topics .ChildNav-list.restaurant, .Page.report .ChildNav-list.restaurant, .Page.partyspace .ChildNav-list.restaurant, .Page.ceremony .ChildNav-list.restaurant, .Page.cuisine .ChildNav-list.restaurant, .Page.item .ChildNav-list.restaurant, .Page.fair .ChildNav-list.restaurant, .Page.special .ChildNav-list.restaurant, .Page.plan .ChildNav-list.restaurant, .Page.kids .ChildNav-list.restaurant {
  display: none;
}

/*Partyのサブナビ非表示*/
.Page.gallery .ChildNav-list.party, .Page.topics .ChildNav-list.party, .Page.report .ChildNav-list.party, .Page.partyspace .ChildNav-list.party, .Page.ceremony .ChildNav-list.party, .Page.cuisine .ChildNav-list.party, .Page.item .ChildNav-list.party, .Page.fair .ChildNav-list.party, .Page.special .ChildNav-list.party, .Page.plan .ChildNav-list.party, .Page.kids .ChildNav-list.party {
  display: none;
}

@media only screen and (max-width: 60em) {
  .Page.gallery .ChildNav-list, .Page.topics .ChildNav-list, .Page.report .ChildNav-list, .Page.partyspace .ChildNav-list, .Page.ceremony .ChildNav-list, .Page.cuisine .ChildNav-list, .Page.item .ChildNav-list, .Page.fair .ChildNav-list, .Page.special .ChildNav-list, .Page.plan .ChildNav-list, .Page.kids .ChildNav-list {
    display: none;
  }
}

.Page.brand .CloneNav {
  display: none;
}

.Page.wedding .textLink.forGuest, .Page.gallery .textLink.forGuest, .Page.topics .textLink.forGuest, .Page.report .textLink.forGuest, .Page.ceremony .textLink.forGuest, .Page.partyspace .textLink.forGuest, .Page.cuisine .textLink.forGuest, .Page.item .textLink.forGuest, .Page.fair .textLink.forGuest, .Page.special .textLink.forGuest, .Page.plan .textLink.forGuest, .Page.kids .textLink.forGuest {
  display: inline;
}

.Page.wedding .textLink.english, .Page.gallery .textLink.english, .Page.topics .textLink.english, .Page.report .textLink.english, .Page.ceremony .textLink.english, .Page.partyspace .textLink.english, .Page.cuisine .textLink.english, .Page.item .textLink.english, .Page.fair .textLink.english, .Page.special .textLink.english, .Page.plan .textLink.english, .Page.kids .textLink.english {
  display: none;
}

@media only screen and (min-width: 60.0625em) {
  .Page.home .MainContentBlock.bottomContact .MainContentBlock-header, .Page.restaurant .MainContentBlock.bottomContact .MainContentBlock-header {
    display: none;
  }
}

.Page.newsDetail .MainContentBlock.bottomContact .MainContentBlock-header, .Page.contact .MainContentBlock.bottomContact .MainContentBlock-header, .Page.error .MainContentBlock.bottomContact .MainContentBlock-header {
  display: none;
}

.Page.gallery .MainContentBlock.learnMore .bgImgBox.is-1column {
  display: block;
}

/*.Page.party .BottomContactBox-text {
  display: none;
}*/
.Page.party .BottomContactBox-text.party {
  display: block;
}

.Page.event .BottomContactBox-text {
  display: none;
}
.Page.event .BottomContactBox-text.event {
  display: block;
}

/*
/= 条件分岐 END
======================================== */
