@charset "UTF-8";
/* common.css
=====================================================

01.Import
02.Layout
03.Parts

===================================================== */
/* 01.Import
===================================================== */
/* _mixin.scss
=====================================================

01.Variable
02.Function
03.Font
04.Mixin

===================================================== */
/* 01.Variable
===================================================== */
/* _variables.scss
=====================================================

01.Font
02.Color
03.Layout

===================================================== */
/* 01.Font
===================================================== */
/* 02.Color
===================================================== */
/* 03.Layout
===================================================== */
/* ============================================ [EOF] */
/* 02.Function
===================================================== */
/* _function.scss
=====================================================

01.Function

===================================================== */
/* 01.Function
===================================================== */
/* ============================================ [EOF] */
/* 03.Font
===================================================== */
/* _icon.scss
===================================================== */
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&amp;subset=japanese");
@font-face {
  font-family: 'icon-font';
  src: url("/shared/img/common/icon/icon-font.eot");
  src: url("/shared/img/common/icon/icon-font.eot#iefix") format("embedded-opentype"), url("/shared/img/common/icon/icon-font.ttf") format("truetype"), url("/shared/img/common/icon/icon-font.woff") format("woff"), url("/shared/img/common/icon/icon-font.svg#iconfont") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ============================================ [EOF] */
/* 04.Mixin
===================================================== */
/* ============================================ [EOF] */
/* _reset.scss
=====================================================

01.Reset

===================================================== */
/* 01.Reset
----------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* 要素のフォントサイズやマージン・パディングをリセットしています */
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;
  border: 0;
  outline: 0;
  font-style: normal;
  font-size: 100%;
  font-weight: normal;
  background: transparent; }

/* 行の高さをフォントサイズと同じにしています */
body {
  line-height: 1; }

/* 新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

/* 【変更】ol,ulのマーカー（行頭記号）を表示しないようにしています */
/*nav ul {
    list-style:none;
}*/
ul, ol {
  list-style: none; }

/* 引用符の表示が出ないようにしています */
blockquote, q {
  quotes: none; }

/* blockquote要素、q要素の前後にコンテンツを追加しないように指定しています */
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none; }

/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/* テキストに打ち消し線が付くようにしています */
del {
  text-decoration: line-through; }

/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしていますまた、マウスオーバー時にヘルプカーソルの表示が出るようにしています */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* 水平罫線のデフォルトである立体的な罫線を見えなくしています */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

/* 縦方向の揃え位置を中央揃えに指定しています */
input, select {
  vertical-align: middle; }

/* 【追記】ラジオボタン、チェックボックスのCSS無効化 */
input[type="checkbox"], input[type="radio"] {
  margin: 0;
  padding: 0; }

/* 【追記】画像を縦に並べたときに余白が出ない様に */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: auto; }

/* 【追記】button要素をリセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none; }

/* 【追記】box-sizingを全ブラウザに対応 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/* iOSのフォーム装飾をクリア */
* {
  -webkit-appearance: none;
  border-radius: 0; }

/* ============================================ [EOF] */
/* _base.scss
=====================================================

01.Base

===================================================== */
/* 01.Base
===================================================== */
html {
  overflow-y: scroll; }

html, body {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000; }

