@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  overflow-wrap: break-word;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

body {
  min-width: 1200px;
  color: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  body {
    min-width: auto;
  }
}

.mainWrap {
  background: url(/pages/boushinnenkai/assets/img/bg01.png) repeat-y left top/100%, #b68f20;
}
.mainWrap a:hover {
  text-decoration: none;
}
.mainWrap span.anchor {
  position: relative;
  top: -90px;
}
@media (max-width: 767px) {
  .mainWrap span.anchor {
    top: -10px;
  }
}

.l-inner {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .l-inner {
    max-width: none;
    width: 92%;
  }
}

.pc_only {
  display: block;
}
@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/* TOPに戻るボタン */
.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 100px;
  height: 100px;
  transition: .4s;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
}
@media (max-width: 767px) {
    .page_top {
      position: fixed;
      right: 4px;
      bottom: 70px;
      cursor: pointer;
      width: 80px;
      height: 80px;
      transition: .4s;
      opacity: 0;
      z-index: 10;
      visibility: hidden;
  }
}

.page_top.active {
  opacity: 1;
  visibility: visible;
}
/* TOPに戻るボタン */

.filter li {
  cursor: pointer;
}

.filter li.is-active {
  color: red;
  display: none;
}

.category li.categoryItem {
  display: none;
}

.category li.categoryItem.is-show {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-searchbox__pulldown {
  position: relative;
}

.p-searchbox {
  background: #000;
  padding: 25px 40px 25px 60px;
  border-radius: 6px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-searchbox {
    padding: 25px 20px 25px 20px;
  }
}
.p-searchbox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .p-searchbox__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-searchbox__inner > h2 {
  font-size: 2.2rem;
  color: #CFB964;
  font-weight: 600;
  position: relative;
  padding-left: 46px;
}
@media (max-width: 767px) {
  .p-searchbox__inner > h2 {
    font-size: 1.8rem;
    padding-left: 29px;
  }
}
.p-searchbox__inner > h2::before {
  position: absolute;
  content: "";
  display: block;
  background: url(/pages/boushinnenkai/assets/img/icon_search.svg) no-repeat center/contain;
  width: 26px;
  height: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .p-searchbox__inner > h2::before {
    width: 21px;
    height: 24px;
  }
}
.p-searchbox__pulldown {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown {
    padding-left: 0;
    width: 100%;
    margin-top: 16px;
  }
}
.p-searchbox__pulldown-list {
  display: none;
  opacity: 0;
  position: absolute;
  z-index: 1;
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  max-width: 684px;
  min-width: 684px;
  top: 55px;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-list {
    min-width: auto;
    max-width: none;
    width: calc(100% - 50px);
    top: 45px;
  }
}
.p-searchbox__pulldown-list li {
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  padding: 4px 0 4px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #10386b;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-list li {
    font-size: 1.4rem;
    padding: 6px 0 6px 14px;
  }
}
.p-searchbox__pulldown-list li:hover {
  opacity: 0.8;
}
.p-searchbox__pulldown-list li + li {
  border-top: 1px solid #CFB964;
}
.p-searchbox__pulldown-list li:first-of-type {
  padding: 8px 0 8px 20px;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-list li:first-of-type {
    padding: 8px 0 8px 14px;
  }
}
.p-searchbox__pulldown-list li.is-active + li {
  padding: 8px 0 8px 20px;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-list li.is-active + li {
    padding: 8px 0 8px 14px;
  }
}
.p-searchbox__pulldown-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.p-searchbox__pulldown-inner:hover {
  cursor: pointer;
}
.p-searchbox__pulldown-categoryName {
  font-size: 2.2rem;
  color: #10386b;
  font-weight: 600;
  background: #fff;
  border-radius: 6px 0 0 6px;
  min-width: 684px;
  text-align: center;
  line-height: 60px;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-categoryName {
    min-width: auto;
    max-width: none;
    width: calc(100% - 50px);
    font-size: 1.4rem;
    line-height: 50px;
  }
}
.p-searchbox__pulldown-btn {
  display: block;
  width: 60px;
  height: 60px;
  background: #10386b;
  border-radius: 0 6px 6px 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-btn {
    width: 50px;
    height: 50px;
  }
}
.p-searchbox__pulldown-btn:hover {
  cursor: pointer;
  opacity: 0.8;
}
.p-searchbox__pulldown-btn::before {
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 0;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-btn::before {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 10px solid #fff;
  }
}
.p-searchbox__pulldown-btn.active::before {
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 12px solid #fff;
  border-top: 0;
}
@media (max-width: 767px) {
  .p-searchbox__pulldown-btn.active::before {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 10px solid #fff;
  }
}
.p-searchbox__pulldown-btn.active:hover {
  opacity: 0.8;
}
.p-searchbox .active {
  display: block;
  opacity: 1;
}

