/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.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: 1;
}

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

/* indent
----------------------------------------*/
ul.indent-1 li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}

#page.osline #container {
  max-width: 100%;
  width: 100%;
}

.osline-mv {
  width: 1200px;
  height: 470px;
  margin: 0 auto 75px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.osline-mv__ttl {
  width: 440px;
}

.osline-mv__slider {
  width: 760px;
  position: relative;
}

#js-swiper-mv .swiper-button-prev,
#js-swiper-mv .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 42px;
  margin-top: -21px;
  z-index: 50;
  cursor: pointer;
}
#js-swiper-mv .swiper-button-next {
  background: url(../img/icon_slider_mv_next.png) 0 0 no-repeat;
  background-size: 100% auto;
  right: 13px;
}
#js-swiper-mv .swiper-button-prev {
  background: url(../img/icon_slider_mv_prev.png) 0 0 no-repeat;
  background-size: 100% auto;
  left: auto;
  left: 13px;
}
#js-swiper-mv .swiper-pagination {
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#js-swiper-mv .swiper-pagination-bullet {
  width: 42px;
  height: 4px;
  border-radius: 8px;
  margin: 0 5px;
  overflow: hidden;
  background: #5e6a78;
  opacity: 0.3;
}
#js-swiper-mv .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 640px) {
  .osline-mv {
    width: 100%;
    height: auto;
    margin: 0 0 40px;
  }
  .osline-mv__ttl {
    width: 100%;
  }
  .osline-mv__slider {
    width: 100%;
  }
  #js-swiper-mv .swiper-button-prev,
  #js-swiper-mv .swiper-button-next {
    width: 14px;
    height: 22px;
    margin-top: -11px;
  }
  #js-swiper-mv .swiper-button-next {
    right: 6px;
  }
  #js-swiper-mv .swiper-button-prev {
    left: 6px;
  }
  #js-swiper-mv .swiper-pagination {
    bottom: -16px;
  }
  #js-swiper-mv .swiper-pagination-bullet {
    width: 22px;
    height: 2px;
    border-radius: 8px;
    margin: 0 5px;
  }
}
.osline-section a img {
  -webkit-transition: opacity 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s 0s ease-out;
  -o-transition: opacity 0.3s 0s ease-out;
  transition: opacity 0.3s 0s ease-out;
}
.osline-section a:hover img {
  -webkit-transition: opacity 0.2s 0s ease-out;
  -moz-transition: opacity 0.2s 0s ease-out;
  -ms-transition: opacity 0.2s 0s ease-out;
  -o-transition: opacity 0.2s 0s ease-out;
  transition: opacity 0.2s 0s ease-out;
}