/* Base Font */
html, body, input, textarea, select, button, optgroup {
  color: #ffffff;
  font: 62.5% "Open Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.2; }

/* Link Color */
a {
  color: #ffffff;
  text-decoration: none; }

/* placeholderの文字色を変更 */
input::placeholder, textarea::placeholder {
  color: #cccccc; }

/* supを上にsubを下に */
sup, sub {
  position: relative;
  height: 0;
  vertical-align: baseline;
  line-height: 1; }

sup {
  bottom: 1ex; }

sub {
  top: 1ex; }

/* hoverした際にimgを透過 */
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)"; }

/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* ============================================ [EOF] */
/* _icon.scss
===================================================== */
@font-face {
  font-family: 'icon-font';
  src: url("/shared/img/common/icon/icon-font.eot");
  src: url("/shared/img/common/icon/icon-font.eot#iefix") format("embedded-opentype"), url("/shared/img/common/icon/icon-font.ttf") format("truetype"), url("/shared/img/common/icon/icon-font.woff") format("woff"), url("/shared/img/common/icon/icon-font.svg#iconfont") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ============================================ [EOF] */
/* 02.Layout
===================================================== */
/* _header.scss
===================================================== */
.header__inner .img-wrapper {
  display: none; }
.header__nav {
  display: none; }
.header__nav-sp {
  visibility: hidden; }

@media (min-width: 920px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 90px;
    opacity: .9; }
    .header__inner {
      display: flex;
      justify-content: center;
      align-items: center; }
      .header__inner .img-wrapper {
        display: inline-block;
        float: left; }
      .header__inner img {
        width: 80%; }
    .header__nav {
      display: block; }
    .header__nav-sp {
      display: none; }

  .nav-list {
    *zoom: 1; }
    .nav-list:before, .nav-list:after {
      content: "";
      display: table; }
    .nav-list:after {
      clear: both; }
    .nav-list__item {
      float: left;
      margin-left: 24px; }
      .nav-list__item:first-child {
        margin-left: 0; }
      .nav-list__item a {
        display: block;
        position: relative;
        color: #ffffff;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: .055em;
        line-height: 50px; }
        .nav-list__item a:after {
          content: '';
          position: absolute;
          bottom: 10px;
          left: 0;
          width: 0;
          height: 1px;
          background-color: #000000;
          transition: all .3s; }
        .nav-list__item a:hover:after {
          width: 100%; }
    .nav-list .link-btn {
      display: inline-block;
      color: #ffffff;
      background-color: #ff5858;
      line-height: 30px;
      margin: 10px;
      padding: 5px; }
    .nav-list .link-btn:hover {
      color: #ffffff;
      background: #ff5858; } }
/* ============================================ [EOF] */
/* _main.scss
=====================================================

01.Common
02.Intro
03.Service
04.Review
05.Inquiry

===================================================== */
/* 01.Common
===================================================== */
#wrapper {
  position: relative; }

@media (min-width: 920px) {
  #wrapper {
    background-image: none; } }
#content {
  position: relative; }

.main02 {
  max-width: 767px;
  margin: 0 auto; }

@media (min-width: 920px) {
  .main02 {
    max-width: 1200px;
    margin: 0 auto; } }