.p-anchorlink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-anchorlink__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 18px;
  }
}
.p-anchorlink__list li {
  width: calc(12.5% - 16px);
  text-align: center;
}
@media (max-width: 767px) {
  .p-anchorlink__list li {
    width: calc(50% - 8px);
    margin-top: 16px;
  }
}
.p-anchorlink__list li a {
  width: 100%;
  font-size: 2.2rem;
  color: #10386b;
  display: block;
  background: #fff;
  line-height: 54px;
  border-radius: 6px;
  position: relative;
}
@media (max-width: 767px) {
  .p-anchorlink__list li a {
    font-size: 1.8rem;
    line-height: 54px;
  }
}
.p-anchorlink__list li a::before {
  position: absolute;
  display: block;
  content: "";
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid #10386b;
  border-bottom: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
}
@media (max-width: 767px) {
  .p-anchorlink__list li a::before {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #10386b;
  }
}

.p-listItem__floor {
  background: #10386b;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  padding: 25px 0;
  position: relative;
  display: block;
  opacity: 1;
  margin-top: 50px;
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 767px) {
  .p-listItem__floor {
    margin-top: 40px;
    font-size: 2.1rem;
    padding: 14px 0;
  }
}
.p-listItem__floor::before, .p-listItem__floor::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(203, 155, 12)), color-stop(25%, rgb(243, 225, 139)), color-stop(50%, rgb(203, 155, 12)), color-stop(72%, rgb(243, 225, 139)), to(rgb(203, 155, 12)));
  background: linear-gradient(90deg, rgb(203, 155, 12) 0%, rgb(243, 225, 139) 25%, rgb(203, 155, 12) 50%, rgb(243, 225, 139) 72%, rgb(203, 155, 12) 100%);
}
@media (max-width: 767px) {
  .p-listItem__floor::before, .p-listItem__floor::after {
    height: 2px;
  }
}
.p-listItem__floor::before {
  top: 7px;
}
@media (max-width: 767px) {
  .p-listItem__floor::before {
    top: 4px;
  }
}
.p-listItem__floor::after {
  bottom: 7px;
}
@media (max-width: 767px) {
  .p-listItem__floor::after {
    bottom: 4px;
  }
}
.p-listItem__floor.nonactive {
  display: none;
  opacity: 0;
}
.p-listItem__floor.anime {
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-listItem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-listItem__wrap {
  width: calc(50% - 30px);
  padding-top: 60px;
}
@media (max-width: 767px) {
  .p-listItem__wrap {
    width: 100%;
    padding-top: 34px;
  }
}
.p-listItem__cont {
  position: relative;
}
.p-listItem__iconList {
  padding-right: 15px;
  position: absolute;
  right: 0;
  top: -15px;
}
.p-listItem__iconList li {
  width: 33px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
}
.p-listItem__iconList li + li {
  padding-left: 10px;
  width: 43px;
}
.p-listItem__head {
  position: relative;
}
.p-listItem__head img {
  height: 299px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upperright {
  content: url(../img/upperright_ico_present.png);
  transform: scale(0.8);
  position: absolute;
  top: 0px;
  left: 0px;
}
.p-listItem__desc {
  background: #fff;
  padding: 30px 20px;
}
.p-listItem__desc--head {
  line-height: 1.3;
}
.p-listItem__desc--head .txt-small {
  font-size: 1.2rem;
}
.p-listItem__desc--head .txtLInk-shop {
  text-decoration: underline;
}
.p-listItem__desc--head .txtLInk-shop:hover {
  text-decoration: none;
}
.p-listItem__desc--head .txt-shopName {
  font-size: 1.6rem;
  color: #997300;
  font-weight: 700;
}
.p-listItem__desc--cont .ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #10386b;
  margin-top: 30px;
}
.p-listItem__desc--cont .txt-price {
  margin-top: 14px;
}
.p-listItem__desc--cont .txt-price span {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .p-listItem__desc--cont .txt-price span {
    font-size: 1rem;
  }
}
.p-listItem__desc--cont .txt-explain {
  font-size: 1.4rem;
  margin-top: 14px;
  min-height: 48px;
}
@media (max-width: 767px) {
  .p-listItem__desc--cont .txt-explain {
    min-height: auto;
  }
}
.p-listItem__btn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #10386b;
  -webkit-box-shadow: 0px 14px 33px -9px #ccc;
          box-shadow: 0px 14px 33px -9px #ccc;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  margin-top: 30px;
  position: relative;
}
.p-listItem__btn::before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12.8px solid #ffffff;
  border-right: 0;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-listItem__btn:hover {
  color: #fff;
}