.osline-pagenav {
  width: 976px;
  margin: 0 auto 120px;
}
.osline-pagenav ul {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.osline-pagenav ul li {
  width: 230px;
}
.osline-pagenav ul li a {
  position: relative;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  height: 104px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  background: url(../img/img_pagenav_pc.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: opacity 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s 0s ease-out;
  -o-transition: opacity 0.3s 0s ease-out;
  transition: opacity 0.3s 0s ease-out;
}
.osline-pagenav ul li a span {
  position: relative;
  top: -4px;
}
.osline-pagenav ul li a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 12px;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 9px;
  background: url(../img/icon_triangle.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: transform 0.3s 0s ease-out;
  -moz-transition: transform 0.3s 0s ease-out;
  -ms-transition: transform 0.3s 0s ease-out;
  -o-transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
}
.osline-pagenav ul li a:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.2s 0s ease-out;
  -moz-transition: opacity 0.2s 0s ease-out;
  -ms-transition: opacity 0.2s 0s ease-out;
  -o-transition: opacity 0.2s 0s ease-out;
  transition: opacity 0.2s 0s ease-out;
}
.osline-pagenav ul li a:hover span {
  color: #fff !important;
}
.osline-pagenav ul li a:hover::after {
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: transform 0.2s 0s ease-out;
  -moz-transition: transform 0.2s 0s ease-out;
  -ms-transition: transform 0.2s 0s ease-out;
  -o-transition: transform 0.2s 0s ease-out;
  transition: transform 0.2s 0s ease-out;
}

@media screen and (max-width: 640px) {
  .osline-pagenav {
    width: auto;
    margin: 0 20px 120px;
  }
  .osline-pagenav ul li {
    width: 48.5%;
    margin-bottom: 20px;
  }
  .osline-pagenav ul li a {
    height: 104px;
    height: 81px;
    height: auto;
    padding-bottom: 49.84%;
    font-size: 16px;
    background: url(../img/img_pagenav_sp.png) 0 0 no-repeat;
    background-size: cover;
  }
  .osline-pagenav ul li a span {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    top: -4px;
  }
  .osline-pagenav ul li a::after {
    display: none;
    bottom: 20px;
    margin-left: -5px;
    width: 10px;
    height: 6px;
    background: url(../img/icon_triangle.png) 0 0 no-repeat;
    background-size: cover;
  }
}
.osline-section {
  padding: 130px 0 160px;
  position: relative;
}
.osline-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 12px;
  top: 0;
  left: 0;
}
.osline-section.features {
  background: url(../img/bg_light_features_pc.png) center 11px no-repeat #818993;
  background-size: 976px auto;
  color: #fff;
}
.osline-section.features::after {
  background: #222222;
}
.osline-section.recommend {
  background: url(../img/bg_light_recommend_pc.png) center 11px no-repeat #8895a5;
  background-size: 976px auto;
  color: #fff;
}
.osline-section.recommend::after {
  background: #fff;
}
.osline-section.cases {
  background: url(../img/bg_light_case_pc.png) center 11px no-repeat #fff;
  background-size: 1200px auto;
  color: #222;
}
.osline-section.cases::after {
  background: #222222;
}
.osline-section.lineup {
  background: url(../img/bg_light_lineup_pc.png) center 11px no-repeat #e3e7ed;
  background-size: 1200px auto;
  color: #222;
}
.osline-section.lineup::after {
  background: #222222;
}