.cont-wrap {
  padding-bottom: 55px; }
  .cont-wrap .border-box {
    position: relative;
    background-color: #000; }
    .cont-wrap .border-box__top {
      position: absolute;
      bottom: -22px;
      width: 75%;
      height: 12px;
      background-color: #000000; }
    .cont-wrap .border-box__mid {
      position: absolute;
      bottom: -40px;
      width: 68.7%;
      height: 8px;
      background-color: #000000; }
    .cont-wrap .border-box__btm {
      position: absolute;
      bottom: -55px;
      width: 59.3%;
      height: 4px;
      background-color: #000000; }

@media (min-width: 920px) {
  .page-wrap {
    padding-bottom: 110px; }
    .page-wrap .border-box__top {
      bottom: -44px;
      height: 24px; }
    .page-wrap .border-box__mid {
      bottom: -80px;
      height: 16px; }
    .page-wrap .border-box__btm {
      bottom: -110px;
      height: 8px; } }
.page-wrap {
  margin-bottom: 0; }
  .page-wrap .border-box__top {
    left: 0; }
  .page-wrap .border-box__mid {
    right: 5%; }
  .page-wrap .border-box__btm {
    left: 5%; }

.nav-wrap {
  position: relative;
  background-color: #000; }
  .nav-wrap:after {
    content: '';
    display: block;
    position: absolute;
    right: 2%;
    bottom: 20px;
    z-index: 1;
    width: 300px;
    height: 181px;
    background: url("/shared/img/nav_bg.png") no-repeat 0 0/300px 181px; }
  .nav-wrap__inner {
    position: relative;
    padding: 60px 20px 100px; }
  .nav-wrap__ttl {
    position: absolute;
    top: -0.5em;
    left: 20px;
    color: #000000;
    font-size: 60px;
    font-size: 6rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.0; }
  .nav-wrap__body {
    position: relative;
    z-index: 10; }
    .nav-wrap__body .column {
      margin-top: 20px; }
    .nav-wrap__body .notes {
      margin-top: 40px;
      color: #ffffff;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: bold;
      letter-spacing: .05em;
      line-height: 1.7; }

@media (min-width: 920px) {
  .nav-wrap:after {
    top: 50%;
    bottom: auto;
    width: 480px;
    height: 290px;
    margin-top: -145px;
    background: url("/shared/img/nav_bg.png") no-repeat 0 0/480px 290px; }
  .nav-wrap__inner {
    max-width: 1400px;
    padding: 60px 0;
    margin: 0 auto; }
  .nav-wrap__ttl {
    top: -1.0em;
    left: 0;
    font-size: 80px;
    font-size: 8rem;
    writing-mode: vertical-rl;
    letter-spacing: .05em; }
  .nav-wrap__body {
    max-width: 1120px;
    margin: 0 auto; }
    .nav-wrap__body .column {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .nav-wrap__body .column .nav-box {
        width: calc(50% - 10px);
        margin-top: 0; }
    .nav-wrap__body .notes {
      font-size: 14px;
      font-size: 1.4rem; } }
.nav-detail:not(:first-child) {
  margin-top: 60px; }
.nav-detail__ttl {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em; }
  .nav-detail__ttl:before, .nav-detail__ttl:after {
    content: '';
    flex-grow: 1;
    border-top: 2px solid #000000; }
  .nav-detail__ttl:before {
    margin-right: 0.5em; }
  .nav-detail__ttl:after {
    margin-left: 0.5em; }

@media (min-width: 920px) {
  .nav-detail:not(:first-child) {
    margin-top: 80px; }
  .nav-detail__ttl {
    color: #ffffff;
    font-size: 20px;
    font-size: 2rem; }
    .nav-detail__ttl:before {
      margin-right: 1em; }
    .nav-detail__ttl:after {
      margin-left: 1em; } }
.nav-box:not(:first-child) {
  margin-top: 20px; }
.nav-box__ttl {
  width: 180px;
  padding: 10px 0;
  margin: 0 auto 10px;
  background-color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.5; }
  .nav-box__ttl span {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold; }
.nav-box__body .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .nav-box__body .link-list__item {
    position: relative;
    line-height: 2.0; }
    .nav-box__body .link-list__item:not(:first-child) {
      padding-left: 24px; }
      .nav-box__body .link-list__item:not(:first-child):before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 5px;
        width: 14px;
        height: 1px;
        margin-top: -1px;
        background: #000000;
        transform: rotate(-45deg); }
    .nav-box__body .link-list__item a {
      display: block;
      color: #ffffff;
      font-size: 13px;
      font-size: 1.3rem;
      font-weight: bold;
      letter-spacing: .05em;
      transition: all .3s; }
      .nav-box__body .link-list__item a:hover {
        color: #000000; }
      .nav-box__body .link-list__item a sup {
        padding-left: .25em;
        font-size: 9px;
        font-size: 0.9rem;
        font-weight: bold; }
    .nav-box__body .link-list__item span {
      font-size: 10px;
      font-size: 1rem;
      font-weight: bold; }
.nav-box__txt {
  color: #ffffff;
  font-size: 10px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5; }

@media (min-width: 920px) {
  .nav-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .nav-box:not(:first-child) {
      margin-top: 20px; }
    .nav-box__ttl {
      margin: 0 20px 0 0; }
    .nav-box__body {
      width: calc(100% - 200px); }
      .nav-box__body .link-list {
        justify-content: flex-start; }
        .nav-box__body .link-list__item:not(:first-child) {
          padding-left: 30px; }
          .nav-box__body .link-list__item:not(:first-child):before {
            width: 18px;
            height: 2px;
            margin-top: -2px; }
        .nav-box__body .link-list__item a {
          font-size: 16px;
          font-size: 1.6rem; }
        .nav-box__body .link-list__item span {
          font-size: 12px;
          font-size: 1.2rem; }
    .nav-box__txt {
      font-size: 11px;
      font-size: 1.1rem;
      text-align: left; } }
.copy__txt {
  padding: 60px 0 30px;
  color: #ffffff;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.5; }

@media (min-width: 920px) {
  .copy__txt {
    padding: 120px 0 100px;
    font-size: 54px;
    font-size: 5.4rem; }
    .copy__txt br {
      display: none; } }
.btn-top {
  margin-bottom: 15px;
  text-align: center; }
  .btn-top a {
    display: inline-block;
    position: relative;
    padding-top: 20px;
    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: .13em;
    text-transform: uppercase; }
    .btn-top a:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      width: 20px;
      height: 20px;
      margin-left: -10px;
      border-left: 2px solid #000000;
      border-top: 2px solid #000000;
      transform: rotate(45deg); }
    .btn-top a:hover {
      opacity: .7; }

/* ============================================ [EOF] */
/* _footer.scss
===================================================== */
.footer {
  display: flex;
  padding: 60px 0 20px;
  background-color: #ffffff; }
  .footer__inner {
    *zoom: 1;
    position: relative;
    max-width: 1200px;
    margin: 0 auto; }
    .footer__inner:before, .footer__inner:after {
      content: "";
      display: table; }
    .footer__inner:after {
      clear: both; }
  .footer .ul-wrapper {
    display: block;
    text-align: center;
    align-items: center; }
    .footer .ul-wrapper .site-list__item a {
      color: #000000;
      display: block;
      margin: 10px; }

@media (min-width: 920px) {
  .footer {
    display: flex;
    padding: 60px 0 20px;
    background-color: #ffffff; }
    .footer__inner {
      *zoom: 1;
      position: relative;
      max-width: 1200px;
      margin: 0 auto; }
      .footer__inner:before, .footer__inner:after {
        content: "";
        display: table; }
      .footer__inner:after {
        clear: both; }
    .footer .ul-wrapper {
      margin: 10px;
      display: flex;
      float: left;
      align-items: center;
      flex-direction: column; }
      .footer .ul-wrapper .site-list__item a {
        color: #000000;
        display: block;
        margin: 10px; }
    .footer .img-wrapper {
      display: inline-block;
      float: left; }
    .footer img {
      width: 50%; }

  .site-list {
    *zoom: 1;
    float: none;
    font-size: small; }
    .site-list:before, .site-list:after {
      content: "";
      display: table; }
    .site-list:after {
      clear: both; }
    .site-list__item {
      float: left; } }
/* ============================================ [EOF] */
/* 03.Parts
===================================================== */
/* _swiper.scss
===================================================== */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }
:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

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

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

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

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

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

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

:root {
  --swiper-navigation-size: 32px; }

@media (min-width: 920px) {
  :root {
    --swiper-navigation-size: 64px; } }
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 32 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; }

@media (min-width: 920px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: calc(var(--swiper-navigation-size) / 64 * 27); } }
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 16px;
  right: auto; }

@media (min-width: 920px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 35%; } }
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 16px;
  left: auto; }

@media (min-width: 920px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 35%; } }
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

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

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 30px;
  left: 0;
  width: 100%; }

@media (min-width: 920px) {
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 40px; } }
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff; }

@media (min-width: 920px) {
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px; } }
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none; }

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

.swiper-pagination-bullet-active {
  background-color: #a30000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  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%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

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

@media (min-width: 920px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px; } }
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */ }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@keyframes swiper-preloader-spin {
  100% {
    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 {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
  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 {
  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; }

/* ============================================ [EOF] */
/* ============================================ [EOF] */

/*# sourceMappingURL=common.css.map */