.p-mordal {
  background: #fff;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
}
@media (max-width: 767px) {
  .p-mordal {
    padding: 20px;
  }
}
.p-mordal__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .p-mordal__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.upperleft {
  content: url(../img/upperright_ico_present.png);
  transform: scale(0.8);
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
}
@media (max-width: 767px) {
  .upperleft {
    transform: scale(0.6);
    top: -15px;
  right: -15px;
  }
}
.p-mordal .p-listItem__cont {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .p-mordal .p-listItem__cont {
    width: 100%;
  }
}
.p-mordal .p-listItem__head {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .p-mordal .p-listItem__head {
    width: 100%;
  }
}
.p-mordal .p-listItem__iconList {
  position: relative;
  right: auto;
  left: auto;
  top: auto;
  margin-top: 20px;
}
.p-mordal .p-listItem__desc {
  padding: 0;
}
@media (max-width: 767px) {
  .p-mordal .p-listItem__desc--head {
    margin-top: 20px;
  }
}
.p-mordal .p-listItem__desc--cont .ttl {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-mordal .p-listItem__desc--cont .txt-price {
    margin-top: 10px;
  }
}
.red_strong {
  color: #db5443;
  font-weight: 800 !important;
}

.p-mordal .p-dlList {
  margin-top: 30px;
}
.p-mordal .p-dlList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  border-top: 1px solid #997300;
  padding: 7px 0;
}
.p-mordal .p-dlList__item:last-of-type {
  border-bottom: 1px solid #997300;
}
.p-mordal .p-dlList__item dt {
  width: 10%;
  min-width: 90px;
  font-weight: 500;
}
.p-mordal .p-dlList__item dd {
  width: 90%;
}
.p-mordal .p-dlList__item dd.tel {
  text-decoration: underline;
}
.p-mordal .p-courseList__ttl {
  font-size: 1.4rem;
  color: #10386b;
  border: 1px solid #10386b;
  padding: 10px;
  line-height: 1;
  margin-top: 30px;
}
.p-mordal .p-courseList__txt {
  font-size: 1.4rem;
  margin-top: 20px;
}
.p-mordal .btn_modalClose {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  background: #D9D9D9;
  border-radius: 4px;
  max-width: 122px;
  margin: 0 auto;
  line-height: 35px;
  cursor: pointer;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-mordal .btn_modalClose {
    margin-top: 30px;
  }
}
.p-mordal .btn_modalClose:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-mordal .btn_modalClose span + span {
  padding-left: 10px;
}
.p-mordal .modalClose {
  top: -27px !important;
  right: -33px !important;
  background: #10386b;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-mordal .modalClose {
    width: 30px;
    height: 30px;
    top: -17px !important;
    right: -5px !important;
  }
}
.p-mordal .modalClose:hover {
  opacity: 0.9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-mordal .modalClose .modalClose__line {
  width: 34px;
  background: #fff;
  height: 3px;
  margin-top: 29px;
  display: block;
  margin-left: 3px;
}
.p-mordal .modalClose .modalClose__line.bottom {
  margin-top: -3px;
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
}
@media (max-width: 767px) {
  .p-mordal .modalClose .modalClose__line.bottom {
    margin-top: -2px;
  }
}
@media (max-width: 767px) {
  .p-mordal .modalClose .modalClose__line {
    margin-top: 14px;
    width: 20px;
    height: 2px;
  }
}
.p-mordal .modalClose .modalClose__line.top {
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
}
@media (max-width: 767px) {
  .p-mordal .mfp-close {
    padding: 0 0 17px 2px !important;
  }
}

.mfp-coursewrap {
  margin: 30px auto;
}
@media (max-width: 767px) {
  .mfp-coursewrap {
    width: 96%;
    margin: 30px auto;
  }
}

.p-cont .infomation {
  margin-top: 72px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-cont .infomation {
    padding-bottom: 80px;
  }
}
.p-cont .infomation .inner {
  padding: 40px;
  background: #fff;
  width: 100%;
}
.p-cont .infomation .ico_infomation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-cont .infomation .ico_infomation ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 17px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-cont .infomation .ico_infomation ul li:last-of-type {
  margin-right: 0;
}
.p-cont .infomation .ico_infomation ul li img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 10px;
}
.p-cont .infomation .ico_infomation ul li .small {
  font-size: 80%;
  font-weight: normal;
}
.p-cont .infomation .attetion {
  margin-top: 40px;
  font-size: 1.6rem;
}
.p-cont .infomation .attetion li {
  margin: 5px 0;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  .p-cont .infomation .inner {
    padding: 20px;
  }
  .p-cont .infomation .ico_infomation ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cont .infomation .ico_infomation ul li {
    width: 50%;
    margin-right: 0;
    padding-bottom: 15px;
    font-size: 1.2rem;
  }
  .p-cont .infomation .ico_infomation ul li img {
    max-width: 30px;
  }
  .p-cont .infomation .attetion {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
#loading {
  position: absolute;
  top: 45%;
  left: 50%;
  text-align: center;
  letter-spacing: 3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: bold;
}

#loading p {
  color: #e9d8b5 !important;
  font-size: 1.4rem;
}

.loader {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  width: 120px;
  height: 120px;
}

.loader div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0.8;
}

.one {
  border-top: 1px solid #ecde5a;
  -webkit-animation: rotate-left 2s linear infinite;
          animation: rotate-left 2s linear infinite;
}

.two {
  border-right: 1px solid #857326;
  -webkit-animation: rotate-right 2s linear infinite;
          animation: rotate-right 2s linear infinite;
}

.three {
  border-bottom: 1px solid #FFD933;
  -webkit-animation: rotate-right 2s linear infinite;
          animation: rotate-right 2s linear infinite;
}

.four {
  border-left: 1px solid #e9d8b5;
  -webkit-animation: rotate-right 2s linear infinite;
          animation: rotate-right 2s linear infinite;
}

@-webkit-keyframes rotate-left {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate-left {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#loader-bg {
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
}

.fade_slider .dots-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
}
.fade_slider .dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.fade_slider .dots-wrap li:hover,
.fade_slider .dots-wrap li.slick-active {
  background: #333;
}
.fade_slider .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

@media (max-width: 767px) {
  .slick-dotted.slick-slider {
    margin-bottom: 20px !important;
  }
}
/*# sourceMappingURL=style.css.map */