@media screen and (max-width: 640px) {
  .bnr_archidesign {
    width: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .osline-section::after {
    height: 11px;
  }
  .osline-section.features {
    padding: 42px 0 130px !important;
    border-top: 11px solid #222222;
    background: url(../img/bg_light_features_sp.png) center 11px no-repeat #818993;
    background-size: 100% auto;
    color: #fff;
  }
  .osline-section.recommend {
    padding: 42px 0 130px !important;
    border-top: 11px solid #fff;
    background: url(../img/bg_light_recommend_sp.png) center 11px no-repeat #8895a5;
    background-size: 100% auto;
    color: #fff;
  }
  .osline-section.cases {
    padding: 42px 0 130px !important;
    border-top: 11px solid #222222;
    background: url(../img/bg_light_case_sp.png) center 11px no-repeat #fff;
    background-size: 100% auto;
    color: #222;
  }
  .osline-section.lineup {
    padding: 42px 0 80px !important;
    border-top: 11px solid #222222;
    background: url(../img/bg_light_lineup_sp.png) center 11px no-repeat #e3e7ed;
    background-size: 100% auto;
    color: #222;
  }
}
.osline-ttl {
  text-align: center;
  margin-bottom: 100px;
}
.lineup .osline-ttl {
  margin-bottom: 80px;
  color: #5e6a78;
}
.cases .osline-ttl {
  margin-bottom: 80px;
  color: #5e6a78;
}
.osline-ttl span {
  display: block;
}
.osline-ttl span.osline-ttl__ja {
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: 900;
}
.osline-ttl span.osline-ttl__en {
  font-size: 14px;
  font-weight: 900;
}

@media screen and (max-width: 640px) {
  .osline-ttl {
    text-align: center;
    margin-bottom: 60px;
  }
  .recommend .osline-ttl {
    margin-bottom: 36px;
  }
  .lineup .osline-ttl {
    margin-bottom: 36px;
  }
  .cases .osline-ttl {
    margin-bottom: 36px;
  }
  .osline-ttl span.osline-ttl__ja {
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 28px;
  }
  .osline-ttl span.osline-ttl__en {
    font-size: 14px;
  }
}
.osline-inner {
  width: 967px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .osline-inner {
    width: auto;
    margin: 0 20px;
  }
}
.osline-points {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 120px;
}
.osline-points .osline-point {
  width: 300px;
  border: 2px solid #fff;
  padding: 72px 0 20px;
  text-align: center;
  position: relative;
  box-shadow: -3px -3px 6px rgba(255, 255, 255, 0.25), 3px 3px 6px rgba(255, 255, 255, 0.25), 3px -3px 6px rgba(255, 255, 255, 0.25), -3px 3px 6px rgba(255, 255, 255, 0.25), inset -3px -3px 6px rgba(255, 255, 255, 0.25), inset 3px 3px 6px rgba(255, 255, 255, 0.25), inset 3px -3px 6px rgba(255, 255, 255, 0.25), inset -3px 3px 6px rgba(255, 255, 255, 0.25);
}

.osline-point__num {
  position: absolute;
  width: 80px;
  top: -26px;
  left: 50%;
  margin-left: -40px;
}

.osline-point__img {
  width: 260px;
  margin: 0 auto 16px;
}

.osline-point__ttl {
  width: 260px;
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.osline-point__txt {
  width: 260px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .osline-points {
    width: 100%;
    display: block;
    margin-bottom: 60px;
  }
  .osline-points .osline-point {
    width: 100%;
    padding: 56px 0 32px;
    margin-bottom: 60px;
  }
  .osline-points .osline-point:last-child {
    margin-bottom: 0;
  }
  .osline-point__num {
    position: absolute;
    width: 80px;
    top: -36px;
    left: 50%;
    margin-left: -40px;
  }
  .osline-point__img {
    width: auto;
    margin: 0 20px 16px;
  }
  .osline-point__ttl {
    width: auto;
    margin: 0 20px 10px;
    font-size: 20px;
    line-height: 1.6;
  }
  .osline-point__txt {
    width: auto;
    margin: 0 20px;
    font-size: 16px;
    line-height: 1.6;
  }
}
.osline-movie {
  width: 680px;
  margin: 0 auto 120px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}
.osline-movie a {
  display: block;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .osline-movie {
    width: 100%;
    margin: 0 auto 60px;
  }
}
.osline-flexs .osline-flex {
  margin-bottom: 85px;
}
.osline-flexs .osline-flex:last-child {
  margin-bottom: 0;
}

.osline-flex {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.osline-flex.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.osline-flex .osline-flex__img {
  width: 468px;
}
.osline-recommend .osline-flex .osline-flex__img {
  width: 428px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.osline-flex .osline-flex__txt {
  padding-top: 6px;
  width: 468px;
}
.osline-recommend .osline-flex .osline-flex__txt {
  padding-top: 0;
  width: 428px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.osline-txt {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .osline-flexs .osline-flex {
    margin-bottom: 40px;
  }
  .osline-flexs .osline-flex:last-child {
    margin-bottom: 0;
  }
  .osline-flex {
    width: 100%;
    display: block;
  }
  .osline-flex.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .osline-flex .osline-flex__img {
    width: 100%;
    margin-bottom: 20px;
  }
  .osline-recommend .osline-flex .osline-flex__img {
    width: 100%;
    display: block;
  }
  .osline-flex .osline-flex__txt {
    padding-top: 0;
    width: 100%;
  }
  .osline-recommend .osline-flex .osline-flex__txt {
    width: 100%;
    display: block;
  }
}
.osline-pagenav__recommend {
  width: 976px;
  margin: 0 auto 130px;
}
.osline-pagenav__recommend ul {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.osline-pagenav__recommend ul li {
  width: 312px;
}
.osline-pagenav__recommend ul li a {
  display: block;
  padding: 2px;
  position: relative;
  background: #fff;
  text-align: center;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}
.osline-pagenav__recommend ul li a span {
  display: block;
  padding: 12px 0;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.osline-pagenav__recommend ul li a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 21px;
  right: 16px;
  width: 14px;
  height: 9px;
  background: url(../img/icon_triangle_recommend.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transition: transform 0.3s 0s ease-out;
  -moz-transition: transform 0.3s 0s ease-out;
  -ms-transition: transform 0.3s 0s ease-out;
  -o-transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
}
.osline-pagenav__recommend ul li a img {
  -webkit-transition: opacity 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s 0s ease-out;
  -o-transition: opacity 0.3s 0s ease-out;
  transition: opacity 0.3s 0s ease-out;
}
.osline-pagenav__recommend ul li a:hover img {
  opacity: 0.8;
  -webkit-transition: opacity 0.2s 0s ease-out;
  -moz-transition: opacity 0.2s 0s ease-out;
  -ms-transition: opacity 0.2s 0s ease-out;
  -o-transition: opacity 0.2s 0s ease-out;
  transition: opacity 0.2s 0s ease-out;
}
.osline-pagenav__recommend ul li a:hover::after {
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: transform 0.2s 0s ease-out;
  -moz-transition: transform 0.2s 0s ease-out;
  -ms-transition: transform 0.2s 0s ease-out;
  -o-transition: transform 0.2s 0s ease-out;
  transition: transform 0.2s 0s ease-out;
}

@media screen and (max-width: 640px) {
  .osline-pagenav__recommend {
    width: auto;
    margin: 0 20px 60px;
  }
  .osline-pagenav__recommend ul li {
    width: 31.64%;
  }
  .osline-pagenav__recommend ul li a span {
    padding: 6px 0 16px;
    font-size: 14px;
  }
  .osline-pagenav__recommend ul li a::after {
    bottom: 6px;
    right: auto;
    left: 50%;
    width: 10px;
    height: 6px;
    margin-left: -5px;
  }
}
.osline-recommends {
  width: 976px;
  margin: 0 auto;
}
.osline-recommends .osline-recommend {
  background: #fff;
  margin-bottom: 120px;
  color: #222;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

.osline-recommend__con {
  padding: 40px 40px;
}

.osline-recommend__ttl {
  text-align: center;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5e6a78;
}

.osline-recommend__copy {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #5e6a78;
}

@media screen and (max-width: 640px) {
  .osline-recommends {
    width: auto;
    margin: 0 20px;
  }
  .osline-recommends .osline-recommend {
    margin-bottom: 60px;
  }
  .osline-recommend__con {
    padding: 32px 20px 40px;
  }
  .osline-recommend__ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .osline-recommend__copy {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.swiper-case {
  position: relative;
  width: 856px;
  margin: 0 auto;
}
.swiper-case .swiper-wrapper {
  width: 856px;
}
.swiper-case .swiper-wrapper a {
  color: #222222;
}
.swiper-case .swiper-slide {
  width: 408px;
}
.swiper-case .swiper-button-prev,
.swiper-case .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -21px;
  z-index: 50;
  cursor: pointer;
}
.swiper-case .swiper-button-next {
  background: url(../img/icon_slider_case_next.png) 0 0 no-repeat;
  background-size: 100% auto;
  right: -60px;
}
.swiper-case .swiper-button-prev {
  background: url(../img/icon_slider_case_prev.png) 0 0 no-repeat;
  background-size: 100% auto;
  left: auto;
  left: -60px;
}

.osline-case__img {
  margin-bottom: 14px;
}

.osline-case__ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.osline-case__txt {
  font-size: 16px;
  line-height: 1.6;
}

.bnr-lineup {
  width: 720px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  .swiper-case {
    width: 68%;
    margin: 0 auto;
  }
  .swiper-case .swiper-wrapper {
    width: 100%;
  }
  .swiper-case .swiper-slide img {
    width: 100%;
    height: auto;
  }
  .swiper-case .swiper-button-prev,
  .swiper-case .swiper-button-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .swiper-case .swiper-button-next {
    right: -45px;
  }
  .swiper-case .swiper-button-prev {
    left: -45px;
  }
  .osline-cases .osline-case {
    width: 100%;
    text-align: left;
  }
  .osline-case__img {
    margin-bottom: 14px;
  }
  .osline-case__ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }
  .osline-case__txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .bnr-lineup {
    width: auto;
    margin: 0 40px;
  }
}
.recommend-renewal {
  width: 976px;
  margin: 120px auto;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 32px 0 60px;
}

.recommend-renewal__ttl {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}

.recommend-renewal__inner {
  width: 800px;
  margin: 0 auto;
}

.recommend-renewal__imgs {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.recommend-renewal__img {
  width: 390px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  .recommend-renewal {
    width: auto;
    margin: 60px 20px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 0 40px;
  }
  .recommend-renewal__ttl {
    font-size: 20px;
    margin-bottom: 22px;
  }
  .recommend-renewal__inner {
    width: 100%;
    margin: 0 0;
  }
  .recommend-renewal__imgs {
    display: block;
  }
  .recommend-renewal__imgs .recommend-renewal__img {
    width: 100%;
    margin-bottom: 20px;
  }
  .recommend-renewal__imgs .recommend-renewal__img:last-child {
    margin-bottom: 0;
  }
  .recommend-renewal__img {
    width: 100%;
  }
}
